1 /* Build expressions with type checking for C compiler.
2 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
4 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
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"
46 #include "tree-flow.h"
48 /* Possible cases of implicit bad conversions. Used to select
49 diagnostic messages in convert_for_assignment. */
57 /* Whether we are building a boolean conversion inside
58 convert_for_assignment, or some other late binary operation. If
59 build_binary_op is called (from code shared with C++) in this case,
60 then the operands have already been folded and the result will not
61 be folded again, so C_MAYBE_CONST_EXPR should not be generated. */
62 bool in_late_binary_op
;
64 /* The level of nesting inside "__alignof__". */
67 /* The level of nesting inside "sizeof". */
70 /* The level of nesting inside "typeof". */
73 /* Nonzero if we've already printed a "missing braces around initializer"
74 message within this initializer. */
75 static int missing_braces_mentioned
;
77 static int require_constant_value
;
78 static int require_constant_elements
;
80 static bool null_pointer_constant_p (const_tree
);
81 static tree
qualify_type (tree
, tree
);
82 static int tagged_types_tu_compatible_p (const_tree
, const_tree
, bool *);
83 static int comp_target_types (location_t
, tree
, tree
);
84 static int function_types_compatible_p (const_tree
, const_tree
, bool *);
85 static int type_lists_compatible_p (const_tree
, const_tree
, bool *);
86 static tree
lookup_field (tree
, tree
);
87 static int convert_arguments (tree
, VEC(tree
,gc
) *, VEC(tree
,gc
) *, tree
,
89 static tree
pointer_diff (tree
, tree
);
90 static tree
convert_for_assignment (location_t
, tree
, tree
, tree
,
91 enum impl_conv
, bool, tree
, tree
, int);
92 static tree
valid_compound_expr_initializer (tree
, tree
);
93 static void push_string (const char *);
94 static void push_member_name (tree
);
95 static int spelling_length (void);
96 static char *print_spelling (char *);
97 static void warning_init (int, const char *);
98 static tree
digest_init (location_t
, tree
, tree
, tree
, bool, bool, int);
99 static void output_init_element (tree
, tree
, bool, tree
, tree
, int, bool);
100 static void output_pending_init_elements (int);
101 static int set_designator (int);
102 static void push_range_stack (tree
);
103 static void add_pending_init (tree
, tree
, tree
, bool);
104 static void set_nonincremental_init (void);
105 static void set_nonincremental_init_from_string (tree
);
106 static tree
find_init_member (tree
);
107 static void readonly_error (tree
, enum lvalue_use
);
108 static void readonly_warning (tree
, enum lvalue_use
);
109 static int lvalue_or_else (const_tree
, enum lvalue_use
);
110 static void record_maybe_used_decl (tree
);
111 static int comptypes_internal (const_tree
, const_tree
, bool *);
113 /* Return true if EXP is a null pointer constant, false otherwise. */
116 null_pointer_constant_p (const_tree expr
)
118 /* This should really operate on c_expr structures, but they aren't
119 yet available everywhere required. */
120 tree type
= TREE_TYPE (expr
);
121 return (TREE_CODE (expr
) == INTEGER_CST
122 && !TREE_OVERFLOW (expr
)
123 && integer_zerop (expr
)
124 && (INTEGRAL_TYPE_P (type
)
125 || (TREE_CODE (type
) == POINTER_TYPE
126 && VOID_TYPE_P (TREE_TYPE (type
))
127 && TYPE_QUALS (TREE_TYPE (type
)) == TYPE_UNQUALIFIED
)));
130 /* EXPR may appear in an unevaluated part of an integer constant
131 expression, but not in an evaluated part. Wrap it in a
132 C_MAYBE_CONST_EXPR, or mark it with TREE_OVERFLOW if it is just an
133 INTEGER_CST and we cannot create a C_MAYBE_CONST_EXPR. */
136 note_integer_operands (tree expr
)
139 if (TREE_CODE (expr
) == INTEGER_CST
&& in_late_binary_op
)
141 ret
= copy_node (expr
);
142 TREE_OVERFLOW (ret
) = 1;
146 ret
= build2 (C_MAYBE_CONST_EXPR
, TREE_TYPE (expr
), NULL_TREE
, expr
);
147 C_MAYBE_CONST_EXPR_INT_OPERANDS (ret
) = 1;
152 /* Having checked whether EXPR may appear in an unevaluated part of an
153 integer constant expression and found that it may, remove any
154 C_MAYBE_CONST_EXPR noting this fact and return the resulting
158 remove_c_maybe_const_expr (tree expr
)
160 if (TREE_CODE (expr
) == C_MAYBE_CONST_EXPR
)
161 return C_MAYBE_CONST_EXPR_EXPR (expr
);
166 \f/* This is a cache to hold if two types are compatible or not. */
168 struct tagged_tu_seen_cache
{
169 const struct tagged_tu_seen_cache
* next
;
172 /* The return value of tagged_types_tu_compatible_p if we had seen
173 these two types already. */
177 static const struct tagged_tu_seen_cache
* tagged_tu_seen_base
;
178 static void free_all_tagged_tu_seen_up_to (const struct tagged_tu_seen_cache
*);
180 /* Do `exp = require_complete_type (exp);' to make sure exp
181 does not have an incomplete type. (That includes void types.) */
184 require_complete_type (tree value
)
186 tree type
= TREE_TYPE (value
);
188 if (value
== error_mark_node
|| type
== error_mark_node
)
189 return error_mark_node
;
191 /* First, detect a valid value with a complete type. */
192 if (COMPLETE_TYPE_P (type
))
195 c_incomplete_type_error (value
, type
);
196 return error_mark_node
;
199 /* Print an error message for invalid use of an incomplete type.
200 VALUE is the expression that was used (or 0 if that isn't known)
201 and TYPE is the type that was invalid. */
204 c_incomplete_type_error (const_tree value
, const_tree type
)
206 const char *type_code_string
;
208 /* Avoid duplicate error message. */
209 if (TREE_CODE (type
) == ERROR_MARK
)
212 if (value
!= 0 && (TREE_CODE (value
) == VAR_DECL
213 || TREE_CODE (value
) == PARM_DECL
))
214 error ("%qD has an incomplete type", value
);
218 /* We must print an error message. Be clever about what it says. */
220 switch (TREE_CODE (type
))
223 type_code_string
= "struct";
227 type_code_string
= "union";
231 type_code_string
= "enum";
235 error ("invalid use of void expression");
239 if (TYPE_DOMAIN (type
))
241 if (TYPE_MAX_VALUE (TYPE_DOMAIN (type
)) == NULL
)
243 error ("invalid use of flexible array member");
246 type
= TREE_TYPE (type
);
249 error ("invalid use of array with unspecified bounds");
256 if (TREE_CODE (TYPE_NAME (type
)) == IDENTIFIER_NODE
)
257 error ("invalid use of undefined type %<%s %E%>",
258 type_code_string
, TYPE_NAME (type
));
260 /* If this type has a typedef-name, the TYPE_NAME is a TYPE_DECL. */
261 error ("invalid use of incomplete typedef %qD", TYPE_NAME (type
));
265 /* Given a type, apply default promotions wrt unnamed function
266 arguments and return the new type. */
269 c_type_promotes_to (tree type
)
271 if (TYPE_MAIN_VARIANT (type
) == float_type_node
)
272 return double_type_node
;
274 if (c_promoting_integer_type_p (type
))
276 /* Preserve unsignedness if not really getting any wider. */
277 if (TYPE_UNSIGNED (type
)
278 && (TYPE_PRECISION (type
) == TYPE_PRECISION (integer_type_node
)))
279 return unsigned_type_node
;
280 return integer_type_node
;
286 /* Return a variant of TYPE which has all the type qualifiers of LIKE
287 as well as those of TYPE. */
290 qualify_type (tree type
, tree like
)
292 return c_build_qualified_type (type
,
293 TYPE_QUALS (type
) | TYPE_QUALS (like
));
296 /* Return true iff the given tree T is a variable length array. */
299 c_vla_type_p (const_tree t
)
301 if (TREE_CODE (t
) == ARRAY_TYPE
302 && C_TYPE_VARIABLE_SIZE (t
))
307 /* Return the composite type of two compatible types.
309 We assume that comptypes has already been done and returned
310 nonzero; if that isn't so, this may crash. In particular, we
311 assume that qualifiers match. */
314 composite_type (tree t1
, tree t2
)
316 enum tree_code code1
;
317 enum tree_code code2
;
320 /* Save time if the two types are the same. */
322 if (t1
== t2
) return t1
;
324 /* If one type is nonsense, use the other. */
325 if (t1
== error_mark_node
)
327 if (t2
== error_mark_node
)
330 code1
= TREE_CODE (t1
);
331 code2
= TREE_CODE (t2
);
333 /* Merge the attributes. */
334 attributes
= targetm
.merge_type_attributes (t1
, t2
);
336 /* If one is an enumerated type and the other is the compatible
337 integer type, the composite type might be either of the two
338 (DR#013 question 3). For consistency, use the enumerated type as
339 the composite type. */
341 if (code1
== ENUMERAL_TYPE
&& code2
== INTEGER_TYPE
)
343 if (code2
== ENUMERAL_TYPE
&& code1
== INTEGER_TYPE
)
346 gcc_assert (code1
== code2
);
351 /* For two pointers, do this recursively on the target type. */
353 tree pointed_to_1
= TREE_TYPE (t1
);
354 tree pointed_to_2
= TREE_TYPE (t2
);
355 tree target
= composite_type (pointed_to_1
, pointed_to_2
);
356 t1
= build_pointer_type (target
);
357 t1
= build_type_attribute_variant (t1
, attributes
);
358 return qualify_type (t1
, t2
);
363 tree elt
= composite_type (TREE_TYPE (t1
), TREE_TYPE (t2
));
366 tree d1
= TYPE_DOMAIN (t1
);
367 tree d2
= TYPE_DOMAIN (t2
);
368 bool d1_variable
, d2_variable
;
369 bool d1_zero
, d2_zero
;
370 bool t1_complete
, t2_complete
;
372 /* We should not have any type quals on arrays at all. */
373 gcc_assert (!TYPE_QUALS (t1
) && !TYPE_QUALS (t2
));
375 t1_complete
= COMPLETE_TYPE_P (t1
);
376 t2_complete
= COMPLETE_TYPE_P (t2
);
378 d1_zero
= d1
== 0 || !TYPE_MAX_VALUE (d1
);
379 d2_zero
= d2
== 0 || !TYPE_MAX_VALUE (d2
);
381 d1_variable
= (!d1_zero
382 && (TREE_CODE (TYPE_MIN_VALUE (d1
)) != INTEGER_CST
383 || TREE_CODE (TYPE_MAX_VALUE (d1
)) != INTEGER_CST
));
384 d2_variable
= (!d2_zero
385 && (TREE_CODE (TYPE_MIN_VALUE (d2
)) != INTEGER_CST
386 || TREE_CODE (TYPE_MAX_VALUE (d2
)) != INTEGER_CST
));
387 d1_variable
= d1_variable
|| (d1_zero
&& c_vla_type_p (t1
));
388 d2_variable
= d2_variable
|| (d2_zero
&& c_vla_type_p (t2
));
390 /* Save space: see if the result is identical to one of the args. */
391 if (elt
== TREE_TYPE (t1
) && TYPE_DOMAIN (t1
)
392 && (d2_variable
|| d2_zero
|| !d1_variable
))
393 return build_type_attribute_variant (t1
, attributes
);
394 if (elt
== TREE_TYPE (t2
) && TYPE_DOMAIN (t2
)
395 && (d1_variable
|| d1_zero
|| !d2_variable
))
396 return build_type_attribute_variant (t2
, attributes
);
398 if (elt
== TREE_TYPE (t1
) && !TYPE_DOMAIN (t2
) && !TYPE_DOMAIN (t1
))
399 return build_type_attribute_variant (t1
, attributes
);
400 if (elt
== TREE_TYPE (t2
) && !TYPE_DOMAIN (t2
) && !TYPE_DOMAIN (t1
))
401 return build_type_attribute_variant (t2
, attributes
);
403 /* Merge the element types, and have a size if either arg has
404 one. We may have qualifiers on the element types. To set
405 up TYPE_MAIN_VARIANT correctly, we need to form the
406 composite of the unqualified types and add the qualifiers
408 quals
= TYPE_QUALS (strip_array_types (elt
));
409 unqual_elt
= c_build_qualified_type (elt
, TYPE_UNQUALIFIED
);
410 t1
= build_array_type (unqual_elt
,
411 TYPE_DOMAIN ((TYPE_DOMAIN (t1
)
417 /* Ensure a composite type involving a zero-length array type
418 is a zero-length type not an incomplete type. */
419 if (d1_zero
&& d2_zero
420 && (t1_complete
|| t2_complete
)
421 && !COMPLETE_TYPE_P (t1
))
423 TYPE_SIZE (t1
) = bitsize_zero_node
;
424 TYPE_SIZE_UNIT (t1
) = size_zero_node
;
426 t1
= c_build_qualified_type (t1
, quals
);
427 return build_type_attribute_variant (t1
, attributes
);
433 if (attributes
!= NULL
)
435 /* Try harder not to create a new aggregate type. */
436 if (attribute_list_equal (TYPE_ATTRIBUTES (t1
), attributes
))
438 if (attribute_list_equal (TYPE_ATTRIBUTES (t2
), attributes
))
441 return build_type_attribute_variant (t1
, attributes
);
444 /* Function types: prefer the one that specified arg types.
445 If both do, merge the arg types. Also merge the return types. */
447 tree valtype
= composite_type (TREE_TYPE (t1
), TREE_TYPE (t2
));
448 tree p1
= TYPE_ARG_TYPES (t1
);
449 tree p2
= TYPE_ARG_TYPES (t2
);
454 /* Save space: see if the result is identical to one of the args. */
455 if (valtype
== TREE_TYPE (t1
) && !TYPE_ARG_TYPES (t2
))
456 return build_type_attribute_variant (t1
, attributes
);
457 if (valtype
== TREE_TYPE (t2
) && !TYPE_ARG_TYPES (t1
))
458 return build_type_attribute_variant (t2
, attributes
);
460 /* Simple way if one arg fails to specify argument types. */
461 if (TYPE_ARG_TYPES (t1
) == 0)
463 t1
= build_function_type (valtype
, TYPE_ARG_TYPES (t2
));
464 t1
= build_type_attribute_variant (t1
, attributes
);
465 return qualify_type (t1
, t2
);
467 if (TYPE_ARG_TYPES (t2
) == 0)
469 t1
= build_function_type (valtype
, TYPE_ARG_TYPES (t1
));
470 t1
= build_type_attribute_variant (t1
, attributes
);
471 return qualify_type (t1
, t2
);
474 /* If both args specify argument types, we must merge the two
475 lists, argument by argument. */
476 /* Tell global_bindings_p to return false so that variable_size
477 doesn't die on VLAs in parameter types. */
478 c_override_global_bindings_to_false
= true;
480 len
= list_length (p1
);
483 for (i
= 0; i
< len
; i
++)
484 newargs
= tree_cons (NULL_TREE
, NULL_TREE
, newargs
);
489 p1
= TREE_CHAIN (p1
), p2
= TREE_CHAIN (p2
), n
= TREE_CHAIN (n
))
491 /* A null type means arg type is not specified.
492 Take whatever the other function type has. */
493 if (TREE_VALUE (p1
) == 0)
495 TREE_VALUE (n
) = TREE_VALUE (p2
);
498 if (TREE_VALUE (p2
) == 0)
500 TREE_VALUE (n
) = TREE_VALUE (p1
);
504 /* Given wait (union {union wait *u; int *i} *)
505 and wait (union wait *),
506 prefer union wait * as type of parm. */
507 if (TREE_CODE (TREE_VALUE (p1
)) == UNION_TYPE
508 && TREE_VALUE (p1
) != TREE_VALUE (p2
))
511 tree mv2
= TREE_VALUE (p2
);
512 if (mv2
&& mv2
!= error_mark_node
513 && TREE_CODE (mv2
) != ARRAY_TYPE
)
514 mv2
= TYPE_MAIN_VARIANT (mv2
);
515 for (memb
= TYPE_FIELDS (TREE_VALUE (p1
));
516 memb
; memb
= TREE_CHAIN (memb
))
518 tree mv3
= TREE_TYPE (memb
);
519 if (mv3
&& mv3
!= error_mark_node
520 && TREE_CODE (mv3
) != ARRAY_TYPE
)
521 mv3
= TYPE_MAIN_VARIANT (mv3
);
522 if (comptypes (mv3
, mv2
))
524 TREE_VALUE (n
) = composite_type (TREE_TYPE (memb
),
526 pedwarn (input_location
, OPT_pedantic
,
527 "function types not truly compatible in ISO C");
532 if (TREE_CODE (TREE_VALUE (p2
)) == UNION_TYPE
533 && TREE_VALUE (p2
) != TREE_VALUE (p1
))
536 tree mv1
= TREE_VALUE (p1
);
537 if (mv1
&& mv1
!= error_mark_node
538 && TREE_CODE (mv1
) != ARRAY_TYPE
)
539 mv1
= TYPE_MAIN_VARIANT (mv1
);
540 for (memb
= TYPE_FIELDS (TREE_VALUE (p2
));
541 memb
; memb
= TREE_CHAIN (memb
))
543 tree mv3
= TREE_TYPE (memb
);
544 if (mv3
&& mv3
!= error_mark_node
545 && TREE_CODE (mv3
) != ARRAY_TYPE
)
546 mv3
= TYPE_MAIN_VARIANT (mv3
);
547 if (comptypes (mv3
, mv1
))
549 TREE_VALUE (n
) = composite_type (TREE_TYPE (memb
),
551 pedwarn (input_location
, OPT_pedantic
,
552 "function types not truly compatible in ISO C");
557 TREE_VALUE (n
) = composite_type (TREE_VALUE (p1
), TREE_VALUE (p2
));
561 c_override_global_bindings_to_false
= false;
562 t1
= build_function_type (valtype
, newargs
);
563 t1
= qualify_type (t1
, t2
);
564 /* ... falls through ... */
568 return build_type_attribute_variant (t1
, attributes
);
573 /* Return the type of a conditional expression between pointers to
574 possibly differently qualified versions of compatible types.
576 We assume that comp_target_types has already been done and returned
577 nonzero; if that isn't so, this may crash. */
580 common_pointer_type (tree t1
, tree t2
)
583 tree pointed_to_1
, mv1
;
584 tree pointed_to_2
, mv2
;
586 unsigned target_quals
;
588 /* Save time if the two types are the same. */
590 if (t1
== t2
) return t1
;
592 /* If one type is nonsense, use the other. */
593 if (t1
== error_mark_node
)
595 if (t2
== error_mark_node
)
598 gcc_assert (TREE_CODE (t1
) == POINTER_TYPE
599 && TREE_CODE (t2
) == POINTER_TYPE
);
601 /* Merge the attributes. */
602 attributes
= targetm
.merge_type_attributes (t1
, t2
);
604 /* Find the composite type of the target types, and combine the
605 qualifiers of the two types' targets. Do not lose qualifiers on
606 array element types by taking the TYPE_MAIN_VARIANT. */
607 mv1
= pointed_to_1
= TREE_TYPE (t1
);
608 mv2
= pointed_to_2
= TREE_TYPE (t2
);
609 if (TREE_CODE (mv1
) != ARRAY_TYPE
)
610 mv1
= TYPE_MAIN_VARIANT (pointed_to_1
);
611 if (TREE_CODE (mv2
) != ARRAY_TYPE
)
612 mv2
= TYPE_MAIN_VARIANT (pointed_to_2
);
613 target
= composite_type (mv1
, mv2
);
615 /* For function types do not merge const qualifiers, but drop them
616 if used inconsistently. The middle-end uses these to mark const
617 and noreturn functions. */
618 if (TREE_CODE (pointed_to_1
) == FUNCTION_TYPE
)
619 target_quals
= TYPE_QUALS (pointed_to_1
) & TYPE_QUALS (pointed_to_2
);
621 target_quals
= TYPE_QUALS (pointed_to_1
) | TYPE_QUALS (pointed_to_2
);
622 t1
= build_pointer_type (c_build_qualified_type (target
, target_quals
));
623 return build_type_attribute_variant (t1
, attributes
);
626 /* Return the common type for two arithmetic types under the usual
627 arithmetic conversions. The default conversions have already been
628 applied, and enumerated types converted to their compatible integer
629 types. The resulting type is unqualified and has no attributes.
631 This is the type for the result of most arithmetic operations
632 if the operands have the given two types. */
635 c_common_type (tree t1
, tree t2
)
637 enum tree_code code1
;
638 enum tree_code code2
;
640 /* If one type is nonsense, use the other. */
641 if (t1
== error_mark_node
)
643 if (t2
== error_mark_node
)
646 if (TYPE_QUALS (t1
) != TYPE_UNQUALIFIED
)
647 t1
= TYPE_MAIN_VARIANT (t1
);
649 if (TYPE_QUALS (t2
) != TYPE_UNQUALIFIED
)
650 t2
= TYPE_MAIN_VARIANT (t2
);
652 if (TYPE_ATTRIBUTES (t1
) != NULL_TREE
)
653 t1
= build_type_attribute_variant (t1
, NULL_TREE
);
655 if (TYPE_ATTRIBUTES (t2
) != NULL_TREE
)
656 t2
= build_type_attribute_variant (t2
, NULL_TREE
);
658 /* Save time if the two types are the same. */
660 if (t1
== t2
) return t1
;
662 code1
= TREE_CODE (t1
);
663 code2
= TREE_CODE (t2
);
665 gcc_assert (code1
== VECTOR_TYPE
|| code1
== COMPLEX_TYPE
666 || code1
== FIXED_POINT_TYPE
|| code1
== REAL_TYPE
667 || code1
== INTEGER_TYPE
);
668 gcc_assert (code2
== VECTOR_TYPE
|| code2
== COMPLEX_TYPE
669 || code2
== FIXED_POINT_TYPE
|| code2
== REAL_TYPE
670 || code2
== INTEGER_TYPE
);
672 /* When one operand is a decimal float type, the other operand cannot be
673 a generic float type or a complex type. We also disallow vector types
675 if ((DECIMAL_FLOAT_TYPE_P (t1
) || DECIMAL_FLOAT_TYPE_P (t2
))
676 && !(DECIMAL_FLOAT_TYPE_P (t1
) && DECIMAL_FLOAT_TYPE_P (t2
)))
678 if (code1
== VECTOR_TYPE
|| code2
== VECTOR_TYPE
)
680 error ("can%'t mix operands of decimal float and vector types");
681 return error_mark_node
;
683 if (code1
== COMPLEX_TYPE
|| code2
== COMPLEX_TYPE
)
685 error ("can%'t mix operands of decimal float and complex types");
686 return error_mark_node
;
688 if (code1
== REAL_TYPE
&& code2
== REAL_TYPE
)
690 error ("can%'t mix operands of decimal float and other float types");
691 return error_mark_node
;
695 /* If one type is a vector type, return that type. (How the usual
696 arithmetic conversions apply to the vector types extension is not
697 precisely specified.) */
698 if (code1
== VECTOR_TYPE
)
701 if (code2
== VECTOR_TYPE
)
704 /* If one type is complex, form the common type of the non-complex
705 components, then make that complex. Use T1 or T2 if it is the
707 if (code1
== COMPLEX_TYPE
|| code2
== COMPLEX_TYPE
)
709 tree subtype1
= code1
== COMPLEX_TYPE
? TREE_TYPE (t1
) : t1
;
710 tree subtype2
= code2
== COMPLEX_TYPE
? TREE_TYPE (t2
) : t2
;
711 tree subtype
= c_common_type (subtype1
, subtype2
);
713 if (code1
== COMPLEX_TYPE
&& TREE_TYPE (t1
) == subtype
)
715 else if (code2
== COMPLEX_TYPE
&& TREE_TYPE (t2
) == subtype
)
718 return build_complex_type (subtype
);
721 /* If only one is real, use it as the result. */
723 if (code1
== REAL_TYPE
&& code2
!= REAL_TYPE
)
726 if (code2
== REAL_TYPE
&& code1
!= REAL_TYPE
)
729 /* If both are real and either are decimal floating point types, use
730 the decimal floating point type with the greater precision. */
732 if (code1
== REAL_TYPE
&& code2
== REAL_TYPE
)
734 if (TYPE_MAIN_VARIANT (t1
) == dfloat128_type_node
735 || TYPE_MAIN_VARIANT (t2
) == dfloat128_type_node
)
736 return dfloat128_type_node
;
737 else if (TYPE_MAIN_VARIANT (t1
) == dfloat64_type_node
738 || TYPE_MAIN_VARIANT (t2
) == dfloat64_type_node
)
739 return dfloat64_type_node
;
740 else if (TYPE_MAIN_VARIANT (t1
) == dfloat32_type_node
741 || TYPE_MAIN_VARIANT (t2
) == dfloat32_type_node
)
742 return dfloat32_type_node
;
745 /* Deal with fixed-point types. */
746 if (code1
== FIXED_POINT_TYPE
|| code2
== FIXED_POINT_TYPE
)
748 unsigned int unsignedp
= 0, satp
= 0;
749 enum machine_mode m1
, m2
;
750 unsigned int fbit1
, ibit1
, fbit2
, ibit2
, max_fbit
, max_ibit
;
755 /* If one input type is saturating, the result type is saturating. */
756 if (TYPE_SATURATING (t1
) || TYPE_SATURATING (t2
))
759 /* If both fixed-point types are unsigned, the result type is unsigned.
760 When mixing fixed-point and integer types, follow the sign of the
762 Otherwise, the result type is signed. */
763 if ((TYPE_UNSIGNED (t1
) && TYPE_UNSIGNED (t2
)
764 && code1
== FIXED_POINT_TYPE
&& code2
== FIXED_POINT_TYPE
)
765 || (code1
== FIXED_POINT_TYPE
&& code2
!= FIXED_POINT_TYPE
766 && TYPE_UNSIGNED (t1
))
767 || (code1
!= FIXED_POINT_TYPE
&& code2
== FIXED_POINT_TYPE
768 && TYPE_UNSIGNED (t2
)))
771 /* The result type is signed. */
774 /* If the input type is unsigned, we need to convert to the
776 if (code1
== FIXED_POINT_TYPE
&& TYPE_UNSIGNED (t1
))
778 enum mode_class mclass
= (enum mode_class
) 0;
779 if (GET_MODE_CLASS (m1
) == MODE_UFRACT
)
781 else if (GET_MODE_CLASS (m1
) == MODE_UACCUM
)
785 m1
= mode_for_size (GET_MODE_PRECISION (m1
), mclass
, 0);
787 if (code2
== FIXED_POINT_TYPE
&& TYPE_UNSIGNED (t2
))
789 enum mode_class mclass
= (enum mode_class
) 0;
790 if (GET_MODE_CLASS (m2
) == MODE_UFRACT
)
792 else if (GET_MODE_CLASS (m2
) == MODE_UACCUM
)
796 m2
= mode_for_size (GET_MODE_PRECISION (m2
), mclass
, 0);
800 if (code1
== FIXED_POINT_TYPE
)
802 fbit1
= GET_MODE_FBIT (m1
);
803 ibit1
= GET_MODE_IBIT (m1
);
808 /* Signed integers need to subtract one sign bit. */
809 ibit1
= TYPE_PRECISION (t1
) - (!TYPE_UNSIGNED (t1
));
812 if (code2
== FIXED_POINT_TYPE
)
814 fbit2
= GET_MODE_FBIT (m2
);
815 ibit2
= GET_MODE_IBIT (m2
);
820 /* Signed integers need to subtract one sign bit. */
821 ibit2
= TYPE_PRECISION (t2
) - (!TYPE_UNSIGNED (t2
));
824 max_ibit
= ibit1
>= ibit2
? ibit1
: ibit2
;
825 max_fbit
= fbit1
>= fbit2
? fbit1
: fbit2
;
826 return c_common_fixed_point_type_for_size (max_ibit
, max_fbit
, unsignedp
,
830 /* Both real or both integers; use the one with greater precision. */
832 if (TYPE_PRECISION (t1
) > TYPE_PRECISION (t2
))
834 else if (TYPE_PRECISION (t2
) > TYPE_PRECISION (t1
))
837 /* Same precision. Prefer long longs to longs to ints when the
838 same precision, following the C99 rules on integer type rank
839 (which are equivalent to the C90 rules for C90 types). */
841 if (TYPE_MAIN_VARIANT (t1
) == long_long_unsigned_type_node
842 || TYPE_MAIN_VARIANT (t2
) == long_long_unsigned_type_node
)
843 return long_long_unsigned_type_node
;
845 if (TYPE_MAIN_VARIANT (t1
) == long_long_integer_type_node
846 || TYPE_MAIN_VARIANT (t2
) == long_long_integer_type_node
)
848 if (TYPE_UNSIGNED (t1
) || TYPE_UNSIGNED (t2
))
849 return long_long_unsigned_type_node
;
851 return long_long_integer_type_node
;
854 if (TYPE_MAIN_VARIANT (t1
) == long_unsigned_type_node
855 || TYPE_MAIN_VARIANT (t2
) == long_unsigned_type_node
)
856 return long_unsigned_type_node
;
858 if (TYPE_MAIN_VARIANT (t1
) == long_integer_type_node
859 || TYPE_MAIN_VARIANT (t2
) == long_integer_type_node
)
861 /* But preserve unsignedness from the other type,
862 since long cannot hold all the values of an unsigned int. */
863 if (TYPE_UNSIGNED (t1
) || TYPE_UNSIGNED (t2
))
864 return long_unsigned_type_node
;
866 return long_integer_type_node
;
869 /* Likewise, prefer long double to double even if same size. */
870 if (TYPE_MAIN_VARIANT (t1
) == long_double_type_node
871 || TYPE_MAIN_VARIANT (t2
) == long_double_type_node
)
872 return long_double_type_node
;
874 /* Otherwise prefer the unsigned one. */
876 if (TYPE_UNSIGNED (t1
))
882 /* Wrapper around c_common_type that is used by c-common.c and other
883 front end optimizations that remove promotions. ENUMERAL_TYPEs
884 are allowed here and are converted to their compatible integer types.
885 BOOLEAN_TYPEs are allowed here and return either boolean_type_node or
886 preferably a non-Boolean type as the common type. */
888 common_type (tree t1
, tree t2
)
890 if (TREE_CODE (t1
) == ENUMERAL_TYPE
)
891 t1
= c_common_type_for_size (TYPE_PRECISION (t1
), 1);
892 if (TREE_CODE (t2
) == ENUMERAL_TYPE
)
893 t2
= c_common_type_for_size (TYPE_PRECISION (t2
), 1);
895 /* If both types are BOOLEAN_TYPE, then return boolean_type_node. */
896 if (TREE_CODE (t1
) == BOOLEAN_TYPE
897 && TREE_CODE (t2
) == BOOLEAN_TYPE
)
898 return boolean_type_node
;
900 /* If either type is BOOLEAN_TYPE, then return the other. */
901 if (TREE_CODE (t1
) == BOOLEAN_TYPE
)
903 if (TREE_CODE (t2
) == BOOLEAN_TYPE
)
906 return c_common_type (t1
, t2
);
909 /* Return 1 if TYPE1 and TYPE2 are compatible types for assignment
910 or various other operations. Return 2 if they are compatible
911 but a warning may be needed if you use them together. */
914 comptypes (tree type1
, tree type2
)
916 const struct tagged_tu_seen_cache
* tagged_tu_seen_base1
= tagged_tu_seen_base
;
919 val
= comptypes_internal (type1
, type2
, NULL
);
920 free_all_tagged_tu_seen_up_to (tagged_tu_seen_base1
);
925 /* Like comptypes, but if it returns non-zero because enum and int are
926 compatible, it sets *ENUM_AND_INT_P to true. */
929 comptypes_check_enum_int (tree type1
, tree type2
, bool *enum_and_int_p
)
931 const struct tagged_tu_seen_cache
* tagged_tu_seen_base1
= tagged_tu_seen_base
;
934 val
= comptypes_internal (type1
, type2
, enum_and_int_p
);
935 free_all_tagged_tu_seen_up_to (tagged_tu_seen_base1
);
940 /* Return 1 if TYPE1 and TYPE2 are compatible types for assignment
941 or various other operations. Return 2 if they are compatible
942 but a warning may be needed if you use them together. If
943 ENUM_AND_INT_P is not NULL, and one type is an enum and the other a
944 compatible integer type, then this sets *ENUM_AND_INT_P to true;
945 *ENUM_AND_INT_P is never set to false. This differs from
946 comptypes, in that we don't free the seen types. */
949 comptypes_internal (const_tree type1
, const_tree type2
, bool *enum_and_int_p
)
951 const_tree t1
= type1
;
952 const_tree t2
= type2
;
955 /* Suppress errors caused by previously reported errors. */
957 if (t1
== t2
|| !t1
|| !t2
958 || TREE_CODE (t1
) == ERROR_MARK
|| TREE_CODE (t2
) == ERROR_MARK
)
961 /* If either type is the internal version of sizetype, return the
963 if (TREE_CODE (t1
) == INTEGER_TYPE
&& TYPE_IS_SIZETYPE (t1
)
964 && TYPE_ORIG_SIZE_TYPE (t1
))
965 t1
= TYPE_ORIG_SIZE_TYPE (t1
);
967 if (TREE_CODE (t2
) == INTEGER_TYPE
&& TYPE_IS_SIZETYPE (t2
)
968 && TYPE_ORIG_SIZE_TYPE (t2
))
969 t2
= TYPE_ORIG_SIZE_TYPE (t2
);
972 /* Enumerated types are compatible with integer types, but this is
973 not transitive: two enumerated types in the same translation unit
974 are compatible with each other only if they are the same type. */
976 if (TREE_CODE (t1
) == ENUMERAL_TYPE
&& TREE_CODE (t2
) != ENUMERAL_TYPE
)
978 t1
= c_common_type_for_size (TYPE_PRECISION (t1
), TYPE_UNSIGNED (t1
));
979 if (enum_and_int_p
!= NULL
&& TREE_CODE (t2
) != VOID_TYPE
)
980 *enum_and_int_p
= true;
982 else if (TREE_CODE (t2
) == ENUMERAL_TYPE
&& TREE_CODE (t1
) != ENUMERAL_TYPE
)
984 t2
= c_common_type_for_size (TYPE_PRECISION (t2
), TYPE_UNSIGNED (t2
));
985 if (enum_and_int_p
!= NULL
&& TREE_CODE (t1
) != VOID_TYPE
)
986 *enum_and_int_p
= true;
992 /* Different classes of types can't be compatible. */
994 if (TREE_CODE (t1
) != TREE_CODE (t2
))
997 /* Qualifiers must match. C99 6.7.3p9 */
999 if (TYPE_QUALS (t1
) != TYPE_QUALS (t2
))
1002 /* Allow for two different type nodes which have essentially the same
1003 definition. Note that we already checked for equality of the type
1004 qualifiers (just above). */
1006 if (TREE_CODE (t1
) != ARRAY_TYPE
1007 && TYPE_MAIN_VARIANT (t1
) == TYPE_MAIN_VARIANT (t2
))
1010 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
1011 if (!(attrval
= targetm
.comp_type_attributes (t1
, t2
)))
1014 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
1017 switch (TREE_CODE (t1
))
1020 /* Do not remove mode or aliasing information. */
1021 if (TYPE_MODE (t1
) != TYPE_MODE (t2
)
1022 || TYPE_REF_CAN_ALIAS_ALL (t1
) != TYPE_REF_CAN_ALIAS_ALL (t2
))
1024 val
= (TREE_TYPE (t1
) == TREE_TYPE (t2
)
1025 ? 1 : comptypes_internal (TREE_TYPE (t1
), TREE_TYPE (t2
),
1030 val
= function_types_compatible_p (t1
, t2
, enum_and_int_p
);
1035 tree d1
= TYPE_DOMAIN (t1
);
1036 tree d2
= TYPE_DOMAIN (t2
);
1037 bool d1_variable
, d2_variable
;
1038 bool d1_zero
, d2_zero
;
1041 /* Target types must match incl. qualifiers. */
1042 if (TREE_TYPE (t1
) != TREE_TYPE (t2
)
1043 && 0 == (val
= comptypes_internal (TREE_TYPE (t1
), TREE_TYPE (t2
),
1047 /* Sizes must match unless one is missing or variable. */
1048 if (d1
== 0 || d2
== 0 || d1
== d2
)
1051 d1_zero
= !TYPE_MAX_VALUE (d1
);
1052 d2_zero
= !TYPE_MAX_VALUE (d2
);
1054 d1_variable
= (!d1_zero
1055 && (TREE_CODE (TYPE_MIN_VALUE (d1
)) != INTEGER_CST
1056 || TREE_CODE (TYPE_MAX_VALUE (d1
)) != INTEGER_CST
));
1057 d2_variable
= (!d2_zero
1058 && (TREE_CODE (TYPE_MIN_VALUE (d2
)) != INTEGER_CST
1059 || TREE_CODE (TYPE_MAX_VALUE (d2
)) != INTEGER_CST
));
1060 d1_variable
= d1_variable
|| (d1_zero
&& c_vla_type_p (t1
));
1061 d2_variable
= d2_variable
|| (d2_zero
&& c_vla_type_p (t2
));
1063 if (d1_variable
|| d2_variable
)
1065 if (d1_zero
&& d2_zero
)
1067 if (d1_zero
|| d2_zero
1068 || !tree_int_cst_equal (TYPE_MIN_VALUE (d1
), TYPE_MIN_VALUE (d2
))
1069 || !tree_int_cst_equal (TYPE_MAX_VALUE (d1
), TYPE_MAX_VALUE (d2
)))
1078 if (val
!= 1 && !same_translation_unit_p (t1
, t2
))
1080 tree a1
= TYPE_ATTRIBUTES (t1
);
1081 tree a2
= TYPE_ATTRIBUTES (t2
);
1083 if (! attribute_list_contained (a1
, a2
)
1084 && ! attribute_list_contained (a2
, a1
))
1088 return tagged_types_tu_compatible_p (t1
, t2
, enum_and_int_p
);
1089 val
= tagged_types_tu_compatible_p (t1
, t2
, enum_and_int_p
);
1094 val
= (TYPE_VECTOR_SUBPARTS (t1
) == TYPE_VECTOR_SUBPARTS (t2
)
1095 && comptypes_internal (TREE_TYPE (t1
), TREE_TYPE (t2
),
1102 return attrval
== 2 && val
== 1 ? 2 : val
;
1105 /* Return 1 if TTL and TTR are pointers to types that are equivalent,
1106 ignoring their qualifiers. */
1109 comp_target_types (location_t location
, tree ttl
, tree ttr
)
1113 bool enum_and_int_p
;
1115 /* Do not lose qualifiers on element types of array types that are
1116 pointer targets by taking their TYPE_MAIN_VARIANT. */
1117 mvl
= TREE_TYPE (ttl
);
1118 mvr
= TREE_TYPE (ttr
);
1119 if (TREE_CODE (mvl
) != ARRAY_TYPE
)
1120 mvl
= TYPE_MAIN_VARIANT (mvl
);
1121 if (TREE_CODE (mvr
) != ARRAY_TYPE
)
1122 mvr
= TYPE_MAIN_VARIANT (mvr
);
1123 enum_and_int_p
= false;
1124 val
= comptypes_check_enum_int (mvl
, mvr
, &enum_and_int_p
);
1127 pedwarn (location
, OPT_pedantic
, "types are not quite compatible");
1129 if (val
== 1 && enum_and_int_p
&& warn_cxx_compat
)
1130 warning_at (location
, OPT_Wc___compat
,
1131 "pointer target types incompatible in C++");
1136 /* Subroutines of `comptypes'. */
1138 /* Determine whether two trees derive from the same translation unit.
1139 If the CONTEXT chain ends in a null, that tree's context is still
1140 being parsed, so if two trees have context chains ending in null,
1141 they're in the same translation unit. */
1143 same_translation_unit_p (const_tree t1
, const_tree t2
)
1145 while (t1
&& TREE_CODE (t1
) != TRANSLATION_UNIT_DECL
)
1146 switch (TREE_CODE_CLASS (TREE_CODE (t1
)))
1148 case tcc_declaration
:
1149 t1
= DECL_CONTEXT (t1
); break;
1151 t1
= TYPE_CONTEXT (t1
); break;
1152 case tcc_exceptional
:
1153 t1
= BLOCK_SUPERCONTEXT (t1
); break; /* assume block */
1154 default: gcc_unreachable ();
1157 while (t2
&& TREE_CODE (t2
) != TRANSLATION_UNIT_DECL
)
1158 switch (TREE_CODE_CLASS (TREE_CODE (t2
)))
1160 case tcc_declaration
:
1161 t2
= DECL_CONTEXT (t2
); break;
1163 t2
= TYPE_CONTEXT (t2
); break;
1164 case tcc_exceptional
:
1165 t2
= BLOCK_SUPERCONTEXT (t2
); break; /* assume block */
1166 default: gcc_unreachable ();
1172 /* Allocate the seen two types, assuming that they are compatible. */
1174 static struct tagged_tu_seen_cache
*
1175 alloc_tagged_tu_seen_cache (const_tree t1
, const_tree t2
)
1177 struct tagged_tu_seen_cache
*tu
= XNEW (struct tagged_tu_seen_cache
);
1178 tu
->next
= tagged_tu_seen_base
;
1182 tagged_tu_seen_base
= tu
;
1184 /* The C standard says that two structures in different translation
1185 units are compatible with each other only if the types of their
1186 fields are compatible (among other things). We assume that they
1187 are compatible until proven otherwise when building the cache.
1188 An example where this can occur is:
1193 If we are comparing this against a similar struct in another TU,
1194 and did not assume they were compatible, we end up with an infinite
1200 /* Free the seen types until we get to TU_TIL. */
1203 free_all_tagged_tu_seen_up_to (const struct tagged_tu_seen_cache
*tu_til
)
1205 const struct tagged_tu_seen_cache
*tu
= tagged_tu_seen_base
;
1206 while (tu
!= tu_til
)
1208 const struct tagged_tu_seen_cache
*const tu1
1209 = (const struct tagged_tu_seen_cache
*) tu
;
1211 free (CONST_CAST (struct tagged_tu_seen_cache
*, tu1
));
1213 tagged_tu_seen_base
= tu_til
;
1216 /* Return 1 if two 'struct', 'union', or 'enum' types T1 and T2 are
1217 compatible. If the two types are not the same (which has been
1218 checked earlier), this can only happen when multiple translation
1219 units are being compiled. See C99 6.2.7 paragraph 1 for the exact
1220 rules. ENUM_AND_INT_P is as in comptypes_internal. */
1223 tagged_types_tu_compatible_p (const_tree t1
, const_tree t2
,
1224 bool *enum_and_int_p
)
1227 bool needs_warning
= false;
1229 /* We have to verify that the tags of the types are the same. This
1230 is harder than it looks because this may be a typedef, so we have
1231 to go look at the original type. It may even be a typedef of a
1233 In the case of compiler-created builtin structs the TYPE_DECL
1234 may be a dummy, with no DECL_ORIGINAL_TYPE. Don't fault. */
1235 while (TYPE_NAME (t1
)
1236 && TREE_CODE (TYPE_NAME (t1
)) == TYPE_DECL
1237 && DECL_ORIGINAL_TYPE (TYPE_NAME (t1
)))
1238 t1
= DECL_ORIGINAL_TYPE (TYPE_NAME (t1
));
1240 while (TYPE_NAME (t2
)
1241 && TREE_CODE (TYPE_NAME (t2
)) == TYPE_DECL
1242 && DECL_ORIGINAL_TYPE (TYPE_NAME (t2
)))
1243 t2
= DECL_ORIGINAL_TYPE (TYPE_NAME (t2
));
1245 /* C90 didn't have the requirement that the two tags be the same. */
1246 if (flag_isoc99
&& TYPE_NAME (t1
) != TYPE_NAME (t2
))
1249 /* C90 didn't say what happened if one or both of the types were
1250 incomplete; we choose to follow C99 rules here, which is that they
1252 if (TYPE_SIZE (t1
) == NULL
1253 || TYPE_SIZE (t2
) == NULL
)
1257 const struct tagged_tu_seen_cache
* tts_i
;
1258 for (tts_i
= tagged_tu_seen_base
; tts_i
!= NULL
; tts_i
= tts_i
->next
)
1259 if (tts_i
->t1
== t1
&& tts_i
->t2
== t2
)
1263 switch (TREE_CODE (t1
))
1267 struct tagged_tu_seen_cache
*tu
= alloc_tagged_tu_seen_cache (t1
, t2
);
1268 /* Speed up the case where the type values are in the same order. */
1269 tree tv1
= TYPE_VALUES (t1
);
1270 tree tv2
= TYPE_VALUES (t2
);
1277 for (;tv1
&& tv2
; tv1
= TREE_CHAIN (tv1
), tv2
= TREE_CHAIN (tv2
))
1279 if (TREE_PURPOSE (tv1
) != TREE_PURPOSE (tv2
))
1281 if (simple_cst_equal (TREE_VALUE (tv1
), TREE_VALUE (tv2
)) != 1)
1288 if (tv1
== NULL_TREE
&& tv2
== NULL_TREE
)
1292 if (tv1
== NULL_TREE
|| tv2
== NULL_TREE
)
1298 if (list_length (TYPE_VALUES (t1
)) != list_length (TYPE_VALUES (t2
)))
1304 for (s1
= TYPE_VALUES (t1
); s1
; s1
= TREE_CHAIN (s1
))
1306 s2
= purpose_member (TREE_PURPOSE (s1
), TYPE_VALUES (t2
));
1308 || simple_cst_equal (TREE_VALUE (s1
), TREE_VALUE (s2
)) != 1)
1319 struct tagged_tu_seen_cache
*tu
= alloc_tagged_tu_seen_cache (t1
, t2
);
1320 if (list_length (TYPE_FIELDS (t1
)) != list_length (TYPE_FIELDS (t2
)))
1326 /* Speed up the common case where the fields are in the same order. */
1327 for (s1
= TYPE_FIELDS (t1
), s2
= TYPE_FIELDS (t2
); s1
&& s2
;
1328 s1
= TREE_CHAIN (s1
), s2
= TREE_CHAIN (s2
))
1332 if (DECL_NAME (s1
) != DECL_NAME (s2
))
1334 result
= comptypes_internal (TREE_TYPE (s1
), TREE_TYPE (s2
),
1337 if (result
!= 1 && !DECL_NAME (s1
))
1345 needs_warning
= true;
1347 if (TREE_CODE (s1
) == FIELD_DECL
1348 && simple_cst_equal (DECL_FIELD_BIT_OFFSET (s1
),
1349 DECL_FIELD_BIT_OFFSET (s2
)) != 1)
1357 tu
->val
= needs_warning
? 2 : 1;
1361 for (s1
= TYPE_FIELDS (t1
); s1
; s1
= TREE_CHAIN (s1
))
1365 for (s2
= TYPE_FIELDS (t2
); s2
; s2
= TREE_CHAIN (s2
))
1366 if (DECL_NAME (s1
) == DECL_NAME (s2
))
1370 result
= comptypes_internal (TREE_TYPE (s1
), TREE_TYPE (s2
),
1373 if (result
!= 1 && !DECL_NAME (s1
))
1381 needs_warning
= true;
1383 if (TREE_CODE (s1
) == FIELD_DECL
1384 && simple_cst_equal (DECL_FIELD_BIT_OFFSET (s1
),
1385 DECL_FIELD_BIT_OFFSET (s2
)) != 1)
1397 tu
->val
= needs_warning
? 2 : 10;
1403 struct tagged_tu_seen_cache
*tu
= alloc_tagged_tu_seen_cache (t1
, t2
);
1405 for (s1
= TYPE_FIELDS (t1
), s2
= TYPE_FIELDS (t2
);
1407 s1
= TREE_CHAIN (s1
), s2
= TREE_CHAIN (s2
))
1410 if (TREE_CODE (s1
) != TREE_CODE (s2
)
1411 || DECL_NAME (s1
) != DECL_NAME (s2
))
1413 result
= comptypes_internal (TREE_TYPE (s1
), TREE_TYPE (s2
),
1418 needs_warning
= true;
1420 if (TREE_CODE (s1
) == FIELD_DECL
1421 && simple_cst_equal (DECL_FIELD_BIT_OFFSET (s1
),
1422 DECL_FIELD_BIT_OFFSET (s2
)) != 1)
1428 tu
->val
= needs_warning
? 2 : 1;
1437 /* Return 1 if two function types F1 and F2 are compatible.
1438 If either type specifies no argument types,
1439 the other must specify a fixed number of self-promoting arg types.
1440 Otherwise, if one type specifies only the number of arguments,
1441 the other must specify that number of self-promoting arg types.
1442 Otherwise, the argument types must match.
1443 ENUM_AND_INT_P is as in comptypes_internal. */
1446 function_types_compatible_p (const_tree f1
, const_tree f2
,
1447 bool *enum_and_int_p
)
1450 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
1455 ret1
= TREE_TYPE (f1
);
1456 ret2
= TREE_TYPE (f2
);
1458 /* 'volatile' qualifiers on a function's return type used to mean
1459 the function is noreturn. */
1460 if (TYPE_VOLATILE (ret1
) != TYPE_VOLATILE (ret2
))
1461 pedwarn (input_location
, 0, "function return types not compatible due to %<volatile%>");
1462 if (TYPE_VOLATILE (ret1
))
1463 ret1
= build_qualified_type (TYPE_MAIN_VARIANT (ret1
),
1464 TYPE_QUALS (ret1
) & ~TYPE_QUAL_VOLATILE
);
1465 if (TYPE_VOLATILE (ret2
))
1466 ret2
= build_qualified_type (TYPE_MAIN_VARIANT (ret2
),
1467 TYPE_QUALS (ret2
) & ~TYPE_QUAL_VOLATILE
);
1468 val
= comptypes_internal (ret1
, ret2
, enum_and_int_p
);
1472 args1
= TYPE_ARG_TYPES (f1
);
1473 args2
= TYPE_ARG_TYPES (f2
);
1475 /* An unspecified parmlist matches any specified parmlist
1476 whose argument types don't need default promotions. */
1480 if (!self_promoting_args_p (args2
))
1482 /* If one of these types comes from a non-prototype fn definition,
1483 compare that with the other type's arglist.
1484 If they don't match, ask for a warning (but no error). */
1485 if (TYPE_ACTUAL_ARG_TYPES (f1
)
1486 && 1 != type_lists_compatible_p (args2
, TYPE_ACTUAL_ARG_TYPES (f1
),
1493 if (!self_promoting_args_p (args1
))
1495 if (TYPE_ACTUAL_ARG_TYPES (f2
)
1496 && 1 != type_lists_compatible_p (args1
, TYPE_ACTUAL_ARG_TYPES (f2
),
1502 /* Both types have argument lists: compare them and propagate results. */
1503 val1
= type_lists_compatible_p (args1
, args2
, enum_and_int_p
);
1504 return val1
!= 1 ? val1
: val
;
1507 /* Check two lists of types for compatibility, returning 0 for
1508 incompatible, 1 for compatible, or 2 for compatible with
1509 warning. ENUM_AND_INT_P is as in comptypes_internal. */
1512 type_lists_compatible_p (const_tree args1
, const_tree args2
,
1513 bool *enum_and_int_p
)
1515 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
1521 tree a1
, mv1
, a2
, mv2
;
1522 if (args1
== 0 && args2
== 0)
1524 /* If one list is shorter than the other,
1525 they fail to match. */
1526 if (args1
== 0 || args2
== 0)
1528 mv1
= a1
= TREE_VALUE (args1
);
1529 mv2
= a2
= TREE_VALUE (args2
);
1530 if (mv1
&& mv1
!= error_mark_node
&& TREE_CODE (mv1
) != ARRAY_TYPE
)
1531 mv1
= TYPE_MAIN_VARIANT (mv1
);
1532 if (mv2
&& mv2
!= error_mark_node
&& TREE_CODE (mv2
) != ARRAY_TYPE
)
1533 mv2
= TYPE_MAIN_VARIANT (mv2
);
1534 /* A null pointer instead of a type
1535 means there is supposed to be an argument
1536 but nothing is specified about what type it has.
1537 So match anything that self-promotes. */
1540 if (c_type_promotes_to (a2
) != a2
)
1545 if (c_type_promotes_to (a1
) != a1
)
1548 /* If one of the lists has an error marker, ignore this arg. */
1549 else if (TREE_CODE (a1
) == ERROR_MARK
1550 || TREE_CODE (a2
) == ERROR_MARK
)
1552 else if (!(newval
= comptypes_internal (mv1
, mv2
, enum_and_int_p
)))
1554 /* Allow wait (union {union wait *u; int *i} *)
1555 and wait (union wait *) to be compatible. */
1556 if (TREE_CODE (a1
) == UNION_TYPE
1557 && (TYPE_NAME (a1
) == 0
1558 || TYPE_TRANSPARENT_UNION (a1
))
1559 && TREE_CODE (TYPE_SIZE (a1
)) == INTEGER_CST
1560 && tree_int_cst_equal (TYPE_SIZE (a1
),
1564 for (memb
= TYPE_FIELDS (a1
);
1565 memb
; memb
= TREE_CHAIN (memb
))
1567 tree mv3
= TREE_TYPE (memb
);
1568 if (mv3
&& mv3
!= error_mark_node
1569 && TREE_CODE (mv3
) != ARRAY_TYPE
)
1570 mv3
= TYPE_MAIN_VARIANT (mv3
);
1571 if (comptypes_internal (mv3
, mv2
, enum_and_int_p
))
1577 else if (TREE_CODE (a2
) == UNION_TYPE
1578 && (TYPE_NAME (a2
) == 0
1579 || TYPE_TRANSPARENT_UNION (a2
))
1580 && TREE_CODE (TYPE_SIZE (a2
)) == INTEGER_CST
1581 && tree_int_cst_equal (TYPE_SIZE (a2
),
1585 for (memb
= TYPE_FIELDS (a2
);
1586 memb
; memb
= TREE_CHAIN (memb
))
1588 tree mv3
= TREE_TYPE (memb
);
1589 if (mv3
&& mv3
!= error_mark_node
1590 && TREE_CODE (mv3
) != ARRAY_TYPE
)
1591 mv3
= TYPE_MAIN_VARIANT (mv3
);
1592 if (comptypes_internal (mv3
, mv1
, enum_and_int_p
))
1602 /* comptypes said ok, but record if it said to warn. */
1606 args1
= TREE_CHAIN (args1
);
1607 args2
= TREE_CHAIN (args2
);
1611 /* Compute the size to increment a pointer by. */
1614 c_size_in_bytes (const_tree type
)
1616 enum tree_code code
= TREE_CODE (type
);
1618 if (code
== FUNCTION_TYPE
|| code
== VOID_TYPE
|| code
== ERROR_MARK
)
1619 return size_one_node
;
1621 if (!COMPLETE_OR_VOID_TYPE_P (type
))
1623 error ("arithmetic on pointer to an incomplete type");
1624 return size_one_node
;
1627 /* Convert in case a char is more than one unit. */
1628 return size_binop (CEIL_DIV_EXPR
, TYPE_SIZE_UNIT (type
),
1629 size_int (TYPE_PRECISION (char_type_node
)
1633 /* Return either DECL or its known constant value (if it has one). */
1636 decl_constant_value (tree decl
)
1638 if (/* Don't change a variable array bound or initial value to a constant
1639 in a place where a variable is invalid. Note that DECL_INITIAL
1640 isn't valid for a PARM_DECL. */
1641 current_function_decl
!= 0
1642 && TREE_CODE (decl
) != PARM_DECL
1643 && !TREE_THIS_VOLATILE (decl
)
1644 && TREE_READONLY (decl
)
1645 && DECL_INITIAL (decl
) != 0
1646 && TREE_CODE (DECL_INITIAL (decl
)) != ERROR_MARK
1647 /* This is invalid if initial value is not constant.
1648 If it has either a function call, a memory reference,
1649 or a variable, then re-evaluating it could give different results. */
1650 && TREE_CONSTANT (DECL_INITIAL (decl
))
1651 /* Check for cases where this is sub-optimal, even though valid. */
1652 && TREE_CODE (DECL_INITIAL (decl
)) != CONSTRUCTOR
)
1653 return DECL_INITIAL (decl
);
1657 /* Convert the array expression EXP to a pointer. */
1659 array_to_pointer_conversion (location_t loc
, tree exp
)
1661 tree orig_exp
= exp
;
1662 tree type
= TREE_TYPE (exp
);
1664 tree restype
= TREE_TYPE (type
);
1667 gcc_assert (TREE_CODE (type
) == ARRAY_TYPE
);
1669 STRIP_TYPE_NOPS (exp
);
1671 if (TREE_NO_WARNING (orig_exp
))
1672 TREE_NO_WARNING (exp
) = 1;
1674 ptrtype
= build_pointer_type (restype
);
1676 if (TREE_CODE (exp
) == INDIRECT_REF
)
1677 return convert (ptrtype
, TREE_OPERAND (exp
, 0));
1679 adr
= build_unary_op (loc
, ADDR_EXPR
, exp
, 1);
1680 return convert (ptrtype
, adr
);
1683 /* Convert the function expression EXP to a pointer. */
1685 function_to_pointer_conversion (location_t loc
, tree exp
)
1687 tree orig_exp
= exp
;
1689 gcc_assert (TREE_CODE (TREE_TYPE (exp
)) == FUNCTION_TYPE
);
1691 STRIP_TYPE_NOPS (exp
);
1693 if (TREE_NO_WARNING (orig_exp
))
1694 TREE_NO_WARNING (exp
) = 1;
1696 return build_unary_op (loc
, ADDR_EXPR
, exp
, 0);
1699 /* Perform the default conversion of arrays and functions to pointers.
1700 Return the result of converting EXP. For any other expression, just
1703 LOC is the location of the expression. */
1706 default_function_array_conversion (location_t loc
, struct c_expr exp
)
1708 tree orig_exp
= exp
.value
;
1709 tree type
= TREE_TYPE (exp
.value
);
1710 enum tree_code code
= TREE_CODE (type
);
1716 bool not_lvalue
= false;
1717 bool lvalue_array_p
;
1719 while ((TREE_CODE (exp
.value
) == NON_LVALUE_EXPR
1720 || CONVERT_EXPR_P (exp
.value
))
1721 && TREE_TYPE (TREE_OPERAND (exp
.value
, 0)) == type
)
1723 if (TREE_CODE (exp
.value
) == NON_LVALUE_EXPR
)
1725 exp
.value
= TREE_OPERAND (exp
.value
, 0);
1728 if (TREE_NO_WARNING (orig_exp
))
1729 TREE_NO_WARNING (exp
.value
) = 1;
1731 lvalue_array_p
= !not_lvalue
&& lvalue_p (exp
.value
);
1732 if (!flag_isoc99
&& !lvalue_array_p
)
1734 /* Before C99, non-lvalue arrays do not decay to pointers.
1735 Normally, using such an array would be invalid; but it can
1736 be used correctly inside sizeof or as a statement expression.
1737 Thus, do not give an error here; an error will result later. */
1741 exp
.value
= array_to_pointer_conversion (loc
, exp
.value
);
1745 exp
.value
= function_to_pointer_conversion (loc
, exp
.value
);
1755 /* EXP is an expression of integer type. Apply the integer promotions
1756 to it and return the promoted value. */
1759 perform_integral_promotions (tree exp
)
1761 tree type
= TREE_TYPE (exp
);
1762 enum tree_code code
= TREE_CODE (type
);
1764 gcc_assert (INTEGRAL_TYPE_P (type
));
1766 /* Normally convert enums to int,
1767 but convert wide enums to something wider. */
1768 if (code
== ENUMERAL_TYPE
)
1770 type
= c_common_type_for_size (MAX (TYPE_PRECISION (type
),
1771 TYPE_PRECISION (integer_type_node
)),
1772 ((TYPE_PRECISION (type
)
1773 >= TYPE_PRECISION (integer_type_node
))
1774 && TYPE_UNSIGNED (type
)));
1776 return convert (type
, exp
);
1779 /* ??? This should no longer be needed now bit-fields have their
1781 if (TREE_CODE (exp
) == COMPONENT_REF
1782 && DECL_C_BIT_FIELD (TREE_OPERAND (exp
, 1))
1783 /* If it's thinner than an int, promote it like a
1784 c_promoting_integer_type_p, otherwise leave it alone. */
1785 && 0 > compare_tree_int (DECL_SIZE (TREE_OPERAND (exp
, 1)),
1786 TYPE_PRECISION (integer_type_node
)))
1787 return convert (integer_type_node
, exp
);
1789 if (c_promoting_integer_type_p (type
))
1791 /* Preserve unsignedness if not really getting any wider. */
1792 if (TYPE_UNSIGNED (type
)
1793 && TYPE_PRECISION (type
) == TYPE_PRECISION (integer_type_node
))
1794 return convert (unsigned_type_node
, exp
);
1796 return convert (integer_type_node
, exp
);
1803 /* Perform default promotions for C data used in expressions.
1804 Enumeral types or short or char are converted to int.
1805 In addition, manifest constants symbols are replaced by their values. */
1808 default_conversion (tree exp
)
1811 tree type
= TREE_TYPE (exp
);
1812 enum tree_code code
= TREE_CODE (type
);
1815 /* Functions and arrays have been converted during parsing. */
1816 gcc_assert (code
!= FUNCTION_TYPE
);
1817 if (code
== ARRAY_TYPE
)
1820 /* Constants can be used directly unless they're not loadable. */
1821 if (TREE_CODE (exp
) == CONST_DECL
)
1822 exp
= DECL_INITIAL (exp
);
1824 /* Strip no-op conversions. */
1826 STRIP_TYPE_NOPS (exp
);
1828 if (TREE_NO_WARNING (orig_exp
))
1829 TREE_NO_WARNING (exp
) = 1;
1831 if (code
== VOID_TYPE
)
1833 error ("void value not ignored as it ought to be");
1834 return error_mark_node
;
1837 exp
= require_complete_type (exp
);
1838 if (exp
== error_mark_node
)
1839 return error_mark_node
;
1841 promoted_type
= targetm
.promoted_type (type
);
1843 return convert (promoted_type
, exp
);
1845 if (INTEGRAL_TYPE_P (type
))
1846 return perform_integral_promotions (exp
);
1851 /* Look up COMPONENT in a structure or union DECL.
1853 If the component name is not found, returns NULL_TREE. Otherwise,
1854 the return value is a TREE_LIST, with each TREE_VALUE a FIELD_DECL
1855 stepping down the chain to the component, which is in the last
1856 TREE_VALUE of the list. Normally the list is of length one, but if
1857 the component is embedded within (nested) anonymous structures or
1858 unions, the list steps down the chain to the component. */
1861 lookup_field (tree decl
, tree component
)
1863 tree type
= TREE_TYPE (decl
);
1866 /* If TYPE_LANG_SPECIFIC is set, then it is a sorted array of pointers
1867 to the field elements. Use a binary search on this array to quickly
1868 find the element. Otherwise, do a linear search. TYPE_LANG_SPECIFIC
1869 will always be set for structures which have many elements. */
1871 if (TYPE_LANG_SPECIFIC (type
) && TYPE_LANG_SPECIFIC (type
)->s
)
1874 tree
*field_array
= &TYPE_LANG_SPECIFIC (type
)->s
->elts
[0];
1876 field
= TYPE_FIELDS (type
);
1878 top
= TYPE_LANG_SPECIFIC (type
)->s
->len
;
1879 while (top
- bot
> 1)
1881 half
= (top
- bot
+ 1) >> 1;
1882 field
= field_array
[bot
+half
];
1884 if (DECL_NAME (field
) == NULL_TREE
)
1886 /* Step through all anon unions in linear fashion. */
1887 while (DECL_NAME (field_array
[bot
]) == NULL_TREE
)
1889 field
= field_array
[bot
++];
1890 if (TREE_CODE (TREE_TYPE (field
)) == RECORD_TYPE
1891 || TREE_CODE (TREE_TYPE (field
)) == UNION_TYPE
)
1893 tree anon
= lookup_field (field
, component
);
1896 return tree_cons (NULL_TREE
, field
, anon
);
1900 /* Entire record is only anon unions. */
1904 /* Restart the binary search, with new lower bound. */
1908 if (DECL_NAME (field
) == component
)
1910 if (DECL_NAME (field
) < component
)
1916 if (DECL_NAME (field_array
[bot
]) == component
)
1917 field
= field_array
[bot
];
1918 else if (DECL_NAME (field
) != component
)
1923 for (field
= TYPE_FIELDS (type
); field
; field
= TREE_CHAIN (field
))
1925 if (DECL_NAME (field
) == NULL_TREE
1926 && (TREE_CODE (TREE_TYPE (field
)) == RECORD_TYPE
1927 || TREE_CODE (TREE_TYPE (field
)) == UNION_TYPE
))
1929 tree anon
= lookup_field (field
, component
);
1932 return tree_cons (NULL_TREE
, field
, anon
);
1935 if (DECL_NAME (field
) == component
)
1939 if (field
== NULL_TREE
)
1943 return tree_cons (NULL_TREE
, field
, NULL_TREE
);
1946 /* Make an expression to refer to the COMPONENT field of structure or
1947 union value DATUM. COMPONENT is an IDENTIFIER_NODE. LOC is the
1948 location of the COMPONENT_REF. */
1951 build_component_ref (location_t loc
, tree datum
, tree component
)
1953 tree type
= TREE_TYPE (datum
);
1954 enum tree_code code
= TREE_CODE (type
);
1957 bool datum_lvalue
= lvalue_p (datum
);
1959 if (!objc_is_public (datum
, component
))
1960 return error_mark_node
;
1962 /* See if there is a field or component with name COMPONENT. */
1964 if (code
== RECORD_TYPE
|| code
== UNION_TYPE
)
1966 if (!COMPLETE_TYPE_P (type
))
1968 c_incomplete_type_error (NULL_TREE
, type
);
1969 return error_mark_node
;
1972 field
= lookup_field (datum
, component
);
1976 error_at (loc
, "%qT has no member named %qE", type
, component
);
1977 return error_mark_node
;
1980 /* Chain the COMPONENT_REFs if necessary down to the FIELD.
1981 This might be better solved in future the way the C++ front
1982 end does it - by giving the anonymous entities each a
1983 separate name and type, and then have build_component_ref
1984 recursively call itself. We can't do that here. */
1987 tree subdatum
= TREE_VALUE (field
);
1990 bool use_datum_quals
;
1992 if (TREE_TYPE (subdatum
) == error_mark_node
)
1993 return error_mark_node
;
1995 /* If this is an rvalue, it does not have qualifiers in C
1996 standard terms and we must avoid propagating such
1997 qualifiers down to a non-lvalue array that is then
1998 converted to a pointer. */
1999 use_datum_quals
= (datum_lvalue
2000 || TREE_CODE (TREE_TYPE (subdatum
)) != ARRAY_TYPE
);
2002 quals
= TYPE_QUALS (strip_array_types (TREE_TYPE (subdatum
)));
2003 if (use_datum_quals
)
2004 quals
|= TYPE_QUALS (TREE_TYPE (datum
));
2005 subtype
= c_build_qualified_type (TREE_TYPE (subdatum
), quals
);
2007 ref
= build3 (COMPONENT_REF
, subtype
, datum
, subdatum
,
2009 SET_EXPR_LOCATION (ref
, loc
);
2010 if (TREE_READONLY (subdatum
)
2011 || (use_datum_quals
&& TREE_READONLY (datum
)))
2012 TREE_READONLY (ref
) = 1;
2013 if (TREE_THIS_VOLATILE (subdatum
)
2014 || (use_datum_quals
&& TREE_THIS_VOLATILE (datum
)))
2015 TREE_THIS_VOLATILE (ref
) = 1;
2017 if (TREE_DEPRECATED (subdatum
))
2018 warn_deprecated_use (subdatum
, NULL_TREE
);
2022 field
= TREE_CHAIN (field
);
2028 else if (code
!= ERROR_MARK
)
2030 "request for member %qE in something not a structure or union",
2033 return error_mark_node
;
2036 /* Given an expression PTR for a pointer, return an expression
2037 for the value pointed to.
2038 ERRORSTRING is the name of the operator to appear in error messages.
2040 LOC is the location to use for the generated tree. */
2043 build_indirect_ref (location_t loc
, tree ptr
, const char *errorstring
)
2045 tree pointer
= default_conversion (ptr
);
2046 tree type
= TREE_TYPE (pointer
);
2049 if (TREE_CODE (type
) == POINTER_TYPE
)
2051 if (CONVERT_EXPR_P (pointer
)
2052 || TREE_CODE (pointer
) == VIEW_CONVERT_EXPR
)
2054 /* If a warning is issued, mark it to avoid duplicates from
2055 the backend. This only needs to be done at
2056 warn_strict_aliasing > 2. */
2057 if (warn_strict_aliasing
> 2)
2058 if (strict_aliasing_warning (TREE_TYPE (TREE_OPERAND (pointer
, 0)),
2059 type
, TREE_OPERAND (pointer
, 0)))
2060 TREE_NO_WARNING (pointer
) = 1;
2063 if (TREE_CODE (pointer
) == ADDR_EXPR
2064 && (TREE_TYPE (TREE_OPERAND (pointer
, 0))
2065 == TREE_TYPE (type
)))
2067 ref
= TREE_OPERAND (pointer
, 0);
2068 protected_set_expr_location (ref
, loc
);
2073 tree t
= TREE_TYPE (type
);
2075 ref
= build1 (INDIRECT_REF
, t
, pointer
);
2077 if (!COMPLETE_OR_VOID_TYPE_P (t
) && TREE_CODE (t
) != ARRAY_TYPE
)
2079 error_at (loc
, "dereferencing pointer to incomplete type");
2080 return error_mark_node
;
2082 if (VOID_TYPE_P (t
) && c_inhibit_evaluation_warnings
== 0)
2083 warning_at (loc
, 0, "dereferencing %<void *%> pointer");
2085 /* We *must* set TREE_READONLY when dereferencing a pointer to const,
2086 so that we get the proper error message if the result is used
2087 to assign to. Also, &* is supposed to be a no-op.
2088 And ANSI C seems to specify that the type of the result
2089 should be the const type. */
2090 /* A de-reference of a pointer to const is not a const. It is valid
2091 to change it via some other pointer. */
2092 TREE_READONLY (ref
) = TYPE_READONLY (t
);
2093 TREE_SIDE_EFFECTS (ref
)
2094 = TYPE_VOLATILE (t
) || TREE_SIDE_EFFECTS (pointer
);
2095 TREE_THIS_VOLATILE (ref
) = TYPE_VOLATILE (t
);
2096 protected_set_expr_location (ref
, loc
);
2100 else if (TREE_CODE (pointer
) != ERROR_MARK
)
2102 "invalid type argument of %qs (have %qT)", errorstring
, type
);
2103 return error_mark_node
;
2106 /* This handles expressions of the form "a[i]", which denotes
2109 This is logically equivalent in C to *(a+i), but we may do it differently.
2110 If A is a variable or a member, we generate a primitive ARRAY_REF.
2111 This avoids forcing the array out of registers, and can work on
2112 arrays that are not lvalues (for example, members of structures returned
2115 LOC is the location to use for the returned expression. */
2118 build_array_ref (location_t loc
, tree array
, tree index
)
2121 bool swapped
= false;
2122 if (TREE_TYPE (array
) == error_mark_node
2123 || TREE_TYPE (index
) == error_mark_node
)
2124 return error_mark_node
;
2126 if (TREE_CODE (TREE_TYPE (array
)) != ARRAY_TYPE
2127 && TREE_CODE (TREE_TYPE (array
)) != POINTER_TYPE
)
2130 if (TREE_CODE (TREE_TYPE (index
)) != ARRAY_TYPE
2131 && TREE_CODE (TREE_TYPE (index
)) != POINTER_TYPE
)
2133 error_at (loc
, "subscripted value is neither array nor pointer");
2134 return error_mark_node
;
2142 if (!INTEGRAL_TYPE_P (TREE_TYPE (index
)))
2144 error_at (loc
, "array subscript is not an integer");
2145 return error_mark_node
;
2148 if (TREE_CODE (TREE_TYPE (TREE_TYPE (array
))) == FUNCTION_TYPE
)
2150 error_at (loc
, "subscripted value is pointer to function");
2151 return error_mark_node
;
2154 /* ??? Existing practice has been to warn only when the char
2155 index is syntactically the index, not for char[array]. */
2157 warn_array_subscript_with_type_char (index
);
2159 /* Apply default promotions *after* noticing character types. */
2160 index
= default_conversion (index
);
2162 gcc_assert (TREE_CODE (TREE_TYPE (index
)) == INTEGER_TYPE
);
2164 if (TREE_CODE (TREE_TYPE (array
)) == ARRAY_TYPE
)
2168 /* An array that is indexed by a non-constant
2169 cannot be stored in a register; we must be able to do
2170 address arithmetic on its address.
2171 Likewise an array of elements of variable size. */
2172 if (TREE_CODE (index
) != INTEGER_CST
2173 || (COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (array
)))
2174 && TREE_CODE (TYPE_SIZE (TREE_TYPE (TREE_TYPE (array
)))) != INTEGER_CST
))
2176 if (!c_mark_addressable (array
))
2177 return error_mark_node
;
2179 /* An array that is indexed by a constant value which is not within
2180 the array bounds cannot be stored in a register either; because we
2181 would get a crash in store_bit_field/extract_bit_field when trying
2182 to access a non-existent part of the register. */
2183 if (TREE_CODE (index
) == INTEGER_CST
2184 && TYPE_DOMAIN (TREE_TYPE (array
))
2185 && !int_fits_type_p (index
, TYPE_DOMAIN (TREE_TYPE (array
))))
2187 if (!c_mark_addressable (array
))
2188 return error_mark_node
;
2194 while (TREE_CODE (foo
) == COMPONENT_REF
)
2195 foo
= TREE_OPERAND (foo
, 0);
2196 if (TREE_CODE (foo
) == VAR_DECL
&& C_DECL_REGISTER (foo
))
2197 pedwarn (loc
, OPT_pedantic
,
2198 "ISO C forbids subscripting %<register%> array");
2199 else if (!flag_isoc99
&& !lvalue_p (foo
))
2200 pedwarn (loc
, OPT_pedantic
,
2201 "ISO C90 forbids subscripting non-lvalue array");
2204 type
= TREE_TYPE (TREE_TYPE (array
));
2205 rval
= build4 (ARRAY_REF
, type
, array
, index
, NULL_TREE
, NULL_TREE
);
2206 /* Array ref is const/volatile if the array elements are
2207 or if the array is. */
2208 TREE_READONLY (rval
)
2209 |= (TYPE_READONLY (TREE_TYPE (TREE_TYPE (array
)))
2210 | TREE_READONLY (array
));
2211 TREE_SIDE_EFFECTS (rval
)
2212 |= (TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (array
)))
2213 | TREE_SIDE_EFFECTS (array
));
2214 TREE_THIS_VOLATILE (rval
)
2215 |= (TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (array
)))
2216 /* This was added by rms on 16 Nov 91.
2217 It fixes vol struct foo *a; a->elts[1]
2218 in an inline function.
2219 Hope it doesn't break something else. */
2220 | TREE_THIS_VOLATILE (array
));
2221 ret
= require_complete_type (rval
);
2222 protected_set_expr_location (ret
, loc
);
2227 tree ar
= default_conversion (array
);
2229 if (ar
== error_mark_node
)
2232 gcc_assert (TREE_CODE (TREE_TYPE (ar
)) == POINTER_TYPE
);
2233 gcc_assert (TREE_CODE (TREE_TYPE (TREE_TYPE (ar
))) != FUNCTION_TYPE
);
2235 return build_indirect_ref
2236 (loc
, build_binary_op (loc
, PLUS_EXPR
, ar
, index
, 0),
2241 /* Build an external reference to identifier ID. FUN indicates
2242 whether this will be used for a function call. LOC is the source
2243 location of the identifier. This sets *TYPE to the type of the
2244 identifier, which is not the same as the type of the returned value
2245 for CONST_DECLs defined as enum constants. If the type of the
2246 identifier is not available, *TYPE is set to NULL. */
2248 build_external_ref (location_t loc
, tree id
, int fun
, tree
*type
)
2251 tree decl
= lookup_name (id
);
2253 /* In Objective-C, an instance variable (ivar) may be preferred to
2254 whatever lookup_name() found. */
2255 decl
= objc_lookup_ivar (decl
, id
);
2258 if (decl
&& decl
!= error_mark_node
)
2261 *type
= TREE_TYPE (ref
);
2264 /* Implicit function declaration. */
2265 ref
= implicitly_declare (loc
, id
);
2266 else if (decl
== error_mark_node
)
2267 /* Don't complain about something that's already been
2268 complained about. */
2269 return error_mark_node
;
2272 undeclared_variable (loc
, id
);
2273 return error_mark_node
;
2276 if (TREE_TYPE (ref
) == error_mark_node
)
2277 return error_mark_node
;
2279 if (TREE_DEPRECATED (ref
))
2280 warn_deprecated_use (ref
, NULL_TREE
);
2282 /* Recursive call does not count as usage. */
2283 if (ref
!= current_function_decl
)
2285 TREE_USED (ref
) = 1;
2288 if (TREE_CODE (ref
) == FUNCTION_DECL
&& !in_alignof
)
2290 if (!in_sizeof
&& !in_typeof
)
2291 C_DECL_USED (ref
) = 1;
2292 else if (DECL_INITIAL (ref
) == 0
2293 && DECL_EXTERNAL (ref
)
2294 && !TREE_PUBLIC (ref
))
2295 record_maybe_used_decl (ref
);
2298 if (TREE_CODE (ref
) == CONST_DECL
)
2300 used_types_insert (TREE_TYPE (ref
));
2303 && TREE_CODE (TREE_TYPE (ref
)) == ENUMERAL_TYPE
2304 && C_TYPE_DEFINED_IN_STRUCT (TREE_TYPE (ref
)))
2306 warning_at (loc
, OPT_Wc___compat
,
2307 ("enum constant defined in struct or union "
2308 "is not visible in C++"));
2309 inform (DECL_SOURCE_LOCATION (ref
), "enum constant defined here");
2312 ref
= DECL_INITIAL (ref
);
2313 TREE_CONSTANT (ref
) = 1;
2315 else if (current_function_decl
!= 0
2316 && !DECL_FILE_SCOPE_P (current_function_decl
)
2317 && (TREE_CODE (ref
) == VAR_DECL
2318 || TREE_CODE (ref
) == PARM_DECL
2319 || TREE_CODE (ref
) == FUNCTION_DECL
))
2321 tree context
= decl_function_context (ref
);
2323 if (context
!= 0 && context
!= current_function_decl
)
2324 DECL_NONLOCAL (ref
) = 1;
2326 /* C99 6.7.4p3: An inline definition of a function with external
2327 linkage ... shall not contain a reference to an identifier with
2328 internal linkage. */
2329 else if (current_function_decl
!= 0
2330 && DECL_DECLARED_INLINE_P (current_function_decl
)
2331 && DECL_EXTERNAL (current_function_decl
)
2332 && VAR_OR_FUNCTION_DECL_P (ref
)
2333 && (TREE_CODE (ref
) != VAR_DECL
|| TREE_STATIC (ref
))
2334 && ! TREE_PUBLIC (ref
)
2335 && DECL_CONTEXT (ref
) != current_function_decl
)
2336 record_inline_static (loc
, current_function_decl
, ref
,
2342 /* Record details of decls possibly used inside sizeof or typeof. */
2343 struct maybe_used_decl
2347 /* The level seen at (in_sizeof + in_typeof). */
2349 /* The next one at this level or above, or NULL. */
2350 struct maybe_used_decl
*next
;
2353 static struct maybe_used_decl
*maybe_used_decls
;
2355 /* Record that DECL, an undefined static function reference seen
2356 inside sizeof or typeof, might be used if the operand of sizeof is
2357 a VLA type or the operand of typeof is a variably modified
2361 record_maybe_used_decl (tree decl
)
2363 struct maybe_used_decl
*t
= XOBNEW (&parser_obstack
, struct maybe_used_decl
);
2365 t
->level
= in_sizeof
+ in_typeof
;
2366 t
->next
= maybe_used_decls
;
2367 maybe_used_decls
= t
;
2370 /* Pop the stack of decls possibly used inside sizeof or typeof. If
2371 USED is false, just discard them. If it is true, mark them used
2372 (if no longer inside sizeof or typeof) or move them to the next
2373 level up (if still inside sizeof or typeof). */
2376 pop_maybe_used (bool used
)
2378 struct maybe_used_decl
*p
= maybe_used_decls
;
2379 int cur_level
= in_sizeof
+ in_typeof
;
2380 while (p
&& p
->level
> cur_level
)
2385 C_DECL_USED (p
->decl
) = 1;
2387 p
->level
= cur_level
;
2391 if (!used
|| cur_level
== 0)
2392 maybe_used_decls
= p
;
2395 /* Return the result of sizeof applied to EXPR. */
2398 c_expr_sizeof_expr (location_t loc
, struct c_expr expr
)
2401 if (expr
.value
== error_mark_node
)
2403 ret
.value
= error_mark_node
;
2404 ret
.original_code
= ERROR_MARK
;
2405 ret
.original_type
= NULL
;
2406 pop_maybe_used (false);
2410 bool expr_const_operands
= true;
2411 tree folded_expr
= c_fully_fold (expr
.value
, require_constant_value
,
2412 &expr_const_operands
);
2413 ret
.value
= c_sizeof (loc
, TREE_TYPE (folded_expr
));
2414 ret
.original_code
= ERROR_MARK
;
2415 ret
.original_type
= NULL
;
2416 if (c_vla_type_p (TREE_TYPE (folded_expr
)))
2418 /* sizeof is evaluated when given a vla (C99 6.5.3.4p2). */
2419 ret
.value
= build2 (C_MAYBE_CONST_EXPR
, TREE_TYPE (ret
.value
),
2420 folded_expr
, ret
.value
);
2421 C_MAYBE_CONST_EXPR_NON_CONST (ret
.value
) = !expr_const_operands
;
2422 SET_EXPR_LOCATION (ret
.value
, loc
);
2424 pop_maybe_used (C_TYPE_VARIABLE_SIZE (TREE_TYPE (folded_expr
)));
2429 /* Return the result of sizeof applied to T, a structure for the type
2430 name passed to sizeof (rather than the type itself). LOC is the
2431 location of the original expression. */
2434 c_expr_sizeof_type (location_t loc
, struct c_type_name
*t
)
2438 tree type_expr
= NULL_TREE
;
2439 bool type_expr_const
= true;
2440 type
= groktypename (t
, &type_expr
, &type_expr_const
);
2441 ret
.value
= c_sizeof (loc
, type
);
2442 ret
.original_code
= ERROR_MARK
;
2443 ret
.original_type
= NULL
;
2444 if ((type_expr
|| TREE_CODE (ret
.value
) == INTEGER_CST
)
2445 && c_vla_type_p (type
))
2447 /* If the type is a [*] array, it is a VLA but is represented as
2448 having a size of zero. In such a case we must ensure that
2449 the result of sizeof does not get folded to a constant by
2450 c_fully_fold, because if the size is evaluated the result is
2451 not constant and so constraints on zero or negative size
2452 arrays must not be applied when this sizeof call is inside
2453 another array declarator. */
2455 type_expr
= integer_zero_node
;
2456 ret
.value
= build2 (C_MAYBE_CONST_EXPR
, TREE_TYPE (ret
.value
),
2457 type_expr
, ret
.value
);
2458 C_MAYBE_CONST_EXPR_NON_CONST (ret
.value
) = !type_expr_const
;
2460 pop_maybe_used (type
!= error_mark_node
2461 ? C_TYPE_VARIABLE_SIZE (type
) : false);
2465 /* Build a function call to function FUNCTION with parameters PARAMS.
2466 The function call is at LOC.
2467 PARAMS is a list--a chain of TREE_LIST nodes--in which the
2468 TREE_VALUE of each node is a parameter-expression.
2469 FUNCTION's data type may be a function type or a pointer-to-function. */
2472 build_function_call (location_t loc
, tree function
, tree params
)
2477 vec
= VEC_alloc (tree
, gc
, list_length (params
));
2478 for (; params
; params
= TREE_CHAIN (params
))
2479 VEC_quick_push (tree
, vec
, TREE_VALUE (params
));
2480 ret
= build_function_call_vec (loc
, function
, vec
, NULL
);
2481 VEC_free (tree
, gc
, vec
);
2485 /* Build a function call to function FUNCTION with parameters PARAMS.
2486 ORIGTYPES, if not NULL, is a vector of types; each element is
2487 either NULL or the original type of the corresponding element in
2488 PARAMS. The original type may differ from TREE_TYPE of the
2489 parameter for enums. FUNCTION's data type may be a function type
2490 or pointer-to-function. This function changes the elements of
2494 build_function_call_vec (location_t loc
, tree function
, VEC(tree
,gc
) *params
,
2495 VEC(tree
,gc
) *origtypes
)
2497 tree fntype
, fundecl
= 0;
2498 tree name
= NULL_TREE
, result
;
2504 /* Strip NON_LVALUE_EXPRs, etc., since we aren't using as an lvalue. */
2505 STRIP_TYPE_NOPS (function
);
2507 /* Convert anything with function type to a pointer-to-function. */
2508 if (TREE_CODE (function
) == FUNCTION_DECL
)
2510 /* Implement type-directed function overloading for builtins.
2511 resolve_overloaded_builtin and targetm.resolve_overloaded_builtin
2512 handle all the type checking. The result is a complete expression
2513 that implements this function call. */
2514 tem
= resolve_overloaded_builtin (loc
, function
, params
);
2518 name
= DECL_NAME (function
);
2521 if (TREE_CODE (TREE_TYPE (function
)) == FUNCTION_TYPE
)
2522 function
= function_to_pointer_conversion (loc
, function
);
2524 /* For Objective-C, convert any calls via a cast to OBJC_TYPE_REF
2525 expressions, like those used for ObjC messenger dispatches. */
2526 if (!VEC_empty (tree
, params
))
2527 function
= objc_rewrite_function_call (function
,
2528 VEC_index (tree
, params
, 0));
2530 function
= c_fully_fold (function
, false, NULL
);
2532 fntype
= TREE_TYPE (function
);
2534 if (TREE_CODE (fntype
) == ERROR_MARK
)
2535 return error_mark_node
;
2537 if (!(TREE_CODE (fntype
) == POINTER_TYPE
2538 && TREE_CODE (TREE_TYPE (fntype
)) == FUNCTION_TYPE
))
2540 error_at (loc
, "called object %qE is not a function", function
);
2541 return error_mark_node
;
2544 if (fundecl
&& TREE_THIS_VOLATILE (fundecl
))
2545 current_function_returns_abnormally
= 1;
2547 /* fntype now gets the type of function pointed to. */
2548 fntype
= TREE_TYPE (fntype
);
2550 /* Convert the parameters to the types declared in the
2551 function prototype, or apply default promotions. */
2553 nargs
= convert_arguments (TYPE_ARG_TYPES (fntype
), params
, origtypes
,
2556 return error_mark_node
;
2558 /* Check that the function is called through a compatible prototype.
2559 If it is not, replace the call by a trap, wrapped up in a compound
2560 expression if necessary. This has the nice side-effect to prevent
2561 the tree-inliner from generating invalid assignment trees which may
2562 blow up in the RTL expander later. */
2563 if (CONVERT_EXPR_P (function
)
2564 && TREE_CODE (tem
= TREE_OPERAND (function
, 0)) == ADDR_EXPR
2565 && TREE_CODE (tem
= TREE_OPERAND (tem
, 0)) == FUNCTION_DECL
2566 && !comptypes (fntype
, TREE_TYPE (tem
)))
2568 tree return_type
= TREE_TYPE (fntype
);
2569 tree trap
= build_function_call (loc
, built_in_decls
[BUILT_IN_TRAP
],
2573 /* This situation leads to run-time undefined behavior. We can't,
2574 therefore, simply error unless we can prove that all possible
2575 executions of the program must execute the code. */
2576 if (warning_at (loc
, 0, "function called through a non-compatible type"))
2577 /* We can, however, treat "undefined" any way we please.
2578 Call abort to encourage the user to fix the program. */
2579 inform (loc
, "if this code is reached, the program will abort");
2580 /* Before the abort, allow the function arguments to exit or
2582 for (i
= 0; i
< nargs
; i
++)
2583 trap
= build2 (COMPOUND_EXPR
, void_type_node
,
2584 VEC_index (tree
, params
, i
), trap
);
2586 if (VOID_TYPE_P (return_type
))
2588 if (TYPE_QUALS (return_type
) != TYPE_UNQUALIFIED
)
2589 pedwarn (input_location
, 0,
2590 "function with qualified void return type called");
2597 if (AGGREGATE_TYPE_P (return_type
))
2598 rhs
= build_compound_literal (loc
, return_type
,
2599 build_constructor (return_type
, 0),
2602 rhs
= fold_convert (return_type
, integer_zero_node
);
2604 return require_complete_type (build2 (COMPOUND_EXPR
, return_type
,
2609 argarray
= VEC_address (tree
, params
);
2611 /* Check that arguments to builtin functions match the expectations. */
2613 && DECL_BUILT_IN (fundecl
)
2614 && DECL_BUILT_IN_CLASS (fundecl
) == BUILT_IN_NORMAL
2615 && !check_builtin_function_arguments (fundecl
, nargs
, argarray
))
2616 return error_mark_node
;
2618 /* Check that the arguments to the function are valid. */
2619 check_function_arguments (TYPE_ATTRIBUTES (fntype
), nargs
, argarray
,
2620 TYPE_ARG_TYPES (fntype
));
2622 if (name
!= NULL_TREE
2623 && !strncmp (IDENTIFIER_POINTER (name
), "__builtin_", 10))
2625 if (require_constant_value
)
2626 result
= fold_build_call_array_initializer (TREE_TYPE (fntype
),
2627 function
, nargs
, argarray
);
2629 result
= fold_build_call_array (TREE_TYPE (fntype
),
2630 function
, nargs
, argarray
);
2631 if (TREE_CODE (result
) == NOP_EXPR
2632 && TREE_CODE (TREE_OPERAND (result
, 0)) == INTEGER_CST
)
2633 STRIP_TYPE_NOPS (result
);
2636 result
= build_call_array (TREE_TYPE (fntype
),
2637 function
, nargs
, argarray
);
2639 if (VOID_TYPE_P (TREE_TYPE (result
)))
2641 if (TYPE_QUALS (TREE_TYPE (result
)) != TYPE_UNQUALIFIED
)
2642 pedwarn (input_location
, 0,
2643 "function with qualified void return type called");
2646 return require_complete_type (result
);
2649 /* Convert the argument expressions in the vector VALUES
2650 to the types in the list TYPELIST.
2652 If TYPELIST is exhausted, or when an element has NULL as its type,
2653 perform the default conversions.
2655 ORIGTYPES is the original types of the expressions in VALUES. This
2656 holds the type of enum values which have been converted to integral
2657 types. It may be NULL.
2659 FUNCTION is a tree for the called function. It is used only for
2660 error messages, where it is formatted with %qE.
2662 This is also where warnings about wrong number of args are generated.
2664 Returns the actual number of arguments processed (which may be less
2665 than the length of VALUES in some error situations), or -1 on
2669 convert_arguments (tree typelist
, VEC(tree
,gc
) *values
,
2670 VEC(tree
,gc
) *origtypes
, tree function
, tree fundecl
)
2673 unsigned int parmnum
;
2674 const bool type_generic
= fundecl
2675 && lookup_attribute ("type generic", TYPE_ATTRIBUTES(TREE_TYPE (fundecl
)));
2676 bool type_generic_remove_excess_precision
= false;
2679 /* Change pointer to function to the function itself for
2681 if (TREE_CODE (function
) == ADDR_EXPR
2682 && TREE_CODE (TREE_OPERAND (function
, 0)) == FUNCTION_DECL
)
2683 function
= TREE_OPERAND (function
, 0);
2685 /* Handle an ObjC selector specially for diagnostics. */
2686 selector
= objc_message_selector ();
2688 /* For type-generic built-in functions, determine whether excess
2689 precision should be removed (classification) or not
2692 && DECL_BUILT_IN (fundecl
)
2693 && DECL_BUILT_IN_CLASS (fundecl
) == BUILT_IN_NORMAL
)
2695 switch (DECL_FUNCTION_CODE (fundecl
))
2697 case BUILT_IN_ISFINITE
:
2698 case BUILT_IN_ISINF
:
2699 case BUILT_IN_ISINF_SIGN
:
2700 case BUILT_IN_ISNAN
:
2701 case BUILT_IN_ISNORMAL
:
2702 case BUILT_IN_FPCLASSIFY
:
2703 type_generic_remove_excess_precision
= true;
2707 type_generic_remove_excess_precision
= false;
2712 /* Scan the given expressions and types, producing individual
2713 converted arguments. */
2715 for (typetail
= typelist
, parmnum
= 0;
2716 VEC_iterate (tree
, values
, parmnum
, val
);
2719 tree type
= typetail
? TREE_VALUE (typetail
) : 0;
2720 tree valtype
= TREE_TYPE (val
);
2721 tree rname
= function
;
2722 int argnum
= parmnum
+ 1;
2723 const char *invalid_func_diag
;
2724 bool excess_precision
= false;
2728 if (type
== void_type_node
)
2730 error ("too many arguments to function %qE", function
);
2734 if (selector
&& argnum
> 2)
2740 npc
= null_pointer_constant_p (val
);
2742 /* If there is excess precision and a prototype, convert once to
2743 the required type rather than converting via the semantic
2744 type. Likewise without a prototype a float value represented
2745 as long double should be converted once to double. But for
2746 type-generic classification functions excess precision must
2748 if (TREE_CODE (val
) == EXCESS_PRECISION_EXPR
2749 && (type
|| !type_generic
|| !type_generic_remove_excess_precision
))
2751 val
= TREE_OPERAND (val
, 0);
2752 excess_precision
= true;
2754 val
= c_fully_fold (val
, false, NULL
);
2755 STRIP_TYPE_NOPS (val
);
2757 val
= require_complete_type (val
);
2761 /* Formal parm type is specified by a function prototype. */
2763 if (type
== error_mark_node
|| !COMPLETE_TYPE_P (type
))
2765 error ("type of formal parameter %d is incomplete", parmnum
+ 1);
2772 /* Optionally warn about conversions that
2773 differ from the default conversions. */
2774 if (warn_traditional_conversion
|| warn_traditional
)
2776 unsigned int formal_prec
= TYPE_PRECISION (type
);
2778 if (INTEGRAL_TYPE_P (type
)
2779 && TREE_CODE (valtype
) == REAL_TYPE
)
2780 warning (0, "passing argument %d of %qE as integer "
2781 "rather than floating due to prototype",
2783 if (INTEGRAL_TYPE_P (type
)
2784 && TREE_CODE (valtype
) == COMPLEX_TYPE
)
2785 warning (0, "passing argument %d of %qE as integer "
2786 "rather than complex due to prototype",
2788 else if (TREE_CODE (type
) == COMPLEX_TYPE
2789 && TREE_CODE (valtype
) == REAL_TYPE
)
2790 warning (0, "passing argument %d of %qE as complex "
2791 "rather than floating due to prototype",
2793 else if (TREE_CODE (type
) == REAL_TYPE
2794 && INTEGRAL_TYPE_P (valtype
))
2795 warning (0, "passing argument %d of %qE as floating "
2796 "rather than integer due to prototype",
2798 else if (TREE_CODE (type
) == COMPLEX_TYPE
2799 && INTEGRAL_TYPE_P (valtype
))
2800 warning (0, "passing argument %d of %qE as complex "
2801 "rather than integer due to prototype",
2803 else if (TREE_CODE (type
) == REAL_TYPE
2804 && TREE_CODE (valtype
) == COMPLEX_TYPE
)
2805 warning (0, "passing argument %d of %qE as floating "
2806 "rather than complex due to prototype",
2808 /* ??? At some point, messages should be written about
2809 conversions between complex types, but that's too messy
2811 else if (TREE_CODE (type
) == REAL_TYPE
2812 && TREE_CODE (valtype
) == REAL_TYPE
)
2814 /* Warn if any argument is passed as `float',
2815 since without a prototype it would be `double'. */
2816 if (formal_prec
== TYPE_PRECISION (float_type_node
)
2817 && type
!= dfloat32_type_node
)
2818 warning (0, "passing argument %d of %qE as %<float%> "
2819 "rather than %<double%> due to prototype",
2822 /* Warn if mismatch between argument and prototype
2823 for decimal float types. Warn of conversions with
2824 binary float types and of precision narrowing due to
2826 else if (type
!= valtype
2827 && (type
== dfloat32_type_node
2828 || type
== dfloat64_type_node
2829 || type
== dfloat128_type_node
2830 || valtype
== dfloat32_type_node
2831 || valtype
== dfloat64_type_node
2832 || valtype
== dfloat128_type_node
)
2834 <= TYPE_PRECISION (valtype
)
2835 || (type
== dfloat128_type_node
2837 != dfloat64_type_node
2839 != dfloat32_type_node
)))
2840 || (type
== dfloat64_type_node
2842 != dfloat32_type_node
))))
2843 warning (0, "passing argument %d of %qE as %qT "
2844 "rather than %qT due to prototype",
2845 argnum
, rname
, type
, valtype
);
2848 /* Detect integer changing in width or signedness.
2849 These warnings are only activated with
2850 -Wtraditional-conversion, not with -Wtraditional. */
2851 else if (warn_traditional_conversion
&& INTEGRAL_TYPE_P (type
)
2852 && INTEGRAL_TYPE_P (valtype
))
2854 tree would_have_been
= default_conversion (val
);
2855 tree type1
= TREE_TYPE (would_have_been
);
2857 if (TREE_CODE (type
) == ENUMERAL_TYPE
2858 && (TYPE_MAIN_VARIANT (type
)
2859 == TYPE_MAIN_VARIANT (valtype
)))
2860 /* No warning if function asks for enum
2861 and the actual arg is that enum type. */
2863 else if (formal_prec
!= TYPE_PRECISION (type1
))
2864 warning (OPT_Wtraditional_conversion
,
2865 "passing argument %d of %qE "
2866 "with different width due to prototype",
2868 else if (TYPE_UNSIGNED (type
) == TYPE_UNSIGNED (type1
))
2870 /* Don't complain if the formal parameter type
2871 is an enum, because we can't tell now whether
2872 the value was an enum--even the same enum. */
2873 else if (TREE_CODE (type
) == ENUMERAL_TYPE
)
2875 else if (TREE_CODE (val
) == INTEGER_CST
2876 && int_fits_type_p (val
, type
))
2877 /* Change in signedness doesn't matter
2878 if a constant value is unaffected. */
2880 /* If the value is extended from a narrower
2881 unsigned type, it doesn't matter whether we
2882 pass it as signed or unsigned; the value
2883 certainly is the same either way. */
2884 else if (TYPE_PRECISION (valtype
) < TYPE_PRECISION (type
)
2885 && TYPE_UNSIGNED (valtype
))
2887 else if (TYPE_UNSIGNED (type
))
2888 warning (OPT_Wtraditional_conversion
,
2889 "passing argument %d of %qE "
2890 "as unsigned due to prototype",
2893 warning (OPT_Wtraditional_conversion
,
2894 "passing argument %d of %qE "
2895 "as signed due to prototype", argnum
, rname
);
2899 /* Possibly restore an EXCESS_PRECISION_EXPR for the
2900 sake of better warnings from convert_and_check. */
2901 if (excess_precision
)
2902 val
= build1 (EXCESS_PRECISION_EXPR
, valtype
, val
);
2903 origtype
= (origtypes
== NULL
2905 : VEC_index (tree
, origtypes
, parmnum
));
2906 parmval
= convert_for_assignment (input_location
, type
, val
,
2907 origtype
, ic_argpass
, npc
,
2911 if (targetm
.calls
.promote_prototypes (fundecl
? TREE_TYPE (fundecl
) : 0)
2912 && INTEGRAL_TYPE_P (type
)
2913 && (TYPE_PRECISION (type
) < TYPE_PRECISION (integer_type_node
)))
2914 parmval
= default_conversion (parmval
);
2917 else if (TREE_CODE (valtype
) == REAL_TYPE
2918 && (TYPE_PRECISION (valtype
)
2919 < TYPE_PRECISION (double_type_node
))
2920 && !DECIMAL_FLOAT_MODE_P (TYPE_MODE (valtype
)))
2925 /* Convert `float' to `double'. */
2926 parmval
= convert (double_type_node
, val
);
2928 else if (excess_precision
&& !type_generic
)
2929 /* A "double" argument with excess precision being passed
2930 without a prototype or in variable arguments. */
2931 parmval
= convert (valtype
, val
);
2932 else if ((invalid_func_diag
=
2933 targetm
.calls
.invalid_arg_for_unprototyped_fn (typelist
, fundecl
, val
)))
2935 error (invalid_func_diag
);
2939 /* Convert `short' and `char' to full-size `int'. */
2940 parmval
= default_conversion (val
);
2942 VEC_replace (tree
, values
, parmnum
, parmval
);
2945 typetail
= TREE_CHAIN (typetail
);
2948 gcc_assert (parmnum
== VEC_length (tree
, values
));
2950 if (typetail
!= 0 && TREE_VALUE (typetail
) != void_type_node
)
2952 error ("too few arguments to function %qE", function
);
2959 /* This is the entry point used by the parser to build unary operators
2960 in the input. CODE, a tree_code, specifies the unary operator, and
2961 ARG is the operand. For unary plus, the C parser currently uses
2962 CONVERT_EXPR for code.
2964 LOC is the location to use for the tree generated.
2968 parser_build_unary_op (location_t loc
, enum tree_code code
, struct c_expr arg
)
2970 struct c_expr result
;
2972 result
.value
= build_unary_op (loc
, code
, arg
.value
, 0);
2973 result
.original_code
= code
;
2974 result
.original_type
= NULL
;
2976 if (TREE_OVERFLOW_P (result
.value
) && !TREE_OVERFLOW_P (arg
.value
))
2977 overflow_warning (loc
, result
.value
);
2982 /* This is the entry point used by the parser to build binary operators
2983 in the input. CODE, a tree_code, specifies the binary operator, and
2984 ARG1 and ARG2 are the operands. In addition to constructing the
2985 expression, we check for operands that were written with other binary
2986 operators in a way that is likely to confuse the user.
2988 LOCATION is the location of the binary operator. */
2991 parser_build_binary_op (location_t location
, enum tree_code code
,
2992 struct c_expr arg1
, struct c_expr arg2
)
2994 struct c_expr result
;
2996 enum tree_code code1
= arg1
.original_code
;
2997 enum tree_code code2
= arg2
.original_code
;
2998 tree type1
= (arg1
.original_type
2999 ? arg1
.original_type
3000 : TREE_TYPE (arg1
.value
));
3001 tree type2
= (arg2
.original_type
3002 ? arg2
.original_type
3003 : TREE_TYPE (arg2
.value
));
3005 result
.value
= build_binary_op (location
, code
,
3006 arg1
.value
, arg2
.value
, 1);
3007 result
.original_code
= code
;
3008 result
.original_type
= NULL
;
3010 if (TREE_CODE (result
.value
) == ERROR_MARK
)
3013 if (location
!= UNKNOWN_LOCATION
)
3014 protected_set_expr_location (result
.value
, location
);
3016 /* Check for cases such as x+y<<z which users are likely
3018 if (warn_parentheses
)
3019 warn_about_parentheses (code
, code1
, arg1
.value
, code2
, arg2
.value
);
3021 if (warn_logical_op
)
3022 warn_logical_operator (input_location
, code
, TREE_TYPE (result
.value
),
3023 code1
, arg1
.value
, code2
, arg2
.value
);
3025 /* Warn about comparisons against string literals, with the exception
3026 of testing for equality or inequality of a string literal with NULL. */
3027 if (code
== EQ_EXPR
|| code
== NE_EXPR
)
3029 if ((code1
== STRING_CST
&& !integer_zerop (arg2
.value
))
3030 || (code2
== STRING_CST
&& !integer_zerop (arg1
.value
)))
3031 warning_at (location
, OPT_Waddress
,
3032 "comparison with string literal results in unspecified behavior");
3034 else if (TREE_CODE_CLASS (code
) == tcc_comparison
3035 && (code1
== STRING_CST
|| code2
== STRING_CST
))
3036 warning_at (location
, OPT_Waddress
,
3037 "comparison with string literal results in unspecified behavior");
3039 if (TREE_OVERFLOW_P (result
.value
)
3040 && !TREE_OVERFLOW_P (arg1
.value
)
3041 && !TREE_OVERFLOW_P (arg2
.value
))
3042 overflow_warning (location
, result
.value
);
3044 /* Warn about comparisons of different enum types. */
3045 if (warn_enum_compare
3046 && TREE_CODE_CLASS (code
) == tcc_comparison
3047 && TREE_CODE (type1
) == ENUMERAL_TYPE
3048 && TREE_CODE (type2
) == ENUMERAL_TYPE
3049 && TYPE_MAIN_VARIANT (type1
) != TYPE_MAIN_VARIANT (type2
))
3050 warning_at (location
, OPT_Wenum_compare
,
3051 "comparison between %qT and %qT",
3057 /* Return a tree for the difference of pointers OP0 and OP1.
3058 The resulting tree has type int. */
3061 pointer_diff (tree op0
, tree op1
)
3063 tree restype
= ptrdiff_type_node
;
3065 tree target_type
= TREE_TYPE (TREE_TYPE (op0
));
3066 tree con0
, con1
, lit0
, lit1
;
3067 tree orig_op1
= op1
;
3069 if (TREE_CODE (target_type
) == VOID_TYPE
)
3070 pedwarn (input_location
, pedantic
? OPT_pedantic
: OPT_Wpointer_arith
,
3071 "pointer of type %<void *%> used in subtraction");
3072 if (TREE_CODE (target_type
) == FUNCTION_TYPE
)
3073 pedwarn (input_location
, pedantic
? OPT_pedantic
: OPT_Wpointer_arith
,
3074 "pointer to a function used in subtraction");
3076 /* If the conversion to ptrdiff_type does anything like widening or
3077 converting a partial to an integral mode, we get a convert_expression
3078 that is in the way to do any simplifications.
3079 (fold-const.c doesn't know that the extra bits won't be needed.
3080 split_tree uses STRIP_SIGN_NOPS, which leaves conversions to a
3081 different mode in place.)
3082 So first try to find a common term here 'by hand'; we want to cover
3083 at least the cases that occur in legal static initializers. */
3084 if (CONVERT_EXPR_P (op0
)
3085 && (TYPE_PRECISION (TREE_TYPE (op0
))
3086 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op0
, 0)))))
3087 con0
= TREE_OPERAND (op0
, 0);
3090 if (CONVERT_EXPR_P (op1
)
3091 && (TYPE_PRECISION (TREE_TYPE (op1
))
3092 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op1
, 0)))))
3093 con1
= TREE_OPERAND (op1
, 0);
3097 if (TREE_CODE (con0
) == PLUS_EXPR
)
3099 lit0
= TREE_OPERAND (con0
, 1);
3100 con0
= TREE_OPERAND (con0
, 0);
3103 lit0
= integer_zero_node
;
3105 if (TREE_CODE (con1
) == PLUS_EXPR
)
3107 lit1
= TREE_OPERAND (con1
, 1);
3108 con1
= TREE_OPERAND (con1
, 0);
3111 lit1
= integer_zero_node
;
3113 if (operand_equal_p (con0
, con1
, 0))
3120 /* First do the subtraction as integers;
3121 then drop through to build the divide operator.
3122 Do not do default conversions on the minus operator
3123 in case restype is a short type. */
3125 op0
= build_binary_op (input_location
,
3126 MINUS_EXPR
, convert (restype
, op0
),
3127 convert (restype
, op1
), 0);
3128 /* This generates an error if op1 is pointer to incomplete type. */
3129 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (orig_op1
))))
3130 error ("arithmetic on pointer to an incomplete type");
3132 /* This generates an error if op0 is pointer to incomplete type. */
3133 op1
= c_size_in_bytes (target_type
);
3135 /* Divide by the size, in easiest possible way. */
3136 return fold_build2 (EXACT_DIV_EXPR
, restype
, op0
, convert (restype
, op1
));
3139 /* Construct and perhaps optimize a tree representation
3140 for a unary operation. CODE, a tree_code, specifies the operation
3141 and XARG is the operand.
3142 For any CODE other than ADDR_EXPR, FLAG nonzero suppresses
3143 the default promotions (such as from short to int).
3144 For ADDR_EXPR, the default promotions are not applied; FLAG nonzero
3145 allows non-lvalues; this is only used to handle conversion of non-lvalue
3146 arrays to pointers in C99.
3148 LOCATION is the location of the operator. */
3151 build_unary_op (location_t location
,
3152 enum tree_code code
, tree xarg
, int flag
)
3154 /* No default_conversion here. It causes trouble for ADDR_EXPR. */
3157 enum tree_code typecode
;
3159 tree ret
= error_mark_node
;
3160 tree eptype
= NULL_TREE
;
3161 int noconvert
= flag
;
3162 const char *invalid_op_diag
;
3165 int_operands
= EXPR_INT_CONST_OPERANDS (xarg
);
3167 arg
= remove_c_maybe_const_expr (arg
);
3169 if (code
!= ADDR_EXPR
)
3170 arg
= require_complete_type (arg
);
3172 typecode
= TREE_CODE (TREE_TYPE (arg
));
3173 if (typecode
== ERROR_MARK
)
3174 return error_mark_node
;
3175 if (typecode
== ENUMERAL_TYPE
|| typecode
== BOOLEAN_TYPE
)
3176 typecode
= INTEGER_TYPE
;
3178 if ((invalid_op_diag
3179 = targetm
.invalid_unary_op (code
, TREE_TYPE (xarg
))))
3181 error_at (location
, invalid_op_diag
);
3182 return error_mark_node
;
3185 if (TREE_CODE (arg
) == EXCESS_PRECISION_EXPR
)
3187 eptype
= TREE_TYPE (arg
);
3188 arg
= TREE_OPERAND (arg
, 0);
3194 /* This is used for unary plus, because a CONVERT_EXPR
3195 is enough to prevent anybody from looking inside for
3196 associativity, but won't generate any code. */
3197 if (!(typecode
== INTEGER_TYPE
|| typecode
== REAL_TYPE
3198 || typecode
== FIXED_POINT_TYPE
|| typecode
== COMPLEX_TYPE
3199 || typecode
== VECTOR_TYPE
))
3201 error_at (location
, "wrong type argument to unary plus");
3202 return error_mark_node
;
3204 else if (!noconvert
)
3205 arg
= default_conversion (arg
);
3206 arg
= non_lvalue (arg
);
3210 if (!(typecode
== INTEGER_TYPE
|| typecode
== REAL_TYPE
3211 || typecode
== FIXED_POINT_TYPE
|| typecode
== COMPLEX_TYPE
3212 || typecode
== VECTOR_TYPE
))
3214 error_at (location
, "wrong type argument to unary minus");
3215 return error_mark_node
;
3217 else if (!noconvert
)
3218 arg
= default_conversion (arg
);
3222 /* ~ works on integer types and non float vectors. */
3223 if (typecode
== INTEGER_TYPE
3224 || (typecode
== VECTOR_TYPE
3225 && !VECTOR_FLOAT_TYPE_P (TREE_TYPE (arg
))))
3228 arg
= default_conversion (arg
);
3230 else if (typecode
== COMPLEX_TYPE
)
3233 pedwarn (location
, OPT_pedantic
,
3234 "ISO C does not support %<~%> for complex conjugation");
3236 arg
= default_conversion (arg
);
3240 error_at (location
, "wrong type argument to bit-complement");
3241 return error_mark_node
;
3246 if (!(typecode
== INTEGER_TYPE
|| typecode
== REAL_TYPE
))
3248 error_at (location
, "wrong type argument to abs");
3249 return error_mark_node
;
3251 else if (!noconvert
)
3252 arg
= default_conversion (arg
);
3256 /* Conjugating a real value is a no-op, but allow it anyway. */
3257 if (!(typecode
== INTEGER_TYPE
|| typecode
== REAL_TYPE
3258 || typecode
== COMPLEX_TYPE
))
3260 error_at (location
, "wrong type argument to conjugation");
3261 return error_mark_node
;
3263 else if (!noconvert
)
3264 arg
= default_conversion (arg
);
3267 case TRUTH_NOT_EXPR
:
3268 if (typecode
!= INTEGER_TYPE
&& typecode
!= FIXED_POINT_TYPE
3269 && typecode
!= REAL_TYPE
&& typecode
!= POINTER_TYPE
3270 && typecode
!= COMPLEX_TYPE
)
3273 "wrong type argument to unary exclamation mark");
3274 return error_mark_node
;
3276 arg
= c_objc_common_truthvalue_conversion (location
, arg
);
3277 ret
= invert_truthvalue (arg
);
3278 /* If the TRUTH_NOT_EXPR has been folded, reset the location. */
3279 if (EXPR_P (ret
) && EXPR_HAS_LOCATION (ret
))
3280 location
= EXPR_LOCATION (ret
);
3281 goto return_build_unary_op
;
3284 if (TREE_CODE (arg
) == COMPLEX_CST
)
3285 ret
= TREE_REALPART (arg
);
3286 else if (TREE_CODE (TREE_TYPE (arg
)) == COMPLEX_TYPE
)
3287 ret
= fold_build1 (REALPART_EXPR
, TREE_TYPE (TREE_TYPE (arg
)), arg
);
3290 if (eptype
&& TREE_CODE (eptype
) == COMPLEX_TYPE
)
3291 eptype
= TREE_TYPE (eptype
);
3292 goto return_build_unary_op
;
3295 if (TREE_CODE (arg
) == COMPLEX_CST
)
3296 ret
= TREE_IMAGPART (arg
);
3297 else if (TREE_CODE (TREE_TYPE (arg
)) == COMPLEX_TYPE
)
3298 ret
= fold_build1 (IMAGPART_EXPR
, TREE_TYPE (TREE_TYPE (arg
)), arg
);
3300 ret
= omit_one_operand (TREE_TYPE (arg
), integer_zero_node
, arg
);
3301 if (eptype
&& TREE_CODE (eptype
) == COMPLEX_TYPE
)
3302 eptype
= TREE_TYPE (eptype
);
3303 goto return_build_unary_op
;
3305 case PREINCREMENT_EXPR
:
3306 case POSTINCREMENT_EXPR
:
3307 case PREDECREMENT_EXPR
:
3308 case POSTDECREMENT_EXPR
:
3310 if (TREE_CODE (arg
) == C_MAYBE_CONST_EXPR
)
3312 tree inner
= build_unary_op (location
, code
,
3313 C_MAYBE_CONST_EXPR_EXPR (arg
), flag
);
3314 if (inner
== error_mark_node
)
3315 return error_mark_node
;
3316 ret
= build2 (C_MAYBE_CONST_EXPR
, TREE_TYPE (inner
),
3317 C_MAYBE_CONST_EXPR_PRE (arg
), inner
);
3318 gcc_assert (!C_MAYBE_CONST_EXPR_INT_OPERANDS (arg
));
3319 C_MAYBE_CONST_EXPR_NON_CONST (ret
) = 1;
3320 goto return_build_unary_op
;
3323 /* Complain about anything that is not a true lvalue. */
3324 if (!lvalue_or_else (arg
, ((code
== PREINCREMENT_EXPR
3325 || code
== POSTINCREMENT_EXPR
)
3328 return error_mark_node
;
3330 if (warn_cxx_compat
&& TREE_CODE (TREE_TYPE (arg
)) == ENUMERAL_TYPE
)
3332 if (code
== PREINCREMENT_EXPR
|| code
== POSTINCREMENT_EXPR
)
3333 warning_at (location
, OPT_Wc___compat
,
3334 "increment of enumeration value is invalid in C++");
3336 warning_at (location
, OPT_Wc___compat
,
3337 "decrement of enumeration value is invalid in C++");
3340 /* Ensure the argument is fully folded inside any SAVE_EXPR. */
3341 arg
= c_fully_fold (arg
, false, NULL
);
3343 /* Increment or decrement the real part of the value,
3344 and don't change the imaginary part. */
3345 if (typecode
== COMPLEX_TYPE
)
3349 pedwarn (location
, OPT_pedantic
,
3350 "ISO C does not support %<++%> and %<--%> on complex types");
3352 arg
= stabilize_reference (arg
);
3353 real
= build_unary_op (EXPR_LOCATION (arg
), REALPART_EXPR
, arg
, 1);
3354 imag
= build_unary_op (EXPR_LOCATION (arg
), IMAGPART_EXPR
, arg
, 1);
3355 real
= build_unary_op (EXPR_LOCATION (arg
), code
, real
, 1);
3356 if (real
== error_mark_node
|| imag
== error_mark_node
)
3357 return error_mark_node
;
3358 ret
= build2 (COMPLEX_EXPR
, TREE_TYPE (arg
),
3360 goto return_build_unary_op
;
3363 /* Report invalid types. */
3365 if (typecode
!= POINTER_TYPE
&& typecode
!= FIXED_POINT_TYPE
3366 && typecode
!= INTEGER_TYPE
&& typecode
!= REAL_TYPE
)
3368 if (code
== PREINCREMENT_EXPR
|| code
== POSTINCREMENT_EXPR
)
3369 error_at (location
, "wrong type argument to increment");
3371 error_at (location
, "wrong type argument to decrement");
3373 return error_mark_node
;
3379 argtype
= TREE_TYPE (arg
);
3381 /* Compute the increment. */
3383 if (typecode
== POINTER_TYPE
)
3385 /* If pointer target is an undefined struct,
3386 we just cannot know how to do the arithmetic. */
3387 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (argtype
)))
3389 if (code
== PREINCREMENT_EXPR
|| code
== POSTINCREMENT_EXPR
)
3391 "increment of pointer to unknown structure");
3394 "decrement of pointer to unknown structure");
3396 else if (TREE_CODE (TREE_TYPE (argtype
)) == FUNCTION_TYPE
3397 || TREE_CODE (TREE_TYPE (argtype
)) == VOID_TYPE
)
3399 if (code
== PREINCREMENT_EXPR
|| code
== POSTINCREMENT_EXPR
)
3400 pedwarn (location
, pedantic
? OPT_pedantic
: OPT_Wpointer_arith
,
3401 "wrong type argument to increment");
3403 pedwarn (location
, pedantic
? OPT_pedantic
: OPT_Wpointer_arith
,
3404 "wrong type argument to decrement");
3407 inc
= c_size_in_bytes (TREE_TYPE (argtype
));
3408 inc
= fold_convert (sizetype
, inc
);
3410 else if (FRACT_MODE_P (TYPE_MODE (argtype
)))
3412 /* For signed fract types, we invert ++ to -- or
3413 -- to ++, and change inc from 1 to -1, because
3414 it is not possible to represent 1 in signed fract constants.
3415 For unsigned fract types, the result always overflows and
3416 we get an undefined (original) or the maximum value. */
3417 if (code
== PREINCREMENT_EXPR
)
3418 code
= PREDECREMENT_EXPR
;
3419 else if (code
== PREDECREMENT_EXPR
)
3420 code
= PREINCREMENT_EXPR
;
3421 else if (code
== POSTINCREMENT_EXPR
)
3422 code
= POSTDECREMENT_EXPR
;
3423 else /* code == POSTDECREMENT_EXPR */
3424 code
= POSTINCREMENT_EXPR
;
3426 inc
= integer_minus_one_node
;
3427 inc
= convert (argtype
, inc
);
3431 inc
= integer_one_node
;
3432 inc
= convert (argtype
, inc
);
3435 /* Report a read-only lvalue. */
3436 if (TYPE_READONLY (argtype
))
3438 readonly_error (arg
,
3439 ((code
== PREINCREMENT_EXPR
3440 || code
== POSTINCREMENT_EXPR
)
3441 ? lv_increment
: lv_decrement
));
3442 return error_mark_node
;
3444 else if (TREE_READONLY (arg
))
3445 readonly_warning (arg
,
3446 ((code
== PREINCREMENT_EXPR
3447 || code
== POSTINCREMENT_EXPR
)
3448 ? lv_increment
: lv_decrement
));
3450 if (TREE_CODE (TREE_TYPE (arg
)) == BOOLEAN_TYPE
)
3451 val
= boolean_increment (code
, arg
);
3453 val
= build2 (code
, TREE_TYPE (arg
), arg
, inc
);
3454 TREE_SIDE_EFFECTS (val
) = 1;
3455 if (TREE_CODE (val
) != code
)
3456 TREE_NO_WARNING (val
) = 1;
3458 goto return_build_unary_op
;
3462 /* Note that this operation never does default_conversion. */
3464 /* The operand of unary '&' must be an lvalue (which excludes
3465 expressions of type void), or, in C99, the result of a [] or
3466 unary '*' operator. */
3467 if (VOID_TYPE_P (TREE_TYPE (arg
))
3468 && TYPE_QUALS (TREE_TYPE (arg
)) == TYPE_UNQUALIFIED
3469 && (TREE_CODE (arg
) != INDIRECT_REF
3471 pedwarn (location
, 0, "taking address of expression of type %<void%>");
3473 /* Let &* cancel out to simplify resulting code. */
3474 if (TREE_CODE (arg
) == INDIRECT_REF
)
3476 /* Don't let this be an lvalue. */
3477 if (lvalue_p (TREE_OPERAND (arg
, 0)))
3478 return non_lvalue (TREE_OPERAND (arg
, 0));
3479 ret
= TREE_OPERAND (arg
, 0);
3480 goto return_build_unary_op
;
3483 /* For &x[y], return x+y */
3484 if (TREE_CODE (arg
) == ARRAY_REF
)
3486 tree op0
= TREE_OPERAND (arg
, 0);
3487 if (!c_mark_addressable (op0
))
3488 return error_mark_node
;
3489 return build_binary_op (location
, PLUS_EXPR
,
3490 (TREE_CODE (TREE_TYPE (op0
)) == ARRAY_TYPE
3491 ? array_to_pointer_conversion (location
,
3494 TREE_OPERAND (arg
, 1), 1);
3497 /* Anything not already handled and not a true memory reference
3498 or a non-lvalue array is an error. */
3499 else if (typecode
!= FUNCTION_TYPE
&& !flag
3500 && !lvalue_or_else (arg
, lv_addressof
))
3501 return error_mark_node
;
3503 /* Move address operations inside C_MAYBE_CONST_EXPR to simplify
3505 if (TREE_CODE (arg
) == C_MAYBE_CONST_EXPR
)
3507 tree inner
= build_unary_op (location
, code
,
3508 C_MAYBE_CONST_EXPR_EXPR (arg
), flag
);
3509 ret
= build2 (C_MAYBE_CONST_EXPR
, TREE_TYPE (inner
),
3510 C_MAYBE_CONST_EXPR_PRE (arg
), inner
);
3511 gcc_assert (!C_MAYBE_CONST_EXPR_INT_OPERANDS (arg
));
3512 C_MAYBE_CONST_EXPR_NON_CONST (ret
)
3513 = C_MAYBE_CONST_EXPR_NON_CONST (arg
);
3514 goto return_build_unary_op
;
3517 /* Ordinary case; arg is a COMPONENT_REF or a decl. */
3518 argtype
= TREE_TYPE (arg
);
3520 /* If the lvalue is const or volatile, merge that into the type
3521 to which the address will point. Note that you can't get a
3522 restricted pointer by taking the address of something, so we
3523 only have to deal with `const' and `volatile' here. */
3524 if ((DECL_P (arg
) || REFERENCE_CLASS_P (arg
))
3525 && (TREE_READONLY (arg
) || TREE_THIS_VOLATILE (arg
)))
3526 argtype
= c_build_type_variant (argtype
,
3527 TREE_READONLY (arg
),
3528 TREE_THIS_VOLATILE (arg
));
3530 if (!c_mark_addressable (arg
))
3531 return error_mark_node
;
3533 gcc_assert (TREE_CODE (arg
) != COMPONENT_REF
3534 || !DECL_C_BIT_FIELD (TREE_OPERAND (arg
, 1)));
3536 argtype
= build_pointer_type (argtype
);
3538 /* ??? Cope with user tricks that amount to offsetof. Delete this
3539 when we have proper support for integer constant expressions. */
3540 val
= get_base_address (arg
);
3541 if (val
&& TREE_CODE (val
) == INDIRECT_REF
3542 && TREE_CONSTANT (TREE_OPERAND (val
, 0)))
3544 tree op0
= fold_convert (sizetype
, fold_offsetof (arg
, val
)), op1
;
3546 op1
= fold_convert (argtype
, TREE_OPERAND (val
, 0));
3547 ret
= fold_build2 (POINTER_PLUS_EXPR
, argtype
, op1
, op0
);
3548 goto return_build_unary_op
;
3551 val
= build1 (ADDR_EXPR
, argtype
, arg
);
3554 goto return_build_unary_op
;
3561 argtype
= TREE_TYPE (arg
);
3562 if (TREE_CODE (arg
) == INTEGER_CST
)
3563 ret
= (require_constant_value
3564 ? fold_build1_initializer (code
, argtype
, arg
)
3565 : fold_build1 (code
, argtype
, arg
));
3567 ret
= build1 (code
, argtype
, arg
);
3568 return_build_unary_op
:
3569 gcc_assert (ret
!= error_mark_node
);
3570 if (TREE_CODE (ret
) == INTEGER_CST
&& !TREE_OVERFLOW (ret
)
3571 && !(TREE_CODE (xarg
) == INTEGER_CST
&& !TREE_OVERFLOW (xarg
)))
3572 ret
= build1 (NOP_EXPR
, TREE_TYPE (ret
), ret
);
3573 else if (TREE_CODE (ret
) != INTEGER_CST
&& int_operands
)
3574 ret
= note_integer_operands (ret
);
3576 ret
= build1 (EXCESS_PRECISION_EXPR
, eptype
, ret
);
3577 protected_set_expr_location (ret
, location
);
3581 /* Return nonzero if REF is an lvalue valid for this language.
3582 Lvalues can be assigned, unless their type has TYPE_READONLY.
3583 Lvalues can have their address taken, unless they have C_DECL_REGISTER. */
3586 lvalue_p (const_tree ref
)
3588 const enum tree_code code
= TREE_CODE (ref
);
3595 return lvalue_p (TREE_OPERAND (ref
, 0));
3597 case C_MAYBE_CONST_EXPR
:
3598 return lvalue_p (TREE_OPERAND (ref
, 1));
3600 case COMPOUND_LITERAL_EXPR
:
3610 return (TREE_CODE (TREE_TYPE (ref
)) != FUNCTION_TYPE
3611 && TREE_CODE (TREE_TYPE (ref
)) != METHOD_TYPE
);
3614 return TREE_CODE (TREE_TYPE (ref
)) == ARRAY_TYPE
;
3621 /* Give an error for storing in something that is 'const'. */
3624 readonly_error (tree arg
, enum lvalue_use use
)
3626 gcc_assert (use
== lv_assign
|| use
== lv_increment
|| use
== lv_decrement
3628 /* Using this macro rather than (for example) arrays of messages
3629 ensures that all the format strings are checked at compile
3631 #define READONLY_MSG(A, I, D, AS) (use == lv_assign ? (A) \
3632 : (use == lv_increment ? (I) \
3633 : (use == lv_decrement ? (D) : (AS))))
3634 if (TREE_CODE (arg
) == COMPONENT_REF
)
3636 if (TYPE_READONLY (TREE_TYPE (TREE_OPERAND (arg
, 0))))
3637 readonly_error (TREE_OPERAND (arg
, 0), use
);
3639 error (READONLY_MSG (G_("assignment of read-only member %qD"),
3640 G_("increment of read-only member %qD"),
3641 G_("decrement of read-only member %qD"),
3642 G_("read-only member %qD used as %<asm%> output")),
3643 TREE_OPERAND (arg
, 1));
3645 else if (TREE_CODE (arg
) == VAR_DECL
)
3646 error (READONLY_MSG (G_("assignment of read-only variable %qD"),
3647 G_("increment of read-only variable %qD"),
3648 G_("decrement of read-only variable %qD"),
3649 G_("read-only variable %qD used as %<asm%> output")),
3652 error (READONLY_MSG (G_("assignment of read-only location %qE"),
3653 G_("increment of read-only location %qE"),
3654 G_("decrement of read-only location %qE"),
3655 G_("read-only location %qE used as %<asm%> output")),
3659 /* Give a warning for storing in something that is read-only in GCC
3660 terms but not const in ISO C terms. */
3663 readonly_warning (tree arg
, enum lvalue_use use
)
3668 warning (0, "assignment of read-only location %qE", arg
);
3671 warning (0, "increment of read-only location %qE", arg
);
3674 warning (0, "decrement of read-only location %qE", arg
);
3683 /* Return nonzero if REF is an lvalue valid for this language;
3684 otherwise, print an error message and return zero. USE says
3685 how the lvalue is being used and so selects the error message. */
3688 lvalue_or_else (const_tree ref
, enum lvalue_use use
)
3690 int win
= lvalue_p (ref
);
3698 /* Mark EXP saying that we need to be able to take the
3699 address of it; it should not be allocated in a register.
3700 Returns true if successful. */
3703 c_mark_addressable (tree exp
)
3708 switch (TREE_CODE (x
))
3711 if (DECL_C_BIT_FIELD (TREE_OPERAND (x
, 1)))
3714 ("cannot take address of bit-field %qD", TREE_OPERAND (x
, 1));
3718 /* ... fall through ... */
3724 x
= TREE_OPERAND (x
, 0);
3727 case COMPOUND_LITERAL_EXPR
:
3729 TREE_ADDRESSABLE (x
) = 1;
3736 if (C_DECL_REGISTER (x
)
3737 && DECL_NONLOCAL (x
))
3739 if (TREE_PUBLIC (x
) || TREE_STATIC (x
) || DECL_EXTERNAL (x
))
3742 ("global register variable %qD used in nested function", x
);
3745 pedwarn (input_location
, 0, "register variable %qD used in nested function", x
);
3747 else if (C_DECL_REGISTER (x
))
3749 if (TREE_PUBLIC (x
) || TREE_STATIC (x
) || DECL_EXTERNAL (x
))
3750 error ("address of global register variable %qD requested", x
);
3752 error ("address of register variable %qD requested", x
);
3758 TREE_ADDRESSABLE (x
) = 1;
3765 /* Build and return a conditional expression IFEXP ? OP1 : OP2. If
3766 IFEXP_BCP then the condition is a call to __builtin_constant_p, and
3767 if folded to an integer constant then the unselected half may
3768 contain arbitrary operations not normally permitted in constant
3769 expressions. Set the location of the expression to LOC. */
3772 build_conditional_expr (location_t colon_loc
, tree ifexp
, bool ifexp_bcp
,
3777 enum tree_code code1
;
3778 enum tree_code code2
;
3779 tree result_type
= NULL
;
3780 tree ep_result_type
= NULL
;
3781 tree orig_op1
= op1
, orig_op2
= op2
;
3782 bool int_const
, op1_int_operands
, op2_int_operands
, int_operands
;
3783 bool ifexp_int_operands
;
3787 op1_int_operands
= EXPR_INT_CONST_OPERANDS (orig_op1
);
3788 if (op1_int_operands
)
3789 op1
= remove_c_maybe_const_expr (op1
);
3790 op2_int_operands
= EXPR_INT_CONST_OPERANDS (orig_op2
);
3791 if (op2_int_operands
)
3792 op2
= remove_c_maybe_const_expr (op2
);
3793 ifexp_int_operands
= EXPR_INT_CONST_OPERANDS (ifexp
);
3794 if (ifexp_int_operands
)
3795 ifexp
= remove_c_maybe_const_expr (ifexp
);
3797 /* Promote both alternatives. */
3799 if (TREE_CODE (TREE_TYPE (op1
)) != VOID_TYPE
)
3800 op1
= default_conversion (op1
);
3801 if (TREE_CODE (TREE_TYPE (op2
)) != VOID_TYPE
)
3802 op2
= default_conversion (op2
);
3804 if (TREE_CODE (ifexp
) == ERROR_MARK
3805 || TREE_CODE (TREE_TYPE (op1
)) == ERROR_MARK
3806 || TREE_CODE (TREE_TYPE (op2
)) == ERROR_MARK
)
3807 return error_mark_node
;
3809 type1
= TREE_TYPE (op1
);
3810 code1
= TREE_CODE (type1
);
3811 type2
= TREE_TYPE (op2
);
3812 code2
= TREE_CODE (type2
);
3814 /* C90 does not permit non-lvalue arrays in conditional expressions.
3815 In C99 they will be pointers by now. */
3816 if (code1
== ARRAY_TYPE
|| code2
== ARRAY_TYPE
)
3818 error_at (colon_loc
, "non-lvalue array in conditional expression");
3819 return error_mark_node
;
3822 objc_ok
= objc_compare_types (type1
, type2
, -3, NULL_TREE
);
3824 if ((TREE_CODE (op1
) == EXCESS_PRECISION_EXPR
3825 || TREE_CODE (op2
) == EXCESS_PRECISION_EXPR
)
3826 && (code1
== INTEGER_TYPE
|| code1
== REAL_TYPE
3827 || code1
== COMPLEX_TYPE
)
3828 && (code2
== INTEGER_TYPE
|| code2
== REAL_TYPE
3829 || code2
== COMPLEX_TYPE
))
3831 ep_result_type
= c_common_type (type1
, type2
);
3832 if (TREE_CODE (op1
) == EXCESS_PRECISION_EXPR
)
3834 op1
= TREE_OPERAND (op1
, 0);
3835 type1
= TREE_TYPE (op1
);
3836 gcc_assert (TREE_CODE (type1
) == code1
);
3838 if (TREE_CODE (op2
) == EXCESS_PRECISION_EXPR
)
3840 op2
= TREE_OPERAND (op2
, 0);
3841 type2
= TREE_TYPE (op2
);
3842 gcc_assert (TREE_CODE (type2
) == code2
);
3846 /* Quickly detect the usual case where op1 and op2 have the same type
3848 if (TYPE_MAIN_VARIANT (type1
) == TYPE_MAIN_VARIANT (type2
))
3851 result_type
= type1
;
3853 result_type
= TYPE_MAIN_VARIANT (type1
);
3855 else if ((code1
== INTEGER_TYPE
|| code1
== REAL_TYPE
3856 || code1
== COMPLEX_TYPE
)
3857 && (code2
== INTEGER_TYPE
|| code2
== REAL_TYPE
3858 || code2
== COMPLEX_TYPE
))
3860 result_type
= c_common_type (type1
, type2
);
3862 /* If -Wsign-compare, warn here if type1 and type2 have
3863 different signedness. We'll promote the signed to unsigned
3864 and later code won't know it used to be different.
3865 Do this check on the original types, so that explicit casts
3866 will be considered, but default promotions won't. */
3867 if (c_inhibit_evaluation_warnings
== 0)
3869 int unsigned_op1
= TYPE_UNSIGNED (TREE_TYPE (orig_op1
));
3870 int unsigned_op2
= TYPE_UNSIGNED (TREE_TYPE (orig_op2
));
3872 if (unsigned_op1
^ unsigned_op2
)
3876 /* Do not warn if the result type is signed, since the
3877 signed type will only be chosen if it can represent
3878 all the values of the unsigned type. */
3879 if (!TYPE_UNSIGNED (result_type
))
3883 bool op1_maybe_const
= true;
3884 bool op2_maybe_const
= true;
3886 /* Do not warn if the signed quantity is an
3887 unsuffixed integer literal (or some static
3888 constant expression involving such literals) and
3889 it is non-negative. This warning requires the
3890 operands to be folded for best results, so do
3891 that folding in this case even without
3892 warn_sign_compare to avoid warning options
3893 possibly affecting code generation. */
3894 op1
= c_fully_fold (op1
, require_constant_value
,
3896 op2
= c_fully_fold (op2
, require_constant_value
,
3899 if (warn_sign_compare
)
3902 && tree_expr_nonnegative_warnv_p (op1
, &ovf
))
3904 && tree_expr_nonnegative_warnv_p (op2
, &ovf
)))
3907 warning_at (colon_loc
, OPT_Wsign_compare
,
3908 ("signed and unsigned type in "
3909 "conditional expression"));
3911 if (!op1_maybe_const
|| TREE_CODE (op1
) != INTEGER_CST
)
3913 op1
= build2 (C_MAYBE_CONST_EXPR
, TREE_TYPE (op1
),
3915 C_MAYBE_CONST_EXPR_NON_CONST (op1
) = !op1_maybe_const
;
3917 if (!op2_maybe_const
|| TREE_CODE (op2
) != INTEGER_CST
)
3919 op2
= build2 (C_MAYBE_CONST_EXPR
, TREE_TYPE (op2
),
3921 C_MAYBE_CONST_EXPR_NON_CONST (op2
) = !op2_maybe_const
;
3927 else if (code1
== VOID_TYPE
|| code2
== VOID_TYPE
)
3929 if (code1
!= VOID_TYPE
|| code2
!= VOID_TYPE
)
3930 pedwarn (colon_loc
, OPT_pedantic
,
3931 "ISO C forbids conditional expr with only one void side");
3932 result_type
= void_type_node
;
3934 else if (code1
== POINTER_TYPE
&& code2
== POINTER_TYPE
)
3936 if (comp_target_types (colon_loc
, type1
, type2
))
3937 result_type
= common_pointer_type (type1
, type2
);
3938 else if (null_pointer_constant_p (orig_op1
))
3939 result_type
= qualify_type (type2
, type1
);
3940 else if (null_pointer_constant_p (orig_op2
))
3941 result_type
= qualify_type (type1
, type2
);
3942 else if (VOID_TYPE_P (TREE_TYPE (type1
)))
3944 if (TREE_CODE (TREE_TYPE (type2
)) == FUNCTION_TYPE
)
3945 pedwarn (colon_loc
, OPT_pedantic
,
3946 "ISO C forbids conditional expr between "
3947 "%<void *%> and function pointer");
3948 result_type
= build_pointer_type (qualify_type (TREE_TYPE (type1
),
3949 TREE_TYPE (type2
)));
3951 else if (VOID_TYPE_P (TREE_TYPE (type2
)))
3953 if (TREE_CODE (TREE_TYPE (type1
)) == FUNCTION_TYPE
)
3954 pedwarn (colon_loc
, OPT_pedantic
,
3955 "ISO C forbids conditional expr between "
3956 "%<void *%> and function pointer");
3957 result_type
= build_pointer_type (qualify_type (TREE_TYPE (type2
),
3958 TREE_TYPE (type1
)));
3963 pedwarn (colon_loc
, 0,
3964 "pointer type mismatch in conditional expression");
3965 result_type
= build_pointer_type (void_type_node
);
3968 else if (code1
== POINTER_TYPE
&& code2
== INTEGER_TYPE
)
3970 if (!null_pointer_constant_p (orig_op2
))
3971 pedwarn (colon_loc
, 0,
3972 "pointer/integer type mismatch in conditional expression");
3975 op2
= null_pointer_node
;
3977 result_type
= type1
;
3979 else if (code2
== POINTER_TYPE
&& code1
== INTEGER_TYPE
)
3981 if (!null_pointer_constant_p (orig_op1
))
3982 pedwarn (colon_loc
, 0,
3983 "pointer/integer type mismatch in conditional expression");
3986 op1
= null_pointer_node
;
3988 result_type
= type2
;
3993 if (flag_cond_mismatch
)
3994 result_type
= void_type_node
;
3997 error_at (colon_loc
, "type mismatch in conditional expression");
3998 return error_mark_node
;
4002 /* Merge const and volatile flags of the incoming types. */
4004 = build_type_variant (result_type
,
4005 TREE_READONLY (op1
) || TREE_READONLY (op2
),
4006 TREE_THIS_VOLATILE (op1
) || TREE_THIS_VOLATILE (op2
));
4008 if (result_type
!= TREE_TYPE (op1
))
4009 op1
= convert_and_check (result_type
, op1
);
4010 if (result_type
!= TREE_TYPE (op2
))
4011 op2
= convert_and_check (result_type
, op2
);
4013 if (ifexp_bcp
&& ifexp
== truthvalue_true_node
)
4015 op2_int_operands
= true;
4016 op1
= c_fully_fold (op1
, require_constant_value
, NULL
);
4018 if (ifexp_bcp
&& ifexp
== truthvalue_false_node
)
4020 op1_int_operands
= true;
4021 op2
= c_fully_fold (op2
, require_constant_value
, NULL
);
4023 int_const
= int_operands
= (ifexp_int_operands
4025 && op2_int_operands
);
4028 int_const
= ((ifexp
== truthvalue_true_node
4029 && TREE_CODE (orig_op1
) == INTEGER_CST
4030 && !TREE_OVERFLOW (orig_op1
))
4031 || (ifexp
== truthvalue_false_node
4032 && TREE_CODE (orig_op2
) == INTEGER_CST
4033 && !TREE_OVERFLOW (orig_op2
)));
4035 if (int_const
|| (ifexp_bcp
&& TREE_CODE (ifexp
) == INTEGER_CST
))
4036 ret
= fold_build3 (COND_EXPR
, result_type
, ifexp
, op1
, op2
);
4039 ret
= build3 (COND_EXPR
, result_type
, ifexp
, op1
, op2
);
4041 ret
= note_integer_operands (ret
);
4044 ret
= build1 (EXCESS_PRECISION_EXPR
, ep_result_type
, ret
);
4046 protected_set_expr_location (ret
, colon_loc
);
4050 /* Return a compound expression that performs two expressions and
4051 returns the value of the second of them.
4053 LOC is the location of the COMPOUND_EXPR. */
4056 build_compound_expr (location_t loc
, tree expr1
, tree expr2
)
4058 bool expr1_int_operands
, expr2_int_operands
;
4059 tree eptype
= NULL_TREE
;
4062 expr1_int_operands
= EXPR_INT_CONST_OPERANDS (expr1
);
4063 if (expr1_int_operands
)
4064 expr1
= remove_c_maybe_const_expr (expr1
);
4065 expr2_int_operands
= EXPR_INT_CONST_OPERANDS (expr2
);
4066 if (expr2_int_operands
)
4067 expr2
= remove_c_maybe_const_expr (expr2
);
4069 if (TREE_CODE (expr1
) == EXCESS_PRECISION_EXPR
)
4070 expr1
= TREE_OPERAND (expr1
, 0);
4071 if (TREE_CODE (expr2
) == EXCESS_PRECISION_EXPR
)
4073 eptype
= TREE_TYPE (expr2
);
4074 expr2
= TREE_OPERAND (expr2
, 0);
4077 if (!TREE_SIDE_EFFECTS (expr1
))
4079 /* The left-hand operand of a comma expression is like an expression
4080 statement: with -Wunused, we should warn if it doesn't have
4081 any side-effects, unless it was explicitly cast to (void). */
4082 if (warn_unused_value
)
4084 if (VOID_TYPE_P (TREE_TYPE (expr1
))
4085 && CONVERT_EXPR_P (expr1
))
4087 else if (VOID_TYPE_P (TREE_TYPE (expr1
))
4088 && TREE_CODE (expr1
) == COMPOUND_EXPR
4089 && CONVERT_EXPR_P (TREE_OPERAND (expr1
, 1)))
4090 ; /* (void) a, (void) b, c */
4092 warning_at (loc
, OPT_Wunused_value
,
4093 "left-hand operand of comma expression has no effect");
4097 /* With -Wunused, we should also warn if the left-hand operand does have
4098 side-effects, but computes a value which is not used. For example, in
4099 `foo() + bar(), baz()' the result of the `+' operator is not used,
4100 so we should issue a warning. */
4101 else if (warn_unused_value
)
4102 warn_if_unused_value (expr1
, loc
);
4104 if (expr2
== error_mark_node
)
4105 return error_mark_node
;
4107 ret
= build2 (COMPOUND_EXPR
, TREE_TYPE (expr2
), expr1
, expr2
);
4110 && expr1_int_operands
4111 && expr2_int_operands
)
4112 ret
= note_integer_operands (ret
);
4115 ret
= build1 (EXCESS_PRECISION_EXPR
, eptype
, ret
);
4117 protected_set_expr_location (ret
, loc
);
4121 /* Issue -Wcast-qual warnings when appropriate. TYPE is the type to
4122 which we are casting. OTYPE is the type of the expression being
4123 cast. Both TYPE and OTYPE are pointer types. -Wcast-qual appeared
4124 on the command line. */
4127 handle_warn_cast_qual (tree type
, tree otype
)
4129 tree in_type
= type
;
4130 tree in_otype
= otype
;
4135 /* Check that the qualifiers on IN_TYPE are a superset of the
4136 qualifiers of IN_OTYPE. The outermost level of POINTER_TYPE
4137 nodes is uninteresting and we stop as soon as we hit a
4138 non-POINTER_TYPE node on either type. */
4141 in_otype
= TREE_TYPE (in_otype
);
4142 in_type
= TREE_TYPE (in_type
);
4144 /* GNU C allows cv-qualified function types. 'const' means the
4145 function is very pure, 'volatile' means it can't return. We
4146 need to warn when such qualifiers are added, not when they're
4148 if (TREE_CODE (in_otype
) == FUNCTION_TYPE
4149 && TREE_CODE (in_type
) == FUNCTION_TYPE
)
4150 added
|= (TYPE_QUALS (in_type
) & ~TYPE_QUALS (in_otype
));
4152 discarded
|= (TYPE_QUALS (in_otype
) & ~TYPE_QUALS (in_type
));
4154 while (TREE_CODE (in_type
) == POINTER_TYPE
4155 && TREE_CODE (in_otype
) == POINTER_TYPE
);
4158 warning (OPT_Wcast_qual
, "cast adds new qualifiers to function type");
4161 /* There are qualifiers present in IN_OTYPE that are not present
4163 warning (OPT_Wcast_qual
,
4164 "cast discards qualifiers from pointer target type");
4166 if (added
|| discarded
)
4169 /* A cast from **T to const **T is unsafe, because it can cause a
4170 const value to be changed with no additional warning. We only
4171 issue this warning if T is the same on both sides, and we only
4172 issue the warning if there are the same number of pointers on
4173 both sides, as otherwise the cast is clearly unsafe anyhow. A
4174 cast is unsafe when a qualifier is added at one level and const
4175 is not present at all outer levels.
4177 To issue this warning, we check at each level whether the cast
4178 adds new qualifiers not already seen. We don't need to special
4179 case function types, as they won't have the same
4180 TYPE_MAIN_VARIANT. */
4182 if (TYPE_MAIN_VARIANT (in_type
) != TYPE_MAIN_VARIANT (in_otype
))
4184 if (TREE_CODE (TREE_TYPE (type
)) != POINTER_TYPE
)
4189 is_const
= TYPE_READONLY (TREE_TYPE (in_type
));
4192 in_type
= TREE_TYPE (in_type
);
4193 in_otype
= TREE_TYPE (in_otype
);
4194 if ((TYPE_QUALS (in_type
) &~ TYPE_QUALS (in_otype
)) != 0
4197 warning (OPT_Wcast_qual
,
4198 ("new qualifiers in middle of multi-level non-const cast "
4203 is_const
= TYPE_READONLY (in_type
);
4205 while (TREE_CODE (in_type
) == POINTER_TYPE
);
4208 /* Build an expression representing a cast to type TYPE of expression EXPR.
4209 LOC is the location of the cast-- typically the open paren of the cast. */
4212 build_c_cast (location_t loc
, tree type
, tree expr
)
4216 if (TREE_CODE (expr
) == EXCESS_PRECISION_EXPR
)
4217 expr
= TREE_OPERAND (expr
, 0);
4221 if (type
== error_mark_node
|| expr
== error_mark_node
)
4222 return error_mark_node
;
4224 /* The ObjC front-end uses TYPE_MAIN_VARIANT to tie together types differing
4225 only in <protocol> qualifications. But when constructing cast expressions,
4226 the protocols do matter and must be kept around. */
4227 if (objc_is_object_ptr (type
) && objc_is_object_ptr (TREE_TYPE (expr
)))
4228 return build1 (NOP_EXPR
, type
, expr
);
4230 type
= TYPE_MAIN_VARIANT (type
);
4232 if (TREE_CODE (type
) == ARRAY_TYPE
)
4234 error_at (loc
, "cast specifies array type");
4235 return error_mark_node
;
4238 if (TREE_CODE (type
) == FUNCTION_TYPE
)
4240 error_at (loc
, "cast specifies function type");
4241 return error_mark_node
;
4244 if (!VOID_TYPE_P (type
))
4246 value
= require_complete_type (value
);
4247 if (value
== error_mark_node
)
4248 return error_mark_node
;
4251 if (type
== TYPE_MAIN_VARIANT (TREE_TYPE (value
)))
4253 if (TREE_CODE (type
) == RECORD_TYPE
4254 || TREE_CODE (type
) == UNION_TYPE
)
4255 pedwarn (loc
, OPT_pedantic
,
4256 "ISO C forbids casting nonscalar to the same type");
4258 else if (TREE_CODE (type
) == UNION_TYPE
)
4262 for (field
= TYPE_FIELDS (type
); field
; field
= TREE_CHAIN (field
))
4263 if (TREE_TYPE (field
) != error_mark_node
4264 && comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (field
)),
4265 TYPE_MAIN_VARIANT (TREE_TYPE (value
))))
4272 pedwarn (loc
, OPT_pedantic
, "ISO C forbids casts to union type");
4273 t
= digest_init (loc
, type
,
4274 build_constructor_single (type
, field
, value
),
4275 NULL_TREE
, false, true, 0);
4276 TREE_CONSTANT (t
) = TREE_CONSTANT (value
);
4279 error_at (loc
, "cast to union type from type not present in union");
4280 return error_mark_node
;
4286 if (type
== void_type_node
)
4288 tree t
= build1 (CONVERT_EXPR
, type
, value
);
4289 SET_EXPR_LOCATION (t
, loc
);
4293 otype
= TREE_TYPE (value
);
4295 /* Optionally warn about potentially worrisome casts. */
4297 && TREE_CODE (type
) == POINTER_TYPE
4298 && TREE_CODE (otype
) == POINTER_TYPE
)
4299 handle_warn_cast_qual (type
, otype
);
4301 /* Warn about possible alignment problems. */
4302 if (STRICT_ALIGNMENT
4303 && TREE_CODE (type
) == POINTER_TYPE
4304 && TREE_CODE (otype
) == POINTER_TYPE
4305 && TREE_CODE (TREE_TYPE (otype
)) != VOID_TYPE
4306 && TREE_CODE (TREE_TYPE (otype
)) != FUNCTION_TYPE
4307 /* Don't warn about opaque types, where the actual alignment
4308 restriction is unknown. */
4309 && !((TREE_CODE (TREE_TYPE (otype
)) == UNION_TYPE
4310 || TREE_CODE (TREE_TYPE (otype
)) == RECORD_TYPE
)
4311 && TYPE_MODE (TREE_TYPE (otype
)) == VOIDmode
)
4312 && TYPE_ALIGN (TREE_TYPE (type
)) > TYPE_ALIGN (TREE_TYPE (otype
)))
4313 warning_at (loc
, OPT_Wcast_align
,
4314 "cast increases required alignment of target type");
4316 if (TREE_CODE (type
) == INTEGER_TYPE
4317 && TREE_CODE (otype
) == POINTER_TYPE
4318 && TYPE_PRECISION (type
) != TYPE_PRECISION (otype
))
4319 /* Unlike conversion of integers to pointers, where the
4320 warning is disabled for converting constants because
4321 of cases such as SIG_*, warn about converting constant
4322 pointers to integers. In some cases it may cause unwanted
4323 sign extension, and a warning is appropriate. */
4324 warning_at (loc
, OPT_Wpointer_to_int_cast
,
4325 "cast from pointer to integer of different size");
4327 if (TREE_CODE (value
) == CALL_EXPR
4328 && TREE_CODE (type
) != TREE_CODE (otype
))
4329 warning_at (loc
, OPT_Wbad_function_cast
,
4330 "cast from function call of type %qT "
4331 "to non-matching type %qT", otype
, type
);
4333 if (TREE_CODE (type
) == POINTER_TYPE
4334 && TREE_CODE (otype
) == INTEGER_TYPE
4335 && TYPE_PRECISION (type
) != TYPE_PRECISION (otype
)
4336 /* Don't warn about converting any constant. */
4337 && !TREE_CONSTANT (value
))
4339 OPT_Wint_to_pointer_cast
, "cast to pointer from integer "
4340 "of different size");
4342 if (warn_strict_aliasing
<= 2)
4343 strict_aliasing_warning (otype
, type
, expr
);
4345 /* If pedantic, warn for conversions between function and object
4346 pointer types, except for converting a null pointer constant
4347 to function pointer type. */
4349 && TREE_CODE (type
) == POINTER_TYPE
4350 && TREE_CODE (otype
) == POINTER_TYPE
4351 && TREE_CODE (TREE_TYPE (otype
)) == FUNCTION_TYPE
4352 && TREE_CODE (TREE_TYPE (type
)) != FUNCTION_TYPE
)
4353 pedwarn (loc
, OPT_pedantic
, "ISO C forbids "
4354 "conversion of function pointer to object pointer type");
4357 && TREE_CODE (type
) == POINTER_TYPE
4358 && TREE_CODE (otype
) == POINTER_TYPE
4359 && TREE_CODE (TREE_TYPE (type
)) == FUNCTION_TYPE
4360 && TREE_CODE (TREE_TYPE (otype
)) != FUNCTION_TYPE
4361 && !null_pointer_constant_p (value
))
4362 pedwarn (loc
, OPT_pedantic
, "ISO C forbids "
4363 "conversion of object pointer to function pointer type");
4366 value
= convert (type
, value
);
4368 /* Ignore any integer overflow caused by the cast. */
4369 if (TREE_CODE (value
) == INTEGER_CST
&& !FLOAT_TYPE_P (otype
))
4371 if (CONSTANT_CLASS_P (ovalue
) && TREE_OVERFLOW (ovalue
))
4373 if (!TREE_OVERFLOW (value
))
4375 /* Avoid clobbering a shared constant. */
4376 value
= copy_node (value
);
4377 TREE_OVERFLOW (value
) = TREE_OVERFLOW (ovalue
);
4380 else if (TREE_OVERFLOW (value
))
4381 /* Reset VALUE's overflow flags, ensuring constant sharing. */
4382 value
= build_int_cst_wide (TREE_TYPE (value
),
4383 TREE_INT_CST_LOW (value
),
4384 TREE_INT_CST_HIGH (value
));
4388 /* Don't let a cast be an lvalue. */
4390 value
= non_lvalue (value
);
4392 /* Don't allow the results of casting to floating-point or complex
4393 types be confused with actual constants, or casts involving
4394 integer and pointer types other than direct integer-to-integer
4395 and integer-to-pointer be confused with integer constant
4396 expressions and null pointer constants. */
4397 if (TREE_CODE (value
) == REAL_CST
4398 || TREE_CODE (value
) == COMPLEX_CST
4399 || (TREE_CODE (value
) == INTEGER_CST
4400 && !((TREE_CODE (expr
) == INTEGER_CST
4401 && INTEGRAL_TYPE_P (TREE_TYPE (expr
)))
4402 || TREE_CODE (expr
) == REAL_CST
4403 || TREE_CODE (expr
) == COMPLEX_CST
)))
4404 value
= build1 (NOP_EXPR
, type
, value
);
4406 if (CAN_HAVE_LOCATION_P (value
))
4407 SET_EXPR_LOCATION (value
, loc
);
4411 /* Interpret a cast of expression EXPR to type TYPE. LOC is the
4412 location of the open paren of the cast, or the position of the cast
4415 c_cast_expr (location_t loc
, struct c_type_name
*type_name
, tree expr
)
4418 tree type_expr
= NULL_TREE
;
4419 bool type_expr_const
= true;
4421 int saved_wsp
= warn_strict_prototypes
;
4423 /* This avoids warnings about unprototyped casts on
4424 integers. E.g. "#define SIG_DFL (void(*)())0". */
4425 if (TREE_CODE (expr
) == INTEGER_CST
)
4426 warn_strict_prototypes
= 0;
4427 type
= groktypename (type_name
, &type_expr
, &type_expr_const
);
4428 warn_strict_prototypes
= saved_wsp
;
4430 ret
= build_c_cast (loc
, type
, expr
);
4433 ret
= build2 (C_MAYBE_CONST_EXPR
, TREE_TYPE (ret
), type_expr
, ret
);
4434 C_MAYBE_CONST_EXPR_NON_CONST (ret
) = !type_expr_const
;
4435 SET_EXPR_LOCATION (ret
, loc
);
4438 if (CAN_HAVE_LOCATION_P (ret
) && !EXPR_HAS_LOCATION (ret
))
4439 SET_EXPR_LOCATION (ret
, loc
);
4441 /* C++ does not permits types to be defined in a cast. */
4442 if (warn_cxx_compat
&& type_name
->specs
->tag_defined_p
)
4443 warning_at (loc
, OPT_Wc___compat
,
4444 "defining a type in a cast is invalid in C++");
4449 /* Build an assignment expression of lvalue LHS from value RHS.
4450 If LHS_ORIGTYPE is not NULL, it is the original type of LHS, which
4451 may differ from TREE_TYPE (LHS) for an enum bitfield.
4452 MODIFYCODE is the code for a binary operator that we use
4453 to combine the old value of LHS with RHS to get the new value.
4454 Or else MODIFYCODE is NOP_EXPR meaning do a simple assignment.
4455 If RHS_ORIGTYPE is not NULL_TREE, it is the original type of RHS,
4456 which may differ from TREE_TYPE (RHS) for an enum value.
4458 LOCATION is the location of the MODIFYCODE operator.
4459 RHS_LOC is the location of the RHS. */
4462 build_modify_expr (location_t location
, tree lhs
, tree lhs_origtype
,
4463 enum tree_code modifycode
,
4464 location_t rhs_loc
, tree rhs
, tree rhs_origtype
)
4468 tree rhs_semantic_type
= NULL_TREE
;
4469 tree lhstype
= TREE_TYPE (lhs
);
4470 tree olhstype
= lhstype
;
4473 /* Types that aren't fully specified cannot be used in assignments. */
4474 lhs
= require_complete_type (lhs
);
4476 /* Avoid duplicate error messages from operands that had errors. */
4477 if (TREE_CODE (lhs
) == ERROR_MARK
|| TREE_CODE (rhs
) == ERROR_MARK
)
4478 return error_mark_node
;
4480 if (!lvalue_or_else (lhs
, lv_assign
))
4481 return error_mark_node
;
4483 if (TREE_CODE (rhs
) == EXCESS_PRECISION_EXPR
)
4485 rhs_semantic_type
= TREE_TYPE (rhs
);
4486 rhs
= TREE_OPERAND (rhs
, 0);
4491 if (TREE_CODE (lhs
) == C_MAYBE_CONST_EXPR
)
4493 tree inner
= build_modify_expr (location
, C_MAYBE_CONST_EXPR_EXPR (lhs
),
4494 lhs_origtype
, modifycode
, rhs_loc
, rhs
,
4496 if (inner
== error_mark_node
)
4497 return error_mark_node
;
4498 result
= build2 (C_MAYBE_CONST_EXPR
, TREE_TYPE (inner
),
4499 C_MAYBE_CONST_EXPR_PRE (lhs
), inner
);
4500 gcc_assert (!C_MAYBE_CONST_EXPR_INT_OPERANDS (lhs
));
4501 C_MAYBE_CONST_EXPR_NON_CONST (result
) = 1;
4502 protected_set_expr_location (result
, location
);
4506 /* If a binary op has been requested, combine the old LHS value with the RHS
4507 producing the value we should actually store into the LHS. */
4509 if (modifycode
!= NOP_EXPR
)
4511 lhs
= c_fully_fold (lhs
, false, NULL
);
4512 lhs
= stabilize_reference (lhs
);
4513 newrhs
= build_binary_op (location
,
4514 modifycode
, lhs
, rhs
, 1);
4516 /* The original type of the right hand side is no longer
4518 rhs_origtype
= NULL_TREE
;
4521 /* Give an error for storing in something that is 'const'. */
4523 if (TYPE_READONLY (lhstype
)
4524 || ((TREE_CODE (lhstype
) == RECORD_TYPE
4525 || TREE_CODE (lhstype
) == UNION_TYPE
)
4526 && C_TYPE_FIELDS_READONLY (lhstype
)))
4528 readonly_error (lhs
, lv_assign
);
4529 return error_mark_node
;
4531 else if (TREE_READONLY (lhs
))
4532 readonly_warning (lhs
, lv_assign
);
4534 /* If storing into a structure or union member,
4535 it has probably been given type `int'.
4536 Compute the type that would go with
4537 the actual amount of storage the member occupies. */
4539 if (TREE_CODE (lhs
) == COMPONENT_REF
4540 && (TREE_CODE (lhstype
) == INTEGER_TYPE
4541 || TREE_CODE (lhstype
) == BOOLEAN_TYPE
4542 || TREE_CODE (lhstype
) == REAL_TYPE
4543 || TREE_CODE (lhstype
) == ENUMERAL_TYPE
))
4544 lhstype
= TREE_TYPE (get_unwidened (lhs
, 0));
4546 /* If storing in a field that is in actuality a short or narrower than one,
4547 we must store in the field in its actual type. */
4549 if (lhstype
!= TREE_TYPE (lhs
))
4551 lhs
= copy_node (lhs
);
4552 TREE_TYPE (lhs
) = lhstype
;
4555 /* Issue -Wc++-compat warnings about an assignment to an enum type
4556 when LHS does not have its original type. This happens for,
4557 e.g., an enum bitfield in a struct. */
4559 && lhs_origtype
!= NULL_TREE
4560 && lhs_origtype
!= lhstype
4561 && TREE_CODE (lhs_origtype
) == ENUMERAL_TYPE
)
4563 tree checktype
= (rhs_origtype
!= NULL_TREE
4566 if (checktype
!= error_mark_node
4567 && TYPE_MAIN_VARIANT (checktype
) != TYPE_MAIN_VARIANT (lhs_origtype
))
4568 warning_at (location
, OPT_Wc___compat
,
4569 "enum conversion in assignment is invalid in C++");
4572 /* Convert new value to destination type. Fold it first, then
4573 restore any excess precision information, for the sake of
4574 conversion warnings. */
4576 npc
= null_pointer_constant_p (newrhs
);
4577 newrhs
= c_fully_fold (newrhs
, false, NULL
);
4578 if (rhs_semantic_type
)
4579 newrhs
= build1 (EXCESS_PRECISION_EXPR
, rhs_semantic_type
, newrhs
);
4580 newrhs
= convert_for_assignment (location
, lhstype
, newrhs
, rhs_origtype
,
4581 ic_assign
, npc
, NULL_TREE
, NULL_TREE
, 0);
4582 if (TREE_CODE (newrhs
) == ERROR_MARK
)
4583 return error_mark_node
;
4585 /* Emit ObjC write barrier, if necessary. */
4586 if (c_dialect_objc () && flag_objc_gc
)
4588 result
= objc_generate_write_barrier (lhs
, modifycode
, newrhs
);
4591 protected_set_expr_location (result
, location
);
4596 /* Scan operands. */
4598 result
= build2 (MODIFY_EXPR
, lhstype
, lhs
, newrhs
);
4599 TREE_SIDE_EFFECTS (result
) = 1;
4600 protected_set_expr_location (result
, location
);
4602 /* If we got the LHS in a different type for storing in,
4603 convert the result back to the nominal type of LHS
4604 so that the value we return always has the same type
4605 as the LHS argument. */
4607 if (olhstype
== TREE_TYPE (result
))
4610 result
= convert_for_assignment (location
, olhstype
, result
, rhs_origtype
,
4611 ic_assign
, false, NULL_TREE
, NULL_TREE
, 0);
4612 protected_set_expr_location (result
, location
);
4616 /* Convert value RHS to type TYPE as preparation for an assignment to
4617 an lvalue of type TYPE. If ORIGTYPE is not NULL_TREE, it is the
4618 original type of RHS; this differs from TREE_TYPE (RHS) for enum
4619 types. NULL_POINTER_CONSTANT says whether RHS was a null pointer
4620 constant before any folding.
4621 The real work of conversion is done by `convert'.
4622 The purpose of this function is to generate error messages
4623 for assignments that are not allowed in C.
4624 ERRTYPE says whether it is argument passing, assignment,
4625 initialization or return.
4627 LOCATION is the location of the RHS.
4628 FUNCTION is a tree for the function being called.
4629 PARMNUM is the number of the argument, for printing in error messages. */
4632 convert_for_assignment (location_t location
, tree type
, tree rhs
,
4633 tree origtype
, enum impl_conv errtype
,
4634 bool null_pointer_constant
, tree fundecl
,
4635 tree function
, int parmnum
)
4637 enum tree_code codel
= TREE_CODE (type
);
4638 tree orig_rhs
= rhs
;
4640 enum tree_code coder
;
4641 tree rname
= NULL_TREE
;
4642 bool objc_ok
= false;
4644 if (errtype
== ic_argpass
)
4647 /* Change pointer to function to the function itself for
4649 if (TREE_CODE (function
) == ADDR_EXPR
4650 && TREE_CODE (TREE_OPERAND (function
, 0)) == FUNCTION_DECL
)
4651 function
= TREE_OPERAND (function
, 0);
4653 /* Handle an ObjC selector specially for diagnostics. */
4654 selector
= objc_message_selector ();
4656 if (selector
&& parmnum
> 2)
4663 /* This macro is used to emit diagnostics to ensure that all format
4664 strings are complete sentences, visible to gettext and checked at
4666 #define WARN_FOR_ASSIGNMENT(LOCATION, OPT, AR, AS, IN, RE) \
4671 if (pedwarn (LOCATION, OPT, AR, parmnum, rname)) \
4672 inform ((fundecl && !DECL_IS_BUILTIN (fundecl)) \
4673 ? DECL_SOURCE_LOCATION (fundecl) : LOCATION, \
4674 "expected %qT but argument is of type %qT", \
4678 pedwarn (LOCATION, OPT, AS); \
4681 pedwarn (LOCATION, OPT, IN); \
4684 pedwarn (LOCATION, OPT, RE); \
4687 gcc_unreachable (); \
4691 if (TREE_CODE (rhs
) == EXCESS_PRECISION_EXPR
)
4692 rhs
= TREE_OPERAND (rhs
, 0);
4694 rhstype
= TREE_TYPE (rhs
);
4695 coder
= TREE_CODE (rhstype
);
4697 if (coder
== ERROR_MARK
)
4698 return error_mark_node
;
4700 if (c_dialect_objc ())
4723 objc_ok
= objc_compare_types (type
, rhstype
, parmno
, rname
);
4726 if (warn_cxx_compat
)
4728 tree checktype
= origtype
!= NULL_TREE
? origtype
: rhstype
;
4729 if (checktype
!= error_mark_node
4730 && TREE_CODE (type
) == ENUMERAL_TYPE
4731 && TYPE_MAIN_VARIANT (checktype
) != TYPE_MAIN_VARIANT (type
))
4733 WARN_FOR_ASSIGNMENT (input_location
, OPT_Wc___compat
,
4734 G_("enum conversion when passing argument "
4735 "%d of %qE is invalid in C++"),
4736 G_("enum conversion in assignment is "
4738 G_("enum conversion in initialization is "
4740 G_("enum conversion in return is "
4745 if (TYPE_MAIN_VARIANT (type
) == TYPE_MAIN_VARIANT (rhstype
))
4748 if (coder
== VOID_TYPE
)
4750 /* Except for passing an argument to an unprototyped function,
4751 this is a constraint violation. When passing an argument to
4752 an unprototyped function, it is compile-time undefined;
4753 making it a constraint in that case was rejected in
4755 error_at (location
, "void value not ignored as it ought to be");
4756 return error_mark_node
;
4758 rhs
= require_complete_type (rhs
);
4759 if (rhs
== error_mark_node
)
4760 return error_mark_node
;
4761 /* A type converts to a reference to it.
4762 This code doesn't fully support references, it's just for the
4763 special case of va_start and va_copy. */
4764 if (codel
== REFERENCE_TYPE
4765 && comptypes (TREE_TYPE (type
), TREE_TYPE (rhs
)) == 1)
4767 if (!lvalue_p (rhs
))
4769 error_at (location
, "cannot pass rvalue to reference parameter");
4770 return error_mark_node
;
4772 if (!c_mark_addressable (rhs
))
4773 return error_mark_node
;
4774 rhs
= build1 (ADDR_EXPR
, build_pointer_type (TREE_TYPE (rhs
)), rhs
);
4775 SET_EXPR_LOCATION (rhs
, location
);
4777 /* We already know that these two types are compatible, but they
4778 may not be exactly identical. In fact, `TREE_TYPE (type)' is
4779 likely to be __builtin_va_list and `TREE_TYPE (rhs)' is
4780 likely to be va_list, a typedef to __builtin_va_list, which
4781 is different enough that it will cause problems later. */
4782 if (TREE_TYPE (TREE_TYPE (rhs
)) != TREE_TYPE (type
))
4784 rhs
= build1 (NOP_EXPR
, build_pointer_type (TREE_TYPE (type
)), rhs
);
4785 SET_EXPR_LOCATION (rhs
, location
);
4788 rhs
= build1 (NOP_EXPR
, type
, rhs
);
4789 SET_EXPR_LOCATION (rhs
, location
);
4792 /* Some types can interconvert without explicit casts. */
4793 else if (codel
== VECTOR_TYPE
&& coder
== VECTOR_TYPE
4794 && vector_types_convertible_p (type
, TREE_TYPE (rhs
), true))
4795 return convert (type
, rhs
);
4796 /* Arithmetic types all interconvert, and enum is treated like int. */
4797 else if ((codel
== INTEGER_TYPE
|| codel
== REAL_TYPE
4798 || codel
== FIXED_POINT_TYPE
4799 || codel
== ENUMERAL_TYPE
|| codel
== COMPLEX_TYPE
4800 || codel
== BOOLEAN_TYPE
)
4801 && (coder
== INTEGER_TYPE
|| coder
== REAL_TYPE
4802 || coder
== FIXED_POINT_TYPE
4803 || coder
== ENUMERAL_TYPE
|| coder
== COMPLEX_TYPE
4804 || coder
== BOOLEAN_TYPE
))
4807 bool save
= in_late_binary_op
;
4808 if (codel
== BOOLEAN_TYPE
)
4809 in_late_binary_op
= true;
4810 ret
= convert_and_check (type
, orig_rhs
);
4811 if (codel
== BOOLEAN_TYPE
)
4812 in_late_binary_op
= save
;
4816 /* Aggregates in different TUs might need conversion. */
4817 if ((codel
== RECORD_TYPE
|| codel
== UNION_TYPE
)
4819 && comptypes (type
, rhstype
))
4820 return convert_and_check (type
, rhs
);
4822 /* Conversion to a transparent union from its member types.
4823 This applies only to function arguments. */
4824 if (codel
== UNION_TYPE
&& TYPE_TRANSPARENT_UNION (type
)
4825 && errtype
== ic_argpass
)
4827 tree memb
, marginal_memb
= NULL_TREE
;
4829 for (memb
= TYPE_FIELDS (type
); memb
; memb
= TREE_CHAIN (memb
))
4831 tree memb_type
= TREE_TYPE (memb
);
4833 if (comptypes (TYPE_MAIN_VARIANT (memb_type
),
4834 TYPE_MAIN_VARIANT (rhstype
)))
4837 if (TREE_CODE (memb_type
) != POINTER_TYPE
)
4840 if (coder
== POINTER_TYPE
)
4842 tree ttl
= TREE_TYPE (memb_type
);
4843 tree ttr
= TREE_TYPE (rhstype
);
4845 /* Any non-function converts to a [const][volatile] void *
4846 and vice versa; otherwise, targets must be the same.
4847 Meanwhile, the lhs target must have all the qualifiers of
4849 if (VOID_TYPE_P (ttl
) || VOID_TYPE_P (ttr
)
4850 || comp_target_types (location
, memb_type
, rhstype
))
4852 /* If this type won't generate any warnings, use it. */
4853 if (TYPE_QUALS (ttl
) == TYPE_QUALS (ttr
)
4854 || ((TREE_CODE (ttr
) == FUNCTION_TYPE
4855 && TREE_CODE (ttl
) == FUNCTION_TYPE
)
4856 ? ((TYPE_QUALS (ttl
) | TYPE_QUALS (ttr
))
4857 == TYPE_QUALS (ttr
))
4858 : ((TYPE_QUALS (ttl
) | TYPE_QUALS (ttr
))
4859 == TYPE_QUALS (ttl
))))
4862 /* Keep looking for a better type, but remember this one. */
4864 marginal_memb
= memb
;
4868 /* Can convert integer zero to any pointer type. */
4869 if (null_pointer_constant
)
4871 rhs
= null_pointer_node
;
4876 if (memb
|| marginal_memb
)
4880 /* We have only a marginally acceptable member type;
4881 it needs a warning. */
4882 tree ttl
= TREE_TYPE (TREE_TYPE (marginal_memb
));
4883 tree ttr
= TREE_TYPE (rhstype
);
4885 /* Const and volatile mean something different for function
4886 types, so the usual warnings are not appropriate. */
4887 if (TREE_CODE (ttr
) == FUNCTION_TYPE
4888 && TREE_CODE (ttl
) == FUNCTION_TYPE
)
4890 /* Because const and volatile on functions are
4891 restrictions that say the function will not do
4892 certain things, it is okay to use a const or volatile
4893 function where an ordinary one is wanted, but not
4895 if (TYPE_QUALS (ttl
) & ~TYPE_QUALS (ttr
))
4896 WARN_FOR_ASSIGNMENT (location
, 0,
4897 G_("passing argument %d of %qE "
4898 "makes qualified function "
4899 "pointer from unqualified"),
4900 G_("assignment makes qualified "
4901 "function pointer from "
4903 G_("initialization makes qualified "
4904 "function pointer from "
4906 G_("return makes qualified function "
4907 "pointer from unqualified"));
4909 else if (TYPE_QUALS (ttr
) & ~TYPE_QUALS (ttl
))
4910 WARN_FOR_ASSIGNMENT (location
, 0,
4911 G_("passing argument %d of %qE discards "
4912 "qualifiers from pointer target type"),
4913 G_("assignment discards qualifiers "
4914 "from pointer target type"),
4915 G_("initialization discards qualifiers "
4916 "from pointer target type"),
4917 G_("return discards qualifiers from "
4918 "pointer target type"));
4920 memb
= marginal_memb
;
4923 if (!fundecl
|| !DECL_IN_SYSTEM_HEADER (fundecl
))
4924 pedwarn (location
, OPT_pedantic
,
4925 "ISO C prohibits argument conversion to union type");
4927 rhs
= fold_convert (TREE_TYPE (memb
), rhs
);
4928 return build_constructor_single (type
, memb
, rhs
);
4932 /* Conversions among pointers */
4933 else if ((codel
== POINTER_TYPE
|| codel
== REFERENCE_TYPE
)
4934 && (coder
== codel
))
4936 tree ttl
= TREE_TYPE (type
);
4937 tree ttr
= TREE_TYPE (rhstype
);
4940 bool is_opaque_pointer
;
4941 int target_cmp
= 0; /* Cache comp_target_types () result. */
4943 if (TREE_CODE (mvl
) != ARRAY_TYPE
)
4944 mvl
= TYPE_MAIN_VARIANT (mvl
);
4945 if (TREE_CODE (mvr
) != ARRAY_TYPE
)
4946 mvr
= TYPE_MAIN_VARIANT (mvr
);
4947 /* Opaque pointers are treated like void pointers. */
4948 is_opaque_pointer
= vector_targets_convertible_p (ttl
, ttr
);
4950 /* C++ does not allow the implicit conversion void* -> T*. However,
4951 for the purpose of reducing the number of false positives, we
4952 tolerate the special case of
4956 where NULL is typically defined in C to be '(void *) 0'. */
4957 if (VOID_TYPE_P (ttr
) && rhs
!= null_pointer_node
&& !VOID_TYPE_P (ttl
))
4958 warning_at (location
, OPT_Wc___compat
,
4959 "request for implicit conversion "
4960 "from %qT to %qT not permitted in C++", rhstype
, type
);
4962 /* Check if the right-hand side has a format attribute but the
4963 left-hand side doesn't. */
4964 if (warn_missing_format_attribute
4965 && check_missing_format_attribute (type
, rhstype
))
4970 warning_at (location
, OPT_Wmissing_format_attribute
,
4971 "argument %d of %qE might be "
4972 "a candidate for a format attribute",
4976 warning_at (location
, OPT_Wmissing_format_attribute
,
4977 "assignment left-hand side might be "
4978 "a candidate for a format attribute");
4981 warning_at (location
, OPT_Wmissing_format_attribute
,
4982 "initialization left-hand side might be "
4983 "a candidate for a format attribute");
4986 warning_at (location
, OPT_Wmissing_format_attribute
,
4987 "return type might be "
4988 "a candidate for a format attribute");
4995 /* Any non-function converts to a [const][volatile] void *
4996 and vice versa; otherwise, targets must be the same.
4997 Meanwhile, the lhs target must have all the qualifiers of the rhs. */
4998 if (VOID_TYPE_P (ttl
) || VOID_TYPE_P (ttr
)
4999 || (target_cmp
= comp_target_types (location
, type
, rhstype
))
5000 || is_opaque_pointer
5001 || (c_common_unsigned_type (mvl
)
5002 == c_common_unsigned_type (mvr
)))
5005 && ((VOID_TYPE_P (ttl
) && TREE_CODE (ttr
) == FUNCTION_TYPE
)
5008 && !null_pointer_constant
5009 && TREE_CODE (ttl
) == FUNCTION_TYPE
)))
5010 WARN_FOR_ASSIGNMENT (location
, OPT_pedantic
,
5011 G_("ISO C forbids passing argument %d of "
5012 "%qE between function pointer "
5014 G_("ISO C forbids assignment between "
5015 "function pointer and %<void *%>"),
5016 G_("ISO C forbids initialization between "
5017 "function pointer and %<void *%>"),
5018 G_("ISO C forbids return between function "
5019 "pointer and %<void *%>"));
5020 /* Const and volatile mean something different for function types,
5021 so the usual warnings are not appropriate. */
5022 else if (TREE_CODE (ttr
) != FUNCTION_TYPE
5023 && TREE_CODE (ttl
) != FUNCTION_TYPE
)
5025 if (TYPE_QUALS (ttr
) & ~TYPE_QUALS (ttl
))
5027 /* Types differing only by the presence of the 'volatile'
5028 qualifier are acceptable if the 'volatile' has been added
5029 in by the Objective-C EH machinery. */
5030 if (!objc_type_quals_match (ttl
, ttr
))
5031 WARN_FOR_ASSIGNMENT (location
, 0,
5032 G_("passing argument %d of %qE discards "
5033 "qualifiers from pointer target type"),
5034 G_("assignment discards qualifiers "
5035 "from pointer target type"),
5036 G_("initialization discards qualifiers "
5037 "from pointer target type"),
5038 G_("return discards qualifiers from "
5039 "pointer target type"));
5041 /* If this is not a case of ignoring a mismatch in signedness,
5043 else if (VOID_TYPE_P (ttl
) || VOID_TYPE_P (ttr
)
5046 /* If there is a mismatch, do warn. */
5047 else if (warn_pointer_sign
)
5048 WARN_FOR_ASSIGNMENT (location
, OPT_Wpointer_sign
,
5049 G_("pointer targets in passing argument "
5050 "%d of %qE differ in signedness"),
5051 G_("pointer targets in assignment "
5052 "differ in signedness"),
5053 G_("pointer targets in initialization "
5054 "differ in signedness"),
5055 G_("pointer targets in return differ "
5058 else if (TREE_CODE (ttl
) == FUNCTION_TYPE
5059 && TREE_CODE (ttr
) == FUNCTION_TYPE
)
5061 /* Because const and volatile on functions are restrictions
5062 that say the function will not do certain things,
5063 it is okay to use a const or volatile function
5064 where an ordinary one is wanted, but not vice-versa. */
5065 if (TYPE_QUALS (ttl
) & ~TYPE_QUALS (ttr
))
5066 WARN_FOR_ASSIGNMENT (location
, 0,
5067 G_("passing argument %d of %qE makes "
5068 "qualified function pointer "
5069 "from unqualified"),
5070 G_("assignment makes qualified function "
5071 "pointer from unqualified"),
5072 G_("initialization makes qualified "
5073 "function pointer from unqualified"),
5074 G_("return makes qualified function "
5075 "pointer from unqualified"));
5079 /* Avoid warning about the volatile ObjC EH puts on decls. */
5081 WARN_FOR_ASSIGNMENT (location
, 0,
5082 G_("passing argument %d of %qE from "
5083 "incompatible pointer type"),
5084 G_("assignment from incompatible pointer type"),
5085 G_("initialization from incompatible "
5087 G_("return from incompatible pointer type"));
5089 return convert (type
, rhs
);
5091 else if (codel
== POINTER_TYPE
&& coder
== ARRAY_TYPE
)
5093 /* ??? This should not be an error when inlining calls to
5094 unprototyped functions. */
5095 error_at (location
, "invalid use of non-lvalue array");
5096 return error_mark_node
;
5098 else if (codel
== POINTER_TYPE
&& coder
== INTEGER_TYPE
)
5100 /* An explicit constant 0 can convert to a pointer,
5101 or one that results from arithmetic, even including
5102 a cast to integer type. */
5103 if (!null_pointer_constant
)
5104 WARN_FOR_ASSIGNMENT (location
, 0,
5105 G_("passing argument %d of %qE makes "
5106 "pointer from integer without a cast"),
5107 G_("assignment makes pointer from integer "
5109 G_("initialization makes pointer from "
5110 "integer without a cast"),
5111 G_("return makes pointer from integer "
5114 return convert (type
, rhs
);
5116 else if (codel
== INTEGER_TYPE
&& coder
== POINTER_TYPE
)
5118 WARN_FOR_ASSIGNMENT (location
, 0,
5119 G_("passing argument %d of %qE makes integer "
5120 "from pointer without a cast"),
5121 G_("assignment makes integer from pointer "
5123 G_("initialization makes integer from pointer "
5125 G_("return makes integer from pointer "
5127 return convert (type
, rhs
);
5129 else if (codel
== BOOLEAN_TYPE
&& coder
== POINTER_TYPE
)
5132 bool save
= in_late_binary_op
;
5133 in_late_binary_op
= true;
5134 ret
= convert (type
, rhs
);
5135 in_late_binary_op
= save
;
5142 error_at (location
, "incompatible type for argument %d of %qE", parmnum
, rname
);
5143 inform ((fundecl
&& !DECL_IS_BUILTIN (fundecl
))
5144 ? DECL_SOURCE_LOCATION (fundecl
) : input_location
,
5145 "expected %qT but argument is of type %qT", type
, rhstype
);
5148 error_at (location
, "incompatible types when assigning to type %qT from "
5149 "type %qT", type
, rhstype
);
5153 "incompatible types when initializing type %qT using type %qT",
5158 "incompatible types when returning type %qT but %qT was "
5159 "expected", rhstype
, type
);
5165 return error_mark_node
;
5168 /* If VALUE is a compound expr all of whose expressions are constant, then
5169 return its value. Otherwise, return error_mark_node.
5171 This is for handling COMPOUND_EXPRs as initializer elements
5172 which is allowed with a warning when -pedantic is specified. */
5175 valid_compound_expr_initializer (tree value
, tree endtype
)
5177 if (TREE_CODE (value
) == COMPOUND_EXPR
)
5179 if (valid_compound_expr_initializer (TREE_OPERAND (value
, 0), endtype
)
5181 return error_mark_node
;
5182 return valid_compound_expr_initializer (TREE_OPERAND (value
, 1),
5185 else if (!initializer_constant_valid_p (value
, endtype
))
5186 return error_mark_node
;
5191 /* Perform appropriate conversions on the initial value of a variable,
5192 store it in the declaration DECL,
5193 and print any error messages that are appropriate.
5194 If ORIGTYPE is not NULL_TREE, it is the original type of INIT.
5195 If the init is invalid, store an ERROR_MARK.
5197 INIT_LOC is the location of the initial value. */
5200 store_init_value (location_t init_loc
, tree decl
, tree init
, tree origtype
)
5205 /* If variable's type was invalidly declared, just ignore it. */
5207 type
= TREE_TYPE (decl
);
5208 if (TREE_CODE (type
) == ERROR_MARK
)
5211 /* Digest the specified initializer into an expression. */
5214 npc
= null_pointer_constant_p (init
);
5215 value
= digest_init (init_loc
, type
, init
, origtype
, npc
,
5216 true, TREE_STATIC (decl
));
5218 /* Store the expression if valid; else report error. */
5220 if (!in_system_header
5221 && AGGREGATE_TYPE_P (TREE_TYPE (decl
)) && !TREE_STATIC (decl
))
5222 warning (OPT_Wtraditional
, "traditional C rejects automatic "
5223 "aggregate initialization");
5225 DECL_INITIAL (decl
) = value
;
5227 /* ANSI wants warnings about out-of-range constant initializers. */
5228 STRIP_TYPE_NOPS (value
);
5229 if (TREE_STATIC (decl
))
5230 constant_expression_warning (value
);
5232 /* Check if we need to set array size from compound literal size. */
5233 if (TREE_CODE (type
) == ARRAY_TYPE
5234 && TYPE_DOMAIN (type
) == 0
5235 && value
!= error_mark_node
)
5237 tree inside_init
= init
;
5239 STRIP_TYPE_NOPS (inside_init
);
5240 inside_init
= fold (inside_init
);
5242 if (TREE_CODE (inside_init
) == COMPOUND_LITERAL_EXPR
)
5244 tree cldecl
= COMPOUND_LITERAL_EXPR_DECL (inside_init
);
5246 if (TYPE_DOMAIN (TREE_TYPE (cldecl
)))
5248 /* For int foo[] = (int [3]){1}; we need to set array size
5249 now since later on array initializer will be just the
5250 brace enclosed list of the compound literal. */
5251 type
= build_distinct_type_copy (TYPE_MAIN_VARIANT (type
));
5252 TREE_TYPE (decl
) = type
;
5253 TYPE_DOMAIN (type
) = TYPE_DOMAIN (TREE_TYPE (cldecl
));
5255 layout_decl (cldecl
, 0);
5261 /* Methods for storing and printing names for error messages. */
5263 /* Implement a spelling stack that allows components of a name to be pushed
5264 and popped. Each element on the stack is this structure. */
5271 unsigned HOST_WIDE_INT i
;
5276 #define SPELLING_STRING 1
5277 #define SPELLING_MEMBER 2
5278 #define SPELLING_BOUNDS 3
5280 static struct spelling
*spelling
; /* Next stack element (unused). */
5281 static struct spelling
*spelling_base
; /* Spelling stack base. */
5282 static int spelling_size
; /* Size of the spelling stack. */
5284 /* Macros to save and restore the spelling stack around push_... functions.
5285 Alternative to SAVE_SPELLING_STACK. */
5287 #define SPELLING_DEPTH() (spelling - spelling_base)
5288 #define RESTORE_SPELLING_DEPTH(DEPTH) (spelling = spelling_base + (DEPTH))
5290 /* Push an element on the spelling stack with type KIND and assign VALUE
5293 #define PUSH_SPELLING(KIND, VALUE, MEMBER) \
5295 int depth = SPELLING_DEPTH (); \
5297 if (depth >= spelling_size) \
5299 spelling_size += 10; \
5300 spelling_base = XRESIZEVEC (struct spelling, spelling_base, \
5302 RESTORE_SPELLING_DEPTH (depth); \
5305 spelling->kind = (KIND); \
5306 spelling->MEMBER = (VALUE); \
5310 /* Push STRING on the stack. Printed literally. */
5313 push_string (const char *string
)
5315 PUSH_SPELLING (SPELLING_STRING
, string
, u
.s
);
5318 /* Push a member name on the stack. Printed as '.' STRING. */
5321 push_member_name (tree decl
)
5323 const char *const string
5325 ? identifier_to_locale (IDENTIFIER_POINTER (DECL_NAME (decl
)))
5326 : _("<anonymous>"));
5327 PUSH_SPELLING (SPELLING_MEMBER
, string
, u
.s
);
5330 /* Push an array bounds on the stack. Printed as [BOUNDS]. */
5333 push_array_bounds (unsigned HOST_WIDE_INT bounds
)
5335 PUSH_SPELLING (SPELLING_BOUNDS
, bounds
, u
.i
);
5338 /* Compute the maximum size in bytes of the printed spelling. */
5341 spelling_length (void)
5346 for (p
= spelling_base
; p
< spelling
; p
++)
5348 if (p
->kind
== SPELLING_BOUNDS
)
5351 size
+= strlen (p
->u
.s
) + 1;
5357 /* Print the spelling to BUFFER and return it. */
5360 print_spelling (char *buffer
)
5365 for (p
= spelling_base
; p
< spelling
; p
++)
5366 if (p
->kind
== SPELLING_BOUNDS
)
5368 sprintf (d
, "[" HOST_WIDE_INT_PRINT_UNSIGNED
"]", p
->u
.i
);
5374 if (p
->kind
== SPELLING_MEMBER
)
5376 for (s
= p
->u
.s
; (*d
= *s
++); d
++)
5383 /* Issue an error message for a bad initializer component.
5384 MSGID identifies the message.
5385 The component name is taken from the spelling stack. */
5388 error_init (const char *msgid
)
5392 error ("%s", _(msgid
));
5393 ofwhat
= print_spelling ((char *) alloca (spelling_length () + 1));
5395 error ("(near initialization for %qs)", ofwhat
);
5398 /* Issue a pedantic warning for a bad initializer component. OPT is
5399 the option OPT_* (from options.h) controlling this warning or 0 if
5400 it is unconditionally given. MSGID identifies the message. The
5401 component name is taken from the spelling stack. */
5404 pedwarn_init (location_t location
, int opt
, const char *msgid
)
5408 pedwarn (location
, opt
, "%s", _(msgid
));
5409 ofwhat
= print_spelling ((char *) alloca (spelling_length () + 1));
5411 pedwarn (location
, opt
, "(near initialization for %qs)", ofwhat
);
5414 /* Issue a warning for a bad initializer component.
5416 OPT is the OPT_W* value corresponding to the warning option that
5417 controls this warning. MSGID identifies the message. The
5418 component name is taken from the spelling stack. */
5421 warning_init (int opt
, const char *msgid
)
5425 warning (opt
, "%s", _(msgid
));
5426 ofwhat
= print_spelling ((char *) alloca (spelling_length () + 1));
5428 warning (opt
, "(near initialization for %qs)", ofwhat
);
5431 /* If TYPE is an array type and EXPR is a parenthesized string
5432 constant, warn if pedantic that EXPR is being used to initialize an
5433 object of type TYPE. */
5436 maybe_warn_string_init (tree type
, struct c_expr expr
)
5439 && TREE_CODE (type
) == ARRAY_TYPE
5440 && TREE_CODE (expr
.value
) == STRING_CST
5441 && expr
.original_code
!= STRING_CST
)
5442 pedwarn_init (input_location
, OPT_pedantic
,
5443 "array initialized from parenthesized string constant");
5446 /* Digest the parser output INIT as an initializer for type TYPE.
5447 Return a C expression of type TYPE to represent the initial value.
5449 If ORIGTYPE is not NULL_TREE, it is the original type of INIT.
5451 NULL_POINTER_CONSTANT is true if INIT is a null pointer constant.
5453 If INIT is a string constant, STRICT_STRING is true if it is
5454 unparenthesized or we should not warn here for it being parenthesized.
5455 For other types of INIT, STRICT_STRING is not used.
5457 INIT_LOC is the location of the INIT.
5459 REQUIRE_CONSTANT requests an error if non-constant initializers or
5460 elements are seen. */
5463 digest_init (location_t init_loc
, tree type
, tree init
, tree origtype
,
5464 bool null_pointer_constant
, bool strict_string
,
5465 int require_constant
)
5467 enum tree_code code
= TREE_CODE (type
);
5468 tree inside_init
= init
;
5469 tree semantic_type
= NULL_TREE
;
5470 bool maybe_const
= true;
5472 if (type
== error_mark_node
5474 || init
== error_mark_node
5475 || TREE_TYPE (init
) == error_mark_node
)
5476 return error_mark_node
;
5478 STRIP_TYPE_NOPS (inside_init
);
5480 if (TREE_CODE (inside_init
) == EXCESS_PRECISION_EXPR
)
5482 semantic_type
= TREE_TYPE (inside_init
);
5483 inside_init
= TREE_OPERAND (inside_init
, 0);
5485 inside_init
= c_fully_fold (inside_init
, require_constant
, &maybe_const
);
5486 inside_init
= decl_constant_value_for_optimization (inside_init
);
5488 /* Initialization of an array of chars from a string constant
5489 optionally enclosed in braces. */
5491 if (code
== ARRAY_TYPE
&& inside_init
5492 && TREE_CODE (inside_init
) == STRING_CST
)
5494 tree typ1
= TYPE_MAIN_VARIANT (TREE_TYPE (type
));
5495 /* Note that an array could be both an array of character type
5496 and an array of wchar_t if wchar_t is signed char or unsigned
5498 bool char_array
= (typ1
== char_type_node
5499 || typ1
== signed_char_type_node
5500 || typ1
== unsigned_char_type_node
);
5501 bool wchar_array
= !!comptypes (typ1
, wchar_type_node
);
5502 bool char16_array
= !!comptypes (typ1
, char16_type_node
);
5503 bool char32_array
= !!comptypes (typ1
, char32_type_node
);
5505 if (char_array
|| wchar_array
|| char16_array
|| char32_array
)
5508 tree typ2
= TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (inside_init
)));
5509 expr
.value
= inside_init
;
5510 expr
.original_code
= (strict_string
? STRING_CST
: ERROR_MARK
);
5511 expr
.original_type
= NULL
;
5512 maybe_warn_string_init (type
, expr
);
5514 if (TYPE_DOMAIN (type
) && !TYPE_MAX_VALUE (TYPE_DOMAIN (type
)))
5515 pedwarn_init (init_loc
, OPT_pedantic
,
5516 "initialization of a flexible array member");
5518 if (comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (inside_init
)),
5519 TYPE_MAIN_VARIANT (type
)))
5524 if (typ2
!= char_type_node
)
5526 error_init ("char-array initialized from wide string");
5527 return error_mark_node
;
5532 if (typ2
== char_type_node
)
5534 error_init ("wide character array initialized from non-wide "
5536 return error_mark_node
;
5538 else if (!comptypes(typ1
, typ2
))
5540 error_init ("wide character array initialized from "
5541 "incompatible wide string");
5542 return error_mark_node
;
5546 TREE_TYPE (inside_init
) = type
;
5547 if (TYPE_DOMAIN (type
) != 0
5548 && TYPE_SIZE (type
) != 0
5549 && TREE_CODE (TYPE_SIZE (type
)) == INTEGER_CST
)
5551 unsigned HOST_WIDE_INT len
= TREE_STRING_LENGTH (inside_init
);
5553 /* Subtract the size of a single (possibly wide) character
5554 because it's ok to ignore the terminating null char
5555 that is counted in the length of the constant. */
5556 if (0 > compare_tree_int (TYPE_SIZE_UNIT (type
),
5558 - (TYPE_PRECISION (typ1
)
5560 pedwarn_init (init_loc
, 0,
5561 ("initializer-string for array of chars "
5563 else if (warn_cxx_compat
5564 && 0 > compare_tree_int (TYPE_SIZE_UNIT (type
), len
))
5565 warning_at (init_loc
, OPT_Wc___compat
,
5566 ("initializer-string for array chars "
5567 "is too long for C++"));
5572 else if (INTEGRAL_TYPE_P (typ1
))
5574 error_init ("array of inappropriate type initialized "
5575 "from string constant");
5576 return error_mark_node
;
5580 /* Build a VECTOR_CST from a *constant* vector constructor. If the
5581 vector constructor is not constant (e.g. {1,2,3,foo()}) then punt
5582 below and handle as a constructor. */
5583 if (code
== VECTOR_TYPE
5584 && TREE_CODE (TREE_TYPE (inside_init
)) == VECTOR_TYPE
5585 && vector_types_convertible_p (TREE_TYPE (inside_init
), type
, true)
5586 && TREE_CONSTANT (inside_init
))
5588 if (TREE_CODE (inside_init
) == VECTOR_CST
5589 && comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (inside_init
)),
5590 TYPE_MAIN_VARIANT (type
)))
5593 if (TREE_CODE (inside_init
) == CONSTRUCTOR
)
5595 unsigned HOST_WIDE_INT ix
;
5597 bool constant_p
= true;
5599 /* Iterate through elements and check if all constructor
5600 elements are *_CSTs. */
5601 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (inside_init
), ix
, value
)
5602 if (!CONSTANT_CLASS_P (value
))
5609 return build_vector_from_ctor (type
,
5610 CONSTRUCTOR_ELTS (inside_init
));
5614 if (warn_sequence_point
)
5615 verify_sequence_points (inside_init
);
5617 /* Any type can be initialized
5618 from an expression of the same type, optionally with braces. */
5620 if (inside_init
&& TREE_TYPE (inside_init
) != 0
5621 && (comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (inside_init
)),
5622 TYPE_MAIN_VARIANT (type
))
5623 || (code
== ARRAY_TYPE
5624 && comptypes (TREE_TYPE (inside_init
), type
))
5625 || (code
== VECTOR_TYPE
5626 && comptypes (TREE_TYPE (inside_init
), type
))
5627 || (code
== POINTER_TYPE
5628 && TREE_CODE (TREE_TYPE (inside_init
)) == ARRAY_TYPE
5629 && comptypes (TREE_TYPE (TREE_TYPE (inside_init
)),
5630 TREE_TYPE (type
)))))
5632 if (code
== POINTER_TYPE
)
5634 if (TREE_CODE (TREE_TYPE (inside_init
)) == ARRAY_TYPE
)
5636 if (TREE_CODE (inside_init
) == STRING_CST
5637 || TREE_CODE (inside_init
) == COMPOUND_LITERAL_EXPR
)
5638 inside_init
= array_to_pointer_conversion
5639 (init_loc
, inside_init
);
5642 error_init ("invalid use of non-lvalue array");
5643 return error_mark_node
;
5648 if (code
== VECTOR_TYPE
)
5649 /* Although the types are compatible, we may require a
5651 inside_init
= convert (type
, inside_init
);
5653 if (require_constant
5654 && (code
== VECTOR_TYPE
|| !flag_isoc99
)
5655 && TREE_CODE (inside_init
) == COMPOUND_LITERAL_EXPR
)
5657 /* As an extension, allow initializing objects with static storage
5658 duration with compound literals (which are then treated just as
5659 the brace enclosed list they contain). Also allow this for
5660 vectors, as we can only assign them with compound literals. */
5661 tree decl
= COMPOUND_LITERAL_EXPR_DECL (inside_init
);
5662 inside_init
= DECL_INITIAL (decl
);
5665 if (code
== ARRAY_TYPE
&& TREE_CODE (inside_init
) != STRING_CST
5666 && TREE_CODE (inside_init
) != CONSTRUCTOR
)
5668 error_init ("array initialized from non-constant array expression");
5669 return error_mark_node
;
5672 /* Compound expressions can only occur here if -pedantic or
5673 -pedantic-errors is specified. In the later case, we always want
5674 an error. In the former case, we simply want a warning. */
5675 if (require_constant
&& pedantic
5676 && TREE_CODE (inside_init
) == COMPOUND_EXPR
)
5679 = valid_compound_expr_initializer (inside_init
,
5680 TREE_TYPE (inside_init
));
5681 if (inside_init
== error_mark_node
)
5682 error_init ("initializer element is not constant");
5684 pedwarn_init (init_loc
, OPT_pedantic
,
5685 "initializer element is not constant");
5686 if (flag_pedantic_errors
)
5687 inside_init
= error_mark_node
;
5689 else if (require_constant
5690 && !initializer_constant_valid_p (inside_init
,
5691 TREE_TYPE (inside_init
)))
5693 error_init ("initializer element is not constant");
5694 inside_init
= error_mark_node
;
5696 else if (require_constant
&& !maybe_const
)
5697 pedwarn_init (init_loc
, 0,
5698 "initializer element is not a constant expression");
5700 /* Added to enable additional -Wmissing-format-attribute warnings. */
5701 if (TREE_CODE (TREE_TYPE (inside_init
)) == POINTER_TYPE
)
5702 inside_init
= convert_for_assignment (init_loc
, type
, inside_init
,
5704 ic_init
, null_pointer_constant
,
5705 NULL_TREE
, NULL_TREE
, 0);
5709 /* Handle scalar types, including conversions. */
5711 if (code
== INTEGER_TYPE
|| code
== REAL_TYPE
|| code
== FIXED_POINT_TYPE
5712 || code
== POINTER_TYPE
|| code
== ENUMERAL_TYPE
|| code
== BOOLEAN_TYPE
5713 || code
== COMPLEX_TYPE
|| code
== VECTOR_TYPE
)
5715 if (TREE_CODE (TREE_TYPE (init
)) == ARRAY_TYPE
5716 && (TREE_CODE (init
) == STRING_CST
5717 || TREE_CODE (init
) == COMPOUND_LITERAL_EXPR
))
5718 inside_init
= init
= array_to_pointer_conversion (init_loc
, init
);
5720 inside_init
= build1 (EXCESS_PRECISION_EXPR
, semantic_type
,
5723 = convert_for_assignment (init_loc
, type
, inside_init
, origtype
,
5724 ic_init
, null_pointer_constant
,
5725 NULL_TREE
, NULL_TREE
, 0);
5727 /* Check to see if we have already given an error message. */
5728 if (inside_init
== error_mark_node
)
5730 else if (require_constant
&& !TREE_CONSTANT (inside_init
))
5732 error_init ("initializer element is not constant");
5733 inside_init
= error_mark_node
;
5735 else if (require_constant
5736 && !initializer_constant_valid_p (inside_init
,
5737 TREE_TYPE (inside_init
)))
5739 error_init ("initializer element is not computable at load time");
5740 inside_init
= error_mark_node
;
5742 else if (require_constant
&& !maybe_const
)
5743 pedwarn_init (init_loc
, 0,
5744 "initializer element is not a constant expression");
5749 /* Come here only for records and arrays. */
5751 if (COMPLETE_TYPE_P (type
) && TREE_CODE (TYPE_SIZE (type
)) != INTEGER_CST
)
5753 error_init ("variable-sized object may not be initialized");
5754 return error_mark_node
;
5757 error_init ("invalid initializer");
5758 return error_mark_node
;
5761 /* Handle initializers that use braces. */
5763 /* Type of object we are accumulating a constructor for.
5764 This type is always a RECORD_TYPE, UNION_TYPE or ARRAY_TYPE. */
5765 static tree constructor_type
;
5767 /* For a RECORD_TYPE or UNION_TYPE, this is the chain of fields
5769 static tree constructor_fields
;
5771 /* For an ARRAY_TYPE, this is the specified index
5772 at which to store the next element we get. */
5773 static tree constructor_index
;
5775 /* For an ARRAY_TYPE, this is the maximum index. */
5776 static tree constructor_max_index
;
5778 /* For a RECORD_TYPE, this is the first field not yet written out. */
5779 static tree constructor_unfilled_fields
;
5781 /* For an ARRAY_TYPE, this is the index of the first element
5782 not yet written out. */
5783 static tree constructor_unfilled_index
;
5785 /* In a RECORD_TYPE, the byte index of the next consecutive field.
5786 This is so we can generate gaps between fields, when appropriate. */
5787 static tree constructor_bit_index
;
5789 /* If we are saving up the elements rather than allocating them,
5790 this is the list of elements so far (in reverse order,
5791 most recent first). */
5792 static VEC(constructor_elt
,gc
) *constructor_elements
;
5794 /* 1 if constructor should be incrementally stored into a constructor chain,
5795 0 if all the elements should be kept in AVL tree. */
5796 static int constructor_incremental
;
5798 /* 1 if so far this constructor's elements are all compile-time constants. */
5799 static int constructor_constant
;
5801 /* 1 if so far this constructor's elements are all valid address constants. */
5802 static int constructor_simple
;
5804 /* 1 if this constructor has an element that cannot be part of a
5805 constant expression. */
5806 static int constructor_nonconst
;
5808 /* 1 if this constructor is erroneous so far. */
5809 static int constructor_erroneous
;
5811 /* Structure for managing pending initializer elements, organized as an
5816 struct init_node
*left
, *right
;
5817 struct init_node
*parent
;
5824 /* Tree of pending elements at this constructor level.
5825 These are elements encountered out of order
5826 which belong at places we haven't reached yet in actually
5828 Will never hold tree nodes across GC runs. */
5829 static struct init_node
*constructor_pending_elts
;
5831 /* The SPELLING_DEPTH of this constructor. */
5832 static int constructor_depth
;
5834 /* DECL node for which an initializer is being read.
5835 0 means we are reading a constructor expression
5836 such as (struct foo) {...}. */
5837 static tree constructor_decl
;
5839 /* Nonzero if this is an initializer for a top-level decl. */
5840 static int constructor_top_level
;
5842 /* Nonzero if there were any member designators in this initializer. */
5843 static int constructor_designated
;
5845 /* Nesting depth of designator list. */
5846 static int designator_depth
;
5848 /* Nonzero if there were diagnosed errors in this designator list. */
5849 static int designator_erroneous
;
5852 /* This stack has a level for each implicit or explicit level of
5853 structuring in the initializer, including the outermost one. It
5854 saves the values of most of the variables above. */
5856 struct constructor_range_stack
;
5858 struct constructor_stack
5860 struct constructor_stack
*next
;
5865 tree unfilled_index
;
5866 tree unfilled_fields
;
5868 VEC(constructor_elt
,gc
) *elements
;
5869 struct init_node
*pending_elts
;
5872 /* If value nonzero, this value should replace the entire
5873 constructor at this level. */
5874 struct c_expr replacement_value
;
5875 struct constructor_range_stack
*range_stack
;
5886 static struct constructor_stack
*constructor_stack
;
5888 /* This stack represents designators from some range designator up to
5889 the last designator in the list. */
5891 struct constructor_range_stack
5893 struct constructor_range_stack
*next
, *prev
;
5894 struct constructor_stack
*stack
;
5901 static struct constructor_range_stack
*constructor_range_stack
;
5903 /* This stack records separate initializers that are nested.
5904 Nested initializers can't happen in ANSI C, but GNU C allows them
5905 in cases like { ... (struct foo) { ... } ... }. */
5907 struct initializer_stack
5909 struct initializer_stack
*next
;
5911 struct constructor_stack
*constructor_stack
;
5912 struct constructor_range_stack
*constructor_range_stack
;
5913 VEC(constructor_elt
,gc
) *elements
;
5914 struct spelling
*spelling
;
5915 struct spelling
*spelling_base
;
5918 char require_constant_value
;
5919 char require_constant_elements
;
5922 static struct initializer_stack
*initializer_stack
;
5924 /* Prepare to parse and output the initializer for variable DECL. */
5927 start_init (tree decl
, tree asmspec_tree ATTRIBUTE_UNUSED
, int top_level
)
5930 struct initializer_stack
*p
= XNEW (struct initializer_stack
);
5932 p
->decl
= constructor_decl
;
5933 p
->require_constant_value
= require_constant_value
;
5934 p
->require_constant_elements
= require_constant_elements
;
5935 p
->constructor_stack
= constructor_stack
;
5936 p
->constructor_range_stack
= constructor_range_stack
;
5937 p
->elements
= constructor_elements
;
5938 p
->spelling
= spelling
;
5939 p
->spelling_base
= spelling_base
;
5940 p
->spelling_size
= spelling_size
;
5941 p
->top_level
= constructor_top_level
;
5942 p
->next
= initializer_stack
;
5943 initializer_stack
= p
;
5945 constructor_decl
= decl
;
5946 constructor_designated
= 0;
5947 constructor_top_level
= top_level
;
5949 if (decl
!= 0 && decl
!= error_mark_node
)
5951 require_constant_value
= TREE_STATIC (decl
);
5952 require_constant_elements
5953 = ((TREE_STATIC (decl
) || (pedantic
&& !flag_isoc99
))
5954 /* For a scalar, you can always use any value to initialize,
5955 even within braces. */
5956 && (TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
5957 || TREE_CODE (TREE_TYPE (decl
)) == RECORD_TYPE
5958 || TREE_CODE (TREE_TYPE (decl
)) == UNION_TYPE
5959 || TREE_CODE (TREE_TYPE (decl
)) == QUAL_UNION_TYPE
));
5960 locus
= identifier_to_locale (IDENTIFIER_POINTER (DECL_NAME (decl
)));
5964 require_constant_value
= 0;
5965 require_constant_elements
= 0;
5966 locus
= _("(anonymous)");
5969 constructor_stack
= 0;
5970 constructor_range_stack
= 0;
5972 missing_braces_mentioned
= 0;
5976 RESTORE_SPELLING_DEPTH (0);
5979 push_string (locus
);
5985 struct initializer_stack
*p
= initializer_stack
;
5987 /* Free the whole constructor stack of this initializer. */
5988 while (constructor_stack
)
5990 struct constructor_stack
*q
= constructor_stack
;
5991 constructor_stack
= q
->next
;
5995 gcc_assert (!constructor_range_stack
);
5997 /* Pop back to the data of the outer initializer (if any). */
5998 free (spelling_base
);
6000 constructor_decl
= p
->decl
;
6001 require_constant_value
= p
->require_constant_value
;
6002 require_constant_elements
= p
->require_constant_elements
;
6003 constructor_stack
= p
->constructor_stack
;
6004 constructor_range_stack
= p
->constructor_range_stack
;
6005 constructor_elements
= p
->elements
;
6006 spelling
= p
->spelling
;
6007 spelling_base
= p
->spelling_base
;
6008 spelling_size
= p
->spelling_size
;
6009 constructor_top_level
= p
->top_level
;
6010 initializer_stack
= p
->next
;
6014 /* Call here when we see the initializer is surrounded by braces.
6015 This is instead of a call to push_init_level;
6016 it is matched by a call to pop_init_level.
6018 TYPE is the type to initialize, for a constructor expression.
6019 For an initializer for a decl, TYPE is zero. */
6022 really_start_incremental_init (tree type
)
6024 struct constructor_stack
*p
= XNEW (struct constructor_stack
);
6027 type
= TREE_TYPE (constructor_decl
);
6029 if (TREE_CODE (type
) == VECTOR_TYPE
6030 && TYPE_VECTOR_OPAQUE (type
))
6031 error ("opaque vector types cannot be initialized");
6033 p
->type
= constructor_type
;
6034 p
->fields
= constructor_fields
;
6035 p
->index
= constructor_index
;
6036 p
->max_index
= constructor_max_index
;
6037 p
->unfilled_index
= constructor_unfilled_index
;
6038 p
->unfilled_fields
= constructor_unfilled_fields
;
6039 p
->bit_index
= constructor_bit_index
;
6040 p
->elements
= constructor_elements
;
6041 p
->constant
= constructor_constant
;
6042 p
->simple
= constructor_simple
;
6043 p
->nonconst
= constructor_nonconst
;
6044 p
->erroneous
= constructor_erroneous
;
6045 p
->pending_elts
= constructor_pending_elts
;
6046 p
->depth
= constructor_depth
;
6047 p
->replacement_value
.value
= 0;
6048 p
->replacement_value
.original_code
= ERROR_MARK
;
6049 p
->replacement_value
.original_type
= NULL
;
6053 p
->incremental
= constructor_incremental
;
6054 p
->designated
= constructor_designated
;
6056 constructor_stack
= p
;
6058 constructor_constant
= 1;
6059 constructor_simple
= 1;
6060 constructor_nonconst
= 0;
6061 constructor_depth
= SPELLING_DEPTH ();
6062 constructor_elements
= 0;
6063 constructor_pending_elts
= 0;
6064 constructor_type
= type
;
6065 constructor_incremental
= 1;
6066 constructor_designated
= 0;
6067 designator_depth
= 0;
6068 designator_erroneous
= 0;
6070 if (TREE_CODE (constructor_type
) == RECORD_TYPE
6071 || TREE_CODE (constructor_type
) == UNION_TYPE
)
6073 constructor_fields
= TYPE_FIELDS (constructor_type
);
6074 /* Skip any nameless bit fields at the beginning. */
6075 while (constructor_fields
!= 0 && DECL_C_BIT_FIELD (constructor_fields
)
6076 && DECL_NAME (constructor_fields
) == 0)
6077 constructor_fields
= TREE_CHAIN (constructor_fields
);
6079 constructor_unfilled_fields
= constructor_fields
;
6080 constructor_bit_index
= bitsize_zero_node
;
6082 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
6084 if (TYPE_DOMAIN (constructor_type
))
6086 constructor_max_index
6087 = TYPE_MAX_VALUE (TYPE_DOMAIN (constructor_type
));
6089 /* Detect non-empty initializations of zero-length arrays. */
6090 if (constructor_max_index
== NULL_TREE
6091 && TYPE_SIZE (constructor_type
))
6092 constructor_max_index
= build_int_cst (NULL_TREE
, -1);
6094 /* constructor_max_index needs to be an INTEGER_CST. Attempts
6095 to initialize VLAs will cause a proper error; avoid tree
6096 checking errors as well by setting a safe value. */
6097 if (constructor_max_index
6098 && TREE_CODE (constructor_max_index
) != INTEGER_CST
)
6099 constructor_max_index
= build_int_cst (NULL_TREE
, -1);
6102 = convert (bitsizetype
,
6103 TYPE_MIN_VALUE (TYPE_DOMAIN (constructor_type
)));
6107 constructor_index
= bitsize_zero_node
;
6108 constructor_max_index
= NULL_TREE
;
6111 constructor_unfilled_index
= constructor_index
;
6113 else if (TREE_CODE (constructor_type
) == VECTOR_TYPE
)
6115 /* Vectors are like simple fixed-size arrays. */
6116 constructor_max_index
=
6117 build_int_cst (NULL_TREE
, TYPE_VECTOR_SUBPARTS (constructor_type
) - 1);
6118 constructor_index
= bitsize_zero_node
;
6119 constructor_unfilled_index
= constructor_index
;
6123 /* Handle the case of int x = {5}; */
6124 constructor_fields
= constructor_type
;
6125 constructor_unfilled_fields
= constructor_type
;
6129 /* Push down into a subobject, for initialization.
6130 If this is for an explicit set of braces, IMPLICIT is 0.
6131 If it is because the next element belongs at a lower level,
6132 IMPLICIT is 1 (or 2 if the push is because of designator list). */
6135 push_init_level (int implicit
)
6137 struct constructor_stack
*p
;
6138 tree value
= NULL_TREE
;
6140 /* If we've exhausted any levels that didn't have braces,
6141 pop them now. If implicit == 1, this will have been done in
6142 process_init_element; do not repeat it here because in the case
6143 of excess initializers for an empty aggregate this leads to an
6144 infinite cycle of popping a level and immediately recreating
6148 while (constructor_stack
->implicit
)
6150 if ((TREE_CODE (constructor_type
) == RECORD_TYPE
6151 || TREE_CODE (constructor_type
) == UNION_TYPE
)
6152 && constructor_fields
== 0)
6153 process_init_element (pop_init_level (1), true);
6154 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
6155 && constructor_max_index
6156 && tree_int_cst_lt (constructor_max_index
,
6158 process_init_element (pop_init_level (1), true);
6164 /* Unless this is an explicit brace, we need to preserve previous
6168 if ((TREE_CODE (constructor_type
) == RECORD_TYPE
6169 || TREE_CODE (constructor_type
) == UNION_TYPE
)
6170 && constructor_fields
)
6171 value
= find_init_member (constructor_fields
);
6172 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
6173 value
= find_init_member (constructor_index
);
6176 p
= XNEW (struct constructor_stack
);
6177 p
->type
= constructor_type
;
6178 p
->fields
= constructor_fields
;
6179 p
->index
= constructor_index
;
6180 p
->max_index
= constructor_max_index
;
6181 p
->unfilled_index
= constructor_unfilled_index
;
6182 p
->unfilled_fields
= constructor_unfilled_fields
;
6183 p
->bit_index
= constructor_bit_index
;
6184 p
->elements
= constructor_elements
;
6185 p
->constant
= constructor_constant
;
6186 p
->simple
= constructor_simple
;
6187 p
->nonconst
= constructor_nonconst
;
6188 p
->erroneous
= constructor_erroneous
;
6189 p
->pending_elts
= constructor_pending_elts
;
6190 p
->depth
= constructor_depth
;
6191 p
->replacement_value
.value
= 0;
6192 p
->replacement_value
.original_code
= ERROR_MARK
;
6193 p
->replacement_value
.original_type
= NULL
;
6194 p
->implicit
= implicit
;
6196 p
->incremental
= constructor_incremental
;
6197 p
->designated
= constructor_designated
;
6198 p
->next
= constructor_stack
;
6200 constructor_stack
= p
;
6202 constructor_constant
= 1;
6203 constructor_simple
= 1;
6204 constructor_nonconst
= 0;
6205 constructor_depth
= SPELLING_DEPTH ();
6206 constructor_elements
= 0;
6207 constructor_incremental
= 1;
6208 constructor_designated
= 0;
6209 constructor_pending_elts
= 0;
6212 p
->range_stack
= constructor_range_stack
;
6213 constructor_range_stack
= 0;
6214 designator_depth
= 0;
6215 designator_erroneous
= 0;
6218 /* Don't die if an entire brace-pair level is superfluous
6219 in the containing level. */
6220 if (constructor_type
== 0)
6222 else if (TREE_CODE (constructor_type
) == RECORD_TYPE
6223 || TREE_CODE (constructor_type
) == UNION_TYPE
)
6225 /* Don't die if there are extra init elts at the end. */
6226 if (constructor_fields
== 0)
6227 constructor_type
= 0;
6230 constructor_type
= TREE_TYPE (constructor_fields
);
6231 push_member_name (constructor_fields
);
6232 constructor_depth
++;
6235 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
6237 constructor_type
= TREE_TYPE (constructor_type
);
6238 push_array_bounds (tree_low_cst (constructor_index
, 1));
6239 constructor_depth
++;
6242 if (constructor_type
== 0)
6244 error_init ("extra brace group at end of initializer");
6245 constructor_fields
= 0;
6246 constructor_unfilled_fields
= 0;
6250 if (value
&& TREE_CODE (value
) == CONSTRUCTOR
)
6252 constructor_constant
= TREE_CONSTANT (value
);
6253 constructor_simple
= TREE_STATIC (value
);
6254 constructor_nonconst
= CONSTRUCTOR_NON_CONST (value
);
6255 constructor_elements
= CONSTRUCTOR_ELTS (value
);
6256 if (!VEC_empty (constructor_elt
, constructor_elements
)
6257 && (TREE_CODE (constructor_type
) == RECORD_TYPE
6258 || TREE_CODE (constructor_type
) == ARRAY_TYPE
))
6259 set_nonincremental_init ();
6262 if (implicit
== 1 && warn_missing_braces
&& !missing_braces_mentioned
)
6264 missing_braces_mentioned
= 1;
6265 warning_init (OPT_Wmissing_braces
, "missing braces around initializer");
6268 if (TREE_CODE (constructor_type
) == RECORD_TYPE
6269 || TREE_CODE (constructor_type
) == UNION_TYPE
)
6271 constructor_fields
= TYPE_FIELDS (constructor_type
);
6272 /* Skip any nameless bit fields at the beginning. */
6273 while (constructor_fields
!= 0 && DECL_C_BIT_FIELD (constructor_fields
)
6274 && DECL_NAME (constructor_fields
) == 0)
6275 constructor_fields
= TREE_CHAIN (constructor_fields
);
6277 constructor_unfilled_fields
= constructor_fields
;
6278 constructor_bit_index
= bitsize_zero_node
;
6280 else if (TREE_CODE (constructor_type
) == VECTOR_TYPE
)
6282 /* Vectors are like simple fixed-size arrays. */
6283 constructor_max_index
=
6284 build_int_cst (NULL_TREE
, TYPE_VECTOR_SUBPARTS (constructor_type
) - 1);
6285 constructor_index
= convert (bitsizetype
, integer_zero_node
);
6286 constructor_unfilled_index
= constructor_index
;
6288 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
6290 if (TYPE_DOMAIN (constructor_type
))
6292 constructor_max_index
6293 = TYPE_MAX_VALUE (TYPE_DOMAIN (constructor_type
));
6295 /* Detect non-empty initializations of zero-length arrays. */
6296 if (constructor_max_index
== NULL_TREE
6297 && TYPE_SIZE (constructor_type
))
6298 constructor_max_index
= build_int_cst (NULL_TREE
, -1);
6300 /* constructor_max_index needs to be an INTEGER_CST. Attempts
6301 to initialize VLAs will cause a proper error; avoid tree
6302 checking errors as well by setting a safe value. */
6303 if (constructor_max_index
6304 && TREE_CODE (constructor_max_index
) != INTEGER_CST
)
6305 constructor_max_index
= build_int_cst (NULL_TREE
, -1);
6308 = convert (bitsizetype
,
6309 TYPE_MIN_VALUE (TYPE_DOMAIN (constructor_type
)));
6312 constructor_index
= bitsize_zero_node
;
6314 constructor_unfilled_index
= constructor_index
;
6315 if (value
&& TREE_CODE (value
) == STRING_CST
)
6317 /* We need to split the char/wchar array into individual
6318 characters, so that we don't have to special case it
6320 set_nonincremental_init_from_string (value
);
6325 if (constructor_type
!= error_mark_node
)
6326 warning_init (0, "braces around scalar initializer");
6327 constructor_fields
= constructor_type
;
6328 constructor_unfilled_fields
= constructor_type
;
6332 /* At the end of an implicit or explicit brace level,
6333 finish up that level of constructor. If a single expression
6334 with redundant braces initialized that level, return the
6335 c_expr structure for that expression. Otherwise, the original_code
6336 element is set to ERROR_MARK.
6337 If we were outputting the elements as they are read, return 0 as the value
6338 from inner levels (process_init_element ignores that),
6339 but return error_mark_node as the value from the outermost level
6340 (that's what we want to put in DECL_INITIAL).
6341 Otherwise, return a CONSTRUCTOR expression as the value. */
6344 pop_init_level (int implicit
)
6346 struct constructor_stack
*p
;
6349 ret
.original_code
= ERROR_MARK
;
6350 ret
.original_type
= NULL
;
6354 /* When we come to an explicit close brace,
6355 pop any inner levels that didn't have explicit braces. */
6356 while (constructor_stack
->implicit
)
6357 process_init_element (pop_init_level (1), true);
6359 gcc_assert (!constructor_range_stack
);
6362 /* Now output all pending elements. */
6363 constructor_incremental
= 1;
6364 output_pending_init_elements (1);
6366 p
= constructor_stack
;
6368 /* Error for initializing a flexible array member, or a zero-length
6369 array member in an inappropriate context. */
6370 if (constructor_type
&& constructor_fields
6371 && TREE_CODE (constructor_type
) == ARRAY_TYPE
6372 && TYPE_DOMAIN (constructor_type
)
6373 && !TYPE_MAX_VALUE (TYPE_DOMAIN (constructor_type
)))
6375 /* Silently discard empty initializations. The parser will
6376 already have pedwarned for empty brackets. */
6377 if (integer_zerop (constructor_unfilled_index
))
6378 constructor_type
= NULL_TREE
;
6381 gcc_assert (!TYPE_SIZE (constructor_type
));
6383 if (constructor_depth
> 2)
6384 error_init ("initialization of flexible array member in a nested context");
6386 pedwarn_init (input_location
, OPT_pedantic
,
6387 "initialization of a flexible array member");
6389 /* We have already issued an error message for the existence
6390 of a flexible array member not at the end of the structure.
6391 Discard the initializer so that we do not die later. */
6392 if (TREE_CHAIN (constructor_fields
) != NULL_TREE
)
6393 constructor_type
= NULL_TREE
;
6397 /* Warn when some struct elements are implicitly initialized to zero. */
6398 if (warn_missing_field_initializers
6400 && TREE_CODE (constructor_type
) == RECORD_TYPE
6401 && constructor_unfilled_fields
)
6403 /* Do not warn for flexible array members or zero-length arrays. */
6404 while (constructor_unfilled_fields
6405 && (!DECL_SIZE (constructor_unfilled_fields
)
6406 || integer_zerop (DECL_SIZE (constructor_unfilled_fields
))))
6407 constructor_unfilled_fields
= TREE_CHAIN (constructor_unfilled_fields
);
6409 /* Do not warn if this level of the initializer uses member
6410 designators; it is likely to be deliberate. */
6411 if (constructor_unfilled_fields
&& !constructor_designated
)
6413 push_member_name (constructor_unfilled_fields
);
6414 warning_init (OPT_Wmissing_field_initializers
,
6415 "missing initializer");
6416 RESTORE_SPELLING_DEPTH (constructor_depth
);
6420 /* Pad out the end of the structure. */
6421 if (p
->replacement_value
.value
)
6422 /* If this closes a superfluous brace pair,
6423 just pass out the element between them. */
6424 ret
= p
->replacement_value
;
6425 else if (constructor_type
== 0)
6427 else if (TREE_CODE (constructor_type
) != RECORD_TYPE
6428 && TREE_CODE (constructor_type
) != UNION_TYPE
6429 && TREE_CODE (constructor_type
) != ARRAY_TYPE
6430 && TREE_CODE (constructor_type
) != VECTOR_TYPE
)
6432 /* A nonincremental scalar initializer--just return
6433 the element, after verifying there is just one. */
6434 if (VEC_empty (constructor_elt
,constructor_elements
))
6436 if (!constructor_erroneous
)
6437 error_init ("empty scalar initializer");
6438 ret
.value
= error_mark_node
;
6440 else if (VEC_length (constructor_elt
,constructor_elements
) != 1)
6442 error_init ("extra elements in scalar initializer");
6443 ret
.value
= VEC_index (constructor_elt
,constructor_elements
,0)->value
;
6446 ret
.value
= VEC_index (constructor_elt
,constructor_elements
,0)->value
;
6450 if (constructor_erroneous
)
6451 ret
.value
= error_mark_node
;
6454 ret
.value
= build_constructor (constructor_type
,
6455 constructor_elements
);
6456 if (constructor_constant
)
6457 TREE_CONSTANT (ret
.value
) = 1;
6458 if (constructor_constant
&& constructor_simple
)
6459 TREE_STATIC (ret
.value
) = 1;
6460 if (constructor_nonconst
)
6461 CONSTRUCTOR_NON_CONST (ret
.value
) = 1;
6465 if (ret
.value
&& TREE_CODE (ret
.value
) != CONSTRUCTOR
)
6467 if (constructor_nonconst
)
6468 ret
.original_code
= C_MAYBE_CONST_EXPR
;
6469 else if (ret
.original_code
== C_MAYBE_CONST_EXPR
)
6470 ret
.original_code
= ERROR_MARK
;
6473 constructor_type
= p
->type
;
6474 constructor_fields
= p
->fields
;
6475 constructor_index
= p
->index
;
6476 constructor_max_index
= p
->max_index
;
6477 constructor_unfilled_index
= p
->unfilled_index
;
6478 constructor_unfilled_fields
= p
->unfilled_fields
;
6479 constructor_bit_index
= p
->bit_index
;
6480 constructor_elements
= p
->elements
;
6481 constructor_constant
= p
->constant
;
6482 constructor_simple
= p
->simple
;
6483 constructor_nonconst
= p
->nonconst
;
6484 constructor_erroneous
= p
->erroneous
;
6485 constructor_incremental
= p
->incremental
;
6486 constructor_designated
= p
->designated
;
6487 constructor_pending_elts
= p
->pending_elts
;
6488 constructor_depth
= p
->depth
;
6490 constructor_range_stack
= p
->range_stack
;
6491 RESTORE_SPELLING_DEPTH (constructor_depth
);
6493 constructor_stack
= p
->next
;
6496 if (ret
.value
== 0 && constructor_stack
== 0)
6497 ret
.value
= error_mark_node
;
6501 /* Common handling for both array range and field name designators.
6502 ARRAY argument is nonzero for array ranges. Returns zero for success. */
6505 set_designator (int array
)
6508 enum tree_code subcode
;
6510 /* Don't die if an entire brace-pair level is superfluous
6511 in the containing level. */
6512 if (constructor_type
== 0)
6515 /* If there were errors in this designator list already, bail out
6517 if (designator_erroneous
)
6520 if (!designator_depth
)
6522 gcc_assert (!constructor_range_stack
);
6524 /* Designator list starts at the level of closest explicit
6526 while (constructor_stack
->implicit
)
6527 process_init_element (pop_init_level (1), true);
6528 constructor_designated
= 1;
6532 switch (TREE_CODE (constructor_type
))
6536 subtype
= TREE_TYPE (constructor_fields
);
6537 if (subtype
!= error_mark_node
)
6538 subtype
= TYPE_MAIN_VARIANT (subtype
);
6541 subtype
= TYPE_MAIN_VARIANT (TREE_TYPE (constructor_type
));
6547 subcode
= TREE_CODE (subtype
);
6548 if (array
&& subcode
!= ARRAY_TYPE
)
6550 error_init ("array index in non-array initializer");
6553 else if (!array
&& subcode
!= RECORD_TYPE
&& subcode
!= UNION_TYPE
)
6555 error_init ("field name not in record or union initializer");
6559 constructor_designated
= 1;
6560 push_init_level (2);
6564 /* If there are range designators in designator list, push a new designator
6565 to constructor_range_stack. RANGE_END is end of such stack range or
6566 NULL_TREE if there is no range designator at this level. */
6569 push_range_stack (tree range_end
)
6571 struct constructor_range_stack
*p
;
6573 p
= GGC_NEW (struct constructor_range_stack
);
6574 p
->prev
= constructor_range_stack
;
6576 p
->fields
= constructor_fields
;
6577 p
->range_start
= constructor_index
;
6578 p
->index
= constructor_index
;
6579 p
->stack
= constructor_stack
;
6580 p
->range_end
= range_end
;
6581 if (constructor_range_stack
)
6582 constructor_range_stack
->next
= p
;
6583 constructor_range_stack
= p
;
6586 /* Within an array initializer, specify the next index to be initialized.
6587 FIRST is that index. If LAST is nonzero, then initialize a range
6588 of indices, running from FIRST through LAST. */
6591 set_init_index (tree first
, tree last
)
6593 if (set_designator (1))
6596 designator_erroneous
= 1;
6598 if (!INTEGRAL_TYPE_P (TREE_TYPE (first
))
6599 || (last
&& !INTEGRAL_TYPE_P (TREE_TYPE (last
))))
6601 error_init ("array index in initializer not of integer type");
6605 if (TREE_CODE (first
) != INTEGER_CST
)
6607 first
= c_fully_fold (first
, false, NULL
);
6608 if (TREE_CODE (first
) == INTEGER_CST
)
6609 pedwarn_init (input_location
, OPT_pedantic
,
6610 "array index in initializer is not "
6611 "an integer constant expression");
6614 if (last
&& TREE_CODE (last
) != INTEGER_CST
)
6616 last
= c_fully_fold (last
, false, NULL
);
6617 if (TREE_CODE (last
) == INTEGER_CST
)
6618 pedwarn_init (input_location
, OPT_pedantic
,
6619 "array index in initializer is not "
6620 "an integer constant expression");
6623 if (TREE_CODE (first
) != INTEGER_CST
)
6624 error_init ("nonconstant array index in initializer");
6625 else if (last
!= 0 && TREE_CODE (last
) != INTEGER_CST
)
6626 error_init ("nonconstant array index in initializer");
6627 else if (TREE_CODE (constructor_type
) != ARRAY_TYPE
)
6628 error_init ("array index in non-array initializer");
6629 else if (tree_int_cst_sgn (first
) == -1)
6630 error_init ("array index in initializer exceeds array bounds");
6631 else if (constructor_max_index
6632 && tree_int_cst_lt (constructor_max_index
, first
))
6633 error_init ("array index in initializer exceeds array bounds");
6636 constant_expression_warning (first
);
6638 constant_expression_warning (last
);
6639 constructor_index
= convert (bitsizetype
, first
);
6643 if (tree_int_cst_equal (first
, last
))
6645 else if (tree_int_cst_lt (last
, first
))
6647 error_init ("empty index range in initializer");
6652 last
= convert (bitsizetype
, last
);
6653 if (constructor_max_index
!= 0
6654 && tree_int_cst_lt (constructor_max_index
, last
))
6656 error_init ("array index range in initializer exceeds array bounds");
6663 designator_erroneous
= 0;
6664 if (constructor_range_stack
|| last
)
6665 push_range_stack (last
);
6669 /* Within a struct initializer, specify the next field to be initialized. */
6672 set_init_label (tree fieldname
)
6676 if (set_designator (0))
6679 designator_erroneous
= 1;
6681 if (TREE_CODE (constructor_type
) != RECORD_TYPE
6682 && TREE_CODE (constructor_type
) != UNION_TYPE
)
6684 error_init ("field name not in record or union initializer");
6688 for (tail
= TYPE_FIELDS (constructor_type
); tail
;
6689 tail
= TREE_CHAIN (tail
))
6691 if (DECL_NAME (tail
) == fieldname
)
6696 error ("unknown field %qE specified in initializer", fieldname
);
6699 constructor_fields
= tail
;
6701 designator_erroneous
= 0;
6702 if (constructor_range_stack
)
6703 push_range_stack (NULL_TREE
);
6707 /* Add a new initializer to the tree of pending initializers. PURPOSE
6708 identifies the initializer, either array index or field in a structure.
6709 VALUE is the value of that index or field. If ORIGTYPE is not
6710 NULL_TREE, it is the original type of VALUE.
6712 IMPLICIT is true if value comes from pop_init_level (1),
6713 the new initializer has been merged with the existing one
6714 and thus no warnings should be emitted about overriding an
6715 existing initializer. */
6718 add_pending_init (tree purpose
, tree value
, tree origtype
, bool implicit
)
6720 struct init_node
*p
, **q
, *r
;
6722 q
= &constructor_pending_elts
;
6725 if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
6730 if (tree_int_cst_lt (purpose
, p
->purpose
))
6732 else if (tree_int_cst_lt (p
->purpose
, purpose
))
6738 if (TREE_SIDE_EFFECTS (p
->value
))
6739 warning_init (0, "initialized field with side-effects overwritten");
6740 else if (warn_override_init
)
6741 warning_init (OPT_Woverride_init
, "initialized field overwritten");
6744 p
->origtype
= origtype
;
6753 bitpos
= bit_position (purpose
);
6757 if (tree_int_cst_lt (bitpos
, bit_position (p
->purpose
)))
6759 else if (p
->purpose
!= purpose
)
6765 if (TREE_SIDE_EFFECTS (p
->value
))
6766 warning_init (0, "initialized field with side-effects overwritten");
6767 else if (warn_override_init
)
6768 warning_init (OPT_Woverride_init
, "initialized field overwritten");
6771 p
->origtype
= origtype
;
6777 r
= GGC_NEW (struct init_node
);
6778 r
->purpose
= purpose
;
6780 r
->origtype
= origtype
;
6790 struct init_node
*s
;
6794 if (p
->balance
== 0)
6796 else if (p
->balance
< 0)
6803 p
->left
->parent
= p
;
6820 constructor_pending_elts
= r
;
6825 struct init_node
*t
= r
->right
;
6829 r
->right
->parent
= r
;
6834 p
->left
->parent
= p
;
6837 p
->balance
= t
->balance
< 0;
6838 r
->balance
= -(t
->balance
> 0);
6853 constructor_pending_elts
= t
;
6859 /* p->balance == +1; growth of left side balances the node. */
6864 else /* r == p->right */
6866 if (p
->balance
== 0)
6867 /* Growth propagation from right side. */
6869 else if (p
->balance
> 0)
6876 p
->right
->parent
= p
;
6893 constructor_pending_elts
= r
;
6895 else /* r->balance == -1 */
6898 struct init_node
*t
= r
->left
;
6902 r
->left
->parent
= r
;
6907 p
->right
->parent
= p
;
6910 r
->balance
= (t
->balance
< 0);
6911 p
->balance
= -(t
->balance
> 0);
6926 constructor_pending_elts
= t
;
6932 /* p->balance == -1; growth of right side balances the node. */
6943 /* Build AVL tree from a sorted chain. */
6946 set_nonincremental_init (void)
6948 unsigned HOST_WIDE_INT ix
;
6951 if (TREE_CODE (constructor_type
) != RECORD_TYPE
6952 && TREE_CODE (constructor_type
) != ARRAY_TYPE
)
6955 FOR_EACH_CONSTRUCTOR_ELT (constructor_elements
, ix
, index
, value
)
6956 add_pending_init (index
, value
, NULL_TREE
, false);
6957 constructor_elements
= 0;
6958 if (TREE_CODE (constructor_type
) == RECORD_TYPE
)
6960 constructor_unfilled_fields
= TYPE_FIELDS (constructor_type
);
6961 /* Skip any nameless bit fields at the beginning. */
6962 while (constructor_unfilled_fields
!= 0
6963 && DECL_C_BIT_FIELD (constructor_unfilled_fields
)
6964 && DECL_NAME (constructor_unfilled_fields
) == 0)
6965 constructor_unfilled_fields
= TREE_CHAIN (constructor_unfilled_fields
);
6968 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
6970 if (TYPE_DOMAIN (constructor_type
))
6971 constructor_unfilled_index
6972 = convert (bitsizetype
,
6973 TYPE_MIN_VALUE (TYPE_DOMAIN (constructor_type
)));
6975 constructor_unfilled_index
= bitsize_zero_node
;
6977 constructor_incremental
= 0;
6980 /* Build AVL tree from a string constant. */
6983 set_nonincremental_init_from_string (tree str
)
6985 tree value
, purpose
, type
;
6986 HOST_WIDE_INT val
[2];
6987 const char *p
, *end
;
6988 int byte
, wchar_bytes
, charwidth
, bitpos
;
6990 gcc_assert (TREE_CODE (constructor_type
) == ARRAY_TYPE
);
6992 wchar_bytes
= TYPE_PRECISION (TREE_TYPE (TREE_TYPE (str
))) / BITS_PER_UNIT
;
6993 charwidth
= TYPE_PRECISION (char_type_node
);
6994 type
= TREE_TYPE (constructor_type
);
6995 p
= TREE_STRING_POINTER (str
);
6996 end
= p
+ TREE_STRING_LENGTH (str
);
6998 for (purpose
= bitsize_zero_node
;
6999 p
< end
&& !tree_int_cst_lt (constructor_max_index
, purpose
);
7000 purpose
= size_binop (PLUS_EXPR
, purpose
, bitsize_one_node
))
7002 if (wchar_bytes
== 1)
7004 val
[1] = (unsigned char) *p
++;
7011 for (byte
= 0; byte
< wchar_bytes
; byte
++)
7013 if (BYTES_BIG_ENDIAN
)
7014 bitpos
= (wchar_bytes
- byte
- 1) * charwidth
;
7016 bitpos
= byte
* charwidth
;
7017 val
[bitpos
< HOST_BITS_PER_WIDE_INT
]
7018 |= ((unsigned HOST_WIDE_INT
) ((unsigned char) *p
++))
7019 << (bitpos
% HOST_BITS_PER_WIDE_INT
);
7023 if (!TYPE_UNSIGNED (type
))
7025 bitpos
= ((wchar_bytes
- 1) * charwidth
) + HOST_BITS_PER_CHAR
;
7026 if (bitpos
< HOST_BITS_PER_WIDE_INT
)
7028 if (val
[1] & (((HOST_WIDE_INT
) 1) << (bitpos
- 1)))
7030 val
[1] |= ((HOST_WIDE_INT
) -1) << bitpos
;
7034 else if (bitpos
== HOST_BITS_PER_WIDE_INT
)
7039 else if (val
[0] & (((HOST_WIDE_INT
) 1)
7040 << (bitpos
- 1 - HOST_BITS_PER_WIDE_INT
)))
7041 val
[0] |= ((HOST_WIDE_INT
) -1)
7042 << (bitpos
- HOST_BITS_PER_WIDE_INT
);
7045 value
= build_int_cst_wide (type
, val
[1], val
[0]);
7046 add_pending_init (purpose
, value
, NULL_TREE
, false);
7049 constructor_incremental
= 0;
7052 /* Return value of FIELD in pending initializer or zero if the field was
7053 not initialized yet. */
7056 find_init_member (tree field
)
7058 struct init_node
*p
;
7060 if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
7062 if (constructor_incremental
7063 && tree_int_cst_lt (field
, constructor_unfilled_index
))
7064 set_nonincremental_init ();
7066 p
= constructor_pending_elts
;
7069 if (tree_int_cst_lt (field
, p
->purpose
))
7071 else if (tree_int_cst_lt (p
->purpose
, field
))
7077 else if (TREE_CODE (constructor_type
) == RECORD_TYPE
)
7079 tree bitpos
= bit_position (field
);
7081 if (constructor_incremental
7082 && (!constructor_unfilled_fields
7083 || tree_int_cst_lt (bitpos
,
7084 bit_position (constructor_unfilled_fields
))))
7085 set_nonincremental_init ();
7087 p
= constructor_pending_elts
;
7090 if (field
== p
->purpose
)
7092 else if (tree_int_cst_lt (bitpos
, bit_position (p
->purpose
)))
7098 else if (TREE_CODE (constructor_type
) == UNION_TYPE
)
7100 if (!VEC_empty (constructor_elt
, constructor_elements
)
7101 && (VEC_last (constructor_elt
, constructor_elements
)->index
7103 return VEC_last (constructor_elt
, constructor_elements
)->value
;
7108 /* "Output" the next constructor element.
7109 At top level, really output it to assembler code now.
7110 Otherwise, collect it in a list from which we will make a CONSTRUCTOR.
7111 If ORIGTYPE is not NULL_TREE, it is the original type of VALUE.
7112 TYPE is the data type that the containing data type wants here.
7113 FIELD is the field (a FIELD_DECL) or the index that this element fills.
7114 If VALUE is a string constant, STRICT_STRING is true if it is
7115 unparenthesized or we should not warn here for it being parenthesized.
7116 For other types of VALUE, STRICT_STRING is not used.
7118 PENDING if non-nil means output pending elements that belong
7119 right after this element. (PENDING is normally 1;
7120 it is 0 while outputting pending elements, to avoid recursion.)
7122 IMPLICIT is true if value comes from pop_init_level (1),
7123 the new initializer has been merged with the existing one
7124 and thus no warnings should be emitted about overriding an
7125 existing initializer. */
7128 output_init_element (tree value
, tree origtype
, bool strict_string
, tree type
,
7129 tree field
, int pending
, bool implicit
)
7131 tree semantic_type
= NULL_TREE
;
7132 constructor_elt
*celt
;
7133 bool maybe_const
= true;
7136 if (type
== error_mark_node
|| value
== error_mark_node
)
7138 constructor_erroneous
= 1;
7141 if (TREE_CODE (TREE_TYPE (value
)) == ARRAY_TYPE
7142 && (TREE_CODE (value
) == STRING_CST
7143 || TREE_CODE (value
) == COMPOUND_LITERAL_EXPR
)
7144 && !(TREE_CODE (value
) == STRING_CST
7145 && TREE_CODE (type
) == ARRAY_TYPE
7146 && INTEGRAL_TYPE_P (TREE_TYPE (type
)))
7147 && !comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (value
)),
7148 TYPE_MAIN_VARIANT (type
)))
7149 value
= array_to_pointer_conversion (input_location
, value
);
7151 if (TREE_CODE (value
) == COMPOUND_LITERAL_EXPR
7152 && require_constant_value
&& !flag_isoc99
&& pending
)
7154 /* As an extension, allow initializing objects with static storage
7155 duration with compound literals (which are then treated just as
7156 the brace enclosed list they contain). */
7157 tree decl
= COMPOUND_LITERAL_EXPR_DECL (value
);
7158 value
= DECL_INITIAL (decl
);
7161 npc
= null_pointer_constant_p (value
);
7162 if (TREE_CODE (value
) == EXCESS_PRECISION_EXPR
)
7164 semantic_type
= TREE_TYPE (value
);
7165 value
= TREE_OPERAND (value
, 0);
7167 value
= c_fully_fold (value
, require_constant_value
, &maybe_const
);
7169 if (value
== error_mark_node
)
7170 constructor_erroneous
= 1;
7171 else if (!TREE_CONSTANT (value
))
7172 constructor_constant
= 0;
7173 else if (!initializer_constant_valid_p (value
, TREE_TYPE (value
))
7174 || ((TREE_CODE (constructor_type
) == RECORD_TYPE
7175 || TREE_CODE (constructor_type
) == UNION_TYPE
)
7176 && DECL_C_BIT_FIELD (field
)
7177 && TREE_CODE (value
) != INTEGER_CST
))
7178 constructor_simple
= 0;
7180 constructor_nonconst
= 1;
7182 if (!initializer_constant_valid_p (value
, TREE_TYPE (value
)))
7184 if (require_constant_value
)
7186 error_init ("initializer element is not constant");
7187 value
= error_mark_node
;
7189 else if (require_constant_elements
)
7190 pedwarn (input_location
, 0,
7191 "initializer element is not computable at load time");
7193 else if (!maybe_const
7194 && (require_constant_value
|| require_constant_elements
))
7195 pedwarn_init (input_location
, 0,
7196 "initializer element is not a constant expression");
7198 /* Issue -Wc++-compat warnings about initializing a bitfield with
7201 && field
!= NULL_TREE
7202 && TREE_CODE (field
) == FIELD_DECL
7203 && DECL_BIT_FIELD_TYPE (field
) != NULL_TREE
7204 && (TYPE_MAIN_VARIANT (DECL_BIT_FIELD_TYPE (field
))
7205 != TYPE_MAIN_VARIANT (type
))
7206 && TREE_CODE (DECL_BIT_FIELD_TYPE (field
)) == ENUMERAL_TYPE
)
7208 tree checktype
= origtype
!= NULL_TREE
? origtype
: TREE_TYPE (value
);
7209 if (checktype
!= error_mark_node
7210 && (TYPE_MAIN_VARIANT (checktype
)
7211 != TYPE_MAIN_VARIANT (DECL_BIT_FIELD_TYPE (field
))))
7212 warning_init (OPT_Wc___compat
,
7213 "enum conversion in initialization is invalid in C++");
7216 /* If this field is empty (and not at the end of structure),
7217 don't do anything other than checking the initializer. */
7219 && (TREE_TYPE (field
) == error_mark_node
7220 || (COMPLETE_TYPE_P (TREE_TYPE (field
))
7221 && integer_zerop (TYPE_SIZE (TREE_TYPE (field
)))
7222 && (TREE_CODE (constructor_type
) == ARRAY_TYPE
7223 || TREE_CHAIN (field
)))))
7227 value
= build1 (EXCESS_PRECISION_EXPR
, semantic_type
, value
);
7228 value
= digest_init (input_location
, type
, value
, origtype
, npc
,
7229 strict_string
, require_constant_value
);
7230 if (value
== error_mark_node
)
7232 constructor_erroneous
= 1;
7235 if (require_constant_value
|| require_constant_elements
)
7236 constant_expression_warning (value
);
7238 /* If this element doesn't come next in sequence,
7239 put it on constructor_pending_elts. */
7240 if (TREE_CODE (constructor_type
) == ARRAY_TYPE
7241 && (!constructor_incremental
7242 || !tree_int_cst_equal (field
, constructor_unfilled_index
)))
7244 if (constructor_incremental
7245 && tree_int_cst_lt (field
, constructor_unfilled_index
))
7246 set_nonincremental_init ();
7248 add_pending_init (field
, value
, origtype
, implicit
);
7251 else if (TREE_CODE (constructor_type
) == RECORD_TYPE
7252 && (!constructor_incremental
7253 || field
!= constructor_unfilled_fields
))
7255 /* We do this for records but not for unions. In a union,
7256 no matter which field is specified, it can be initialized
7257 right away since it starts at the beginning of the union. */
7258 if (constructor_incremental
)
7260 if (!constructor_unfilled_fields
)
7261 set_nonincremental_init ();
7264 tree bitpos
, unfillpos
;
7266 bitpos
= bit_position (field
);
7267 unfillpos
= bit_position (constructor_unfilled_fields
);
7269 if (tree_int_cst_lt (bitpos
, unfillpos
))
7270 set_nonincremental_init ();
7274 add_pending_init (field
, value
, origtype
, implicit
);
7277 else if (TREE_CODE (constructor_type
) == UNION_TYPE
7278 && !VEC_empty (constructor_elt
, constructor_elements
))
7282 if (TREE_SIDE_EFFECTS (VEC_last (constructor_elt
,
7283 constructor_elements
)->value
))
7285 "initialized field with side-effects overwritten");
7286 else if (warn_override_init
)
7287 warning_init (OPT_Woverride_init
, "initialized field overwritten");
7290 /* We can have just one union field set. */
7291 constructor_elements
= 0;
7294 /* Otherwise, output this element either to
7295 constructor_elements or to the assembler file. */
7297 celt
= VEC_safe_push (constructor_elt
, gc
, constructor_elements
, NULL
);
7298 celt
->index
= field
;
7299 celt
->value
= value
;
7301 /* Advance the variable that indicates sequential elements output. */
7302 if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
7303 constructor_unfilled_index
7304 = size_binop (PLUS_EXPR
, constructor_unfilled_index
,
7306 else if (TREE_CODE (constructor_type
) == RECORD_TYPE
)
7308 constructor_unfilled_fields
7309 = TREE_CHAIN (constructor_unfilled_fields
);
7311 /* Skip any nameless bit fields. */
7312 while (constructor_unfilled_fields
!= 0
7313 && DECL_C_BIT_FIELD (constructor_unfilled_fields
)
7314 && DECL_NAME (constructor_unfilled_fields
) == 0)
7315 constructor_unfilled_fields
=
7316 TREE_CHAIN (constructor_unfilled_fields
);
7318 else if (TREE_CODE (constructor_type
) == UNION_TYPE
)
7319 constructor_unfilled_fields
= 0;
7321 /* Now output any pending elements which have become next. */
7323 output_pending_init_elements (0);
7326 /* Output any pending elements which have become next.
7327 As we output elements, constructor_unfilled_{fields,index}
7328 advances, which may cause other elements to become next;
7329 if so, they too are output.
7331 If ALL is 0, we return when there are
7332 no more pending elements to output now.
7334 If ALL is 1, we output space as necessary so that
7335 we can output all the pending elements. */
7338 output_pending_init_elements (int all
)
7340 struct init_node
*elt
= constructor_pending_elts
;
7345 /* Look through the whole pending tree.
7346 If we find an element that should be output now,
7347 output it. Otherwise, set NEXT to the element
7348 that comes first among those still pending. */
7353 if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
7355 if (tree_int_cst_equal (elt
->purpose
,
7356 constructor_unfilled_index
))
7357 output_init_element (elt
->value
, elt
->origtype
, true,
7358 TREE_TYPE (constructor_type
),
7359 constructor_unfilled_index
, 0, false);
7360 else if (tree_int_cst_lt (constructor_unfilled_index
,
7363 /* Advance to the next smaller node. */
7368 /* We have reached the smallest node bigger than the
7369 current unfilled index. Fill the space first. */
7370 next
= elt
->purpose
;
7376 /* Advance to the next bigger node. */
7381 /* We have reached the biggest node in a subtree. Find
7382 the parent of it, which is the next bigger node. */
7383 while (elt
->parent
&& elt
->parent
->right
== elt
)
7386 if (elt
&& tree_int_cst_lt (constructor_unfilled_index
,
7389 next
= elt
->purpose
;
7395 else if (TREE_CODE (constructor_type
) == RECORD_TYPE
7396 || TREE_CODE (constructor_type
) == UNION_TYPE
)
7398 tree ctor_unfilled_bitpos
, elt_bitpos
;
7400 /* If the current record is complete we are done. */
7401 if (constructor_unfilled_fields
== 0)
7404 ctor_unfilled_bitpos
= bit_position (constructor_unfilled_fields
);
7405 elt_bitpos
= bit_position (elt
->purpose
);
7406 /* We can't compare fields here because there might be empty
7407 fields in between. */
7408 if (tree_int_cst_equal (elt_bitpos
, ctor_unfilled_bitpos
))
7410 constructor_unfilled_fields
= elt
->purpose
;
7411 output_init_element (elt
->value
, elt
->origtype
, true,
7412 TREE_TYPE (elt
->purpose
),
7413 elt
->purpose
, 0, false);
7415 else if (tree_int_cst_lt (ctor_unfilled_bitpos
, elt_bitpos
))
7417 /* Advance to the next smaller node. */
7422 /* We have reached the smallest node bigger than the
7423 current unfilled field. Fill the space first. */
7424 next
= elt
->purpose
;
7430 /* Advance to the next bigger node. */
7435 /* We have reached the biggest node in a subtree. Find
7436 the parent of it, which is the next bigger node. */
7437 while (elt
->parent
&& elt
->parent
->right
== elt
)
7441 && (tree_int_cst_lt (ctor_unfilled_bitpos
,
7442 bit_position (elt
->purpose
))))
7444 next
= elt
->purpose
;
7452 /* Ordinarily return, but not if we want to output all
7453 and there are elements left. */
7454 if (!(all
&& next
!= 0))
7457 /* If it's not incremental, just skip over the gap, so that after
7458 jumping to retry we will output the next successive element. */
7459 if (TREE_CODE (constructor_type
) == RECORD_TYPE
7460 || TREE_CODE (constructor_type
) == UNION_TYPE
)
7461 constructor_unfilled_fields
= next
;
7462 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
7463 constructor_unfilled_index
= next
;
7465 /* ELT now points to the node in the pending tree with the next
7466 initializer to output. */
7470 /* Add one non-braced element to the current constructor level.
7471 This adjusts the current position within the constructor's type.
7472 This may also start or terminate implicit levels
7473 to handle a partly-braced initializer.
7475 Once this has found the correct level for the new element,
7476 it calls output_init_element.
7478 IMPLICIT is true if value comes from pop_init_level (1),
7479 the new initializer has been merged with the existing one
7480 and thus no warnings should be emitted about overriding an
7481 existing initializer. */
7484 process_init_element (struct c_expr value
, bool implicit
)
7486 tree orig_value
= value
.value
;
7487 int string_flag
= orig_value
!= 0 && TREE_CODE (orig_value
) == STRING_CST
;
7488 bool strict_string
= value
.original_code
== STRING_CST
;
7490 designator_depth
= 0;
7491 designator_erroneous
= 0;
7493 /* Handle superfluous braces around string cst as in
7494 char x[] = {"foo"}; */
7497 && TREE_CODE (constructor_type
) == ARRAY_TYPE
7498 && INTEGRAL_TYPE_P (TREE_TYPE (constructor_type
))
7499 && integer_zerop (constructor_unfilled_index
))
7501 if (constructor_stack
->replacement_value
.value
)
7502 error_init ("excess elements in char array initializer");
7503 constructor_stack
->replacement_value
= value
;
7507 if (constructor_stack
->replacement_value
.value
!= 0)
7509 error_init ("excess elements in struct initializer");
7513 /* Ignore elements of a brace group if it is entirely superfluous
7514 and has already been diagnosed. */
7515 if (constructor_type
== 0)
7518 /* If we've exhausted any levels that didn't have braces,
7520 while (constructor_stack
->implicit
)
7522 if ((TREE_CODE (constructor_type
) == RECORD_TYPE
7523 || TREE_CODE (constructor_type
) == UNION_TYPE
)
7524 && constructor_fields
== 0)
7525 process_init_element (pop_init_level (1), true);
7526 else if ((TREE_CODE (constructor_type
) == ARRAY_TYPE
7527 || TREE_CODE (constructor_type
) == VECTOR_TYPE
)
7528 && (constructor_max_index
== 0
7529 || tree_int_cst_lt (constructor_max_index
,
7530 constructor_index
)))
7531 process_init_element (pop_init_level (1), true);
7536 /* In the case of [LO ... HI] = VALUE, only evaluate VALUE once. */
7537 if (constructor_range_stack
)
7539 /* If value is a compound literal and we'll be just using its
7540 content, don't put it into a SAVE_EXPR. */
7541 if (TREE_CODE (value
.value
) != COMPOUND_LITERAL_EXPR
7542 || !require_constant_value
7545 tree semantic_type
= NULL_TREE
;
7546 if (TREE_CODE (value
.value
) == EXCESS_PRECISION_EXPR
)
7548 semantic_type
= TREE_TYPE (value
.value
);
7549 value
.value
= TREE_OPERAND (value
.value
, 0);
7551 value
.value
= c_save_expr (value
.value
);
7553 value
.value
= build1 (EXCESS_PRECISION_EXPR
, semantic_type
,
7560 if (TREE_CODE (constructor_type
) == RECORD_TYPE
)
7563 enum tree_code fieldcode
;
7565 if (constructor_fields
== 0)
7567 pedwarn_init (input_location
, 0,
7568 "excess elements in struct initializer");
7572 fieldtype
= TREE_TYPE (constructor_fields
);
7573 if (fieldtype
!= error_mark_node
)
7574 fieldtype
= TYPE_MAIN_VARIANT (fieldtype
);
7575 fieldcode
= TREE_CODE (fieldtype
);
7577 /* Error for non-static initialization of a flexible array member. */
7578 if (fieldcode
== ARRAY_TYPE
7579 && !require_constant_value
7580 && TYPE_SIZE (fieldtype
) == NULL_TREE
7581 && TREE_CHAIN (constructor_fields
) == NULL_TREE
)
7583 error_init ("non-static initialization of a flexible array member");
7587 /* Accept a string constant to initialize a subarray. */
7588 if (value
.value
!= 0
7589 && fieldcode
== ARRAY_TYPE
7590 && INTEGRAL_TYPE_P (TREE_TYPE (fieldtype
))
7592 value
.value
= orig_value
;
7593 /* Otherwise, if we have come to a subaggregate,
7594 and we don't have an element of its type, push into it. */
7595 else if (value
.value
!= 0
7596 && value
.value
!= error_mark_node
7597 && TYPE_MAIN_VARIANT (TREE_TYPE (value
.value
)) != fieldtype
7598 && (fieldcode
== RECORD_TYPE
|| fieldcode
== ARRAY_TYPE
7599 || fieldcode
== UNION_TYPE
|| fieldcode
== VECTOR_TYPE
))
7601 push_init_level (1);
7607 push_member_name (constructor_fields
);
7608 output_init_element (value
.value
, value
.original_type
,
7609 strict_string
, fieldtype
,
7610 constructor_fields
, 1, implicit
);
7611 RESTORE_SPELLING_DEPTH (constructor_depth
);
7614 /* Do the bookkeeping for an element that was
7615 directly output as a constructor. */
7617 /* For a record, keep track of end position of last field. */
7618 if (DECL_SIZE (constructor_fields
))
7619 constructor_bit_index
7620 = size_binop (PLUS_EXPR
,
7621 bit_position (constructor_fields
),
7622 DECL_SIZE (constructor_fields
));
7624 /* If the current field was the first one not yet written out,
7625 it isn't now, so update. */
7626 if (constructor_unfilled_fields
== constructor_fields
)
7628 constructor_unfilled_fields
= TREE_CHAIN (constructor_fields
);
7629 /* Skip any nameless bit fields. */
7630 while (constructor_unfilled_fields
!= 0
7631 && DECL_C_BIT_FIELD (constructor_unfilled_fields
)
7632 && DECL_NAME (constructor_unfilled_fields
) == 0)
7633 constructor_unfilled_fields
=
7634 TREE_CHAIN (constructor_unfilled_fields
);
7638 constructor_fields
= TREE_CHAIN (constructor_fields
);
7639 /* Skip any nameless bit fields at the beginning. */
7640 while (constructor_fields
!= 0
7641 && DECL_C_BIT_FIELD (constructor_fields
)
7642 && DECL_NAME (constructor_fields
) == 0)
7643 constructor_fields
= TREE_CHAIN (constructor_fields
);
7645 else if (TREE_CODE (constructor_type
) == UNION_TYPE
)
7648 enum tree_code fieldcode
;
7650 if (constructor_fields
== 0)
7652 pedwarn_init (input_location
, 0,
7653 "excess elements in union initializer");
7657 fieldtype
= TREE_TYPE (constructor_fields
);
7658 if (fieldtype
!= error_mark_node
)
7659 fieldtype
= TYPE_MAIN_VARIANT (fieldtype
);
7660 fieldcode
= TREE_CODE (fieldtype
);
7662 /* Warn that traditional C rejects initialization of unions.
7663 We skip the warning if the value is zero. This is done
7664 under the assumption that the zero initializer in user
7665 code appears conditioned on e.g. __STDC__ to avoid
7666 "missing initializer" warnings and relies on default
7667 initialization to zero in the traditional C case.
7668 We also skip the warning if the initializer is designated,
7669 again on the assumption that this must be conditional on
7670 __STDC__ anyway (and we've already complained about the
7671 member-designator already). */
7672 if (!in_system_header
&& !constructor_designated
7673 && !(value
.value
&& (integer_zerop (value
.value
)
7674 || real_zerop (value
.value
))))
7675 warning (OPT_Wtraditional
, "traditional C rejects initialization "
7678 /* Accept a string constant to initialize a subarray. */
7679 if (value
.value
!= 0
7680 && fieldcode
== ARRAY_TYPE
7681 && INTEGRAL_TYPE_P (TREE_TYPE (fieldtype
))
7683 value
.value
= orig_value
;
7684 /* Otherwise, if we have come to a subaggregate,
7685 and we don't have an element of its type, push into it. */
7686 else if (value
.value
!= 0
7687 && value
.value
!= error_mark_node
7688 && TYPE_MAIN_VARIANT (TREE_TYPE (value
.value
)) != fieldtype
7689 && (fieldcode
== RECORD_TYPE
|| fieldcode
== ARRAY_TYPE
7690 || fieldcode
== UNION_TYPE
|| fieldcode
== VECTOR_TYPE
))
7692 push_init_level (1);
7698 push_member_name (constructor_fields
);
7699 output_init_element (value
.value
, value
.original_type
,
7700 strict_string
, fieldtype
,
7701 constructor_fields
, 1, implicit
);
7702 RESTORE_SPELLING_DEPTH (constructor_depth
);
7705 /* Do the bookkeeping for an element that was
7706 directly output as a constructor. */
7708 constructor_bit_index
= DECL_SIZE (constructor_fields
);
7709 constructor_unfilled_fields
= TREE_CHAIN (constructor_fields
);
7712 constructor_fields
= 0;
7714 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
7716 tree elttype
= TYPE_MAIN_VARIANT (TREE_TYPE (constructor_type
));
7717 enum tree_code eltcode
= TREE_CODE (elttype
);
7719 /* Accept a string constant to initialize a subarray. */
7720 if (value
.value
!= 0
7721 && eltcode
== ARRAY_TYPE
7722 && INTEGRAL_TYPE_P (TREE_TYPE (elttype
))
7724 value
.value
= orig_value
;
7725 /* Otherwise, if we have come to a subaggregate,
7726 and we don't have an element of its type, push into it. */
7727 else if (value
.value
!= 0
7728 && value
.value
!= error_mark_node
7729 && TYPE_MAIN_VARIANT (TREE_TYPE (value
.value
)) != elttype
7730 && (eltcode
== RECORD_TYPE
|| eltcode
== ARRAY_TYPE
7731 || eltcode
== UNION_TYPE
|| eltcode
== VECTOR_TYPE
))
7733 push_init_level (1);
7737 if (constructor_max_index
!= 0
7738 && (tree_int_cst_lt (constructor_max_index
, constructor_index
)
7739 || integer_all_onesp (constructor_max_index
)))
7741 pedwarn_init (input_location
, 0,
7742 "excess elements in array initializer");
7746 /* Now output the actual element. */
7749 push_array_bounds (tree_low_cst (constructor_index
, 1));
7750 output_init_element (value
.value
, value
.original_type
,
7751 strict_string
, elttype
,
7752 constructor_index
, 1, implicit
);
7753 RESTORE_SPELLING_DEPTH (constructor_depth
);
7757 = size_binop (PLUS_EXPR
, constructor_index
, bitsize_one_node
);
7760 /* If we are doing the bookkeeping for an element that was
7761 directly output as a constructor, we must update
7762 constructor_unfilled_index. */
7763 constructor_unfilled_index
= constructor_index
;
7765 else if (TREE_CODE (constructor_type
) == VECTOR_TYPE
)
7767 tree elttype
= TYPE_MAIN_VARIANT (TREE_TYPE (constructor_type
));
7769 /* Do a basic check of initializer size. Note that vectors
7770 always have a fixed size derived from their type. */
7771 if (tree_int_cst_lt (constructor_max_index
, constructor_index
))
7773 pedwarn_init (input_location
, 0,
7774 "excess elements in vector initializer");
7778 /* Now output the actual element. */
7781 if (TREE_CODE (value
.value
) == VECTOR_CST
)
7782 elttype
= TYPE_MAIN_VARIANT (constructor_type
);
7783 output_init_element (value
.value
, value
.original_type
,
7784 strict_string
, elttype
,
7785 constructor_index
, 1, implicit
);
7789 = size_binop (PLUS_EXPR
, constructor_index
, bitsize_one_node
);
7792 /* If we are doing the bookkeeping for an element that was
7793 directly output as a constructor, we must update
7794 constructor_unfilled_index. */
7795 constructor_unfilled_index
= constructor_index
;
7798 /* Handle the sole element allowed in a braced initializer
7799 for a scalar variable. */
7800 else if (constructor_type
!= error_mark_node
7801 && constructor_fields
== 0)
7803 pedwarn_init (input_location
, 0,
7804 "excess elements in scalar initializer");
7810 output_init_element (value
.value
, value
.original_type
,
7811 strict_string
, constructor_type
,
7812 NULL_TREE
, 1, implicit
);
7813 constructor_fields
= 0;
7816 /* Handle range initializers either at this level or anywhere higher
7817 in the designator stack. */
7818 if (constructor_range_stack
)
7820 struct constructor_range_stack
*p
, *range_stack
;
7823 range_stack
= constructor_range_stack
;
7824 constructor_range_stack
= 0;
7825 while (constructor_stack
!= range_stack
->stack
)
7827 gcc_assert (constructor_stack
->implicit
);
7828 process_init_element (pop_init_level (1), true);
7830 for (p
= range_stack
;
7831 !p
->range_end
|| tree_int_cst_equal (p
->index
, p
->range_end
);
7834 gcc_assert (constructor_stack
->implicit
);
7835 process_init_element (pop_init_level (1), true);
7838 p
->index
= size_binop (PLUS_EXPR
, p
->index
, bitsize_one_node
);
7839 if (tree_int_cst_equal (p
->index
, p
->range_end
) && !p
->prev
)
7844 constructor_index
= p
->index
;
7845 constructor_fields
= p
->fields
;
7846 if (finish
&& p
->range_end
&& p
->index
== p
->range_start
)
7854 push_init_level (2);
7855 p
->stack
= constructor_stack
;
7856 if (p
->range_end
&& tree_int_cst_equal (p
->index
, p
->range_end
))
7857 p
->index
= p
->range_start
;
7861 constructor_range_stack
= range_stack
;
7868 constructor_range_stack
= 0;
7871 /* Build a complete asm-statement, whose components are a CV_QUALIFIER
7872 (guaranteed to be 'volatile' or null) and ARGS (represented using
7873 an ASM_EXPR node). */
7875 build_asm_stmt (tree cv_qualifier
, tree args
)
7877 if (!ASM_VOLATILE_P (args
) && cv_qualifier
)
7878 ASM_VOLATILE_P (args
) = 1;
7879 return add_stmt (args
);
7882 /* Build an asm-expr, whose components are a STRING, some OUTPUTS,
7883 some INPUTS, and some CLOBBERS. The latter three may be NULL.
7884 SIMPLE indicates whether there was anything at all after the
7885 string in the asm expression -- asm("blah") and asm("blah" : )
7886 are subtly different. We use a ASM_EXPR node to represent this. */
7888 build_asm_expr (location_t loc
, tree string
, tree outputs
, tree inputs
,
7889 tree clobbers
, bool simple
)
7894 const char *constraint
;
7895 const char **oconstraints
;
7896 bool allows_mem
, allows_reg
, is_inout
;
7897 int ninputs
, noutputs
;
7899 ninputs
= list_length (inputs
);
7900 noutputs
= list_length (outputs
);
7901 oconstraints
= (const char **) alloca (noutputs
* sizeof (const char *));
7903 string
= resolve_asm_operand_names (string
, outputs
, inputs
);
7905 /* Remove output conversions that change the type but not the mode. */
7906 for (i
= 0, tail
= outputs
; tail
; ++i
, tail
= TREE_CHAIN (tail
))
7908 tree output
= TREE_VALUE (tail
);
7910 /* ??? Really, this should not be here. Users should be using a
7911 proper lvalue, dammit. But there's a long history of using casts
7912 in the output operands. In cases like longlong.h, this becomes a
7913 primitive form of typechecking -- if the cast can be removed, then
7914 the output operand had a type of the proper width; otherwise we'll
7915 get an error. Gross, but ... */
7916 STRIP_NOPS (output
);
7918 if (!lvalue_or_else (output
, lv_asm
))
7919 output
= error_mark_node
;
7921 if (output
!= error_mark_node
7922 && (TREE_READONLY (output
)
7923 || TYPE_READONLY (TREE_TYPE (output
))
7924 || ((TREE_CODE (TREE_TYPE (output
)) == RECORD_TYPE
7925 || TREE_CODE (TREE_TYPE (output
)) == UNION_TYPE
)
7926 && C_TYPE_FIELDS_READONLY (TREE_TYPE (output
)))))
7927 readonly_error (output
, lv_asm
);
7929 constraint
= TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (tail
)));
7930 oconstraints
[i
] = constraint
;
7932 if (parse_output_constraint (&constraint
, i
, ninputs
, noutputs
,
7933 &allows_mem
, &allows_reg
, &is_inout
))
7935 /* If the operand is going to end up in memory,
7936 mark it addressable. */
7937 if (!allows_reg
&& !c_mark_addressable (output
))
7938 output
= error_mark_node
;
7941 output
= error_mark_node
;
7943 TREE_VALUE (tail
) = output
;
7946 for (i
= 0, tail
= inputs
; tail
; ++i
, tail
= TREE_CHAIN (tail
))
7950 constraint
= TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (tail
)));
7951 input
= TREE_VALUE (tail
);
7953 if (parse_input_constraint (&constraint
, i
, ninputs
, noutputs
, 0,
7954 oconstraints
, &allows_mem
, &allows_reg
))
7956 /* If the operand is going to end up in memory,
7957 mark it addressable. */
7958 if (!allows_reg
&& allows_mem
)
7960 /* Strip the nops as we allow this case. FIXME, this really
7961 should be rejected or made deprecated. */
7963 if (!c_mark_addressable (input
))
7964 input
= error_mark_node
;
7968 input
= error_mark_node
;
7970 TREE_VALUE (tail
) = input
;
7973 args
= build_stmt (loc
, ASM_EXPR
, string
, outputs
, inputs
, clobbers
);
7975 /* asm statements without outputs, including simple ones, are treated
7977 ASM_INPUT_P (args
) = simple
;
7978 ASM_VOLATILE_P (args
) = (noutputs
== 0);
7983 /* Generate a goto statement to LABEL. LOC is the location of the
7987 c_finish_goto_label (location_t loc
, tree label
)
7989 tree decl
= lookup_label_for_goto (loc
, label
);
7992 TREE_USED (decl
) = 1;
7994 tree t
= build1 (GOTO_EXPR
, void_type_node
, decl
);
7995 SET_EXPR_LOCATION (t
, loc
);
7996 return add_stmt (t
);
8000 /* Generate a computed goto statement to EXPR. LOC is the location of
8004 c_finish_goto_ptr (location_t loc
, tree expr
)
8007 pedwarn (loc
, OPT_pedantic
, "ISO C forbids %<goto *expr;%>");
8008 expr
= c_fully_fold (expr
, false, NULL
);
8009 expr
= convert (ptr_type_node
, expr
);
8010 t
= build1 (GOTO_EXPR
, void_type_node
, expr
);
8011 SET_EXPR_LOCATION (t
, loc
);
8012 return add_stmt (t
);
8015 /* Generate a C `return' statement. RETVAL is the expression for what
8016 to return, or a null pointer for `return;' with no value. LOC is
8017 the location of the return statement. If ORIGTYPE is not NULL_TREE, it
8018 is the original type of RETVAL. */
8021 c_finish_return (location_t loc
, tree retval
, tree origtype
)
8023 tree valtype
= TREE_TYPE (TREE_TYPE (current_function_decl
)), ret_stmt
;
8024 bool no_warning
= false;
8027 if (TREE_THIS_VOLATILE (current_function_decl
))
8029 "function declared %<noreturn%> has a %<return%> statement");
8033 tree semantic_type
= NULL_TREE
;
8034 npc
= null_pointer_constant_p (retval
);
8035 if (TREE_CODE (retval
) == EXCESS_PRECISION_EXPR
)
8037 semantic_type
= TREE_TYPE (retval
);
8038 retval
= TREE_OPERAND (retval
, 0);
8040 retval
= c_fully_fold (retval
, false, NULL
);
8042 retval
= build1 (EXCESS_PRECISION_EXPR
, semantic_type
, retval
);
8047 current_function_returns_null
= 1;
8048 if ((warn_return_type
|| flag_isoc99
)
8049 && valtype
!= 0 && TREE_CODE (valtype
) != VOID_TYPE
)
8051 pedwarn_c99 (loc
, flag_isoc99
? 0 : OPT_Wreturn_type
,
8052 "%<return%> with no value, in "
8053 "function returning non-void");
8057 else if (valtype
== 0 || TREE_CODE (valtype
) == VOID_TYPE
)
8059 current_function_returns_null
= 1;
8060 if (TREE_CODE (TREE_TYPE (retval
)) != VOID_TYPE
)
8062 "%<return%> with a value, in function returning void");
8064 pedwarn (loc
, OPT_pedantic
, "ISO C forbids "
8065 "%<return%> with expression, in function returning void");
8069 tree t
= convert_for_assignment (loc
, valtype
, retval
, origtype
,
8071 npc
, NULL_TREE
, NULL_TREE
, 0);
8072 tree res
= DECL_RESULT (current_function_decl
);
8075 current_function_returns_value
= 1;
8076 if (t
== error_mark_node
)
8079 inner
= t
= convert (TREE_TYPE (res
), t
);
8081 /* Strip any conversions, additions, and subtractions, and see if
8082 we are returning the address of a local variable. Warn if so. */
8085 switch (TREE_CODE (inner
))
8088 case NON_LVALUE_EXPR
:
8090 case POINTER_PLUS_EXPR
:
8091 inner
= TREE_OPERAND (inner
, 0);
8095 /* If the second operand of the MINUS_EXPR has a pointer
8096 type (or is converted from it), this may be valid, so
8097 don't give a warning. */
8099 tree op1
= TREE_OPERAND (inner
, 1);
8101 while (!POINTER_TYPE_P (TREE_TYPE (op1
))
8102 && (CONVERT_EXPR_P (op1
)
8103 || TREE_CODE (op1
) == NON_LVALUE_EXPR
))
8104 op1
= TREE_OPERAND (op1
, 0);
8106 if (POINTER_TYPE_P (TREE_TYPE (op1
)))
8109 inner
= TREE_OPERAND (inner
, 0);
8114 inner
= TREE_OPERAND (inner
, 0);
8116 while (REFERENCE_CLASS_P (inner
)
8117 && TREE_CODE (inner
) != INDIRECT_REF
)
8118 inner
= TREE_OPERAND (inner
, 0);
8121 && !DECL_EXTERNAL (inner
)
8122 && !TREE_STATIC (inner
)
8123 && DECL_CONTEXT (inner
) == current_function_decl
)
8125 0, "function returns address of local variable");
8135 retval
= build2 (MODIFY_EXPR
, TREE_TYPE (res
), res
, t
);
8136 SET_EXPR_LOCATION (retval
, loc
);
8138 if (warn_sequence_point
)
8139 verify_sequence_points (retval
);
8142 ret_stmt
= build_stmt (loc
, RETURN_EXPR
, retval
);
8143 TREE_NO_WARNING (ret_stmt
) |= no_warning
;
8144 return add_stmt (ret_stmt
);
8148 /* The SWITCH_EXPR being built. */
8151 /* The original type of the testing expression, i.e. before the
8152 default conversion is applied. */
8155 /* A splay-tree mapping the low element of a case range to the high
8156 element, or NULL_TREE if there is no high element. Used to
8157 determine whether or not a new case label duplicates an old case
8158 label. We need a tree, rather than simply a hash table, because
8159 of the GNU case range extension. */
8162 /* The bindings at the point of the switch. This is used for
8163 warnings crossing decls when branching to a case label. */
8164 struct c_spot_bindings
*bindings
;
8166 /* The next node on the stack. */
8167 struct c_switch
*next
;
8170 /* A stack of the currently active switch statements. The innermost
8171 switch statement is on the top of the stack. There is no need to
8172 mark the stack for garbage collection because it is only active
8173 during the processing of the body of a function, and we never
8174 collect at that point. */
8176 struct c_switch
*c_switch_stack
;
8178 /* Start a C switch statement, testing expression EXP. Return the new
8179 SWITCH_EXPR. SWITCH_LOC is the location of the `switch'.
8180 SWITCH_COND_LOC is the location of the switch's condition. */
8183 c_start_case (location_t switch_loc
,
8184 location_t switch_cond_loc
,
8187 tree orig_type
= error_mark_node
;
8188 struct c_switch
*cs
;
8190 if (exp
!= error_mark_node
)
8192 orig_type
= TREE_TYPE (exp
);
8194 if (!INTEGRAL_TYPE_P (orig_type
))
8196 if (orig_type
!= error_mark_node
)
8198 error_at (switch_cond_loc
, "switch quantity not an integer");
8199 orig_type
= error_mark_node
;
8201 exp
= integer_zero_node
;
8205 tree type
= TYPE_MAIN_VARIANT (orig_type
);
8207 if (!in_system_header
8208 && (type
== long_integer_type_node
8209 || type
== long_unsigned_type_node
))
8210 warning_at (switch_cond_loc
,
8211 OPT_Wtraditional
, "%<long%> switch expression not "
8212 "converted to %<int%> in ISO C");
8214 exp
= c_fully_fold (exp
, false, NULL
);
8215 exp
= default_conversion (exp
);
8217 if (warn_sequence_point
)
8218 verify_sequence_points (exp
);
8222 /* Add this new SWITCH_EXPR to the stack. */
8223 cs
= XNEW (struct c_switch
);
8224 cs
->switch_expr
= build3 (SWITCH_EXPR
, orig_type
, exp
, NULL_TREE
, NULL_TREE
);
8225 SET_EXPR_LOCATION (cs
->switch_expr
, switch_loc
);
8226 cs
->orig_type
= orig_type
;
8227 cs
->cases
= splay_tree_new (case_compare
, NULL
, NULL
);
8228 cs
->bindings
= c_get_switch_bindings ();
8229 cs
->next
= c_switch_stack
;
8230 c_switch_stack
= cs
;
8232 return add_stmt (cs
->switch_expr
);
8235 /* Process a case label at location LOC. */
8238 do_case (location_t loc
, tree low_value
, tree high_value
)
8240 tree label
= NULL_TREE
;
8242 if (low_value
&& TREE_CODE (low_value
) != INTEGER_CST
)
8244 low_value
= c_fully_fold (low_value
, false, NULL
);
8245 if (TREE_CODE (low_value
) == INTEGER_CST
)
8246 pedwarn (input_location
, OPT_pedantic
,
8247 "case label is not an integer constant expression");
8250 if (high_value
&& TREE_CODE (high_value
) != INTEGER_CST
)
8252 high_value
= c_fully_fold (high_value
, false, NULL
);
8253 if (TREE_CODE (high_value
) == INTEGER_CST
)
8254 pedwarn (input_location
, OPT_pedantic
,
8255 "case label is not an integer constant expression");
8258 if (c_switch_stack
== NULL
)
8261 error_at (loc
, "case label not within a switch statement");
8263 error_at (loc
, "%<default%> label not within a switch statement");
8267 if (c_check_switch_jump_warnings (c_switch_stack
->bindings
,
8268 EXPR_LOCATION (c_switch_stack
->switch_expr
),
8272 label
= c_add_case_label (loc
, c_switch_stack
->cases
,
8273 SWITCH_COND (c_switch_stack
->switch_expr
),
8274 c_switch_stack
->orig_type
,
8275 low_value
, high_value
);
8276 if (label
== error_mark_node
)
8281 /* Finish the switch statement. */
8284 c_finish_case (tree body
)
8286 struct c_switch
*cs
= c_switch_stack
;
8287 location_t switch_location
;
8289 SWITCH_BODY (cs
->switch_expr
) = body
;
8291 /* Emit warnings as needed. */
8292 switch_location
= EXPR_LOCATION (cs
->switch_expr
);
8293 c_do_switch_warnings (cs
->cases
, switch_location
,
8294 TREE_TYPE (cs
->switch_expr
),
8295 SWITCH_COND (cs
->switch_expr
));
8297 /* Pop the stack. */
8298 c_switch_stack
= cs
->next
;
8299 splay_tree_delete (cs
->cases
);
8300 c_release_switch_bindings (cs
->bindings
);
8304 /* Emit an if statement. IF_LOCUS is the location of the 'if'. COND,
8305 THEN_BLOCK and ELSE_BLOCK are expressions to be used; ELSE_BLOCK
8306 may be null. NESTED_IF is true if THEN_BLOCK contains another IF
8307 statement, and was not surrounded with parenthesis. */
8310 c_finish_if_stmt (location_t if_locus
, tree cond
, tree then_block
,
8311 tree else_block
, bool nested_if
)
8315 /* Diagnose an ambiguous else if if-then-else is nested inside if-then. */
8316 if (warn_parentheses
&& nested_if
&& else_block
== NULL
)
8318 tree inner_if
= then_block
;
8320 /* We know from the grammar productions that there is an IF nested
8321 within THEN_BLOCK. Due to labels and c99 conditional declarations,
8322 it might not be exactly THEN_BLOCK, but should be the last
8323 non-container statement within. */
8325 switch (TREE_CODE (inner_if
))
8330 inner_if
= BIND_EXPR_BODY (inner_if
);
8332 case STATEMENT_LIST
:
8333 inner_if
= expr_last (then_block
);
8335 case TRY_FINALLY_EXPR
:
8336 case TRY_CATCH_EXPR
:
8337 inner_if
= TREE_OPERAND (inner_if
, 0);
8344 if (COND_EXPR_ELSE (inner_if
))
8345 warning (OPT_Wparentheses
,
8346 "%Hsuggest explicit braces to avoid ambiguous %<else%>",
8350 stmt
= build3 (COND_EXPR
, void_type_node
, cond
, then_block
, else_block
);
8351 SET_EXPR_LOCATION (stmt
, if_locus
);
8355 /* Emit a general-purpose loop construct. START_LOCUS is the location of
8356 the beginning of the loop. COND is the loop condition. COND_IS_FIRST
8357 is false for DO loops. INCR is the FOR increment expression. BODY is
8358 the statement controlled by the loop. BLAB is the break label. CLAB is
8359 the continue label. Everything is allowed to be NULL. */
8362 c_finish_loop (location_t start_locus
, tree cond
, tree incr
, tree body
,
8363 tree blab
, tree clab
, bool cond_is_first
)
8365 tree entry
= NULL
, exit
= NULL
, t
;
8367 /* If the condition is zero don't generate a loop construct. */
8368 if (cond
&& integer_zerop (cond
))
8372 t
= build_and_jump (&blab
);
8373 SET_EXPR_LOCATION (t
, start_locus
);
8379 tree top
= build1 (LABEL_EXPR
, void_type_node
, NULL_TREE
);
8381 /* If we have an exit condition, then we build an IF with gotos either
8382 out of the loop, or to the top of it. If there's no exit condition,
8383 then we just build a jump back to the top. */
8384 exit
= build_and_jump (&LABEL_EXPR_LABEL (top
));
8386 if (cond
&& !integer_nonzerop (cond
))
8388 /* Canonicalize the loop condition to the end. This means
8389 generating a branch to the loop condition. Reuse the
8390 continue label, if possible. */
8395 entry
= build1 (LABEL_EXPR
, void_type_node
, NULL_TREE
);
8396 t
= build_and_jump (&LABEL_EXPR_LABEL (entry
));
8399 t
= build1 (GOTO_EXPR
, void_type_node
, clab
);
8400 SET_EXPR_LOCATION (t
, start_locus
);
8404 t
= build_and_jump (&blab
);
8405 exit
= fold_build3 (COND_EXPR
, void_type_node
, cond
, exit
, t
);
8407 SET_EXPR_LOCATION (exit
, start_locus
);
8409 SET_EXPR_LOCATION (exit
, input_location
);
8418 add_stmt (build1 (LABEL_EXPR
, void_type_node
, clab
));
8426 add_stmt (build1 (LABEL_EXPR
, void_type_node
, blab
));
8430 c_finish_bc_stmt (location_t loc
, tree
*label_p
, bool is_break
)
8433 tree label
= *label_p
;
8435 /* In switch statements break is sometimes stylistically used after
8436 a return statement. This can lead to spurious warnings about
8437 control reaching the end of a non-void function when it is
8438 inlined. Note that we are calling block_may_fallthru with
8439 language specific tree nodes; this works because
8440 block_may_fallthru returns true when given something it does not
8442 skip
= !block_may_fallthru (cur_stmt_list
);
8447 *label_p
= label
= create_artificial_label (loc
);
8449 else if (TREE_CODE (label
) == LABEL_DECL
)
8451 else switch (TREE_INT_CST_LOW (label
))
8455 error_at (loc
, "break statement not within loop or switch");
8457 error_at (loc
, "continue statement not within a loop");
8461 gcc_assert (is_break
);
8462 error_at (loc
, "break statement used with OpenMP for loop");
8473 add_stmt (build_predict_expr (PRED_CONTINUE
, NOT_TAKEN
));
8475 return add_stmt (build1 (GOTO_EXPR
, void_type_node
, label
));
8478 /* A helper routine for c_process_expr_stmt and c_finish_stmt_expr. */
8481 emit_side_effect_warnings (location_t loc
, tree expr
)
8483 if (expr
== error_mark_node
)
8485 else if (!TREE_SIDE_EFFECTS (expr
))
8487 if (!VOID_TYPE_P (TREE_TYPE (expr
)) && !TREE_NO_WARNING (expr
))
8488 warning_at (loc
, OPT_Wunused_value
, "statement with no effect");
8491 warn_if_unused_value (expr
, loc
);
8494 /* Process an expression as if it were a complete statement. Emit
8495 diagnostics, but do not call ADD_STMT. LOC is the location of the
8499 c_process_expr_stmt (location_t loc
, tree expr
)
8504 expr
= c_fully_fold (expr
, false, NULL
);
8506 if (warn_sequence_point
)
8507 verify_sequence_points (expr
);
8509 if (TREE_TYPE (expr
) != error_mark_node
8510 && !COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (expr
))
8511 && TREE_CODE (TREE_TYPE (expr
)) != ARRAY_TYPE
)
8512 error_at (loc
, "expression statement has incomplete type");
8514 /* If we're not processing a statement expression, warn about unused values.
8515 Warnings for statement expressions will be emitted later, once we figure
8516 out which is the result. */
8517 if (!STATEMENT_LIST_STMT_EXPR (cur_stmt_list
)
8518 && warn_unused_value
)
8519 emit_side_effect_warnings (loc
, expr
);
8521 /* If the expression is not of a type to which we cannot assign a line
8522 number, wrap the thing in a no-op NOP_EXPR. */
8523 if (DECL_P (expr
) || CONSTANT_CLASS_P (expr
))
8525 expr
= build1 (NOP_EXPR
, TREE_TYPE (expr
), expr
);
8526 SET_EXPR_LOCATION (expr
, loc
);
8532 /* Emit an expression as a statement. LOC is the location of the
8536 c_finish_expr_stmt (location_t loc
, tree expr
)
8539 return add_stmt (c_process_expr_stmt (loc
, expr
));
8544 /* Do the opposite and emit a statement as an expression. To begin,
8545 create a new binding level and return it. */
8548 c_begin_stmt_expr (void)
8552 /* We must force a BLOCK for this level so that, if it is not expanded
8553 later, there is a way to turn off the entire subtree of blocks that
8554 are contained in it. */
8556 ret
= c_begin_compound_stmt (true);
8558 c_bindings_start_stmt_expr (c_switch_stack
== NULL
8560 : c_switch_stack
->bindings
);
8562 /* Mark the current statement list as belonging to a statement list. */
8563 STATEMENT_LIST_STMT_EXPR (ret
) = 1;
8568 /* LOC is the location of the compound statement to which this body
8572 c_finish_stmt_expr (location_t loc
, tree body
)
8574 tree last
, type
, tmp
, val
;
8577 body
= c_end_compound_stmt (loc
, body
, true);
8579 c_bindings_end_stmt_expr (c_switch_stack
== NULL
8581 : c_switch_stack
->bindings
);
8583 /* Locate the last statement in BODY. See c_end_compound_stmt
8584 about always returning a BIND_EXPR. */
8585 last_p
= &BIND_EXPR_BODY (body
);
8586 last
= BIND_EXPR_BODY (body
);
8589 if (TREE_CODE (last
) == STATEMENT_LIST
)
8591 tree_stmt_iterator i
;
8593 /* This can happen with degenerate cases like ({ }). No value. */
8594 if (!TREE_SIDE_EFFECTS (last
))
8597 /* If we're supposed to generate side effects warnings, process
8598 all of the statements except the last. */
8599 if (warn_unused_value
)
8601 for (i
= tsi_start (last
); !tsi_one_before_end_p (i
); tsi_next (&i
))
8604 tree t
= tsi_stmt (i
);
8606 tloc
= EXPR_HAS_LOCATION (t
) ? EXPR_LOCATION (t
) : loc
;
8607 emit_side_effect_warnings (tloc
, t
);
8611 i
= tsi_last (last
);
8612 last_p
= tsi_stmt_ptr (i
);
8616 /* If the end of the list is exception related, then the list was split
8617 by a call to push_cleanup. Continue searching. */
8618 if (TREE_CODE (last
) == TRY_FINALLY_EXPR
8619 || TREE_CODE (last
) == TRY_CATCH_EXPR
)
8621 last_p
= &TREE_OPERAND (last
, 0);
8623 goto continue_searching
;
8626 /* In the case that the BIND_EXPR is not necessary, return the
8627 expression out from inside it. */
8628 if (last
== error_mark_node
8629 || (last
== BIND_EXPR_BODY (body
)
8630 && BIND_EXPR_VARS (body
) == NULL
))
8632 /* Even if this looks constant, do not allow it in a constant
8634 last
= build2 (C_MAYBE_CONST_EXPR
, TREE_TYPE (last
), NULL_TREE
, last
);
8635 C_MAYBE_CONST_EXPR_NON_CONST (last
) = 1;
8636 /* Do not warn if the return value of a statement expression is
8638 TREE_NO_WARNING (last
) = 1;
8642 /* Extract the type of said expression. */
8643 type
= TREE_TYPE (last
);
8645 /* If we're not returning a value at all, then the BIND_EXPR that
8646 we already have is a fine expression to return. */
8647 if (!type
|| VOID_TYPE_P (type
))
8650 /* Now that we've located the expression containing the value, it seems
8651 silly to make voidify_wrapper_expr repeat the process. Create a
8652 temporary of the appropriate type and stick it in a TARGET_EXPR. */
8653 tmp
= create_tmp_var_raw (type
, NULL
);
8655 /* Unwrap a no-op NOP_EXPR as added by c_finish_expr_stmt. This avoids
8656 tree_expr_nonnegative_p giving up immediately. */
8658 if (TREE_CODE (val
) == NOP_EXPR
8659 && TREE_TYPE (val
) == TREE_TYPE (TREE_OPERAND (val
, 0)))
8660 val
= TREE_OPERAND (val
, 0);
8662 *last_p
= build2 (MODIFY_EXPR
, void_type_node
, tmp
, val
);
8663 SET_EXPR_LOCUS (*last_p
, EXPR_LOCUS (last
));
8666 tree t
= build4 (TARGET_EXPR
, type
, tmp
, body
, NULL_TREE
, NULL_TREE
);
8667 SET_EXPR_LOCATION (t
, loc
);
8672 /* Begin and end compound statements. This is as simple as pushing
8673 and popping new statement lists from the tree. */
8676 c_begin_compound_stmt (bool do_scope
)
8678 tree stmt
= push_stmt_list ();
8684 /* End a compound statement. STMT is the statement. LOC is the
8685 location of the compound statement-- this is usually the location
8686 of the opening brace. */
8689 c_end_compound_stmt (location_t loc
, tree stmt
, bool do_scope
)
8695 if (c_dialect_objc ())
8696 objc_clear_super_receiver ();
8697 block
= pop_scope ();
8700 stmt
= pop_stmt_list (stmt
);
8701 stmt
= c_build_bind_expr (loc
, block
, stmt
);
8703 /* If this compound statement is nested immediately inside a statement
8704 expression, then force a BIND_EXPR to be created. Otherwise we'll
8705 do the wrong thing for ({ { 1; } }) or ({ 1; { } }). In particular,
8706 STATEMENT_LISTs merge, and thus we can lose track of what statement
8709 && STATEMENT_LIST_STMT_EXPR (cur_stmt_list
)
8710 && TREE_CODE (stmt
) != BIND_EXPR
)
8712 stmt
= build3 (BIND_EXPR
, void_type_node
, NULL
, stmt
, NULL
);
8713 TREE_SIDE_EFFECTS (stmt
) = 1;
8714 SET_EXPR_LOCATION (stmt
, loc
);
8720 /* Queue a cleanup. CLEANUP is an expression/statement to be executed
8721 when the current scope is exited. EH_ONLY is true when this is not
8722 meant to apply to normal control flow transfer. */
8725 push_cleanup (tree decl
, tree cleanup
, bool eh_only
)
8727 enum tree_code code
;
8731 code
= eh_only
? TRY_CATCH_EXPR
: TRY_FINALLY_EXPR
;
8732 stmt
= build_stmt (DECL_SOURCE_LOCATION (decl
), code
, NULL
, cleanup
);
8734 stmt_expr
= STATEMENT_LIST_STMT_EXPR (cur_stmt_list
);
8735 list
= push_stmt_list ();
8736 TREE_OPERAND (stmt
, 0) = list
;
8737 STATEMENT_LIST_STMT_EXPR (list
) = stmt_expr
;
8740 /* Build a binary-operation expression without default conversions.
8741 CODE is the kind of expression to build.
8742 LOCATION is the operator's location.
8743 This function differs from `build' in several ways:
8744 the data type of the result is computed and recorded in it,
8745 warnings are generated if arg data types are invalid,
8746 special handling for addition and subtraction of pointers is known,
8747 and some optimization is done (operations on narrow ints
8748 are done in the narrower type when that gives the same result).
8749 Constant folding is also done before the result is returned.
8751 Note that the operands will never have enumeral types, or function
8752 or array types, because either they will have the default conversions
8753 performed or they have both just been converted to some other type in which
8754 the arithmetic is to be done. */
8757 build_binary_op (location_t location
, enum tree_code code
,
8758 tree orig_op0
, tree orig_op1
, int convert_p
)
8760 tree type0
, type1
, orig_type0
, orig_type1
;
8762 enum tree_code code0
, code1
;
8764 tree ret
= error_mark_node
;
8765 const char *invalid_op_diag
;
8766 bool op0_int_operands
, op1_int_operands
;
8767 bool int_const
, int_const_or_overflow
, int_operands
;
8769 /* Expression code to give to the expression when it is built.
8770 Normally this is CODE, which is what the caller asked for,
8771 but in some special cases we change it. */
8772 enum tree_code resultcode
= code
;
8774 /* Data type in which the computation is to be performed.
8775 In the simplest cases this is the common type of the arguments. */
8776 tree result_type
= NULL
;
8778 /* When the computation is in excess precision, the type of the
8779 final EXCESS_PRECISION_EXPR. */
8780 tree real_result_type
= NULL
;
8782 /* Nonzero means operands have already been type-converted
8783 in whatever way is necessary.
8784 Zero means they need to be converted to RESULT_TYPE. */
8787 /* Nonzero means create the expression with this type, rather than
8789 tree build_type
= 0;
8791 /* Nonzero means after finally constructing the expression
8792 convert it to this type. */
8793 tree final_type
= 0;
8795 /* Nonzero if this is an operation like MIN or MAX which can
8796 safely be computed in short if both args are promoted shorts.
8797 Also implies COMMON.
8798 -1 indicates a bitwise operation; this makes a difference
8799 in the exact conditions for when it is safe to do the operation
8800 in a narrower mode. */
8803 /* Nonzero if this is a comparison operation;
8804 if both args are promoted shorts, compare the original shorts.
8805 Also implies COMMON. */
8806 int short_compare
= 0;
8808 /* Nonzero if this is a right-shift operation, which can be computed on the
8809 original short and then promoted if the operand is a promoted short. */
8810 int short_shift
= 0;
8812 /* Nonzero means set RESULT_TYPE to the common type of the args. */
8815 /* True means types are compatible as far as ObjC is concerned. */
8818 /* True means this is an arithmetic operation that may need excess
8820 bool may_need_excess_precision
;
8822 if (location
== UNKNOWN_LOCATION
)
8823 location
= input_location
;
8828 op0_int_operands
= EXPR_INT_CONST_OPERANDS (orig_op0
);
8829 if (op0_int_operands
)
8830 op0
= remove_c_maybe_const_expr (op0
);
8831 op1_int_operands
= EXPR_INT_CONST_OPERANDS (orig_op1
);
8832 if (op1_int_operands
)
8833 op1
= remove_c_maybe_const_expr (op1
);
8834 int_operands
= (op0_int_operands
&& op1_int_operands
);
8837 int_const_or_overflow
= (TREE_CODE (orig_op0
) == INTEGER_CST
8838 && TREE_CODE (orig_op1
) == INTEGER_CST
);
8839 int_const
= (int_const_or_overflow
8840 && !TREE_OVERFLOW (orig_op0
)
8841 && !TREE_OVERFLOW (orig_op1
));
8844 int_const
= int_const_or_overflow
= false;
8848 op0
= default_conversion (op0
);
8849 op1
= default_conversion (op1
);
8852 orig_type0
= type0
= TREE_TYPE (op0
);
8853 orig_type1
= type1
= TREE_TYPE (op1
);
8855 /* The expression codes of the data types of the arguments tell us
8856 whether the arguments are integers, floating, pointers, etc. */
8857 code0
= TREE_CODE (type0
);
8858 code1
= TREE_CODE (type1
);
8860 /* Strip NON_LVALUE_EXPRs, etc., since we aren't using as an lvalue. */
8861 STRIP_TYPE_NOPS (op0
);
8862 STRIP_TYPE_NOPS (op1
);
8864 /* If an error was already reported for one of the arguments,
8865 avoid reporting another error. */
8867 if (code0
== ERROR_MARK
|| code1
== ERROR_MARK
)
8868 return error_mark_node
;
8870 if ((invalid_op_diag
8871 = targetm
.invalid_binary_op (code
, type0
, type1
)))
8873 error_at (location
, invalid_op_diag
);
8874 return error_mark_node
;
8882 case TRUNC_DIV_EXPR
:
8884 case FLOOR_DIV_EXPR
:
8885 case ROUND_DIV_EXPR
:
8886 case EXACT_DIV_EXPR
:
8887 may_need_excess_precision
= true;
8890 may_need_excess_precision
= false;
8893 if (TREE_CODE (op0
) == EXCESS_PRECISION_EXPR
)
8895 op0
= TREE_OPERAND (op0
, 0);
8896 type0
= TREE_TYPE (op0
);
8898 else if (may_need_excess_precision
8899 && (eptype
= excess_precision_type (type0
)) != NULL_TREE
)
8902 op0
= convert (eptype
, op0
);
8904 if (TREE_CODE (op1
) == EXCESS_PRECISION_EXPR
)
8906 op1
= TREE_OPERAND (op1
, 0);
8907 type1
= TREE_TYPE (op1
);
8909 else if (may_need_excess_precision
8910 && (eptype
= excess_precision_type (type1
)) != NULL_TREE
)
8913 op1
= convert (eptype
, op1
);
8916 objc_ok
= objc_compare_types (type0
, type1
, -3, NULL_TREE
);
8921 /* Handle the pointer + int case. */
8922 if (code0
== POINTER_TYPE
&& code1
== INTEGER_TYPE
)
8924 ret
= pointer_int_sum (PLUS_EXPR
, op0
, op1
);
8925 goto return_build_binary_op
;
8927 else if (code1
== POINTER_TYPE
&& code0
== INTEGER_TYPE
)
8929 ret
= pointer_int_sum (PLUS_EXPR
, op1
, op0
);
8930 goto return_build_binary_op
;
8937 /* Subtraction of two similar pointers.
8938 We must subtract them as integers, then divide by object size. */
8939 if (code0
== POINTER_TYPE
&& code1
== POINTER_TYPE
8940 && comp_target_types (location
, type0
, type1
))
8942 ret
= pointer_diff (op0
, op1
);
8943 goto return_build_binary_op
;
8945 /* Handle pointer minus int. Just like pointer plus int. */
8946 else if (code0
== POINTER_TYPE
&& code1
== INTEGER_TYPE
)
8948 ret
= pointer_int_sum (MINUS_EXPR
, op0
, op1
);
8949 goto return_build_binary_op
;
8959 case TRUNC_DIV_EXPR
:
8961 case FLOOR_DIV_EXPR
:
8962 case ROUND_DIV_EXPR
:
8963 case EXACT_DIV_EXPR
:
8964 warn_for_div_by_zero (location
, op1
);
8966 if ((code0
== INTEGER_TYPE
|| code0
== REAL_TYPE
8967 || code0
== FIXED_POINT_TYPE
8968 || code0
== COMPLEX_TYPE
|| code0
== VECTOR_TYPE
)
8969 && (code1
== INTEGER_TYPE
|| code1
== REAL_TYPE
8970 || code1
== FIXED_POINT_TYPE
8971 || code1
== COMPLEX_TYPE
|| code1
== VECTOR_TYPE
))
8973 enum tree_code tcode0
= code0
, tcode1
= code1
;
8975 if (code0
== COMPLEX_TYPE
|| code0
== VECTOR_TYPE
)
8976 tcode0
= TREE_CODE (TREE_TYPE (TREE_TYPE (op0
)));
8977 if (code1
== COMPLEX_TYPE
|| code1
== VECTOR_TYPE
)
8978 tcode1
= TREE_CODE (TREE_TYPE (TREE_TYPE (op1
)));
8980 if (!((tcode0
== INTEGER_TYPE
&& tcode1
== INTEGER_TYPE
)
8981 || (tcode0
== FIXED_POINT_TYPE
&& tcode1
== FIXED_POINT_TYPE
)))
8982 resultcode
= RDIV_EXPR
;
8984 /* Although it would be tempting to shorten always here, that
8985 loses on some targets, since the modulo instruction is
8986 undefined if the quotient can't be represented in the
8987 computation mode. We shorten only if unsigned or if
8988 dividing by something we know != -1. */
8989 shorten
= (TYPE_UNSIGNED (TREE_TYPE (orig_op0
))
8990 || (TREE_CODE (op1
) == INTEGER_CST
8991 && !integer_all_onesp (op1
)));
8999 if (code0
== INTEGER_TYPE
&& code1
== INTEGER_TYPE
)
9001 /* Allow vector types which are not floating point types. */
9002 else if (code0
== VECTOR_TYPE
9003 && code1
== VECTOR_TYPE
9004 && !VECTOR_FLOAT_TYPE_P (type0
)
9005 && !VECTOR_FLOAT_TYPE_P (type1
))
9009 case TRUNC_MOD_EXPR
:
9010 case FLOOR_MOD_EXPR
:
9011 warn_for_div_by_zero (location
, op1
);
9013 if (code0
== VECTOR_TYPE
&& code1
== VECTOR_TYPE
9014 && TREE_CODE (TREE_TYPE (type0
)) == INTEGER_TYPE
9015 && TREE_CODE (TREE_TYPE (type1
)) == INTEGER_TYPE
)
9017 else if (code0
== INTEGER_TYPE
&& code1
== INTEGER_TYPE
)
9019 /* Although it would be tempting to shorten always here, that loses
9020 on some targets, since the modulo instruction is undefined if the
9021 quotient can't be represented in the computation mode. We shorten
9022 only if unsigned or if dividing by something we know != -1. */
9023 shorten
= (TYPE_UNSIGNED (TREE_TYPE (orig_op0
))
9024 || (TREE_CODE (op1
) == INTEGER_CST
9025 && !integer_all_onesp (op1
)));
9030 case TRUTH_ANDIF_EXPR
:
9031 case TRUTH_ORIF_EXPR
:
9032 case TRUTH_AND_EXPR
:
9034 case TRUTH_XOR_EXPR
:
9035 if ((code0
== INTEGER_TYPE
|| code0
== POINTER_TYPE
9036 || code0
== REAL_TYPE
|| code0
== COMPLEX_TYPE
9037 || code0
== FIXED_POINT_TYPE
)
9038 && (code1
== INTEGER_TYPE
|| code1
== POINTER_TYPE
9039 || code1
== REAL_TYPE
|| code1
== COMPLEX_TYPE
9040 || code1
== FIXED_POINT_TYPE
))
9042 /* Result of these operations is always an int,
9043 but that does not mean the operands should be
9044 converted to ints! */
9045 result_type
= integer_type_node
;
9046 op0
= c_common_truthvalue_conversion (location
, op0
);
9047 op1
= c_common_truthvalue_conversion (location
, op1
);
9050 if (code
== TRUTH_ANDIF_EXPR
)
9052 int_const_or_overflow
= (int_operands
9053 && TREE_CODE (orig_op0
) == INTEGER_CST
9054 && (op0
== truthvalue_false_node
9055 || TREE_CODE (orig_op1
) == INTEGER_CST
));
9056 int_const
= (int_const_or_overflow
9057 && !TREE_OVERFLOW (orig_op0
)
9058 && (op0
== truthvalue_false_node
9059 || !TREE_OVERFLOW (orig_op1
)));
9061 else if (code
== TRUTH_ORIF_EXPR
)
9063 int_const_or_overflow
= (int_operands
9064 && TREE_CODE (orig_op0
) == INTEGER_CST
9065 && (op0
== truthvalue_true_node
9066 || TREE_CODE (orig_op1
) == INTEGER_CST
));
9067 int_const
= (int_const_or_overflow
9068 && !TREE_OVERFLOW (orig_op0
)
9069 && (op0
== truthvalue_true_node
9070 || !TREE_OVERFLOW (orig_op1
)));
9074 /* Shift operations: result has same type as first operand;
9075 always convert second operand to int.
9076 Also set SHORT_SHIFT if shifting rightward. */
9079 if ((code0
== INTEGER_TYPE
|| code0
== FIXED_POINT_TYPE
)
9080 && code1
== INTEGER_TYPE
)
9082 if (TREE_CODE (op1
) == INTEGER_CST
)
9084 if (tree_int_cst_sgn (op1
) < 0)
9087 if (c_inhibit_evaluation_warnings
== 0)
9088 warning (0, "right shift count is negative");
9092 if (!integer_zerop (op1
))
9095 if (compare_tree_int (op1
, TYPE_PRECISION (type0
)) >= 0)
9098 if (c_inhibit_evaluation_warnings
== 0)
9099 warning (0, "right shift count >= width of type");
9104 /* Use the type of the value to be shifted. */
9105 result_type
= type0
;
9106 /* Convert the shift-count to an integer, regardless of size
9107 of value being shifted. */
9108 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1
)) != integer_type_node
)
9109 op1
= convert (integer_type_node
, op1
);
9110 /* Avoid converting op1 to result_type later. */
9116 if ((code0
== INTEGER_TYPE
|| code0
== FIXED_POINT_TYPE
)
9117 && code1
== INTEGER_TYPE
)
9119 if (TREE_CODE (op1
) == INTEGER_CST
)
9121 if (tree_int_cst_sgn (op1
) < 0)
9124 if (c_inhibit_evaluation_warnings
== 0)
9125 warning (0, "left shift count is negative");
9128 else if (compare_tree_int (op1
, TYPE_PRECISION (type0
)) >= 0)
9131 if (c_inhibit_evaluation_warnings
== 0)
9132 warning (0, "left shift count >= width of type");
9136 /* Use the type of the value to be shifted. */
9137 result_type
= type0
;
9138 /* Convert the shift-count to an integer, regardless of size
9139 of value being shifted. */
9140 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1
)) != integer_type_node
)
9141 op1
= convert (integer_type_node
, op1
);
9142 /* Avoid converting op1 to result_type later. */
9149 if (FLOAT_TYPE_P (type0
) || FLOAT_TYPE_P (type1
))
9150 warning_at (location
,
9152 "comparing floating point with == or != is unsafe");
9153 /* Result of comparison is always int,
9154 but don't convert the args to int! */
9155 build_type
= integer_type_node
;
9156 if ((code0
== INTEGER_TYPE
|| code0
== REAL_TYPE
9157 || code0
== FIXED_POINT_TYPE
|| code0
== COMPLEX_TYPE
)
9158 && (code1
== INTEGER_TYPE
|| code1
== REAL_TYPE
9159 || code1
== FIXED_POINT_TYPE
|| code1
== COMPLEX_TYPE
))
9161 else if (code0
== POINTER_TYPE
&& code1
== POINTER_TYPE
)
9163 tree tt0
= TREE_TYPE (type0
);
9164 tree tt1
= TREE_TYPE (type1
);
9165 /* Anything compares with void *. void * compares with anything.
9166 Otherwise, the targets must be compatible
9167 and both must be object or both incomplete. */
9168 if (comp_target_types (location
, type0
, type1
))
9169 result_type
= common_pointer_type (type0
, type1
);
9170 else if (VOID_TYPE_P (tt0
))
9172 /* op0 != orig_op0 detects the case of something
9173 whose value is 0 but which isn't a valid null ptr const. */
9174 if (pedantic
&& !null_pointer_constant_p (orig_op0
)
9175 && TREE_CODE (tt1
) == FUNCTION_TYPE
)
9176 pedwarn (location
, OPT_pedantic
, "ISO C forbids "
9177 "comparison of %<void *%> with function pointer");
9179 else if (VOID_TYPE_P (tt1
))
9181 if (pedantic
&& !null_pointer_constant_p (orig_op1
)
9182 && TREE_CODE (tt0
) == FUNCTION_TYPE
)
9183 pedwarn (location
, OPT_pedantic
, "ISO C forbids "
9184 "comparison of %<void *%> with function pointer");
9187 /* Avoid warning about the volatile ObjC EH puts on decls. */
9189 pedwarn (location
, 0,
9190 "comparison of distinct pointer types lacks a cast");
9192 if (result_type
== NULL_TREE
)
9193 result_type
= ptr_type_node
;
9195 else if (code0
== POINTER_TYPE
&& null_pointer_constant_p (orig_op1
))
9197 if (TREE_CODE (op0
) == ADDR_EXPR
9198 && decl_with_nonnull_addr_p (TREE_OPERAND (op0
, 0)))
9199 warning_at (location
,
9200 OPT_Waddress
, "the address of %qD will never be NULL",
9201 TREE_OPERAND (op0
, 0));
9202 result_type
= type0
;
9204 else if (code1
== POINTER_TYPE
&& null_pointer_constant_p (orig_op0
))
9206 if (TREE_CODE (op1
) == ADDR_EXPR
9207 && decl_with_nonnull_addr_p (TREE_OPERAND (op1
, 0)))
9208 warning_at (location
,
9209 OPT_Waddress
, "the address of %qD will never be NULL",
9210 TREE_OPERAND (op1
, 0));
9211 result_type
= type1
;
9213 else if (code0
== POINTER_TYPE
&& code1
== INTEGER_TYPE
)
9215 result_type
= type0
;
9216 pedwarn (location
, 0, "comparison between pointer and integer");
9218 else if (code0
== INTEGER_TYPE
&& code1
== POINTER_TYPE
)
9220 result_type
= type1
;
9221 pedwarn (location
, 0, "comparison between pointer and integer");
9229 build_type
= integer_type_node
;
9230 if ((code0
== INTEGER_TYPE
|| code0
== REAL_TYPE
9231 || code0
== FIXED_POINT_TYPE
)
9232 && (code1
== INTEGER_TYPE
|| code1
== REAL_TYPE
9233 || code1
== FIXED_POINT_TYPE
))
9235 else if (code0
== POINTER_TYPE
&& code1
== POINTER_TYPE
)
9237 if (comp_target_types (location
, type0
, type1
))
9239 result_type
= common_pointer_type (type0
, type1
);
9240 if (!COMPLETE_TYPE_P (TREE_TYPE (type0
))
9241 != !COMPLETE_TYPE_P (TREE_TYPE (type1
)))
9242 pedwarn (location
, 0,
9243 "comparison of complete and incomplete pointers");
9244 else if (TREE_CODE (TREE_TYPE (type0
)) == FUNCTION_TYPE
)
9245 pedwarn (location
, OPT_pedantic
, "ISO C forbids "
9246 "ordered comparisons of pointers to functions");
9250 result_type
= ptr_type_node
;
9251 pedwarn (location
, 0,
9252 "comparison of distinct pointer types lacks a cast");
9255 else if (code0
== POINTER_TYPE
&& null_pointer_constant_p (orig_op1
))
9257 result_type
= type0
;
9259 pedwarn (location
, OPT_pedantic
,
9260 "ordered comparison of pointer with integer zero");
9261 else if (extra_warnings
)
9262 warning_at (location
, OPT_Wextra
,
9263 "ordered comparison of pointer with integer zero");
9265 else if (code1
== POINTER_TYPE
&& null_pointer_constant_p (orig_op0
))
9267 result_type
= type1
;
9268 pedwarn (location
, OPT_pedantic
,
9269 "ordered comparison of pointer with integer zero");
9271 else if (code0
== POINTER_TYPE
&& code1
== INTEGER_TYPE
)
9273 result_type
= type0
;
9274 pedwarn (location
, 0, "comparison between pointer and integer");
9276 else if (code0
== INTEGER_TYPE
&& code1
== POINTER_TYPE
)
9278 result_type
= type1
;
9279 pedwarn (location
, 0, "comparison between pointer and integer");
9287 if (code0
== ERROR_MARK
|| code1
== ERROR_MARK
)
9288 return error_mark_node
;
9290 if (code0
== VECTOR_TYPE
&& code1
== VECTOR_TYPE
9291 && (!tree_int_cst_equal (TYPE_SIZE (type0
), TYPE_SIZE (type1
))
9292 || !same_scalar_type_ignoring_signedness (TREE_TYPE (type0
),
9293 TREE_TYPE (type1
))))
9295 binary_op_error (location
, code
, type0
, type1
);
9296 return error_mark_node
;
9299 if ((code0
== INTEGER_TYPE
|| code0
== REAL_TYPE
|| code0
== COMPLEX_TYPE
9300 || code0
== FIXED_POINT_TYPE
|| code0
== VECTOR_TYPE
)
9302 (code1
== INTEGER_TYPE
|| code1
== REAL_TYPE
|| code1
== COMPLEX_TYPE
9303 || code1
== FIXED_POINT_TYPE
|| code1
== VECTOR_TYPE
))
9305 bool first_complex
= (code0
== COMPLEX_TYPE
);
9306 bool second_complex
= (code1
== COMPLEX_TYPE
);
9307 int none_complex
= (!first_complex
&& !second_complex
);
9309 if (shorten
|| common
|| short_compare
)
9311 result_type
= c_common_type (type0
, type1
);
9312 if (result_type
== error_mark_node
)
9313 return error_mark_node
;
9316 if (first_complex
!= second_complex
9317 && (code
== PLUS_EXPR
9318 || code
== MINUS_EXPR
9319 || code
== MULT_EXPR
9320 || (code
== TRUNC_DIV_EXPR
&& first_complex
))
9321 && TREE_CODE (TREE_TYPE (result_type
)) == REAL_TYPE
9322 && flag_signed_zeros
)
9324 /* An operation on mixed real/complex operands must be
9325 handled specially, but the language-independent code can
9326 more easily optimize the plain complex arithmetic if
9327 -fno-signed-zeros. */
9328 tree real_type
= TREE_TYPE (result_type
);
9330 if (type0
!= orig_type0
|| type1
!= orig_type1
)
9332 gcc_assert (may_need_excess_precision
&& common
);
9333 real_result_type
= c_common_type (orig_type0
, orig_type1
);
9337 if (TREE_TYPE (op0
) != result_type
)
9338 op0
= convert_and_check (result_type
, op0
);
9339 if (TREE_TYPE (op1
) != real_type
)
9340 op1
= convert_and_check (real_type
, op1
);
9344 if (TREE_TYPE (op0
) != real_type
)
9345 op0
= convert_and_check (real_type
, op0
);
9346 if (TREE_TYPE (op1
) != result_type
)
9347 op1
= convert_and_check (result_type
, op1
);
9349 if (TREE_CODE (op0
) == ERROR_MARK
|| TREE_CODE (op1
) == ERROR_MARK
)
9350 return error_mark_node
;
9353 op0
= c_save_expr (op0
);
9354 real
= build_unary_op (EXPR_LOCATION (orig_op0
), REALPART_EXPR
,
9356 imag
= build_unary_op (EXPR_LOCATION (orig_op0
), IMAGPART_EXPR
,
9361 case TRUNC_DIV_EXPR
:
9362 imag
= build2 (resultcode
, real_type
, imag
, op1
);
9366 real
= build2 (resultcode
, real_type
, real
, op1
);
9374 op1
= c_save_expr (op1
);
9375 real
= build_unary_op (EXPR_LOCATION (orig_op1
), REALPART_EXPR
,
9377 imag
= build_unary_op (EXPR_LOCATION (orig_op1
), IMAGPART_EXPR
,
9382 imag
= build2 (resultcode
, real_type
, op0
, imag
);
9385 real
= build2 (resultcode
, real_type
, op0
, real
);
9388 real
= build2 (resultcode
, real_type
, op0
, real
);
9389 imag
= build1 (NEGATE_EXPR
, real_type
, imag
);
9395 ret
= build2 (COMPLEX_EXPR
, result_type
, real
, imag
);
9396 goto return_build_binary_op
;
9399 /* For certain operations (which identify themselves by shorten != 0)
9400 if both args were extended from the same smaller type,
9401 do the arithmetic in that type and then extend.
9403 shorten !=0 and !=1 indicates a bitwise operation.
9404 For them, this optimization is safe only if
9405 both args are zero-extended or both are sign-extended.
9406 Otherwise, we might change the result.
9407 Eg, (short)-1 | (unsigned short)-1 is (int)-1
9408 but calculated in (unsigned short) it would be (unsigned short)-1. */
9410 if (shorten
&& none_complex
)
9412 final_type
= result_type
;
9413 result_type
= shorten_binary_op (result_type
, op0
, op1
,
9417 /* Shifts can be shortened if shifting right. */
9422 tree arg0
= get_narrower (op0
, &unsigned_arg
);
9424 final_type
= result_type
;
9426 if (arg0
== op0
&& final_type
== TREE_TYPE (op0
))
9427 unsigned_arg
= TYPE_UNSIGNED (TREE_TYPE (op0
));
9429 if (TYPE_PRECISION (TREE_TYPE (arg0
)) < TYPE_PRECISION (result_type
)
9430 /* We can shorten only if the shift count is less than the
9431 number of bits in the smaller type size. */
9432 && compare_tree_int (op1
, TYPE_PRECISION (TREE_TYPE (arg0
))) < 0
9433 /* We cannot drop an unsigned shift after sign-extension. */
9434 && (!TYPE_UNSIGNED (final_type
) || unsigned_arg
))
9436 /* Do an unsigned shift if the operand was zero-extended. */
9438 = c_common_signed_or_unsigned_type (unsigned_arg
,
9440 /* Convert value-to-be-shifted to that type. */
9441 if (TREE_TYPE (op0
) != result_type
)
9442 op0
= convert (result_type
, op0
);
9447 /* Comparison operations are shortened too but differently.
9448 They identify themselves by setting short_compare = 1. */
9452 /* Don't write &op0, etc., because that would prevent op0
9453 from being kept in a register.
9454 Instead, make copies of the our local variables and
9455 pass the copies by reference, then copy them back afterward. */
9456 tree xop0
= op0
, xop1
= op1
, xresult_type
= result_type
;
9457 enum tree_code xresultcode
= resultcode
;
9459 = shorten_compare (&xop0
, &xop1
, &xresult_type
, &xresultcode
);
9464 goto return_build_binary_op
;
9467 op0
= xop0
, op1
= xop1
;
9469 resultcode
= xresultcode
;
9471 if (c_inhibit_evaluation_warnings
== 0)
9473 bool op0_maybe_const
= true;
9474 bool op1_maybe_const
= true;
9475 tree orig_op0_folded
, orig_op1_folded
;
9477 if (in_late_binary_op
)
9479 orig_op0_folded
= orig_op0
;
9480 orig_op1_folded
= orig_op1
;
9484 /* Fold for the sake of possible warnings, as in
9485 build_conditional_expr. This requires the
9486 "original" values to be folded, not just op0 and
9488 op0
= c_fully_fold (op0
, require_constant_value
,
9490 op1
= c_fully_fold (op1
, require_constant_value
,
9492 orig_op0_folded
= c_fully_fold (orig_op0
,
9493 require_constant_value
,
9495 orig_op1_folded
= c_fully_fold (orig_op1
,
9496 require_constant_value
,
9500 if (warn_sign_compare
)
9501 warn_for_sign_compare (location
, orig_op0_folded
,
9502 orig_op1_folded
, op0
, op1
,
9503 result_type
, resultcode
);
9504 if (!in_late_binary_op
)
9506 if (!op0_maybe_const
|| TREE_CODE (op0
) != INTEGER_CST
)
9508 op0
= build2 (C_MAYBE_CONST_EXPR
, TREE_TYPE (op0
),
9510 C_MAYBE_CONST_EXPR_NON_CONST (op0
) = !op0_maybe_const
;
9512 if (!op1_maybe_const
|| TREE_CODE (op1
) != INTEGER_CST
)
9514 op1
= build2 (C_MAYBE_CONST_EXPR
, TREE_TYPE (op1
),
9516 C_MAYBE_CONST_EXPR_NON_CONST (op1
) = !op1_maybe_const
;
9523 /* At this point, RESULT_TYPE must be nonzero to avoid an error message.
9524 If CONVERTED is zero, both args will be converted to type RESULT_TYPE.
9525 Then the expression will be built.
9526 It will be given type FINAL_TYPE if that is nonzero;
9527 otherwise, it will be given type RESULT_TYPE. */
9531 binary_op_error (location
, code
, TREE_TYPE (op0
), TREE_TYPE (op1
));
9532 return error_mark_node
;
9537 if (TREE_TYPE (op0
) != result_type
)
9538 op0
= convert_and_check (result_type
, op0
);
9539 if (TREE_TYPE (op1
) != result_type
)
9540 op1
= convert_and_check (result_type
, op1
);
9542 /* This can happen if one operand has a vector type, and the other
9543 has a different type. */
9544 if (TREE_CODE (op0
) == ERROR_MARK
|| TREE_CODE (op1
) == ERROR_MARK
)
9545 return error_mark_node
;
9548 if (build_type
== NULL_TREE
)
9550 build_type
= result_type
;
9551 if (type0
!= orig_type0
|| type1
!= orig_type1
)
9553 gcc_assert (may_need_excess_precision
&& common
);
9554 real_result_type
= c_common_type (orig_type0
, orig_type1
);
9558 /* Treat expressions in initializers specially as they can't trap. */
9559 if (int_const_or_overflow
)
9560 ret
= (require_constant_value
9561 ? fold_build2_initializer (resultcode
, build_type
, op0
, op1
)
9562 : fold_build2 (resultcode
, build_type
, op0
, op1
));
9564 ret
= build2 (resultcode
, build_type
, op0
, op1
);
9565 if (final_type
!= 0)
9566 ret
= convert (final_type
, ret
);
9568 return_build_binary_op
:
9569 gcc_assert (ret
!= error_mark_node
);
9570 if (TREE_CODE (ret
) == INTEGER_CST
&& !TREE_OVERFLOW (ret
) && !int_const
)
9572 ? note_integer_operands (ret
)
9573 : build1 (NOP_EXPR
, TREE_TYPE (ret
), ret
));
9574 else if (TREE_CODE (ret
) != INTEGER_CST
&& int_operands
9575 && !in_late_binary_op
)
9576 ret
= note_integer_operands (ret
);
9577 if (real_result_type
)
9578 ret
= build1 (EXCESS_PRECISION_EXPR
, real_result_type
, ret
);
9579 protected_set_expr_location (ret
, location
);
9584 /* Convert EXPR to be a truth-value, validating its type for this
9585 purpose. LOCATION is the source location for the expression. */
9588 c_objc_common_truthvalue_conversion (location_t location
, tree expr
)
9590 bool int_const
, int_operands
;
9592 switch (TREE_CODE (TREE_TYPE (expr
)))
9595 error_at (location
, "used array that cannot be converted to pointer where scalar is required");
9596 return error_mark_node
;
9599 error_at (location
, "used struct type value where scalar is required");
9600 return error_mark_node
;
9603 error_at (location
, "used union type value where scalar is required");
9604 return error_mark_node
;
9613 int_const
= (TREE_CODE (expr
) == INTEGER_CST
&& !TREE_OVERFLOW (expr
));
9614 int_operands
= EXPR_INT_CONST_OPERANDS (expr
);
9616 expr
= remove_c_maybe_const_expr (expr
);
9618 /* ??? Should we also give an error for void and vectors rather than
9619 leaving those to give errors later? */
9620 expr
= c_common_truthvalue_conversion (location
, expr
);
9622 if (TREE_CODE (expr
) == INTEGER_CST
&& int_operands
&& !int_const
)
9624 if (TREE_OVERFLOW (expr
))
9627 return note_integer_operands (expr
);
9629 if (TREE_CODE (expr
) == INTEGER_CST
&& !int_const
)
9630 return build1 (NOP_EXPR
, TREE_TYPE (expr
), expr
);
9635 /* Convert EXPR to a contained DECL, updating *TC, *TI and *SE as
9639 c_expr_to_decl (tree expr
, bool *tc ATTRIBUTE_UNUSED
, bool *se
)
9641 if (TREE_CODE (expr
) == COMPOUND_LITERAL_EXPR
)
9643 tree decl
= COMPOUND_LITERAL_EXPR_DECL (expr
);
9644 /* Executing a compound literal inside a function reinitializes
9646 if (!TREE_STATIC (decl
))
9654 /* Like c_begin_compound_stmt, except force the retention of the BLOCK. */
9657 c_begin_omp_parallel (void)
9662 block
= c_begin_compound_stmt (true);
9667 /* Generate OMP_PARALLEL, with CLAUSES and BLOCK as its compound
9668 statement. LOC is the location of the OMP_PARALLEL. */
9671 c_finish_omp_parallel (location_t loc
, tree clauses
, tree block
)
9675 block
= c_end_compound_stmt (loc
, block
, true);
9677 stmt
= make_node (OMP_PARALLEL
);
9678 TREE_TYPE (stmt
) = void_type_node
;
9679 OMP_PARALLEL_CLAUSES (stmt
) = clauses
;
9680 OMP_PARALLEL_BODY (stmt
) = block
;
9681 SET_EXPR_LOCATION (stmt
, loc
);
9683 return add_stmt (stmt
);
9686 /* Like c_begin_compound_stmt, except force the retention of the BLOCK. */
9689 c_begin_omp_task (void)
9694 block
= c_begin_compound_stmt (true);
9699 /* Generate OMP_TASK, with CLAUSES and BLOCK as its compound
9700 statement. LOC is the location of the #pragma. */
9703 c_finish_omp_task (location_t loc
, tree clauses
, tree block
)
9707 block
= c_end_compound_stmt (loc
, block
, true);
9709 stmt
= make_node (OMP_TASK
);
9710 TREE_TYPE (stmt
) = void_type_node
;
9711 OMP_TASK_CLAUSES (stmt
) = clauses
;
9712 OMP_TASK_BODY (stmt
) = block
;
9713 SET_EXPR_LOCATION (stmt
, loc
);
9715 return add_stmt (stmt
);
9718 /* For all elements of CLAUSES, validate them vs OpenMP constraints.
9719 Remove any elements from the list that are invalid. */
9722 c_finish_omp_clauses (tree clauses
)
9724 bitmap_head generic_head
, firstprivate_head
, lastprivate_head
;
9725 tree c
, t
, *pc
= &clauses
;
9728 bitmap_obstack_initialize (NULL
);
9729 bitmap_initialize (&generic_head
, &bitmap_default_obstack
);
9730 bitmap_initialize (&firstprivate_head
, &bitmap_default_obstack
);
9731 bitmap_initialize (&lastprivate_head
, &bitmap_default_obstack
);
9733 for (pc
= &clauses
, c
= clauses
; c
; c
= *pc
)
9735 bool remove
= false;
9736 bool need_complete
= false;
9737 bool need_implicitly_determined
= false;
9739 switch (OMP_CLAUSE_CODE (c
))
9741 case OMP_CLAUSE_SHARED
:
9743 need_implicitly_determined
= true;
9744 goto check_dup_generic
;
9746 case OMP_CLAUSE_PRIVATE
:
9748 need_complete
= true;
9749 need_implicitly_determined
= true;
9750 goto check_dup_generic
;
9752 case OMP_CLAUSE_REDUCTION
:
9754 need_implicitly_determined
= true;
9755 t
= OMP_CLAUSE_DECL (c
);
9756 if (AGGREGATE_TYPE_P (TREE_TYPE (t
))
9757 || POINTER_TYPE_P (TREE_TYPE (t
)))
9759 error_at (OMP_CLAUSE_LOCATION (c
),
9760 "%qE has invalid type for %<reduction%>", t
);
9763 else if (FLOAT_TYPE_P (TREE_TYPE (t
)))
9765 enum tree_code r_code
= OMP_CLAUSE_REDUCTION_CODE (c
);
9766 const char *r_name
= NULL
;
9783 case TRUTH_ANDIF_EXPR
:
9786 case TRUTH_ORIF_EXPR
:
9794 error_at (OMP_CLAUSE_LOCATION (c
),
9795 "%qE has invalid type for %<reduction(%s)%>",
9800 goto check_dup_generic
;
9802 case OMP_CLAUSE_COPYPRIVATE
:
9803 name
= "copyprivate";
9804 goto check_dup_generic
;
9806 case OMP_CLAUSE_COPYIN
:
9808 t
= OMP_CLAUSE_DECL (c
);
9809 if (TREE_CODE (t
) != VAR_DECL
|| !DECL_THREAD_LOCAL_P (t
))
9811 error_at (OMP_CLAUSE_LOCATION (c
),
9812 "%qE must be %<threadprivate%> for %<copyin%>", t
);
9815 goto check_dup_generic
;
9818 t
= OMP_CLAUSE_DECL (c
);
9819 if (TREE_CODE (t
) != VAR_DECL
&& TREE_CODE (t
) != PARM_DECL
)
9821 error_at (OMP_CLAUSE_LOCATION (c
),
9822 "%qE is not a variable in clause %qs", t
, name
);
9825 else if (bitmap_bit_p (&generic_head
, DECL_UID (t
))
9826 || bitmap_bit_p (&firstprivate_head
, DECL_UID (t
))
9827 || bitmap_bit_p (&lastprivate_head
, DECL_UID (t
)))
9829 error_at (OMP_CLAUSE_LOCATION (c
),
9830 "%qE appears more than once in data clauses", t
);
9834 bitmap_set_bit (&generic_head
, DECL_UID (t
));
9837 case OMP_CLAUSE_FIRSTPRIVATE
:
9838 name
= "firstprivate";
9839 t
= OMP_CLAUSE_DECL (c
);
9840 need_complete
= true;
9841 need_implicitly_determined
= true;
9842 if (TREE_CODE (t
) != VAR_DECL
&& TREE_CODE (t
) != PARM_DECL
)
9844 error_at (OMP_CLAUSE_LOCATION (c
),
9845 "%qE is not a variable in clause %<firstprivate%>", t
);
9848 else if (bitmap_bit_p (&generic_head
, DECL_UID (t
))
9849 || bitmap_bit_p (&firstprivate_head
, DECL_UID (t
)))
9851 error_at (OMP_CLAUSE_LOCATION (c
),
9852 "%qE appears more than once in data clauses", t
);
9856 bitmap_set_bit (&firstprivate_head
, DECL_UID (t
));
9859 case OMP_CLAUSE_LASTPRIVATE
:
9860 name
= "lastprivate";
9861 t
= OMP_CLAUSE_DECL (c
);
9862 need_complete
= true;
9863 need_implicitly_determined
= true;
9864 if (TREE_CODE (t
) != VAR_DECL
&& TREE_CODE (t
) != PARM_DECL
)
9866 error_at (OMP_CLAUSE_LOCATION (c
),
9867 "%qE is not a variable in clause %<lastprivate%>", t
);
9870 else if (bitmap_bit_p (&generic_head
, DECL_UID (t
))
9871 || bitmap_bit_p (&lastprivate_head
, DECL_UID (t
)))
9873 error_at (OMP_CLAUSE_LOCATION (c
),
9874 "%qE appears more than once in data clauses", t
);
9878 bitmap_set_bit (&lastprivate_head
, DECL_UID (t
));
9882 case OMP_CLAUSE_NUM_THREADS
:
9883 case OMP_CLAUSE_SCHEDULE
:
9884 case OMP_CLAUSE_NOWAIT
:
9885 case OMP_CLAUSE_ORDERED
:
9886 case OMP_CLAUSE_DEFAULT
:
9887 case OMP_CLAUSE_UNTIED
:
9888 case OMP_CLAUSE_COLLAPSE
:
9889 pc
= &OMP_CLAUSE_CHAIN (c
);
9898 t
= OMP_CLAUSE_DECL (c
);
9902 t
= require_complete_type (t
);
9903 if (t
== error_mark_node
)
9907 if (need_implicitly_determined
)
9909 const char *share_name
= NULL
;
9911 if (TREE_CODE (t
) == VAR_DECL
&& DECL_THREAD_LOCAL_P (t
))
9912 share_name
= "threadprivate";
9913 else switch (c_omp_predetermined_sharing (t
))
9915 case OMP_CLAUSE_DEFAULT_UNSPECIFIED
:
9917 case OMP_CLAUSE_DEFAULT_SHARED
:
9918 share_name
= "shared";
9920 case OMP_CLAUSE_DEFAULT_PRIVATE
:
9921 share_name
= "private";
9928 error_at (OMP_CLAUSE_LOCATION (c
),
9929 "%qE is predetermined %qs for %qs",
9930 t
, share_name
, name
);
9937 *pc
= OMP_CLAUSE_CHAIN (c
);
9939 pc
= &OMP_CLAUSE_CHAIN (c
);
9942 bitmap_obstack_release (NULL
);
9946 /* Make a variant type in the proper way for C/C++, propagating qualifiers
9947 down to the element type of an array. */
9950 c_build_qualified_type (tree type
, int type_quals
)
9952 if (type
== error_mark_node
)
9955 if (TREE_CODE (type
) == ARRAY_TYPE
)
9958 tree element_type
= c_build_qualified_type (TREE_TYPE (type
),
9961 /* See if we already have an identically qualified type. */
9962 for (t
= TYPE_MAIN_VARIANT (type
); t
; t
= TYPE_NEXT_VARIANT (t
))
9964 if (TYPE_QUALS (strip_array_types (t
)) == type_quals
9965 && TYPE_NAME (t
) == TYPE_NAME (type
)
9966 && TYPE_CONTEXT (t
) == TYPE_CONTEXT (type
)
9967 && attribute_list_equal (TYPE_ATTRIBUTES (t
),
9968 TYPE_ATTRIBUTES (type
)))
9973 tree domain
= TYPE_DOMAIN (type
);
9975 t
= build_variant_type_copy (type
);
9976 TREE_TYPE (t
) = element_type
;
9978 if (TYPE_STRUCTURAL_EQUALITY_P (element_type
)
9979 || (domain
&& TYPE_STRUCTURAL_EQUALITY_P (domain
)))
9980 SET_TYPE_STRUCTURAL_EQUALITY (t
);
9981 else if (TYPE_CANONICAL (element_type
) != element_type
9982 || (domain
&& TYPE_CANONICAL (domain
) != domain
))
9984 tree unqualified_canon
9985 = build_array_type (TYPE_CANONICAL (element_type
),
9986 domain
? TYPE_CANONICAL (domain
)
9989 = c_build_qualified_type (unqualified_canon
, type_quals
);
9992 TYPE_CANONICAL (t
) = t
;
9997 /* A restrict-qualified pointer type must be a pointer to object or
9998 incomplete type. Note that the use of POINTER_TYPE_P also allows
9999 REFERENCE_TYPEs, which is appropriate for C++. */
10000 if ((type_quals
& TYPE_QUAL_RESTRICT
)
10001 && (!POINTER_TYPE_P (type
)
10002 || !C_TYPE_OBJECT_OR_INCOMPLETE_P (TREE_TYPE (type
))))
10004 error ("invalid use of %<restrict%>");
10005 type_quals
&= ~TYPE_QUAL_RESTRICT
;
10008 return build_qualified_type (type
, type_quals
);
10011 /* Build a VA_ARG_EXPR for the C parser. */
10014 c_build_va_arg (location_t loc
, tree expr
, tree type
)
10016 if (warn_cxx_compat
&& TREE_CODE (type
) == ENUMERAL_TYPE
)
10017 warning_at (loc
, OPT_Wc___compat
,
10018 "C++ requires promoted type, not enum type, in %<va_arg%>");
10019 return build_va_arg (loc
, expr
, type
);