PR c/56724
[official-gcc.git] / gcc / c / c-typeck.c
blobf09f39e811452532985c89ad1b6630708f87a405
1 /* Build expressions with type checking for C compiler.
2 Copyright (C) 1987-2014 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
21 /* This file is part of the C front end.
22 It contains routines to build C expressions given their operands,
23 including computing the types of the result, C-specific error checks,
24 and some optimization. */
26 #include "config.h"
27 #include "system.h"
28 #include "coretypes.h"
29 #include "tm.h"
30 #include "tree.h"
31 #include "stor-layout.h"
32 #include "trans-mem.h"
33 #include "varasm.h"
34 #include "stmt.h"
35 #include "langhooks.h"
36 #include "c-tree.h"
37 #include "c-lang.h"
38 #include "flags.h"
39 #include "intl.h"
40 #include "target.h"
41 #include "tree-iterator.h"
42 #include "bitmap.h"
43 #include "pointer-set.h"
44 #include "basic-block.h"
45 #include "gimple-expr.h"
46 #include "gimplify.h"
47 #include "tree-inline.h"
48 #include "omp-low.h"
49 #include "c-family/c-objc.h"
50 #include "c-family/c-common.h"
51 #include "c-family/c-ubsan.h"
52 #include "cilk.h"
53 #include "wide-int.h"
55 /* Possible cases of implicit bad conversions. Used to select
56 diagnostic messages in convert_for_assignment. */
57 enum impl_conv {
58 ic_argpass,
59 ic_assign,
60 ic_init,
61 ic_return
64 /* The level of nesting inside "__alignof__". */
65 int in_alignof;
67 /* The level of nesting inside "sizeof". */
68 int in_sizeof;
70 /* The level of nesting inside "typeof". */
71 int in_typeof;
73 /* The argument of last parsed sizeof expression, only to be tested
74 if expr.original_code == SIZEOF_EXPR. */
75 tree c_last_sizeof_arg;
77 /* Nonzero if we've already printed a "missing braces around initializer"
78 message within this initializer. */
79 static int missing_braces_mentioned;
81 static int require_constant_value;
82 static int require_constant_elements;
84 static bool null_pointer_constant_p (const_tree);
85 static tree qualify_type (tree, tree);
86 static int tagged_types_tu_compatible_p (const_tree, const_tree, bool *,
87 bool *);
88 static int comp_target_types (location_t, tree, tree);
89 static int function_types_compatible_p (const_tree, const_tree, bool *,
90 bool *);
91 static int type_lists_compatible_p (const_tree, const_tree, bool *, bool *);
92 static tree lookup_field (tree, tree);
93 static int convert_arguments (location_t, vec<location_t>, tree,
94 vec<tree, va_gc> *, vec<tree, va_gc> *, tree,
95 tree);
96 static tree pointer_diff (location_t, tree, tree);
97 static tree convert_for_assignment (location_t, location_t, tree, tree, tree,
98 enum impl_conv, bool, tree, tree, int);
99 static tree valid_compound_expr_initializer (tree, tree);
100 static void push_string (const char *);
101 static void push_member_name (tree);
102 static int spelling_length (void);
103 static char *print_spelling (char *);
104 static void warning_init (location_t, int, const char *);
105 static tree digest_init (location_t, tree, tree, tree, bool, bool, int);
106 static void output_init_element (location_t, tree, tree, bool, tree, tree, int,
107 bool, struct obstack *);
108 static void output_pending_init_elements (int, struct obstack *);
109 static int set_designator (location_t, int, struct obstack *);
110 static void push_range_stack (tree, struct obstack *);
111 static void add_pending_init (location_t, tree, tree, tree, bool,
112 struct obstack *);
113 static void set_nonincremental_init (struct obstack *);
114 static void set_nonincremental_init_from_string (tree, struct obstack *);
115 static tree find_init_member (tree, struct obstack *);
116 static void readonly_warning (tree, enum lvalue_use);
117 static int lvalue_or_else (location_t, const_tree, enum lvalue_use);
118 static void record_maybe_used_decl (tree);
119 static int comptypes_internal (const_tree, const_tree, bool *, bool *);
121 /* Return true if EXP is a null pointer constant, false otherwise. */
123 static bool
124 null_pointer_constant_p (const_tree expr)
126 /* This should really operate on c_expr structures, but they aren't
127 yet available everywhere required. */
128 tree type = TREE_TYPE (expr);
129 return (TREE_CODE (expr) == INTEGER_CST
130 && !TREE_OVERFLOW (expr)
131 && integer_zerop (expr)
132 && (INTEGRAL_TYPE_P (type)
133 || (TREE_CODE (type) == POINTER_TYPE
134 && VOID_TYPE_P (TREE_TYPE (type))
135 && TYPE_QUALS (TREE_TYPE (type)) == TYPE_UNQUALIFIED)));
138 /* EXPR may appear in an unevaluated part of an integer constant
139 expression, but not in an evaluated part. Wrap it in a
140 C_MAYBE_CONST_EXPR, or mark it with TREE_OVERFLOW if it is just an
141 INTEGER_CST and we cannot create a C_MAYBE_CONST_EXPR. */
143 static tree
144 note_integer_operands (tree expr)
146 tree ret;
147 if (TREE_CODE (expr) == INTEGER_CST && in_late_binary_op)
149 ret = copy_node (expr);
150 TREE_OVERFLOW (ret) = 1;
152 else
154 ret = build2 (C_MAYBE_CONST_EXPR, TREE_TYPE (expr), NULL_TREE, expr);
155 C_MAYBE_CONST_EXPR_INT_OPERANDS (ret) = 1;
157 return ret;
160 /* Having checked whether EXPR may appear in an unevaluated part of an
161 integer constant expression and found that it may, remove any
162 C_MAYBE_CONST_EXPR noting this fact and return the resulting
163 expression. */
165 static inline tree
166 remove_c_maybe_const_expr (tree expr)
168 if (TREE_CODE (expr) == C_MAYBE_CONST_EXPR)
169 return C_MAYBE_CONST_EXPR_EXPR (expr);
170 else
171 return expr;
174 \f/* This is a cache to hold if two types are compatible or not. */
176 struct tagged_tu_seen_cache {
177 const struct tagged_tu_seen_cache * next;
178 const_tree t1;
179 const_tree t2;
180 /* The return value of tagged_types_tu_compatible_p if we had seen
181 these two types already. */
182 int val;
185 static const struct tagged_tu_seen_cache * tagged_tu_seen_base;
186 static void free_all_tagged_tu_seen_up_to (const struct tagged_tu_seen_cache *);
188 /* Do `exp = require_complete_type (exp);' to make sure exp
189 does not have an incomplete type. (That includes void types.) */
191 tree
192 require_complete_type (tree value)
194 tree type = TREE_TYPE (value);
196 if (value == error_mark_node || type == error_mark_node)
197 return error_mark_node;
199 /* First, detect a valid value with a complete type. */
200 if (COMPLETE_TYPE_P (type))
201 return value;
203 c_incomplete_type_error (value, type);
204 return error_mark_node;
207 /* Print an error message for invalid use of an incomplete type.
208 VALUE is the expression that was used (or 0 if that isn't known)
209 and TYPE is the type that was invalid. */
211 void
212 c_incomplete_type_error (const_tree value, const_tree type)
214 const char *type_code_string;
216 /* Avoid duplicate error message. */
217 if (TREE_CODE (type) == ERROR_MARK)
218 return;
220 if (value != 0 && (TREE_CODE (value) == VAR_DECL
221 || TREE_CODE (value) == PARM_DECL))
222 error ("%qD has an incomplete type", value);
223 else
225 retry:
226 /* We must print an error message. Be clever about what it says. */
228 switch (TREE_CODE (type))
230 case RECORD_TYPE:
231 type_code_string = "struct";
232 break;
234 case UNION_TYPE:
235 type_code_string = "union";
236 break;
238 case ENUMERAL_TYPE:
239 type_code_string = "enum";
240 break;
242 case VOID_TYPE:
243 error ("invalid use of void expression");
244 return;
246 case ARRAY_TYPE:
247 if (TYPE_DOMAIN (type))
249 if (TYPE_MAX_VALUE (TYPE_DOMAIN (type)) == NULL)
251 error ("invalid use of flexible array member");
252 return;
254 type = TREE_TYPE (type);
255 goto retry;
257 error ("invalid use of array with unspecified bounds");
258 return;
260 default:
261 gcc_unreachable ();
264 if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
265 error ("invalid use of undefined type %<%s %E%>",
266 type_code_string, TYPE_NAME (type));
267 else
268 /* If this type has a typedef-name, the TYPE_NAME is a TYPE_DECL. */
269 error ("invalid use of incomplete typedef %qD", TYPE_NAME (type));
273 /* Given a type, apply default promotions wrt unnamed function
274 arguments and return the new type. */
276 tree
277 c_type_promotes_to (tree type)
279 tree ret = NULL_TREE;
281 if (TYPE_MAIN_VARIANT (type) == float_type_node)
282 ret = double_type_node;
283 else if (c_promoting_integer_type_p (type))
285 /* Preserve unsignedness if not really getting any wider. */
286 if (TYPE_UNSIGNED (type)
287 && (TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node)))
288 ret = unsigned_type_node;
289 else
290 ret = integer_type_node;
293 if (ret != NULL_TREE)
294 return (TYPE_ATOMIC (type)
295 ? c_build_qualified_type (ret, TYPE_QUAL_ATOMIC)
296 : ret);
298 return type;
301 /* Return true if between two named address spaces, whether there is a superset
302 named address space that encompasses both address spaces. If there is a
303 superset, return which address space is the superset. */
305 static bool
306 addr_space_superset (addr_space_t as1, addr_space_t as2, addr_space_t *common)
308 if (as1 == as2)
310 *common = as1;
311 return true;
313 else if (targetm.addr_space.subset_p (as1, as2))
315 *common = as2;
316 return true;
318 else if (targetm.addr_space.subset_p (as2, as1))
320 *common = as1;
321 return true;
323 else
324 return false;
327 /* Return a variant of TYPE which has all the type qualifiers of LIKE
328 as well as those of TYPE. */
330 static tree
331 qualify_type (tree type, tree like)
333 addr_space_t as_type = TYPE_ADDR_SPACE (type);
334 addr_space_t as_like = TYPE_ADDR_SPACE (like);
335 addr_space_t as_common;
337 /* If the two named address spaces are different, determine the common
338 superset address space. If there isn't one, raise an error. */
339 if (!addr_space_superset (as_type, as_like, &as_common))
341 as_common = as_type;
342 error ("%qT and %qT are in disjoint named address spaces",
343 type, like);
346 return c_build_qualified_type (type,
347 TYPE_QUALS_NO_ADDR_SPACE (type)
348 | TYPE_QUALS_NO_ADDR_SPACE_NO_ATOMIC (like)
349 | ENCODE_QUAL_ADDR_SPACE (as_common));
352 /* Return true iff the given tree T is a variable length array. */
354 bool
355 c_vla_type_p (const_tree t)
357 if (TREE_CODE (t) == ARRAY_TYPE
358 && C_TYPE_VARIABLE_SIZE (t))
359 return true;
360 return false;
363 /* Return the composite type of two compatible types.
365 We assume that comptypes has already been done and returned
366 nonzero; if that isn't so, this may crash. In particular, we
367 assume that qualifiers match. */
369 tree
370 composite_type (tree t1, tree t2)
372 enum tree_code code1;
373 enum tree_code code2;
374 tree attributes;
376 /* Save time if the two types are the same. */
378 if (t1 == t2) return t1;
380 /* If one type is nonsense, use the other. */
381 if (t1 == error_mark_node)
382 return t2;
383 if (t2 == error_mark_node)
384 return t1;
386 code1 = TREE_CODE (t1);
387 code2 = TREE_CODE (t2);
389 /* Merge the attributes. */
390 attributes = targetm.merge_type_attributes (t1, t2);
392 /* If one is an enumerated type and the other is the compatible
393 integer type, the composite type might be either of the two
394 (DR#013 question 3). For consistency, use the enumerated type as
395 the composite type. */
397 if (code1 == ENUMERAL_TYPE && code2 == INTEGER_TYPE)
398 return t1;
399 if (code2 == ENUMERAL_TYPE && code1 == INTEGER_TYPE)
400 return t2;
402 gcc_assert (code1 == code2);
404 switch (code1)
406 case POINTER_TYPE:
407 /* For two pointers, do this recursively on the target type. */
409 tree pointed_to_1 = TREE_TYPE (t1);
410 tree pointed_to_2 = TREE_TYPE (t2);
411 tree target = composite_type (pointed_to_1, pointed_to_2);
412 t1 = build_pointer_type_for_mode (target, TYPE_MODE (t1), false);
413 t1 = build_type_attribute_variant (t1, attributes);
414 return qualify_type (t1, t2);
417 case ARRAY_TYPE:
419 tree elt = composite_type (TREE_TYPE (t1), TREE_TYPE (t2));
420 int quals;
421 tree unqual_elt;
422 tree d1 = TYPE_DOMAIN (t1);
423 tree d2 = TYPE_DOMAIN (t2);
424 bool d1_variable, d2_variable;
425 bool d1_zero, d2_zero;
426 bool t1_complete, t2_complete;
428 /* We should not have any type quals on arrays at all. */
429 gcc_assert (!TYPE_QUALS_NO_ADDR_SPACE (t1)
430 && !TYPE_QUALS_NO_ADDR_SPACE (t2));
432 t1_complete = COMPLETE_TYPE_P (t1);
433 t2_complete = COMPLETE_TYPE_P (t2);
435 d1_zero = d1 == 0 || !TYPE_MAX_VALUE (d1);
436 d2_zero = d2 == 0 || !TYPE_MAX_VALUE (d2);
438 d1_variable = (!d1_zero
439 && (TREE_CODE (TYPE_MIN_VALUE (d1)) != INTEGER_CST
440 || TREE_CODE (TYPE_MAX_VALUE (d1)) != INTEGER_CST));
441 d2_variable = (!d2_zero
442 && (TREE_CODE (TYPE_MIN_VALUE (d2)) != INTEGER_CST
443 || TREE_CODE (TYPE_MAX_VALUE (d2)) != INTEGER_CST));
444 d1_variable = d1_variable || (d1_zero && c_vla_type_p (t1));
445 d2_variable = d2_variable || (d2_zero && c_vla_type_p (t2));
447 /* Save space: see if the result is identical to one of the args. */
448 if (elt == TREE_TYPE (t1) && TYPE_DOMAIN (t1)
449 && (d2_variable || d2_zero || !d1_variable))
450 return build_type_attribute_variant (t1, attributes);
451 if (elt == TREE_TYPE (t2) && TYPE_DOMAIN (t2)
452 && (d1_variable || d1_zero || !d2_variable))
453 return build_type_attribute_variant (t2, attributes);
455 if (elt == TREE_TYPE (t1) && !TYPE_DOMAIN (t2) && !TYPE_DOMAIN (t1))
456 return build_type_attribute_variant (t1, attributes);
457 if (elt == TREE_TYPE (t2) && !TYPE_DOMAIN (t2) && !TYPE_DOMAIN (t1))
458 return build_type_attribute_variant (t2, attributes);
460 /* Merge the element types, and have a size if either arg has
461 one. We may have qualifiers on the element types. To set
462 up TYPE_MAIN_VARIANT correctly, we need to form the
463 composite of the unqualified types and add the qualifiers
464 back at the end. */
465 quals = TYPE_QUALS (strip_array_types (elt));
466 unqual_elt = c_build_qualified_type (elt, TYPE_UNQUALIFIED);
467 t1 = build_array_type (unqual_elt,
468 TYPE_DOMAIN ((TYPE_DOMAIN (t1)
469 && (d2_variable
470 || d2_zero
471 || !d1_variable))
472 ? t1
473 : t2));
474 /* Ensure a composite type involving a zero-length array type
475 is a zero-length type not an incomplete type. */
476 if (d1_zero && d2_zero
477 && (t1_complete || t2_complete)
478 && !COMPLETE_TYPE_P (t1))
480 TYPE_SIZE (t1) = bitsize_zero_node;
481 TYPE_SIZE_UNIT (t1) = size_zero_node;
483 t1 = c_build_qualified_type (t1, quals);
484 return build_type_attribute_variant (t1, attributes);
487 case ENUMERAL_TYPE:
488 case RECORD_TYPE:
489 case UNION_TYPE:
490 if (attributes != NULL)
492 /* Try harder not to create a new aggregate type. */
493 if (attribute_list_equal (TYPE_ATTRIBUTES (t1), attributes))
494 return t1;
495 if (attribute_list_equal (TYPE_ATTRIBUTES (t2), attributes))
496 return t2;
498 return build_type_attribute_variant (t1, attributes);
500 case FUNCTION_TYPE:
501 /* Function types: prefer the one that specified arg types.
502 If both do, merge the arg types. Also merge the return types. */
504 tree valtype = composite_type (TREE_TYPE (t1), TREE_TYPE (t2));
505 tree p1 = TYPE_ARG_TYPES (t1);
506 tree p2 = TYPE_ARG_TYPES (t2);
507 int len;
508 tree newargs, n;
509 int i;
511 /* Save space: see if the result is identical to one of the args. */
512 if (valtype == TREE_TYPE (t1) && !TYPE_ARG_TYPES (t2))
513 return build_type_attribute_variant (t1, attributes);
514 if (valtype == TREE_TYPE (t2) && !TYPE_ARG_TYPES (t1))
515 return build_type_attribute_variant (t2, attributes);
517 /* Simple way if one arg fails to specify argument types. */
518 if (TYPE_ARG_TYPES (t1) == 0)
520 t1 = build_function_type (valtype, TYPE_ARG_TYPES (t2));
521 t1 = build_type_attribute_variant (t1, attributes);
522 return qualify_type (t1, t2);
524 if (TYPE_ARG_TYPES (t2) == 0)
526 t1 = build_function_type (valtype, TYPE_ARG_TYPES (t1));
527 t1 = build_type_attribute_variant (t1, attributes);
528 return qualify_type (t1, t2);
531 /* If both args specify argument types, we must merge the two
532 lists, argument by argument. */
534 len = list_length (p1);
535 newargs = 0;
537 for (i = 0; i < len; i++)
538 newargs = tree_cons (NULL_TREE, NULL_TREE, newargs);
540 n = newargs;
542 for (; p1;
543 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2), n = TREE_CHAIN (n))
545 /* A null type means arg type is not specified.
546 Take whatever the other function type has. */
547 if (TREE_VALUE (p1) == 0)
549 TREE_VALUE (n) = TREE_VALUE (p2);
550 goto parm_done;
552 if (TREE_VALUE (p2) == 0)
554 TREE_VALUE (n) = TREE_VALUE (p1);
555 goto parm_done;
558 /* Given wait (union {union wait *u; int *i} *)
559 and wait (union wait *),
560 prefer union wait * as type of parm. */
561 if (TREE_CODE (TREE_VALUE (p1)) == UNION_TYPE
562 && TREE_VALUE (p1) != TREE_VALUE (p2))
564 tree memb;
565 tree mv2 = TREE_VALUE (p2);
566 if (mv2 && mv2 != error_mark_node
567 && TREE_CODE (mv2) != ARRAY_TYPE)
568 mv2 = TYPE_MAIN_VARIANT (mv2);
569 for (memb = TYPE_FIELDS (TREE_VALUE (p1));
570 memb; memb = DECL_CHAIN (memb))
572 tree mv3 = TREE_TYPE (memb);
573 if (mv3 && mv3 != error_mark_node
574 && TREE_CODE (mv3) != ARRAY_TYPE)
575 mv3 = TYPE_MAIN_VARIANT (mv3);
576 if (comptypes (mv3, mv2))
578 TREE_VALUE (n) = composite_type (TREE_TYPE (memb),
579 TREE_VALUE (p2));
580 pedwarn (input_location, OPT_Wpedantic,
581 "function types not truly compatible in ISO C");
582 goto parm_done;
586 if (TREE_CODE (TREE_VALUE (p2)) == UNION_TYPE
587 && TREE_VALUE (p2) != TREE_VALUE (p1))
589 tree memb;
590 tree mv1 = TREE_VALUE (p1);
591 if (mv1 && mv1 != error_mark_node
592 && TREE_CODE (mv1) != ARRAY_TYPE)
593 mv1 = TYPE_MAIN_VARIANT (mv1);
594 for (memb = TYPE_FIELDS (TREE_VALUE (p2));
595 memb; memb = DECL_CHAIN (memb))
597 tree mv3 = TREE_TYPE (memb);
598 if (mv3 && mv3 != error_mark_node
599 && TREE_CODE (mv3) != ARRAY_TYPE)
600 mv3 = TYPE_MAIN_VARIANT (mv3);
601 if (comptypes (mv3, mv1))
603 TREE_VALUE (n) = composite_type (TREE_TYPE (memb),
604 TREE_VALUE (p1));
605 pedwarn (input_location, OPT_Wpedantic,
606 "function types not truly compatible in ISO C");
607 goto parm_done;
611 TREE_VALUE (n) = composite_type (TREE_VALUE (p1), TREE_VALUE (p2));
612 parm_done: ;
615 t1 = build_function_type (valtype, newargs);
616 t1 = qualify_type (t1, t2);
617 /* ... falls through ... */
620 default:
621 return build_type_attribute_variant (t1, attributes);
626 /* Return the type of a conditional expression between pointers to
627 possibly differently qualified versions of compatible types.
629 We assume that comp_target_types has already been done and returned
630 nonzero; if that isn't so, this may crash. */
632 static tree
633 common_pointer_type (tree t1, tree t2)
635 tree attributes;
636 tree pointed_to_1, mv1;
637 tree pointed_to_2, mv2;
638 tree target;
639 unsigned target_quals;
640 addr_space_t as1, as2, as_common;
641 int quals1, quals2;
643 /* Save time if the two types are the same. */
645 if (t1 == t2) return t1;
647 /* If one type is nonsense, use the other. */
648 if (t1 == error_mark_node)
649 return t2;
650 if (t2 == error_mark_node)
651 return t1;
653 gcc_assert (TREE_CODE (t1) == POINTER_TYPE
654 && TREE_CODE (t2) == POINTER_TYPE);
656 /* Merge the attributes. */
657 attributes = targetm.merge_type_attributes (t1, t2);
659 /* Find the composite type of the target types, and combine the
660 qualifiers of the two types' targets. Do not lose qualifiers on
661 array element types by taking the TYPE_MAIN_VARIANT. */
662 mv1 = pointed_to_1 = TREE_TYPE (t1);
663 mv2 = pointed_to_2 = TREE_TYPE (t2);
664 if (TREE_CODE (mv1) != ARRAY_TYPE)
665 mv1 = TYPE_MAIN_VARIANT (pointed_to_1);
666 if (TREE_CODE (mv2) != ARRAY_TYPE)
667 mv2 = TYPE_MAIN_VARIANT (pointed_to_2);
668 target = composite_type (mv1, mv2);
670 /* For function types do not merge const qualifiers, but drop them
671 if used inconsistently. The middle-end uses these to mark const
672 and noreturn functions. */
673 quals1 = TYPE_QUALS_NO_ADDR_SPACE (pointed_to_1);
674 quals2 = TYPE_QUALS_NO_ADDR_SPACE (pointed_to_2);
676 if (TREE_CODE (pointed_to_1) == FUNCTION_TYPE)
677 target_quals = (quals1 & quals2);
678 else
679 target_quals = (quals1 | quals2);
681 /* If the two named address spaces are different, determine the common
682 superset address space. This is guaranteed to exist due to the
683 assumption that comp_target_type returned non-zero. */
684 as1 = TYPE_ADDR_SPACE (pointed_to_1);
685 as2 = TYPE_ADDR_SPACE (pointed_to_2);
686 if (!addr_space_superset (as1, as2, &as_common))
687 gcc_unreachable ();
689 target_quals |= ENCODE_QUAL_ADDR_SPACE (as_common);
691 t1 = build_pointer_type (c_build_qualified_type (target, target_quals));
692 return build_type_attribute_variant (t1, attributes);
695 /* Return the common type for two arithmetic types under the usual
696 arithmetic conversions. The default conversions have already been
697 applied, and enumerated types converted to their compatible integer
698 types. The resulting type is unqualified and has no attributes.
700 This is the type for the result of most arithmetic operations
701 if the operands have the given two types. */
703 static tree
704 c_common_type (tree t1, tree t2)
706 enum tree_code code1;
707 enum tree_code code2;
709 /* If one type is nonsense, use the other. */
710 if (t1 == error_mark_node)
711 return t2;
712 if (t2 == error_mark_node)
713 return t1;
715 if (TYPE_QUALS (t1) != TYPE_UNQUALIFIED)
716 t1 = TYPE_MAIN_VARIANT (t1);
718 if (TYPE_QUALS (t2) != TYPE_UNQUALIFIED)
719 t2 = TYPE_MAIN_VARIANT (t2);
721 if (TYPE_ATTRIBUTES (t1) != NULL_TREE)
722 t1 = build_type_attribute_variant (t1, NULL_TREE);
724 if (TYPE_ATTRIBUTES (t2) != NULL_TREE)
725 t2 = build_type_attribute_variant (t2, NULL_TREE);
727 /* Save time if the two types are the same. */
729 if (t1 == t2) return t1;
731 code1 = TREE_CODE (t1);
732 code2 = TREE_CODE (t2);
734 gcc_assert (code1 == VECTOR_TYPE || code1 == COMPLEX_TYPE
735 || code1 == FIXED_POINT_TYPE || code1 == REAL_TYPE
736 || code1 == INTEGER_TYPE);
737 gcc_assert (code2 == VECTOR_TYPE || code2 == COMPLEX_TYPE
738 || code2 == FIXED_POINT_TYPE || code2 == REAL_TYPE
739 || code2 == INTEGER_TYPE);
741 /* When one operand is a decimal float type, the other operand cannot be
742 a generic float type or a complex type. We also disallow vector types
743 here. */
744 if ((DECIMAL_FLOAT_TYPE_P (t1) || DECIMAL_FLOAT_TYPE_P (t2))
745 && !(DECIMAL_FLOAT_TYPE_P (t1) && DECIMAL_FLOAT_TYPE_P (t2)))
747 if (code1 == VECTOR_TYPE || code2 == VECTOR_TYPE)
749 error ("can%'t mix operands of decimal float and vector types");
750 return error_mark_node;
752 if (code1 == COMPLEX_TYPE || code2 == COMPLEX_TYPE)
754 error ("can%'t mix operands of decimal float and complex types");
755 return error_mark_node;
757 if (code1 == REAL_TYPE && code2 == REAL_TYPE)
759 error ("can%'t mix operands of decimal float and other float types");
760 return error_mark_node;
764 /* If one type is a vector type, return that type. (How the usual
765 arithmetic conversions apply to the vector types extension is not
766 precisely specified.) */
767 if (code1 == VECTOR_TYPE)
768 return t1;
770 if (code2 == VECTOR_TYPE)
771 return t2;
773 /* If one type is complex, form the common type of the non-complex
774 components, then make that complex. Use T1 or T2 if it is the
775 required type. */
776 if (code1 == COMPLEX_TYPE || code2 == COMPLEX_TYPE)
778 tree subtype1 = code1 == COMPLEX_TYPE ? TREE_TYPE (t1) : t1;
779 tree subtype2 = code2 == COMPLEX_TYPE ? TREE_TYPE (t2) : t2;
780 tree subtype = c_common_type (subtype1, subtype2);
782 if (code1 == COMPLEX_TYPE && TREE_TYPE (t1) == subtype)
783 return t1;
784 else if (code2 == COMPLEX_TYPE && TREE_TYPE (t2) == subtype)
785 return t2;
786 else
787 return build_complex_type (subtype);
790 /* If only one is real, use it as the result. */
792 if (code1 == REAL_TYPE && code2 != REAL_TYPE)
793 return t1;
795 if (code2 == REAL_TYPE && code1 != REAL_TYPE)
796 return t2;
798 /* If both are real and either are decimal floating point types, use
799 the decimal floating point type with the greater precision. */
801 if (code1 == REAL_TYPE && code2 == REAL_TYPE)
803 if (TYPE_MAIN_VARIANT (t1) == dfloat128_type_node
804 || TYPE_MAIN_VARIANT (t2) == dfloat128_type_node)
805 return dfloat128_type_node;
806 else if (TYPE_MAIN_VARIANT (t1) == dfloat64_type_node
807 || TYPE_MAIN_VARIANT (t2) == dfloat64_type_node)
808 return dfloat64_type_node;
809 else if (TYPE_MAIN_VARIANT (t1) == dfloat32_type_node
810 || TYPE_MAIN_VARIANT (t2) == dfloat32_type_node)
811 return dfloat32_type_node;
814 /* Deal with fixed-point types. */
815 if (code1 == FIXED_POINT_TYPE || code2 == FIXED_POINT_TYPE)
817 unsigned int unsignedp = 0, satp = 0;
818 enum machine_mode m1, m2;
819 unsigned int fbit1, ibit1, fbit2, ibit2, max_fbit, max_ibit;
821 m1 = TYPE_MODE (t1);
822 m2 = TYPE_MODE (t2);
824 /* If one input type is saturating, the result type is saturating. */
825 if (TYPE_SATURATING (t1) || TYPE_SATURATING (t2))
826 satp = 1;
828 /* If both fixed-point types are unsigned, the result type is unsigned.
829 When mixing fixed-point and integer types, follow the sign of the
830 fixed-point type.
831 Otherwise, the result type is signed. */
832 if ((TYPE_UNSIGNED (t1) && TYPE_UNSIGNED (t2)
833 && code1 == FIXED_POINT_TYPE && code2 == FIXED_POINT_TYPE)
834 || (code1 == FIXED_POINT_TYPE && code2 != FIXED_POINT_TYPE
835 && TYPE_UNSIGNED (t1))
836 || (code1 != FIXED_POINT_TYPE && code2 == FIXED_POINT_TYPE
837 && TYPE_UNSIGNED (t2)))
838 unsignedp = 1;
840 /* The result type is signed. */
841 if (unsignedp == 0)
843 /* If the input type is unsigned, we need to convert to the
844 signed type. */
845 if (code1 == FIXED_POINT_TYPE && TYPE_UNSIGNED (t1))
847 enum mode_class mclass = (enum mode_class) 0;
848 if (GET_MODE_CLASS (m1) == MODE_UFRACT)
849 mclass = MODE_FRACT;
850 else if (GET_MODE_CLASS (m1) == MODE_UACCUM)
851 mclass = MODE_ACCUM;
852 else
853 gcc_unreachable ();
854 m1 = mode_for_size (GET_MODE_PRECISION (m1), mclass, 0);
856 if (code2 == FIXED_POINT_TYPE && TYPE_UNSIGNED (t2))
858 enum mode_class mclass = (enum mode_class) 0;
859 if (GET_MODE_CLASS (m2) == MODE_UFRACT)
860 mclass = MODE_FRACT;
861 else if (GET_MODE_CLASS (m2) == MODE_UACCUM)
862 mclass = MODE_ACCUM;
863 else
864 gcc_unreachable ();
865 m2 = mode_for_size (GET_MODE_PRECISION (m2), mclass, 0);
869 if (code1 == FIXED_POINT_TYPE)
871 fbit1 = GET_MODE_FBIT (m1);
872 ibit1 = GET_MODE_IBIT (m1);
874 else
876 fbit1 = 0;
877 /* Signed integers need to subtract one sign bit. */
878 ibit1 = TYPE_PRECISION (t1) - (!TYPE_UNSIGNED (t1));
881 if (code2 == FIXED_POINT_TYPE)
883 fbit2 = GET_MODE_FBIT (m2);
884 ibit2 = GET_MODE_IBIT (m2);
886 else
888 fbit2 = 0;
889 /* Signed integers need to subtract one sign bit. */
890 ibit2 = TYPE_PRECISION (t2) - (!TYPE_UNSIGNED (t2));
893 max_ibit = ibit1 >= ibit2 ? ibit1 : ibit2;
894 max_fbit = fbit1 >= fbit2 ? fbit1 : fbit2;
895 return c_common_fixed_point_type_for_size (max_ibit, max_fbit, unsignedp,
896 satp);
899 /* Both real or both integers; use the one with greater precision. */
901 if (TYPE_PRECISION (t1) > TYPE_PRECISION (t2))
902 return t1;
903 else if (TYPE_PRECISION (t2) > TYPE_PRECISION (t1))
904 return t2;
906 /* Same precision. Prefer long longs to longs to ints when the
907 same precision, following the C99 rules on integer type rank
908 (which are equivalent to the C90 rules for C90 types). */
910 if (TYPE_MAIN_VARIANT (t1) == long_long_unsigned_type_node
911 || TYPE_MAIN_VARIANT (t2) == long_long_unsigned_type_node)
912 return long_long_unsigned_type_node;
914 if (TYPE_MAIN_VARIANT (t1) == long_long_integer_type_node
915 || TYPE_MAIN_VARIANT (t2) == long_long_integer_type_node)
917 if (TYPE_UNSIGNED (t1) || TYPE_UNSIGNED (t2))
918 return long_long_unsigned_type_node;
919 else
920 return long_long_integer_type_node;
923 if (TYPE_MAIN_VARIANT (t1) == long_unsigned_type_node
924 || TYPE_MAIN_VARIANT (t2) == long_unsigned_type_node)
925 return long_unsigned_type_node;
927 if (TYPE_MAIN_VARIANT (t1) == long_integer_type_node
928 || TYPE_MAIN_VARIANT (t2) == long_integer_type_node)
930 /* But preserve unsignedness from the other type,
931 since long cannot hold all the values of an unsigned int. */
932 if (TYPE_UNSIGNED (t1) || TYPE_UNSIGNED (t2))
933 return long_unsigned_type_node;
934 else
935 return long_integer_type_node;
938 /* Likewise, prefer long double to double even if same size. */
939 if (TYPE_MAIN_VARIANT (t1) == long_double_type_node
940 || TYPE_MAIN_VARIANT (t2) == long_double_type_node)
941 return long_double_type_node;
943 /* Likewise, prefer double to float even if same size.
944 We got a couple of embedded targets with 32 bit doubles, and the
945 pdp11 might have 64 bit floats. */
946 if (TYPE_MAIN_VARIANT (t1) == double_type_node
947 || TYPE_MAIN_VARIANT (t2) == double_type_node)
948 return double_type_node;
950 /* Otherwise prefer the unsigned one. */
952 if (TYPE_UNSIGNED (t1))
953 return t1;
954 else
955 return t2;
958 /* Wrapper around c_common_type that is used by c-common.c and other
959 front end optimizations that remove promotions. ENUMERAL_TYPEs
960 are allowed here and are converted to their compatible integer types.
961 BOOLEAN_TYPEs are allowed here and return either boolean_type_node or
962 preferably a non-Boolean type as the common type. */
963 tree
964 common_type (tree t1, tree t2)
966 if (TREE_CODE (t1) == ENUMERAL_TYPE)
967 t1 = c_common_type_for_size (TYPE_PRECISION (t1), 1);
968 if (TREE_CODE (t2) == ENUMERAL_TYPE)
969 t2 = c_common_type_for_size (TYPE_PRECISION (t2), 1);
971 /* If both types are BOOLEAN_TYPE, then return boolean_type_node. */
972 if (TREE_CODE (t1) == BOOLEAN_TYPE
973 && TREE_CODE (t2) == BOOLEAN_TYPE)
974 return boolean_type_node;
976 /* If either type is BOOLEAN_TYPE, then return the other. */
977 if (TREE_CODE (t1) == BOOLEAN_TYPE)
978 return t2;
979 if (TREE_CODE (t2) == BOOLEAN_TYPE)
980 return t1;
982 return c_common_type (t1, t2);
985 /* Return 1 if TYPE1 and TYPE2 are compatible types for assignment
986 or various other operations. Return 2 if they are compatible
987 but a warning may be needed if you use them together. */
990 comptypes (tree type1, tree type2)
992 const struct tagged_tu_seen_cache * tagged_tu_seen_base1 = tagged_tu_seen_base;
993 int val;
995 val = comptypes_internal (type1, type2, NULL, NULL);
996 free_all_tagged_tu_seen_up_to (tagged_tu_seen_base1);
998 return val;
1001 /* Like comptypes, but if it returns non-zero because enum and int are
1002 compatible, it sets *ENUM_AND_INT_P to true. */
1004 static int
1005 comptypes_check_enum_int (tree type1, tree type2, bool *enum_and_int_p)
1007 const struct tagged_tu_seen_cache * tagged_tu_seen_base1 = tagged_tu_seen_base;
1008 int val;
1010 val = comptypes_internal (type1, type2, enum_and_int_p, NULL);
1011 free_all_tagged_tu_seen_up_to (tagged_tu_seen_base1);
1013 return val;
1016 /* Like comptypes, but if it returns nonzero for different types, it
1017 sets *DIFFERENT_TYPES_P to true. */
1020 comptypes_check_different_types (tree type1, tree type2,
1021 bool *different_types_p)
1023 const struct tagged_tu_seen_cache * tagged_tu_seen_base1 = tagged_tu_seen_base;
1024 int val;
1026 val = comptypes_internal (type1, type2, NULL, different_types_p);
1027 free_all_tagged_tu_seen_up_to (tagged_tu_seen_base1);
1029 return val;
1032 /* Return 1 if TYPE1 and TYPE2 are compatible types for assignment
1033 or various other operations. Return 2 if they are compatible
1034 but a warning may be needed if you use them together. If
1035 ENUM_AND_INT_P is not NULL, and one type is an enum and the other a
1036 compatible integer type, then this sets *ENUM_AND_INT_P to true;
1037 *ENUM_AND_INT_P is never set to false. If DIFFERENT_TYPES_P is not
1038 NULL, and the types are compatible but different enough not to be
1039 permitted in C11 typedef redeclarations, then this sets
1040 *DIFFERENT_TYPES_P to true; *DIFFERENT_TYPES_P is never set to
1041 false, but may or may not be set if the types are incompatible.
1042 This differs from comptypes, in that we don't free the seen
1043 types. */
1045 static int
1046 comptypes_internal (const_tree type1, const_tree type2, bool *enum_and_int_p,
1047 bool *different_types_p)
1049 const_tree t1 = type1;
1050 const_tree t2 = type2;
1051 int attrval, val;
1053 /* Suppress errors caused by previously reported errors. */
1055 if (t1 == t2 || !t1 || !t2
1056 || TREE_CODE (t1) == ERROR_MARK || TREE_CODE (t2) == ERROR_MARK)
1057 return 1;
1059 /* Enumerated types are compatible with integer types, but this is
1060 not transitive: two enumerated types in the same translation unit
1061 are compatible with each other only if they are the same type. */
1063 if (TREE_CODE (t1) == ENUMERAL_TYPE && TREE_CODE (t2) != ENUMERAL_TYPE)
1065 t1 = c_common_type_for_size (TYPE_PRECISION (t1), TYPE_UNSIGNED (t1));
1066 if (TREE_CODE (t2) != VOID_TYPE)
1068 if (enum_and_int_p != NULL)
1069 *enum_and_int_p = true;
1070 if (different_types_p != NULL)
1071 *different_types_p = true;
1074 else if (TREE_CODE (t2) == ENUMERAL_TYPE && TREE_CODE (t1) != ENUMERAL_TYPE)
1076 t2 = c_common_type_for_size (TYPE_PRECISION (t2), TYPE_UNSIGNED (t2));
1077 if (TREE_CODE (t1) != VOID_TYPE)
1079 if (enum_and_int_p != NULL)
1080 *enum_and_int_p = true;
1081 if (different_types_p != NULL)
1082 *different_types_p = true;
1086 if (t1 == t2)
1087 return 1;
1089 /* Different classes of types can't be compatible. */
1091 if (TREE_CODE (t1) != TREE_CODE (t2))
1092 return 0;
1094 /* Qualifiers must match. C99 6.7.3p9 */
1096 if (TYPE_QUALS (t1) != TYPE_QUALS (t2))
1097 return 0;
1099 /* Allow for two different type nodes which have essentially the same
1100 definition. Note that we already checked for equality of the type
1101 qualifiers (just above). */
1103 if (TREE_CODE (t1) != ARRAY_TYPE
1104 && TYPE_MAIN_VARIANT (t1) == TYPE_MAIN_VARIANT (t2))
1105 return 1;
1107 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
1108 if (!(attrval = comp_type_attributes (t1, t2)))
1109 return 0;
1111 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
1112 val = 0;
1114 switch (TREE_CODE (t1))
1116 case POINTER_TYPE:
1117 /* Do not remove mode or aliasing information. */
1118 if (TYPE_MODE (t1) != TYPE_MODE (t2)
1119 || TYPE_REF_CAN_ALIAS_ALL (t1) != TYPE_REF_CAN_ALIAS_ALL (t2))
1120 break;
1121 val = (TREE_TYPE (t1) == TREE_TYPE (t2)
1122 ? 1 : comptypes_internal (TREE_TYPE (t1), TREE_TYPE (t2),
1123 enum_and_int_p, different_types_p));
1124 break;
1126 case FUNCTION_TYPE:
1127 val = function_types_compatible_p (t1, t2, enum_and_int_p,
1128 different_types_p);
1129 break;
1131 case ARRAY_TYPE:
1133 tree d1 = TYPE_DOMAIN (t1);
1134 tree d2 = TYPE_DOMAIN (t2);
1135 bool d1_variable, d2_variable;
1136 bool d1_zero, d2_zero;
1137 val = 1;
1139 /* Target types must match incl. qualifiers. */
1140 if (TREE_TYPE (t1) != TREE_TYPE (t2)
1141 && 0 == (val = comptypes_internal (TREE_TYPE (t1), TREE_TYPE (t2),
1142 enum_and_int_p,
1143 different_types_p)))
1144 return 0;
1146 if (different_types_p != NULL
1147 && (d1 == 0) != (d2 == 0))
1148 *different_types_p = true;
1149 /* Sizes must match unless one is missing or variable. */
1150 if (d1 == 0 || d2 == 0 || d1 == d2)
1151 break;
1153 d1_zero = !TYPE_MAX_VALUE (d1);
1154 d2_zero = !TYPE_MAX_VALUE (d2);
1156 d1_variable = (!d1_zero
1157 && (TREE_CODE (TYPE_MIN_VALUE (d1)) != INTEGER_CST
1158 || TREE_CODE (TYPE_MAX_VALUE (d1)) != INTEGER_CST));
1159 d2_variable = (!d2_zero
1160 && (TREE_CODE (TYPE_MIN_VALUE (d2)) != INTEGER_CST
1161 || TREE_CODE (TYPE_MAX_VALUE (d2)) != INTEGER_CST));
1162 d1_variable = d1_variable || (d1_zero && c_vla_type_p (t1));
1163 d2_variable = d2_variable || (d2_zero && c_vla_type_p (t2));
1165 if (different_types_p != NULL
1166 && d1_variable != d2_variable)
1167 *different_types_p = true;
1168 if (d1_variable || d2_variable)
1169 break;
1170 if (d1_zero && d2_zero)
1171 break;
1172 if (d1_zero || d2_zero
1173 || !tree_int_cst_equal (TYPE_MIN_VALUE (d1), TYPE_MIN_VALUE (d2))
1174 || !tree_int_cst_equal (TYPE_MAX_VALUE (d1), TYPE_MAX_VALUE (d2)))
1175 val = 0;
1177 break;
1180 case ENUMERAL_TYPE:
1181 case RECORD_TYPE:
1182 case UNION_TYPE:
1183 if (val != 1 && !same_translation_unit_p (t1, t2))
1185 tree a1 = TYPE_ATTRIBUTES (t1);
1186 tree a2 = TYPE_ATTRIBUTES (t2);
1188 if (! attribute_list_contained (a1, a2)
1189 && ! attribute_list_contained (a2, a1))
1190 break;
1192 if (attrval != 2)
1193 return tagged_types_tu_compatible_p (t1, t2, enum_and_int_p,
1194 different_types_p);
1195 val = tagged_types_tu_compatible_p (t1, t2, enum_and_int_p,
1196 different_types_p);
1198 break;
1200 case VECTOR_TYPE:
1201 val = (TYPE_VECTOR_SUBPARTS (t1) == TYPE_VECTOR_SUBPARTS (t2)
1202 && comptypes_internal (TREE_TYPE (t1), TREE_TYPE (t2),
1203 enum_and_int_p, different_types_p));
1204 break;
1206 default:
1207 break;
1209 return attrval == 2 && val == 1 ? 2 : val;
1212 /* Return 1 if TTL and TTR are pointers to types that are equivalent, ignoring
1213 their qualifiers, except for named address spaces. If the pointers point to
1214 different named addresses, then we must determine if one address space is a
1215 subset of the other. */
1217 static int
1218 comp_target_types (location_t location, tree ttl, tree ttr)
1220 int val;
1221 tree mvl = TREE_TYPE (ttl);
1222 tree mvr = TREE_TYPE (ttr);
1223 addr_space_t asl = TYPE_ADDR_SPACE (mvl);
1224 addr_space_t asr = TYPE_ADDR_SPACE (mvr);
1225 addr_space_t as_common;
1226 bool enum_and_int_p;
1228 /* Fail if pointers point to incompatible address spaces. */
1229 if (!addr_space_superset (asl, asr, &as_common))
1230 return 0;
1232 /* Do not lose qualifiers on element types of array types that are
1233 pointer targets by taking their TYPE_MAIN_VARIANT. */
1234 if (TREE_CODE (mvl) != ARRAY_TYPE)
1235 mvl = (TYPE_ATOMIC (mvl)
1236 ? c_build_qualified_type (TYPE_MAIN_VARIANT (mvl), TYPE_QUAL_ATOMIC)
1237 : TYPE_MAIN_VARIANT (mvl));
1238 if (TREE_CODE (mvr) != ARRAY_TYPE)
1239 mvr = (TYPE_ATOMIC (mvr)
1240 ? c_build_qualified_type (TYPE_MAIN_VARIANT (mvr), TYPE_QUAL_ATOMIC)
1241 : TYPE_MAIN_VARIANT (mvr));
1242 enum_and_int_p = false;
1243 val = comptypes_check_enum_int (mvl, mvr, &enum_and_int_p);
1245 if (val == 2)
1246 pedwarn (location, OPT_Wpedantic, "types are not quite compatible");
1248 if (val == 1 && enum_and_int_p && warn_cxx_compat)
1249 warning_at (location, OPT_Wc___compat,
1250 "pointer target types incompatible in C++");
1252 return val;
1255 /* Subroutines of `comptypes'. */
1257 /* Determine whether two trees derive from the same translation unit.
1258 If the CONTEXT chain ends in a null, that tree's context is still
1259 being parsed, so if two trees have context chains ending in null,
1260 they're in the same translation unit. */
1262 same_translation_unit_p (const_tree t1, const_tree t2)
1264 while (t1 && TREE_CODE (t1) != TRANSLATION_UNIT_DECL)
1265 switch (TREE_CODE_CLASS (TREE_CODE (t1)))
1267 case tcc_declaration:
1268 t1 = DECL_CONTEXT (t1); break;
1269 case tcc_type:
1270 t1 = TYPE_CONTEXT (t1); break;
1271 case tcc_exceptional:
1272 t1 = BLOCK_SUPERCONTEXT (t1); break; /* assume block */
1273 default: gcc_unreachable ();
1276 while (t2 && TREE_CODE (t2) != TRANSLATION_UNIT_DECL)
1277 switch (TREE_CODE_CLASS (TREE_CODE (t2)))
1279 case tcc_declaration:
1280 t2 = DECL_CONTEXT (t2); break;
1281 case tcc_type:
1282 t2 = TYPE_CONTEXT (t2); break;
1283 case tcc_exceptional:
1284 t2 = BLOCK_SUPERCONTEXT (t2); break; /* assume block */
1285 default: gcc_unreachable ();
1288 return t1 == t2;
1291 /* Allocate the seen two types, assuming that they are compatible. */
1293 static struct tagged_tu_seen_cache *
1294 alloc_tagged_tu_seen_cache (const_tree t1, const_tree t2)
1296 struct tagged_tu_seen_cache *tu = XNEW (struct tagged_tu_seen_cache);
1297 tu->next = tagged_tu_seen_base;
1298 tu->t1 = t1;
1299 tu->t2 = t2;
1301 tagged_tu_seen_base = tu;
1303 /* The C standard says that two structures in different translation
1304 units are compatible with each other only if the types of their
1305 fields are compatible (among other things). We assume that they
1306 are compatible until proven otherwise when building the cache.
1307 An example where this can occur is:
1308 struct a
1310 struct a *next;
1312 If we are comparing this against a similar struct in another TU,
1313 and did not assume they were compatible, we end up with an infinite
1314 loop. */
1315 tu->val = 1;
1316 return tu;
1319 /* Free the seen types until we get to TU_TIL. */
1321 static void
1322 free_all_tagged_tu_seen_up_to (const struct tagged_tu_seen_cache *tu_til)
1324 const struct tagged_tu_seen_cache *tu = tagged_tu_seen_base;
1325 while (tu != tu_til)
1327 const struct tagged_tu_seen_cache *const tu1
1328 = (const struct tagged_tu_seen_cache *) tu;
1329 tu = tu1->next;
1330 free (CONST_CAST (struct tagged_tu_seen_cache *, tu1));
1332 tagged_tu_seen_base = tu_til;
1335 /* Return 1 if two 'struct', 'union', or 'enum' types T1 and T2 are
1336 compatible. If the two types are not the same (which has been
1337 checked earlier), this can only happen when multiple translation
1338 units are being compiled. See C99 6.2.7 paragraph 1 for the exact
1339 rules. ENUM_AND_INT_P and DIFFERENT_TYPES_P are as in
1340 comptypes_internal. */
1342 static int
1343 tagged_types_tu_compatible_p (const_tree t1, const_tree t2,
1344 bool *enum_and_int_p, bool *different_types_p)
1346 tree s1, s2;
1347 bool needs_warning = false;
1349 /* We have to verify that the tags of the types are the same. This
1350 is harder than it looks because this may be a typedef, so we have
1351 to go look at the original type. It may even be a typedef of a
1352 typedef...
1353 In the case of compiler-created builtin structs the TYPE_DECL
1354 may be a dummy, with no DECL_ORIGINAL_TYPE. Don't fault. */
1355 while (TYPE_NAME (t1)
1356 && TREE_CODE (TYPE_NAME (t1)) == TYPE_DECL
1357 && DECL_ORIGINAL_TYPE (TYPE_NAME (t1)))
1358 t1 = DECL_ORIGINAL_TYPE (TYPE_NAME (t1));
1360 while (TYPE_NAME (t2)
1361 && TREE_CODE (TYPE_NAME (t2)) == TYPE_DECL
1362 && DECL_ORIGINAL_TYPE (TYPE_NAME (t2)))
1363 t2 = DECL_ORIGINAL_TYPE (TYPE_NAME (t2));
1365 /* C90 didn't have the requirement that the two tags be the same. */
1366 if (flag_isoc99 && TYPE_NAME (t1) != TYPE_NAME (t2))
1367 return 0;
1369 /* C90 didn't say what happened if one or both of the types were
1370 incomplete; we choose to follow C99 rules here, which is that they
1371 are compatible. */
1372 if (TYPE_SIZE (t1) == NULL
1373 || TYPE_SIZE (t2) == NULL)
1374 return 1;
1377 const struct tagged_tu_seen_cache * tts_i;
1378 for (tts_i = tagged_tu_seen_base; tts_i != NULL; tts_i = tts_i->next)
1379 if (tts_i->t1 == t1 && tts_i->t2 == t2)
1380 return tts_i->val;
1383 switch (TREE_CODE (t1))
1385 case ENUMERAL_TYPE:
1387 struct tagged_tu_seen_cache *tu = alloc_tagged_tu_seen_cache (t1, t2);
1388 /* Speed up the case where the type values are in the same order. */
1389 tree tv1 = TYPE_VALUES (t1);
1390 tree tv2 = TYPE_VALUES (t2);
1392 if (tv1 == tv2)
1394 return 1;
1397 for (;tv1 && tv2; tv1 = TREE_CHAIN (tv1), tv2 = TREE_CHAIN (tv2))
1399 if (TREE_PURPOSE (tv1) != TREE_PURPOSE (tv2))
1400 break;
1401 if (simple_cst_equal (TREE_VALUE (tv1), TREE_VALUE (tv2)) != 1)
1403 tu->val = 0;
1404 return 0;
1408 if (tv1 == NULL_TREE && tv2 == NULL_TREE)
1410 return 1;
1412 if (tv1 == NULL_TREE || tv2 == NULL_TREE)
1414 tu->val = 0;
1415 return 0;
1418 if (list_length (TYPE_VALUES (t1)) != list_length (TYPE_VALUES (t2)))
1420 tu->val = 0;
1421 return 0;
1424 for (s1 = TYPE_VALUES (t1); s1; s1 = TREE_CHAIN (s1))
1426 s2 = purpose_member (TREE_PURPOSE (s1), TYPE_VALUES (t2));
1427 if (s2 == NULL
1428 || simple_cst_equal (TREE_VALUE (s1), TREE_VALUE (s2)) != 1)
1430 tu->val = 0;
1431 return 0;
1434 return 1;
1437 case UNION_TYPE:
1439 struct tagged_tu_seen_cache *tu = alloc_tagged_tu_seen_cache (t1, t2);
1440 if (list_length (TYPE_FIELDS (t1)) != list_length (TYPE_FIELDS (t2)))
1442 tu->val = 0;
1443 return 0;
1446 /* Speed up the common case where the fields are in the same order. */
1447 for (s1 = TYPE_FIELDS (t1), s2 = TYPE_FIELDS (t2); s1 && s2;
1448 s1 = DECL_CHAIN (s1), s2 = DECL_CHAIN (s2))
1450 int result;
1452 if (DECL_NAME (s1) != DECL_NAME (s2))
1453 break;
1454 result = comptypes_internal (TREE_TYPE (s1), TREE_TYPE (s2),
1455 enum_and_int_p, different_types_p);
1457 if (result != 1 && !DECL_NAME (s1))
1458 break;
1459 if (result == 0)
1461 tu->val = 0;
1462 return 0;
1464 if (result == 2)
1465 needs_warning = true;
1467 if (TREE_CODE (s1) == FIELD_DECL
1468 && simple_cst_equal (DECL_FIELD_BIT_OFFSET (s1),
1469 DECL_FIELD_BIT_OFFSET (s2)) != 1)
1471 tu->val = 0;
1472 return 0;
1475 if (!s1 && !s2)
1477 tu->val = needs_warning ? 2 : 1;
1478 return tu->val;
1481 for (s1 = TYPE_FIELDS (t1); s1; s1 = DECL_CHAIN (s1))
1483 bool ok = false;
1485 for (s2 = TYPE_FIELDS (t2); s2; s2 = DECL_CHAIN (s2))
1486 if (DECL_NAME (s1) == DECL_NAME (s2))
1488 int result;
1490 result = comptypes_internal (TREE_TYPE (s1), TREE_TYPE (s2),
1491 enum_and_int_p,
1492 different_types_p);
1494 if (result != 1 && !DECL_NAME (s1))
1495 continue;
1496 if (result == 0)
1498 tu->val = 0;
1499 return 0;
1501 if (result == 2)
1502 needs_warning = true;
1504 if (TREE_CODE (s1) == FIELD_DECL
1505 && simple_cst_equal (DECL_FIELD_BIT_OFFSET (s1),
1506 DECL_FIELD_BIT_OFFSET (s2)) != 1)
1507 break;
1509 ok = true;
1510 break;
1512 if (!ok)
1514 tu->val = 0;
1515 return 0;
1518 tu->val = needs_warning ? 2 : 10;
1519 return tu->val;
1522 case RECORD_TYPE:
1524 struct tagged_tu_seen_cache *tu = alloc_tagged_tu_seen_cache (t1, t2);
1526 for (s1 = TYPE_FIELDS (t1), s2 = TYPE_FIELDS (t2);
1527 s1 && s2;
1528 s1 = DECL_CHAIN (s1), s2 = DECL_CHAIN (s2))
1530 int result;
1531 if (TREE_CODE (s1) != TREE_CODE (s2)
1532 || DECL_NAME (s1) != DECL_NAME (s2))
1533 break;
1534 result = comptypes_internal (TREE_TYPE (s1), TREE_TYPE (s2),
1535 enum_and_int_p, different_types_p);
1536 if (result == 0)
1537 break;
1538 if (result == 2)
1539 needs_warning = true;
1541 if (TREE_CODE (s1) == FIELD_DECL
1542 && simple_cst_equal (DECL_FIELD_BIT_OFFSET (s1),
1543 DECL_FIELD_BIT_OFFSET (s2)) != 1)
1544 break;
1546 if (s1 && s2)
1547 tu->val = 0;
1548 else
1549 tu->val = needs_warning ? 2 : 1;
1550 return tu->val;
1553 default:
1554 gcc_unreachable ();
1558 /* Return 1 if two function types F1 and F2 are compatible.
1559 If either type specifies no argument types,
1560 the other must specify a fixed number of self-promoting arg types.
1561 Otherwise, if one type specifies only the number of arguments,
1562 the other must specify that number of self-promoting arg types.
1563 Otherwise, the argument types must match.
1564 ENUM_AND_INT_P and DIFFERENT_TYPES_P are as in comptypes_internal. */
1566 static int
1567 function_types_compatible_p (const_tree f1, const_tree f2,
1568 bool *enum_and_int_p, bool *different_types_p)
1570 tree args1, args2;
1571 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
1572 int val = 1;
1573 int val1;
1574 tree ret1, ret2;
1576 ret1 = TREE_TYPE (f1);
1577 ret2 = TREE_TYPE (f2);
1579 /* 'volatile' qualifiers on a function's return type used to mean
1580 the function is noreturn. */
1581 if (TYPE_VOLATILE (ret1) != TYPE_VOLATILE (ret2))
1582 pedwarn (input_location, 0, "function return types not compatible due to %<volatile%>");
1583 if (TYPE_VOLATILE (ret1))
1584 ret1 = build_qualified_type (TYPE_MAIN_VARIANT (ret1),
1585 TYPE_QUALS (ret1) & ~TYPE_QUAL_VOLATILE);
1586 if (TYPE_VOLATILE (ret2))
1587 ret2 = build_qualified_type (TYPE_MAIN_VARIANT (ret2),
1588 TYPE_QUALS (ret2) & ~TYPE_QUAL_VOLATILE);
1589 val = comptypes_internal (ret1, ret2, enum_and_int_p, different_types_p);
1590 if (val == 0)
1591 return 0;
1593 args1 = TYPE_ARG_TYPES (f1);
1594 args2 = TYPE_ARG_TYPES (f2);
1596 if (different_types_p != NULL
1597 && (args1 == 0) != (args2 == 0))
1598 *different_types_p = true;
1600 /* An unspecified parmlist matches any specified parmlist
1601 whose argument types don't need default promotions. */
1603 if (args1 == 0)
1605 if (!self_promoting_args_p (args2))
1606 return 0;
1607 /* If one of these types comes from a non-prototype fn definition,
1608 compare that with the other type's arglist.
1609 If they don't match, ask for a warning (but no error). */
1610 if (TYPE_ACTUAL_ARG_TYPES (f1)
1611 && 1 != type_lists_compatible_p (args2, TYPE_ACTUAL_ARG_TYPES (f1),
1612 enum_and_int_p, different_types_p))
1613 val = 2;
1614 return val;
1616 if (args2 == 0)
1618 if (!self_promoting_args_p (args1))
1619 return 0;
1620 if (TYPE_ACTUAL_ARG_TYPES (f2)
1621 && 1 != type_lists_compatible_p (args1, TYPE_ACTUAL_ARG_TYPES (f2),
1622 enum_and_int_p, different_types_p))
1623 val = 2;
1624 return val;
1627 /* Both types have argument lists: compare them and propagate results. */
1628 val1 = type_lists_compatible_p (args1, args2, enum_and_int_p,
1629 different_types_p);
1630 return val1 != 1 ? val1 : val;
1633 /* Check two lists of types for compatibility, returning 0 for
1634 incompatible, 1 for compatible, or 2 for compatible with
1635 warning. ENUM_AND_INT_P and DIFFERENT_TYPES_P are as in
1636 comptypes_internal. */
1638 static int
1639 type_lists_compatible_p (const_tree args1, const_tree args2,
1640 bool *enum_and_int_p, bool *different_types_p)
1642 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
1643 int val = 1;
1644 int newval = 0;
1646 while (1)
1648 tree a1, mv1, a2, mv2;
1649 if (args1 == 0 && args2 == 0)
1650 return val;
1651 /* If one list is shorter than the other,
1652 they fail to match. */
1653 if (args1 == 0 || args2 == 0)
1654 return 0;
1655 mv1 = a1 = TREE_VALUE (args1);
1656 mv2 = a2 = TREE_VALUE (args2);
1657 if (mv1 && mv1 != error_mark_node && TREE_CODE (mv1) != ARRAY_TYPE)
1658 mv1 = (TYPE_ATOMIC (mv1)
1659 ? c_build_qualified_type (TYPE_MAIN_VARIANT (mv1),
1660 TYPE_QUAL_ATOMIC)
1661 : TYPE_MAIN_VARIANT (mv1));
1662 if (mv2 && mv2 != error_mark_node && TREE_CODE (mv2) != ARRAY_TYPE)
1663 mv2 = (TYPE_ATOMIC (mv2)
1664 ? c_build_qualified_type (TYPE_MAIN_VARIANT (mv2),
1665 TYPE_QUAL_ATOMIC)
1666 : TYPE_MAIN_VARIANT (mv2));
1667 /* A null pointer instead of a type
1668 means there is supposed to be an argument
1669 but nothing is specified about what type it has.
1670 So match anything that self-promotes. */
1671 if (different_types_p != NULL
1672 && (a1 == 0) != (a2 == 0))
1673 *different_types_p = true;
1674 if (a1 == 0)
1676 if (c_type_promotes_to (a2) != a2)
1677 return 0;
1679 else if (a2 == 0)
1681 if (c_type_promotes_to (a1) != a1)
1682 return 0;
1684 /* If one of the lists has an error marker, ignore this arg. */
1685 else if (TREE_CODE (a1) == ERROR_MARK
1686 || TREE_CODE (a2) == ERROR_MARK)
1688 else if (!(newval = comptypes_internal (mv1, mv2, enum_and_int_p,
1689 different_types_p)))
1691 if (different_types_p != NULL)
1692 *different_types_p = true;
1693 /* Allow wait (union {union wait *u; int *i} *)
1694 and wait (union wait *) to be compatible. */
1695 if (TREE_CODE (a1) == UNION_TYPE
1696 && (TYPE_NAME (a1) == 0
1697 || TYPE_TRANSPARENT_AGGR (a1))
1698 && TREE_CODE (TYPE_SIZE (a1)) == INTEGER_CST
1699 && tree_int_cst_equal (TYPE_SIZE (a1),
1700 TYPE_SIZE (a2)))
1702 tree memb;
1703 for (memb = TYPE_FIELDS (a1);
1704 memb; memb = DECL_CHAIN (memb))
1706 tree mv3 = TREE_TYPE (memb);
1707 if (mv3 && mv3 != error_mark_node
1708 && TREE_CODE (mv3) != ARRAY_TYPE)
1709 mv3 = (TYPE_ATOMIC (mv3)
1710 ? c_build_qualified_type (TYPE_MAIN_VARIANT (mv3),
1711 TYPE_QUAL_ATOMIC)
1712 : TYPE_MAIN_VARIANT (mv3));
1713 if (comptypes_internal (mv3, mv2, enum_and_int_p,
1714 different_types_p))
1715 break;
1717 if (memb == 0)
1718 return 0;
1720 else if (TREE_CODE (a2) == UNION_TYPE
1721 && (TYPE_NAME (a2) == 0
1722 || TYPE_TRANSPARENT_AGGR (a2))
1723 && TREE_CODE (TYPE_SIZE (a2)) == INTEGER_CST
1724 && tree_int_cst_equal (TYPE_SIZE (a2),
1725 TYPE_SIZE (a1)))
1727 tree memb;
1728 for (memb = TYPE_FIELDS (a2);
1729 memb; memb = DECL_CHAIN (memb))
1731 tree mv3 = TREE_TYPE (memb);
1732 if (mv3 && mv3 != error_mark_node
1733 && TREE_CODE (mv3) != ARRAY_TYPE)
1734 mv3 = (TYPE_ATOMIC (mv3)
1735 ? c_build_qualified_type (TYPE_MAIN_VARIANT (mv3),
1736 TYPE_QUAL_ATOMIC)
1737 : TYPE_MAIN_VARIANT (mv3));
1738 if (comptypes_internal (mv3, mv1, enum_and_int_p,
1739 different_types_p))
1740 break;
1742 if (memb == 0)
1743 return 0;
1745 else
1746 return 0;
1749 /* comptypes said ok, but record if it said to warn. */
1750 if (newval > val)
1751 val = newval;
1753 args1 = TREE_CHAIN (args1);
1754 args2 = TREE_CHAIN (args2);
1758 /* Compute the size to increment a pointer by. When a function type or void
1759 type or incomplete type is passed, size_one_node is returned.
1760 This function does not emit any diagnostics; the caller is responsible
1761 for that. */
1763 static tree
1764 c_size_in_bytes (const_tree type)
1766 enum tree_code code = TREE_CODE (type);
1768 if (code == FUNCTION_TYPE || code == VOID_TYPE || code == ERROR_MARK
1769 || !COMPLETE_TYPE_P (type))
1770 return size_one_node;
1772 /* Convert in case a char is more than one unit. */
1773 return size_binop_loc (input_location, CEIL_DIV_EXPR, TYPE_SIZE_UNIT (type),
1774 size_int (TYPE_PRECISION (char_type_node)
1775 / BITS_PER_UNIT));
1778 /* Return either DECL or its known constant value (if it has one). */
1780 tree
1781 decl_constant_value (tree decl)
1783 if (/* Don't change a variable array bound or initial value to a constant
1784 in a place where a variable is invalid. Note that DECL_INITIAL
1785 isn't valid for a PARM_DECL. */
1786 current_function_decl != 0
1787 && TREE_CODE (decl) != PARM_DECL
1788 && !TREE_THIS_VOLATILE (decl)
1789 && TREE_READONLY (decl)
1790 && DECL_INITIAL (decl) != 0
1791 && TREE_CODE (DECL_INITIAL (decl)) != ERROR_MARK
1792 /* This is invalid if initial value is not constant.
1793 If it has either a function call, a memory reference,
1794 or a variable, then re-evaluating it could give different results. */
1795 && TREE_CONSTANT (DECL_INITIAL (decl))
1796 /* Check for cases where this is sub-optimal, even though valid. */
1797 && TREE_CODE (DECL_INITIAL (decl)) != CONSTRUCTOR)
1798 return DECL_INITIAL (decl);
1799 return decl;
1802 /* Convert the array expression EXP to a pointer. */
1803 static tree
1804 array_to_pointer_conversion (location_t loc, tree exp)
1806 tree orig_exp = exp;
1807 tree type = TREE_TYPE (exp);
1808 tree adr;
1809 tree restype = TREE_TYPE (type);
1810 tree ptrtype;
1812 gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
1814 STRIP_TYPE_NOPS (exp);
1816 if (TREE_NO_WARNING (orig_exp))
1817 TREE_NO_WARNING (exp) = 1;
1819 ptrtype = build_pointer_type (restype);
1821 if (TREE_CODE (exp) == INDIRECT_REF)
1822 return convert (ptrtype, TREE_OPERAND (exp, 0));
1824 /* In C++ array compound literals are temporary objects unless they are
1825 const or appear in namespace scope, so they are destroyed too soon
1826 to use them for much of anything (c++/53220). */
1827 if (warn_cxx_compat && TREE_CODE (exp) == COMPOUND_LITERAL_EXPR)
1829 tree decl = TREE_OPERAND (TREE_OPERAND (exp, 0), 0);
1830 if (!TREE_READONLY (decl) && !TREE_STATIC (decl))
1831 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wc___compat,
1832 "converting an array compound literal to a pointer "
1833 "is ill-formed in C++");
1836 adr = build_unary_op (loc, ADDR_EXPR, exp, 1);
1837 return convert (ptrtype, adr);
1840 /* Convert the function expression EXP to a pointer. */
1841 static tree
1842 function_to_pointer_conversion (location_t loc, tree exp)
1844 tree orig_exp = exp;
1846 gcc_assert (TREE_CODE (TREE_TYPE (exp)) == FUNCTION_TYPE);
1848 STRIP_TYPE_NOPS (exp);
1850 if (TREE_NO_WARNING (orig_exp))
1851 TREE_NO_WARNING (exp) = 1;
1853 return build_unary_op (loc, ADDR_EXPR, exp, 0);
1856 /* Mark EXP as read, not just set, for set but not used -Wunused
1857 warning purposes. */
1859 void
1860 mark_exp_read (tree exp)
1862 switch (TREE_CODE (exp))
1864 case VAR_DECL:
1865 case PARM_DECL:
1866 DECL_READ_P (exp) = 1;
1867 break;
1868 case ARRAY_REF:
1869 case COMPONENT_REF:
1870 case MODIFY_EXPR:
1871 case REALPART_EXPR:
1872 case IMAGPART_EXPR:
1873 CASE_CONVERT:
1874 case ADDR_EXPR:
1875 mark_exp_read (TREE_OPERAND (exp, 0));
1876 break;
1877 case COMPOUND_EXPR:
1878 case C_MAYBE_CONST_EXPR:
1879 mark_exp_read (TREE_OPERAND (exp, 1));
1880 break;
1881 default:
1882 break;
1886 /* Perform the default conversion of arrays and functions to pointers.
1887 Return the result of converting EXP. For any other expression, just
1888 return EXP.
1890 LOC is the location of the expression. */
1892 struct c_expr
1893 default_function_array_conversion (location_t loc, struct c_expr exp)
1895 tree orig_exp = exp.value;
1896 tree type = TREE_TYPE (exp.value);
1897 enum tree_code code = TREE_CODE (type);
1899 switch (code)
1901 case ARRAY_TYPE:
1903 bool not_lvalue = false;
1904 bool lvalue_array_p;
1906 while ((TREE_CODE (exp.value) == NON_LVALUE_EXPR
1907 || CONVERT_EXPR_P (exp.value))
1908 && TREE_TYPE (TREE_OPERAND (exp.value, 0)) == type)
1910 if (TREE_CODE (exp.value) == NON_LVALUE_EXPR)
1911 not_lvalue = true;
1912 exp.value = TREE_OPERAND (exp.value, 0);
1915 if (TREE_NO_WARNING (orig_exp))
1916 TREE_NO_WARNING (exp.value) = 1;
1918 lvalue_array_p = !not_lvalue && lvalue_p (exp.value);
1919 if (!flag_isoc99 && !lvalue_array_p)
1921 /* Before C99, non-lvalue arrays do not decay to pointers.
1922 Normally, using such an array would be invalid; but it can
1923 be used correctly inside sizeof or as a statement expression.
1924 Thus, do not give an error here; an error will result later. */
1925 return exp;
1928 exp.value = array_to_pointer_conversion (loc, exp.value);
1930 break;
1931 case FUNCTION_TYPE:
1932 exp.value = function_to_pointer_conversion (loc, exp.value);
1933 break;
1934 default:
1935 break;
1938 return exp;
1941 struct c_expr
1942 default_function_array_read_conversion (location_t loc, struct c_expr exp)
1944 mark_exp_read (exp.value);
1945 return default_function_array_conversion (loc, exp);
1948 /* Return whether EXPR should be treated as an atomic lvalue for the
1949 purposes of load and store handling. */
1951 static bool
1952 really_atomic_lvalue (tree expr)
1954 if (expr == error_mark_node || TREE_TYPE (expr) == error_mark_node)
1955 return false;
1956 if (!TYPE_ATOMIC (TREE_TYPE (expr)))
1957 return false;
1958 if (!lvalue_p (expr))
1959 return false;
1961 /* Ignore _Atomic on register variables, since their addresses can't
1962 be taken so (a) atomicity is irrelevant and (b) the normal atomic
1963 sequences wouldn't work. Ignore _Atomic on structures containing
1964 bit-fields, since accessing elements of atomic structures or
1965 unions is undefined behavior (C11 6.5.2.3#5), but it's unclear if
1966 it's undefined at translation time or execution time, and the
1967 normal atomic sequences again wouldn't work. */
1968 while (handled_component_p (expr))
1970 if (TREE_CODE (expr) == COMPONENT_REF
1971 && DECL_C_BIT_FIELD (TREE_OPERAND (expr, 1)))
1972 return false;
1973 expr = TREE_OPERAND (expr, 0);
1975 if (DECL_P (expr) && C_DECL_REGISTER (expr))
1976 return false;
1977 return true;
1980 /* Convert expression EXP (location LOC) from lvalue to rvalue,
1981 including converting functions and arrays to pointers if CONVERT_P.
1982 If READ_P, also mark the expression as having been read. */
1984 struct c_expr
1985 convert_lvalue_to_rvalue (location_t loc, struct c_expr exp,
1986 bool convert_p, bool read_p)
1988 if (read_p)
1989 mark_exp_read (exp.value);
1990 if (convert_p)
1991 exp = default_function_array_conversion (loc, exp);
1992 if (really_atomic_lvalue (exp.value))
1994 vec<tree, va_gc> *params;
1995 tree nonatomic_type, tmp, tmp_addr, fndecl, func_call;
1996 tree expr_type = TREE_TYPE (exp.value);
1997 tree expr_addr = build_unary_op (loc, ADDR_EXPR, exp.value, 0);
1998 tree seq_cst = build_int_cst (integer_type_node, MEMMODEL_SEQ_CST);
2000 gcc_assert (TYPE_ATOMIC (expr_type));
2002 /* Expansion of a generic atomic load may require an addition
2003 element, so allocate enough to prevent a resize. */
2004 vec_alloc (params, 4);
2006 /* Remove the qualifiers for the rest of the expressions and
2007 create the VAL temp variable to hold the RHS. */
2008 nonatomic_type = build_qualified_type (expr_type, TYPE_UNQUALIFIED);
2009 tmp = create_tmp_var (nonatomic_type, NULL);
2010 tmp_addr = build_unary_op (loc, ADDR_EXPR, tmp, 0);
2011 TREE_ADDRESSABLE (tmp) = 1;
2012 TREE_NO_WARNING (tmp) = 1;
2014 /* Issue __atomic_load (&expr, &tmp, SEQ_CST); */
2015 fndecl = builtin_decl_explicit (BUILT_IN_ATOMIC_LOAD);
2016 params->quick_push (expr_addr);
2017 params->quick_push (tmp_addr);
2018 params->quick_push (seq_cst);
2019 func_call = c_build_function_call_vec (loc, vNULL, fndecl, params, NULL);
2021 /* EXPR is always read. */
2022 mark_exp_read (exp.value);
2024 /* Return tmp which contains the value loaded. */
2025 exp.value = build2 (COMPOUND_EXPR, nonatomic_type, func_call, tmp);
2027 return exp;
2030 /* EXP is an expression of integer type. Apply the integer promotions
2031 to it and return the promoted value. */
2033 tree
2034 perform_integral_promotions (tree exp)
2036 tree type = TREE_TYPE (exp);
2037 enum tree_code code = TREE_CODE (type);
2039 gcc_assert (INTEGRAL_TYPE_P (type));
2041 /* Normally convert enums to int,
2042 but convert wide enums to something wider. */
2043 if (code == ENUMERAL_TYPE)
2045 type = c_common_type_for_size (MAX (TYPE_PRECISION (type),
2046 TYPE_PRECISION (integer_type_node)),
2047 ((TYPE_PRECISION (type)
2048 >= TYPE_PRECISION (integer_type_node))
2049 && TYPE_UNSIGNED (type)));
2051 return convert (type, exp);
2054 /* ??? This should no longer be needed now bit-fields have their
2055 proper types. */
2056 if (TREE_CODE (exp) == COMPONENT_REF
2057 && DECL_C_BIT_FIELD (TREE_OPERAND (exp, 1))
2058 /* If it's thinner than an int, promote it like a
2059 c_promoting_integer_type_p, otherwise leave it alone. */
2060 && 0 > compare_tree_int (DECL_SIZE (TREE_OPERAND (exp, 1)),
2061 TYPE_PRECISION (integer_type_node)))
2062 return convert (integer_type_node, exp);
2064 if (c_promoting_integer_type_p (type))
2066 /* Preserve unsignedness if not really getting any wider. */
2067 if (TYPE_UNSIGNED (type)
2068 && TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node))
2069 return convert (unsigned_type_node, exp);
2071 return convert (integer_type_node, exp);
2074 return exp;
2078 /* Perform default promotions for C data used in expressions.
2079 Enumeral types or short or char are converted to int.
2080 In addition, manifest constants symbols are replaced by their values. */
2082 tree
2083 default_conversion (tree exp)
2085 tree orig_exp;
2086 tree type = TREE_TYPE (exp);
2087 enum tree_code code = TREE_CODE (type);
2088 tree promoted_type;
2090 mark_exp_read (exp);
2092 /* Functions and arrays have been converted during parsing. */
2093 gcc_assert (code != FUNCTION_TYPE);
2094 if (code == ARRAY_TYPE)
2095 return exp;
2097 /* Constants can be used directly unless they're not loadable. */
2098 if (TREE_CODE (exp) == CONST_DECL)
2099 exp = DECL_INITIAL (exp);
2101 /* Strip no-op conversions. */
2102 orig_exp = exp;
2103 STRIP_TYPE_NOPS (exp);
2105 if (TREE_NO_WARNING (orig_exp))
2106 TREE_NO_WARNING (exp) = 1;
2108 if (code == VOID_TYPE)
2110 error_at (EXPR_LOC_OR_LOC (exp, input_location),
2111 "void value not ignored as it ought to be");
2112 return error_mark_node;
2115 exp = require_complete_type (exp);
2116 if (exp == error_mark_node)
2117 return error_mark_node;
2119 promoted_type = targetm.promoted_type (type);
2120 if (promoted_type)
2121 return convert (promoted_type, exp);
2123 if (INTEGRAL_TYPE_P (type))
2124 return perform_integral_promotions (exp);
2126 return exp;
2129 /* Look up COMPONENT in a structure or union TYPE.
2131 If the component name is not found, returns NULL_TREE. Otherwise,
2132 the return value is a TREE_LIST, with each TREE_VALUE a FIELD_DECL
2133 stepping down the chain to the component, which is in the last
2134 TREE_VALUE of the list. Normally the list is of length one, but if
2135 the component is embedded within (nested) anonymous structures or
2136 unions, the list steps down the chain to the component. */
2138 static tree
2139 lookup_field (tree type, tree component)
2141 tree field;
2143 /* If TYPE_LANG_SPECIFIC is set, then it is a sorted array of pointers
2144 to the field elements. Use a binary search on this array to quickly
2145 find the element. Otherwise, do a linear search. TYPE_LANG_SPECIFIC
2146 will always be set for structures which have many elements. */
2148 if (TYPE_LANG_SPECIFIC (type) && TYPE_LANG_SPECIFIC (type)->s)
2150 int bot, top, half;
2151 tree *field_array = &TYPE_LANG_SPECIFIC (type)->s->elts[0];
2153 field = TYPE_FIELDS (type);
2154 bot = 0;
2155 top = TYPE_LANG_SPECIFIC (type)->s->len;
2156 while (top - bot > 1)
2158 half = (top - bot + 1) >> 1;
2159 field = field_array[bot+half];
2161 if (DECL_NAME (field) == NULL_TREE)
2163 /* Step through all anon unions in linear fashion. */
2164 while (DECL_NAME (field_array[bot]) == NULL_TREE)
2166 field = field_array[bot++];
2167 if (TREE_CODE (TREE_TYPE (field)) == RECORD_TYPE
2168 || TREE_CODE (TREE_TYPE (field)) == UNION_TYPE)
2170 tree anon = lookup_field (TREE_TYPE (field), component);
2172 if (anon)
2173 return tree_cons (NULL_TREE, field, anon);
2175 /* The Plan 9 compiler permits referring
2176 directly to an anonymous struct/union field
2177 using a typedef name. */
2178 if (flag_plan9_extensions
2179 && TYPE_NAME (TREE_TYPE (field)) != NULL_TREE
2180 && (TREE_CODE (TYPE_NAME (TREE_TYPE (field)))
2181 == TYPE_DECL)
2182 && (DECL_NAME (TYPE_NAME (TREE_TYPE (field)))
2183 == component))
2184 break;
2188 /* Entire record is only anon unions. */
2189 if (bot > top)
2190 return NULL_TREE;
2192 /* Restart the binary search, with new lower bound. */
2193 continue;
2196 if (DECL_NAME (field) == component)
2197 break;
2198 if (DECL_NAME (field) < component)
2199 bot += half;
2200 else
2201 top = bot + half;
2204 if (DECL_NAME (field_array[bot]) == component)
2205 field = field_array[bot];
2206 else if (DECL_NAME (field) != component)
2207 return NULL_TREE;
2209 else
2211 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
2213 if (DECL_NAME (field) == NULL_TREE
2214 && (TREE_CODE (TREE_TYPE (field)) == RECORD_TYPE
2215 || TREE_CODE (TREE_TYPE (field)) == UNION_TYPE))
2217 tree anon = lookup_field (TREE_TYPE (field), component);
2219 if (anon)
2220 return tree_cons (NULL_TREE, field, anon);
2222 /* The Plan 9 compiler permits referring directly to an
2223 anonymous struct/union field using a typedef
2224 name. */
2225 if (flag_plan9_extensions
2226 && TYPE_NAME (TREE_TYPE (field)) != NULL_TREE
2227 && TREE_CODE (TYPE_NAME (TREE_TYPE (field))) == TYPE_DECL
2228 && (DECL_NAME (TYPE_NAME (TREE_TYPE (field)))
2229 == component))
2230 break;
2233 if (DECL_NAME (field) == component)
2234 break;
2237 if (field == NULL_TREE)
2238 return NULL_TREE;
2241 return tree_cons (NULL_TREE, field, NULL_TREE);
2244 /* Make an expression to refer to the COMPONENT field of structure or
2245 union value DATUM. COMPONENT is an IDENTIFIER_NODE. LOC is the
2246 location of the COMPONENT_REF. */
2248 tree
2249 build_component_ref (location_t loc, tree datum, tree component)
2251 tree type = TREE_TYPE (datum);
2252 enum tree_code code = TREE_CODE (type);
2253 tree field = NULL;
2254 tree ref;
2255 bool datum_lvalue = lvalue_p (datum);
2257 if (!objc_is_public (datum, component))
2258 return error_mark_node;
2260 /* Detect Objective-C property syntax object.property. */
2261 if (c_dialect_objc ()
2262 && (ref = objc_maybe_build_component_ref (datum, component)))
2263 return ref;
2265 /* See if there is a field or component with name COMPONENT. */
2267 if (code == RECORD_TYPE || code == UNION_TYPE)
2269 if (!COMPLETE_TYPE_P (type))
2271 c_incomplete_type_error (NULL_TREE, type);
2272 return error_mark_node;
2275 field = lookup_field (type, component);
2277 if (!field)
2279 error_at (loc, "%qT has no member named %qE", type, component);
2280 return error_mark_node;
2283 /* Chain the COMPONENT_REFs if necessary down to the FIELD.
2284 This might be better solved in future the way the C++ front
2285 end does it - by giving the anonymous entities each a
2286 separate name and type, and then have build_component_ref
2287 recursively call itself. We can't do that here. */
2290 tree subdatum = TREE_VALUE (field);
2291 int quals;
2292 tree subtype;
2293 bool use_datum_quals;
2295 if (TREE_TYPE (subdatum) == error_mark_node)
2296 return error_mark_node;
2298 /* If this is an rvalue, it does not have qualifiers in C
2299 standard terms and we must avoid propagating such
2300 qualifiers down to a non-lvalue array that is then
2301 converted to a pointer. */
2302 use_datum_quals = (datum_lvalue
2303 || TREE_CODE (TREE_TYPE (subdatum)) != ARRAY_TYPE);
2305 quals = TYPE_QUALS (strip_array_types (TREE_TYPE (subdatum)));
2306 if (use_datum_quals)
2307 quals |= TYPE_QUALS (TREE_TYPE (datum));
2308 subtype = c_build_qualified_type (TREE_TYPE (subdatum), quals);
2310 ref = build3 (COMPONENT_REF, subtype, datum, subdatum,
2311 NULL_TREE);
2312 SET_EXPR_LOCATION (ref, loc);
2313 if (TREE_READONLY (subdatum)
2314 || (use_datum_quals && TREE_READONLY (datum)))
2315 TREE_READONLY (ref) = 1;
2316 if (TREE_THIS_VOLATILE (subdatum)
2317 || (use_datum_quals && TREE_THIS_VOLATILE (datum)))
2318 TREE_THIS_VOLATILE (ref) = 1;
2320 if (TREE_DEPRECATED (subdatum))
2321 warn_deprecated_use (subdatum, NULL_TREE);
2323 datum = ref;
2325 field = TREE_CHAIN (field);
2327 while (field);
2329 return ref;
2331 else if (code != ERROR_MARK)
2332 error_at (loc,
2333 "request for member %qE in something not a structure or union",
2334 component);
2336 return error_mark_node;
2339 /* Given an expression PTR for a pointer, return an expression
2340 for the value pointed to.
2341 ERRORSTRING is the name of the operator to appear in error messages.
2343 LOC is the location to use for the generated tree. */
2345 tree
2346 build_indirect_ref (location_t loc, tree ptr, ref_operator errstring)
2348 tree pointer = default_conversion (ptr);
2349 tree type = TREE_TYPE (pointer);
2350 tree ref;
2352 if (TREE_CODE (type) == POINTER_TYPE)
2354 if (CONVERT_EXPR_P (pointer)
2355 || TREE_CODE (pointer) == VIEW_CONVERT_EXPR)
2357 /* If a warning is issued, mark it to avoid duplicates from
2358 the backend. This only needs to be done at
2359 warn_strict_aliasing > 2. */
2360 if (warn_strict_aliasing > 2)
2361 if (strict_aliasing_warning (TREE_TYPE (TREE_OPERAND (pointer, 0)),
2362 type, TREE_OPERAND (pointer, 0)))
2363 TREE_NO_WARNING (pointer) = 1;
2366 if (TREE_CODE (pointer) == ADDR_EXPR
2367 && (TREE_TYPE (TREE_OPERAND (pointer, 0))
2368 == TREE_TYPE (type)))
2370 ref = TREE_OPERAND (pointer, 0);
2371 protected_set_expr_location (ref, loc);
2372 return ref;
2374 else
2376 tree t = TREE_TYPE (type);
2378 ref = build1 (INDIRECT_REF, t, pointer);
2380 if (!COMPLETE_OR_VOID_TYPE_P (t) && TREE_CODE (t) != ARRAY_TYPE)
2382 error_at (loc, "dereferencing pointer to incomplete type");
2383 return error_mark_node;
2385 if (VOID_TYPE_P (t) && c_inhibit_evaluation_warnings == 0)
2386 warning_at (loc, 0, "dereferencing %<void *%> pointer");
2388 /* We *must* set TREE_READONLY when dereferencing a pointer to const,
2389 so that we get the proper error message if the result is used
2390 to assign to. Also, &* is supposed to be a no-op.
2391 And ANSI C seems to specify that the type of the result
2392 should be the const type. */
2393 /* A de-reference of a pointer to const is not a const. It is valid
2394 to change it via some other pointer. */
2395 TREE_READONLY (ref) = TYPE_READONLY (t);
2396 TREE_SIDE_EFFECTS (ref)
2397 = TYPE_VOLATILE (t) || TREE_SIDE_EFFECTS (pointer);
2398 TREE_THIS_VOLATILE (ref) = TYPE_VOLATILE (t);
2399 protected_set_expr_location (ref, loc);
2400 return ref;
2403 else if (TREE_CODE (pointer) != ERROR_MARK)
2404 invalid_indirection_error (loc, type, errstring);
2406 return error_mark_node;
2409 /* This handles expressions of the form "a[i]", which denotes
2410 an array reference.
2412 This is logically equivalent in C to *(a+i), but we may do it differently.
2413 If A is a variable or a member, we generate a primitive ARRAY_REF.
2414 This avoids forcing the array out of registers, and can work on
2415 arrays that are not lvalues (for example, members of structures returned
2416 by functions).
2418 For vector types, allow vector[i] but not i[vector], and create
2419 *(((type*)&vectortype) + i) for the expression.
2421 LOC is the location to use for the returned expression. */
2423 tree
2424 build_array_ref (location_t loc, tree array, tree index)
2426 tree ret;
2427 bool swapped = false;
2428 if (TREE_TYPE (array) == error_mark_node
2429 || TREE_TYPE (index) == error_mark_node)
2430 return error_mark_node;
2432 if (flag_cilkplus && contains_array_notation_expr (index))
2434 size_t rank = 0;
2435 if (!find_rank (loc, index, index, true, &rank))
2436 return error_mark_node;
2437 if (rank > 1)
2439 error_at (loc, "rank of the array's index is greater than 1");
2440 return error_mark_node;
2443 if (TREE_CODE (TREE_TYPE (array)) != ARRAY_TYPE
2444 && TREE_CODE (TREE_TYPE (array)) != POINTER_TYPE
2445 /* Allow vector[index] but not index[vector]. */
2446 && TREE_CODE (TREE_TYPE (array)) != VECTOR_TYPE)
2448 tree temp;
2449 if (TREE_CODE (TREE_TYPE (index)) != ARRAY_TYPE
2450 && TREE_CODE (TREE_TYPE (index)) != POINTER_TYPE)
2452 error_at (loc,
2453 "subscripted value is neither array nor pointer nor vector");
2455 return error_mark_node;
2457 temp = array;
2458 array = index;
2459 index = temp;
2460 swapped = true;
2463 if (!INTEGRAL_TYPE_P (TREE_TYPE (index)))
2465 error_at (loc, "array subscript is not an integer");
2466 return error_mark_node;
2469 if (TREE_CODE (TREE_TYPE (TREE_TYPE (array))) == FUNCTION_TYPE)
2471 error_at (loc, "subscripted value is pointer to function");
2472 return error_mark_node;
2475 /* ??? Existing practice has been to warn only when the char
2476 index is syntactically the index, not for char[array]. */
2477 if (!swapped)
2478 warn_array_subscript_with_type_char (index);
2480 /* Apply default promotions *after* noticing character types. */
2481 index = default_conversion (index);
2483 gcc_assert (TREE_CODE (TREE_TYPE (index)) == INTEGER_TYPE);
2485 convert_vector_to_pointer_for_subscript (loc, &array, index);
2487 if (TREE_CODE (TREE_TYPE (array)) == ARRAY_TYPE)
2489 tree rval, type;
2491 /* An array that is indexed by a non-constant
2492 cannot be stored in a register; we must be able to do
2493 address arithmetic on its address.
2494 Likewise an array of elements of variable size. */
2495 if (TREE_CODE (index) != INTEGER_CST
2496 || (COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (array)))
2497 && TREE_CODE (TYPE_SIZE (TREE_TYPE (TREE_TYPE (array)))) != INTEGER_CST))
2499 if (!c_mark_addressable (array))
2500 return error_mark_node;
2502 /* An array that is indexed by a constant value which is not within
2503 the array bounds cannot be stored in a register either; because we
2504 would get a crash in store_bit_field/extract_bit_field when trying
2505 to access a non-existent part of the register. */
2506 if (TREE_CODE (index) == INTEGER_CST
2507 && TYPE_DOMAIN (TREE_TYPE (array))
2508 && !int_fits_type_p (index, TYPE_DOMAIN (TREE_TYPE (array))))
2510 if (!c_mark_addressable (array))
2511 return error_mark_node;
2514 if (pedantic)
2516 tree foo = array;
2517 while (TREE_CODE (foo) == COMPONENT_REF)
2518 foo = TREE_OPERAND (foo, 0);
2519 if (TREE_CODE (foo) == VAR_DECL && C_DECL_REGISTER (foo))
2520 pedwarn (loc, OPT_Wpedantic,
2521 "ISO C forbids subscripting %<register%> array");
2522 else if (!flag_isoc99 && !lvalue_p (foo))
2523 pedwarn (loc, OPT_Wpedantic,
2524 "ISO C90 forbids subscripting non-lvalue array");
2527 type = TREE_TYPE (TREE_TYPE (array));
2528 rval = build4 (ARRAY_REF, type, array, index, NULL_TREE, NULL_TREE);
2529 /* Array ref is const/volatile if the array elements are
2530 or if the array is. */
2531 TREE_READONLY (rval)
2532 |= (TYPE_READONLY (TREE_TYPE (TREE_TYPE (array)))
2533 | TREE_READONLY (array));
2534 TREE_SIDE_EFFECTS (rval)
2535 |= (TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (array)))
2536 | TREE_SIDE_EFFECTS (array));
2537 TREE_THIS_VOLATILE (rval)
2538 |= (TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (array)))
2539 /* This was added by rms on 16 Nov 91.
2540 It fixes vol struct foo *a; a->elts[1]
2541 in an inline function.
2542 Hope it doesn't break something else. */
2543 | TREE_THIS_VOLATILE (array));
2544 ret = require_complete_type (rval);
2545 protected_set_expr_location (ret, loc);
2546 return ret;
2548 else
2550 tree ar = default_conversion (array);
2552 if (ar == error_mark_node)
2553 return ar;
2555 gcc_assert (TREE_CODE (TREE_TYPE (ar)) == POINTER_TYPE);
2556 gcc_assert (TREE_CODE (TREE_TYPE (TREE_TYPE (ar))) != FUNCTION_TYPE);
2558 return build_indirect_ref
2559 (loc, build_binary_op (loc, PLUS_EXPR, ar, index, 0),
2560 RO_ARRAY_INDEXING);
2564 /* Build an external reference to identifier ID. FUN indicates
2565 whether this will be used for a function call. LOC is the source
2566 location of the identifier. This sets *TYPE to the type of the
2567 identifier, which is not the same as the type of the returned value
2568 for CONST_DECLs defined as enum constants. If the type of the
2569 identifier is not available, *TYPE is set to NULL. */
2570 tree
2571 build_external_ref (location_t loc, tree id, int fun, tree *type)
2573 tree ref;
2574 tree decl = lookup_name (id);
2576 /* In Objective-C, an instance variable (ivar) may be preferred to
2577 whatever lookup_name() found. */
2578 decl = objc_lookup_ivar (decl, id);
2580 *type = NULL;
2581 if (decl && decl != error_mark_node)
2583 ref = decl;
2584 *type = TREE_TYPE (ref);
2586 else if (fun)
2587 /* Implicit function declaration. */
2588 ref = implicitly_declare (loc, id);
2589 else if (decl == error_mark_node)
2590 /* Don't complain about something that's already been
2591 complained about. */
2592 return error_mark_node;
2593 else
2595 undeclared_variable (loc, id);
2596 return error_mark_node;
2599 if (TREE_TYPE (ref) == error_mark_node)
2600 return error_mark_node;
2602 if (TREE_DEPRECATED (ref))
2603 warn_deprecated_use (ref, NULL_TREE);
2605 /* Recursive call does not count as usage. */
2606 if (ref != current_function_decl)
2608 TREE_USED (ref) = 1;
2611 if (TREE_CODE (ref) == FUNCTION_DECL && !in_alignof)
2613 if (!in_sizeof && !in_typeof)
2614 C_DECL_USED (ref) = 1;
2615 else if (DECL_INITIAL (ref) == 0
2616 && DECL_EXTERNAL (ref)
2617 && !TREE_PUBLIC (ref))
2618 record_maybe_used_decl (ref);
2621 if (TREE_CODE (ref) == CONST_DECL)
2623 used_types_insert (TREE_TYPE (ref));
2625 if (warn_cxx_compat
2626 && TREE_CODE (TREE_TYPE (ref)) == ENUMERAL_TYPE
2627 && C_TYPE_DEFINED_IN_STRUCT (TREE_TYPE (ref)))
2629 warning_at (loc, OPT_Wc___compat,
2630 ("enum constant defined in struct or union "
2631 "is not visible in C++"));
2632 inform (DECL_SOURCE_LOCATION (ref), "enum constant defined here");
2635 ref = DECL_INITIAL (ref);
2636 TREE_CONSTANT (ref) = 1;
2638 else if (current_function_decl != 0
2639 && !DECL_FILE_SCOPE_P (current_function_decl)
2640 && (TREE_CODE (ref) == VAR_DECL
2641 || TREE_CODE (ref) == PARM_DECL
2642 || TREE_CODE (ref) == FUNCTION_DECL))
2644 tree context = decl_function_context (ref);
2646 if (context != 0 && context != current_function_decl)
2647 DECL_NONLOCAL (ref) = 1;
2649 /* C99 6.7.4p3: An inline definition of a function with external
2650 linkage ... shall not contain a reference to an identifier with
2651 internal linkage. */
2652 else if (current_function_decl != 0
2653 && DECL_DECLARED_INLINE_P (current_function_decl)
2654 && DECL_EXTERNAL (current_function_decl)
2655 && VAR_OR_FUNCTION_DECL_P (ref)
2656 && (TREE_CODE (ref) != VAR_DECL || TREE_STATIC (ref))
2657 && ! TREE_PUBLIC (ref)
2658 && DECL_CONTEXT (ref) != current_function_decl)
2659 record_inline_static (loc, current_function_decl, ref,
2660 csi_internal);
2662 return ref;
2665 /* Record details of decls possibly used inside sizeof or typeof. */
2666 struct maybe_used_decl
2668 /* The decl. */
2669 tree decl;
2670 /* The level seen at (in_sizeof + in_typeof). */
2671 int level;
2672 /* The next one at this level or above, or NULL. */
2673 struct maybe_used_decl *next;
2676 static struct maybe_used_decl *maybe_used_decls;
2678 /* Record that DECL, an undefined static function reference seen
2679 inside sizeof or typeof, might be used if the operand of sizeof is
2680 a VLA type or the operand of typeof is a variably modified
2681 type. */
2683 static void
2684 record_maybe_used_decl (tree decl)
2686 struct maybe_used_decl *t = XOBNEW (&parser_obstack, struct maybe_used_decl);
2687 t->decl = decl;
2688 t->level = in_sizeof + in_typeof;
2689 t->next = maybe_used_decls;
2690 maybe_used_decls = t;
2693 /* Pop the stack of decls possibly used inside sizeof or typeof. If
2694 USED is false, just discard them. If it is true, mark them used
2695 (if no longer inside sizeof or typeof) or move them to the next
2696 level up (if still inside sizeof or typeof). */
2698 void
2699 pop_maybe_used (bool used)
2701 struct maybe_used_decl *p = maybe_used_decls;
2702 int cur_level = in_sizeof + in_typeof;
2703 while (p && p->level > cur_level)
2705 if (used)
2707 if (cur_level == 0)
2708 C_DECL_USED (p->decl) = 1;
2709 else
2710 p->level = cur_level;
2712 p = p->next;
2714 if (!used || cur_level == 0)
2715 maybe_used_decls = p;
2718 /* Return the result of sizeof applied to EXPR. */
2720 struct c_expr
2721 c_expr_sizeof_expr (location_t loc, struct c_expr expr)
2723 struct c_expr ret;
2724 if (expr.value == error_mark_node)
2726 ret.value = error_mark_node;
2727 ret.original_code = ERROR_MARK;
2728 ret.original_type = NULL;
2729 pop_maybe_used (false);
2731 else
2733 bool expr_const_operands = true;
2734 tree folded_expr = c_fully_fold (expr.value, require_constant_value,
2735 &expr_const_operands);
2736 ret.value = c_sizeof (loc, TREE_TYPE (folded_expr));
2737 c_last_sizeof_arg = expr.value;
2738 ret.original_code = SIZEOF_EXPR;
2739 ret.original_type = NULL;
2740 if (c_vla_type_p (TREE_TYPE (folded_expr)))
2742 /* sizeof is evaluated when given a vla (C99 6.5.3.4p2). */
2743 ret.value = build2 (C_MAYBE_CONST_EXPR, TREE_TYPE (ret.value),
2744 folded_expr, ret.value);
2745 C_MAYBE_CONST_EXPR_NON_CONST (ret.value) = !expr_const_operands;
2746 SET_EXPR_LOCATION (ret.value, loc);
2748 pop_maybe_used (C_TYPE_VARIABLE_SIZE (TREE_TYPE (folded_expr)));
2750 return ret;
2753 /* Return the result of sizeof applied to T, a structure for the type
2754 name passed to sizeof (rather than the type itself). LOC is the
2755 location of the original expression. */
2757 struct c_expr
2758 c_expr_sizeof_type (location_t loc, struct c_type_name *t)
2760 tree type;
2761 struct c_expr ret;
2762 tree type_expr = NULL_TREE;
2763 bool type_expr_const = true;
2764 type = groktypename (t, &type_expr, &type_expr_const);
2765 ret.value = c_sizeof (loc, type);
2766 c_last_sizeof_arg = type;
2767 ret.original_code = SIZEOF_EXPR;
2768 ret.original_type = NULL;
2769 if ((type_expr || TREE_CODE (ret.value) == INTEGER_CST)
2770 && c_vla_type_p (type))
2772 /* If the type is a [*] array, it is a VLA but is represented as
2773 having a size of zero. In such a case we must ensure that
2774 the result of sizeof does not get folded to a constant by
2775 c_fully_fold, because if the size is evaluated the result is
2776 not constant and so constraints on zero or negative size
2777 arrays must not be applied when this sizeof call is inside
2778 another array declarator. */
2779 if (!type_expr)
2780 type_expr = integer_zero_node;
2781 ret.value = build2 (C_MAYBE_CONST_EXPR, TREE_TYPE (ret.value),
2782 type_expr, ret.value);
2783 C_MAYBE_CONST_EXPR_NON_CONST (ret.value) = !type_expr_const;
2785 pop_maybe_used (type != error_mark_node
2786 ? C_TYPE_VARIABLE_SIZE (type) : false);
2787 return ret;
2790 /* Build a function call to function FUNCTION with parameters PARAMS.
2791 The function call is at LOC.
2792 PARAMS is a list--a chain of TREE_LIST nodes--in which the
2793 TREE_VALUE of each node is a parameter-expression.
2794 FUNCTION's data type may be a function type or a pointer-to-function. */
2796 tree
2797 build_function_call (location_t loc, tree function, tree params)
2799 vec<tree, va_gc> *v;
2800 tree ret;
2802 vec_alloc (v, list_length (params));
2803 for (; params; params = TREE_CHAIN (params))
2804 v->quick_push (TREE_VALUE (params));
2805 ret = c_build_function_call_vec (loc, vNULL, function, v, NULL);
2806 vec_free (v);
2807 return ret;
2810 /* Give a note about the location of the declaration of DECL. */
2812 static void inform_declaration (tree decl)
2814 if (decl && (TREE_CODE (decl) != FUNCTION_DECL || !DECL_BUILT_IN (decl)))
2815 inform (DECL_SOURCE_LOCATION (decl), "declared here");
2818 /* Build a function call to function FUNCTION with parameters PARAMS.
2819 ORIGTYPES, if not NULL, is a vector of types; each element is
2820 either NULL or the original type of the corresponding element in
2821 PARAMS. The original type may differ from TREE_TYPE of the
2822 parameter for enums. FUNCTION's data type may be a function type
2823 or pointer-to-function. This function changes the elements of
2824 PARAMS. */
2826 tree
2827 build_function_call_vec (location_t loc, vec<location_t> arg_loc,
2828 tree function, vec<tree, va_gc> *params,
2829 vec<tree, va_gc> *origtypes)
2831 tree fntype, fundecl = 0;
2832 tree name = NULL_TREE, result;
2833 tree tem;
2834 int nargs;
2835 tree *argarray;
2838 /* Strip NON_LVALUE_EXPRs, etc., since we aren't using as an lvalue. */
2839 STRIP_TYPE_NOPS (function);
2841 /* Convert anything with function type to a pointer-to-function. */
2842 if (TREE_CODE (function) == FUNCTION_DECL)
2844 name = DECL_NAME (function);
2846 if (flag_tm)
2847 tm_malloc_replacement (function);
2848 fundecl = function;
2849 /* Atomic functions have type checking/casting already done. They are
2850 often rewritten and don't match the original parameter list. */
2851 if (name && !strncmp (IDENTIFIER_POINTER (name), "__atomic_", 9))
2852 origtypes = NULL;
2854 if (flag_cilkplus
2855 && is_cilkplus_reduce_builtin (function))
2856 origtypes = NULL;
2858 if (TREE_CODE (TREE_TYPE (function)) == FUNCTION_TYPE)
2859 function = function_to_pointer_conversion (loc, function);
2861 /* For Objective-C, convert any calls via a cast to OBJC_TYPE_REF
2862 expressions, like those used for ObjC messenger dispatches. */
2863 if (params && !params->is_empty ())
2864 function = objc_rewrite_function_call (function, (*params)[0]);
2866 function = c_fully_fold (function, false, NULL);
2868 fntype = TREE_TYPE (function);
2870 if (TREE_CODE (fntype) == ERROR_MARK)
2871 return error_mark_node;
2873 if (!(TREE_CODE (fntype) == POINTER_TYPE
2874 && TREE_CODE (TREE_TYPE (fntype)) == FUNCTION_TYPE))
2876 if (!flag_diagnostics_show_caret)
2877 error_at (loc,
2878 "called object %qE is not a function or function pointer",
2879 function);
2880 else if (DECL_P (function))
2882 error_at (loc,
2883 "called object %qD is not a function or function pointer",
2884 function);
2885 inform_declaration (function);
2887 else
2888 error_at (loc,
2889 "called object is not a function or function pointer");
2890 return error_mark_node;
2893 if (fundecl && TREE_THIS_VOLATILE (fundecl))
2894 current_function_returns_abnormally = 1;
2896 /* fntype now gets the type of function pointed to. */
2897 fntype = TREE_TYPE (fntype);
2899 /* Convert the parameters to the types declared in the
2900 function prototype, or apply default promotions. */
2902 nargs = convert_arguments (loc, arg_loc, TYPE_ARG_TYPES (fntype), params,
2903 origtypes, function, fundecl);
2904 if (nargs < 0)
2905 return error_mark_node;
2907 /* Check that the function is called through a compatible prototype.
2908 If it is not, warn. */
2909 if (CONVERT_EXPR_P (function)
2910 && TREE_CODE (tem = TREE_OPERAND (function, 0)) == ADDR_EXPR
2911 && TREE_CODE (tem = TREE_OPERAND (tem, 0)) == FUNCTION_DECL
2912 && !comptypes (fntype, TREE_TYPE (tem)))
2914 tree return_type = TREE_TYPE (fntype);
2916 /* This situation leads to run-time undefined behavior. We can't,
2917 therefore, simply error unless we can prove that all possible
2918 executions of the program must execute the code. */
2919 warning_at (loc, 0, "function called through a non-compatible type");
2921 if (VOID_TYPE_P (return_type)
2922 && TYPE_QUALS (return_type) != TYPE_UNQUALIFIED)
2923 pedwarn (loc, 0,
2924 "function with qualified void return type called");
2927 argarray = vec_safe_address (params);
2929 /* Check that arguments to builtin functions match the expectations. */
2930 if (fundecl
2931 && DECL_BUILT_IN (fundecl)
2932 && DECL_BUILT_IN_CLASS (fundecl) == BUILT_IN_NORMAL
2933 && !check_builtin_function_arguments (fundecl, nargs, argarray))
2934 return error_mark_node;
2936 /* Check that the arguments to the function are valid. */
2937 check_function_arguments (fntype, nargs, argarray);
2939 if (name != NULL_TREE
2940 && !strncmp (IDENTIFIER_POINTER (name), "__builtin_", 10))
2942 if (require_constant_value)
2943 result =
2944 fold_build_call_array_initializer_loc (loc, TREE_TYPE (fntype),
2945 function, nargs, argarray);
2946 else
2947 result = fold_build_call_array_loc (loc, TREE_TYPE (fntype),
2948 function, nargs, argarray);
2949 if (TREE_CODE (result) == NOP_EXPR
2950 && TREE_CODE (TREE_OPERAND (result, 0)) == INTEGER_CST)
2951 STRIP_TYPE_NOPS (result);
2953 else
2954 result = build_call_array_loc (loc, TREE_TYPE (fntype),
2955 function, nargs, argarray);
2957 if (VOID_TYPE_P (TREE_TYPE (result)))
2959 if (TYPE_QUALS (TREE_TYPE (result)) != TYPE_UNQUALIFIED)
2960 pedwarn (loc, 0,
2961 "function with qualified void return type called");
2962 return result;
2964 return require_complete_type (result);
2967 /* Like build_function_call_vec, but call also resolve_overloaded_builtin. */
2969 tree
2970 c_build_function_call_vec (location_t loc, vec<location_t> arg_loc,
2971 tree function, vec<tree, va_gc> *params,
2972 vec<tree, va_gc> *origtypes)
2974 /* Strip NON_LVALUE_EXPRs, etc., since we aren't using as an lvalue. */
2975 STRIP_TYPE_NOPS (function);
2977 /* Convert anything with function type to a pointer-to-function. */
2978 if (TREE_CODE (function) == FUNCTION_DECL)
2980 /* Implement type-directed function overloading for builtins.
2981 resolve_overloaded_builtin and targetm.resolve_overloaded_builtin
2982 handle all the type checking. The result is a complete expression
2983 that implements this function call. */
2984 tree tem = resolve_overloaded_builtin (loc, function, params);
2985 if (tem)
2986 return tem;
2988 return build_function_call_vec (loc, arg_loc, function, params, origtypes);
2991 /* Convert the argument expressions in the vector VALUES
2992 to the types in the list TYPELIST.
2994 If TYPELIST is exhausted, or when an element has NULL as its type,
2995 perform the default conversions.
2997 ORIGTYPES is the original types of the expressions in VALUES. This
2998 holds the type of enum values which have been converted to integral
2999 types. It may be NULL.
3001 FUNCTION is a tree for the called function. It is used only for
3002 error messages, where it is formatted with %qE.
3004 This is also where warnings about wrong number of args are generated.
3006 ARG_LOC are locations of function arguments (if any).
3008 Returns the actual number of arguments processed (which may be less
3009 than the length of VALUES in some error situations), or -1 on
3010 failure. */
3012 static int
3013 convert_arguments (location_t loc, vec<location_t> arg_loc, tree typelist,
3014 vec<tree, va_gc> *values, vec<tree, va_gc> *origtypes,
3015 tree function, tree fundecl)
3017 tree typetail, val;
3018 unsigned int parmnum;
3019 bool error_args = false;
3020 const bool type_generic = fundecl
3021 && lookup_attribute ("type generic", TYPE_ATTRIBUTES (TREE_TYPE (fundecl)));
3022 bool type_generic_remove_excess_precision = false;
3023 tree selector;
3025 /* Change pointer to function to the function itself for
3026 diagnostics. */
3027 if (TREE_CODE (function) == ADDR_EXPR
3028 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
3029 function = TREE_OPERAND (function, 0);
3031 /* Handle an ObjC selector specially for diagnostics. */
3032 selector = objc_message_selector ();
3034 /* For type-generic built-in functions, determine whether excess
3035 precision should be removed (classification) or not
3036 (comparison). */
3037 if (type_generic
3038 && DECL_BUILT_IN (fundecl)
3039 && DECL_BUILT_IN_CLASS (fundecl) == BUILT_IN_NORMAL)
3041 switch (DECL_FUNCTION_CODE (fundecl))
3043 case BUILT_IN_ISFINITE:
3044 case BUILT_IN_ISINF:
3045 case BUILT_IN_ISINF_SIGN:
3046 case BUILT_IN_ISNAN:
3047 case BUILT_IN_ISNORMAL:
3048 case BUILT_IN_FPCLASSIFY:
3049 type_generic_remove_excess_precision = true;
3050 break;
3052 default:
3053 type_generic_remove_excess_precision = false;
3054 break;
3057 if (flag_cilkplus && fundecl && is_cilkplus_reduce_builtin (fundecl))
3058 return vec_safe_length (values);
3060 /* Scan the given expressions and types, producing individual
3061 converted arguments. */
3063 for (typetail = typelist, parmnum = 0;
3064 values && values->iterate (parmnum, &val);
3065 ++parmnum)
3067 tree type = typetail ? TREE_VALUE (typetail) : 0;
3068 tree valtype = TREE_TYPE (val);
3069 tree rname = function;
3070 int argnum = parmnum + 1;
3071 const char *invalid_func_diag;
3072 bool excess_precision = false;
3073 bool npc;
3074 tree parmval;
3075 /* Some __atomic_* builtins have additional hidden argument at
3076 position 0. */
3077 location_t ploc
3078 = !arg_loc.is_empty () && values->length () == arg_loc.length ()
3079 ? expansion_point_location_if_in_system_header (arg_loc[parmnum])
3080 : input_location;
3082 if (type == void_type_node)
3084 if (selector)
3085 error_at (loc, "too many arguments to method %qE", selector);
3086 else
3087 error_at (loc, "too many arguments to function %qE", function);
3088 inform_declaration (fundecl);
3089 return parmnum;
3092 if (selector && argnum > 2)
3094 rname = selector;
3095 argnum -= 2;
3098 npc = null_pointer_constant_p (val);
3100 /* If there is excess precision and a prototype, convert once to
3101 the required type rather than converting via the semantic
3102 type. Likewise without a prototype a float value represented
3103 as long double should be converted once to double. But for
3104 type-generic classification functions excess precision must
3105 be removed here. */
3106 if (TREE_CODE (val) == EXCESS_PRECISION_EXPR
3107 && (type || !type_generic || !type_generic_remove_excess_precision))
3109 val = TREE_OPERAND (val, 0);
3110 excess_precision = true;
3112 val = c_fully_fold (val, false, NULL);
3113 STRIP_TYPE_NOPS (val);
3115 val = require_complete_type (val);
3117 if (type != 0)
3119 /* Formal parm type is specified by a function prototype. */
3121 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
3123 error_at (ploc, "type of formal parameter %d is incomplete",
3124 parmnum + 1);
3125 parmval = val;
3127 else
3129 tree origtype;
3131 /* Optionally warn about conversions that
3132 differ from the default conversions. */
3133 if (warn_traditional_conversion || warn_traditional)
3135 unsigned int formal_prec = TYPE_PRECISION (type);
3137 if (INTEGRAL_TYPE_P (type)
3138 && TREE_CODE (valtype) == REAL_TYPE)
3139 warning_at (ploc, OPT_Wtraditional_conversion,
3140 "passing argument %d of %qE as integer rather "
3141 "than floating due to prototype",
3142 argnum, rname);
3143 if (INTEGRAL_TYPE_P (type)
3144 && TREE_CODE (valtype) == COMPLEX_TYPE)
3145 warning_at (ploc, OPT_Wtraditional_conversion,
3146 "passing argument %d of %qE as integer rather "
3147 "than complex due to prototype",
3148 argnum, rname);
3149 else if (TREE_CODE (type) == COMPLEX_TYPE
3150 && TREE_CODE (valtype) == REAL_TYPE)
3151 warning_at (ploc, OPT_Wtraditional_conversion,
3152 "passing argument %d of %qE as complex rather "
3153 "than floating due to prototype",
3154 argnum, rname);
3155 else if (TREE_CODE (type) == REAL_TYPE
3156 && INTEGRAL_TYPE_P (valtype))
3157 warning_at (ploc, OPT_Wtraditional_conversion,
3158 "passing argument %d of %qE as floating rather "
3159 "than integer due to prototype",
3160 argnum, rname);
3161 else if (TREE_CODE (type) == COMPLEX_TYPE
3162 && INTEGRAL_TYPE_P (valtype))
3163 warning_at (ploc, OPT_Wtraditional_conversion,
3164 "passing argument %d of %qE as complex rather "
3165 "than integer due to prototype",
3166 argnum, rname);
3167 else if (TREE_CODE (type) == REAL_TYPE
3168 && TREE_CODE (valtype) == COMPLEX_TYPE)
3169 warning_at (ploc, OPT_Wtraditional_conversion,
3170 "passing argument %d of %qE as floating rather "
3171 "than complex due to prototype",
3172 argnum, rname);
3173 /* ??? At some point, messages should be written about
3174 conversions between complex types, but that's too messy
3175 to do now. */
3176 else if (TREE_CODE (type) == REAL_TYPE
3177 && TREE_CODE (valtype) == REAL_TYPE)
3179 /* Warn if any argument is passed as `float',
3180 since without a prototype it would be `double'. */
3181 if (formal_prec == TYPE_PRECISION (float_type_node)
3182 && type != dfloat32_type_node)
3183 warning_at (ploc, 0,
3184 "passing argument %d of %qE as %<float%> "
3185 "rather than %<double%> due to prototype",
3186 argnum, rname);
3188 /* Warn if mismatch between argument and prototype
3189 for decimal float types. Warn of conversions with
3190 binary float types and of precision narrowing due to
3191 prototype. */
3192 else if (type != valtype
3193 && (type == dfloat32_type_node
3194 || type == dfloat64_type_node
3195 || type == dfloat128_type_node
3196 || valtype == dfloat32_type_node
3197 || valtype == dfloat64_type_node
3198 || valtype == dfloat128_type_node)
3199 && (formal_prec
3200 <= TYPE_PRECISION (valtype)
3201 || (type == dfloat128_type_node
3202 && (valtype
3203 != dfloat64_type_node
3204 && (valtype
3205 != dfloat32_type_node)))
3206 || (type == dfloat64_type_node
3207 && (valtype
3208 != dfloat32_type_node))))
3209 warning_at (ploc, 0,
3210 "passing argument %d of %qE as %qT "
3211 "rather than %qT due to prototype",
3212 argnum, rname, type, valtype);
3215 /* Detect integer changing in width or signedness.
3216 These warnings are only activated with
3217 -Wtraditional-conversion, not with -Wtraditional. */
3218 else if (warn_traditional_conversion && INTEGRAL_TYPE_P (type)
3219 && INTEGRAL_TYPE_P (valtype))
3221 tree would_have_been = default_conversion (val);
3222 tree type1 = TREE_TYPE (would_have_been);
3224 if (TREE_CODE (type) == ENUMERAL_TYPE
3225 && (TYPE_MAIN_VARIANT (type)
3226 == TYPE_MAIN_VARIANT (valtype)))
3227 /* No warning if function asks for enum
3228 and the actual arg is that enum type. */
3230 else if (formal_prec != TYPE_PRECISION (type1))
3231 warning_at (ploc, OPT_Wtraditional_conversion,
3232 "passing argument %d of %qE "
3233 "with different width due to prototype",
3234 argnum, rname);
3235 else if (TYPE_UNSIGNED (type) == TYPE_UNSIGNED (type1))
3237 /* Don't complain if the formal parameter type
3238 is an enum, because we can't tell now whether
3239 the value was an enum--even the same enum. */
3240 else if (TREE_CODE (type) == ENUMERAL_TYPE)
3242 else if (TREE_CODE (val) == INTEGER_CST
3243 && int_fits_type_p (val, type))
3244 /* Change in signedness doesn't matter
3245 if a constant value is unaffected. */
3247 /* If the value is extended from a narrower
3248 unsigned type, it doesn't matter whether we
3249 pass it as signed or unsigned; the value
3250 certainly is the same either way. */
3251 else if (TYPE_PRECISION (valtype) < TYPE_PRECISION (type)
3252 && TYPE_UNSIGNED (valtype))
3254 else if (TYPE_UNSIGNED (type))
3255 warning_at (ploc, OPT_Wtraditional_conversion,
3256 "passing argument %d of %qE "
3257 "as unsigned due to prototype",
3258 argnum, rname);
3259 else
3260 warning_at (ploc, OPT_Wtraditional_conversion,
3261 "passing argument %d of %qE "
3262 "as signed due to prototype",
3263 argnum, rname);
3267 /* Possibly restore an EXCESS_PRECISION_EXPR for the
3268 sake of better warnings from convert_and_check. */
3269 if (excess_precision)
3270 val = build1 (EXCESS_PRECISION_EXPR, valtype, val);
3271 origtype = (!origtypes) ? NULL_TREE : (*origtypes)[parmnum];
3272 parmval = convert_for_assignment (loc, ploc, type,
3273 val, origtype, ic_argpass,
3274 npc, fundecl, function,
3275 parmnum + 1);
3277 if (targetm.calls.promote_prototypes (fundecl ? TREE_TYPE (fundecl) : 0)
3278 && INTEGRAL_TYPE_P (type)
3279 && (TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node)))
3280 parmval = default_conversion (parmval);
3283 else if (TREE_CODE (valtype) == REAL_TYPE
3284 && (TYPE_PRECISION (valtype)
3285 <= TYPE_PRECISION (double_type_node))
3286 && TYPE_MAIN_VARIANT (valtype) != double_type_node
3287 && TYPE_MAIN_VARIANT (valtype) != long_double_type_node
3288 && !DECIMAL_FLOAT_MODE_P (TYPE_MODE (valtype)))
3290 if (type_generic)
3291 parmval = val;
3292 else
3294 /* Convert `float' to `double'. */
3295 if (warn_double_promotion && !c_inhibit_evaluation_warnings)
3296 warning_at (ploc, OPT_Wdouble_promotion,
3297 "implicit conversion from %qT to %qT when passing "
3298 "argument to function",
3299 valtype, double_type_node);
3300 parmval = convert (double_type_node, val);
3303 else if (excess_precision && !type_generic)
3304 /* A "double" argument with excess precision being passed
3305 without a prototype or in variable arguments. */
3306 parmval = convert (valtype, val);
3307 else if ((invalid_func_diag =
3308 targetm.calls.invalid_arg_for_unprototyped_fn (typelist, fundecl, val)))
3310 error (invalid_func_diag);
3311 return -1;
3313 else
3314 /* Convert `short' and `char' to full-size `int'. */
3315 parmval = default_conversion (val);
3317 (*values)[parmnum] = parmval;
3318 if (parmval == error_mark_node)
3319 error_args = true;
3321 if (typetail)
3322 typetail = TREE_CHAIN (typetail);
3325 gcc_assert (parmnum == vec_safe_length (values));
3327 if (typetail != 0 && TREE_VALUE (typetail) != void_type_node)
3329 error_at (loc, "too few arguments to function %qE", function);
3330 inform_declaration (fundecl);
3331 return -1;
3334 return error_args ? -1 : (int) parmnum;
3337 /* This is the entry point used by the parser to build unary operators
3338 in the input. CODE, a tree_code, specifies the unary operator, and
3339 ARG is the operand. For unary plus, the C parser currently uses
3340 CONVERT_EXPR for code.
3342 LOC is the location to use for the tree generated.
3345 struct c_expr
3346 parser_build_unary_op (location_t loc, enum tree_code code, struct c_expr arg)
3348 struct c_expr result;
3350 result.value = build_unary_op (loc, code, arg.value, 0);
3351 result.original_code = code;
3352 result.original_type = NULL;
3354 if (TREE_OVERFLOW_P (result.value) && !TREE_OVERFLOW_P (arg.value))
3355 overflow_warning (loc, result.value);
3357 return result;
3360 /* This is the entry point used by the parser to build binary operators
3361 in the input. CODE, a tree_code, specifies the binary operator, and
3362 ARG1 and ARG2 are the operands. In addition to constructing the
3363 expression, we check for operands that were written with other binary
3364 operators in a way that is likely to confuse the user.
3366 LOCATION is the location of the binary operator. */
3368 struct c_expr
3369 parser_build_binary_op (location_t location, enum tree_code code,
3370 struct c_expr arg1, struct c_expr arg2)
3372 struct c_expr result;
3374 enum tree_code code1 = arg1.original_code;
3375 enum tree_code code2 = arg2.original_code;
3376 tree type1 = (arg1.original_type
3377 ? arg1.original_type
3378 : TREE_TYPE (arg1.value));
3379 tree type2 = (arg2.original_type
3380 ? arg2.original_type
3381 : TREE_TYPE (arg2.value));
3383 result.value = build_binary_op (location, code,
3384 arg1.value, arg2.value, 1);
3385 result.original_code = code;
3386 result.original_type = NULL;
3388 if (TREE_CODE (result.value) == ERROR_MARK)
3389 return result;
3391 if (location != UNKNOWN_LOCATION)
3392 protected_set_expr_location (result.value, location);
3394 /* Check for cases such as x+y<<z which users are likely
3395 to misinterpret. */
3396 if (warn_parentheses)
3397 warn_about_parentheses (location, code, code1, arg1.value, code2,
3398 arg2.value);
3400 if (warn_logical_op)
3401 warn_logical_operator (location, code, TREE_TYPE (result.value),
3402 code1, arg1.value, code2, arg2.value);
3404 if (warn_logical_not_paren
3405 && code1 == TRUTH_NOT_EXPR)
3406 warn_logical_not_parentheses (location, code, arg1.value, arg2.value);
3408 /* Warn about comparisons against string literals, with the exception
3409 of testing for equality or inequality of a string literal with NULL. */
3410 if (code == EQ_EXPR || code == NE_EXPR)
3412 if ((code1 == STRING_CST && !integer_zerop (arg2.value))
3413 || (code2 == STRING_CST && !integer_zerop (arg1.value)))
3414 warning_at (location, OPT_Waddress,
3415 "comparison with string literal results in unspecified behavior");
3417 else if (TREE_CODE_CLASS (code) == tcc_comparison
3418 && (code1 == STRING_CST || code2 == STRING_CST))
3419 warning_at (location, OPT_Waddress,
3420 "comparison with string literal results in unspecified behavior");
3422 if (TREE_OVERFLOW_P (result.value)
3423 && !TREE_OVERFLOW_P (arg1.value)
3424 && !TREE_OVERFLOW_P (arg2.value))
3425 overflow_warning (location, result.value);
3427 /* Warn about comparisons of different enum types. */
3428 if (warn_enum_compare
3429 && TREE_CODE_CLASS (code) == tcc_comparison
3430 && TREE_CODE (type1) == ENUMERAL_TYPE
3431 && TREE_CODE (type2) == ENUMERAL_TYPE
3432 && TYPE_MAIN_VARIANT (type1) != TYPE_MAIN_VARIANT (type2))
3433 warning_at (location, OPT_Wenum_compare,
3434 "comparison between %qT and %qT",
3435 type1, type2);
3437 return result;
3440 /* Return a tree for the difference of pointers OP0 and OP1.
3441 The resulting tree has type int. */
3443 static tree
3444 pointer_diff (location_t loc, tree op0, tree op1)
3446 tree restype = ptrdiff_type_node;
3447 tree result, inttype;
3449 addr_space_t as0 = TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (op0)));
3450 addr_space_t as1 = TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (op1)));
3451 tree target_type = TREE_TYPE (TREE_TYPE (op0));
3452 tree con0, con1, lit0, lit1;
3453 tree orig_op1 = op1;
3455 /* If the operands point into different address spaces, we need to
3456 explicitly convert them to pointers into the common address space
3457 before we can subtract the numerical address values. */
3458 if (as0 != as1)
3460 addr_space_t as_common;
3461 tree common_type;
3463 /* Determine the common superset address space. This is guaranteed
3464 to exist because the caller verified that comp_target_types
3465 returned non-zero. */
3466 if (!addr_space_superset (as0, as1, &as_common))
3467 gcc_unreachable ();
3469 common_type = common_pointer_type (TREE_TYPE (op0), TREE_TYPE (op1));
3470 op0 = convert (common_type, op0);
3471 op1 = convert (common_type, op1);
3474 /* Determine integer type to perform computations in. This will usually
3475 be the same as the result type (ptrdiff_t), but may need to be a wider
3476 type if pointers for the address space are wider than ptrdiff_t. */
3477 if (TYPE_PRECISION (restype) < TYPE_PRECISION (TREE_TYPE (op0)))
3478 inttype = c_common_type_for_size (TYPE_PRECISION (TREE_TYPE (op0)), 0);
3479 else
3480 inttype = restype;
3483 if (TREE_CODE (target_type) == VOID_TYPE)
3484 pedwarn (loc, OPT_Wpointer_arith,
3485 "pointer of type %<void *%> used in subtraction");
3486 if (TREE_CODE (target_type) == FUNCTION_TYPE)
3487 pedwarn (loc, OPT_Wpointer_arith,
3488 "pointer to a function used in subtraction");
3490 /* If the conversion to ptrdiff_type does anything like widening or
3491 converting a partial to an integral mode, we get a convert_expression
3492 that is in the way to do any simplifications.
3493 (fold-const.c doesn't know that the extra bits won't be needed.
3494 split_tree uses STRIP_SIGN_NOPS, which leaves conversions to a
3495 different mode in place.)
3496 So first try to find a common term here 'by hand'; we want to cover
3497 at least the cases that occur in legal static initializers. */
3498 if (CONVERT_EXPR_P (op0)
3499 && (TYPE_PRECISION (TREE_TYPE (op0))
3500 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op0, 0)))))
3501 con0 = TREE_OPERAND (op0, 0);
3502 else
3503 con0 = op0;
3504 if (CONVERT_EXPR_P (op1)
3505 && (TYPE_PRECISION (TREE_TYPE (op1))
3506 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op1, 0)))))
3507 con1 = TREE_OPERAND (op1, 0);
3508 else
3509 con1 = op1;
3511 if (TREE_CODE (con0) == POINTER_PLUS_EXPR)
3513 lit0 = TREE_OPERAND (con0, 1);
3514 con0 = TREE_OPERAND (con0, 0);
3516 else
3517 lit0 = integer_zero_node;
3519 if (TREE_CODE (con1) == POINTER_PLUS_EXPR)
3521 lit1 = TREE_OPERAND (con1, 1);
3522 con1 = TREE_OPERAND (con1, 0);
3524 else
3525 lit1 = integer_zero_node;
3527 if (operand_equal_p (con0, con1, 0))
3529 op0 = lit0;
3530 op1 = lit1;
3534 /* First do the subtraction as integers;
3535 then drop through to build the divide operator.
3536 Do not do default conversions on the minus operator
3537 in case restype is a short type. */
3539 op0 = build_binary_op (loc,
3540 MINUS_EXPR, convert (inttype, op0),
3541 convert (inttype, op1), 0);
3542 /* This generates an error if op1 is pointer to incomplete type. */
3543 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (orig_op1))))
3544 error_at (loc, "arithmetic on pointer to an incomplete type");
3546 op1 = c_size_in_bytes (target_type);
3548 if (pointer_to_zero_sized_aggr_p (TREE_TYPE (orig_op1)))
3549 error_at (loc, "arithmetic on pointer to an empty aggregate");
3551 /* Divide by the size, in easiest possible way. */
3552 result = fold_build2_loc (loc, EXACT_DIV_EXPR, inttype,
3553 op0, convert (inttype, op1));
3555 /* Convert to final result type if necessary. */
3556 return convert (restype, result);
3559 /* Expand atomic compound assignments into an approriate sequence as
3560 specified by the C11 standard section 6.5.16.2.
3561 given
3562 _Atomic T1 E1
3563 T2 E2
3564 E1 op= E2
3566 This sequence is used for all types for which these operations are
3567 supported.
3569 In addition, built-in versions of the 'fe' prefixed routines may
3570 need to be invoked for floating point (real, complex or vector) when
3571 floating-point exceptions are supported. See 6.5.16.2 footnote 113.
3573 T1 newval;
3574 T1 old;
3575 T1 *addr
3576 T2 val
3577 fenv_t fenv
3579 addr = &E1;
3580 val = (E2);
3581 __atomic_load (addr, &old, SEQ_CST);
3582 feholdexcept (&fenv);
3583 loop:
3584 newval = old op val;
3585 if (__atomic_compare_exchange_strong (addr, &old, &newval, SEQ_CST,
3586 SEQ_CST))
3587 goto done;
3588 feclearexcept (FE_ALL_EXCEPT);
3589 goto loop:
3590 done:
3591 feupdateenv (&fenv);
3593 Also note that the compiler is simply issuing the generic form of
3594 the atomic operations. This requires temp(s) and has their address
3595 taken. The atomic processing is smart enough to figure out when the
3596 size of an object can utilize a lock-free version, and convert the
3597 built-in call to the appropriate lock-free routine. The optimizers
3598 will then dispose of any temps that are no longer required, and
3599 lock-free implementations are utilized as long as there is target
3600 support for the required size.
3602 If the operator is NOP_EXPR, then this is a simple assignment, and
3603 an __atomic_store is issued to perform the assignment rather than
3604 the above loop.
3608 /* Build an atomic assignment at LOC, expanding into the proper
3609 sequence to store LHS MODIFYCODE= RHS. Return a value representing
3610 the result of the operation, unless RETURN_OLD_P in which case
3611 return the old value of LHS (this is only for postincrement and
3612 postdecrement). */
3613 static tree
3614 build_atomic_assign (location_t loc, tree lhs, enum tree_code modifycode,
3615 tree rhs, bool return_old_p)
3617 tree fndecl, func_call;
3618 vec<tree, va_gc> *params;
3619 tree val, nonatomic_lhs_type, nonatomic_rhs_type, newval, newval_addr;
3620 tree old, old_addr;
3621 tree compound_stmt;
3622 tree stmt, goto_stmt;
3623 tree loop_label, loop_decl, done_label, done_decl;
3625 tree lhs_type = TREE_TYPE (lhs);
3626 tree lhs_addr = build_unary_op (loc, ADDR_EXPR, lhs, 0);
3627 tree seq_cst = build_int_cst (integer_type_node, MEMMODEL_SEQ_CST);
3628 tree rhs_type = TREE_TYPE (rhs);
3630 gcc_assert (TYPE_ATOMIC (lhs_type));
3632 if (return_old_p)
3633 gcc_assert (modifycode == PLUS_EXPR || modifycode == MINUS_EXPR);
3635 /* Allocate enough vector items for a compare_exchange. */
3636 vec_alloc (params, 6);
3638 /* Create a compound statement to hold the sequence of statements
3639 with a loop. */
3640 compound_stmt = c_begin_compound_stmt (false);
3642 /* Fold the RHS if it hasn't already been folded. */
3643 if (modifycode != NOP_EXPR)
3644 rhs = c_fully_fold (rhs, false, NULL);
3646 /* Remove the qualifiers for the rest of the expressions and create
3647 the VAL temp variable to hold the RHS. */
3648 nonatomic_lhs_type = build_qualified_type (lhs_type, TYPE_UNQUALIFIED);
3649 nonatomic_rhs_type = build_qualified_type (rhs_type, TYPE_UNQUALIFIED);
3650 val = create_tmp_var (nonatomic_rhs_type, NULL);
3651 TREE_ADDRESSABLE (val) = 1;
3652 TREE_NO_WARNING (val) = 1;
3653 rhs = build2 (MODIFY_EXPR, nonatomic_rhs_type, val, rhs);
3654 SET_EXPR_LOCATION (rhs, loc);
3655 add_stmt (rhs);
3657 /* NOP_EXPR indicates it's a straight store of the RHS. Simply issue
3658 an atomic_store. */
3659 if (modifycode == NOP_EXPR)
3661 /* Build __atomic_store (&lhs, &val, SEQ_CST) */
3662 rhs = build_unary_op (loc, ADDR_EXPR, val, 0);
3663 fndecl = builtin_decl_explicit (BUILT_IN_ATOMIC_STORE);
3664 params->quick_push (lhs_addr);
3665 params->quick_push (rhs);
3666 params->quick_push (seq_cst);
3667 func_call = c_build_function_call_vec (loc, vNULL, fndecl, params, NULL);
3668 add_stmt (func_call);
3670 /* Finish the compound statement. */
3671 compound_stmt = c_end_compound_stmt (loc, compound_stmt, false);
3673 /* VAL is the value which was stored, return a COMPOUND_STMT of
3674 the statement and that value. */
3675 return build2 (COMPOUND_EXPR, nonatomic_lhs_type, compound_stmt, val);
3678 /* Create the variables and labels required for the op= form. */
3679 old = create_tmp_var (nonatomic_lhs_type, NULL);
3680 old_addr = build_unary_op (loc, ADDR_EXPR, old, 0);
3681 TREE_ADDRESSABLE (old) = 1;
3682 TREE_NO_WARNING (old) = 1;
3684 newval = create_tmp_var (nonatomic_lhs_type, NULL);
3685 newval_addr = build_unary_op (loc, ADDR_EXPR, newval, 0);
3686 TREE_ADDRESSABLE (newval) = 1;
3688 loop_decl = create_artificial_label (loc);
3689 loop_label = build1 (LABEL_EXPR, void_type_node, loop_decl);
3691 done_decl = create_artificial_label (loc);
3692 done_label = build1 (LABEL_EXPR, void_type_node, done_decl);
3694 /* __atomic_load (addr, &old, SEQ_CST). */
3695 fndecl = builtin_decl_explicit (BUILT_IN_ATOMIC_LOAD);
3696 params->quick_push (lhs_addr);
3697 params->quick_push (old_addr);
3698 params->quick_push (seq_cst);
3699 func_call = c_build_function_call_vec (loc, vNULL, fndecl, params, NULL);
3700 add_stmt (func_call);
3701 params->truncate (0);
3703 /* Create the expressions for floating-point environment
3704 manipulation, if required. */
3705 bool need_fenv = (flag_trapping_math
3706 && (FLOAT_TYPE_P (lhs_type) || FLOAT_TYPE_P (rhs_type)));
3707 tree hold_call = NULL_TREE, clear_call = NULL_TREE, update_call = NULL_TREE;
3708 if (need_fenv)
3709 targetm.atomic_assign_expand_fenv (&hold_call, &clear_call, &update_call);
3711 if (hold_call)
3712 add_stmt (hold_call);
3714 /* loop: */
3715 add_stmt (loop_label);
3717 /* newval = old + val; */
3718 rhs = build_binary_op (loc, modifycode, old, val, 1);
3719 rhs = convert_for_assignment (loc, UNKNOWN_LOCATION, nonatomic_lhs_type,
3720 rhs, NULL_TREE, ic_assign, false, NULL_TREE,
3721 NULL_TREE, 0);
3722 if (rhs != error_mark_node)
3724 rhs = build2 (MODIFY_EXPR, nonatomic_lhs_type, newval, rhs);
3725 SET_EXPR_LOCATION (rhs, loc);
3726 add_stmt (rhs);
3729 /* if (__atomic_compare_exchange (addr, &old, &new, false, SEQ_CST, SEQ_CST))
3730 goto done; */
3731 fndecl = builtin_decl_explicit (BUILT_IN_ATOMIC_COMPARE_EXCHANGE);
3732 params->quick_push (lhs_addr);
3733 params->quick_push (old_addr);
3734 params->quick_push (newval_addr);
3735 params->quick_push (integer_zero_node);
3736 params->quick_push (seq_cst);
3737 params->quick_push (seq_cst);
3738 func_call = c_build_function_call_vec (loc, vNULL, fndecl, params, NULL);
3740 goto_stmt = build1 (GOTO_EXPR, void_type_node, done_decl);
3741 SET_EXPR_LOCATION (goto_stmt, loc);
3743 stmt = build3 (COND_EXPR, void_type_node, func_call, goto_stmt, NULL_TREE);
3744 SET_EXPR_LOCATION (stmt, loc);
3745 add_stmt (stmt);
3747 if (clear_call)
3748 add_stmt (clear_call);
3750 /* goto loop; */
3751 goto_stmt = build1 (GOTO_EXPR, void_type_node, loop_decl);
3752 SET_EXPR_LOCATION (goto_stmt, loc);
3753 add_stmt (goto_stmt);
3755 /* done: */
3756 add_stmt (done_label);
3758 if (update_call)
3759 add_stmt (update_call);
3761 /* Finish the compound statement. */
3762 compound_stmt = c_end_compound_stmt (loc, compound_stmt, false);
3764 /* NEWVAL is the value that was successfully stored, return a
3765 COMPOUND_EXPR of the statement and the appropriate value. */
3766 return build2 (COMPOUND_EXPR, nonatomic_lhs_type, compound_stmt,
3767 return_old_p ? old : newval);
3770 /* Construct and perhaps optimize a tree representation
3771 for a unary operation. CODE, a tree_code, specifies the operation
3772 and XARG is the operand.
3773 For any CODE other than ADDR_EXPR, FLAG nonzero suppresses
3774 the default promotions (such as from short to int).
3775 For ADDR_EXPR, the default promotions are not applied; FLAG nonzero
3776 allows non-lvalues; this is only used to handle conversion of non-lvalue
3777 arrays to pointers in C99.
3779 LOCATION is the location of the operator. */
3781 tree
3782 build_unary_op (location_t location,
3783 enum tree_code code, tree xarg, int flag)
3785 /* No default_conversion here. It causes trouble for ADDR_EXPR. */
3786 tree arg = xarg;
3787 tree argtype = 0;
3788 enum tree_code typecode;
3789 tree val;
3790 tree ret = error_mark_node;
3791 tree eptype = NULL_TREE;
3792 int noconvert = flag;
3793 const char *invalid_op_diag;
3794 bool int_operands;
3796 int_operands = EXPR_INT_CONST_OPERANDS (xarg);
3797 if (int_operands)
3798 arg = remove_c_maybe_const_expr (arg);
3800 if (code != ADDR_EXPR)
3801 arg = require_complete_type (arg);
3803 typecode = TREE_CODE (TREE_TYPE (arg));
3804 if (typecode == ERROR_MARK)
3805 return error_mark_node;
3806 if (typecode == ENUMERAL_TYPE || typecode == BOOLEAN_TYPE)
3807 typecode = INTEGER_TYPE;
3809 if ((invalid_op_diag
3810 = targetm.invalid_unary_op (code, TREE_TYPE (xarg))))
3812 error_at (location, invalid_op_diag);
3813 return error_mark_node;
3816 if (TREE_CODE (arg) == EXCESS_PRECISION_EXPR)
3818 eptype = TREE_TYPE (arg);
3819 arg = TREE_OPERAND (arg, 0);
3822 switch (code)
3824 case CONVERT_EXPR:
3825 /* This is used for unary plus, because a CONVERT_EXPR
3826 is enough to prevent anybody from looking inside for
3827 associativity, but won't generate any code. */
3828 if (!(typecode == INTEGER_TYPE || typecode == REAL_TYPE
3829 || typecode == FIXED_POINT_TYPE || typecode == COMPLEX_TYPE
3830 || typecode == VECTOR_TYPE))
3832 error_at (location, "wrong type argument to unary plus");
3833 return error_mark_node;
3835 else if (!noconvert)
3836 arg = default_conversion (arg);
3837 arg = non_lvalue_loc (location, arg);
3838 break;
3840 case NEGATE_EXPR:
3841 if (!(typecode == INTEGER_TYPE || typecode == REAL_TYPE
3842 || typecode == FIXED_POINT_TYPE || typecode == COMPLEX_TYPE
3843 || typecode == VECTOR_TYPE))
3845 error_at (location, "wrong type argument to unary minus");
3846 return error_mark_node;
3848 else if (!noconvert)
3849 arg = default_conversion (arg);
3850 break;
3852 case BIT_NOT_EXPR:
3853 /* ~ works on integer types and non float vectors. */
3854 if (typecode == INTEGER_TYPE
3855 || (typecode == VECTOR_TYPE
3856 && !VECTOR_FLOAT_TYPE_P (TREE_TYPE (arg))))
3858 if (!noconvert)
3859 arg = default_conversion (arg);
3861 else if (typecode == COMPLEX_TYPE)
3863 code = CONJ_EXPR;
3864 pedwarn (location, OPT_Wpedantic,
3865 "ISO C does not support %<~%> for complex conjugation");
3866 if (!noconvert)
3867 arg = default_conversion (arg);
3869 else
3871 error_at (location, "wrong type argument to bit-complement");
3872 return error_mark_node;
3874 break;
3876 case ABS_EXPR:
3877 if (!(typecode == INTEGER_TYPE || typecode == REAL_TYPE))
3879 error_at (location, "wrong type argument to abs");
3880 return error_mark_node;
3882 else if (!noconvert)
3883 arg = default_conversion (arg);
3884 break;
3886 case CONJ_EXPR:
3887 /* Conjugating a real value is a no-op, but allow it anyway. */
3888 if (!(typecode == INTEGER_TYPE || typecode == REAL_TYPE
3889 || typecode == COMPLEX_TYPE))
3891 error_at (location, "wrong type argument to conjugation");
3892 return error_mark_node;
3894 else if (!noconvert)
3895 arg = default_conversion (arg);
3896 break;
3898 case TRUTH_NOT_EXPR:
3899 if (typecode != INTEGER_TYPE && typecode != FIXED_POINT_TYPE
3900 && typecode != REAL_TYPE && typecode != POINTER_TYPE
3901 && typecode != COMPLEX_TYPE)
3903 error_at (location,
3904 "wrong type argument to unary exclamation mark");
3905 return error_mark_node;
3907 if (int_operands)
3909 arg = c_objc_common_truthvalue_conversion (location, xarg);
3910 arg = remove_c_maybe_const_expr (arg);
3912 else
3913 arg = c_objc_common_truthvalue_conversion (location, arg);
3914 ret = invert_truthvalue_loc (location, arg);
3915 /* If the TRUTH_NOT_EXPR has been folded, reset the location. */
3916 if (EXPR_P (ret) && EXPR_HAS_LOCATION (ret))
3917 location = EXPR_LOCATION (ret);
3918 goto return_build_unary_op;
3920 case REALPART_EXPR:
3921 case IMAGPART_EXPR:
3922 ret = build_real_imag_expr (location, code, arg);
3923 if (ret == error_mark_node)
3924 return error_mark_node;
3925 if (eptype && TREE_CODE (eptype) == COMPLEX_TYPE)
3926 eptype = TREE_TYPE (eptype);
3927 goto return_build_unary_op;
3929 case PREINCREMENT_EXPR:
3930 case POSTINCREMENT_EXPR:
3931 case PREDECREMENT_EXPR:
3932 case POSTDECREMENT_EXPR:
3934 if (TREE_CODE (arg) == C_MAYBE_CONST_EXPR)
3936 tree inner = build_unary_op (location, code,
3937 C_MAYBE_CONST_EXPR_EXPR (arg), flag);
3938 if (inner == error_mark_node)
3939 return error_mark_node;
3940 ret = build2 (C_MAYBE_CONST_EXPR, TREE_TYPE (inner),
3941 C_MAYBE_CONST_EXPR_PRE (arg), inner);
3942 gcc_assert (!C_MAYBE_CONST_EXPR_INT_OPERANDS (arg));
3943 C_MAYBE_CONST_EXPR_NON_CONST (ret) = 1;
3944 goto return_build_unary_op;
3947 /* Complain about anything that is not a true lvalue. In
3948 Objective-C, skip this check for property_refs. */
3949 if (!objc_is_property_ref (arg)
3950 && !lvalue_or_else (location,
3951 arg, ((code == PREINCREMENT_EXPR
3952 || code == POSTINCREMENT_EXPR)
3953 ? lv_increment
3954 : lv_decrement)))
3955 return error_mark_node;
3957 if (warn_cxx_compat && TREE_CODE (TREE_TYPE (arg)) == ENUMERAL_TYPE)
3959 if (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
3960 warning_at (location, OPT_Wc___compat,
3961 "increment of enumeration value is invalid in C++");
3962 else
3963 warning_at (location, OPT_Wc___compat,
3964 "decrement of enumeration value is invalid in C++");
3967 /* Ensure the argument is fully folded inside any SAVE_EXPR. */
3968 arg = c_fully_fold (arg, false, NULL);
3970 bool atomic_op;
3971 atomic_op = really_atomic_lvalue (arg);
3973 /* Increment or decrement the real part of the value,
3974 and don't change the imaginary part. */
3975 if (typecode == COMPLEX_TYPE)
3977 tree real, imag;
3979 pedwarn (location, OPT_Wpedantic,
3980 "ISO C does not support %<++%> and %<--%> on complex types");
3982 if (!atomic_op)
3984 arg = stabilize_reference (arg);
3985 real = build_unary_op (EXPR_LOCATION (arg), REALPART_EXPR, arg, 1);
3986 imag = build_unary_op (EXPR_LOCATION (arg), IMAGPART_EXPR, arg, 1);
3987 real = build_unary_op (EXPR_LOCATION (arg), code, real, 1);
3988 if (real == error_mark_node || imag == error_mark_node)
3989 return error_mark_node;
3990 ret = build2 (COMPLEX_EXPR, TREE_TYPE (arg),
3991 real, imag);
3992 goto return_build_unary_op;
3996 /* Report invalid types. */
3998 if (typecode != POINTER_TYPE && typecode != FIXED_POINT_TYPE
3999 && typecode != INTEGER_TYPE && typecode != REAL_TYPE
4000 && typecode != COMPLEX_TYPE && typecode != VECTOR_TYPE)
4002 if (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
4003 error_at (location, "wrong type argument to increment");
4004 else
4005 error_at (location, "wrong type argument to decrement");
4007 return error_mark_node;
4011 tree inc;
4013 argtype = TREE_TYPE (arg);
4015 /* Compute the increment. */
4017 if (typecode == POINTER_TYPE)
4019 /* If pointer target is an incomplete type,
4020 we just cannot know how to do the arithmetic. */
4021 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (argtype)))
4023 if (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
4024 error_at (location,
4025 "increment of pointer to an incomplete type %qT",
4026 TREE_TYPE (argtype));
4027 else
4028 error_at (location,
4029 "decrement of pointer to an incomplete type %qT",
4030 TREE_TYPE (argtype));
4032 else if (TREE_CODE (TREE_TYPE (argtype)) == FUNCTION_TYPE
4033 || TREE_CODE (TREE_TYPE (argtype)) == VOID_TYPE)
4035 if (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
4036 pedwarn (location, OPT_Wpointer_arith,
4037 "wrong type argument to increment");
4038 else
4039 pedwarn (location, OPT_Wpointer_arith,
4040 "wrong type argument to decrement");
4043 inc = c_size_in_bytes (TREE_TYPE (argtype));
4044 inc = convert_to_ptrofftype_loc (location, inc);
4046 else if (FRACT_MODE_P (TYPE_MODE (argtype)))
4048 /* For signed fract types, we invert ++ to -- or
4049 -- to ++, and change inc from 1 to -1, because
4050 it is not possible to represent 1 in signed fract constants.
4051 For unsigned fract types, the result always overflows and
4052 we get an undefined (original) or the maximum value. */
4053 if (code == PREINCREMENT_EXPR)
4054 code = PREDECREMENT_EXPR;
4055 else if (code == PREDECREMENT_EXPR)
4056 code = PREINCREMENT_EXPR;
4057 else if (code == POSTINCREMENT_EXPR)
4058 code = POSTDECREMENT_EXPR;
4059 else /* code == POSTDECREMENT_EXPR */
4060 code = POSTINCREMENT_EXPR;
4062 inc = integer_minus_one_node;
4063 inc = convert (argtype, inc);
4065 else
4067 inc = VECTOR_TYPE_P (argtype)
4068 ? build_one_cst (argtype)
4069 : integer_one_node;
4070 inc = convert (argtype, inc);
4073 /* If 'arg' is an Objective-C PROPERTY_REF expression, then we
4074 need to ask Objective-C to build the increment or decrement
4075 expression for it. */
4076 if (objc_is_property_ref (arg))
4077 return objc_build_incr_expr_for_property_ref (location, code,
4078 arg, inc);
4080 /* Report a read-only lvalue. */
4081 if (TYPE_READONLY (argtype))
4083 readonly_error (location, arg,
4084 ((code == PREINCREMENT_EXPR
4085 || code == POSTINCREMENT_EXPR)
4086 ? lv_increment : lv_decrement));
4087 return error_mark_node;
4089 else if (TREE_READONLY (arg))
4090 readonly_warning (arg,
4091 ((code == PREINCREMENT_EXPR
4092 || code == POSTINCREMENT_EXPR)
4093 ? lv_increment : lv_decrement));
4095 /* If the argument is atomic, use the special code sequences for
4096 atomic compound assignment. */
4097 if (atomic_op)
4099 arg = stabilize_reference (arg);
4100 ret = build_atomic_assign (location, arg,
4101 ((code == PREINCREMENT_EXPR
4102 || code == POSTINCREMENT_EXPR)
4103 ? PLUS_EXPR
4104 : MINUS_EXPR),
4105 (FRACT_MODE_P (TYPE_MODE (argtype))
4106 ? inc
4107 : integer_one_node),
4108 (code == POSTINCREMENT_EXPR
4109 || code == POSTDECREMENT_EXPR));
4110 goto return_build_unary_op;
4113 if (TREE_CODE (TREE_TYPE (arg)) == BOOLEAN_TYPE)
4114 val = boolean_increment (code, arg);
4115 else
4116 val = build2 (code, TREE_TYPE (arg), arg, inc);
4117 TREE_SIDE_EFFECTS (val) = 1;
4118 if (TREE_CODE (val) != code)
4119 TREE_NO_WARNING (val) = 1;
4120 ret = val;
4121 goto return_build_unary_op;
4124 case ADDR_EXPR:
4125 /* Note that this operation never does default_conversion. */
4127 /* The operand of unary '&' must be an lvalue (which excludes
4128 expressions of type void), or, in C99, the result of a [] or
4129 unary '*' operator. */
4130 if (VOID_TYPE_P (TREE_TYPE (arg))
4131 && TYPE_QUALS (TREE_TYPE (arg)) == TYPE_UNQUALIFIED
4132 && (TREE_CODE (arg) != INDIRECT_REF
4133 || !flag_isoc99))
4134 pedwarn (location, 0, "taking address of expression of type %<void%>");
4136 /* Let &* cancel out to simplify resulting code. */
4137 if (TREE_CODE (arg) == INDIRECT_REF)
4139 /* Don't let this be an lvalue. */
4140 if (lvalue_p (TREE_OPERAND (arg, 0)))
4141 return non_lvalue_loc (location, TREE_OPERAND (arg, 0));
4142 ret = TREE_OPERAND (arg, 0);
4143 goto return_build_unary_op;
4146 /* For &x[y], return x+y */
4147 if (TREE_CODE (arg) == ARRAY_REF)
4149 tree op0 = TREE_OPERAND (arg, 0);
4150 if (!c_mark_addressable (op0))
4151 return error_mark_node;
4154 /* Anything not already handled and not a true memory reference
4155 or a non-lvalue array is an error. */
4156 else if (typecode != FUNCTION_TYPE && !flag
4157 && !lvalue_or_else (location, arg, lv_addressof))
4158 return error_mark_node;
4160 /* Move address operations inside C_MAYBE_CONST_EXPR to simplify
4161 folding later. */
4162 if (TREE_CODE (arg) == C_MAYBE_CONST_EXPR)
4164 tree inner = build_unary_op (location, code,
4165 C_MAYBE_CONST_EXPR_EXPR (arg), flag);
4166 ret = build2 (C_MAYBE_CONST_EXPR, TREE_TYPE (inner),
4167 C_MAYBE_CONST_EXPR_PRE (arg), inner);
4168 gcc_assert (!C_MAYBE_CONST_EXPR_INT_OPERANDS (arg));
4169 C_MAYBE_CONST_EXPR_NON_CONST (ret)
4170 = C_MAYBE_CONST_EXPR_NON_CONST (arg);
4171 goto return_build_unary_op;
4174 /* Ordinary case; arg is a COMPONENT_REF or a decl. */
4175 argtype = TREE_TYPE (arg);
4177 /* If the lvalue is const or volatile, merge that into the type
4178 to which the address will point. This is only needed
4179 for function types. */
4180 if ((DECL_P (arg) || REFERENCE_CLASS_P (arg))
4181 && (TREE_READONLY (arg) || TREE_THIS_VOLATILE (arg))
4182 && TREE_CODE (argtype) == FUNCTION_TYPE)
4184 int orig_quals = TYPE_QUALS (strip_array_types (argtype));
4185 int quals = orig_quals;
4187 if (TREE_READONLY (arg))
4188 quals |= TYPE_QUAL_CONST;
4189 if (TREE_THIS_VOLATILE (arg))
4190 quals |= TYPE_QUAL_VOLATILE;
4192 argtype = c_build_qualified_type (argtype, quals);
4195 if (!c_mark_addressable (arg))
4196 return error_mark_node;
4198 gcc_assert (TREE_CODE (arg) != COMPONENT_REF
4199 || !DECL_C_BIT_FIELD (TREE_OPERAND (arg, 1)));
4201 argtype = build_pointer_type (argtype);
4203 /* ??? Cope with user tricks that amount to offsetof. Delete this
4204 when we have proper support for integer constant expressions. */
4205 val = get_base_address (arg);
4206 if (val && TREE_CODE (val) == INDIRECT_REF
4207 && TREE_CONSTANT (TREE_OPERAND (val, 0)))
4209 ret = fold_convert_loc (location, argtype, fold_offsetof_1 (arg));
4210 goto return_build_unary_op;
4213 val = build1 (ADDR_EXPR, argtype, arg);
4215 ret = val;
4216 goto return_build_unary_op;
4218 default:
4219 gcc_unreachable ();
4222 if (argtype == 0)
4223 argtype = TREE_TYPE (arg);
4224 if (TREE_CODE (arg) == INTEGER_CST)
4225 ret = (require_constant_value
4226 ? fold_build1_initializer_loc (location, code, argtype, arg)
4227 : fold_build1_loc (location, code, argtype, arg));
4228 else
4229 ret = build1 (code, argtype, arg);
4230 return_build_unary_op:
4231 gcc_assert (ret != error_mark_node);
4232 if (TREE_CODE (ret) == INTEGER_CST && !TREE_OVERFLOW (ret)
4233 && !(TREE_CODE (xarg) == INTEGER_CST && !TREE_OVERFLOW (xarg)))
4234 ret = build1 (NOP_EXPR, TREE_TYPE (ret), ret);
4235 else if (TREE_CODE (ret) != INTEGER_CST && int_operands)
4236 ret = note_integer_operands (ret);
4237 if (eptype)
4238 ret = build1 (EXCESS_PRECISION_EXPR, eptype, ret);
4239 protected_set_expr_location (ret, location);
4240 return ret;
4243 /* Return nonzero if REF is an lvalue valid for this language.
4244 Lvalues can be assigned, unless their type has TYPE_READONLY.
4245 Lvalues can have their address taken, unless they have C_DECL_REGISTER. */
4247 bool
4248 lvalue_p (const_tree ref)
4250 const enum tree_code code = TREE_CODE (ref);
4252 switch (code)
4254 case REALPART_EXPR:
4255 case IMAGPART_EXPR:
4256 case COMPONENT_REF:
4257 return lvalue_p (TREE_OPERAND (ref, 0));
4259 case C_MAYBE_CONST_EXPR:
4260 return lvalue_p (TREE_OPERAND (ref, 1));
4262 case COMPOUND_LITERAL_EXPR:
4263 case STRING_CST:
4264 return 1;
4266 case INDIRECT_REF:
4267 case ARRAY_REF:
4268 case ARRAY_NOTATION_REF:
4269 case VAR_DECL:
4270 case PARM_DECL:
4271 case RESULT_DECL:
4272 case ERROR_MARK:
4273 return (TREE_CODE (TREE_TYPE (ref)) != FUNCTION_TYPE
4274 && TREE_CODE (TREE_TYPE (ref)) != METHOD_TYPE);
4276 case BIND_EXPR:
4277 return TREE_CODE (TREE_TYPE (ref)) == ARRAY_TYPE;
4279 default:
4280 return 0;
4284 /* Give a warning for storing in something that is read-only in GCC
4285 terms but not const in ISO C terms. */
4287 static void
4288 readonly_warning (tree arg, enum lvalue_use use)
4290 switch (use)
4292 case lv_assign:
4293 warning (0, "assignment of read-only location %qE", arg);
4294 break;
4295 case lv_increment:
4296 warning (0, "increment of read-only location %qE", arg);
4297 break;
4298 case lv_decrement:
4299 warning (0, "decrement of read-only location %qE", arg);
4300 break;
4301 default:
4302 gcc_unreachable ();
4304 return;
4308 /* Return nonzero if REF is an lvalue valid for this language;
4309 otherwise, print an error message and return zero. USE says
4310 how the lvalue is being used and so selects the error message.
4311 LOCATION is the location at which any error should be reported. */
4313 static int
4314 lvalue_or_else (location_t loc, const_tree ref, enum lvalue_use use)
4316 int win = lvalue_p (ref);
4318 if (!win)
4319 lvalue_error (loc, use);
4321 return win;
4324 /* Mark EXP saying that we need to be able to take the
4325 address of it; it should not be allocated in a register.
4326 Returns true if successful. */
4328 bool
4329 c_mark_addressable (tree exp)
4331 tree x = exp;
4333 while (1)
4334 switch (TREE_CODE (x))
4336 case COMPONENT_REF:
4337 if (DECL_C_BIT_FIELD (TREE_OPERAND (x, 1)))
4339 error
4340 ("cannot take address of bit-field %qD", TREE_OPERAND (x, 1));
4341 return false;
4344 /* ... fall through ... */
4346 case ADDR_EXPR:
4347 case ARRAY_REF:
4348 case REALPART_EXPR:
4349 case IMAGPART_EXPR:
4350 x = TREE_OPERAND (x, 0);
4351 break;
4353 case COMPOUND_LITERAL_EXPR:
4354 case CONSTRUCTOR:
4355 TREE_ADDRESSABLE (x) = 1;
4356 return true;
4358 case VAR_DECL:
4359 case CONST_DECL:
4360 case PARM_DECL:
4361 case RESULT_DECL:
4362 if (C_DECL_REGISTER (x)
4363 && DECL_NONLOCAL (x))
4365 if (TREE_PUBLIC (x) || TREE_STATIC (x) || DECL_EXTERNAL (x))
4367 error
4368 ("global register variable %qD used in nested function", x);
4369 return false;
4371 pedwarn (input_location, 0, "register variable %qD used in nested function", x);
4373 else if (C_DECL_REGISTER (x))
4375 if (TREE_PUBLIC (x) || TREE_STATIC (x) || DECL_EXTERNAL (x))
4376 error ("address of global register variable %qD requested", x);
4377 else
4378 error ("address of register variable %qD requested", x);
4379 return false;
4382 /* drops in */
4383 case FUNCTION_DECL:
4384 TREE_ADDRESSABLE (x) = 1;
4385 /* drops out */
4386 default:
4387 return true;
4391 /* Convert EXPR to TYPE, warning about conversion problems with
4392 constants. SEMANTIC_TYPE is the type this conversion would use
4393 without excess precision. If SEMANTIC_TYPE is NULL, this function
4394 is equivalent to convert_and_check. This function is a wrapper that
4395 handles conversions that may be different than
4396 the usual ones because of excess precision. */
4398 static tree
4399 ep_convert_and_check (location_t loc, tree type, tree expr,
4400 tree semantic_type)
4402 if (TREE_TYPE (expr) == type)
4403 return expr;
4405 if (!semantic_type)
4406 return convert_and_check (loc, type, expr);
4408 if (TREE_CODE (TREE_TYPE (expr)) == INTEGER_TYPE
4409 && TREE_TYPE (expr) != semantic_type)
4411 /* For integers, we need to check the real conversion, not
4412 the conversion to the excess precision type. */
4413 expr = convert_and_check (loc, semantic_type, expr);
4415 /* Result type is the excess precision type, which should be
4416 large enough, so do not check. */
4417 return convert (type, expr);
4420 /* Build and return a conditional expression IFEXP ? OP1 : OP2. If
4421 IFEXP_BCP then the condition is a call to __builtin_constant_p, and
4422 if folded to an integer constant then the unselected half may
4423 contain arbitrary operations not normally permitted in constant
4424 expressions. Set the location of the expression to LOC. */
4426 tree
4427 build_conditional_expr (location_t colon_loc, tree ifexp, bool ifexp_bcp,
4428 tree op1, tree op1_original_type, tree op2,
4429 tree op2_original_type)
4431 tree type1;
4432 tree type2;
4433 enum tree_code code1;
4434 enum tree_code code2;
4435 tree result_type = NULL;
4436 tree semantic_result_type = NULL;
4437 tree orig_op1 = op1, orig_op2 = op2;
4438 bool int_const, op1_int_operands, op2_int_operands, int_operands;
4439 bool ifexp_int_operands;
4440 tree ret;
4442 op1_int_operands = EXPR_INT_CONST_OPERANDS (orig_op1);
4443 if (op1_int_operands)
4444 op1 = remove_c_maybe_const_expr (op1);
4445 op2_int_operands = EXPR_INT_CONST_OPERANDS (orig_op2);
4446 if (op2_int_operands)
4447 op2 = remove_c_maybe_const_expr (op2);
4448 ifexp_int_operands = EXPR_INT_CONST_OPERANDS (ifexp);
4449 if (ifexp_int_operands)
4450 ifexp = remove_c_maybe_const_expr (ifexp);
4452 /* Promote both alternatives. */
4454 if (TREE_CODE (TREE_TYPE (op1)) != VOID_TYPE)
4455 op1 = default_conversion (op1);
4456 if (TREE_CODE (TREE_TYPE (op2)) != VOID_TYPE)
4457 op2 = default_conversion (op2);
4459 if (TREE_CODE (ifexp) == ERROR_MARK
4460 || TREE_CODE (TREE_TYPE (op1)) == ERROR_MARK
4461 || TREE_CODE (TREE_TYPE (op2)) == ERROR_MARK)
4462 return error_mark_node;
4464 type1 = TREE_TYPE (op1);
4465 code1 = TREE_CODE (type1);
4466 type2 = TREE_TYPE (op2);
4467 code2 = TREE_CODE (type2);
4469 /* C90 does not permit non-lvalue arrays in conditional expressions.
4470 In C99 they will be pointers by now. */
4471 if (code1 == ARRAY_TYPE || code2 == ARRAY_TYPE)
4473 error_at (colon_loc, "non-lvalue array in conditional expression");
4474 return error_mark_node;
4477 if ((TREE_CODE (op1) == EXCESS_PRECISION_EXPR
4478 || TREE_CODE (op2) == EXCESS_PRECISION_EXPR)
4479 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
4480 || code1 == COMPLEX_TYPE)
4481 && (code2 == INTEGER_TYPE || code2 == REAL_TYPE
4482 || code2 == COMPLEX_TYPE))
4484 semantic_result_type = c_common_type (type1, type2);
4485 if (TREE_CODE (op1) == EXCESS_PRECISION_EXPR)
4487 op1 = TREE_OPERAND (op1, 0);
4488 type1 = TREE_TYPE (op1);
4489 gcc_assert (TREE_CODE (type1) == code1);
4491 if (TREE_CODE (op2) == EXCESS_PRECISION_EXPR)
4493 op2 = TREE_OPERAND (op2, 0);
4494 type2 = TREE_TYPE (op2);
4495 gcc_assert (TREE_CODE (type2) == code2);
4499 if (warn_cxx_compat)
4501 tree t1 = op1_original_type ? op1_original_type : TREE_TYPE (orig_op1);
4502 tree t2 = op2_original_type ? op2_original_type : TREE_TYPE (orig_op2);
4504 if (TREE_CODE (t1) == ENUMERAL_TYPE
4505 && TREE_CODE (t2) == ENUMERAL_TYPE
4506 && TYPE_MAIN_VARIANT (t1) != TYPE_MAIN_VARIANT (t2))
4507 warning_at (colon_loc, OPT_Wc___compat,
4508 ("different enum types in conditional is "
4509 "invalid in C++: %qT vs %qT"),
4510 t1, t2);
4513 /* Quickly detect the usual case where op1 and op2 have the same type
4514 after promotion. */
4515 if (TYPE_MAIN_VARIANT (type1) == TYPE_MAIN_VARIANT (type2))
4517 if (type1 == type2)
4518 result_type = type1;
4519 else
4520 result_type = TYPE_MAIN_VARIANT (type1);
4522 else if ((code1 == INTEGER_TYPE || code1 == REAL_TYPE
4523 || code1 == COMPLEX_TYPE)
4524 && (code2 == INTEGER_TYPE || code2 == REAL_TYPE
4525 || code2 == COMPLEX_TYPE))
4527 result_type = c_common_type (type1, type2);
4528 do_warn_double_promotion (result_type, type1, type2,
4529 "implicit conversion from %qT to %qT to "
4530 "match other result of conditional",
4531 colon_loc);
4533 /* If -Wsign-compare, warn here if type1 and type2 have
4534 different signedness. We'll promote the signed to unsigned
4535 and later code won't know it used to be different.
4536 Do this check on the original types, so that explicit casts
4537 will be considered, but default promotions won't. */
4538 if (c_inhibit_evaluation_warnings == 0)
4540 int unsigned_op1 = TYPE_UNSIGNED (TREE_TYPE (orig_op1));
4541 int unsigned_op2 = TYPE_UNSIGNED (TREE_TYPE (orig_op2));
4543 if (unsigned_op1 ^ unsigned_op2)
4545 bool ovf;
4547 /* Do not warn if the result type is signed, since the
4548 signed type will only be chosen if it can represent
4549 all the values of the unsigned type. */
4550 if (!TYPE_UNSIGNED (result_type))
4551 /* OK */;
4552 else
4554 bool op1_maybe_const = true;
4555 bool op2_maybe_const = true;
4557 /* Do not warn if the signed quantity is an
4558 unsuffixed integer literal (or some static
4559 constant expression involving such literals) and
4560 it is non-negative. This warning requires the
4561 operands to be folded for best results, so do
4562 that folding in this case even without
4563 warn_sign_compare to avoid warning options
4564 possibly affecting code generation. */
4565 c_inhibit_evaluation_warnings
4566 += (ifexp == truthvalue_false_node);
4567 op1 = c_fully_fold (op1, require_constant_value,
4568 &op1_maybe_const);
4569 c_inhibit_evaluation_warnings
4570 -= (ifexp == truthvalue_false_node);
4572 c_inhibit_evaluation_warnings
4573 += (ifexp == truthvalue_true_node);
4574 op2 = c_fully_fold (op2, require_constant_value,
4575 &op2_maybe_const);
4576 c_inhibit_evaluation_warnings
4577 -= (ifexp == truthvalue_true_node);
4579 if (warn_sign_compare)
4581 if ((unsigned_op2
4582 && tree_expr_nonnegative_warnv_p (op1, &ovf))
4583 || (unsigned_op1
4584 && tree_expr_nonnegative_warnv_p (op2, &ovf)))
4585 /* OK */;
4586 else
4587 warning_at (colon_loc, OPT_Wsign_compare,
4588 ("signed and unsigned type in "
4589 "conditional expression"));
4591 if (!op1_maybe_const || TREE_CODE (op1) != INTEGER_CST)
4592 op1 = c_wrap_maybe_const (op1, !op1_maybe_const);
4593 if (!op2_maybe_const || TREE_CODE (op2) != INTEGER_CST)
4594 op2 = c_wrap_maybe_const (op2, !op2_maybe_const);
4599 else if (code1 == VOID_TYPE || code2 == VOID_TYPE)
4601 if (code1 != VOID_TYPE || code2 != VOID_TYPE)
4602 pedwarn (colon_loc, OPT_Wpedantic,
4603 "ISO C forbids conditional expr with only one void side");
4604 result_type = void_type_node;
4606 else if (code1 == POINTER_TYPE && code2 == POINTER_TYPE)
4608 addr_space_t as1 = TYPE_ADDR_SPACE (TREE_TYPE (type1));
4609 addr_space_t as2 = TYPE_ADDR_SPACE (TREE_TYPE (type2));
4610 addr_space_t as_common;
4612 if (comp_target_types (colon_loc, type1, type2))
4613 result_type = common_pointer_type (type1, type2);
4614 else if (null_pointer_constant_p (orig_op1))
4615 result_type = type2;
4616 else if (null_pointer_constant_p (orig_op2))
4617 result_type = type1;
4618 else if (!addr_space_superset (as1, as2, &as_common))
4620 error_at (colon_loc, "pointers to disjoint address spaces "
4621 "used in conditional expression");
4622 return error_mark_node;
4624 else if (VOID_TYPE_P (TREE_TYPE (type1))
4625 && !TYPE_ATOMIC (TREE_TYPE (type1)))
4627 if (TREE_CODE (TREE_TYPE (type2)) == FUNCTION_TYPE)
4628 pedwarn (colon_loc, OPT_Wpedantic,
4629 "ISO C forbids conditional expr between "
4630 "%<void *%> and function pointer");
4631 result_type = build_pointer_type (qualify_type (TREE_TYPE (type1),
4632 TREE_TYPE (type2)));
4634 else if (VOID_TYPE_P (TREE_TYPE (type2))
4635 && !TYPE_ATOMIC (TREE_TYPE (type2)))
4637 if (TREE_CODE (TREE_TYPE (type1)) == FUNCTION_TYPE)
4638 pedwarn (colon_loc, OPT_Wpedantic,
4639 "ISO C forbids conditional expr between "
4640 "%<void *%> and function pointer");
4641 result_type = build_pointer_type (qualify_type (TREE_TYPE (type2),
4642 TREE_TYPE (type1)));
4644 /* Objective-C pointer comparisons are a bit more lenient. */
4645 else if (objc_have_common_type (type1, type2, -3, NULL_TREE))
4646 result_type = objc_common_type (type1, type2);
4647 else
4649 int qual = ENCODE_QUAL_ADDR_SPACE (as_common);
4651 pedwarn (colon_loc, 0,
4652 "pointer type mismatch in conditional expression");
4653 result_type = build_pointer_type
4654 (build_qualified_type (void_type_node, qual));
4657 else if (code1 == POINTER_TYPE && code2 == INTEGER_TYPE)
4659 if (!null_pointer_constant_p (orig_op2))
4660 pedwarn (colon_loc, 0,
4661 "pointer/integer type mismatch in conditional expression");
4662 else
4664 op2 = null_pointer_node;
4666 result_type = type1;
4668 else if (code2 == POINTER_TYPE && code1 == INTEGER_TYPE)
4670 if (!null_pointer_constant_p (orig_op1))
4671 pedwarn (colon_loc, 0,
4672 "pointer/integer type mismatch in conditional expression");
4673 else
4675 op1 = null_pointer_node;
4677 result_type = type2;
4680 if (!result_type)
4682 if (flag_cond_mismatch)
4683 result_type = void_type_node;
4684 else
4686 error_at (colon_loc, "type mismatch in conditional expression");
4687 return error_mark_node;
4691 /* Merge const and volatile flags of the incoming types. */
4692 result_type
4693 = build_type_variant (result_type,
4694 TYPE_READONLY (type1) || TYPE_READONLY (type2),
4695 TYPE_VOLATILE (type1) || TYPE_VOLATILE (type2));
4697 op1 = ep_convert_and_check (colon_loc, result_type, op1,
4698 semantic_result_type);
4699 op2 = ep_convert_and_check (colon_loc, result_type, op2,
4700 semantic_result_type);
4702 if (ifexp_bcp && ifexp == truthvalue_true_node)
4704 op2_int_operands = true;
4705 op1 = c_fully_fold (op1, require_constant_value, NULL);
4707 if (ifexp_bcp && ifexp == truthvalue_false_node)
4709 op1_int_operands = true;
4710 op2 = c_fully_fold (op2, require_constant_value, NULL);
4712 int_const = int_operands = (ifexp_int_operands
4713 && op1_int_operands
4714 && op2_int_operands);
4715 if (int_operands)
4717 int_const = ((ifexp == truthvalue_true_node
4718 && TREE_CODE (orig_op1) == INTEGER_CST
4719 && !TREE_OVERFLOW (orig_op1))
4720 || (ifexp == truthvalue_false_node
4721 && TREE_CODE (orig_op2) == INTEGER_CST
4722 && !TREE_OVERFLOW (orig_op2)));
4724 if (int_const || (ifexp_bcp && TREE_CODE (ifexp) == INTEGER_CST))
4725 ret = fold_build3_loc (colon_loc, COND_EXPR, result_type, ifexp, op1, op2);
4726 else
4728 if (int_operands)
4730 /* Use c_fully_fold here, since C_MAYBE_CONST_EXPR might be
4731 nested inside of the expression. */
4732 op1 = c_fully_fold (op1, false, NULL);
4733 op2 = c_fully_fold (op2, false, NULL);
4735 ret = build3 (COND_EXPR, result_type, ifexp, op1, op2);
4736 if (int_operands)
4737 ret = note_integer_operands (ret);
4739 if (semantic_result_type)
4740 ret = build1 (EXCESS_PRECISION_EXPR, semantic_result_type, ret);
4742 protected_set_expr_location (ret, colon_loc);
4743 return ret;
4746 /* Return a compound expression that performs two expressions and
4747 returns the value of the second of them.
4749 LOC is the location of the COMPOUND_EXPR. */
4751 tree
4752 build_compound_expr (location_t loc, tree expr1, tree expr2)
4754 bool expr1_int_operands, expr2_int_operands;
4755 tree eptype = NULL_TREE;
4756 tree ret;
4758 if (flag_cilkplus
4759 && (TREE_CODE (expr1) == CILK_SPAWN_STMT
4760 || TREE_CODE (expr2) == CILK_SPAWN_STMT))
4762 error_at (loc,
4763 "spawned function call cannot be part of a comma expression");
4764 return error_mark_node;
4766 expr1_int_operands = EXPR_INT_CONST_OPERANDS (expr1);
4767 if (expr1_int_operands)
4768 expr1 = remove_c_maybe_const_expr (expr1);
4769 expr2_int_operands = EXPR_INT_CONST_OPERANDS (expr2);
4770 if (expr2_int_operands)
4771 expr2 = remove_c_maybe_const_expr (expr2);
4773 if (TREE_CODE (expr1) == EXCESS_PRECISION_EXPR)
4774 expr1 = TREE_OPERAND (expr1, 0);
4775 if (TREE_CODE (expr2) == EXCESS_PRECISION_EXPR)
4777 eptype = TREE_TYPE (expr2);
4778 expr2 = TREE_OPERAND (expr2, 0);
4781 if (!TREE_SIDE_EFFECTS (expr1))
4783 /* The left-hand operand of a comma expression is like an expression
4784 statement: with -Wunused, we should warn if it doesn't have
4785 any side-effects, unless it was explicitly cast to (void). */
4786 if (warn_unused_value)
4788 if (VOID_TYPE_P (TREE_TYPE (expr1))
4789 && CONVERT_EXPR_P (expr1))
4790 ; /* (void) a, b */
4791 else if (VOID_TYPE_P (TREE_TYPE (expr1))
4792 && TREE_CODE (expr1) == COMPOUND_EXPR
4793 && CONVERT_EXPR_P (TREE_OPERAND (expr1, 1)))
4794 ; /* (void) a, (void) b, c */
4795 else
4796 warning_at (loc, OPT_Wunused_value,
4797 "left-hand operand of comma expression has no effect");
4800 else if (TREE_CODE (expr1) == COMPOUND_EXPR
4801 && warn_unused_value)
4803 tree r = expr1;
4804 location_t cloc = loc;
4805 while (TREE_CODE (r) == COMPOUND_EXPR)
4807 if (EXPR_HAS_LOCATION (r))
4808 cloc = EXPR_LOCATION (r);
4809 r = TREE_OPERAND (r, 1);
4811 if (!TREE_SIDE_EFFECTS (r)
4812 && !VOID_TYPE_P (TREE_TYPE (r))
4813 && !CONVERT_EXPR_P (r))
4814 warning_at (cloc, OPT_Wunused_value,
4815 "right-hand operand of comma expression has no effect");
4818 /* With -Wunused, we should also warn if the left-hand operand does have
4819 side-effects, but computes a value which is not used. For example, in
4820 `foo() + bar(), baz()' the result of the `+' operator is not used,
4821 so we should issue a warning. */
4822 else if (warn_unused_value)
4823 warn_if_unused_value (expr1, loc);
4825 if (expr2 == error_mark_node)
4826 return error_mark_node;
4828 ret = build2 (COMPOUND_EXPR, TREE_TYPE (expr2), expr1, expr2);
4830 if (flag_isoc99
4831 && expr1_int_operands
4832 && expr2_int_operands)
4833 ret = note_integer_operands (ret);
4835 if (eptype)
4836 ret = build1 (EXCESS_PRECISION_EXPR, eptype, ret);
4838 protected_set_expr_location (ret, loc);
4839 return ret;
4842 /* Issue -Wcast-qual warnings when appropriate. TYPE is the type to
4843 which we are casting. OTYPE is the type of the expression being
4844 cast. Both TYPE and OTYPE are pointer types. LOC is the location
4845 of the cast. -Wcast-qual appeared on the command line. Named
4846 address space qualifiers are not handled here, because they result
4847 in different warnings. */
4849 static void
4850 handle_warn_cast_qual (location_t loc, tree type, tree otype)
4852 tree in_type = type;
4853 tree in_otype = otype;
4854 int added = 0;
4855 int discarded = 0;
4856 bool is_const;
4858 /* Check that the qualifiers on IN_TYPE are a superset of the
4859 qualifiers of IN_OTYPE. The outermost level of POINTER_TYPE
4860 nodes is uninteresting and we stop as soon as we hit a
4861 non-POINTER_TYPE node on either type. */
4864 in_otype = TREE_TYPE (in_otype);
4865 in_type = TREE_TYPE (in_type);
4867 /* GNU C allows cv-qualified function types. 'const' means the
4868 function is very pure, 'volatile' means it can't return. We
4869 need to warn when such qualifiers are added, not when they're
4870 taken away. */
4871 if (TREE_CODE (in_otype) == FUNCTION_TYPE
4872 && TREE_CODE (in_type) == FUNCTION_TYPE)
4873 added |= (TYPE_QUALS_NO_ADDR_SPACE (in_type)
4874 & ~TYPE_QUALS_NO_ADDR_SPACE (in_otype));
4875 else
4876 discarded |= (TYPE_QUALS_NO_ADDR_SPACE (in_otype)
4877 & ~TYPE_QUALS_NO_ADDR_SPACE (in_type));
4879 while (TREE_CODE (in_type) == POINTER_TYPE
4880 && TREE_CODE (in_otype) == POINTER_TYPE);
4882 if (added)
4883 warning_at (loc, OPT_Wcast_qual,
4884 "cast adds %q#v qualifier to function type", added);
4886 if (discarded)
4887 /* There are qualifiers present in IN_OTYPE that are not present
4888 in IN_TYPE. */
4889 warning_at (loc, OPT_Wcast_qual,
4890 "cast discards %qv qualifier from pointer target type",
4891 discarded);
4893 if (added || discarded)
4894 return;
4896 /* A cast from **T to const **T is unsafe, because it can cause a
4897 const value to be changed with no additional warning. We only
4898 issue this warning if T is the same on both sides, and we only
4899 issue the warning if there are the same number of pointers on
4900 both sides, as otherwise the cast is clearly unsafe anyhow. A
4901 cast is unsafe when a qualifier is added at one level and const
4902 is not present at all outer levels.
4904 To issue this warning, we check at each level whether the cast
4905 adds new qualifiers not already seen. We don't need to special
4906 case function types, as they won't have the same
4907 TYPE_MAIN_VARIANT. */
4909 if (TYPE_MAIN_VARIANT (in_type) != TYPE_MAIN_VARIANT (in_otype))
4910 return;
4911 if (TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE)
4912 return;
4914 in_type = type;
4915 in_otype = otype;
4916 is_const = TYPE_READONLY (TREE_TYPE (in_type));
4919 in_type = TREE_TYPE (in_type);
4920 in_otype = TREE_TYPE (in_otype);
4921 if ((TYPE_QUALS (in_type) &~ TYPE_QUALS (in_otype)) != 0
4922 && !is_const)
4924 warning_at (loc, OPT_Wcast_qual,
4925 "to be safe all intermediate pointers in cast from "
4926 "%qT to %qT must be %<const%> qualified",
4927 otype, type);
4928 break;
4930 if (is_const)
4931 is_const = TYPE_READONLY (in_type);
4933 while (TREE_CODE (in_type) == POINTER_TYPE);
4936 /* Build an expression representing a cast to type TYPE of expression EXPR.
4937 LOC is the location of the cast-- typically the open paren of the cast. */
4939 tree
4940 build_c_cast (location_t loc, tree type, tree expr)
4942 tree value;
4944 if (TREE_CODE (expr) == EXCESS_PRECISION_EXPR)
4945 expr = TREE_OPERAND (expr, 0);
4947 value = expr;
4949 if (type == error_mark_node || expr == error_mark_node)
4950 return error_mark_node;
4952 /* The ObjC front-end uses TYPE_MAIN_VARIANT to tie together types differing
4953 only in <protocol> qualifications. But when constructing cast expressions,
4954 the protocols do matter and must be kept around. */
4955 if (objc_is_object_ptr (type) && objc_is_object_ptr (TREE_TYPE (expr)))
4956 return build1 (NOP_EXPR, type, expr);
4958 type = TYPE_MAIN_VARIANT (type);
4960 if (TREE_CODE (type) == ARRAY_TYPE)
4962 error_at (loc, "cast specifies array type");
4963 return error_mark_node;
4966 if (TREE_CODE (type) == FUNCTION_TYPE)
4968 error_at (loc, "cast specifies function type");
4969 return error_mark_node;
4972 if (!VOID_TYPE_P (type))
4974 value = require_complete_type (value);
4975 if (value == error_mark_node)
4976 return error_mark_node;
4979 if (type == TYPE_MAIN_VARIANT (TREE_TYPE (value)))
4981 if (TREE_CODE (type) == RECORD_TYPE
4982 || TREE_CODE (type) == UNION_TYPE)
4983 pedwarn (loc, OPT_Wpedantic,
4984 "ISO C forbids casting nonscalar to the same type");
4986 else if (TREE_CODE (type) == UNION_TYPE)
4988 tree field;
4990 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
4991 if (TREE_TYPE (field) != error_mark_node
4992 && comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (field)),
4993 TYPE_MAIN_VARIANT (TREE_TYPE (value))))
4994 break;
4996 if (field)
4998 tree t;
4999 bool maybe_const = true;
5001 pedwarn (loc, OPT_Wpedantic, "ISO C forbids casts to union type");
5002 t = c_fully_fold (value, false, &maybe_const);
5003 t = build_constructor_single (type, field, t);
5004 if (!maybe_const)
5005 t = c_wrap_maybe_const (t, true);
5006 t = digest_init (loc, type, t,
5007 NULL_TREE, false, true, 0);
5008 TREE_CONSTANT (t) = TREE_CONSTANT (value);
5009 return t;
5011 error_at (loc, "cast to union type from type not present in union");
5012 return error_mark_node;
5014 else
5016 tree otype, ovalue;
5018 if (type == void_type_node)
5020 tree t = build1 (CONVERT_EXPR, type, value);
5021 SET_EXPR_LOCATION (t, loc);
5022 return t;
5025 otype = TREE_TYPE (value);
5027 /* Optionally warn about potentially worrisome casts. */
5028 if (warn_cast_qual
5029 && TREE_CODE (type) == POINTER_TYPE
5030 && TREE_CODE (otype) == POINTER_TYPE)
5031 handle_warn_cast_qual (loc, type, otype);
5033 /* Warn about conversions between pointers to disjoint
5034 address spaces. */
5035 if (TREE_CODE (type) == POINTER_TYPE
5036 && TREE_CODE (otype) == POINTER_TYPE
5037 && !null_pointer_constant_p (value))
5039 addr_space_t as_to = TYPE_ADDR_SPACE (TREE_TYPE (type));
5040 addr_space_t as_from = TYPE_ADDR_SPACE (TREE_TYPE (otype));
5041 addr_space_t as_common;
5043 if (!addr_space_superset (as_to, as_from, &as_common))
5045 if (ADDR_SPACE_GENERIC_P (as_from))
5046 warning_at (loc, 0, "cast to %s address space pointer "
5047 "from disjoint generic address space pointer",
5048 c_addr_space_name (as_to));
5050 else if (ADDR_SPACE_GENERIC_P (as_to))
5051 warning_at (loc, 0, "cast to generic address space pointer "
5052 "from disjoint %s address space pointer",
5053 c_addr_space_name (as_from));
5055 else
5056 warning_at (loc, 0, "cast to %s address space pointer "
5057 "from disjoint %s address space pointer",
5058 c_addr_space_name (as_to),
5059 c_addr_space_name (as_from));
5063 /* Warn about possible alignment problems. */
5064 if (STRICT_ALIGNMENT
5065 && TREE_CODE (type) == POINTER_TYPE
5066 && TREE_CODE (otype) == POINTER_TYPE
5067 && TREE_CODE (TREE_TYPE (otype)) != VOID_TYPE
5068 && TREE_CODE (TREE_TYPE (otype)) != FUNCTION_TYPE
5069 /* Don't warn about opaque types, where the actual alignment
5070 restriction is unknown. */
5071 && !((TREE_CODE (TREE_TYPE (otype)) == UNION_TYPE
5072 || TREE_CODE (TREE_TYPE (otype)) == RECORD_TYPE)
5073 && TYPE_MODE (TREE_TYPE (otype)) == VOIDmode)
5074 && TYPE_ALIGN (TREE_TYPE (type)) > TYPE_ALIGN (TREE_TYPE (otype)))
5075 warning_at (loc, OPT_Wcast_align,
5076 "cast increases required alignment of target type");
5078 if (TREE_CODE (type) == INTEGER_TYPE
5079 && TREE_CODE (otype) == POINTER_TYPE
5080 && TYPE_PRECISION (type) != TYPE_PRECISION (otype))
5081 /* Unlike conversion of integers to pointers, where the
5082 warning is disabled for converting constants because
5083 of cases such as SIG_*, warn about converting constant
5084 pointers to integers. In some cases it may cause unwanted
5085 sign extension, and a warning is appropriate. */
5086 warning_at (loc, OPT_Wpointer_to_int_cast,
5087 "cast from pointer to integer of different size");
5089 if (TREE_CODE (value) == CALL_EXPR
5090 && TREE_CODE (type) != TREE_CODE (otype))
5091 warning_at (loc, OPT_Wbad_function_cast,
5092 "cast from function call of type %qT "
5093 "to non-matching type %qT", otype, type);
5095 if (TREE_CODE (type) == POINTER_TYPE
5096 && TREE_CODE (otype) == INTEGER_TYPE
5097 && TYPE_PRECISION (type) != TYPE_PRECISION (otype)
5098 /* Don't warn about converting any constant. */
5099 && !TREE_CONSTANT (value))
5100 warning_at (loc,
5101 OPT_Wint_to_pointer_cast, "cast to pointer from integer "
5102 "of different size");
5104 if (warn_strict_aliasing <= 2)
5105 strict_aliasing_warning (otype, type, expr);
5107 /* If pedantic, warn for conversions between function and object
5108 pointer types, except for converting a null pointer constant
5109 to function pointer type. */
5110 if (pedantic
5111 && TREE_CODE (type) == POINTER_TYPE
5112 && TREE_CODE (otype) == POINTER_TYPE
5113 && TREE_CODE (TREE_TYPE (otype)) == FUNCTION_TYPE
5114 && TREE_CODE (TREE_TYPE (type)) != FUNCTION_TYPE)
5115 pedwarn (loc, OPT_Wpedantic, "ISO C forbids "
5116 "conversion of function pointer to object pointer type");
5118 if (pedantic
5119 && TREE_CODE (type) == POINTER_TYPE
5120 && TREE_CODE (otype) == POINTER_TYPE
5121 && TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE
5122 && TREE_CODE (TREE_TYPE (otype)) != FUNCTION_TYPE
5123 && !null_pointer_constant_p (value))
5124 pedwarn (loc, OPT_Wpedantic, "ISO C forbids "
5125 "conversion of object pointer to function pointer type");
5127 ovalue = value;
5128 value = convert (type, value);
5130 /* Ignore any integer overflow caused by the cast. */
5131 if (TREE_CODE (value) == INTEGER_CST && !FLOAT_TYPE_P (otype))
5133 if (CONSTANT_CLASS_P (ovalue) && TREE_OVERFLOW (ovalue))
5135 if (!TREE_OVERFLOW (value))
5137 /* Avoid clobbering a shared constant. */
5138 value = copy_node (value);
5139 TREE_OVERFLOW (value) = TREE_OVERFLOW (ovalue);
5142 else if (TREE_OVERFLOW (value))
5143 /* Reset VALUE's overflow flags, ensuring constant sharing. */
5144 value = wide_int_to_tree (TREE_TYPE (value), value);
5148 /* Don't let a cast be an lvalue. */
5149 if (value == expr)
5150 value = non_lvalue_loc (loc, value);
5152 /* Don't allow the results of casting to floating-point or complex
5153 types be confused with actual constants, or casts involving
5154 integer and pointer types other than direct integer-to-integer
5155 and integer-to-pointer be confused with integer constant
5156 expressions and null pointer constants. */
5157 if (TREE_CODE (value) == REAL_CST
5158 || TREE_CODE (value) == COMPLEX_CST
5159 || (TREE_CODE (value) == INTEGER_CST
5160 && !((TREE_CODE (expr) == INTEGER_CST
5161 && INTEGRAL_TYPE_P (TREE_TYPE (expr)))
5162 || TREE_CODE (expr) == REAL_CST
5163 || TREE_CODE (expr) == COMPLEX_CST)))
5164 value = build1 (NOP_EXPR, type, value);
5166 if (CAN_HAVE_LOCATION_P (value))
5167 SET_EXPR_LOCATION (value, loc);
5168 return value;
5171 /* Interpret a cast of expression EXPR to type TYPE. LOC is the
5172 location of the open paren of the cast, or the position of the cast
5173 expr. */
5174 tree
5175 c_cast_expr (location_t loc, struct c_type_name *type_name, tree expr)
5177 tree type;
5178 tree type_expr = NULL_TREE;
5179 bool type_expr_const = true;
5180 tree ret;
5181 int saved_wsp = warn_strict_prototypes;
5183 /* This avoids warnings about unprototyped casts on
5184 integers. E.g. "#define SIG_DFL (void(*)())0". */
5185 if (TREE_CODE (expr) == INTEGER_CST)
5186 warn_strict_prototypes = 0;
5187 type = groktypename (type_name, &type_expr, &type_expr_const);
5188 warn_strict_prototypes = saved_wsp;
5190 ret = build_c_cast (loc, type, expr);
5191 if (type_expr)
5193 bool inner_expr_const = true;
5194 ret = c_fully_fold (ret, require_constant_value, &inner_expr_const);
5195 ret = build2 (C_MAYBE_CONST_EXPR, TREE_TYPE (ret), type_expr, ret);
5196 C_MAYBE_CONST_EXPR_NON_CONST (ret) = !(type_expr_const
5197 && inner_expr_const);
5198 SET_EXPR_LOCATION (ret, loc);
5201 if (CAN_HAVE_LOCATION_P (ret) && !EXPR_HAS_LOCATION (ret))
5202 SET_EXPR_LOCATION (ret, loc);
5204 /* C++ does not permits types to be defined in a cast, but it
5205 allows references to incomplete types. */
5206 if (warn_cxx_compat && type_name->specs->typespec_kind == ctsk_tagdef)
5207 warning_at (loc, OPT_Wc___compat,
5208 "defining a type in a cast is invalid in C++");
5210 return ret;
5213 /* Build an assignment expression of lvalue LHS from value RHS.
5214 If LHS_ORIGTYPE is not NULL, it is the original type of LHS, which
5215 may differ from TREE_TYPE (LHS) for an enum bitfield.
5216 MODIFYCODE is the code for a binary operator that we use
5217 to combine the old value of LHS with RHS to get the new value.
5218 Or else MODIFYCODE is NOP_EXPR meaning do a simple assignment.
5219 If RHS_ORIGTYPE is not NULL_TREE, it is the original type of RHS,
5220 which may differ from TREE_TYPE (RHS) for an enum value.
5222 LOCATION is the location of the MODIFYCODE operator.
5223 RHS_LOC is the location of the RHS. */
5225 tree
5226 build_modify_expr (location_t location, tree lhs, tree lhs_origtype,
5227 enum tree_code modifycode,
5228 location_t rhs_loc, tree rhs, tree rhs_origtype)
5230 tree result;
5231 tree newrhs;
5232 tree rhseval = NULL_TREE;
5233 tree rhs_semantic_type = NULL_TREE;
5234 tree lhstype = TREE_TYPE (lhs);
5235 tree olhstype = lhstype;
5236 bool npc;
5237 bool is_atomic_op;
5239 /* Types that aren't fully specified cannot be used in assignments. */
5240 lhs = require_complete_type (lhs);
5242 /* Avoid duplicate error messages from operands that had errors. */
5243 if (TREE_CODE (lhs) == ERROR_MARK || TREE_CODE (rhs) == ERROR_MARK)
5244 return error_mark_node;
5246 /* Ensure an error for assigning a non-lvalue array to an array in
5247 C90. */
5248 if (TREE_CODE (lhstype) == ARRAY_TYPE)
5250 error_at (location, "assignment to expression with array type");
5251 return error_mark_node;
5254 /* For ObjC properties, defer this check. */
5255 if (!objc_is_property_ref (lhs) && !lvalue_or_else (location, lhs, lv_assign))
5256 return error_mark_node;
5258 is_atomic_op = really_atomic_lvalue (lhs);
5260 if (TREE_CODE (rhs) == EXCESS_PRECISION_EXPR)
5262 rhs_semantic_type = TREE_TYPE (rhs);
5263 rhs = TREE_OPERAND (rhs, 0);
5266 newrhs = rhs;
5268 if (TREE_CODE (lhs) == C_MAYBE_CONST_EXPR)
5270 tree inner = build_modify_expr (location, C_MAYBE_CONST_EXPR_EXPR (lhs),
5271 lhs_origtype, modifycode, rhs_loc, rhs,
5272 rhs_origtype);
5273 if (inner == error_mark_node)
5274 return error_mark_node;
5275 result = build2 (C_MAYBE_CONST_EXPR, TREE_TYPE (inner),
5276 C_MAYBE_CONST_EXPR_PRE (lhs), inner);
5277 gcc_assert (!C_MAYBE_CONST_EXPR_INT_OPERANDS (lhs));
5278 C_MAYBE_CONST_EXPR_NON_CONST (result) = 1;
5279 protected_set_expr_location (result, location);
5280 return result;
5283 /* If a binary op has been requested, combine the old LHS value with the RHS
5284 producing the value we should actually store into the LHS. */
5286 if (modifycode != NOP_EXPR)
5288 lhs = c_fully_fold (lhs, false, NULL);
5289 lhs = stabilize_reference (lhs);
5291 /* Construct the RHS for any non-atomic compound assignemnt. */
5292 if (!is_atomic_op)
5294 /* If in LHS op= RHS the RHS has side-effects, ensure they
5295 are preevaluated before the rest of the assignment expression's
5296 side-effects, because RHS could contain e.g. function calls
5297 that modify LHS. */
5298 if (TREE_SIDE_EFFECTS (rhs))
5300 newrhs = in_late_binary_op ? save_expr (rhs) : c_save_expr (rhs);
5301 rhseval = newrhs;
5303 newrhs = build_binary_op (location,
5304 modifycode, lhs, newrhs, 1);
5306 /* The original type of the right hand side is no longer
5307 meaningful. */
5308 rhs_origtype = NULL_TREE;
5312 if (c_dialect_objc ())
5314 /* Check if we are modifying an Objective-C property reference;
5315 if so, we need to generate setter calls. */
5316 result = objc_maybe_build_modify_expr (lhs, newrhs);
5317 if (result)
5318 goto return_result;
5320 /* Else, do the check that we postponed for Objective-C. */
5321 if (!lvalue_or_else (location, lhs, lv_assign))
5322 return error_mark_node;
5325 /* Give an error for storing in something that is 'const'. */
5327 if (TYPE_READONLY (lhstype)
5328 || ((TREE_CODE (lhstype) == RECORD_TYPE
5329 || TREE_CODE (lhstype) == UNION_TYPE)
5330 && C_TYPE_FIELDS_READONLY (lhstype)))
5332 readonly_error (location, lhs, lv_assign);
5333 return error_mark_node;
5335 else if (TREE_READONLY (lhs))
5336 readonly_warning (lhs, lv_assign);
5338 /* If storing into a structure or union member,
5339 it has probably been given type `int'.
5340 Compute the type that would go with
5341 the actual amount of storage the member occupies. */
5343 if (TREE_CODE (lhs) == COMPONENT_REF
5344 && (TREE_CODE (lhstype) == INTEGER_TYPE
5345 || TREE_CODE (lhstype) == BOOLEAN_TYPE
5346 || TREE_CODE (lhstype) == REAL_TYPE
5347 || TREE_CODE (lhstype) == ENUMERAL_TYPE))
5348 lhstype = TREE_TYPE (get_unwidened (lhs, 0));
5350 /* If storing in a field that is in actuality a short or narrower than one,
5351 we must store in the field in its actual type. */
5353 if (lhstype != TREE_TYPE (lhs))
5355 lhs = copy_node (lhs);
5356 TREE_TYPE (lhs) = lhstype;
5359 /* Issue -Wc++-compat warnings about an assignment to an enum type
5360 when LHS does not have its original type. This happens for,
5361 e.g., an enum bitfield in a struct. */
5362 if (warn_cxx_compat
5363 && lhs_origtype != NULL_TREE
5364 && lhs_origtype != lhstype
5365 && TREE_CODE (lhs_origtype) == ENUMERAL_TYPE)
5367 tree checktype = (rhs_origtype != NULL_TREE
5368 ? rhs_origtype
5369 : TREE_TYPE (rhs));
5370 if (checktype != error_mark_node
5371 && (TYPE_MAIN_VARIANT (checktype) != TYPE_MAIN_VARIANT (lhs_origtype)
5372 || (is_atomic_op && modifycode != NOP_EXPR)))
5373 warning_at (location, OPT_Wc___compat,
5374 "enum conversion in assignment is invalid in C++");
5377 /* If the lhs is atomic, remove that qualifier. */
5378 if (is_atomic_op)
5380 lhstype = build_qualified_type (lhstype,
5381 (TYPE_QUALS (lhstype)
5382 & ~TYPE_QUAL_ATOMIC));
5383 olhstype = build_qualified_type (olhstype,
5384 (TYPE_QUALS (lhstype)
5385 & ~TYPE_QUAL_ATOMIC));
5388 /* Convert new value to destination type. Fold it first, then
5389 restore any excess precision information, for the sake of
5390 conversion warnings. */
5392 if (!(is_atomic_op && modifycode != NOP_EXPR))
5394 npc = null_pointer_constant_p (newrhs);
5395 newrhs = c_fully_fold (newrhs, false, NULL);
5396 if (rhs_semantic_type)
5397 newrhs = build1 (EXCESS_PRECISION_EXPR, rhs_semantic_type, newrhs);
5398 newrhs = convert_for_assignment (location, rhs_loc, lhstype, newrhs,
5399 rhs_origtype, ic_assign, npc,
5400 NULL_TREE, NULL_TREE, 0);
5401 if (TREE_CODE (newrhs) == ERROR_MARK)
5402 return error_mark_node;
5405 /* Emit ObjC write barrier, if necessary. */
5406 if (c_dialect_objc () && flag_objc_gc)
5408 result = objc_generate_write_barrier (lhs, modifycode, newrhs);
5409 if (result)
5411 protected_set_expr_location (result, location);
5412 goto return_result;
5416 /* Scan operands. */
5418 if (is_atomic_op)
5419 result = build_atomic_assign (location, lhs, modifycode, newrhs, false);
5420 else
5422 result = build2 (MODIFY_EXPR, lhstype, lhs, newrhs);
5423 TREE_SIDE_EFFECTS (result) = 1;
5424 protected_set_expr_location (result, location);
5427 /* If we got the LHS in a different type for storing in,
5428 convert the result back to the nominal type of LHS
5429 so that the value we return always has the same type
5430 as the LHS argument. */
5432 if (olhstype == TREE_TYPE (result))
5433 goto return_result;
5435 result = convert_for_assignment (location, rhs_loc, olhstype, result,
5436 rhs_origtype, ic_assign, false, NULL_TREE,
5437 NULL_TREE, 0);
5438 protected_set_expr_location (result, location);
5440 return_result:
5441 if (rhseval)
5442 result = build2 (COMPOUND_EXPR, TREE_TYPE (result), rhseval, result);
5443 return result;
5446 /* Return whether STRUCT_TYPE has an anonymous field with type TYPE.
5447 This is used to implement -fplan9-extensions. */
5449 static bool
5450 find_anonymous_field_with_type (tree struct_type, tree type)
5452 tree field;
5453 bool found;
5455 gcc_assert (TREE_CODE (struct_type) == RECORD_TYPE
5456 || TREE_CODE (struct_type) == UNION_TYPE);
5457 found = false;
5458 for (field = TYPE_FIELDS (struct_type);
5459 field != NULL_TREE;
5460 field = TREE_CHAIN (field))
5462 tree fieldtype = (TYPE_ATOMIC (TREE_TYPE (field))
5463 ? c_build_qualified_type (TREE_TYPE (field),
5464 TYPE_QUAL_ATOMIC)
5465 : TYPE_MAIN_VARIANT (TREE_TYPE (field)));
5466 if (DECL_NAME (field) == NULL
5467 && comptypes (type, fieldtype))
5469 if (found)
5470 return false;
5471 found = true;
5473 else if (DECL_NAME (field) == NULL
5474 && (TREE_CODE (TREE_TYPE (field)) == RECORD_TYPE
5475 || TREE_CODE (TREE_TYPE (field)) == UNION_TYPE)
5476 && find_anonymous_field_with_type (TREE_TYPE (field), type))
5478 if (found)
5479 return false;
5480 found = true;
5483 return found;
5486 /* RHS is an expression whose type is pointer to struct. If there is
5487 an anonymous field in RHS with type TYPE, then return a pointer to
5488 that field in RHS. This is used with -fplan9-extensions. This
5489 returns NULL if no conversion could be found. */
5491 static tree
5492 convert_to_anonymous_field (location_t location, tree type, tree rhs)
5494 tree rhs_struct_type, lhs_main_type;
5495 tree field, found_field;
5496 bool found_sub_field;
5497 tree ret;
5499 gcc_assert (POINTER_TYPE_P (TREE_TYPE (rhs)));
5500 rhs_struct_type = TREE_TYPE (TREE_TYPE (rhs));
5501 gcc_assert (TREE_CODE (rhs_struct_type) == RECORD_TYPE
5502 || TREE_CODE (rhs_struct_type) == UNION_TYPE);
5504 gcc_assert (POINTER_TYPE_P (type));
5505 lhs_main_type = (TYPE_ATOMIC (TREE_TYPE (type))
5506 ? c_build_qualified_type (TREE_TYPE (type),
5507 TYPE_QUAL_ATOMIC)
5508 : TYPE_MAIN_VARIANT (TREE_TYPE (type)));
5510 found_field = NULL_TREE;
5511 found_sub_field = false;
5512 for (field = TYPE_FIELDS (rhs_struct_type);
5513 field != NULL_TREE;
5514 field = TREE_CHAIN (field))
5516 if (DECL_NAME (field) != NULL_TREE
5517 || (TREE_CODE (TREE_TYPE (field)) != RECORD_TYPE
5518 && TREE_CODE (TREE_TYPE (field)) != UNION_TYPE))
5519 continue;
5520 tree fieldtype = (TYPE_ATOMIC (TREE_TYPE (field))
5521 ? c_build_qualified_type (TREE_TYPE (field),
5522 TYPE_QUAL_ATOMIC)
5523 : TYPE_MAIN_VARIANT (TREE_TYPE (field)));
5524 if (comptypes (lhs_main_type, fieldtype))
5526 if (found_field != NULL_TREE)
5527 return NULL_TREE;
5528 found_field = field;
5530 else if (find_anonymous_field_with_type (TREE_TYPE (field),
5531 lhs_main_type))
5533 if (found_field != NULL_TREE)
5534 return NULL_TREE;
5535 found_field = field;
5536 found_sub_field = true;
5540 if (found_field == NULL_TREE)
5541 return NULL_TREE;
5543 ret = fold_build3_loc (location, COMPONENT_REF, TREE_TYPE (found_field),
5544 build_fold_indirect_ref (rhs), found_field,
5545 NULL_TREE);
5546 ret = build_fold_addr_expr_loc (location, ret);
5548 if (found_sub_field)
5550 ret = convert_to_anonymous_field (location, type, ret);
5551 gcc_assert (ret != NULL_TREE);
5554 return ret;
5557 /* Issue an error message for a bad initializer component.
5558 GMSGID identifies the message.
5559 The component name is taken from the spelling stack. */
5561 static void
5562 error_init (location_t loc, const char *gmsgid)
5564 char *ofwhat;
5566 /* The gmsgid may be a format string with %< and %>. */
5567 error_at (loc, gmsgid);
5568 ofwhat = print_spelling ((char *) alloca (spelling_length () + 1));
5569 if (*ofwhat)
5570 error_at (loc, "(near initialization for %qs)", ofwhat);
5573 /* Issue a pedantic warning for a bad initializer component. OPT is
5574 the option OPT_* (from options.h) controlling this warning or 0 if
5575 it is unconditionally given. GMSGID identifies the message. The
5576 component name is taken from the spelling stack. */
5578 static void
5579 pedwarn_init (location_t location, int opt, const char *gmsgid)
5581 char *ofwhat;
5583 /* The gmsgid may be a format string with %< and %>. */
5584 pedwarn (location, opt, gmsgid);
5585 ofwhat = print_spelling ((char *) alloca (spelling_length () + 1));
5586 if (*ofwhat)
5587 pedwarn (location, opt, "(near initialization for %qs)", ofwhat);
5590 /* Issue a warning for a bad initializer component.
5592 OPT is the OPT_W* value corresponding to the warning option that
5593 controls this warning. GMSGID identifies the message. The
5594 component name is taken from the spelling stack. */
5596 static void
5597 warning_init (location_t loc, int opt, const char *gmsgid)
5599 char *ofwhat;
5601 /* The gmsgid may be a format string with %< and %>. */
5602 warning_at (loc, opt, gmsgid);
5603 ofwhat = print_spelling ((char *) alloca (spelling_length () + 1));
5604 if (*ofwhat)
5605 warning_at (loc, opt, "(near initialization for %qs)", ofwhat);
5608 /* If TYPE is an array type and EXPR is a parenthesized string
5609 constant, warn if pedantic that EXPR is being used to initialize an
5610 object of type TYPE. */
5612 void
5613 maybe_warn_string_init (location_t loc, tree type, struct c_expr expr)
5615 if (pedantic
5616 && TREE_CODE (type) == ARRAY_TYPE
5617 && TREE_CODE (expr.value) == STRING_CST
5618 && expr.original_code != STRING_CST)
5619 pedwarn_init (loc, OPT_Wpedantic,
5620 "array initialized from parenthesized string constant");
5623 /* Convert value RHS to type TYPE as preparation for an assignment to
5624 an lvalue of type TYPE. If ORIGTYPE is not NULL_TREE, it is the
5625 original type of RHS; this differs from TREE_TYPE (RHS) for enum
5626 types. NULL_POINTER_CONSTANT says whether RHS was a null pointer
5627 constant before any folding.
5628 The real work of conversion is done by `convert'.
5629 The purpose of this function is to generate error messages
5630 for assignments that are not allowed in C.
5631 ERRTYPE says whether it is argument passing, assignment,
5632 initialization or return.
5634 LOCATION is the location of the assignment, EXPR_LOC is the location of
5635 the RHS or, for a function, location of an argument.
5636 FUNCTION is a tree for the function being called.
5637 PARMNUM is the number of the argument, for printing in error messages. */
5639 static tree
5640 convert_for_assignment (location_t location, location_t expr_loc, tree type,
5641 tree rhs, tree origtype, enum impl_conv errtype,
5642 bool null_pointer_constant, tree fundecl,
5643 tree function, int parmnum)
5645 enum tree_code codel = TREE_CODE (type);
5646 tree orig_rhs = rhs;
5647 tree rhstype;
5648 enum tree_code coder;
5649 tree rname = NULL_TREE;
5650 bool objc_ok = false;
5652 if (errtype == ic_argpass)
5654 tree selector;
5655 /* Change pointer to function to the function itself for
5656 diagnostics. */
5657 if (TREE_CODE (function) == ADDR_EXPR
5658 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
5659 function = TREE_OPERAND (function, 0);
5661 /* Handle an ObjC selector specially for diagnostics. */
5662 selector = objc_message_selector ();
5663 rname = function;
5664 if (selector && parmnum > 2)
5666 rname = selector;
5667 parmnum -= 2;
5671 /* This macro is used to emit diagnostics to ensure that all format
5672 strings are complete sentences, visible to gettext and checked at
5673 compile time. */
5674 #define WARN_FOR_ASSIGNMENT(LOCATION, PLOC, OPT, AR, AS, IN, RE) \
5675 do { \
5676 switch (errtype) \
5678 case ic_argpass: \
5679 if (pedwarn (PLOC, OPT, AR, parmnum, rname)) \
5680 inform ((fundecl && !DECL_IS_BUILTIN (fundecl)) \
5681 ? DECL_SOURCE_LOCATION (fundecl) : PLOC, \
5682 "expected %qT but argument is of type %qT", \
5683 type, rhstype); \
5684 break; \
5685 case ic_assign: \
5686 pedwarn (LOCATION, OPT, AS); \
5687 break; \
5688 case ic_init: \
5689 pedwarn_init (LOCATION, OPT, IN); \
5690 break; \
5691 case ic_return: \
5692 pedwarn (LOCATION, OPT, RE); \
5693 break; \
5694 default: \
5695 gcc_unreachable (); \
5697 } while (0)
5699 /* This macro is used to emit diagnostics to ensure that all format
5700 strings are complete sentences, visible to gettext and checked at
5701 compile time. It is the same as WARN_FOR_ASSIGNMENT but with an
5702 extra parameter to enumerate qualifiers. */
5704 #define WARN_FOR_QUALIFIERS(LOCATION, PLOC, OPT, AR, AS, IN, RE, QUALS) \
5705 do { \
5706 switch (errtype) \
5708 case ic_argpass: \
5709 if (pedwarn (PLOC, OPT, AR, parmnum, rname, QUALS)) \
5710 inform ((fundecl && !DECL_IS_BUILTIN (fundecl)) \
5711 ? DECL_SOURCE_LOCATION (fundecl) : PLOC, \
5712 "expected %qT but argument is of type %qT", \
5713 type, rhstype); \
5714 break; \
5715 case ic_assign: \
5716 pedwarn (LOCATION, OPT, AS, QUALS); \
5717 break; \
5718 case ic_init: \
5719 pedwarn (LOCATION, OPT, IN, QUALS); \
5720 break; \
5721 case ic_return: \
5722 pedwarn (LOCATION, OPT, RE, QUALS); \
5723 break; \
5724 default: \
5725 gcc_unreachable (); \
5727 } while (0)
5729 if (TREE_CODE (rhs) == EXCESS_PRECISION_EXPR)
5730 rhs = TREE_OPERAND (rhs, 0);
5732 rhstype = TREE_TYPE (rhs);
5733 coder = TREE_CODE (rhstype);
5735 if (coder == ERROR_MARK)
5736 return error_mark_node;
5738 if (c_dialect_objc ())
5740 int parmno;
5742 switch (errtype)
5744 case ic_return:
5745 parmno = 0;
5746 break;
5748 case ic_assign:
5749 parmno = -1;
5750 break;
5752 case ic_init:
5753 parmno = -2;
5754 break;
5756 default:
5757 parmno = parmnum;
5758 break;
5761 objc_ok = objc_compare_types (type, rhstype, parmno, rname);
5764 if (warn_cxx_compat)
5766 tree checktype = origtype != NULL_TREE ? origtype : rhstype;
5767 if (checktype != error_mark_node
5768 && TREE_CODE (type) == ENUMERAL_TYPE
5769 && TYPE_MAIN_VARIANT (checktype) != TYPE_MAIN_VARIANT (type))
5771 WARN_FOR_ASSIGNMENT (location, expr_loc, OPT_Wc___compat,
5772 G_("enum conversion when passing argument "
5773 "%d of %qE is invalid in C++"),
5774 G_("enum conversion in assignment is "
5775 "invalid in C++"),
5776 G_("enum conversion in initialization is "
5777 "invalid in C++"),
5778 G_("enum conversion in return is "
5779 "invalid in C++"));
5783 if (TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (rhstype))
5784 return rhs;
5786 if (coder == VOID_TYPE)
5788 /* Except for passing an argument to an unprototyped function,
5789 this is a constraint violation. When passing an argument to
5790 an unprototyped function, it is compile-time undefined;
5791 making it a constraint in that case was rejected in
5792 DR#252. */
5793 error_at (location, "void value not ignored as it ought to be");
5794 return error_mark_node;
5796 rhs = require_complete_type (rhs);
5797 if (rhs == error_mark_node)
5798 return error_mark_node;
5799 /* A non-reference type can convert to a reference. This handles
5800 va_start, va_copy and possibly port built-ins. */
5801 if (codel == REFERENCE_TYPE && coder != REFERENCE_TYPE)
5803 if (!lvalue_p (rhs))
5805 error_at (location, "cannot pass rvalue to reference parameter");
5806 return error_mark_node;
5808 if (!c_mark_addressable (rhs))
5809 return error_mark_node;
5810 rhs = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (rhs)), rhs);
5811 SET_EXPR_LOCATION (rhs, location);
5813 rhs = convert_for_assignment (location, expr_loc,
5814 build_pointer_type (TREE_TYPE (type)),
5815 rhs, origtype, errtype,
5816 null_pointer_constant, fundecl, function,
5817 parmnum);
5818 if (rhs == error_mark_node)
5819 return error_mark_node;
5821 rhs = build1 (NOP_EXPR, type, rhs);
5822 SET_EXPR_LOCATION (rhs, location);
5823 return rhs;
5825 /* Some types can interconvert without explicit casts. */
5826 else if (codel == VECTOR_TYPE && coder == VECTOR_TYPE
5827 && vector_types_convertible_p (type, TREE_TYPE (rhs), true))
5828 return convert (type, rhs);
5829 /* Arithmetic types all interconvert, and enum is treated like int. */
5830 else if ((codel == INTEGER_TYPE || codel == REAL_TYPE
5831 || codel == FIXED_POINT_TYPE
5832 || codel == ENUMERAL_TYPE || codel == COMPLEX_TYPE
5833 || codel == BOOLEAN_TYPE)
5834 && (coder == INTEGER_TYPE || coder == REAL_TYPE
5835 || coder == FIXED_POINT_TYPE
5836 || coder == ENUMERAL_TYPE || coder == COMPLEX_TYPE
5837 || coder == BOOLEAN_TYPE))
5839 tree ret;
5840 bool save = in_late_binary_op;
5841 if (codel == BOOLEAN_TYPE || codel == COMPLEX_TYPE)
5842 in_late_binary_op = true;
5843 ret = convert_and_check (expr_loc != UNKNOWN_LOCATION
5844 ? expr_loc : location, type, orig_rhs);
5845 if (codel == BOOLEAN_TYPE || codel == COMPLEX_TYPE)
5846 in_late_binary_op = save;
5847 return ret;
5850 /* Aggregates in different TUs might need conversion. */
5851 if ((codel == RECORD_TYPE || codel == UNION_TYPE)
5852 && codel == coder
5853 && comptypes (type, rhstype))
5854 return convert_and_check (expr_loc != UNKNOWN_LOCATION
5855 ? expr_loc : location, type, rhs);
5857 /* Conversion to a transparent union or record from its member types.
5858 This applies only to function arguments. */
5859 if (((codel == UNION_TYPE || codel == RECORD_TYPE)
5860 && TYPE_TRANSPARENT_AGGR (type))
5861 && errtype == ic_argpass)
5863 tree memb, marginal_memb = NULL_TREE;
5865 for (memb = TYPE_FIELDS (type); memb ; memb = DECL_CHAIN (memb))
5867 tree memb_type = TREE_TYPE (memb);
5869 if (comptypes (TYPE_MAIN_VARIANT (memb_type),
5870 TYPE_MAIN_VARIANT (rhstype)))
5871 break;
5873 if (TREE_CODE (memb_type) != POINTER_TYPE)
5874 continue;
5876 if (coder == POINTER_TYPE)
5878 tree ttl = TREE_TYPE (memb_type);
5879 tree ttr = TREE_TYPE (rhstype);
5881 /* Any non-function converts to a [const][volatile] void *
5882 and vice versa; otherwise, targets must be the same.
5883 Meanwhile, the lhs target must have all the qualifiers of
5884 the rhs. */
5885 if ((VOID_TYPE_P (ttl) && !TYPE_ATOMIC (ttl))
5886 || (VOID_TYPE_P (ttr) && !TYPE_ATOMIC (ttr))
5887 || comp_target_types (location, memb_type, rhstype))
5889 int lquals = TYPE_QUALS (ttl) & ~TYPE_QUAL_ATOMIC;
5890 int rquals = TYPE_QUALS (ttr) & ~TYPE_QUAL_ATOMIC;
5891 /* If this type won't generate any warnings, use it. */
5892 if (lquals == rquals
5893 || ((TREE_CODE (ttr) == FUNCTION_TYPE
5894 && TREE_CODE (ttl) == FUNCTION_TYPE)
5895 ? ((lquals | rquals) == rquals)
5896 : ((lquals | rquals) == lquals)))
5897 break;
5899 /* Keep looking for a better type, but remember this one. */
5900 if (!marginal_memb)
5901 marginal_memb = memb;
5905 /* Can convert integer zero to any pointer type. */
5906 if (null_pointer_constant)
5908 rhs = null_pointer_node;
5909 break;
5913 if (memb || marginal_memb)
5915 if (!memb)
5917 /* We have only a marginally acceptable member type;
5918 it needs a warning. */
5919 tree ttl = TREE_TYPE (TREE_TYPE (marginal_memb));
5920 tree ttr = TREE_TYPE (rhstype);
5922 /* Const and volatile mean something different for function
5923 types, so the usual warnings are not appropriate. */
5924 if (TREE_CODE (ttr) == FUNCTION_TYPE
5925 && TREE_CODE (ttl) == FUNCTION_TYPE)
5927 /* Because const and volatile on functions are
5928 restrictions that say the function will not do
5929 certain things, it is okay to use a const or volatile
5930 function where an ordinary one is wanted, but not
5931 vice-versa. */
5932 if (TYPE_QUALS_NO_ADDR_SPACE (ttl)
5933 & ~TYPE_QUALS_NO_ADDR_SPACE (ttr))
5934 WARN_FOR_QUALIFIERS (location, expr_loc,
5935 OPT_Wdiscarded_qualifiers,
5936 G_("passing argument %d of %qE "
5937 "makes %q#v qualified function "
5938 "pointer from unqualified"),
5939 G_("assignment makes %q#v qualified "
5940 "function pointer from "
5941 "unqualified"),
5942 G_("initialization makes %q#v qualified "
5943 "function pointer from "
5944 "unqualified"),
5945 G_("return makes %q#v qualified function "
5946 "pointer from unqualified"),
5947 TYPE_QUALS (ttl) & ~TYPE_QUALS (ttr));
5949 else if (TYPE_QUALS_NO_ADDR_SPACE (ttr)
5950 & ~TYPE_QUALS_NO_ADDR_SPACE (ttl))
5951 WARN_FOR_QUALIFIERS (location, expr_loc,
5952 OPT_Wdiscarded_qualifiers,
5953 G_("passing argument %d of %qE discards "
5954 "%qv qualifier from pointer target type"),
5955 G_("assignment discards %qv qualifier "
5956 "from pointer target type"),
5957 G_("initialization discards %qv qualifier "
5958 "from pointer target type"),
5959 G_("return discards %qv qualifier from "
5960 "pointer target type"),
5961 TYPE_QUALS (ttr) & ~TYPE_QUALS (ttl));
5963 memb = marginal_memb;
5966 if (!fundecl || !DECL_IN_SYSTEM_HEADER (fundecl))
5967 pedwarn (location, OPT_Wpedantic,
5968 "ISO C prohibits argument conversion to union type");
5970 rhs = fold_convert_loc (location, TREE_TYPE (memb), rhs);
5971 return build_constructor_single (type, memb, rhs);
5975 /* Conversions among pointers */
5976 else if ((codel == POINTER_TYPE || codel == REFERENCE_TYPE)
5977 && (coder == codel))
5979 tree ttl = TREE_TYPE (type);
5980 tree ttr = TREE_TYPE (rhstype);
5981 tree mvl = ttl;
5982 tree mvr = ttr;
5983 bool is_opaque_pointer;
5984 int target_cmp = 0; /* Cache comp_target_types () result. */
5985 addr_space_t asl;
5986 addr_space_t asr;
5988 if (TREE_CODE (mvl) != ARRAY_TYPE)
5989 mvl = (TYPE_ATOMIC (mvl)
5990 ? c_build_qualified_type (TYPE_MAIN_VARIANT (mvl),
5991 TYPE_QUAL_ATOMIC)
5992 : TYPE_MAIN_VARIANT (mvl));
5993 if (TREE_CODE (mvr) != ARRAY_TYPE)
5994 mvr = (TYPE_ATOMIC (mvr)
5995 ? c_build_qualified_type (TYPE_MAIN_VARIANT (mvr),
5996 TYPE_QUAL_ATOMIC)
5997 : TYPE_MAIN_VARIANT (mvr));
5998 /* Opaque pointers are treated like void pointers. */
5999 is_opaque_pointer = vector_targets_convertible_p (ttl, ttr);
6001 /* The Plan 9 compiler permits a pointer to a struct to be
6002 automatically converted into a pointer to an anonymous field
6003 within the struct. */
6004 if (flag_plan9_extensions
6005 && (TREE_CODE (mvl) == RECORD_TYPE || TREE_CODE(mvl) == UNION_TYPE)
6006 && (TREE_CODE (mvr) == RECORD_TYPE || TREE_CODE(mvr) == UNION_TYPE)
6007 && mvl != mvr)
6009 tree new_rhs = convert_to_anonymous_field (location, type, rhs);
6010 if (new_rhs != NULL_TREE)
6012 rhs = new_rhs;
6013 rhstype = TREE_TYPE (rhs);
6014 coder = TREE_CODE (rhstype);
6015 ttr = TREE_TYPE (rhstype);
6016 mvr = TYPE_MAIN_VARIANT (ttr);
6020 /* C++ does not allow the implicit conversion void* -> T*. However,
6021 for the purpose of reducing the number of false positives, we
6022 tolerate the special case of
6024 int *p = NULL;
6026 where NULL is typically defined in C to be '(void *) 0'. */
6027 if (VOID_TYPE_P (ttr) && rhs != null_pointer_node && !VOID_TYPE_P (ttl))
6028 warning_at (errtype == ic_argpass ? expr_loc : location,
6029 OPT_Wc___compat,
6030 "request for implicit conversion "
6031 "from %qT to %qT not permitted in C++", rhstype, type);
6033 /* See if the pointers point to incompatible address spaces. */
6034 asl = TYPE_ADDR_SPACE (ttl);
6035 asr = TYPE_ADDR_SPACE (ttr);
6036 if (!null_pointer_constant_p (rhs)
6037 && asr != asl && !targetm.addr_space.subset_p (asr, asl))
6039 switch (errtype)
6041 case ic_argpass:
6042 error_at (expr_loc, "passing argument %d of %qE from pointer to "
6043 "non-enclosed address space", parmnum, rname);
6044 break;
6045 case ic_assign:
6046 error_at (location, "assignment from pointer to "
6047 "non-enclosed address space");
6048 break;
6049 case ic_init:
6050 error_at (location, "initialization from pointer to "
6051 "non-enclosed address space");
6052 break;
6053 case ic_return:
6054 error_at (location, "return from pointer to "
6055 "non-enclosed address space");
6056 break;
6057 default:
6058 gcc_unreachable ();
6060 return error_mark_node;
6063 /* Check if the right-hand side has a format attribute but the
6064 left-hand side doesn't. */
6065 if (warn_suggest_attribute_format
6066 && check_missing_format_attribute (type, rhstype))
6068 switch (errtype)
6070 case ic_argpass:
6071 warning_at (expr_loc, OPT_Wsuggest_attribute_format,
6072 "argument %d of %qE might be "
6073 "a candidate for a format attribute",
6074 parmnum, rname);
6075 break;
6076 case ic_assign:
6077 warning_at (location, OPT_Wsuggest_attribute_format,
6078 "assignment left-hand side might be "
6079 "a candidate for a format attribute");
6080 break;
6081 case ic_init:
6082 warning_at (location, OPT_Wsuggest_attribute_format,
6083 "initialization left-hand side might be "
6084 "a candidate for a format attribute");
6085 break;
6086 case ic_return:
6087 warning_at (location, OPT_Wsuggest_attribute_format,
6088 "return type might be "
6089 "a candidate for a format attribute");
6090 break;
6091 default:
6092 gcc_unreachable ();
6096 /* Any non-function converts to a [const][volatile] void *
6097 and vice versa; otherwise, targets must be the same.
6098 Meanwhile, the lhs target must have all the qualifiers of the rhs. */
6099 if ((VOID_TYPE_P (ttl) && !TYPE_ATOMIC (ttl))
6100 || (VOID_TYPE_P (ttr) && !TYPE_ATOMIC (ttr))
6101 || (target_cmp = comp_target_types (location, type, rhstype))
6102 || is_opaque_pointer
6103 || ((c_common_unsigned_type (mvl)
6104 == c_common_unsigned_type (mvr))
6105 && (c_common_signed_type (mvl)
6106 == c_common_signed_type (mvr))
6107 && TYPE_ATOMIC (mvl) == TYPE_ATOMIC (mvr)))
6109 if (pedantic
6110 && ((VOID_TYPE_P (ttl) && TREE_CODE (ttr) == FUNCTION_TYPE)
6112 (VOID_TYPE_P (ttr)
6113 && !null_pointer_constant
6114 && TREE_CODE (ttl) == FUNCTION_TYPE)))
6115 WARN_FOR_ASSIGNMENT (location, expr_loc, OPT_Wpedantic,
6116 G_("ISO C forbids passing argument %d of "
6117 "%qE between function pointer "
6118 "and %<void *%>"),
6119 G_("ISO C forbids assignment between "
6120 "function pointer and %<void *%>"),
6121 G_("ISO C forbids initialization between "
6122 "function pointer and %<void *%>"),
6123 G_("ISO C forbids return between function "
6124 "pointer and %<void *%>"));
6125 /* Const and volatile mean something different for function types,
6126 so the usual warnings are not appropriate. */
6127 else if (TREE_CODE (ttr) != FUNCTION_TYPE
6128 && TREE_CODE (ttl) != FUNCTION_TYPE)
6130 /* Assignments between atomic and non-atomic objects are OK. */
6131 if (TYPE_QUALS_NO_ADDR_SPACE_NO_ATOMIC (ttr)
6132 & ~TYPE_QUALS_NO_ADDR_SPACE_NO_ATOMIC (ttl))
6134 WARN_FOR_QUALIFIERS (location, expr_loc,
6135 OPT_Wdiscarded_qualifiers,
6136 G_("passing argument %d of %qE discards "
6137 "%qv qualifier from pointer target type"),
6138 G_("assignment discards %qv qualifier "
6139 "from pointer target type"),
6140 G_("initialization discards %qv qualifier "
6141 "from pointer target type"),
6142 G_("return discards %qv qualifier from "
6143 "pointer target type"),
6144 TYPE_QUALS (ttr) & ~TYPE_QUALS (ttl));
6146 /* If this is not a case of ignoring a mismatch in signedness,
6147 no warning. */
6148 else if (VOID_TYPE_P (ttl) || VOID_TYPE_P (ttr)
6149 || target_cmp)
6151 /* If there is a mismatch, do warn. */
6152 else if (warn_pointer_sign)
6153 WARN_FOR_ASSIGNMENT (location, expr_loc, OPT_Wpointer_sign,
6154 G_("pointer targets in passing argument "
6155 "%d of %qE differ in signedness"),
6156 G_("pointer targets in assignment "
6157 "differ in signedness"),
6158 G_("pointer targets in initialization "
6159 "differ in signedness"),
6160 G_("pointer targets in return differ "
6161 "in signedness"));
6163 else if (TREE_CODE (ttl) == FUNCTION_TYPE
6164 && TREE_CODE (ttr) == FUNCTION_TYPE)
6166 /* Because const and volatile on functions are restrictions
6167 that say the function will not do certain things,
6168 it is okay to use a const or volatile function
6169 where an ordinary one is wanted, but not vice-versa. */
6170 if (TYPE_QUALS_NO_ADDR_SPACE (ttl)
6171 & ~TYPE_QUALS_NO_ADDR_SPACE (ttr))
6172 WARN_FOR_QUALIFIERS (location, expr_loc,
6173 OPT_Wdiscarded_qualifiers,
6174 G_("passing argument %d of %qE makes "
6175 "%q#v qualified function pointer "
6176 "from unqualified"),
6177 G_("assignment makes %q#v qualified function "
6178 "pointer from unqualified"),
6179 G_("initialization makes %q#v qualified "
6180 "function pointer from unqualified"),
6181 G_("return makes %q#v qualified function "
6182 "pointer from unqualified"),
6183 TYPE_QUALS (ttl) & ~TYPE_QUALS (ttr));
6186 else
6187 /* Avoid warning about the volatile ObjC EH puts on decls. */
6188 if (!objc_ok)
6189 WARN_FOR_ASSIGNMENT (location, expr_loc, 0,
6190 G_("passing argument %d of %qE from "
6191 "incompatible pointer type"),
6192 G_("assignment from incompatible pointer type"),
6193 G_("initialization from incompatible "
6194 "pointer type"),
6195 G_("return from incompatible pointer type"));
6197 return convert (type, rhs);
6199 else if (codel == POINTER_TYPE && coder == ARRAY_TYPE)
6201 /* ??? This should not be an error when inlining calls to
6202 unprototyped functions. */
6203 error_at (location, "invalid use of non-lvalue array");
6204 return error_mark_node;
6206 else if (codel == POINTER_TYPE && coder == INTEGER_TYPE)
6208 /* An explicit constant 0 can convert to a pointer,
6209 or one that results from arithmetic, even including
6210 a cast to integer type. */
6211 if (!null_pointer_constant)
6212 WARN_FOR_ASSIGNMENT (location, expr_loc, 0,
6213 G_("passing argument %d of %qE makes "
6214 "pointer from integer without a cast"),
6215 G_("assignment makes pointer from integer "
6216 "without a cast"),
6217 G_("initialization makes pointer from "
6218 "integer without a cast"),
6219 G_("return makes pointer from integer "
6220 "without a cast"));
6222 return convert (type, rhs);
6224 else if (codel == INTEGER_TYPE && coder == POINTER_TYPE)
6226 WARN_FOR_ASSIGNMENT (location, expr_loc, 0,
6227 G_("passing argument %d of %qE makes integer "
6228 "from pointer without a cast"),
6229 G_("assignment makes integer from pointer "
6230 "without a cast"),
6231 G_("initialization makes integer from pointer "
6232 "without a cast"),
6233 G_("return makes integer from pointer "
6234 "without a cast"));
6235 return convert (type, rhs);
6237 else if (codel == BOOLEAN_TYPE && coder == POINTER_TYPE)
6239 tree ret;
6240 bool save = in_late_binary_op;
6241 in_late_binary_op = true;
6242 ret = convert (type, rhs);
6243 in_late_binary_op = save;
6244 return ret;
6247 switch (errtype)
6249 case ic_argpass:
6250 error_at (expr_loc, "incompatible type for argument %d of %qE", parmnum,
6251 rname);
6252 inform ((fundecl && !DECL_IS_BUILTIN (fundecl))
6253 ? DECL_SOURCE_LOCATION (fundecl) : expr_loc,
6254 "expected %qT but argument is of type %qT", type, rhstype);
6255 break;
6256 case ic_assign:
6257 error_at (location, "incompatible types when assigning to type %qT from "
6258 "type %qT", type, rhstype);
6259 break;
6260 case ic_init:
6261 error_at (location,
6262 "incompatible types when initializing type %qT using type %qT",
6263 type, rhstype);
6264 break;
6265 case ic_return:
6266 error_at (location,
6267 "incompatible types when returning type %qT but %qT was "
6268 "expected", rhstype, type);
6269 break;
6270 default:
6271 gcc_unreachable ();
6274 return error_mark_node;
6277 /* If VALUE is a compound expr all of whose expressions are constant, then
6278 return its value. Otherwise, return error_mark_node.
6280 This is for handling COMPOUND_EXPRs as initializer elements
6281 which is allowed with a warning when -pedantic is specified. */
6283 static tree
6284 valid_compound_expr_initializer (tree value, tree endtype)
6286 if (TREE_CODE (value) == COMPOUND_EXPR)
6288 if (valid_compound_expr_initializer (TREE_OPERAND (value, 0), endtype)
6289 == error_mark_node)
6290 return error_mark_node;
6291 return valid_compound_expr_initializer (TREE_OPERAND (value, 1),
6292 endtype);
6294 else if (!initializer_constant_valid_p (value, endtype))
6295 return error_mark_node;
6296 else
6297 return value;
6300 /* Perform appropriate conversions on the initial value of a variable,
6301 store it in the declaration DECL,
6302 and print any error messages that are appropriate.
6303 If ORIGTYPE is not NULL_TREE, it is the original type of INIT.
6304 If the init is invalid, store an ERROR_MARK.
6306 INIT_LOC is the location of the initial value. */
6308 void
6309 store_init_value (location_t init_loc, tree decl, tree init, tree origtype)
6311 tree value, type;
6312 bool npc = false;
6314 /* If variable's type was invalidly declared, just ignore it. */
6316 type = TREE_TYPE (decl);
6317 if (TREE_CODE (type) == ERROR_MARK)
6318 return;
6320 /* Digest the specified initializer into an expression. */
6322 if (init)
6323 npc = null_pointer_constant_p (init);
6324 value = digest_init (init_loc, type, init, origtype, npc,
6325 true, TREE_STATIC (decl));
6327 /* Store the expression if valid; else report error. */
6329 if (!in_system_header_at (input_location)
6330 && AGGREGATE_TYPE_P (TREE_TYPE (decl)) && !TREE_STATIC (decl))
6331 warning (OPT_Wtraditional, "traditional C rejects automatic "
6332 "aggregate initialization");
6334 DECL_INITIAL (decl) = value;
6336 /* ANSI wants warnings about out-of-range constant initializers. */
6337 STRIP_TYPE_NOPS (value);
6338 if (TREE_STATIC (decl))
6339 constant_expression_warning (value);
6341 /* Check if we need to set array size from compound literal size. */
6342 if (TREE_CODE (type) == ARRAY_TYPE
6343 && TYPE_DOMAIN (type) == 0
6344 && value != error_mark_node)
6346 tree inside_init = init;
6348 STRIP_TYPE_NOPS (inside_init);
6349 inside_init = fold (inside_init);
6351 if (TREE_CODE (inside_init) == COMPOUND_LITERAL_EXPR)
6353 tree cldecl = COMPOUND_LITERAL_EXPR_DECL (inside_init);
6355 if (TYPE_DOMAIN (TREE_TYPE (cldecl)))
6357 /* For int foo[] = (int [3]){1}; we need to set array size
6358 now since later on array initializer will be just the
6359 brace enclosed list of the compound literal. */
6360 tree etype = strip_array_types (TREE_TYPE (decl));
6361 type = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
6362 TYPE_DOMAIN (type) = TYPE_DOMAIN (TREE_TYPE (cldecl));
6363 layout_type (type);
6364 layout_decl (cldecl, 0);
6365 TREE_TYPE (decl)
6366 = c_build_qualified_type (type, TYPE_QUALS (etype));
6372 /* Methods for storing and printing names for error messages. */
6374 /* Implement a spelling stack that allows components of a name to be pushed
6375 and popped. Each element on the stack is this structure. */
6377 struct spelling
6379 int kind;
6380 union
6382 unsigned HOST_WIDE_INT i;
6383 const char *s;
6384 } u;
6387 #define SPELLING_STRING 1
6388 #define SPELLING_MEMBER 2
6389 #define SPELLING_BOUNDS 3
6391 static struct spelling *spelling; /* Next stack element (unused). */
6392 static struct spelling *spelling_base; /* Spelling stack base. */
6393 static int spelling_size; /* Size of the spelling stack. */
6395 /* Macros to save and restore the spelling stack around push_... functions.
6396 Alternative to SAVE_SPELLING_STACK. */
6398 #define SPELLING_DEPTH() (spelling - spelling_base)
6399 #define RESTORE_SPELLING_DEPTH(DEPTH) (spelling = spelling_base + (DEPTH))
6401 /* Push an element on the spelling stack with type KIND and assign VALUE
6402 to MEMBER. */
6404 #define PUSH_SPELLING(KIND, VALUE, MEMBER) \
6406 int depth = SPELLING_DEPTH (); \
6408 if (depth >= spelling_size) \
6410 spelling_size += 10; \
6411 spelling_base = XRESIZEVEC (struct spelling, spelling_base, \
6412 spelling_size); \
6413 RESTORE_SPELLING_DEPTH (depth); \
6416 spelling->kind = (KIND); \
6417 spelling->MEMBER = (VALUE); \
6418 spelling++; \
6421 /* Push STRING on the stack. Printed literally. */
6423 static void
6424 push_string (const char *string)
6426 PUSH_SPELLING (SPELLING_STRING, string, u.s);
6429 /* Push a member name on the stack. Printed as '.' STRING. */
6431 static void
6432 push_member_name (tree decl)
6434 const char *const string
6435 = (DECL_NAME (decl)
6436 ? identifier_to_locale (IDENTIFIER_POINTER (DECL_NAME (decl)))
6437 : _("<anonymous>"));
6438 PUSH_SPELLING (SPELLING_MEMBER, string, u.s);
6441 /* Push an array bounds on the stack. Printed as [BOUNDS]. */
6443 static void
6444 push_array_bounds (unsigned HOST_WIDE_INT bounds)
6446 PUSH_SPELLING (SPELLING_BOUNDS, bounds, u.i);
6449 /* Compute the maximum size in bytes of the printed spelling. */
6451 static int
6452 spelling_length (void)
6454 int size = 0;
6455 struct spelling *p;
6457 for (p = spelling_base; p < spelling; p++)
6459 if (p->kind == SPELLING_BOUNDS)
6460 size += 25;
6461 else
6462 size += strlen (p->u.s) + 1;
6465 return size;
6468 /* Print the spelling to BUFFER and return it. */
6470 static char *
6471 print_spelling (char *buffer)
6473 char *d = buffer;
6474 struct spelling *p;
6476 for (p = spelling_base; p < spelling; p++)
6477 if (p->kind == SPELLING_BOUNDS)
6479 sprintf (d, "[" HOST_WIDE_INT_PRINT_UNSIGNED "]", p->u.i);
6480 d += strlen (d);
6482 else
6484 const char *s;
6485 if (p->kind == SPELLING_MEMBER)
6486 *d++ = '.';
6487 for (s = p->u.s; (*d = *s++); d++)
6490 *d++ = '\0';
6491 return buffer;
6494 /* Digest the parser output INIT as an initializer for type TYPE.
6495 Return a C expression of type TYPE to represent the initial value.
6497 If ORIGTYPE is not NULL_TREE, it is the original type of INIT.
6499 NULL_POINTER_CONSTANT is true if INIT is a null pointer constant.
6501 If INIT is a string constant, STRICT_STRING is true if it is
6502 unparenthesized or we should not warn here for it being parenthesized.
6503 For other types of INIT, STRICT_STRING is not used.
6505 INIT_LOC is the location of the INIT.
6507 REQUIRE_CONSTANT requests an error if non-constant initializers or
6508 elements are seen. */
6510 static tree
6511 digest_init (location_t init_loc, tree type, tree init, tree origtype,
6512 bool null_pointer_constant, bool strict_string,
6513 int require_constant)
6515 enum tree_code code = TREE_CODE (type);
6516 tree inside_init = init;
6517 tree semantic_type = NULL_TREE;
6518 bool maybe_const = true;
6520 if (type == error_mark_node
6521 || !init
6522 || init == error_mark_node
6523 || TREE_TYPE (init) == error_mark_node)
6524 return error_mark_node;
6526 STRIP_TYPE_NOPS (inside_init);
6528 if (TREE_CODE (inside_init) == EXCESS_PRECISION_EXPR)
6530 semantic_type = TREE_TYPE (inside_init);
6531 inside_init = TREE_OPERAND (inside_init, 0);
6533 inside_init = c_fully_fold (inside_init, require_constant, &maybe_const);
6534 inside_init = decl_constant_value_for_optimization (inside_init);
6536 /* Initialization of an array of chars from a string constant
6537 optionally enclosed in braces. */
6539 if (code == ARRAY_TYPE && inside_init
6540 && TREE_CODE (inside_init) == STRING_CST)
6542 tree typ1
6543 = (TYPE_ATOMIC (TREE_TYPE (type))
6544 ? c_build_qualified_type (TYPE_MAIN_VARIANT (TREE_TYPE (type)),
6545 TYPE_QUAL_ATOMIC)
6546 : TYPE_MAIN_VARIANT (TREE_TYPE (type)));
6547 /* Note that an array could be both an array of character type
6548 and an array of wchar_t if wchar_t is signed char or unsigned
6549 char. */
6550 bool char_array = (typ1 == char_type_node
6551 || typ1 == signed_char_type_node
6552 || typ1 == unsigned_char_type_node);
6553 bool wchar_array = !!comptypes (typ1, wchar_type_node);
6554 bool char16_array = !!comptypes (typ1, char16_type_node);
6555 bool char32_array = !!comptypes (typ1, char32_type_node);
6557 if (char_array || wchar_array || char16_array || char32_array)
6559 struct c_expr expr;
6560 tree typ2 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (inside_init)));
6561 expr.value = inside_init;
6562 expr.original_code = (strict_string ? STRING_CST : ERROR_MARK);
6563 expr.original_type = NULL;
6564 maybe_warn_string_init (init_loc, type, expr);
6566 if (TYPE_DOMAIN (type) && !TYPE_MAX_VALUE (TYPE_DOMAIN (type)))
6567 pedwarn_init (init_loc, OPT_Wpedantic,
6568 "initialization of a flexible array member");
6570 if (comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (inside_init)),
6571 TYPE_MAIN_VARIANT (type)))
6572 return inside_init;
6574 if (char_array)
6576 if (typ2 != char_type_node)
6578 error_init (init_loc, "char-array initialized from wide "
6579 "string");
6580 return error_mark_node;
6583 else
6585 if (typ2 == char_type_node)
6587 error_init (init_loc, "wide character array initialized "
6588 "from non-wide string");
6589 return error_mark_node;
6591 else if (!comptypes(typ1, typ2))
6593 error_init (init_loc, "wide character array initialized "
6594 "from incompatible wide string");
6595 return error_mark_node;
6599 TREE_TYPE (inside_init) = type;
6600 if (TYPE_DOMAIN (type) != 0
6601 && TYPE_SIZE (type) != 0
6602 && TREE_CODE (TYPE_SIZE (type)) == INTEGER_CST)
6604 unsigned HOST_WIDE_INT len = TREE_STRING_LENGTH (inside_init);
6606 /* Subtract the size of a single (possibly wide) character
6607 because it's ok to ignore the terminating null char
6608 that is counted in the length of the constant. */
6609 if (0 > compare_tree_int (TYPE_SIZE_UNIT (type),
6610 (len
6611 - (TYPE_PRECISION (typ1)
6612 / BITS_PER_UNIT))))
6613 pedwarn_init (init_loc, 0,
6614 ("initializer-string for array of chars "
6615 "is too long"));
6616 else if (warn_cxx_compat
6617 && 0 > compare_tree_int (TYPE_SIZE_UNIT (type), len))
6618 warning_at (init_loc, OPT_Wc___compat,
6619 ("initializer-string for array chars "
6620 "is too long for C++"));
6623 return inside_init;
6625 else if (INTEGRAL_TYPE_P (typ1))
6627 error_init (init_loc, "array of inappropriate type initialized "
6628 "from string constant");
6629 return error_mark_node;
6633 /* Build a VECTOR_CST from a *constant* vector constructor. If the
6634 vector constructor is not constant (e.g. {1,2,3,foo()}) then punt
6635 below and handle as a constructor. */
6636 if (code == VECTOR_TYPE
6637 && TREE_CODE (TREE_TYPE (inside_init)) == VECTOR_TYPE
6638 && vector_types_convertible_p (TREE_TYPE (inside_init), type, true)
6639 && TREE_CONSTANT (inside_init))
6641 if (TREE_CODE (inside_init) == VECTOR_CST
6642 && comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (inside_init)),
6643 TYPE_MAIN_VARIANT (type)))
6644 return inside_init;
6646 if (TREE_CODE (inside_init) == CONSTRUCTOR)
6648 unsigned HOST_WIDE_INT ix;
6649 tree value;
6650 bool constant_p = true;
6652 /* Iterate through elements and check if all constructor
6653 elements are *_CSTs. */
6654 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (inside_init), ix, value)
6655 if (!CONSTANT_CLASS_P (value))
6657 constant_p = false;
6658 break;
6661 if (constant_p)
6662 return build_vector_from_ctor (type,
6663 CONSTRUCTOR_ELTS (inside_init));
6667 if (warn_sequence_point)
6668 verify_sequence_points (inside_init);
6670 /* Any type can be initialized
6671 from an expression of the same type, optionally with braces. */
6673 if (inside_init && TREE_TYPE (inside_init) != 0
6674 && (comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (inside_init)),
6675 TYPE_MAIN_VARIANT (type))
6676 || (code == ARRAY_TYPE
6677 && comptypes (TREE_TYPE (inside_init), type))
6678 || (code == VECTOR_TYPE
6679 && comptypes (TREE_TYPE (inside_init), type))
6680 || (code == POINTER_TYPE
6681 && TREE_CODE (TREE_TYPE (inside_init)) == ARRAY_TYPE
6682 && comptypes (TREE_TYPE (TREE_TYPE (inside_init)),
6683 TREE_TYPE (type)))))
6685 if (code == POINTER_TYPE)
6687 if (TREE_CODE (TREE_TYPE (inside_init)) == ARRAY_TYPE)
6689 if (TREE_CODE (inside_init) == STRING_CST
6690 || TREE_CODE (inside_init) == COMPOUND_LITERAL_EXPR)
6691 inside_init = array_to_pointer_conversion
6692 (init_loc, inside_init);
6693 else
6695 error_init (init_loc, "invalid use of non-lvalue array");
6696 return error_mark_node;
6701 if (code == VECTOR_TYPE)
6702 /* Although the types are compatible, we may require a
6703 conversion. */
6704 inside_init = convert (type, inside_init);
6706 if (require_constant
6707 && (code == VECTOR_TYPE || !flag_isoc99)
6708 && TREE_CODE (inside_init) == COMPOUND_LITERAL_EXPR)
6710 /* As an extension, allow initializing objects with static storage
6711 duration with compound literals (which are then treated just as
6712 the brace enclosed list they contain). Also allow this for
6713 vectors, as we can only assign them with compound literals. */
6714 tree decl = COMPOUND_LITERAL_EXPR_DECL (inside_init);
6715 inside_init = DECL_INITIAL (decl);
6718 if (code == ARRAY_TYPE && TREE_CODE (inside_init) != STRING_CST
6719 && TREE_CODE (inside_init) != CONSTRUCTOR)
6721 error_init (init_loc, "array initialized from non-constant array "
6722 "expression");
6723 return error_mark_node;
6726 /* Compound expressions can only occur here if -Wpedantic or
6727 -pedantic-errors is specified. In the later case, we always want
6728 an error. In the former case, we simply want a warning. */
6729 if (require_constant && pedantic
6730 && TREE_CODE (inside_init) == COMPOUND_EXPR)
6732 inside_init
6733 = valid_compound_expr_initializer (inside_init,
6734 TREE_TYPE (inside_init));
6735 if (inside_init == error_mark_node)
6736 error_init (init_loc, "initializer element is not constant");
6737 else
6738 pedwarn_init (init_loc, OPT_Wpedantic,
6739 "initializer element is not constant");
6740 if (flag_pedantic_errors)
6741 inside_init = error_mark_node;
6743 else if (require_constant
6744 && !initializer_constant_valid_p (inside_init,
6745 TREE_TYPE (inside_init)))
6747 error_init (init_loc, "initializer element is not constant");
6748 inside_init = error_mark_node;
6750 else if (require_constant && !maybe_const)
6751 pedwarn_init (init_loc, 0,
6752 "initializer element is not a constant expression");
6754 /* Added to enable additional -Wsuggest-attribute=format warnings. */
6755 if (TREE_CODE (TREE_TYPE (inside_init)) == POINTER_TYPE)
6756 inside_init = convert_for_assignment (init_loc, UNKNOWN_LOCATION,
6757 type, inside_init, origtype,
6758 ic_init, null_pointer_constant,
6759 NULL_TREE, NULL_TREE, 0);
6760 return inside_init;
6763 /* Handle scalar types, including conversions. */
6765 if (code == INTEGER_TYPE || code == REAL_TYPE || code == FIXED_POINT_TYPE
6766 || code == POINTER_TYPE || code == ENUMERAL_TYPE || code == BOOLEAN_TYPE
6767 || code == COMPLEX_TYPE || code == VECTOR_TYPE)
6769 if (TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE
6770 && (TREE_CODE (init) == STRING_CST
6771 || TREE_CODE (init) == COMPOUND_LITERAL_EXPR))
6772 inside_init = init = array_to_pointer_conversion (init_loc, init);
6773 if (semantic_type)
6774 inside_init = build1 (EXCESS_PRECISION_EXPR, semantic_type,
6775 inside_init);
6776 inside_init
6777 = convert_for_assignment (init_loc, UNKNOWN_LOCATION, type,
6778 inside_init, origtype, ic_init,
6779 null_pointer_constant, NULL_TREE, NULL_TREE,
6782 /* Check to see if we have already given an error message. */
6783 if (inside_init == error_mark_node)
6785 else if (require_constant && !TREE_CONSTANT (inside_init))
6787 error_init (init_loc, "initializer element is not constant");
6788 inside_init = error_mark_node;
6790 else if (require_constant
6791 && !initializer_constant_valid_p (inside_init,
6792 TREE_TYPE (inside_init)))
6794 error_init (init_loc, "initializer element is not computable at "
6795 "load time");
6796 inside_init = error_mark_node;
6798 else if (require_constant && !maybe_const)
6799 pedwarn_init (init_loc, 0,
6800 "initializer element is not a constant expression");
6802 return inside_init;
6805 /* Come here only for records and arrays. */
6807 if (COMPLETE_TYPE_P (type) && TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
6809 error_init (init_loc, "variable-sized object may not be initialized");
6810 return error_mark_node;
6813 error_init (init_loc, "invalid initializer");
6814 return error_mark_node;
6817 /* Handle initializers that use braces. */
6819 /* Type of object we are accumulating a constructor for.
6820 This type is always a RECORD_TYPE, UNION_TYPE or ARRAY_TYPE. */
6821 static tree constructor_type;
6823 /* For a RECORD_TYPE or UNION_TYPE, this is the chain of fields
6824 left to fill. */
6825 static tree constructor_fields;
6827 /* For an ARRAY_TYPE, this is the specified index
6828 at which to store the next element we get. */
6829 static tree constructor_index;
6831 /* For an ARRAY_TYPE, this is the maximum index. */
6832 static tree constructor_max_index;
6834 /* For a RECORD_TYPE, this is the first field not yet written out. */
6835 static tree constructor_unfilled_fields;
6837 /* For an ARRAY_TYPE, this is the index of the first element
6838 not yet written out. */
6839 static tree constructor_unfilled_index;
6841 /* In a RECORD_TYPE, the byte index of the next consecutive field.
6842 This is so we can generate gaps between fields, when appropriate. */
6843 static tree constructor_bit_index;
6845 /* If we are saving up the elements rather than allocating them,
6846 this is the list of elements so far (in reverse order,
6847 most recent first). */
6848 static vec<constructor_elt, va_gc> *constructor_elements;
6850 /* 1 if constructor should be incrementally stored into a constructor chain,
6851 0 if all the elements should be kept in AVL tree. */
6852 static int constructor_incremental;
6854 /* 1 if so far this constructor's elements are all compile-time constants. */
6855 static int constructor_constant;
6857 /* 1 if so far this constructor's elements are all valid address constants. */
6858 static int constructor_simple;
6860 /* 1 if this constructor has an element that cannot be part of a
6861 constant expression. */
6862 static int constructor_nonconst;
6864 /* 1 if this constructor is erroneous so far. */
6865 static int constructor_erroneous;
6867 /* Structure for managing pending initializer elements, organized as an
6868 AVL tree. */
6870 struct init_node
6872 struct init_node *left, *right;
6873 struct init_node *parent;
6874 int balance;
6875 tree purpose;
6876 tree value;
6877 tree origtype;
6880 /* Tree of pending elements at this constructor level.
6881 These are elements encountered out of order
6882 which belong at places we haven't reached yet in actually
6883 writing the output.
6884 Will never hold tree nodes across GC runs. */
6885 static struct init_node *constructor_pending_elts;
6887 /* The SPELLING_DEPTH of this constructor. */
6888 static int constructor_depth;
6890 /* DECL node for which an initializer is being read.
6891 0 means we are reading a constructor expression
6892 such as (struct foo) {...}. */
6893 static tree constructor_decl;
6895 /* Nonzero if this is an initializer for a top-level decl. */
6896 static int constructor_top_level;
6898 /* Nonzero if there were any member designators in this initializer. */
6899 static int constructor_designated;
6901 /* Nesting depth of designator list. */
6902 static int designator_depth;
6904 /* Nonzero if there were diagnosed errors in this designator list. */
6905 static int designator_erroneous;
6908 /* This stack has a level for each implicit or explicit level of
6909 structuring in the initializer, including the outermost one. It
6910 saves the values of most of the variables above. */
6912 struct constructor_range_stack;
6914 struct constructor_stack
6916 struct constructor_stack *next;
6917 tree type;
6918 tree fields;
6919 tree index;
6920 tree max_index;
6921 tree unfilled_index;
6922 tree unfilled_fields;
6923 tree bit_index;
6924 vec<constructor_elt, va_gc> *elements;
6925 struct init_node *pending_elts;
6926 int offset;
6927 int depth;
6928 /* If value nonzero, this value should replace the entire
6929 constructor at this level. */
6930 struct c_expr replacement_value;
6931 struct constructor_range_stack *range_stack;
6932 char constant;
6933 char simple;
6934 char nonconst;
6935 char implicit;
6936 char erroneous;
6937 char outer;
6938 char incremental;
6939 char designated;
6942 static struct constructor_stack *constructor_stack;
6944 /* This stack represents designators from some range designator up to
6945 the last designator in the list. */
6947 struct constructor_range_stack
6949 struct constructor_range_stack *next, *prev;
6950 struct constructor_stack *stack;
6951 tree range_start;
6952 tree index;
6953 tree range_end;
6954 tree fields;
6957 static struct constructor_range_stack *constructor_range_stack;
6959 /* This stack records separate initializers that are nested.
6960 Nested initializers can't happen in ANSI C, but GNU C allows them
6961 in cases like { ... (struct foo) { ... } ... }. */
6963 struct initializer_stack
6965 struct initializer_stack *next;
6966 tree decl;
6967 struct constructor_stack *constructor_stack;
6968 struct constructor_range_stack *constructor_range_stack;
6969 vec<constructor_elt, va_gc> *elements;
6970 struct spelling *spelling;
6971 struct spelling *spelling_base;
6972 int spelling_size;
6973 char top_level;
6974 char require_constant_value;
6975 char require_constant_elements;
6978 static struct initializer_stack *initializer_stack;
6980 /* Prepare to parse and output the initializer for variable DECL. */
6982 void
6983 start_init (tree decl, tree asmspec_tree ATTRIBUTE_UNUSED, int top_level)
6985 const char *locus;
6986 struct initializer_stack *p = XNEW (struct initializer_stack);
6988 p->decl = constructor_decl;
6989 p->require_constant_value = require_constant_value;
6990 p->require_constant_elements = require_constant_elements;
6991 p->constructor_stack = constructor_stack;
6992 p->constructor_range_stack = constructor_range_stack;
6993 p->elements = constructor_elements;
6994 p->spelling = spelling;
6995 p->spelling_base = spelling_base;
6996 p->spelling_size = spelling_size;
6997 p->top_level = constructor_top_level;
6998 p->next = initializer_stack;
6999 initializer_stack = p;
7001 constructor_decl = decl;
7002 constructor_designated = 0;
7003 constructor_top_level = top_level;
7005 if (decl != 0 && decl != error_mark_node)
7007 require_constant_value = TREE_STATIC (decl);
7008 require_constant_elements
7009 = ((TREE_STATIC (decl) || (pedantic && !flag_isoc99))
7010 /* For a scalar, you can always use any value to initialize,
7011 even within braces. */
7012 && (TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
7013 || TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE
7014 || TREE_CODE (TREE_TYPE (decl)) == UNION_TYPE
7015 || TREE_CODE (TREE_TYPE (decl)) == QUAL_UNION_TYPE));
7016 locus = identifier_to_locale (IDENTIFIER_POINTER (DECL_NAME (decl)));
7018 else
7020 require_constant_value = 0;
7021 require_constant_elements = 0;
7022 locus = _("(anonymous)");
7025 constructor_stack = 0;
7026 constructor_range_stack = 0;
7028 missing_braces_mentioned = 0;
7030 spelling_base = 0;
7031 spelling_size = 0;
7032 RESTORE_SPELLING_DEPTH (0);
7034 if (locus)
7035 push_string (locus);
7038 void
7039 finish_init (void)
7041 struct initializer_stack *p = initializer_stack;
7043 /* Free the whole constructor stack of this initializer. */
7044 while (constructor_stack)
7046 struct constructor_stack *q = constructor_stack;
7047 constructor_stack = q->next;
7048 free (q);
7051 gcc_assert (!constructor_range_stack);
7053 /* Pop back to the data of the outer initializer (if any). */
7054 free (spelling_base);
7056 constructor_decl = p->decl;
7057 require_constant_value = p->require_constant_value;
7058 require_constant_elements = p->require_constant_elements;
7059 constructor_stack = p->constructor_stack;
7060 constructor_range_stack = p->constructor_range_stack;
7061 constructor_elements = p->elements;
7062 spelling = p->spelling;
7063 spelling_base = p->spelling_base;
7064 spelling_size = p->spelling_size;
7065 constructor_top_level = p->top_level;
7066 initializer_stack = p->next;
7067 free (p);
7070 /* Call here when we see the initializer is surrounded by braces.
7071 This is instead of a call to push_init_level;
7072 it is matched by a call to pop_init_level.
7074 TYPE is the type to initialize, for a constructor expression.
7075 For an initializer for a decl, TYPE is zero. */
7077 void
7078 really_start_incremental_init (tree type)
7080 struct constructor_stack *p = XNEW (struct constructor_stack);
7082 if (type == 0)
7083 type = TREE_TYPE (constructor_decl);
7085 if (TREE_CODE (type) == VECTOR_TYPE
7086 && TYPE_VECTOR_OPAQUE (type))
7087 error ("opaque vector types cannot be initialized");
7089 p->type = constructor_type;
7090 p->fields = constructor_fields;
7091 p->index = constructor_index;
7092 p->max_index = constructor_max_index;
7093 p->unfilled_index = constructor_unfilled_index;
7094 p->unfilled_fields = constructor_unfilled_fields;
7095 p->bit_index = constructor_bit_index;
7096 p->elements = constructor_elements;
7097 p->constant = constructor_constant;
7098 p->simple = constructor_simple;
7099 p->nonconst = constructor_nonconst;
7100 p->erroneous = constructor_erroneous;
7101 p->pending_elts = constructor_pending_elts;
7102 p->depth = constructor_depth;
7103 p->replacement_value.value = 0;
7104 p->replacement_value.original_code = ERROR_MARK;
7105 p->replacement_value.original_type = NULL;
7106 p->implicit = 0;
7107 p->range_stack = 0;
7108 p->outer = 0;
7109 p->incremental = constructor_incremental;
7110 p->designated = constructor_designated;
7111 p->next = 0;
7112 constructor_stack = p;
7114 constructor_constant = 1;
7115 constructor_simple = 1;
7116 constructor_nonconst = 0;
7117 constructor_depth = SPELLING_DEPTH ();
7118 constructor_elements = NULL;
7119 constructor_pending_elts = 0;
7120 constructor_type = type;
7121 constructor_incremental = 1;
7122 constructor_designated = 0;
7123 designator_depth = 0;
7124 designator_erroneous = 0;
7126 if (TREE_CODE (constructor_type) == RECORD_TYPE
7127 || TREE_CODE (constructor_type) == UNION_TYPE)
7129 constructor_fields = TYPE_FIELDS (constructor_type);
7130 /* Skip any nameless bit fields at the beginning. */
7131 while (constructor_fields != 0 && DECL_C_BIT_FIELD (constructor_fields)
7132 && DECL_NAME (constructor_fields) == 0)
7133 constructor_fields = DECL_CHAIN (constructor_fields);
7135 constructor_unfilled_fields = constructor_fields;
7136 constructor_bit_index = bitsize_zero_node;
7138 else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
7140 if (TYPE_DOMAIN (constructor_type))
7142 constructor_max_index
7143 = TYPE_MAX_VALUE (TYPE_DOMAIN (constructor_type));
7145 /* Detect non-empty initializations of zero-length arrays. */
7146 if (constructor_max_index == NULL_TREE
7147 && TYPE_SIZE (constructor_type))
7148 constructor_max_index = integer_minus_one_node;
7150 /* constructor_max_index needs to be an INTEGER_CST. Attempts
7151 to initialize VLAs will cause a proper error; avoid tree
7152 checking errors as well by setting a safe value. */
7153 if (constructor_max_index
7154 && TREE_CODE (constructor_max_index) != INTEGER_CST)
7155 constructor_max_index = integer_minus_one_node;
7157 constructor_index
7158 = convert (bitsizetype,
7159 TYPE_MIN_VALUE (TYPE_DOMAIN (constructor_type)));
7161 else
7163 constructor_index = bitsize_zero_node;
7164 constructor_max_index = NULL_TREE;
7167 constructor_unfilled_index = constructor_index;
7169 else if (TREE_CODE (constructor_type) == VECTOR_TYPE)
7171 /* Vectors are like simple fixed-size arrays. */
7172 constructor_max_index =
7173 bitsize_int (TYPE_VECTOR_SUBPARTS (constructor_type) - 1);
7174 constructor_index = bitsize_zero_node;
7175 constructor_unfilled_index = constructor_index;
7177 else
7179 /* Handle the case of int x = {5}; */
7180 constructor_fields = constructor_type;
7181 constructor_unfilled_fields = constructor_type;
7185 /* Push down into a subobject, for initialization.
7186 If this is for an explicit set of braces, IMPLICIT is 0.
7187 If it is because the next element belongs at a lower level,
7188 IMPLICIT is 1 (or 2 if the push is because of designator list). */
7190 void
7191 push_init_level (location_t loc, int implicit,
7192 struct obstack *braced_init_obstack)
7194 struct constructor_stack *p;
7195 tree value = NULL_TREE;
7197 /* If we've exhausted any levels that didn't have braces,
7198 pop them now. If implicit == 1, this will have been done in
7199 process_init_element; do not repeat it here because in the case
7200 of excess initializers for an empty aggregate this leads to an
7201 infinite cycle of popping a level and immediately recreating
7202 it. */
7203 if (implicit != 1)
7205 while (constructor_stack->implicit)
7207 if ((TREE_CODE (constructor_type) == RECORD_TYPE
7208 || TREE_CODE (constructor_type) == UNION_TYPE)
7209 && constructor_fields == 0)
7210 process_init_element (input_location,
7211 pop_init_level (loc, 1, braced_init_obstack),
7212 true, braced_init_obstack);
7213 else if (TREE_CODE (constructor_type) == ARRAY_TYPE
7214 && constructor_max_index
7215 && tree_int_cst_lt (constructor_max_index,
7216 constructor_index))
7217 process_init_element (input_location,
7218 pop_init_level (loc, 1, braced_init_obstack),
7219 true, braced_init_obstack);
7220 else
7221 break;
7225 /* Unless this is an explicit brace, we need to preserve previous
7226 content if any. */
7227 if (implicit)
7229 if ((TREE_CODE (constructor_type) == RECORD_TYPE
7230 || TREE_CODE (constructor_type) == UNION_TYPE)
7231 && constructor_fields)
7232 value = find_init_member (constructor_fields, braced_init_obstack);
7233 else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
7234 value = find_init_member (constructor_index, braced_init_obstack);
7237 p = XNEW (struct constructor_stack);
7238 p->type = constructor_type;
7239 p->fields = constructor_fields;
7240 p->index = constructor_index;
7241 p->max_index = constructor_max_index;
7242 p->unfilled_index = constructor_unfilled_index;
7243 p->unfilled_fields = constructor_unfilled_fields;
7244 p->bit_index = constructor_bit_index;
7245 p->elements = constructor_elements;
7246 p->constant = constructor_constant;
7247 p->simple = constructor_simple;
7248 p->nonconst = constructor_nonconst;
7249 p->erroneous = constructor_erroneous;
7250 p->pending_elts = constructor_pending_elts;
7251 p->depth = constructor_depth;
7252 p->replacement_value.value = 0;
7253 p->replacement_value.original_code = ERROR_MARK;
7254 p->replacement_value.original_type = NULL;
7255 p->implicit = implicit;
7256 p->outer = 0;
7257 p->incremental = constructor_incremental;
7258 p->designated = constructor_designated;
7259 p->next = constructor_stack;
7260 p->range_stack = 0;
7261 constructor_stack = p;
7263 constructor_constant = 1;
7264 constructor_simple = 1;
7265 constructor_nonconst = 0;
7266 constructor_depth = SPELLING_DEPTH ();
7267 constructor_elements = NULL;
7268 constructor_incremental = 1;
7269 constructor_designated = 0;
7270 constructor_pending_elts = 0;
7271 if (!implicit)
7273 p->range_stack = constructor_range_stack;
7274 constructor_range_stack = 0;
7275 designator_depth = 0;
7276 designator_erroneous = 0;
7279 /* Don't die if an entire brace-pair level is superfluous
7280 in the containing level. */
7281 if (constructor_type == 0)
7283 else if (TREE_CODE (constructor_type) == RECORD_TYPE
7284 || TREE_CODE (constructor_type) == UNION_TYPE)
7286 /* Don't die if there are extra init elts at the end. */
7287 if (constructor_fields == 0)
7288 constructor_type = 0;
7289 else
7291 constructor_type = TREE_TYPE (constructor_fields);
7292 push_member_name (constructor_fields);
7293 constructor_depth++;
7295 /* If upper initializer is designated, then mark this as
7296 designated too to prevent bogus warnings. */
7297 constructor_designated = p->designated;
7299 else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
7301 constructor_type = TREE_TYPE (constructor_type);
7302 push_array_bounds (tree_to_uhwi (constructor_index));
7303 constructor_depth++;
7306 if (constructor_type == 0)
7308 error_init (loc, "extra brace group at end of initializer");
7309 constructor_fields = 0;
7310 constructor_unfilled_fields = 0;
7311 return;
7314 if (value && TREE_CODE (value) == CONSTRUCTOR)
7316 constructor_constant = TREE_CONSTANT (value);
7317 constructor_simple = TREE_STATIC (value);
7318 constructor_nonconst = CONSTRUCTOR_NON_CONST (value);
7319 constructor_elements = CONSTRUCTOR_ELTS (value);
7320 if (!vec_safe_is_empty (constructor_elements)
7321 && (TREE_CODE (constructor_type) == RECORD_TYPE
7322 || TREE_CODE (constructor_type) == ARRAY_TYPE))
7323 set_nonincremental_init (braced_init_obstack);
7326 if (implicit == 1 && warn_missing_braces && !missing_braces_mentioned)
7328 missing_braces_mentioned = 1;
7329 warning_init (input_location, OPT_Wmissing_braces,
7330 "missing braces around initializer");
7333 if (TREE_CODE (constructor_type) == RECORD_TYPE
7334 || TREE_CODE (constructor_type) == UNION_TYPE)
7336 constructor_fields = TYPE_FIELDS (constructor_type);
7337 /* Skip any nameless bit fields at the beginning. */
7338 while (constructor_fields != 0 && DECL_C_BIT_FIELD (constructor_fields)
7339 && DECL_NAME (constructor_fields) == 0)
7340 constructor_fields = DECL_CHAIN (constructor_fields);
7342 constructor_unfilled_fields = constructor_fields;
7343 constructor_bit_index = bitsize_zero_node;
7345 else if (TREE_CODE (constructor_type) == VECTOR_TYPE)
7347 /* Vectors are like simple fixed-size arrays. */
7348 constructor_max_index =
7349 bitsize_int (TYPE_VECTOR_SUBPARTS (constructor_type) - 1);
7350 constructor_index = bitsize_int (0);
7351 constructor_unfilled_index = constructor_index;
7353 else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
7355 if (TYPE_DOMAIN (constructor_type))
7357 constructor_max_index
7358 = TYPE_MAX_VALUE (TYPE_DOMAIN (constructor_type));
7360 /* Detect non-empty initializations of zero-length arrays. */
7361 if (constructor_max_index == NULL_TREE
7362 && TYPE_SIZE (constructor_type))
7363 constructor_max_index = integer_minus_one_node;
7365 /* constructor_max_index needs to be an INTEGER_CST. Attempts
7366 to initialize VLAs will cause a proper error; avoid tree
7367 checking errors as well by setting a safe value. */
7368 if (constructor_max_index
7369 && TREE_CODE (constructor_max_index) != INTEGER_CST)
7370 constructor_max_index = integer_minus_one_node;
7372 constructor_index
7373 = convert (bitsizetype,
7374 TYPE_MIN_VALUE (TYPE_DOMAIN (constructor_type)));
7376 else
7377 constructor_index = bitsize_zero_node;
7379 constructor_unfilled_index = constructor_index;
7380 if (value && TREE_CODE (value) == STRING_CST)
7382 /* We need to split the char/wchar array into individual
7383 characters, so that we don't have to special case it
7384 everywhere. */
7385 set_nonincremental_init_from_string (value, braced_init_obstack);
7388 else
7390 if (constructor_type != error_mark_node)
7391 warning_init (input_location, 0, "braces around scalar initializer");
7392 constructor_fields = constructor_type;
7393 constructor_unfilled_fields = constructor_type;
7397 /* At the end of an implicit or explicit brace level,
7398 finish up that level of constructor. If a single expression
7399 with redundant braces initialized that level, return the
7400 c_expr structure for that expression. Otherwise, the original_code
7401 element is set to ERROR_MARK.
7402 If we were outputting the elements as they are read, return 0 as the value
7403 from inner levels (process_init_element ignores that),
7404 but return error_mark_node as the value from the outermost level
7405 (that's what we want to put in DECL_INITIAL).
7406 Otherwise, return a CONSTRUCTOR expression as the value. */
7408 struct c_expr
7409 pop_init_level (location_t loc, int implicit,
7410 struct obstack *braced_init_obstack)
7412 struct constructor_stack *p;
7413 struct c_expr ret;
7414 ret.value = 0;
7415 ret.original_code = ERROR_MARK;
7416 ret.original_type = NULL;
7418 if (implicit == 0)
7420 /* When we come to an explicit close brace,
7421 pop any inner levels that didn't have explicit braces. */
7422 while (constructor_stack->implicit)
7423 process_init_element (input_location,
7424 pop_init_level (loc, 1, braced_init_obstack),
7425 true, braced_init_obstack);
7426 gcc_assert (!constructor_range_stack);
7429 /* Now output all pending elements. */
7430 constructor_incremental = 1;
7431 output_pending_init_elements (1, braced_init_obstack);
7433 p = constructor_stack;
7435 /* Error for initializing a flexible array member, or a zero-length
7436 array member in an inappropriate context. */
7437 if (constructor_type && constructor_fields
7438 && TREE_CODE (constructor_type) == ARRAY_TYPE
7439 && TYPE_DOMAIN (constructor_type)
7440 && !TYPE_MAX_VALUE (TYPE_DOMAIN (constructor_type)))
7442 /* Silently discard empty initializations. The parser will
7443 already have pedwarned for empty brackets. */
7444 if (integer_zerop (constructor_unfilled_index))
7445 constructor_type = NULL_TREE;
7446 else
7448 gcc_assert (!TYPE_SIZE (constructor_type));
7450 if (constructor_depth > 2)
7451 error_init (loc, "initialization of flexible array member in a nested context");
7452 else
7453 pedwarn_init (loc, OPT_Wpedantic,
7454 "initialization of a flexible array member");
7456 /* We have already issued an error message for the existence
7457 of a flexible array member not at the end of the structure.
7458 Discard the initializer so that we do not die later. */
7459 if (DECL_CHAIN (constructor_fields) != NULL_TREE)
7460 constructor_type = NULL_TREE;
7464 /* Warn when some struct elements are implicitly initialized to zero. */
7465 if (warn_missing_field_initializers
7466 && constructor_type
7467 && TREE_CODE (constructor_type) == RECORD_TYPE
7468 && constructor_unfilled_fields)
7470 bool constructor_zeroinit =
7471 (vec_safe_length (constructor_elements) == 1
7472 && integer_zerop ((*constructor_elements)[0].value));
7474 /* Do not warn for flexible array members or zero-length arrays. */
7475 while (constructor_unfilled_fields
7476 && (!DECL_SIZE (constructor_unfilled_fields)
7477 || integer_zerop (DECL_SIZE (constructor_unfilled_fields))))
7478 constructor_unfilled_fields = DECL_CHAIN (constructor_unfilled_fields);
7480 if (constructor_unfilled_fields
7481 /* Do not warn if this level of the initializer uses member
7482 designators; it is likely to be deliberate. */
7483 && !constructor_designated
7484 /* Do not warn about initializing with ` = {0}'. */
7485 && !constructor_zeroinit)
7487 if (warning_at (input_location, OPT_Wmissing_field_initializers,
7488 "missing initializer for field %qD of %qT",
7489 constructor_unfilled_fields,
7490 constructor_type))
7491 inform (DECL_SOURCE_LOCATION (constructor_unfilled_fields),
7492 "%qD declared here", constructor_unfilled_fields);
7496 /* Pad out the end of the structure. */
7497 if (p->replacement_value.value)
7498 /* If this closes a superfluous brace pair,
7499 just pass out the element between them. */
7500 ret = p->replacement_value;
7501 else if (constructor_type == 0)
7503 else if (TREE_CODE (constructor_type) != RECORD_TYPE
7504 && TREE_CODE (constructor_type) != UNION_TYPE
7505 && TREE_CODE (constructor_type) != ARRAY_TYPE
7506 && TREE_CODE (constructor_type) != VECTOR_TYPE)
7508 /* A nonincremental scalar initializer--just return
7509 the element, after verifying there is just one. */
7510 if (vec_safe_is_empty (constructor_elements))
7512 if (!constructor_erroneous)
7513 error_init (loc, "empty scalar initializer");
7514 ret.value = error_mark_node;
7516 else if (vec_safe_length (constructor_elements) != 1)
7518 error_init (loc, "extra elements in scalar initializer");
7519 ret.value = (*constructor_elements)[0].value;
7521 else
7522 ret.value = (*constructor_elements)[0].value;
7524 else
7526 if (constructor_erroneous)
7527 ret.value = error_mark_node;
7528 else
7530 ret.value = build_constructor (constructor_type,
7531 constructor_elements);
7532 if (constructor_constant)
7533 TREE_CONSTANT (ret.value) = 1;
7534 if (constructor_constant && constructor_simple)
7535 TREE_STATIC (ret.value) = 1;
7536 if (constructor_nonconst)
7537 CONSTRUCTOR_NON_CONST (ret.value) = 1;
7541 if (ret.value && TREE_CODE (ret.value) != CONSTRUCTOR)
7543 if (constructor_nonconst)
7544 ret.original_code = C_MAYBE_CONST_EXPR;
7545 else if (ret.original_code == C_MAYBE_CONST_EXPR)
7546 ret.original_code = ERROR_MARK;
7549 constructor_type = p->type;
7550 constructor_fields = p->fields;
7551 constructor_index = p->index;
7552 constructor_max_index = p->max_index;
7553 constructor_unfilled_index = p->unfilled_index;
7554 constructor_unfilled_fields = p->unfilled_fields;
7555 constructor_bit_index = p->bit_index;
7556 constructor_elements = p->elements;
7557 constructor_constant = p->constant;
7558 constructor_simple = p->simple;
7559 constructor_nonconst = p->nonconst;
7560 constructor_erroneous = p->erroneous;
7561 constructor_incremental = p->incremental;
7562 constructor_designated = p->designated;
7563 constructor_pending_elts = p->pending_elts;
7564 constructor_depth = p->depth;
7565 if (!p->implicit)
7566 constructor_range_stack = p->range_stack;
7567 RESTORE_SPELLING_DEPTH (constructor_depth);
7569 constructor_stack = p->next;
7570 free (p);
7572 if (ret.value == 0 && constructor_stack == 0)
7573 ret.value = error_mark_node;
7574 return ret;
7577 /* Common handling for both array range and field name designators.
7578 ARRAY argument is nonzero for array ranges. Returns zero for success. */
7580 static int
7581 set_designator (location_t loc, int array,
7582 struct obstack *braced_init_obstack)
7584 tree subtype;
7585 enum tree_code subcode;
7587 /* Don't die if an entire brace-pair level is superfluous
7588 in the containing level. */
7589 if (constructor_type == 0)
7590 return 1;
7592 /* If there were errors in this designator list already, bail out
7593 silently. */
7594 if (designator_erroneous)
7595 return 1;
7597 if (!designator_depth)
7599 gcc_assert (!constructor_range_stack);
7601 /* Designator list starts at the level of closest explicit
7602 braces. */
7603 while (constructor_stack->implicit)
7604 process_init_element (input_location,
7605 pop_init_level (loc, 1, braced_init_obstack),
7606 true, braced_init_obstack);
7607 constructor_designated = 1;
7608 return 0;
7611 switch (TREE_CODE (constructor_type))
7613 case RECORD_TYPE:
7614 case UNION_TYPE:
7615 subtype = TREE_TYPE (constructor_fields);
7616 if (subtype != error_mark_node)
7617 subtype = TYPE_MAIN_VARIANT (subtype);
7618 break;
7619 case ARRAY_TYPE:
7620 subtype = TYPE_MAIN_VARIANT (TREE_TYPE (constructor_type));
7621 break;
7622 default:
7623 gcc_unreachable ();
7626 subcode = TREE_CODE (subtype);
7627 if (array && subcode != ARRAY_TYPE)
7629 error_init (loc, "array index in non-array initializer");
7630 return 1;
7632 else if (!array && subcode != RECORD_TYPE && subcode != UNION_TYPE)
7634 error_init (loc, "field name not in record or union initializer");
7635 return 1;
7638 constructor_designated = 1;
7639 push_init_level (loc, 2, braced_init_obstack);
7640 return 0;
7643 /* If there are range designators in designator list, push a new designator
7644 to constructor_range_stack. RANGE_END is end of such stack range or
7645 NULL_TREE if there is no range designator at this level. */
7647 static void
7648 push_range_stack (tree range_end, struct obstack * braced_init_obstack)
7650 struct constructor_range_stack *p;
7652 p = (struct constructor_range_stack *)
7653 obstack_alloc (braced_init_obstack,
7654 sizeof (struct constructor_range_stack));
7655 p->prev = constructor_range_stack;
7656 p->next = 0;
7657 p->fields = constructor_fields;
7658 p->range_start = constructor_index;
7659 p->index = constructor_index;
7660 p->stack = constructor_stack;
7661 p->range_end = range_end;
7662 if (constructor_range_stack)
7663 constructor_range_stack->next = p;
7664 constructor_range_stack = p;
7667 /* Within an array initializer, specify the next index to be initialized.
7668 FIRST is that index. If LAST is nonzero, then initialize a range
7669 of indices, running from FIRST through LAST. */
7671 void
7672 set_init_index (location_t loc, tree first, tree last,
7673 struct obstack *braced_init_obstack)
7675 if (set_designator (loc, 1, braced_init_obstack))
7676 return;
7678 designator_erroneous = 1;
7680 if (!INTEGRAL_TYPE_P (TREE_TYPE (first))
7681 || (last && !INTEGRAL_TYPE_P (TREE_TYPE (last))))
7683 error_init (loc, "array index in initializer not of integer type");
7684 return;
7687 if (TREE_CODE (first) != INTEGER_CST)
7689 first = c_fully_fold (first, false, NULL);
7690 if (TREE_CODE (first) == INTEGER_CST)
7691 pedwarn_init (loc, OPT_Wpedantic,
7692 "array index in initializer is not "
7693 "an integer constant expression");
7696 if (last && TREE_CODE (last) != INTEGER_CST)
7698 last = c_fully_fold (last, false, NULL);
7699 if (TREE_CODE (last) == INTEGER_CST)
7700 pedwarn_init (loc, OPT_Wpedantic,
7701 "array index in initializer is not "
7702 "an integer constant expression");
7705 if (TREE_CODE (first) != INTEGER_CST)
7706 error_init (loc, "nonconstant array index in initializer");
7707 else if (last != 0 && TREE_CODE (last) != INTEGER_CST)
7708 error_init (loc, "nonconstant array index in initializer");
7709 else if (TREE_CODE (constructor_type) != ARRAY_TYPE)
7710 error_init (loc, "array index in non-array initializer");
7711 else if (tree_int_cst_sgn (first) == -1)
7712 error_init (loc, "array index in initializer exceeds array bounds");
7713 else if (constructor_max_index
7714 && tree_int_cst_lt (constructor_max_index, first))
7715 error_init (loc, "array index in initializer exceeds array bounds");
7716 else
7718 constant_expression_warning (first);
7719 if (last)
7720 constant_expression_warning (last);
7721 constructor_index = convert (bitsizetype, first);
7722 if (tree_int_cst_lt (constructor_index, first))
7724 constructor_index = copy_node (constructor_index);
7725 TREE_OVERFLOW (constructor_index) = 1;
7728 if (last)
7730 if (tree_int_cst_equal (first, last))
7731 last = 0;
7732 else if (tree_int_cst_lt (last, first))
7734 error_init (loc, "empty index range in initializer");
7735 last = 0;
7737 else
7739 last = convert (bitsizetype, last);
7740 if (constructor_max_index != 0
7741 && tree_int_cst_lt (constructor_max_index, last))
7743 error_init (loc, "array index range in initializer exceeds "
7744 "array bounds");
7745 last = 0;
7750 designator_depth++;
7751 designator_erroneous = 0;
7752 if (constructor_range_stack || last)
7753 push_range_stack (last, braced_init_obstack);
7757 /* Within a struct initializer, specify the next field to be initialized. */
7759 void
7760 set_init_label (location_t loc, tree fieldname,
7761 struct obstack *braced_init_obstack)
7763 tree field;
7765 if (set_designator (loc, 0, braced_init_obstack))
7766 return;
7768 designator_erroneous = 1;
7770 if (TREE_CODE (constructor_type) != RECORD_TYPE
7771 && TREE_CODE (constructor_type) != UNION_TYPE)
7773 error_init (loc, "field name not in record or union initializer");
7774 return;
7777 field = lookup_field (constructor_type, fieldname);
7779 if (field == 0)
7780 error ("unknown field %qE specified in initializer", fieldname);
7781 else
7784 constructor_fields = TREE_VALUE (field);
7785 designator_depth++;
7786 designator_erroneous = 0;
7787 if (constructor_range_stack)
7788 push_range_stack (NULL_TREE, braced_init_obstack);
7789 field = TREE_CHAIN (field);
7790 if (field)
7792 if (set_designator (loc, 0, braced_init_obstack))
7793 return;
7796 while (field != NULL_TREE);
7799 /* Add a new initializer to the tree of pending initializers. PURPOSE
7800 identifies the initializer, either array index or field in a structure.
7801 VALUE is the value of that index or field. If ORIGTYPE is not
7802 NULL_TREE, it is the original type of VALUE.
7804 IMPLICIT is true if value comes from pop_init_level (1),
7805 the new initializer has been merged with the existing one
7806 and thus no warnings should be emitted about overriding an
7807 existing initializer. */
7809 static void
7810 add_pending_init (location_t loc, tree purpose, tree value, tree origtype,
7811 bool implicit, struct obstack *braced_init_obstack)
7813 struct init_node *p, **q, *r;
7815 q = &constructor_pending_elts;
7816 p = 0;
7818 if (TREE_CODE (constructor_type) == ARRAY_TYPE)
7820 while (*q != 0)
7822 p = *q;
7823 if (tree_int_cst_lt (purpose, p->purpose))
7824 q = &p->left;
7825 else if (tree_int_cst_lt (p->purpose, purpose))
7826 q = &p->right;
7827 else
7829 if (!implicit)
7831 if (TREE_SIDE_EFFECTS (p->value))
7832 warning_init (loc, 0,
7833 "initialized field with side-effects "
7834 "overwritten");
7835 else if (warn_override_init)
7836 warning_init (loc, OPT_Woverride_init,
7837 "initialized field overwritten");
7839 p->value = value;
7840 p->origtype = origtype;
7841 return;
7845 else
7847 tree bitpos;
7849 bitpos = bit_position (purpose);
7850 while (*q != NULL)
7852 p = *q;
7853 if (tree_int_cst_lt (bitpos, bit_position (p->purpose)))
7854 q = &p->left;
7855 else if (p->purpose != purpose)
7856 q = &p->right;
7857 else
7859 if (!implicit)
7861 if (TREE_SIDE_EFFECTS (p->value))
7862 warning_init (loc, 0,
7863 "initialized field with side-effects "
7864 "overwritten");
7865 else if (warn_override_init)
7866 warning_init (loc, OPT_Woverride_init,
7867 "initialized field overwritten");
7869 p->value = value;
7870 p->origtype = origtype;
7871 return;
7876 r = (struct init_node *) obstack_alloc (braced_init_obstack,
7877 sizeof (struct init_node));
7878 r->purpose = purpose;
7879 r->value = value;
7880 r->origtype = origtype;
7882 *q = r;
7883 r->parent = p;
7884 r->left = 0;
7885 r->right = 0;
7886 r->balance = 0;
7888 while (p)
7890 struct init_node *s;
7892 if (r == p->left)
7894 if (p->balance == 0)
7895 p->balance = -1;
7896 else if (p->balance < 0)
7898 if (r->balance < 0)
7900 /* L rotation. */
7901 p->left = r->right;
7902 if (p->left)
7903 p->left->parent = p;
7904 r->right = p;
7906 p->balance = 0;
7907 r->balance = 0;
7909 s = p->parent;
7910 p->parent = r;
7911 r->parent = s;
7912 if (s)
7914 if (s->left == p)
7915 s->left = r;
7916 else
7917 s->right = r;
7919 else
7920 constructor_pending_elts = r;
7922 else
7924 /* LR rotation. */
7925 struct init_node *t = r->right;
7927 r->right = t->left;
7928 if (r->right)
7929 r->right->parent = r;
7930 t->left = r;
7932 p->left = t->right;
7933 if (p->left)
7934 p->left->parent = p;
7935 t->right = p;
7937 p->balance = t->balance < 0;
7938 r->balance = -(t->balance > 0);
7939 t->balance = 0;
7941 s = p->parent;
7942 p->parent = t;
7943 r->parent = t;
7944 t->parent = s;
7945 if (s)
7947 if (s->left == p)
7948 s->left = t;
7949 else
7950 s->right = t;
7952 else
7953 constructor_pending_elts = t;
7955 break;
7957 else
7959 /* p->balance == +1; growth of left side balances the node. */
7960 p->balance = 0;
7961 break;
7964 else /* r == p->right */
7966 if (p->balance == 0)
7967 /* Growth propagation from right side. */
7968 p->balance++;
7969 else if (p->balance > 0)
7971 if (r->balance > 0)
7973 /* R rotation. */
7974 p->right = r->left;
7975 if (p->right)
7976 p->right->parent = p;
7977 r->left = p;
7979 p->balance = 0;
7980 r->balance = 0;
7982 s = p->parent;
7983 p->parent = r;
7984 r->parent = s;
7985 if (s)
7987 if (s->left == p)
7988 s->left = r;
7989 else
7990 s->right = r;
7992 else
7993 constructor_pending_elts = r;
7995 else /* r->balance == -1 */
7997 /* RL rotation */
7998 struct init_node *t = r->left;
8000 r->left = t->right;
8001 if (r->left)
8002 r->left->parent = r;
8003 t->right = r;
8005 p->right = t->left;
8006 if (p->right)
8007 p->right->parent = p;
8008 t->left = p;
8010 r->balance = (t->balance < 0);
8011 p->balance = -(t->balance > 0);
8012 t->balance = 0;
8014 s = p->parent;
8015 p->parent = t;
8016 r->parent = t;
8017 t->parent = s;
8018 if (s)
8020 if (s->left == p)
8021 s->left = t;
8022 else
8023 s->right = t;
8025 else
8026 constructor_pending_elts = t;
8028 break;
8030 else
8032 /* p->balance == -1; growth of right side balances the node. */
8033 p->balance = 0;
8034 break;
8038 r = p;
8039 p = p->parent;
8043 /* Build AVL tree from a sorted chain. */
8045 static void
8046 set_nonincremental_init (struct obstack * braced_init_obstack)
8048 unsigned HOST_WIDE_INT ix;
8049 tree index, value;
8051 if (TREE_CODE (constructor_type) != RECORD_TYPE
8052 && TREE_CODE (constructor_type) != ARRAY_TYPE)
8053 return;
8055 FOR_EACH_CONSTRUCTOR_ELT (constructor_elements, ix, index, value)
8056 add_pending_init (input_location, index, value, NULL_TREE, true,
8057 braced_init_obstack);
8058 constructor_elements = NULL;
8059 if (TREE_CODE (constructor_type) == RECORD_TYPE)
8061 constructor_unfilled_fields = TYPE_FIELDS (constructor_type);
8062 /* Skip any nameless bit fields at the beginning. */
8063 while (constructor_unfilled_fields != 0
8064 && DECL_C_BIT_FIELD (constructor_unfilled_fields)
8065 && DECL_NAME (constructor_unfilled_fields) == 0)
8066 constructor_unfilled_fields = TREE_CHAIN (constructor_unfilled_fields);
8069 else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
8071 if (TYPE_DOMAIN (constructor_type))
8072 constructor_unfilled_index
8073 = convert (bitsizetype,
8074 TYPE_MIN_VALUE (TYPE_DOMAIN (constructor_type)));
8075 else
8076 constructor_unfilled_index = bitsize_zero_node;
8078 constructor_incremental = 0;
8081 /* Build AVL tree from a string constant. */
8083 static void
8084 set_nonincremental_init_from_string (tree str,
8085 struct obstack * braced_init_obstack)
8087 tree value, purpose, type;
8088 HOST_WIDE_INT val[2];
8089 const char *p, *end;
8090 int byte, wchar_bytes, charwidth, bitpos;
8092 gcc_assert (TREE_CODE (constructor_type) == ARRAY_TYPE);
8094 wchar_bytes = TYPE_PRECISION (TREE_TYPE (TREE_TYPE (str))) / BITS_PER_UNIT;
8095 charwidth = TYPE_PRECISION (char_type_node);
8096 type = TREE_TYPE (constructor_type);
8097 p = TREE_STRING_POINTER (str);
8098 end = p + TREE_STRING_LENGTH (str);
8100 for (purpose = bitsize_zero_node;
8101 p < end
8102 && !(constructor_max_index
8103 && tree_int_cst_lt (constructor_max_index, purpose));
8104 purpose = size_binop (PLUS_EXPR, purpose, bitsize_one_node))
8106 if (wchar_bytes == 1)
8108 val[0] = (unsigned char) *p++;
8109 val[1] = 0;
8111 else
8113 val[1] = 0;
8114 val[0] = 0;
8115 for (byte = 0; byte < wchar_bytes; byte++)
8117 if (BYTES_BIG_ENDIAN)
8118 bitpos = (wchar_bytes - byte - 1) * charwidth;
8119 else
8120 bitpos = byte * charwidth;
8121 val[bitpos % HOST_BITS_PER_WIDE_INT]
8122 |= ((unsigned HOST_WIDE_INT) ((unsigned char) *p++))
8123 << (bitpos % HOST_BITS_PER_WIDE_INT);
8127 if (!TYPE_UNSIGNED (type))
8129 bitpos = ((wchar_bytes - 1) * charwidth) + HOST_BITS_PER_CHAR;
8130 if (bitpos < HOST_BITS_PER_WIDE_INT)
8132 if (val[0] & (((HOST_WIDE_INT) 1) << (bitpos - 1)))
8134 val[0] |= ((HOST_WIDE_INT) -1) << bitpos;
8135 val[1] = -1;
8138 else if (bitpos == HOST_BITS_PER_WIDE_INT)
8140 if (val[0] < 0)
8141 val[1] = -1;
8143 else if (val[1] & (((HOST_WIDE_INT) 1)
8144 << (bitpos - 1 - HOST_BITS_PER_WIDE_INT)))
8145 val[1] |= ((HOST_WIDE_INT) -1)
8146 << (bitpos - HOST_BITS_PER_WIDE_INT);
8149 value = wide_int_to_tree (type,
8150 wide_int::from_array (val, 2,
8151 HOST_BITS_PER_WIDE_INT * 2));
8152 add_pending_init (input_location, purpose, value, NULL_TREE, true,
8153 braced_init_obstack);
8156 constructor_incremental = 0;
8159 /* Return value of FIELD in pending initializer or zero if the field was
8160 not initialized yet. */
8162 static tree
8163 find_init_member (tree field, struct obstack * braced_init_obstack)
8165 struct init_node *p;
8167 if (TREE_CODE (constructor_type) == ARRAY_TYPE)
8169 if (constructor_incremental
8170 && tree_int_cst_lt (field, constructor_unfilled_index))
8171 set_nonincremental_init (braced_init_obstack);
8173 p = constructor_pending_elts;
8174 while (p)
8176 if (tree_int_cst_lt (field, p->purpose))
8177 p = p->left;
8178 else if (tree_int_cst_lt (p->purpose, field))
8179 p = p->right;
8180 else
8181 return p->value;
8184 else if (TREE_CODE (constructor_type) == RECORD_TYPE)
8186 tree bitpos = bit_position (field);
8188 if (constructor_incremental
8189 && (!constructor_unfilled_fields
8190 || tree_int_cst_lt (bitpos,
8191 bit_position (constructor_unfilled_fields))))
8192 set_nonincremental_init (braced_init_obstack);
8194 p = constructor_pending_elts;
8195 while (p)
8197 if (field == p->purpose)
8198 return p->value;
8199 else if (tree_int_cst_lt (bitpos, bit_position (p->purpose)))
8200 p = p->left;
8201 else
8202 p = p->right;
8205 else if (TREE_CODE (constructor_type) == UNION_TYPE)
8207 if (!vec_safe_is_empty (constructor_elements)
8208 && (constructor_elements->last ().index == field))
8209 return constructor_elements->last ().value;
8211 return 0;
8214 /* "Output" the next constructor element.
8215 At top level, really output it to assembler code now.
8216 Otherwise, collect it in a list from which we will make a CONSTRUCTOR.
8217 If ORIGTYPE is not NULL_TREE, it is the original type of VALUE.
8218 TYPE is the data type that the containing data type wants here.
8219 FIELD is the field (a FIELD_DECL) or the index that this element fills.
8220 If VALUE is a string constant, STRICT_STRING is true if it is
8221 unparenthesized or we should not warn here for it being parenthesized.
8222 For other types of VALUE, STRICT_STRING is not used.
8224 PENDING if non-nil means output pending elements that belong
8225 right after this element. (PENDING is normally 1;
8226 it is 0 while outputting pending elements, to avoid recursion.)
8228 IMPLICIT is true if value comes from pop_init_level (1),
8229 the new initializer has been merged with the existing one
8230 and thus no warnings should be emitted about overriding an
8231 existing initializer. */
8233 static void
8234 output_init_element (location_t loc, tree value, tree origtype,
8235 bool strict_string, tree type, tree field, int pending,
8236 bool implicit, struct obstack * braced_init_obstack)
8238 tree semantic_type = NULL_TREE;
8239 bool maybe_const = true;
8240 bool npc;
8242 if (type == error_mark_node || value == error_mark_node)
8244 constructor_erroneous = 1;
8245 return;
8247 if (TREE_CODE (TREE_TYPE (value)) == ARRAY_TYPE
8248 && (TREE_CODE (value) == STRING_CST
8249 || TREE_CODE (value) == COMPOUND_LITERAL_EXPR)
8250 && !(TREE_CODE (value) == STRING_CST
8251 && TREE_CODE (type) == ARRAY_TYPE
8252 && INTEGRAL_TYPE_P (TREE_TYPE (type)))
8253 && !comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (value)),
8254 TYPE_MAIN_VARIANT (type)))
8255 value = array_to_pointer_conversion (input_location, value);
8257 if (TREE_CODE (value) == COMPOUND_LITERAL_EXPR
8258 && require_constant_value && !flag_isoc99 && pending)
8260 /* As an extension, allow initializing objects with static storage
8261 duration with compound literals (which are then treated just as
8262 the brace enclosed list they contain). */
8263 tree decl = COMPOUND_LITERAL_EXPR_DECL (value);
8264 value = DECL_INITIAL (decl);
8267 npc = null_pointer_constant_p (value);
8268 if (TREE_CODE (value) == EXCESS_PRECISION_EXPR)
8270 semantic_type = TREE_TYPE (value);
8271 value = TREE_OPERAND (value, 0);
8273 value = c_fully_fold (value, require_constant_value, &maybe_const);
8275 if (value == error_mark_node)
8276 constructor_erroneous = 1;
8277 else if (!TREE_CONSTANT (value))
8278 constructor_constant = 0;
8279 else if (!initializer_constant_valid_p (value, TREE_TYPE (value))
8280 || ((TREE_CODE (constructor_type) == RECORD_TYPE
8281 || TREE_CODE (constructor_type) == UNION_TYPE)
8282 && DECL_C_BIT_FIELD (field)
8283 && TREE_CODE (value) != INTEGER_CST))
8284 constructor_simple = 0;
8285 if (!maybe_const)
8286 constructor_nonconst = 1;
8288 if (!initializer_constant_valid_p (value, TREE_TYPE (value)))
8290 if (require_constant_value)
8292 error_init (loc, "initializer element is not constant");
8293 value = error_mark_node;
8295 else if (require_constant_elements)
8296 pedwarn (loc, OPT_Wpedantic,
8297 "initializer element is not computable at load time");
8299 else if (!maybe_const
8300 && (require_constant_value || require_constant_elements))
8301 pedwarn_init (loc, OPT_Wpedantic,
8302 "initializer element is not a constant expression");
8304 /* Issue -Wc++-compat warnings about initializing a bitfield with
8305 enum type. */
8306 if (warn_cxx_compat
8307 && field != NULL_TREE
8308 && TREE_CODE (field) == FIELD_DECL
8309 && DECL_BIT_FIELD_TYPE (field) != NULL_TREE
8310 && (TYPE_MAIN_VARIANT (DECL_BIT_FIELD_TYPE (field))
8311 != TYPE_MAIN_VARIANT (type))
8312 && TREE_CODE (DECL_BIT_FIELD_TYPE (field)) == ENUMERAL_TYPE)
8314 tree checktype = origtype != NULL_TREE ? origtype : TREE_TYPE (value);
8315 if (checktype != error_mark_node
8316 && (TYPE_MAIN_VARIANT (checktype)
8317 != TYPE_MAIN_VARIANT (DECL_BIT_FIELD_TYPE (field))))
8318 warning_init (loc, OPT_Wc___compat,
8319 "enum conversion in initialization is invalid in C++");
8322 /* If this field is empty (and not at the end of structure),
8323 don't do anything other than checking the initializer. */
8324 if (field
8325 && (TREE_TYPE (field) == error_mark_node
8326 || (COMPLETE_TYPE_P (TREE_TYPE (field))
8327 && integer_zerop (TYPE_SIZE (TREE_TYPE (field)))
8328 && (TREE_CODE (constructor_type) == ARRAY_TYPE
8329 || DECL_CHAIN (field)))))
8330 return;
8332 if (semantic_type)
8333 value = build1 (EXCESS_PRECISION_EXPR, semantic_type, value);
8334 value = digest_init (loc, type, value, origtype, npc, strict_string,
8335 require_constant_value);
8336 if (value == error_mark_node)
8338 constructor_erroneous = 1;
8339 return;
8341 if (require_constant_value || require_constant_elements)
8342 constant_expression_warning (value);
8344 /* If this element doesn't come next in sequence,
8345 put it on constructor_pending_elts. */
8346 if (TREE_CODE (constructor_type) == ARRAY_TYPE
8347 && (!constructor_incremental
8348 || !tree_int_cst_equal (field, constructor_unfilled_index)))
8350 if (constructor_incremental
8351 && tree_int_cst_lt (field, constructor_unfilled_index))
8352 set_nonincremental_init (braced_init_obstack);
8354 add_pending_init (loc, field, value, origtype, implicit,
8355 braced_init_obstack);
8356 return;
8358 else if (TREE_CODE (constructor_type) == RECORD_TYPE
8359 && (!constructor_incremental
8360 || field != constructor_unfilled_fields))
8362 /* We do this for records but not for unions. In a union,
8363 no matter which field is specified, it can be initialized
8364 right away since it starts at the beginning of the union. */
8365 if (constructor_incremental)
8367 if (!constructor_unfilled_fields)
8368 set_nonincremental_init (braced_init_obstack);
8369 else
8371 tree bitpos, unfillpos;
8373 bitpos = bit_position (field);
8374 unfillpos = bit_position (constructor_unfilled_fields);
8376 if (tree_int_cst_lt (bitpos, unfillpos))
8377 set_nonincremental_init (braced_init_obstack);
8381 add_pending_init (loc, field, value, origtype, implicit,
8382 braced_init_obstack);
8383 return;
8385 else if (TREE_CODE (constructor_type) == UNION_TYPE
8386 && !vec_safe_is_empty (constructor_elements))
8388 if (!implicit)
8390 if (TREE_SIDE_EFFECTS (constructor_elements->last ().value))
8391 warning_init (loc, 0,
8392 "initialized field with side-effects overwritten");
8393 else if (warn_override_init)
8394 warning_init (loc, OPT_Woverride_init,
8395 "initialized field overwritten");
8398 /* We can have just one union field set. */
8399 constructor_elements = NULL;
8402 /* Otherwise, output this element either to
8403 constructor_elements or to the assembler file. */
8405 constructor_elt celt = {field, value};
8406 vec_safe_push (constructor_elements, celt);
8408 /* Advance the variable that indicates sequential elements output. */
8409 if (TREE_CODE (constructor_type) == ARRAY_TYPE)
8410 constructor_unfilled_index
8411 = size_binop_loc (input_location, PLUS_EXPR, constructor_unfilled_index,
8412 bitsize_one_node);
8413 else if (TREE_CODE (constructor_type) == RECORD_TYPE)
8415 constructor_unfilled_fields
8416 = DECL_CHAIN (constructor_unfilled_fields);
8418 /* Skip any nameless bit fields. */
8419 while (constructor_unfilled_fields != 0
8420 && DECL_C_BIT_FIELD (constructor_unfilled_fields)
8421 && DECL_NAME (constructor_unfilled_fields) == 0)
8422 constructor_unfilled_fields =
8423 DECL_CHAIN (constructor_unfilled_fields);
8425 else if (TREE_CODE (constructor_type) == UNION_TYPE)
8426 constructor_unfilled_fields = 0;
8428 /* Now output any pending elements which have become next. */
8429 if (pending)
8430 output_pending_init_elements (0, braced_init_obstack);
8433 /* Output any pending elements which have become next.
8434 As we output elements, constructor_unfilled_{fields,index}
8435 advances, which may cause other elements to become next;
8436 if so, they too are output.
8438 If ALL is 0, we return when there are
8439 no more pending elements to output now.
8441 If ALL is 1, we output space as necessary so that
8442 we can output all the pending elements. */
8443 static void
8444 output_pending_init_elements (int all, struct obstack * braced_init_obstack)
8446 struct init_node *elt = constructor_pending_elts;
8447 tree next;
8449 retry:
8451 /* Look through the whole pending tree.
8452 If we find an element that should be output now,
8453 output it. Otherwise, set NEXT to the element
8454 that comes first among those still pending. */
8456 next = 0;
8457 while (elt)
8459 if (TREE_CODE (constructor_type) == ARRAY_TYPE)
8461 if (tree_int_cst_equal (elt->purpose,
8462 constructor_unfilled_index))
8463 output_init_element (input_location, elt->value, elt->origtype,
8464 true, TREE_TYPE (constructor_type),
8465 constructor_unfilled_index, 0, false,
8466 braced_init_obstack);
8467 else if (tree_int_cst_lt (constructor_unfilled_index,
8468 elt->purpose))
8470 /* Advance to the next smaller node. */
8471 if (elt->left)
8472 elt = elt->left;
8473 else
8475 /* We have reached the smallest node bigger than the
8476 current unfilled index. Fill the space first. */
8477 next = elt->purpose;
8478 break;
8481 else
8483 /* Advance to the next bigger node. */
8484 if (elt->right)
8485 elt = elt->right;
8486 else
8488 /* We have reached the biggest node in a subtree. Find
8489 the parent of it, which is the next bigger node. */
8490 while (elt->parent && elt->parent->right == elt)
8491 elt = elt->parent;
8492 elt = elt->parent;
8493 if (elt && tree_int_cst_lt (constructor_unfilled_index,
8494 elt->purpose))
8496 next = elt->purpose;
8497 break;
8502 else if (TREE_CODE (constructor_type) == RECORD_TYPE
8503 || TREE_CODE (constructor_type) == UNION_TYPE)
8505 tree ctor_unfilled_bitpos, elt_bitpos;
8507 /* If the current record is complete we are done. */
8508 if (constructor_unfilled_fields == 0)
8509 break;
8511 ctor_unfilled_bitpos = bit_position (constructor_unfilled_fields);
8512 elt_bitpos = bit_position (elt->purpose);
8513 /* We can't compare fields here because there might be empty
8514 fields in between. */
8515 if (tree_int_cst_equal (elt_bitpos, ctor_unfilled_bitpos))
8517 constructor_unfilled_fields = elt->purpose;
8518 output_init_element (input_location, elt->value, elt->origtype,
8519 true, TREE_TYPE (elt->purpose),
8520 elt->purpose, 0, false,
8521 braced_init_obstack);
8523 else if (tree_int_cst_lt (ctor_unfilled_bitpos, elt_bitpos))
8525 /* Advance to the next smaller node. */
8526 if (elt->left)
8527 elt = elt->left;
8528 else
8530 /* We have reached the smallest node bigger than the
8531 current unfilled field. Fill the space first. */
8532 next = elt->purpose;
8533 break;
8536 else
8538 /* Advance to the next bigger node. */
8539 if (elt->right)
8540 elt = elt->right;
8541 else
8543 /* We have reached the biggest node in a subtree. Find
8544 the parent of it, which is the next bigger node. */
8545 while (elt->parent && elt->parent->right == elt)
8546 elt = elt->parent;
8547 elt = elt->parent;
8548 if (elt
8549 && (tree_int_cst_lt (ctor_unfilled_bitpos,
8550 bit_position (elt->purpose))))
8552 next = elt->purpose;
8553 break;
8560 /* Ordinarily return, but not if we want to output all
8561 and there are elements left. */
8562 if (!(all && next != 0))
8563 return;
8565 /* If it's not incremental, just skip over the gap, so that after
8566 jumping to retry we will output the next successive element. */
8567 if (TREE_CODE (constructor_type) == RECORD_TYPE
8568 || TREE_CODE (constructor_type) == UNION_TYPE)
8569 constructor_unfilled_fields = next;
8570 else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
8571 constructor_unfilled_index = next;
8573 /* ELT now points to the node in the pending tree with the next
8574 initializer to output. */
8575 goto retry;
8578 /* Add one non-braced element to the current constructor level.
8579 This adjusts the current position within the constructor's type.
8580 This may also start or terminate implicit levels
8581 to handle a partly-braced initializer.
8583 Once this has found the correct level for the new element,
8584 it calls output_init_element.
8586 IMPLICIT is true if value comes from pop_init_level (1),
8587 the new initializer has been merged with the existing one
8588 and thus no warnings should be emitted about overriding an
8589 existing initializer. */
8591 void
8592 process_init_element (location_t loc, struct c_expr value, bool implicit,
8593 struct obstack * braced_init_obstack)
8595 tree orig_value = value.value;
8596 int string_flag = orig_value != 0 && TREE_CODE (orig_value) == STRING_CST;
8597 bool strict_string = value.original_code == STRING_CST;
8598 bool was_designated = designator_depth != 0;
8600 designator_depth = 0;
8601 designator_erroneous = 0;
8603 /* Handle superfluous braces around string cst as in
8604 char x[] = {"foo"}; */
8605 if (string_flag
8606 && constructor_type
8607 && !was_designated
8608 && TREE_CODE (constructor_type) == ARRAY_TYPE
8609 && INTEGRAL_TYPE_P (TREE_TYPE (constructor_type))
8610 && integer_zerop (constructor_unfilled_index))
8612 if (constructor_stack->replacement_value.value)
8613 error_init (loc, "excess elements in char array initializer");
8614 constructor_stack->replacement_value = value;
8615 return;
8618 if (constructor_stack->replacement_value.value != 0)
8620 error_init (loc, "excess elements in struct initializer");
8621 return;
8624 /* Ignore elements of a brace group if it is entirely superfluous
8625 and has already been diagnosed. */
8626 if (constructor_type == 0)
8627 return;
8629 /* If we've exhausted any levels that didn't have braces,
8630 pop them now. */
8631 while (constructor_stack->implicit)
8633 if ((TREE_CODE (constructor_type) == RECORD_TYPE
8634 || TREE_CODE (constructor_type) == UNION_TYPE)
8635 && constructor_fields == 0)
8636 process_init_element (loc,
8637 pop_init_level (loc, 1, braced_init_obstack),
8638 true, braced_init_obstack);
8639 else if ((TREE_CODE (constructor_type) == ARRAY_TYPE
8640 || TREE_CODE (constructor_type) == VECTOR_TYPE)
8641 && constructor_max_index
8642 && tree_int_cst_lt (constructor_max_index,
8643 constructor_index))
8644 process_init_element (loc,
8645 pop_init_level (loc, 1, braced_init_obstack),
8646 true, braced_init_obstack);
8647 else
8648 break;
8651 /* In the case of [LO ... HI] = VALUE, only evaluate VALUE once. */
8652 if (constructor_range_stack)
8654 /* If value is a compound literal and we'll be just using its
8655 content, don't put it into a SAVE_EXPR. */
8656 if (TREE_CODE (value.value) != COMPOUND_LITERAL_EXPR
8657 || !require_constant_value
8658 || flag_isoc99)
8660 tree semantic_type = NULL_TREE;
8661 if (TREE_CODE (value.value) == EXCESS_PRECISION_EXPR)
8663 semantic_type = TREE_TYPE (value.value);
8664 value.value = TREE_OPERAND (value.value, 0);
8666 value.value = c_save_expr (value.value);
8667 if (semantic_type)
8668 value.value = build1 (EXCESS_PRECISION_EXPR, semantic_type,
8669 value.value);
8673 while (1)
8675 if (TREE_CODE (constructor_type) == RECORD_TYPE)
8677 tree fieldtype;
8678 enum tree_code fieldcode;
8680 if (constructor_fields == 0)
8682 pedwarn_init (loc, 0, "excess elements in struct initializer");
8683 break;
8686 fieldtype = TREE_TYPE (constructor_fields);
8687 if (fieldtype != error_mark_node)
8688 fieldtype = TYPE_MAIN_VARIANT (fieldtype);
8689 fieldcode = TREE_CODE (fieldtype);
8691 /* Error for non-static initialization of a flexible array member. */
8692 if (fieldcode == ARRAY_TYPE
8693 && !require_constant_value
8694 && TYPE_SIZE (fieldtype) == NULL_TREE
8695 && DECL_CHAIN (constructor_fields) == NULL_TREE)
8697 error_init (loc, "non-static initialization of a flexible "
8698 "array member");
8699 break;
8702 /* Accept a string constant to initialize a subarray. */
8703 if (value.value != 0
8704 && fieldcode == ARRAY_TYPE
8705 && INTEGRAL_TYPE_P (TREE_TYPE (fieldtype))
8706 && string_flag)
8707 value.value = orig_value;
8708 /* Otherwise, if we have come to a subaggregate,
8709 and we don't have an element of its type, push into it. */
8710 else if (value.value != 0
8711 && value.value != error_mark_node
8712 && TYPE_MAIN_VARIANT (TREE_TYPE (value.value)) != fieldtype
8713 && (fieldcode == RECORD_TYPE || fieldcode == ARRAY_TYPE
8714 || fieldcode == UNION_TYPE || fieldcode == VECTOR_TYPE))
8716 push_init_level (loc, 1, braced_init_obstack);
8717 continue;
8720 if (value.value)
8722 push_member_name (constructor_fields);
8723 output_init_element (loc, value.value, value.original_type,
8724 strict_string, fieldtype,
8725 constructor_fields, 1, implicit,
8726 braced_init_obstack);
8727 RESTORE_SPELLING_DEPTH (constructor_depth);
8729 else
8730 /* Do the bookkeeping for an element that was
8731 directly output as a constructor. */
8733 /* For a record, keep track of end position of last field. */
8734 if (DECL_SIZE (constructor_fields))
8735 constructor_bit_index
8736 = size_binop_loc (input_location, PLUS_EXPR,
8737 bit_position (constructor_fields),
8738 DECL_SIZE (constructor_fields));
8740 /* If the current field was the first one not yet written out,
8741 it isn't now, so update. */
8742 if (constructor_unfilled_fields == constructor_fields)
8744 constructor_unfilled_fields = DECL_CHAIN (constructor_fields);
8745 /* Skip any nameless bit fields. */
8746 while (constructor_unfilled_fields != 0
8747 && DECL_C_BIT_FIELD (constructor_unfilled_fields)
8748 && DECL_NAME (constructor_unfilled_fields) == 0)
8749 constructor_unfilled_fields =
8750 DECL_CHAIN (constructor_unfilled_fields);
8754 constructor_fields = DECL_CHAIN (constructor_fields);
8755 /* Skip any nameless bit fields at the beginning. */
8756 while (constructor_fields != 0
8757 && DECL_C_BIT_FIELD (constructor_fields)
8758 && DECL_NAME (constructor_fields) == 0)
8759 constructor_fields = DECL_CHAIN (constructor_fields);
8761 else if (TREE_CODE (constructor_type) == UNION_TYPE)
8763 tree fieldtype;
8764 enum tree_code fieldcode;
8766 if (constructor_fields == 0)
8768 pedwarn_init (loc, 0,
8769 "excess elements in union initializer");
8770 break;
8773 fieldtype = TREE_TYPE (constructor_fields);
8774 if (fieldtype != error_mark_node)
8775 fieldtype = TYPE_MAIN_VARIANT (fieldtype);
8776 fieldcode = TREE_CODE (fieldtype);
8778 /* Warn that traditional C rejects initialization of unions.
8779 We skip the warning if the value is zero. This is done
8780 under the assumption that the zero initializer in user
8781 code appears conditioned on e.g. __STDC__ to avoid
8782 "missing initializer" warnings and relies on default
8783 initialization to zero in the traditional C case.
8784 We also skip the warning if the initializer is designated,
8785 again on the assumption that this must be conditional on
8786 __STDC__ anyway (and we've already complained about the
8787 member-designator already). */
8788 if (!in_system_header_at (input_location) && !constructor_designated
8789 && !(value.value && (integer_zerop (value.value)
8790 || real_zerop (value.value))))
8791 warning (OPT_Wtraditional, "traditional C rejects initialization "
8792 "of unions");
8794 /* Accept a string constant to initialize a subarray. */
8795 if (value.value != 0
8796 && fieldcode == ARRAY_TYPE
8797 && INTEGRAL_TYPE_P (TREE_TYPE (fieldtype))
8798 && string_flag)
8799 value.value = orig_value;
8800 /* Otherwise, if we have come to a subaggregate,
8801 and we don't have an element of its type, push into it. */
8802 else if (value.value != 0
8803 && value.value != error_mark_node
8804 && TYPE_MAIN_VARIANT (TREE_TYPE (value.value)) != fieldtype
8805 && (fieldcode == RECORD_TYPE || fieldcode == ARRAY_TYPE
8806 || fieldcode == UNION_TYPE || fieldcode == VECTOR_TYPE))
8808 push_init_level (loc, 1, braced_init_obstack);
8809 continue;
8812 if (value.value)
8814 push_member_name (constructor_fields);
8815 output_init_element (loc, value.value, value.original_type,
8816 strict_string, fieldtype,
8817 constructor_fields, 1, implicit,
8818 braced_init_obstack);
8819 RESTORE_SPELLING_DEPTH (constructor_depth);
8821 else
8822 /* Do the bookkeeping for an element that was
8823 directly output as a constructor. */
8825 constructor_bit_index = DECL_SIZE (constructor_fields);
8826 constructor_unfilled_fields = DECL_CHAIN (constructor_fields);
8829 constructor_fields = 0;
8831 else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
8833 tree elttype = TYPE_MAIN_VARIANT (TREE_TYPE (constructor_type));
8834 enum tree_code eltcode = TREE_CODE (elttype);
8836 /* Accept a string constant to initialize a subarray. */
8837 if (value.value != 0
8838 && eltcode == ARRAY_TYPE
8839 && INTEGRAL_TYPE_P (TREE_TYPE (elttype))
8840 && string_flag)
8841 value.value = orig_value;
8842 /* Otherwise, if we have come to a subaggregate,
8843 and we don't have an element of its type, push into it. */
8844 else if (value.value != 0
8845 && value.value != error_mark_node
8846 && TYPE_MAIN_VARIANT (TREE_TYPE (value.value)) != elttype
8847 && (eltcode == RECORD_TYPE || eltcode == ARRAY_TYPE
8848 || eltcode == UNION_TYPE || eltcode == VECTOR_TYPE))
8850 push_init_level (loc, 1, braced_init_obstack);
8851 continue;
8854 if (constructor_max_index != 0
8855 && (tree_int_cst_lt (constructor_max_index, constructor_index)
8856 || integer_all_onesp (constructor_max_index)))
8858 pedwarn_init (loc, 0,
8859 "excess elements in array initializer");
8860 break;
8863 /* Now output the actual element. */
8864 if (value.value)
8866 push_array_bounds (tree_to_uhwi (constructor_index));
8867 output_init_element (loc, value.value, value.original_type,
8868 strict_string, elttype,
8869 constructor_index, 1, implicit,
8870 braced_init_obstack);
8871 RESTORE_SPELLING_DEPTH (constructor_depth);
8874 constructor_index
8875 = size_binop_loc (input_location, PLUS_EXPR,
8876 constructor_index, bitsize_one_node);
8878 if (!value.value)
8879 /* If we are doing the bookkeeping for an element that was
8880 directly output as a constructor, we must update
8881 constructor_unfilled_index. */
8882 constructor_unfilled_index = constructor_index;
8884 else if (TREE_CODE (constructor_type) == VECTOR_TYPE)
8886 tree elttype = TYPE_MAIN_VARIANT (TREE_TYPE (constructor_type));
8888 /* Do a basic check of initializer size. Note that vectors
8889 always have a fixed size derived from their type. */
8890 if (tree_int_cst_lt (constructor_max_index, constructor_index))
8892 pedwarn_init (loc, 0,
8893 "excess elements in vector initializer");
8894 break;
8897 /* Now output the actual element. */
8898 if (value.value)
8900 if (TREE_CODE (value.value) == VECTOR_CST)
8901 elttype = TYPE_MAIN_VARIANT (constructor_type);
8902 output_init_element (loc, value.value, value.original_type,
8903 strict_string, elttype,
8904 constructor_index, 1, implicit,
8905 braced_init_obstack);
8908 constructor_index
8909 = size_binop_loc (input_location,
8910 PLUS_EXPR, constructor_index, bitsize_one_node);
8912 if (!value.value)
8913 /* If we are doing the bookkeeping for an element that was
8914 directly output as a constructor, we must update
8915 constructor_unfilled_index. */
8916 constructor_unfilled_index = constructor_index;
8919 /* Handle the sole element allowed in a braced initializer
8920 for a scalar variable. */
8921 else if (constructor_type != error_mark_node
8922 && constructor_fields == 0)
8924 pedwarn_init (loc, 0,
8925 "excess elements in scalar initializer");
8926 break;
8928 else
8930 if (value.value)
8931 output_init_element (loc, value.value, value.original_type,
8932 strict_string, constructor_type,
8933 NULL_TREE, 1, implicit,
8934 braced_init_obstack);
8935 constructor_fields = 0;
8938 /* Handle range initializers either at this level or anywhere higher
8939 in the designator stack. */
8940 if (constructor_range_stack)
8942 struct constructor_range_stack *p, *range_stack;
8943 int finish = 0;
8945 range_stack = constructor_range_stack;
8946 constructor_range_stack = 0;
8947 while (constructor_stack != range_stack->stack)
8949 gcc_assert (constructor_stack->implicit);
8950 process_init_element (loc,
8951 pop_init_level (loc, 1,
8952 braced_init_obstack),
8953 true, braced_init_obstack);
8955 for (p = range_stack;
8956 !p->range_end || tree_int_cst_equal (p->index, p->range_end);
8957 p = p->prev)
8959 gcc_assert (constructor_stack->implicit);
8960 process_init_element (loc,
8961 pop_init_level (loc, 1,
8962 braced_init_obstack),
8963 true, braced_init_obstack);
8966 p->index = size_binop_loc (input_location,
8967 PLUS_EXPR, p->index, bitsize_one_node);
8968 if (tree_int_cst_equal (p->index, p->range_end) && !p->prev)
8969 finish = 1;
8971 while (1)
8973 constructor_index = p->index;
8974 constructor_fields = p->fields;
8975 if (finish && p->range_end && p->index == p->range_start)
8977 finish = 0;
8978 p->prev = 0;
8980 p = p->next;
8981 if (!p)
8982 break;
8983 push_init_level (loc, 2, braced_init_obstack);
8984 p->stack = constructor_stack;
8985 if (p->range_end && tree_int_cst_equal (p->index, p->range_end))
8986 p->index = p->range_start;
8989 if (!finish)
8990 constructor_range_stack = range_stack;
8991 continue;
8994 break;
8997 constructor_range_stack = 0;
9000 /* Build a complete asm-statement, whose components are a CV_QUALIFIER
9001 (guaranteed to be 'volatile' or null) and ARGS (represented using
9002 an ASM_EXPR node). */
9003 tree
9004 build_asm_stmt (tree cv_qualifier, tree args)
9006 if (!ASM_VOLATILE_P (args) && cv_qualifier)
9007 ASM_VOLATILE_P (args) = 1;
9008 return add_stmt (args);
9011 /* Build an asm-expr, whose components are a STRING, some OUTPUTS,
9012 some INPUTS, and some CLOBBERS. The latter three may be NULL.
9013 SIMPLE indicates whether there was anything at all after the
9014 string in the asm expression -- asm("blah") and asm("blah" : )
9015 are subtly different. We use a ASM_EXPR node to represent this. */
9016 tree
9017 build_asm_expr (location_t loc, tree string, tree outputs, tree inputs,
9018 tree clobbers, tree labels, bool simple)
9020 tree tail;
9021 tree args;
9022 int i;
9023 const char *constraint;
9024 const char **oconstraints;
9025 bool allows_mem, allows_reg, is_inout;
9026 int ninputs, noutputs;
9028 ninputs = list_length (inputs);
9029 noutputs = list_length (outputs);
9030 oconstraints = (const char **) alloca (noutputs * sizeof (const char *));
9032 string = resolve_asm_operand_names (string, outputs, inputs, labels);
9034 /* Remove output conversions that change the type but not the mode. */
9035 for (i = 0, tail = outputs; tail; ++i, tail = TREE_CHAIN (tail))
9037 tree output = TREE_VALUE (tail);
9039 output = c_fully_fold (output, false, NULL);
9041 /* ??? Really, this should not be here. Users should be using a
9042 proper lvalue, dammit. But there's a long history of using casts
9043 in the output operands. In cases like longlong.h, this becomes a
9044 primitive form of typechecking -- if the cast can be removed, then
9045 the output operand had a type of the proper width; otherwise we'll
9046 get an error. Gross, but ... */
9047 STRIP_NOPS (output);
9049 if (!lvalue_or_else (loc, output, lv_asm))
9050 output = error_mark_node;
9052 if (output != error_mark_node
9053 && (TREE_READONLY (output)
9054 || TYPE_READONLY (TREE_TYPE (output))
9055 || ((TREE_CODE (TREE_TYPE (output)) == RECORD_TYPE
9056 || TREE_CODE (TREE_TYPE (output)) == UNION_TYPE)
9057 && C_TYPE_FIELDS_READONLY (TREE_TYPE (output)))))
9058 readonly_error (loc, output, lv_asm);
9060 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (tail)));
9061 oconstraints[i] = constraint;
9063 if (parse_output_constraint (&constraint, i, ninputs, noutputs,
9064 &allows_mem, &allows_reg, &is_inout))
9066 /* If the operand is going to end up in memory,
9067 mark it addressable. */
9068 if (!allows_reg && !c_mark_addressable (output))
9069 output = error_mark_node;
9070 if (!(!allows_reg && allows_mem)
9071 && output != error_mark_node
9072 && VOID_TYPE_P (TREE_TYPE (output)))
9074 error_at (loc, "invalid use of void expression");
9075 output = error_mark_node;
9078 else
9079 output = error_mark_node;
9081 TREE_VALUE (tail) = output;
9084 for (i = 0, tail = inputs; tail; ++i, tail = TREE_CHAIN (tail))
9086 tree input;
9088 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (tail)));
9089 input = TREE_VALUE (tail);
9091 if (parse_input_constraint (&constraint, i, ninputs, noutputs, 0,
9092 oconstraints, &allows_mem, &allows_reg))
9094 /* If the operand is going to end up in memory,
9095 mark it addressable. */
9096 if (!allows_reg && allows_mem)
9098 input = c_fully_fold (input, false, NULL);
9100 /* Strip the nops as we allow this case. FIXME, this really
9101 should be rejected or made deprecated. */
9102 STRIP_NOPS (input);
9103 if (!c_mark_addressable (input))
9104 input = error_mark_node;
9106 else
9108 struct c_expr expr;
9109 memset (&expr, 0, sizeof (expr));
9110 expr.value = input;
9111 expr = convert_lvalue_to_rvalue (loc, expr, true, false);
9112 input = c_fully_fold (expr.value, false, NULL);
9114 if (input != error_mark_node && VOID_TYPE_P (TREE_TYPE (input)))
9116 error_at (loc, "invalid use of void expression");
9117 input = error_mark_node;
9121 else
9122 input = error_mark_node;
9124 TREE_VALUE (tail) = input;
9127 /* ASMs with labels cannot have outputs. This should have been
9128 enforced by the parser. */
9129 gcc_assert (outputs == NULL || labels == NULL);
9131 args = build_stmt (loc, ASM_EXPR, string, outputs, inputs, clobbers, labels);
9133 /* asm statements without outputs, including simple ones, are treated
9134 as volatile. */
9135 ASM_INPUT_P (args) = simple;
9136 ASM_VOLATILE_P (args) = (noutputs == 0);
9138 return args;
9141 /* Generate a goto statement to LABEL. LOC is the location of the
9142 GOTO. */
9144 tree
9145 c_finish_goto_label (location_t loc, tree label)
9147 tree decl = lookup_label_for_goto (loc, label);
9148 if (!decl)
9149 return NULL_TREE;
9150 TREE_USED (decl) = 1;
9152 tree t = build1 (GOTO_EXPR, void_type_node, decl);
9153 SET_EXPR_LOCATION (t, loc);
9154 return add_stmt (t);
9158 /* Generate a computed goto statement to EXPR. LOC is the location of
9159 the GOTO. */
9161 tree
9162 c_finish_goto_ptr (location_t loc, tree expr)
9164 tree t;
9165 pedwarn (loc, OPT_Wpedantic, "ISO C forbids %<goto *expr;%>");
9166 expr = c_fully_fold (expr, false, NULL);
9167 expr = convert (ptr_type_node, expr);
9168 t = build1 (GOTO_EXPR, void_type_node, expr);
9169 SET_EXPR_LOCATION (t, loc);
9170 return add_stmt (t);
9173 /* Generate a C `return' statement. RETVAL is the expression for what
9174 to return, or a null pointer for `return;' with no value. LOC is
9175 the location of the return statement. If ORIGTYPE is not NULL_TREE, it
9176 is the original type of RETVAL. */
9178 tree
9179 c_finish_return (location_t loc, tree retval, tree origtype)
9181 tree valtype = TREE_TYPE (TREE_TYPE (current_function_decl)), ret_stmt;
9182 bool no_warning = false;
9183 bool npc = false;
9184 size_t rank = 0;
9186 if (TREE_THIS_VOLATILE (current_function_decl))
9187 warning_at (loc, 0,
9188 "function declared %<noreturn%> has a %<return%> statement");
9190 if (flag_cilkplus && contains_array_notation_expr (retval))
9192 /* Array notations are allowed in a return statement if it is inside a
9193 built-in array notation reduction function. */
9194 if (!find_rank (loc, retval, retval, false, &rank))
9195 return error_mark_node;
9196 if (rank >= 1)
9198 error_at (loc, "array notation expression cannot be used as a "
9199 "return value");
9200 return error_mark_node;
9203 if (flag_cilkplus && retval && contains_cilk_spawn_stmt (retval))
9205 error_at (loc, "use of %<_Cilk_spawn%> in a return statement is not "
9206 "allowed");
9207 return error_mark_node;
9209 if (retval)
9211 tree semantic_type = NULL_TREE;
9212 npc = null_pointer_constant_p (retval);
9213 if (TREE_CODE (retval) == EXCESS_PRECISION_EXPR)
9215 semantic_type = TREE_TYPE (retval);
9216 retval = TREE_OPERAND (retval, 0);
9218 retval = c_fully_fold (retval, false, NULL);
9219 if (semantic_type)
9220 retval = build1 (EXCESS_PRECISION_EXPR, semantic_type, retval);
9223 if (!retval)
9225 current_function_returns_null = 1;
9226 if ((warn_return_type || flag_isoc99)
9227 && valtype != 0 && TREE_CODE (valtype) != VOID_TYPE)
9229 pedwarn_c99 (loc, flag_isoc99 ? 0 : OPT_Wreturn_type,
9230 "%<return%> with no value, in "
9231 "function returning non-void");
9232 no_warning = true;
9235 else if (valtype == 0 || TREE_CODE (valtype) == VOID_TYPE)
9237 current_function_returns_null = 1;
9238 if (TREE_CODE (TREE_TYPE (retval)) != VOID_TYPE)
9239 pedwarn (loc, 0,
9240 "%<return%> with a value, in function returning void");
9241 else
9242 pedwarn (loc, OPT_Wpedantic, "ISO C forbids "
9243 "%<return%> with expression, in function returning void");
9245 else
9247 tree t = convert_for_assignment (loc, UNKNOWN_LOCATION, valtype,
9248 retval, origtype, ic_return,
9249 npc, NULL_TREE, NULL_TREE, 0);
9250 tree res = DECL_RESULT (current_function_decl);
9251 tree inner;
9252 bool save;
9254 current_function_returns_value = 1;
9255 if (t == error_mark_node)
9256 return NULL_TREE;
9258 save = in_late_binary_op;
9259 if (TREE_CODE (TREE_TYPE (res)) == BOOLEAN_TYPE
9260 || TREE_CODE (TREE_TYPE (res)) == COMPLEX_TYPE)
9261 in_late_binary_op = true;
9262 inner = t = convert (TREE_TYPE (res), t);
9263 in_late_binary_op = save;
9265 /* Strip any conversions, additions, and subtractions, and see if
9266 we are returning the address of a local variable. Warn if so. */
9267 while (1)
9269 switch (TREE_CODE (inner))
9271 CASE_CONVERT:
9272 case NON_LVALUE_EXPR:
9273 case PLUS_EXPR:
9274 case POINTER_PLUS_EXPR:
9275 inner = TREE_OPERAND (inner, 0);
9276 continue;
9278 case MINUS_EXPR:
9279 /* If the second operand of the MINUS_EXPR has a pointer
9280 type (or is converted from it), this may be valid, so
9281 don't give a warning. */
9283 tree op1 = TREE_OPERAND (inner, 1);
9285 while (!POINTER_TYPE_P (TREE_TYPE (op1))
9286 && (CONVERT_EXPR_P (op1)
9287 || TREE_CODE (op1) == NON_LVALUE_EXPR))
9288 op1 = TREE_OPERAND (op1, 0);
9290 if (POINTER_TYPE_P (TREE_TYPE (op1)))
9291 break;
9293 inner = TREE_OPERAND (inner, 0);
9294 continue;
9297 case ADDR_EXPR:
9298 inner = TREE_OPERAND (inner, 0);
9300 while (REFERENCE_CLASS_P (inner)
9301 && TREE_CODE (inner) != INDIRECT_REF)
9302 inner = TREE_OPERAND (inner, 0);
9304 if (DECL_P (inner)
9305 && !DECL_EXTERNAL (inner)
9306 && !TREE_STATIC (inner)
9307 && DECL_CONTEXT (inner) == current_function_decl)
9309 if (TREE_CODE (inner) == LABEL_DECL)
9310 warning_at (loc, OPT_Wreturn_local_addr,
9311 "function returns address of label");
9312 else
9313 warning_at (loc, OPT_Wreturn_local_addr,
9314 "function returns address of local variable");
9316 break;
9318 default:
9319 break;
9322 break;
9325 retval = build2 (MODIFY_EXPR, TREE_TYPE (res), res, t);
9326 SET_EXPR_LOCATION (retval, loc);
9328 if (warn_sequence_point)
9329 verify_sequence_points (retval);
9332 ret_stmt = build_stmt (loc, RETURN_EXPR, retval);
9333 TREE_NO_WARNING (ret_stmt) |= no_warning;
9334 return add_stmt (ret_stmt);
9337 struct c_switch {
9338 /* The SWITCH_EXPR being built. */
9339 tree switch_expr;
9341 /* The original type of the testing expression, i.e. before the
9342 default conversion is applied. */
9343 tree orig_type;
9345 /* A splay-tree mapping the low element of a case range to the high
9346 element, or NULL_TREE if there is no high element. Used to
9347 determine whether or not a new case label duplicates an old case
9348 label. We need a tree, rather than simply a hash table, because
9349 of the GNU case range extension. */
9350 splay_tree cases;
9352 /* The bindings at the point of the switch. This is used for
9353 warnings crossing decls when branching to a case label. */
9354 struct c_spot_bindings *bindings;
9356 /* The next node on the stack. */
9357 struct c_switch *next;
9360 /* A stack of the currently active switch statements. The innermost
9361 switch statement is on the top of the stack. There is no need to
9362 mark the stack for garbage collection because it is only active
9363 during the processing of the body of a function, and we never
9364 collect at that point. */
9366 struct c_switch *c_switch_stack;
9368 /* Start a C switch statement, testing expression EXP. Return the new
9369 SWITCH_EXPR. SWITCH_LOC is the location of the `switch'.
9370 SWITCH_COND_LOC is the location of the switch's condition.
9371 EXPLICIT_CAST_P is true if the expression EXP has explicit cast. */
9373 tree
9374 c_start_case (location_t switch_loc,
9375 location_t switch_cond_loc,
9376 tree exp, bool explicit_cast_p)
9378 tree orig_type = error_mark_node;
9379 struct c_switch *cs;
9381 if (exp != error_mark_node)
9383 orig_type = TREE_TYPE (exp);
9385 if (!INTEGRAL_TYPE_P (orig_type))
9387 if (orig_type != error_mark_node)
9389 error_at (switch_cond_loc, "switch quantity not an integer");
9390 orig_type = error_mark_node;
9392 exp = integer_zero_node;
9394 else
9396 tree type = TYPE_MAIN_VARIANT (orig_type);
9397 tree e = exp;
9399 /* Warn if the condition has boolean value. */
9400 while (TREE_CODE (e) == COMPOUND_EXPR)
9401 e = TREE_OPERAND (e, 1);
9403 if ((TREE_CODE (type) == BOOLEAN_TYPE
9404 || truth_value_p (TREE_CODE (e)))
9405 /* Explicit cast to int suppresses this warning. */
9406 && !(TREE_CODE (type) == INTEGER_TYPE
9407 && explicit_cast_p))
9408 warning_at (switch_cond_loc, OPT_Wswitch_bool,
9409 "switch condition has boolean value");
9411 if (!in_system_header_at (input_location)
9412 && (type == long_integer_type_node
9413 || type == long_unsigned_type_node))
9414 warning_at (switch_cond_loc,
9415 OPT_Wtraditional, "%<long%> switch expression not "
9416 "converted to %<int%> in ISO C");
9418 exp = c_fully_fold (exp, false, NULL);
9419 exp = default_conversion (exp);
9421 if (warn_sequence_point)
9422 verify_sequence_points (exp);
9426 /* Add this new SWITCH_EXPR to the stack. */
9427 cs = XNEW (struct c_switch);
9428 cs->switch_expr = build3 (SWITCH_EXPR, orig_type, exp, NULL_TREE, NULL_TREE);
9429 SET_EXPR_LOCATION (cs->switch_expr, switch_loc);
9430 cs->orig_type = orig_type;
9431 cs->cases = splay_tree_new (case_compare, NULL, NULL);
9432 cs->bindings = c_get_switch_bindings ();
9433 cs->next = c_switch_stack;
9434 c_switch_stack = cs;
9436 return add_stmt (cs->switch_expr);
9439 /* Process a case label at location LOC. */
9441 tree
9442 do_case (location_t loc, tree low_value, tree high_value)
9444 tree label = NULL_TREE;
9446 if (low_value && TREE_CODE (low_value) != INTEGER_CST)
9448 low_value = c_fully_fold (low_value, false, NULL);
9449 if (TREE_CODE (low_value) == INTEGER_CST)
9450 pedwarn (loc, OPT_Wpedantic,
9451 "case label is not an integer constant expression");
9454 if (high_value && TREE_CODE (high_value) != INTEGER_CST)
9456 high_value = c_fully_fold (high_value, false, NULL);
9457 if (TREE_CODE (high_value) == INTEGER_CST)
9458 pedwarn (input_location, OPT_Wpedantic,
9459 "case label is not an integer constant expression");
9462 if (c_switch_stack == NULL)
9464 if (low_value)
9465 error_at (loc, "case label not within a switch statement");
9466 else
9467 error_at (loc, "%<default%> label not within a switch statement");
9468 return NULL_TREE;
9471 if (c_check_switch_jump_warnings (c_switch_stack->bindings,
9472 EXPR_LOCATION (c_switch_stack->switch_expr),
9473 loc))
9474 return NULL_TREE;
9476 label = c_add_case_label (loc, c_switch_stack->cases,
9477 SWITCH_COND (c_switch_stack->switch_expr),
9478 c_switch_stack->orig_type,
9479 low_value, high_value);
9480 if (label == error_mark_node)
9481 label = NULL_TREE;
9482 return label;
9485 /* Finish the switch statement. */
9487 void
9488 c_finish_case (tree body)
9490 struct c_switch *cs = c_switch_stack;
9491 location_t switch_location;
9493 SWITCH_BODY (cs->switch_expr) = body;
9495 /* Emit warnings as needed. */
9496 switch_location = EXPR_LOCATION (cs->switch_expr);
9497 c_do_switch_warnings (cs->cases, switch_location,
9498 TREE_TYPE (cs->switch_expr),
9499 SWITCH_COND (cs->switch_expr));
9501 /* Pop the stack. */
9502 c_switch_stack = cs->next;
9503 splay_tree_delete (cs->cases);
9504 c_release_switch_bindings (cs->bindings);
9505 XDELETE (cs);
9508 /* Emit an if statement. IF_LOCUS is the location of the 'if'. COND,
9509 THEN_BLOCK and ELSE_BLOCK are expressions to be used; ELSE_BLOCK
9510 may be null. NESTED_IF is true if THEN_BLOCK contains another IF
9511 statement, and was not surrounded with parenthesis. */
9513 void
9514 c_finish_if_stmt (location_t if_locus, tree cond, tree then_block,
9515 tree else_block, bool nested_if)
9517 tree stmt;
9519 /* If the condition has array notations, then the rank of the then_block and
9520 else_block must be either 0 or be equal to the rank of the condition. If
9521 the condition does not have array notations then break them up as it is
9522 broken up in a normal expression. */
9523 if (flag_cilkplus && contains_array_notation_expr (cond))
9525 size_t then_rank = 0, cond_rank = 0, else_rank = 0;
9526 if (!find_rank (if_locus, cond, cond, true, &cond_rank))
9527 return;
9528 if (then_block
9529 && !find_rank (if_locus, then_block, then_block, true, &then_rank))
9530 return;
9531 if (else_block
9532 && !find_rank (if_locus, else_block, else_block, true, &else_rank))
9533 return;
9534 if (cond_rank != then_rank && then_rank != 0)
9536 error_at (if_locus, "rank-mismatch between if-statement%'s condition"
9537 " and the then-block");
9538 return;
9540 else if (cond_rank != else_rank && else_rank != 0)
9542 error_at (if_locus, "rank-mismatch between if-statement%'s condition"
9543 " and the else-block");
9544 return;
9547 /* Diagnose an ambiguous else if if-then-else is nested inside if-then. */
9548 if (warn_parentheses && nested_if && else_block == NULL)
9550 tree inner_if = then_block;
9552 /* We know from the grammar productions that there is an IF nested
9553 within THEN_BLOCK. Due to labels and c99 conditional declarations,
9554 it might not be exactly THEN_BLOCK, but should be the last
9555 non-container statement within. */
9556 while (1)
9557 switch (TREE_CODE (inner_if))
9559 case COND_EXPR:
9560 goto found;
9561 case BIND_EXPR:
9562 inner_if = BIND_EXPR_BODY (inner_if);
9563 break;
9564 case STATEMENT_LIST:
9565 inner_if = expr_last (then_block);
9566 break;
9567 case TRY_FINALLY_EXPR:
9568 case TRY_CATCH_EXPR:
9569 inner_if = TREE_OPERAND (inner_if, 0);
9570 break;
9571 default:
9572 gcc_unreachable ();
9574 found:
9576 if (COND_EXPR_ELSE (inner_if))
9577 warning_at (if_locus, OPT_Wparentheses,
9578 "suggest explicit braces to avoid ambiguous %<else%>");
9581 stmt = build3 (COND_EXPR, void_type_node, cond, then_block, else_block);
9582 SET_EXPR_LOCATION (stmt, if_locus);
9583 add_stmt (stmt);
9586 /* Emit a general-purpose loop construct. START_LOCUS is the location of
9587 the beginning of the loop. COND is the loop condition. COND_IS_FIRST
9588 is false for DO loops. INCR is the FOR increment expression. BODY is
9589 the statement controlled by the loop. BLAB is the break label. CLAB is
9590 the continue label. Everything is allowed to be NULL. */
9592 void
9593 c_finish_loop (location_t start_locus, tree cond, tree incr, tree body,
9594 tree blab, tree clab, bool cond_is_first)
9596 tree entry = NULL, exit = NULL, t;
9598 if (flag_cilkplus && contains_array_notation_expr (cond))
9600 error_at (start_locus, "array notation expression cannot be used in a "
9601 "loop%'s condition");
9602 return;
9605 /* If the condition is zero don't generate a loop construct. */
9606 if (cond && integer_zerop (cond))
9608 if (cond_is_first)
9610 t = build_and_jump (&blab);
9611 SET_EXPR_LOCATION (t, start_locus);
9612 add_stmt (t);
9615 else
9617 tree top = build1 (LABEL_EXPR, void_type_node, NULL_TREE);
9619 /* If we have an exit condition, then we build an IF with gotos either
9620 out of the loop, or to the top of it. If there's no exit condition,
9621 then we just build a jump back to the top. */
9622 exit = build_and_jump (&LABEL_EXPR_LABEL (top));
9624 if (cond && !integer_nonzerop (cond))
9626 /* Canonicalize the loop condition to the end. This means
9627 generating a branch to the loop condition. Reuse the
9628 continue label, if possible. */
9629 if (cond_is_first)
9631 if (incr || !clab)
9633 entry = build1 (LABEL_EXPR, void_type_node, NULL_TREE);
9634 t = build_and_jump (&LABEL_EXPR_LABEL (entry));
9636 else
9637 t = build1 (GOTO_EXPR, void_type_node, clab);
9638 SET_EXPR_LOCATION (t, start_locus);
9639 add_stmt (t);
9642 t = build_and_jump (&blab);
9643 if (cond_is_first)
9644 exit = fold_build3_loc (start_locus,
9645 COND_EXPR, void_type_node, cond, exit, t);
9646 else
9647 exit = fold_build3_loc (input_location,
9648 COND_EXPR, void_type_node, cond, exit, t);
9651 add_stmt (top);
9654 if (body)
9655 add_stmt (body);
9656 if (clab)
9657 add_stmt (build1 (LABEL_EXPR, void_type_node, clab));
9658 if (incr)
9659 add_stmt (incr);
9660 if (entry)
9661 add_stmt (entry);
9662 if (exit)
9663 add_stmt (exit);
9664 if (blab)
9665 add_stmt (build1 (LABEL_EXPR, void_type_node, blab));
9668 tree
9669 c_finish_bc_stmt (location_t loc, tree *label_p, bool is_break)
9671 bool skip;
9672 tree label = *label_p;
9674 /* In switch statements break is sometimes stylistically used after
9675 a return statement. This can lead to spurious warnings about
9676 control reaching the end of a non-void function when it is
9677 inlined. Note that we are calling block_may_fallthru with
9678 language specific tree nodes; this works because
9679 block_may_fallthru returns true when given something it does not
9680 understand. */
9681 skip = !block_may_fallthru (cur_stmt_list);
9683 if (!label)
9685 if (!skip)
9686 *label_p = label = create_artificial_label (loc);
9688 else if (TREE_CODE (label) == LABEL_DECL)
9690 else switch (TREE_INT_CST_LOW (label))
9692 case 0:
9693 if (is_break)
9694 error_at (loc, "break statement not within loop or switch");
9695 else
9696 error_at (loc, "continue statement not within a loop");
9697 return NULL_TREE;
9699 case 1:
9700 gcc_assert (is_break);
9701 error_at (loc, "break statement used with OpenMP for loop");
9702 return NULL_TREE;
9704 case 2:
9705 if (is_break)
9706 error ("break statement within %<#pragma simd%> loop body");
9707 else
9708 error ("continue statement within %<#pragma simd%> loop body");
9709 return NULL_TREE;
9711 default:
9712 gcc_unreachable ();
9715 if (skip)
9716 return NULL_TREE;
9718 if (!is_break)
9719 add_stmt (build_predict_expr (PRED_CONTINUE, NOT_TAKEN));
9721 return add_stmt (build1 (GOTO_EXPR, void_type_node, label));
9724 /* A helper routine for c_process_expr_stmt and c_finish_stmt_expr. */
9726 static void
9727 emit_side_effect_warnings (location_t loc, tree expr)
9729 if (expr == error_mark_node)
9731 else if (!TREE_SIDE_EFFECTS (expr))
9733 if (!VOID_TYPE_P (TREE_TYPE (expr)) && !TREE_NO_WARNING (expr))
9734 warning_at (loc, OPT_Wunused_value, "statement with no effect");
9736 else if (TREE_CODE (expr) == COMPOUND_EXPR)
9738 tree r = expr;
9739 location_t cloc = loc;
9740 while (TREE_CODE (r) == COMPOUND_EXPR)
9742 if (EXPR_HAS_LOCATION (r))
9743 cloc = EXPR_LOCATION (r);
9744 r = TREE_OPERAND (r, 1);
9746 if (!TREE_SIDE_EFFECTS (r)
9747 && !VOID_TYPE_P (TREE_TYPE (r))
9748 && !CONVERT_EXPR_P (r)
9749 && !TREE_NO_WARNING (r)
9750 && !TREE_NO_WARNING (expr))
9751 warning_at (cloc, OPT_Wunused_value,
9752 "right-hand operand of comma expression has no effect");
9754 else
9755 warn_if_unused_value (expr, loc);
9758 /* Process an expression as if it were a complete statement. Emit
9759 diagnostics, but do not call ADD_STMT. LOC is the location of the
9760 statement. */
9762 tree
9763 c_process_expr_stmt (location_t loc, tree expr)
9765 tree exprv;
9767 if (!expr)
9768 return NULL_TREE;
9770 expr = c_fully_fold (expr, false, NULL);
9772 if (warn_sequence_point)
9773 verify_sequence_points (expr);
9775 if (TREE_TYPE (expr) != error_mark_node
9776 && !COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (expr))
9777 && TREE_CODE (TREE_TYPE (expr)) != ARRAY_TYPE)
9778 error_at (loc, "expression statement has incomplete type");
9780 /* If we're not processing a statement expression, warn about unused values.
9781 Warnings for statement expressions will be emitted later, once we figure
9782 out which is the result. */
9783 if (!STATEMENT_LIST_STMT_EXPR (cur_stmt_list)
9784 && warn_unused_value)
9785 emit_side_effect_warnings (loc, expr);
9787 exprv = expr;
9788 while (TREE_CODE (exprv) == COMPOUND_EXPR)
9789 exprv = TREE_OPERAND (exprv, 1);
9790 while (CONVERT_EXPR_P (exprv))
9791 exprv = TREE_OPERAND (exprv, 0);
9792 if (DECL_P (exprv)
9793 || handled_component_p (exprv)
9794 || TREE_CODE (exprv) == ADDR_EXPR)
9795 mark_exp_read (exprv);
9797 /* If the expression is not of a type to which we cannot assign a line
9798 number, wrap the thing in a no-op NOP_EXPR. */
9799 if (DECL_P (expr) || CONSTANT_CLASS_P (expr))
9801 expr = build1 (NOP_EXPR, TREE_TYPE (expr), expr);
9802 SET_EXPR_LOCATION (expr, loc);
9805 return expr;
9808 /* Emit an expression as a statement. LOC is the location of the
9809 expression. */
9811 tree
9812 c_finish_expr_stmt (location_t loc, tree expr)
9814 if (expr)
9815 return add_stmt (c_process_expr_stmt (loc, expr));
9816 else
9817 return NULL;
9820 /* Do the opposite and emit a statement as an expression. To begin,
9821 create a new binding level and return it. */
9823 tree
9824 c_begin_stmt_expr (void)
9826 tree ret;
9828 /* We must force a BLOCK for this level so that, if it is not expanded
9829 later, there is a way to turn off the entire subtree of blocks that
9830 are contained in it. */
9831 keep_next_level ();
9832 ret = c_begin_compound_stmt (true);
9834 c_bindings_start_stmt_expr (c_switch_stack == NULL
9835 ? NULL
9836 : c_switch_stack->bindings);
9838 /* Mark the current statement list as belonging to a statement list. */
9839 STATEMENT_LIST_STMT_EXPR (ret) = 1;
9841 return ret;
9844 /* LOC is the location of the compound statement to which this body
9845 belongs. */
9847 tree
9848 c_finish_stmt_expr (location_t loc, tree body)
9850 tree last, type, tmp, val;
9851 tree *last_p;
9853 body = c_end_compound_stmt (loc, body, true);
9855 c_bindings_end_stmt_expr (c_switch_stack == NULL
9856 ? NULL
9857 : c_switch_stack->bindings);
9859 /* Locate the last statement in BODY. See c_end_compound_stmt
9860 about always returning a BIND_EXPR. */
9861 last_p = &BIND_EXPR_BODY (body);
9862 last = BIND_EXPR_BODY (body);
9864 continue_searching:
9865 if (TREE_CODE (last) == STATEMENT_LIST)
9867 tree_stmt_iterator i;
9869 /* This can happen with degenerate cases like ({ }). No value. */
9870 if (!TREE_SIDE_EFFECTS (last))
9871 return body;
9873 /* If we're supposed to generate side effects warnings, process
9874 all of the statements except the last. */
9875 if (warn_unused_value)
9877 for (i = tsi_start (last); !tsi_one_before_end_p (i); tsi_next (&i))
9879 location_t tloc;
9880 tree t = tsi_stmt (i);
9882 tloc = EXPR_HAS_LOCATION (t) ? EXPR_LOCATION (t) : loc;
9883 emit_side_effect_warnings (tloc, t);
9886 else
9887 i = tsi_last (last);
9888 last_p = tsi_stmt_ptr (i);
9889 last = *last_p;
9892 /* If the end of the list is exception related, then the list was split
9893 by a call to push_cleanup. Continue searching. */
9894 if (TREE_CODE (last) == TRY_FINALLY_EXPR
9895 || TREE_CODE (last) == TRY_CATCH_EXPR)
9897 last_p = &TREE_OPERAND (last, 0);
9898 last = *last_p;
9899 goto continue_searching;
9902 if (last == error_mark_node)
9903 return last;
9905 /* In the case that the BIND_EXPR is not necessary, return the
9906 expression out from inside it. */
9907 if (last == BIND_EXPR_BODY (body)
9908 && BIND_EXPR_VARS (body) == NULL)
9910 /* Even if this looks constant, do not allow it in a constant
9911 expression. */
9912 last = c_wrap_maybe_const (last, true);
9913 /* Do not warn if the return value of a statement expression is
9914 unused. */
9915 TREE_NO_WARNING (last) = 1;
9916 return last;
9919 /* Extract the type of said expression. */
9920 type = TREE_TYPE (last);
9922 /* If we're not returning a value at all, then the BIND_EXPR that
9923 we already have is a fine expression to return. */
9924 if (!type || VOID_TYPE_P (type))
9925 return body;
9927 /* Now that we've located the expression containing the value, it seems
9928 silly to make voidify_wrapper_expr repeat the process. Create a
9929 temporary of the appropriate type and stick it in a TARGET_EXPR. */
9930 tmp = create_tmp_var_raw (type, NULL);
9932 /* Unwrap a no-op NOP_EXPR as added by c_finish_expr_stmt. This avoids
9933 tree_expr_nonnegative_p giving up immediately. */
9934 val = last;
9935 if (TREE_CODE (val) == NOP_EXPR
9936 && TREE_TYPE (val) == TREE_TYPE (TREE_OPERAND (val, 0)))
9937 val = TREE_OPERAND (val, 0);
9939 *last_p = build2 (MODIFY_EXPR, void_type_node, tmp, val);
9940 SET_EXPR_LOCATION (*last_p, EXPR_LOCATION (last));
9943 tree t = build4 (TARGET_EXPR, type, tmp, body, NULL_TREE, NULL_TREE);
9944 SET_EXPR_LOCATION (t, loc);
9945 return t;
9949 /* Begin and end compound statements. This is as simple as pushing
9950 and popping new statement lists from the tree. */
9952 tree
9953 c_begin_compound_stmt (bool do_scope)
9955 tree stmt = push_stmt_list ();
9956 if (do_scope)
9957 push_scope ();
9958 return stmt;
9961 /* End a compound statement. STMT is the statement. LOC is the
9962 location of the compound statement-- this is usually the location
9963 of the opening brace. */
9965 tree
9966 c_end_compound_stmt (location_t loc, tree stmt, bool do_scope)
9968 tree block = NULL;
9970 if (do_scope)
9972 if (c_dialect_objc ())
9973 objc_clear_super_receiver ();
9974 block = pop_scope ();
9977 stmt = pop_stmt_list (stmt);
9978 stmt = c_build_bind_expr (loc, block, stmt);
9980 /* If this compound statement is nested immediately inside a statement
9981 expression, then force a BIND_EXPR to be created. Otherwise we'll
9982 do the wrong thing for ({ { 1; } }) or ({ 1; { } }). In particular,
9983 STATEMENT_LISTs merge, and thus we can lose track of what statement
9984 was really last. */
9985 if (building_stmt_list_p ()
9986 && STATEMENT_LIST_STMT_EXPR (cur_stmt_list)
9987 && TREE_CODE (stmt) != BIND_EXPR)
9989 stmt = build3 (BIND_EXPR, void_type_node, NULL, stmt, NULL);
9990 TREE_SIDE_EFFECTS (stmt) = 1;
9991 SET_EXPR_LOCATION (stmt, loc);
9994 return stmt;
9997 /* Queue a cleanup. CLEANUP is an expression/statement to be executed
9998 when the current scope is exited. EH_ONLY is true when this is not
9999 meant to apply to normal control flow transfer. */
10001 void
10002 push_cleanup (tree decl, tree cleanup, bool eh_only)
10004 enum tree_code code;
10005 tree stmt, list;
10006 bool stmt_expr;
10008 code = eh_only ? TRY_CATCH_EXPR : TRY_FINALLY_EXPR;
10009 stmt = build_stmt (DECL_SOURCE_LOCATION (decl), code, NULL, cleanup);
10010 add_stmt (stmt);
10011 stmt_expr = STATEMENT_LIST_STMT_EXPR (cur_stmt_list);
10012 list = push_stmt_list ();
10013 TREE_OPERAND (stmt, 0) = list;
10014 STATEMENT_LIST_STMT_EXPR (list) = stmt_expr;
10017 /* Build a binary-operation expression without default conversions.
10018 CODE is the kind of expression to build.
10019 LOCATION is the operator's location.
10020 This function differs from `build' in several ways:
10021 the data type of the result is computed and recorded in it,
10022 warnings are generated if arg data types are invalid,
10023 special handling for addition and subtraction of pointers is known,
10024 and some optimization is done (operations on narrow ints
10025 are done in the narrower type when that gives the same result).
10026 Constant folding is also done before the result is returned.
10028 Note that the operands will never have enumeral types, or function
10029 or array types, because either they will have the default conversions
10030 performed or they have both just been converted to some other type in which
10031 the arithmetic is to be done. */
10033 tree
10034 build_binary_op (location_t location, enum tree_code code,
10035 tree orig_op0, tree orig_op1, int convert_p)
10037 tree type0, type1, orig_type0, orig_type1;
10038 tree eptype;
10039 enum tree_code code0, code1;
10040 tree op0, op1;
10041 tree ret = error_mark_node;
10042 const char *invalid_op_diag;
10043 bool op0_int_operands, op1_int_operands;
10044 bool int_const, int_const_or_overflow, int_operands;
10046 /* Expression code to give to the expression when it is built.
10047 Normally this is CODE, which is what the caller asked for,
10048 but in some special cases we change it. */
10049 enum tree_code resultcode = code;
10051 /* Data type in which the computation is to be performed.
10052 In the simplest cases this is the common type of the arguments. */
10053 tree result_type = NULL;
10055 /* When the computation is in excess precision, the type of the
10056 final EXCESS_PRECISION_EXPR. */
10057 tree semantic_result_type = NULL;
10059 /* Nonzero means operands have already been type-converted
10060 in whatever way is necessary.
10061 Zero means they need to be converted to RESULT_TYPE. */
10062 int converted = 0;
10064 /* Nonzero means create the expression with this type, rather than
10065 RESULT_TYPE. */
10066 tree build_type = 0;
10068 /* Nonzero means after finally constructing the expression
10069 convert it to this type. */
10070 tree final_type = 0;
10072 /* Nonzero if this is an operation like MIN or MAX which can
10073 safely be computed in short if both args are promoted shorts.
10074 Also implies COMMON.
10075 -1 indicates a bitwise operation; this makes a difference
10076 in the exact conditions for when it is safe to do the operation
10077 in a narrower mode. */
10078 int shorten = 0;
10080 /* Nonzero if this is a comparison operation;
10081 if both args are promoted shorts, compare the original shorts.
10082 Also implies COMMON. */
10083 int short_compare = 0;
10085 /* Nonzero if this is a right-shift operation, which can be computed on the
10086 original short and then promoted if the operand is a promoted short. */
10087 int short_shift = 0;
10089 /* Nonzero means set RESULT_TYPE to the common type of the args. */
10090 int common = 0;
10092 /* True means types are compatible as far as ObjC is concerned. */
10093 bool objc_ok;
10095 /* True means this is an arithmetic operation that may need excess
10096 precision. */
10097 bool may_need_excess_precision;
10099 /* True means this is a boolean operation that converts both its
10100 operands to truth-values. */
10101 bool boolean_op = false;
10103 /* Remember whether we're doing / or %. */
10104 bool doing_div_or_mod = false;
10106 /* Remember whether we're doing << or >>. */
10107 bool doing_shift = false;
10109 /* Tree holding instrumentation expression. */
10110 tree instrument_expr = NULL;
10112 if (location == UNKNOWN_LOCATION)
10113 location = input_location;
10115 op0 = orig_op0;
10116 op1 = orig_op1;
10118 op0_int_operands = EXPR_INT_CONST_OPERANDS (orig_op0);
10119 if (op0_int_operands)
10120 op0 = remove_c_maybe_const_expr (op0);
10121 op1_int_operands = EXPR_INT_CONST_OPERANDS (orig_op1);
10122 if (op1_int_operands)
10123 op1 = remove_c_maybe_const_expr (op1);
10124 int_operands = (op0_int_operands && op1_int_operands);
10125 if (int_operands)
10127 int_const_or_overflow = (TREE_CODE (orig_op0) == INTEGER_CST
10128 && TREE_CODE (orig_op1) == INTEGER_CST);
10129 int_const = (int_const_or_overflow
10130 && !TREE_OVERFLOW (orig_op0)
10131 && !TREE_OVERFLOW (orig_op1));
10133 else
10134 int_const = int_const_or_overflow = false;
10136 /* Do not apply default conversion in mixed vector/scalar expression. */
10137 if (convert_p
10138 && !((TREE_CODE (TREE_TYPE (op0)) == VECTOR_TYPE)
10139 != (TREE_CODE (TREE_TYPE (op1)) == VECTOR_TYPE)))
10141 op0 = default_conversion (op0);
10142 op1 = default_conversion (op1);
10145 /* When Cilk Plus is enabled and there are array notations inside op0, then
10146 we check to see if there are builtin array notation functions. If
10147 so, then we take on the type of the array notation inside it. */
10148 if (flag_cilkplus && contains_array_notation_expr (op0))
10149 orig_type0 = type0 = find_correct_array_notation_type (op0);
10150 else
10151 orig_type0 = type0 = TREE_TYPE (op0);
10153 if (flag_cilkplus && contains_array_notation_expr (op1))
10154 orig_type1 = type1 = find_correct_array_notation_type (op1);
10155 else
10156 orig_type1 = type1 = TREE_TYPE (op1);
10158 /* The expression codes of the data types of the arguments tell us
10159 whether the arguments are integers, floating, pointers, etc. */
10160 code0 = TREE_CODE (type0);
10161 code1 = TREE_CODE (type1);
10163 /* Strip NON_LVALUE_EXPRs, etc., since we aren't using as an lvalue. */
10164 STRIP_TYPE_NOPS (op0);
10165 STRIP_TYPE_NOPS (op1);
10167 /* If an error was already reported for one of the arguments,
10168 avoid reporting another error. */
10170 if (code0 == ERROR_MARK || code1 == ERROR_MARK)
10171 return error_mark_node;
10173 if ((invalid_op_diag
10174 = targetm.invalid_binary_op (code, type0, type1)))
10176 error_at (location, invalid_op_diag);
10177 return error_mark_node;
10180 switch (code)
10182 case PLUS_EXPR:
10183 case MINUS_EXPR:
10184 case MULT_EXPR:
10185 case TRUNC_DIV_EXPR:
10186 case CEIL_DIV_EXPR:
10187 case FLOOR_DIV_EXPR:
10188 case ROUND_DIV_EXPR:
10189 case EXACT_DIV_EXPR:
10190 may_need_excess_precision = true;
10191 break;
10192 default:
10193 may_need_excess_precision = false;
10194 break;
10196 if (TREE_CODE (op0) == EXCESS_PRECISION_EXPR)
10198 op0 = TREE_OPERAND (op0, 0);
10199 type0 = TREE_TYPE (op0);
10201 else if (may_need_excess_precision
10202 && (eptype = excess_precision_type (type0)) != NULL_TREE)
10204 type0 = eptype;
10205 op0 = convert (eptype, op0);
10207 if (TREE_CODE (op1) == EXCESS_PRECISION_EXPR)
10209 op1 = TREE_OPERAND (op1, 0);
10210 type1 = TREE_TYPE (op1);
10212 else if (may_need_excess_precision
10213 && (eptype = excess_precision_type (type1)) != NULL_TREE)
10215 type1 = eptype;
10216 op1 = convert (eptype, op1);
10219 objc_ok = objc_compare_types (type0, type1, -3, NULL_TREE);
10221 /* In case when one of the operands of the binary operation is
10222 a vector and another is a scalar -- convert scalar to vector. */
10223 if ((code0 == VECTOR_TYPE) != (code1 == VECTOR_TYPE))
10225 enum stv_conv convert_flag = scalar_to_vector (location, code, op0, op1,
10226 true);
10228 switch (convert_flag)
10230 case stv_error:
10231 return error_mark_node;
10232 case stv_firstarg:
10234 bool maybe_const = true;
10235 tree sc;
10236 sc = c_fully_fold (op0, false, &maybe_const);
10237 sc = save_expr (sc);
10238 sc = convert (TREE_TYPE (type1), sc);
10239 op0 = build_vector_from_val (type1, sc);
10240 if (!maybe_const)
10241 op0 = c_wrap_maybe_const (op0, true);
10242 orig_type0 = type0 = TREE_TYPE (op0);
10243 code0 = TREE_CODE (type0);
10244 converted = 1;
10245 break;
10247 case stv_secondarg:
10249 bool maybe_const = true;
10250 tree sc;
10251 sc = c_fully_fold (op1, false, &maybe_const);
10252 sc = save_expr (sc);
10253 sc = convert (TREE_TYPE (type0), sc);
10254 op1 = build_vector_from_val (type0, sc);
10255 if (!maybe_const)
10256 op1 = c_wrap_maybe_const (op1, true);
10257 orig_type1 = type1 = TREE_TYPE (op1);
10258 code1 = TREE_CODE (type1);
10259 converted = 1;
10260 break;
10262 default:
10263 break;
10267 switch (code)
10269 case PLUS_EXPR:
10270 /* Handle the pointer + int case. */
10271 if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
10273 ret = pointer_int_sum (location, PLUS_EXPR, op0, op1);
10274 goto return_build_binary_op;
10276 else if (code1 == POINTER_TYPE && code0 == INTEGER_TYPE)
10278 ret = pointer_int_sum (location, PLUS_EXPR, op1, op0);
10279 goto return_build_binary_op;
10281 else
10282 common = 1;
10283 break;
10285 case MINUS_EXPR:
10286 /* Subtraction of two similar pointers.
10287 We must subtract them as integers, then divide by object size. */
10288 if (code0 == POINTER_TYPE && code1 == POINTER_TYPE
10289 && comp_target_types (location, type0, type1))
10291 ret = pointer_diff (location, op0, op1);
10292 goto return_build_binary_op;
10294 /* Handle pointer minus int. Just like pointer plus int. */
10295 else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
10297 ret = pointer_int_sum (location, MINUS_EXPR, op0, op1);
10298 goto return_build_binary_op;
10300 else
10301 common = 1;
10302 break;
10304 case MULT_EXPR:
10305 common = 1;
10306 break;
10308 case TRUNC_DIV_EXPR:
10309 case CEIL_DIV_EXPR:
10310 case FLOOR_DIV_EXPR:
10311 case ROUND_DIV_EXPR:
10312 case EXACT_DIV_EXPR:
10313 doing_div_or_mod = true;
10314 warn_for_div_by_zero (location, op1);
10316 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
10317 || code0 == FIXED_POINT_TYPE
10318 || code0 == COMPLEX_TYPE || code0 == VECTOR_TYPE)
10319 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
10320 || code1 == FIXED_POINT_TYPE
10321 || code1 == COMPLEX_TYPE || code1 == VECTOR_TYPE))
10323 enum tree_code tcode0 = code0, tcode1 = code1;
10325 if (code0 == COMPLEX_TYPE || code0 == VECTOR_TYPE)
10326 tcode0 = TREE_CODE (TREE_TYPE (TREE_TYPE (op0)));
10327 if (code1 == COMPLEX_TYPE || code1 == VECTOR_TYPE)
10328 tcode1 = TREE_CODE (TREE_TYPE (TREE_TYPE (op1)));
10330 if (!((tcode0 == INTEGER_TYPE && tcode1 == INTEGER_TYPE)
10331 || (tcode0 == FIXED_POINT_TYPE && tcode1 == FIXED_POINT_TYPE)))
10332 resultcode = RDIV_EXPR;
10333 else
10334 /* Although it would be tempting to shorten always here, that
10335 loses on some targets, since the modulo instruction is
10336 undefined if the quotient can't be represented in the
10337 computation mode. We shorten only if unsigned or if
10338 dividing by something we know != -1. */
10339 shorten = (TYPE_UNSIGNED (TREE_TYPE (orig_op0))
10340 || (TREE_CODE (op1) == INTEGER_CST
10341 && !integer_all_onesp (op1)));
10342 common = 1;
10344 break;
10346 case BIT_AND_EXPR:
10347 case BIT_IOR_EXPR:
10348 case BIT_XOR_EXPR:
10349 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
10350 shorten = -1;
10351 /* Allow vector types which are not floating point types. */
10352 else if (code0 == VECTOR_TYPE
10353 && code1 == VECTOR_TYPE
10354 && !VECTOR_FLOAT_TYPE_P (type0)
10355 && !VECTOR_FLOAT_TYPE_P (type1))
10356 common = 1;
10357 break;
10359 case TRUNC_MOD_EXPR:
10360 case FLOOR_MOD_EXPR:
10361 doing_div_or_mod = true;
10362 warn_for_div_by_zero (location, op1);
10364 if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE
10365 && TREE_CODE (TREE_TYPE (type0)) == INTEGER_TYPE
10366 && TREE_CODE (TREE_TYPE (type1)) == INTEGER_TYPE)
10367 common = 1;
10368 else if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
10370 /* Although it would be tempting to shorten always here, that loses
10371 on some targets, since the modulo instruction is undefined if the
10372 quotient can't be represented in the computation mode. We shorten
10373 only if unsigned or if dividing by something we know != -1. */
10374 shorten = (TYPE_UNSIGNED (TREE_TYPE (orig_op0))
10375 || (TREE_CODE (op1) == INTEGER_CST
10376 && !integer_all_onesp (op1)));
10377 common = 1;
10379 break;
10381 case TRUTH_ANDIF_EXPR:
10382 case TRUTH_ORIF_EXPR:
10383 case TRUTH_AND_EXPR:
10384 case TRUTH_OR_EXPR:
10385 case TRUTH_XOR_EXPR:
10386 if ((code0 == INTEGER_TYPE || code0 == POINTER_TYPE
10387 || code0 == REAL_TYPE || code0 == COMPLEX_TYPE
10388 || code0 == FIXED_POINT_TYPE)
10389 && (code1 == INTEGER_TYPE || code1 == POINTER_TYPE
10390 || code1 == REAL_TYPE || code1 == COMPLEX_TYPE
10391 || code1 == FIXED_POINT_TYPE))
10393 /* Result of these operations is always an int,
10394 but that does not mean the operands should be
10395 converted to ints! */
10396 result_type = integer_type_node;
10397 if (op0_int_operands)
10399 op0 = c_objc_common_truthvalue_conversion (location, orig_op0);
10400 op0 = remove_c_maybe_const_expr (op0);
10402 else
10403 op0 = c_objc_common_truthvalue_conversion (location, op0);
10404 if (op1_int_operands)
10406 op1 = c_objc_common_truthvalue_conversion (location, orig_op1);
10407 op1 = remove_c_maybe_const_expr (op1);
10409 else
10410 op1 = c_objc_common_truthvalue_conversion (location, op1);
10411 converted = 1;
10412 boolean_op = true;
10414 if (code == TRUTH_ANDIF_EXPR)
10416 int_const_or_overflow = (int_operands
10417 && TREE_CODE (orig_op0) == INTEGER_CST
10418 && (op0 == truthvalue_false_node
10419 || TREE_CODE (orig_op1) == INTEGER_CST));
10420 int_const = (int_const_or_overflow
10421 && !TREE_OVERFLOW (orig_op0)
10422 && (op0 == truthvalue_false_node
10423 || !TREE_OVERFLOW (orig_op1)));
10425 else if (code == TRUTH_ORIF_EXPR)
10427 int_const_or_overflow = (int_operands
10428 && TREE_CODE (orig_op0) == INTEGER_CST
10429 && (op0 == truthvalue_true_node
10430 || TREE_CODE (orig_op1) == INTEGER_CST));
10431 int_const = (int_const_or_overflow
10432 && !TREE_OVERFLOW (orig_op0)
10433 && (op0 == truthvalue_true_node
10434 || !TREE_OVERFLOW (orig_op1)));
10436 break;
10438 /* Shift operations: result has same type as first operand;
10439 always convert second operand to int.
10440 Also set SHORT_SHIFT if shifting rightward. */
10442 case RSHIFT_EXPR:
10443 if (code0 == VECTOR_TYPE && code1 == INTEGER_TYPE
10444 && TREE_CODE (TREE_TYPE (type0)) == INTEGER_TYPE)
10446 result_type = type0;
10447 converted = 1;
10449 else if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE
10450 && TREE_CODE (TREE_TYPE (type0)) == INTEGER_TYPE
10451 && TREE_CODE (TREE_TYPE (type1)) == INTEGER_TYPE
10452 && TYPE_VECTOR_SUBPARTS (type0) == TYPE_VECTOR_SUBPARTS (type1))
10454 result_type = type0;
10455 converted = 1;
10457 else if ((code0 == INTEGER_TYPE || code0 == FIXED_POINT_TYPE)
10458 && code1 == INTEGER_TYPE)
10460 doing_shift = true;
10461 if (TREE_CODE (op1) == INTEGER_CST)
10463 if (tree_int_cst_sgn (op1) < 0)
10465 int_const = false;
10466 if (c_inhibit_evaluation_warnings == 0)
10467 warning_at (location, 0, "right shift count is negative");
10469 else
10471 if (!integer_zerop (op1))
10472 short_shift = 1;
10474 if (compare_tree_int (op1, TYPE_PRECISION (type0)) >= 0)
10476 int_const = false;
10477 if (c_inhibit_evaluation_warnings == 0)
10478 warning_at (location, 0, "right shift count >= width "
10479 "of type");
10484 /* Use the type of the value to be shifted. */
10485 result_type = type0;
10486 /* Convert the non vector shift-count to an integer, regardless
10487 of size of value being shifted. */
10488 if (TREE_CODE (TREE_TYPE (op1)) != VECTOR_TYPE
10489 && TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
10490 op1 = convert (integer_type_node, op1);
10491 /* Avoid converting op1 to result_type later. */
10492 converted = 1;
10494 break;
10496 case LSHIFT_EXPR:
10497 if (code0 == VECTOR_TYPE && code1 == INTEGER_TYPE
10498 && TREE_CODE (TREE_TYPE (type0)) == INTEGER_TYPE)
10500 result_type = type0;
10501 converted = 1;
10503 else if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE
10504 && TREE_CODE (TREE_TYPE (type0)) == INTEGER_TYPE
10505 && TREE_CODE (TREE_TYPE (type1)) == INTEGER_TYPE
10506 && TYPE_VECTOR_SUBPARTS (type0) == TYPE_VECTOR_SUBPARTS (type1))
10508 result_type = type0;
10509 converted = 1;
10511 else if ((code0 == INTEGER_TYPE || code0 == FIXED_POINT_TYPE)
10512 && code1 == INTEGER_TYPE)
10514 doing_shift = true;
10515 if (TREE_CODE (op1) == INTEGER_CST)
10517 if (tree_int_cst_sgn (op1) < 0)
10519 int_const = false;
10520 if (c_inhibit_evaluation_warnings == 0)
10521 warning_at (location, 0, "left shift count is negative");
10524 else if (compare_tree_int (op1, TYPE_PRECISION (type0)) >= 0)
10526 int_const = false;
10527 if (c_inhibit_evaluation_warnings == 0)
10528 warning_at (location, 0, "left shift count >= width of "
10529 "type");
10533 /* Use the type of the value to be shifted. */
10534 result_type = type0;
10535 /* Convert the non vector shift-count to an integer, regardless
10536 of size of value being shifted. */
10537 if (TREE_CODE (TREE_TYPE (op1)) != VECTOR_TYPE
10538 && TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
10539 op1 = convert (integer_type_node, op1);
10540 /* Avoid converting op1 to result_type later. */
10541 converted = 1;
10543 break;
10545 case EQ_EXPR:
10546 case NE_EXPR:
10547 if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE)
10549 tree intt;
10550 if (!vector_types_compatible_elements_p (type0, type1))
10552 error_at (location, "comparing vectors with different "
10553 "element types");
10554 return error_mark_node;
10557 if (TYPE_VECTOR_SUBPARTS (type0) != TYPE_VECTOR_SUBPARTS (type1))
10559 error_at (location, "comparing vectors with different "
10560 "number of elements");
10561 return error_mark_node;
10564 /* Always construct signed integer vector type. */
10565 intt = c_common_type_for_size (GET_MODE_BITSIZE
10566 (TYPE_MODE (TREE_TYPE (type0))), 0);
10567 result_type = build_opaque_vector_type (intt,
10568 TYPE_VECTOR_SUBPARTS (type0));
10569 converted = 1;
10570 break;
10572 if (FLOAT_TYPE_P (type0) || FLOAT_TYPE_P (type1))
10573 warning_at (location,
10574 OPT_Wfloat_equal,
10575 "comparing floating point with == or != is unsafe");
10576 /* Result of comparison is always int,
10577 but don't convert the args to int! */
10578 build_type = integer_type_node;
10579 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
10580 || code0 == FIXED_POINT_TYPE || code0 == COMPLEX_TYPE)
10581 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
10582 || code1 == FIXED_POINT_TYPE || code1 == COMPLEX_TYPE))
10583 short_compare = 1;
10584 else if (code0 == POINTER_TYPE && null_pointer_constant_p (orig_op1))
10586 if (TREE_CODE (op0) == ADDR_EXPR
10587 && decl_with_nonnull_addr_p (TREE_OPERAND (op0, 0)))
10589 if (code == EQ_EXPR)
10590 warning_at (location,
10591 OPT_Waddress,
10592 "the comparison will always evaluate as %<false%> "
10593 "for the address of %qD will never be NULL",
10594 TREE_OPERAND (op0, 0));
10595 else
10596 warning_at (location,
10597 OPT_Waddress,
10598 "the comparison will always evaluate as %<true%> "
10599 "for the address of %qD will never be NULL",
10600 TREE_OPERAND (op0, 0));
10602 result_type = type0;
10604 else if (code1 == POINTER_TYPE && null_pointer_constant_p (orig_op0))
10606 if (TREE_CODE (op1) == ADDR_EXPR
10607 && decl_with_nonnull_addr_p (TREE_OPERAND (op1, 0)))
10609 if (code == EQ_EXPR)
10610 warning_at (location,
10611 OPT_Waddress,
10612 "the comparison will always evaluate as %<false%> "
10613 "for the address of %qD will never be NULL",
10614 TREE_OPERAND (op1, 0));
10615 else
10616 warning_at (location,
10617 OPT_Waddress,
10618 "the comparison will always evaluate as %<true%> "
10619 "for the address of %qD will never be NULL",
10620 TREE_OPERAND (op1, 0));
10622 result_type = type1;
10624 else if (code0 == POINTER_TYPE && code1 == POINTER_TYPE)
10626 tree tt0 = TREE_TYPE (type0);
10627 tree tt1 = TREE_TYPE (type1);
10628 addr_space_t as0 = TYPE_ADDR_SPACE (tt0);
10629 addr_space_t as1 = TYPE_ADDR_SPACE (tt1);
10630 addr_space_t as_common = ADDR_SPACE_GENERIC;
10632 /* Anything compares with void *. void * compares with anything.
10633 Otherwise, the targets must be compatible
10634 and both must be object or both incomplete. */
10635 if (comp_target_types (location, type0, type1))
10636 result_type = common_pointer_type (type0, type1);
10637 else if (!addr_space_superset (as0, as1, &as_common))
10639 error_at (location, "comparison of pointers to "
10640 "disjoint address spaces");
10641 return error_mark_node;
10643 else if (VOID_TYPE_P (tt0) && !TYPE_ATOMIC (tt0))
10645 if (pedantic && TREE_CODE (tt1) == FUNCTION_TYPE)
10646 pedwarn (location, OPT_Wpedantic, "ISO C forbids "
10647 "comparison of %<void *%> with function pointer");
10649 else if (VOID_TYPE_P (tt1) && !TYPE_ATOMIC (tt1))
10651 if (pedantic && TREE_CODE (tt0) == FUNCTION_TYPE)
10652 pedwarn (location, OPT_Wpedantic, "ISO C forbids "
10653 "comparison of %<void *%> with function pointer");
10655 else
10656 /* Avoid warning about the volatile ObjC EH puts on decls. */
10657 if (!objc_ok)
10658 pedwarn (location, 0,
10659 "comparison of distinct pointer types lacks a cast");
10661 if (result_type == NULL_TREE)
10663 int qual = ENCODE_QUAL_ADDR_SPACE (as_common);
10664 result_type = build_pointer_type
10665 (build_qualified_type (void_type_node, qual));
10668 else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
10670 result_type = type0;
10671 pedwarn (location, 0, "comparison between pointer and integer");
10673 else if (code0 == INTEGER_TYPE && code1 == POINTER_TYPE)
10675 result_type = type1;
10676 pedwarn (location, 0, "comparison between pointer and integer");
10678 break;
10680 case LE_EXPR:
10681 case GE_EXPR:
10682 case LT_EXPR:
10683 case GT_EXPR:
10684 if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE)
10686 tree intt;
10687 if (!vector_types_compatible_elements_p (type0, type1))
10689 error_at (location, "comparing vectors with different "
10690 "element types");
10691 return error_mark_node;
10694 if (TYPE_VECTOR_SUBPARTS (type0) != TYPE_VECTOR_SUBPARTS (type1))
10696 error_at (location, "comparing vectors with different "
10697 "number of elements");
10698 return error_mark_node;
10701 /* Always construct signed integer vector type. */
10702 intt = c_common_type_for_size (GET_MODE_BITSIZE
10703 (TYPE_MODE (TREE_TYPE (type0))), 0);
10704 result_type = build_opaque_vector_type (intt,
10705 TYPE_VECTOR_SUBPARTS (type0));
10706 converted = 1;
10707 break;
10709 build_type = integer_type_node;
10710 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
10711 || code0 == FIXED_POINT_TYPE)
10712 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
10713 || code1 == FIXED_POINT_TYPE))
10714 short_compare = 1;
10715 else if (code0 == POINTER_TYPE && code1 == POINTER_TYPE)
10717 addr_space_t as0 = TYPE_ADDR_SPACE (TREE_TYPE (type0));
10718 addr_space_t as1 = TYPE_ADDR_SPACE (TREE_TYPE (type1));
10719 addr_space_t as_common;
10721 if (comp_target_types (location, type0, type1))
10723 result_type = common_pointer_type (type0, type1);
10724 if (!COMPLETE_TYPE_P (TREE_TYPE (type0))
10725 != !COMPLETE_TYPE_P (TREE_TYPE (type1)))
10726 pedwarn (location, 0,
10727 "comparison of complete and incomplete pointers");
10728 else if (TREE_CODE (TREE_TYPE (type0)) == FUNCTION_TYPE)
10729 pedwarn (location, OPT_Wpedantic, "ISO C forbids "
10730 "ordered comparisons of pointers to functions");
10731 else if (null_pointer_constant_p (orig_op0)
10732 || null_pointer_constant_p (orig_op1))
10733 warning_at (location, OPT_Wextra,
10734 "ordered comparison of pointer with null pointer");
10737 else if (!addr_space_superset (as0, as1, &as_common))
10739 error_at (location, "comparison of pointers to "
10740 "disjoint address spaces");
10741 return error_mark_node;
10743 else
10745 int qual = ENCODE_QUAL_ADDR_SPACE (as_common);
10746 result_type = build_pointer_type
10747 (build_qualified_type (void_type_node, qual));
10748 pedwarn (location, 0,
10749 "comparison of distinct pointer types lacks a cast");
10752 else if (code0 == POINTER_TYPE && null_pointer_constant_p (orig_op1))
10754 result_type = type0;
10755 if (pedantic)
10756 pedwarn (location, OPT_Wpedantic,
10757 "ordered comparison of pointer with integer zero");
10758 else if (extra_warnings)
10759 warning_at (location, OPT_Wextra,
10760 "ordered comparison of pointer with integer zero");
10762 else if (code1 == POINTER_TYPE && null_pointer_constant_p (orig_op0))
10764 result_type = type1;
10765 if (pedantic)
10766 pedwarn (location, OPT_Wpedantic,
10767 "ordered comparison of pointer with integer zero");
10768 else if (extra_warnings)
10769 warning_at (location, OPT_Wextra,
10770 "ordered comparison of pointer with integer zero");
10772 else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
10774 result_type = type0;
10775 pedwarn (location, 0, "comparison between pointer and integer");
10777 else if (code0 == INTEGER_TYPE && code1 == POINTER_TYPE)
10779 result_type = type1;
10780 pedwarn (location, 0, "comparison between pointer and integer");
10782 break;
10784 default:
10785 gcc_unreachable ();
10788 if (code0 == ERROR_MARK || code1 == ERROR_MARK)
10789 return error_mark_node;
10791 if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE
10792 && (!tree_int_cst_equal (TYPE_SIZE (type0), TYPE_SIZE (type1))
10793 || !vector_types_compatible_elements_p (type0, type1)))
10795 binary_op_error (location, code, type0, type1);
10796 return error_mark_node;
10799 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE || code0 == COMPLEX_TYPE
10800 || code0 == FIXED_POINT_TYPE || code0 == VECTOR_TYPE)
10802 (code1 == INTEGER_TYPE || code1 == REAL_TYPE || code1 == COMPLEX_TYPE
10803 || code1 == FIXED_POINT_TYPE || code1 == VECTOR_TYPE))
10805 bool first_complex = (code0 == COMPLEX_TYPE);
10806 bool second_complex = (code1 == COMPLEX_TYPE);
10807 int none_complex = (!first_complex && !second_complex);
10809 if (shorten || common || short_compare)
10811 result_type = c_common_type (type0, type1);
10812 do_warn_double_promotion (result_type, type0, type1,
10813 "implicit conversion from %qT to %qT "
10814 "to match other operand of binary "
10815 "expression",
10816 location);
10817 if (result_type == error_mark_node)
10818 return error_mark_node;
10821 if (first_complex != second_complex
10822 && (code == PLUS_EXPR
10823 || code == MINUS_EXPR
10824 || code == MULT_EXPR
10825 || (code == TRUNC_DIV_EXPR && first_complex))
10826 && TREE_CODE (TREE_TYPE (result_type)) == REAL_TYPE
10827 && flag_signed_zeros)
10829 /* An operation on mixed real/complex operands must be
10830 handled specially, but the language-independent code can
10831 more easily optimize the plain complex arithmetic if
10832 -fno-signed-zeros. */
10833 tree real_type = TREE_TYPE (result_type);
10834 tree real, imag;
10835 if (type0 != orig_type0 || type1 != orig_type1)
10837 gcc_assert (may_need_excess_precision && common);
10838 semantic_result_type = c_common_type (orig_type0, orig_type1);
10840 if (first_complex)
10842 if (TREE_TYPE (op0) != result_type)
10843 op0 = convert_and_check (location, result_type, op0);
10844 if (TREE_TYPE (op1) != real_type)
10845 op1 = convert_and_check (location, real_type, op1);
10847 else
10849 if (TREE_TYPE (op0) != real_type)
10850 op0 = convert_and_check (location, real_type, op0);
10851 if (TREE_TYPE (op1) != result_type)
10852 op1 = convert_and_check (location, result_type, op1);
10854 if (TREE_CODE (op0) == ERROR_MARK || TREE_CODE (op1) == ERROR_MARK)
10855 return error_mark_node;
10856 if (first_complex)
10858 op0 = c_save_expr (op0);
10859 real = build_unary_op (EXPR_LOCATION (orig_op0), REALPART_EXPR,
10860 op0, 1);
10861 imag = build_unary_op (EXPR_LOCATION (orig_op0), IMAGPART_EXPR,
10862 op0, 1);
10863 switch (code)
10865 case MULT_EXPR:
10866 case TRUNC_DIV_EXPR:
10867 op1 = c_save_expr (op1);
10868 imag = build2 (resultcode, real_type, imag, op1);
10869 /* Fall through. */
10870 case PLUS_EXPR:
10871 case MINUS_EXPR:
10872 real = build2 (resultcode, real_type, real, op1);
10873 break;
10874 default:
10875 gcc_unreachable();
10878 else
10880 op1 = c_save_expr (op1);
10881 real = build_unary_op (EXPR_LOCATION (orig_op1), REALPART_EXPR,
10882 op1, 1);
10883 imag = build_unary_op (EXPR_LOCATION (orig_op1), IMAGPART_EXPR,
10884 op1, 1);
10885 switch (code)
10887 case MULT_EXPR:
10888 op0 = c_save_expr (op0);
10889 imag = build2 (resultcode, real_type, op0, imag);
10890 /* Fall through. */
10891 case PLUS_EXPR:
10892 real = build2 (resultcode, real_type, op0, real);
10893 break;
10894 case MINUS_EXPR:
10895 real = build2 (resultcode, real_type, op0, real);
10896 imag = build1 (NEGATE_EXPR, real_type, imag);
10897 break;
10898 default:
10899 gcc_unreachable();
10902 ret = build2 (COMPLEX_EXPR, result_type, real, imag);
10903 goto return_build_binary_op;
10906 /* For certain operations (which identify themselves by shorten != 0)
10907 if both args were extended from the same smaller type,
10908 do the arithmetic in that type and then extend.
10910 shorten !=0 and !=1 indicates a bitwise operation.
10911 For them, this optimization is safe only if
10912 both args are zero-extended or both are sign-extended.
10913 Otherwise, we might change the result.
10914 Eg, (short)-1 | (unsigned short)-1 is (int)-1
10915 but calculated in (unsigned short) it would be (unsigned short)-1. */
10917 if (shorten && none_complex)
10919 final_type = result_type;
10920 result_type = shorten_binary_op (result_type, op0, op1,
10921 shorten == -1);
10924 /* Shifts can be shortened if shifting right. */
10926 if (short_shift)
10928 int unsigned_arg;
10929 tree arg0 = get_narrower (op0, &unsigned_arg);
10931 final_type = result_type;
10933 if (arg0 == op0 && final_type == TREE_TYPE (op0))
10934 unsigned_arg = TYPE_UNSIGNED (TREE_TYPE (op0));
10936 if (TYPE_PRECISION (TREE_TYPE (arg0)) < TYPE_PRECISION (result_type)
10937 && tree_int_cst_sgn (op1) > 0
10938 /* We can shorten only if the shift count is less than the
10939 number of bits in the smaller type size. */
10940 && compare_tree_int (op1, TYPE_PRECISION (TREE_TYPE (arg0))) < 0
10941 /* We cannot drop an unsigned shift after sign-extension. */
10942 && (!TYPE_UNSIGNED (final_type) || unsigned_arg))
10944 /* Do an unsigned shift if the operand was zero-extended. */
10945 result_type
10946 = c_common_signed_or_unsigned_type (unsigned_arg,
10947 TREE_TYPE (arg0));
10948 /* Convert value-to-be-shifted to that type. */
10949 if (TREE_TYPE (op0) != result_type)
10950 op0 = convert (result_type, op0);
10951 converted = 1;
10955 /* Comparison operations are shortened too but differently.
10956 They identify themselves by setting short_compare = 1. */
10958 if (short_compare)
10960 /* Don't write &op0, etc., because that would prevent op0
10961 from being kept in a register.
10962 Instead, make copies of the our local variables and
10963 pass the copies by reference, then copy them back afterward. */
10964 tree xop0 = op0, xop1 = op1, xresult_type = result_type;
10965 enum tree_code xresultcode = resultcode;
10966 tree val
10967 = shorten_compare (location, &xop0, &xop1, &xresult_type,
10968 &xresultcode);
10970 if (val != 0)
10972 ret = val;
10973 goto return_build_binary_op;
10976 op0 = xop0, op1 = xop1;
10977 converted = 1;
10978 resultcode = xresultcode;
10980 if (c_inhibit_evaluation_warnings == 0)
10982 bool op0_maybe_const = true;
10983 bool op1_maybe_const = true;
10984 tree orig_op0_folded, orig_op1_folded;
10986 if (in_late_binary_op)
10988 orig_op0_folded = orig_op0;
10989 orig_op1_folded = orig_op1;
10991 else
10993 /* Fold for the sake of possible warnings, as in
10994 build_conditional_expr. This requires the
10995 "original" values to be folded, not just op0 and
10996 op1. */
10997 c_inhibit_evaluation_warnings++;
10998 op0 = c_fully_fold (op0, require_constant_value,
10999 &op0_maybe_const);
11000 op1 = c_fully_fold (op1, require_constant_value,
11001 &op1_maybe_const);
11002 c_inhibit_evaluation_warnings--;
11003 orig_op0_folded = c_fully_fold (orig_op0,
11004 require_constant_value,
11005 NULL);
11006 orig_op1_folded = c_fully_fold (orig_op1,
11007 require_constant_value,
11008 NULL);
11011 if (warn_sign_compare)
11012 warn_for_sign_compare (location, orig_op0_folded,
11013 orig_op1_folded, op0, op1,
11014 result_type, resultcode);
11015 if (!in_late_binary_op && !int_operands)
11017 if (!op0_maybe_const || TREE_CODE (op0) != INTEGER_CST)
11018 op0 = c_wrap_maybe_const (op0, !op0_maybe_const);
11019 if (!op1_maybe_const || TREE_CODE (op1) != INTEGER_CST)
11020 op1 = c_wrap_maybe_const (op1, !op1_maybe_const);
11026 /* At this point, RESULT_TYPE must be nonzero to avoid an error message.
11027 If CONVERTED is zero, both args will be converted to type RESULT_TYPE.
11028 Then the expression will be built.
11029 It will be given type FINAL_TYPE if that is nonzero;
11030 otherwise, it will be given type RESULT_TYPE. */
11032 if (!result_type)
11034 binary_op_error (location, code, TREE_TYPE (op0), TREE_TYPE (op1));
11035 return error_mark_node;
11038 if (build_type == NULL_TREE)
11040 build_type = result_type;
11041 if ((type0 != orig_type0 || type1 != orig_type1)
11042 && !boolean_op)
11044 gcc_assert (may_need_excess_precision && common);
11045 semantic_result_type = c_common_type (orig_type0, orig_type1);
11049 if (!converted)
11051 op0 = ep_convert_and_check (location, result_type, op0,
11052 semantic_result_type);
11053 op1 = ep_convert_and_check (location, result_type, op1,
11054 semantic_result_type);
11056 /* This can happen if one operand has a vector type, and the other
11057 has a different type. */
11058 if (TREE_CODE (op0) == ERROR_MARK || TREE_CODE (op1) == ERROR_MARK)
11059 return error_mark_node;
11062 if ((flag_sanitize & (SANITIZE_SHIFT | SANITIZE_DIVIDE
11063 | SANITIZE_FLOAT_DIVIDE))
11064 && current_function_decl != 0
11065 && !lookup_attribute ("no_sanitize_undefined",
11066 DECL_ATTRIBUTES (current_function_decl))
11067 && (doing_div_or_mod || doing_shift))
11069 /* OP0 and/or OP1 might have side-effects. */
11070 op0 = c_save_expr (op0);
11071 op1 = c_save_expr (op1);
11072 op0 = c_fully_fold (op0, false, NULL);
11073 op1 = c_fully_fold (op1, false, NULL);
11074 if (doing_div_or_mod && (flag_sanitize & (SANITIZE_DIVIDE
11075 | SANITIZE_FLOAT_DIVIDE)))
11076 instrument_expr = ubsan_instrument_division (location, op0, op1);
11077 else if (doing_shift && (flag_sanitize & SANITIZE_SHIFT))
11078 instrument_expr = ubsan_instrument_shift (location, code, op0, op1);
11081 /* Treat expressions in initializers specially as they can't trap. */
11082 if (int_const_or_overflow)
11083 ret = (require_constant_value
11084 ? fold_build2_initializer_loc (location, resultcode, build_type,
11085 op0, op1)
11086 : fold_build2_loc (location, resultcode, build_type, op0, op1));
11087 else
11088 ret = build2 (resultcode, build_type, op0, op1);
11089 if (final_type != 0)
11090 ret = convert (final_type, ret);
11092 return_build_binary_op:
11093 gcc_assert (ret != error_mark_node);
11094 if (TREE_CODE (ret) == INTEGER_CST && !TREE_OVERFLOW (ret) && !int_const)
11095 ret = (int_operands
11096 ? note_integer_operands (ret)
11097 : build1 (NOP_EXPR, TREE_TYPE (ret), ret));
11098 else if (TREE_CODE (ret) != INTEGER_CST && int_operands
11099 && !in_late_binary_op)
11100 ret = note_integer_operands (ret);
11101 if (semantic_result_type)
11102 ret = build1 (EXCESS_PRECISION_EXPR, semantic_result_type, ret);
11103 protected_set_expr_location (ret, location);
11105 if (instrument_expr != NULL)
11106 ret = fold_build2 (COMPOUND_EXPR, TREE_TYPE (ret),
11107 instrument_expr, ret);
11109 return ret;
11113 /* Convert EXPR to be a truth-value, validating its type for this
11114 purpose. LOCATION is the source location for the expression. */
11116 tree
11117 c_objc_common_truthvalue_conversion (location_t location, tree expr)
11119 bool int_const, int_operands;
11121 switch (TREE_CODE (TREE_TYPE (expr)))
11123 case ARRAY_TYPE:
11124 error_at (location, "used array that cannot be converted to pointer where scalar is required");
11125 return error_mark_node;
11127 case RECORD_TYPE:
11128 error_at (location, "used struct type value where scalar is required");
11129 return error_mark_node;
11131 case UNION_TYPE:
11132 error_at (location, "used union type value where scalar is required");
11133 return error_mark_node;
11135 case VOID_TYPE:
11136 error_at (location, "void value not ignored as it ought to be");
11137 return error_mark_node;
11139 case FUNCTION_TYPE:
11140 gcc_unreachable ();
11142 case VECTOR_TYPE:
11143 error_at (location, "used vector type where scalar is required");
11144 return error_mark_node;
11146 default:
11147 break;
11150 int_const = (TREE_CODE (expr) == INTEGER_CST && !TREE_OVERFLOW (expr));
11151 int_operands = EXPR_INT_CONST_OPERANDS (expr);
11152 if (int_operands && TREE_CODE (expr) != INTEGER_CST)
11154 expr = remove_c_maybe_const_expr (expr);
11155 expr = build2 (NE_EXPR, integer_type_node, expr,
11156 convert (TREE_TYPE (expr), integer_zero_node));
11157 expr = note_integer_operands (expr);
11159 else
11160 /* ??? Should we also give an error for vectors rather than leaving
11161 those to give errors later? */
11162 expr = c_common_truthvalue_conversion (location, expr);
11164 if (TREE_CODE (expr) == INTEGER_CST && int_operands && !int_const)
11166 if (TREE_OVERFLOW (expr))
11167 return expr;
11168 else
11169 return note_integer_operands (expr);
11171 if (TREE_CODE (expr) == INTEGER_CST && !int_const)
11172 return build1 (NOP_EXPR, TREE_TYPE (expr), expr);
11173 return expr;
11177 /* Convert EXPR to a contained DECL, updating *TC, *TI and *SE as
11178 required. */
11180 tree
11181 c_expr_to_decl (tree expr, bool *tc ATTRIBUTE_UNUSED, bool *se)
11183 if (TREE_CODE (expr) == COMPOUND_LITERAL_EXPR)
11185 tree decl = COMPOUND_LITERAL_EXPR_DECL (expr);
11186 /* Executing a compound literal inside a function reinitializes
11187 it. */
11188 if (!TREE_STATIC (decl))
11189 *se = true;
11190 return decl;
11192 else
11193 return expr;
11196 /* Like c_begin_compound_stmt, except force the retention of the BLOCK. */
11198 tree
11199 c_begin_omp_parallel (void)
11201 tree block;
11203 keep_next_level ();
11204 block = c_begin_compound_stmt (true);
11206 return block;
11209 /* Generate OMP_PARALLEL, with CLAUSES and BLOCK as its compound
11210 statement. LOC is the location of the OMP_PARALLEL. */
11212 tree
11213 c_finish_omp_parallel (location_t loc, tree clauses, tree block)
11215 tree stmt;
11217 block = c_end_compound_stmt (loc, block, true);
11219 stmt = make_node (OMP_PARALLEL);
11220 TREE_TYPE (stmt) = void_type_node;
11221 OMP_PARALLEL_CLAUSES (stmt) = clauses;
11222 OMP_PARALLEL_BODY (stmt) = block;
11223 SET_EXPR_LOCATION (stmt, loc);
11225 return add_stmt (stmt);
11228 /* Like c_begin_compound_stmt, except force the retention of the BLOCK. */
11230 tree
11231 c_begin_omp_task (void)
11233 tree block;
11235 keep_next_level ();
11236 block = c_begin_compound_stmt (true);
11238 return block;
11241 /* Generate OMP_TASK, with CLAUSES and BLOCK as its compound
11242 statement. LOC is the location of the #pragma. */
11244 tree
11245 c_finish_omp_task (location_t loc, tree clauses, tree block)
11247 tree stmt;
11249 block = c_end_compound_stmt (loc, block, true);
11251 stmt = make_node (OMP_TASK);
11252 TREE_TYPE (stmt) = void_type_node;
11253 OMP_TASK_CLAUSES (stmt) = clauses;
11254 OMP_TASK_BODY (stmt) = block;
11255 SET_EXPR_LOCATION (stmt, loc);
11257 return add_stmt (stmt);
11260 /* Generate GOMP_cancel call for #pragma omp cancel. */
11262 void
11263 c_finish_omp_cancel (location_t loc, tree clauses)
11265 tree fn = builtin_decl_explicit (BUILT_IN_GOMP_CANCEL);
11266 int mask = 0;
11267 if (find_omp_clause (clauses, OMP_CLAUSE_PARALLEL))
11268 mask = 1;
11269 else if (find_omp_clause (clauses, OMP_CLAUSE_FOR))
11270 mask = 2;
11271 else if (find_omp_clause (clauses, OMP_CLAUSE_SECTIONS))
11272 mask = 4;
11273 else if (find_omp_clause (clauses, OMP_CLAUSE_TASKGROUP))
11274 mask = 8;
11275 else
11277 error_at (loc, "%<#pragma omp cancel must specify one of "
11278 "%<parallel%>, %<for%>, %<sections%> or %<taskgroup%> "
11279 "clauses");
11280 return;
11282 tree ifc = find_omp_clause (clauses, OMP_CLAUSE_IF);
11283 if (ifc != NULL_TREE)
11285 tree type = TREE_TYPE (OMP_CLAUSE_IF_EXPR (ifc));
11286 ifc = fold_build2_loc (OMP_CLAUSE_LOCATION (ifc), NE_EXPR,
11287 boolean_type_node, OMP_CLAUSE_IF_EXPR (ifc),
11288 build_zero_cst (type));
11290 else
11291 ifc = boolean_true_node;
11292 tree stmt = build_call_expr_loc (loc, fn, 2,
11293 build_int_cst (integer_type_node, mask),
11294 ifc);
11295 add_stmt (stmt);
11298 /* Generate GOMP_cancellation_point call for
11299 #pragma omp cancellation point. */
11301 void
11302 c_finish_omp_cancellation_point (location_t loc, tree clauses)
11304 tree fn = builtin_decl_explicit (BUILT_IN_GOMP_CANCELLATION_POINT);
11305 int mask = 0;
11306 if (find_omp_clause (clauses, OMP_CLAUSE_PARALLEL))
11307 mask = 1;
11308 else if (find_omp_clause (clauses, OMP_CLAUSE_FOR))
11309 mask = 2;
11310 else if (find_omp_clause (clauses, OMP_CLAUSE_SECTIONS))
11311 mask = 4;
11312 else if (find_omp_clause (clauses, OMP_CLAUSE_TASKGROUP))
11313 mask = 8;
11314 else
11316 error_at (loc, "%<#pragma omp cancellation point must specify one of "
11317 "%<parallel%>, %<for%>, %<sections%> or %<taskgroup%> "
11318 "clauses");
11319 return;
11321 tree stmt = build_call_expr_loc (loc, fn, 1,
11322 build_int_cst (integer_type_node, mask));
11323 add_stmt (stmt);
11326 /* Helper function for handle_omp_array_sections. Called recursively
11327 to handle multiple array-section-subscripts. C is the clause,
11328 T current expression (initially OMP_CLAUSE_DECL), which is either
11329 a TREE_LIST for array-section-subscript (TREE_PURPOSE is low-bound
11330 expression if specified, TREE_VALUE length expression if specified,
11331 TREE_CHAIN is what it has been specified after, or some decl.
11332 TYPES vector is populated with array section types, MAYBE_ZERO_LEN
11333 set to true if any of the array-section-subscript could have length
11334 of zero (explicit or implicit), FIRST_NON_ONE is the index of the
11335 first array-section-subscript which is known not to have length
11336 of one. Given say:
11337 map(a[:b][2:1][:c][:2][:d][e:f][2:5])
11338 FIRST_NON_ONE will be 3, array-section-subscript [:b], [2:1] and [:c]
11339 all are or may have length of 1, array-section-subscript [:2] is the
11340 first one knonwn not to have length 1. For array-section-subscript
11341 <= FIRST_NON_ONE we diagnose non-contiguous arrays if low bound isn't
11342 0 or length isn't the array domain max + 1, for > FIRST_NON_ONE we
11343 can if MAYBE_ZERO_LEN is false. MAYBE_ZERO_LEN will be true in the above
11344 case though, as some lengths could be zero. */
11346 static tree
11347 handle_omp_array_sections_1 (tree c, tree t, vec<tree> &types,
11348 bool &maybe_zero_len, unsigned int &first_non_one)
11350 tree ret, low_bound, length, type;
11351 if (TREE_CODE (t) != TREE_LIST)
11353 if (t == error_mark_node || TREE_TYPE (t) == error_mark_node)
11354 return error_mark_node;
11355 if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
11357 if (DECL_P (t))
11358 error_at (OMP_CLAUSE_LOCATION (c),
11359 "%qD is not a variable in %qs clause", t,
11360 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
11361 else
11362 error_at (OMP_CLAUSE_LOCATION (c),
11363 "%qE is not a variable in %qs clause", t,
11364 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
11365 return error_mark_node;
11367 else if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_DEPEND
11368 && TREE_CODE (t) == VAR_DECL && DECL_THREAD_LOCAL_P (t))
11370 error_at (OMP_CLAUSE_LOCATION (c),
11371 "%qD is threadprivate variable in %qs clause", t,
11372 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
11373 return error_mark_node;
11375 return t;
11378 ret = handle_omp_array_sections_1 (c, TREE_CHAIN (t), types,
11379 maybe_zero_len, first_non_one);
11380 if (ret == error_mark_node || ret == NULL_TREE)
11381 return ret;
11383 type = TREE_TYPE (ret);
11384 low_bound = TREE_PURPOSE (t);
11385 length = TREE_VALUE (t);
11387 if (low_bound == error_mark_node || length == error_mark_node)
11388 return error_mark_node;
11390 if (low_bound && !INTEGRAL_TYPE_P (TREE_TYPE (low_bound)))
11392 error_at (OMP_CLAUSE_LOCATION (c),
11393 "low bound %qE of array section does not have integral type",
11394 low_bound);
11395 return error_mark_node;
11397 if (length && !INTEGRAL_TYPE_P (TREE_TYPE (length)))
11399 error_at (OMP_CLAUSE_LOCATION (c),
11400 "length %qE of array section does not have integral type",
11401 length);
11402 return error_mark_node;
11404 if (low_bound
11405 && TREE_CODE (low_bound) == INTEGER_CST
11406 && TYPE_PRECISION (TREE_TYPE (low_bound))
11407 > TYPE_PRECISION (sizetype))
11408 low_bound = fold_convert (sizetype, low_bound);
11409 if (length
11410 && TREE_CODE (length) == INTEGER_CST
11411 && TYPE_PRECISION (TREE_TYPE (length))
11412 > TYPE_PRECISION (sizetype))
11413 length = fold_convert (sizetype, length);
11414 if (low_bound == NULL_TREE)
11415 low_bound = integer_zero_node;
11417 if (length != NULL_TREE)
11419 if (!integer_nonzerop (length))
11420 maybe_zero_len = true;
11421 if (first_non_one == types.length ()
11422 && (TREE_CODE (length) != INTEGER_CST || integer_onep (length)))
11423 first_non_one++;
11425 if (TREE_CODE (type) == ARRAY_TYPE)
11427 if (length == NULL_TREE
11428 && (TYPE_DOMAIN (type) == NULL_TREE
11429 || TYPE_MAX_VALUE (TYPE_DOMAIN (type)) == NULL_TREE))
11431 error_at (OMP_CLAUSE_LOCATION (c),
11432 "for unknown bound array type length expression must "
11433 "be specified");
11434 return error_mark_node;
11436 if (TREE_CODE (low_bound) == INTEGER_CST
11437 && tree_int_cst_sgn (low_bound) == -1)
11439 error_at (OMP_CLAUSE_LOCATION (c),
11440 "negative low bound in array section in %qs clause",
11441 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
11442 return error_mark_node;
11444 if (length != NULL_TREE
11445 && TREE_CODE (length) == INTEGER_CST
11446 && tree_int_cst_sgn (length) == -1)
11448 error_at (OMP_CLAUSE_LOCATION (c),
11449 "negative length in array section in %qs clause",
11450 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
11451 return error_mark_node;
11453 if (TYPE_DOMAIN (type)
11454 && TYPE_MAX_VALUE (TYPE_DOMAIN (type))
11455 && TREE_CODE (TYPE_MAX_VALUE (TYPE_DOMAIN (type)))
11456 == INTEGER_CST)
11458 tree size = size_binop (PLUS_EXPR,
11459 TYPE_MAX_VALUE (TYPE_DOMAIN (type)),
11460 size_one_node);
11461 if (TREE_CODE (low_bound) == INTEGER_CST)
11463 if (tree_int_cst_lt (size, low_bound))
11465 error_at (OMP_CLAUSE_LOCATION (c),
11466 "low bound %qE above array section size "
11467 "in %qs clause", low_bound,
11468 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
11469 return error_mark_node;
11471 if (tree_int_cst_equal (size, low_bound))
11472 maybe_zero_len = true;
11473 else if (length == NULL_TREE
11474 && first_non_one == types.length ()
11475 && tree_int_cst_equal
11476 (TYPE_MAX_VALUE (TYPE_DOMAIN (type)),
11477 low_bound))
11478 first_non_one++;
11480 else if (length == NULL_TREE)
11482 maybe_zero_len = true;
11483 if (first_non_one == types.length ())
11484 first_non_one++;
11486 if (length && TREE_CODE (length) == INTEGER_CST)
11488 if (tree_int_cst_lt (size, length))
11490 error_at (OMP_CLAUSE_LOCATION (c),
11491 "length %qE above array section size "
11492 "in %qs clause", length,
11493 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
11494 return error_mark_node;
11496 if (TREE_CODE (low_bound) == INTEGER_CST)
11498 tree lbpluslen
11499 = size_binop (PLUS_EXPR,
11500 fold_convert (sizetype, low_bound),
11501 fold_convert (sizetype, length));
11502 if (TREE_CODE (lbpluslen) == INTEGER_CST
11503 && tree_int_cst_lt (size, lbpluslen))
11505 error_at (OMP_CLAUSE_LOCATION (c),
11506 "high bound %qE above array section size "
11507 "in %qs clause", lbpluslen,
11508 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
11509 return error_mark_node;
11514 else if (length == NULL_TREE)
11516 maybe_zero_len = true;
11517 if (first_non_one == types.length ())
11518 first_non_one++;
11521 /* For [lb:] we will need to evaluate lb more than once. */
11522 if (length == NULL_TREE && OMP_CLAUSE_CODE (c) != OMP_CLAUSE_DEPEND)
11524 tree lb = c_save_expr (low_bound);
11525 if (lb != low_bound)
11527 TREE_PURPOSE (t) = lb;
11528 low_bound = lb;
11532 else if (TREE_CODE (type) == POINTER_TYPE)
11534 if (length == NULL_TREE)
11536 error_at (OMP_CLAUSE_LOCATION (c),
11537 "for pointer type length expression must be specified");
11538 return error_mark_node;
11540 /* If there is a pointer type anywhere but in the very first
11541 array-section-subscript, the array section can't be contiguous. */
11542 if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_DEPEND
11543 && TREE_CODE (TREE_CHAIN (t)) == TREE_LIST)
11545 error_at (OMP_CLAUSE_LOCATION (c),
11546 "array section is not contiguous in %qs clause",
11547 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
11548 return error_mark_node;
11551 else
11553 error_at (OMP_CLAUSE_LOCATION (c),
11554 "%qE does not have pointer or array type", ret);
11555 return error_mark_node;
11557 if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_DEPEND)
11558 types.safe_push (TREE_TYPE (ret));
11559 /* We will need to evaluate lb more than once. */
11560 tree lb = c_save_expr (low_bound);
11561 if (lb != low_bound)
11563 TREE_PURPOSE (t) = lb;
11564 low_bound = lb;
11566 ret = build_array_ref (OMP_CLAUSE_LOCATION (c), ret, low_bound);
11567 return ret;
11570 /* Handle array sections for clause C. */
11572 static bool
11573 handle_omp_array_sections (tree c)
11575 bool maybe_zero_len = false;
11576 unsigned int first_non_one = 0;
11577 vec<tree> types = vNULL;
11578 tree first = handle_omp_array_sections_1 (c, OMP_CLAUSE_DECL (c), types,
11579 maybe_zero_len, first_non_one);
11580 if (first == error_mark_node)
11582 types.release ();
11583 return true;
11585 if (first == NULL_TREE)
11587 types.release ();
11588 return false;
11590 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_DEPEND)
11592 tree t = OMP_CLAUSE_DECL (c);
11593 tree tem = NULL_TREE;
11594 types.release ();
11595 /* Need to evaluate side effects in the length expressions
11596 if any. */
11597 while (TREE_CODE (t) == TREE_LIST)
11599 if (TREE_VALUE (t) && TREE_SIDE_EFFECTS (TREE_VALUE (t)))
11601 if (tem == NULL_TREE)
11602 tem = TREE_VALUE (t);
11603 else
11604 tem = build2 (COMPOUND_EXPR, TREE_TYPE (tem),
11605 TREE_VALUE (t), tem);
11607 t = TREE_CHAIN (t);
11609 if (tem)
11610 first = build2 (COMPOUND_EXPR, TREE_TYPE (first), tem, first);
11611 first = c_fully_fold (first, false, NULL);
11612 OMP_CLAUSE_DECL (c) = first;
11614 else
11616 unsigned int num = types.length (), i;
11617 tree t, side_effects = NULL_TREE, size = NULL_TREE;
11618 tree condition = NULL_TREE;
11620 if (int_size_in_bytes (TREE_TYPE (first)) <= 0)
11621 maybe_zero_len = true;
11623 for (i = num, t = OMP_CLAUSE_DECL (c); i > 0;
11624 t = TREE_CHAIN (t))
11626 tree low_bound = TREE_PURPOSE (t);
11627 tree length = TREE_VALUE (t);
11629 i--;
11630 if (low_bound
11631 && TREE_CODE (low_bound) == INTEGER_CST
11632 && TYPE_PRECISION (TREE_TYPE (low_bound))
11633 > TYPE_PRECISION (sizetype))
11634 low_bound = fold_convert (sizetype, low_bound);
11635 if (length
11636 && TREE_CODE (length) == INTEGER_CST
11637 && TYPE_PRECISION (TREE_TYPE (length))
11638 > TYPE_PRECISION (sizetype))
11639 length = fold_convert (sizetype, length);
11640 if (low_bound == NULL_TREE)
11641 low_bound = integer_zero_node;
11642 if (!maybe_zero_len && i > first_non_one)
11644 if (integer_nonzerop (low_bound))
11645 goto do_warn_noncontiguous;
11646 if (length != NULL_TREE
11647 && TREE_CODE (length) == INTEGER_CST
11648 && TYPE_DOMAIN (types[i])
11649 && TYPE_MAX_VALUE (TYPE_DOMAIN (types[i]))
11650 && TREE_CODE (TYPE_MAX_VALUE (TYPE_DOMAIN (types[i])))
11651 == INTEGER_CST)
11653 tree size;
11654 size = size_binop (PLUS_EXPR,
11655 TYPE_MAX_VALUE (TYPE_DOMAIN (types[i])),
11656 size_one_node);
11657 if (!tree_int_cst_equal (length, size))
11659 do_warn_noncontiguous:
11660 error_at (OMP_CLAUSE_LOCATION (c),
11661 "array section is not contiguous in %qs "
11662 "clause",
11663 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
11664 types.release ();
11665 return true;
11668 if (length != NULL_TREE
11669 && TREE_SIDE_EFFECTS (length))
11671 if (side_effects == NULL_TREE)
11672 side_effects = length;
11673 else
11674 side_effects = build2 (COMPOUND_EXPR,
11675 TREE_TYPE (side_effects),
11676 length, side_effects);
11679 else
11681 tree l;
11683 if (i > first_non_one && length && integer_nonzerop (length))
11684 continue;
11685 if (length)
11686 l = fold_convert (sizetype, length);
11687 else
11689 l = size_binop (PLUS_EXPR,
11690 TYPE_MAX_VALUE (TYPE_DOMAIN (types[i])),
11691 size_one_node);
11692 l = size_binop (MINUS_EXPR, l,
11693 fold_convert (sizetype, low_bound));
11695 if (i > first_non_one)
11697 l = fold_build2 (NE_EXPR, boolean_type_node, l,
11698 size_zero_node);
11699 if (condition == NULL_TREE)
11700 condition = l;
11701 else
11702 condition = fold_build2 (BIT_AND_EXPR, boolean_type_node,
11703 l, condition);
11705 else if (size == NULL_TREE)
11707 size = size_in_bytes (TREE_TYPE (types[i]));
11708 size = size_binop (MULT_EXPR, size, l);
11709 if (condition)
11710 size = fold_build3 (COND_EXPR, sizetype, condition,
11711 size, size_zero_node);
11713 else
11714 size = size_binop (MULT_EXPR, size, l);
11717 types.release ();
11718 if (side_effects)
11719 size = build2 (COMPOUND_EXPR, sizetype, side_effects, size);
11720 first = c_fully_fold (first, false, NULL);
11721 OMP_CLAUSE_DECL (c) = first;
11722 if (size)
11723 size = c_fully_fold (size, false, NULL);
11724 OMP_CLAUSE_SIZE (c) = size;
11725 if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_MAP)
11726 return false;
11727 tree c2 = build_omp_clause (OMP_CLAUSE_LOCATION (c), OMP_CLAUSE_MAP);
11728 OMP_CLAUSE_MAP_KIND (c2) = OMP_CLAUSE_MAP_POINTER;
11729 if (!c_mark_addressable (t))
11730 return false;
11731 OMP_CLAUSE_DECL (c2) = t;
11732 t = build_fold_addr_expr (first);
11733 t = fold_convert_loc (OMP_CLAUSE_LOCATION (c), ptrdiff_type_node, t);
11734 tree ptr = OMP_CLAUSE_DECL (c2);
11735 if (!POINTER_TYPE_P (TREE_TYPE (ptr)))
11736 ptr = build_fold_addr_expr (ptr);
11737 t = fold_build2_loc (OMP_CLAUSE_LOCATION (c), MINUS_EXPR,
11738 ptrdiff_type_node, t,
11739 fold_convert_loc (OMP_CLAUSE_LOCATION (c),
11740 ptrdiff_type_node, ptr));
11741 t = c_fully_fold (t, false, NULL);
11742 OMP_CLAUSE_SIZE (c2) = t;
11743 OMP_CLAUSE_CHAIN (c2) = OMP_CLAUSE_CHAIN (c);
11744 OMP_CLAUSE_CHAIN (c) = c2;
11746 return false;
11749 /* Helper function of finish_omp_clauses. Clone STMT as if we were making
11750 an inline call. But, remap
11751 the OMP_DECL1 VAR_DECL (omp_out resp. omp_orig) to PLACEHOLDER
11752 and OMP_DECL2 VAR_DECL (omp_in resp. omp_priv) to DECL. */
11754 static tree
11755 c_clone_omp_udr (tree stmt, tree omp_decl1, tree omp_decl2,
11756 tree decl, tree placeholder)
11758 copy_body_data id;
11759 struct pointer_map_t *decl_map = pointer_map_create ();
11761 *pointer_map_insert (decl_map, omp_decl1) = placeholder;
11762 *pointer_map_insert (decl_map, omp_decl2) = decl;
11763 memset (&id, 0, sizeof (id));
11764 id.src_fn = DECL_CONTEXT (omp_decl1);
11765 id.dst_fn = current_function_decl;
11766 id.src_cfun = DECL_STRUCT_FUNCTION (id.src_fn);
11767 id.decl_map = decl_map;
11769 id.copy_decl = copy_decl_no_change;
11770 id.transform_call_graph_edges = CB_CGE_DUPLICATE;
11771 id.transform_new_cfg = true;
11772 id.transform_return_to_modify = false;
11773 id.transform_lang_insert_block = NULL;
11774 id.eh_lp_nr = 0;
11775 walk_tree (&stmt, copy_tree_body_r, &id, NULL);
11776 pointer_map_destroy (decl_map);
11777 return stmt;
11780 /* Helper function of c_finish_omp_clauses, called via walk_tree.
11781 Find OMP_CLAUSE_PLACEHOLDER (passed in DATA) in *TP. */
11783 static tree
11784 c_find_omp_placeholder_r (tree *tp, int *, void *data)
11786 if (*tp == (tree) data)
11787 return *tp;
11788 return NULL_TREE;
11791 /* For all elements of CLAUSES, validate them vs OpenMP constraints.
11792 Remove any elements from the list that are invalid. */
11794 tree
11795 c_finish_omp_clauses (tree clauses)
11797 bitmap_head generic_head, firstprivate_head, lastprivate_head;
11798 bitmap_head aligned_head;
11799 tree c, t, *pc;
11800 bool branch_seen = false;
11801 bool copyprivate_seen = false;
11802 tree *nowait_clause = NULL;
11804 bitmap_obstack_initialize (NULL);
11805 bitmap_initialize (&generic_head, &bitmap_default_obstack);
11806 bitmap_initialize (&firstprivate_head, &bitmap_default_obstack);
11807 bitmap_initialize (&lastprivate_head, &bitmap_default_obstack);
11808 bitmap_initialize (&aligned_head, &bitmap_default_obstack);
11810 for (pc = &clauses, c = clauses; c ; c = *pc)
11812 bool remove = false;
11813 bool need_complete = false;
11814 bool need_implicitly_determined = false;
11816 switch (OMP_CLAUSE_CODE (c))
11818 case OMP_CLAUSE_SHARED:
11819 need_implicitly_determined = true;
11820 goto check_dup_generic;
11822 case OMP_CLAUSE_PRIVATE:
11823 need_complete = true;
11824 need_implicitly_determined = true;
11825 goto check_dup_generic;
11827 case OMP_CLAUSE_REDUCTION:
11828 need_implicitly_determined = true;
11829 t = OMP_CLAUSE_DECL (c);
11830 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c) == NULL_TREE
11831 && (FLOAT_TYPE_P (TREE_TYPE (t))
11832 || TREE_CODE (TREE_TYPE (t)) == COMPLEX_TYPE))
11834 enum tree_code r_code = OMP_CLAUSE_REDUCTION_CODE (c);
11835 const char *r_name = NULL;
11837 switch (r_code)
11839 case PLUS_EXPR:
11840 case MULT_EXPR:
11841 case MINUS_EXPR:
11842 break;
11843 case MIN_EXPR:
11844 if (TREE_CODE (TREE_TYPE (t)) == COMPLEX_TYPE)
11845 r_name = "min";
11846 break;
11847 case MAX_EXPR:
11848 if (TREE_CODE (TREE_TYPE (t)) == COMPLEX_TYPE)
11849 r_name = "max";
11850 break;
11851 case BIT_AND_EXPR:
11852 r_name = "&";
11853 break;
11854 case BIT_XOR_EXPR:
11855 r_name = "^";
11856 break;
11857 case BIT_IOR_EXPR:
11858 r_name = "|";
11859 break;
11860 case TRUTH_ANDIF_EXPR:
11861 if (FLOAT_TYPE_P (TREE_TYPE (t)))
11862 r_name = "&&";
11863 break;
11864 case TRUTH_ORIF_EXPR:
11865 if (FLOAT_TYPE_P (TREE_TYPE (t)))
11866 r_name = "||";
11867 break;
11868 default:
11869 gcc_unreachable ();
11871 if (r_name)
11873 error_at (OMP_CLAUSE_LOCATION (c),
11874 "%qE has invalid type for %<reduction(%s)%>",
11875 t, r_name);
11876 remove = true;
11877 break;
11880 else if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c) == error_mark_node)
11882 error_at (OMP_CLAUSE_LOCATION (c),
11883 "user defined reduction not found for %qD", t);
11884 remove = true;
11885 break;
11887 else if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c))
11889 tree list = OMP_CLAUSE_REDUCTION_PLACEHOLDER (c);
11890 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (t));
11891 tree placeholder = build_decl (OMP_CLAUSE_LOCATION (c),
11892 VAR_DECL, NULL_TREE, type);
11893 OMP_CLAUSE_REDUCTION_PLACEHOLDER (c) = placeholder;
11894 DECL_ARTIFICIAL (placeholder) = 1;
11895 DECL_IGNORED_P (placeholder) = 1;
11896 if (TREE_ADDRESSABLE (TREE_VEC_ELT (list, 0)))
11897 c_mark_addressable (placeholder);
11898 if (TREE_ADDRESSABLE (TREE_VEC_ELT (list, 1)))
11899 c_mark_addressable (OMP_CLAUSE_DECL (c));
11900 OMP_CLAUSE_REDUCTION_MERGE (c)
11901 = c_clone_omp_udr (TREE_VEC_ELT (list, 2),
11902 TREE_VEC_ELT (list, 0),
11903 TREE_VEC_ELT (list, 1),
11904 OMP_CLAUSE_DECL (c), placeholder);
11905 OMP_CLAUSE_REDUCTION_MERGE (c)
11906 = build3_loc (OMP_CLAUSE_LOCATION (c), BIND_EXPR,
11907 void_type_node, NULL_TREE,
11908 OMP_CLAUSE_REDUCTION_MERGE (c), NULL_TREE);
11909 TREE_SIDE_EFFECTS (OMP_CLAUSE_REDUCTION_MERGE (c)) = 1;
11910 if (TREE_VEC_LENGTH (list) == 6)
11912 if (TREE_ADDRESSABLE (TREE_VEC_ELT (list, 3)))
11913 c_mark_addressable (OMP_CLAUSE_DECL (c));
11914 if (TREE_ADDRESSABLE (TREE_VEC_ELT (list, 4)))
11915 c_mark_addressable (placeholder);
11916 tree init = TREE_VEC_ELT (list, 5);
11917 if (init == error_mark_node)
11918 init = DECL_INITIAL (TREE_VEC_ELT (list, 3));
11919 OMP_CLAUSE_REDUCTION_INIT (c)
11920 = c_clone_omp_udr (init, TREE_VEC_ELT (list, 4),
11921 TREE_VEC_ELT (list, 3),
11922 OMP_CLAUSE_DECL (c), placeholder);
11923 if (TREE_VEC_ELT (list, 5) == error_mark_node)
11924 OMP_CLAUSE_REDUCTION_INIT (c)
11925 = build2 (INIT_EXPR, TREE_TYPE (t), t,
11926 OMP_CLAUSE_REDUCTION_INIT (c));
11927 if (walk_tree (&OMP_CLAUSE_REDUCTION_INIT (c),
11928 c_find_omp_placeholder_r,
11929 placeholder, NULL))
11930 OMP_CLAUSE_REDUCTION_OMP_ORIG_REF (c) = 1;
11932 else
11934 tree init;
11935 if (AGGREGATE_TYPE_P (TREE_TYPE (t)))
11936 init = build_constructor (TREE_TYPE (t), NULL);
11937 else
11938 init = fold_convert (TREE_TYPE (t), integer_zero_node);
11939 OMP_CLAUSE_REDUCTION_INIT (c)
11940 = build2 (INIT_EXPR, TREE_TYPE (t), t, init);
11942 OMP_CLAUSE_REDUCTION_INIT (c)
11943 = build3_loc (OMP_CLAUSE_LOCATION (c), BIND_EXPR,
11944 void_type_node, NULL_TREE,
11945 OMP_CLAUSE_REDUCTION_INIT (c), NULL_TREE);
11946 TREE_SIDE_EFFECTS (OMP_CLAUSE_REDUCTION_INIT (c)) = 1;
11948 goto check_dup_generic;
11950 case OMP_CLAUSE_COPYPRIVATE:
11951 copyprivate_seen = true;
11952 if (nowait_clause)
11954 error_at (OMP_CLAUSE_LOCATION (*nowait_clause),
11955 "%<nowait%> clause must not be used together "
11956 "with %<copyprivate%>");
11957 *nowait_clause = OMP_CLAUSE_CHAIN (*nowait_clause);
11958 nowait_clause = NULL;
11960 goto check_dup_generic;
11962 case OMP_CLAUSE_COPYIN:
11963 t = OMP_CLAUSE_DECL (c);
11964 if (TREE_CODE (t) != VAR_DECL || !DECL_THREAD_LOCAL_P (t))
11966 error_at (OMP_CLAUSE_LOCATION (c),
11967 "%qE must be %<threadprivate%> for %<copyin%>", t);
11968 remove = true;
11969 break;
11971 goto check_dup_generic;
11973 case OMP_CLAUSE_LINEAR:
11974 t = OMP_CLAUSE_DECL (c);
11975 if (!INTEGRAL_TYPE_P (TREE_TYPE (t))
11976 && TREE_CODE (TREE_TYPE (t)) != POINTER_TYPE)
11978 error_at (OMP_CLAUSE_LOCATION (c),
11979 "linear clause applied to non-integral non-pointer "
11980 "variable with type %qT", TREE_TYPE (t));
11981 remove = true;
11982 break;
11984 if (TREE_CODE (TREE_TYPE (OMP_CLAUSE_DECL (c))) == POINTER_TYPE)
11986 tree s = OMP_CLAUSE_LINEAR_STEP (c);
11987 s = pointer_int_sum (OMP_CLAUSE_LOCATION (c), PLUS_EXPR,
11988 OMP_CLAUSE_DECL (c), s);
11989 s = fold_build2_loc (OMP_CLAUSE_LOCATION (c), MINUS_EXPR,
11990 sizetype, s, OMP_CLAUSE_DECL (c));
11991 if (s == error_mark_node)
11992 s = size_one_node;
11993 OMP_CLAUSE_LINEAR_STEP (c) = s;
11995 goto check_dup_generic;
11997 check_dup_generic:
11998 t = OMP_CLAUSE_DECL (c);
11999 if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
12001 error_at (OMP_CLAUSE_LOCATION (c),
12002 "%qE is not a variable in clause %qs", t,
12003 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
12004 remove = true;
12006 else if (bitmap_bit_p (&generic_head, DECL_UID (t))
12007 || bitmap_bit_p (&firstprivate_head, DECL_UID (t))
12008 || bitmap_bit_p (&lastprivate_head, DECL_UID (t)))
12010 error_at (OMP_CLAUSE_LOCATION (c),
12011 "%qE appears more than once in data clauses", t);
12012 remove = true;
12014 else
12015 bitmap_set_bit (&generic_head, DECL_UID (t));
12016 break;
12018 case OMP_CLAUSE_FIRSTPRIVATE:
12019 t = OMP_CLAUSE_DECL (c);
12020 need_complete = true;
12021 need_implicitly_determined = true;
12022 if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
12024 error_at (OMP_CLAUSE_LOCATION (c),
12025 "%qE is not a variable in clause %<firstprivate%>", t);
12026 remove = true;
12028 else if (bitmap_bit_p (&generic_head, DECL_UID (t))
12029 || bitmap_bit_p (&firstprivate_head, DECL_UID (t)))
12031 error_at (OMP_CLAUSE_LOCATION (c),
12032 "%qE appears more than once in data clauses", t);
12033 remove = true;
12035 else
12036 bitmap_set_bit (&firstprivate_head, DECL_UID (t));
12037 break;
12039 case OMP_CLAUSE_LASTPRIVATE:
12040 t = OMP_CLAUSE_DECL (c);
12041 need_complete = true;
12042 need_implicitly_determined = true;
12043 if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
12045 error_at (OMP_CLAUSE_LOCATION (c),
12046 "%qE is not a variable in clause %<lastprivate%>", t);
12047 remove = true;
12049 else if (bitmap_bit_p (&generic_head, DECL_UID (t))
12050 || bitmap_bit_p (&lastprivate_head, DECL_UID (t)))
12052 error_at (OMP_CLAUSE_LOCATION (c),
12053 "%qE appears more than once in data clauses", t);
12054 remove = true;
12056 else
12057 bitmap_set_bit (&lastprivate_head, DECL_UID (t));
12058 break;
12060 case OMP_CLAUSE_ALIGNED:
12061 t = OMP_CLAUSE_DECL (c);
12062 if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
12064 error_at (OMP_CLAUSE_LOCATION (c),
12065 "%qE is not a variable in %<aligned%> clause", t);
12066 remove = true;
12068 else if (!POINTER_TYPE_P (TREE_TYPE (t))
12069 && TREE_CODE (TREE_TYPE (t)) != ARRAY_TYPE)
12071 error_at (OMP_CLAUSE_LOCATION (c),
12072 "%qE in %<aligned%> clause is neither a pointer nor "
12073 "an array", t);
12074 remove = true;
12076 else if (bitmap_bit_p (&aligned_head, DECL_UID (t)))
12078 error_at (OMP_CLAUSE_LOCATION (c),
12079 "%qE appears more than once in %<aligned%> clauses",
12081 remove = true;
12083 else
12084 bitmap_set_bit (&aligned_head, DECL_UID (t));
12085 break;
12087 case OMP_CLAUSE_DEPEND:
12088 t = OMP_CLAUSE_DECL (c);
12089 if (TREE_CODE (t) == TREE_LIST)
12091 if (handle_omp_array_sections (c))
12092 remove = true;
12093 break;
12095 if (t == error_mark_node)
12096 remove = true;
12097 else if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
12099 error_at (OMP_CLAUSE_LOCATION (c),
12100 "%qE is not a variable in %<depend%> clause", t);
12101 remove = true;
12103 else if (!c_mark_addressable (t))
12104 remove = true;
12105 break;
12107 case OMP_CLAUSE_MAP:
12108 case OMP_CLAUSE_TO:
12109 case OMP_CLAUSE_FROM:
12110 t = OMP_CLAUSE_DECL (c);
12111 if (TREE_CODE (t) == TREE_LIST)
12113 if (handle_omp_array_sections (c))
12114 remove = true;
12115 else
12117 t = OMP_CLAUSE_DECL (c);
12118 if (!lang_hooks.types.omp_mappable_type (TREE_TYPE (t)))
12120 error_at (OMP_CLAUSE_LOCATION (c),
12121 "array section does not have mappable type "
12122 "in %qs clause",
12123 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
12124 remove = true;
12127 break;
12129 if (t == error_mark_node)
12130 remove = true;
12131 else if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
12133 error_at (OMP_CLAUSE_LOCATION (c),
12134 "%qE is not a variable in %qs clause", t,
12135 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
12136 remove = true;
12138 else if (TREE_CODE (t) == VAR_DECL && DECL_THREAD_LOCAL_P (t))
12140 error_at (OMP_CLAUSE_LOCATION (c),
12141 "%qD is threadprivate variable in %qs clause", t,
12142 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
12143 remove = true;
12145 else if (!c_mark_addressable (t))
12146 remove = true;
12147 else if (!(OMP_CLAUSE_CODE (c) == OMP_CLAUSE_MAP
12148 && OMP_CLAUSE_MAP_KIND (c) == OMP_CLAUSE_MAP_POINTER)
12149 && !lang_hooks.types.omp_mappable_type (TREE_TYPE (t)))
12151 error_at (OMP_CLAUSE_LOCATION (c),
12152 "%qD does not have a mappable type in %qs clause", t,
12153 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
12154 remove = true;
12156 else if (bitmap_bit_p (&generic_head, DECL_UID (t)))
12158 if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_MAP)
12159 error ("%qD appears more than once in motion clauses", t);
12160 else
12161 error ("%qD appears more than once in map clauses", t);
12162 remove = true;
12164 else
12165 bitmap_set_bit (&generic_head, DECL_UID (t));
12166 break;
12168 case OMP_CLAUSE_UNIFORM:
12169 t = OMP_CLAUSE_DECL (c);
12170 if (TREE_CODE (t) != PARM_DECL)
12172 if (DECL_P (t))
12173 error_at (OMP_CLAUSE_LOCATION (c),
12174 "%qD is not an argument in %<uniform%> clause", t);
12175 else
12176 error_at (OMP_CLAUSE_LOCATION (c),
12177 "%qE is not an argument in %<uniform%> clause", t);
12178 remove = true;
12179 break;
12181 goto check_dup_generic;
12183 case OMP_CLAUSE_NOWAIT:
12184 if (copyprivate_seen)
12186 error_at (OMP_CLAUSE_LOCATION (c),
12187 "%<nowait%> clause must not be used together "
12188 "with %<copyprivate%>");
12189 remove = true;
12190 break;
12192 nowait_clause = pc;
12193 pc = &OMP_CLAUSE_CHAIN (c);
12194 continue;
12196 case OMP_CLAUSE_IF:
12197 case OMP_CLAUSE_NUM_THREADS:
12198 case OMP_CLAUSE_NUM_TEAMS:
12199 case OMP_CLAUSE_THREAD_LIMIT:
12200 case OMP_CLAUSE_SCHEDULE:
12201 case OMP_CLAUSE_ORDERED:
12202 case OMP_CLAUSE_DEFAULT:
12203 case OMP_CLAUSE_UNTIED:
12204 case OMP_CLAUSE_COLLAPSE:
12205 case OMP_CLAUSE_FINAL:
12206 case OMP_CLAUSE_MERGEABLE:
12207 case OMP_CLAUSE_SAFELEN:
12208 case OMP_CLAUSE_SIMDLEN:
12209 case OMP_CLAUSE_DEVICE:
12210 case OMP_CLAUSE_DIST_SCHEDULE:
12211 case OMP_CLAUSE_PARALLEL:
12212 case OMP_CLAUSE_FOR:
12213 case OMP_CLAUSE_SECTIONS:
12214 case OMP_CLAUSE_TASKGROUP:
12215 case OMP_CLAUSE_PROC_BIND:
12216 pc = &OMP_CLAUSE_CHAIN (c);
12217 continue;
12219 case OMP_CLAUSE_INBRANCH:
12220 case OMP_CLAUSE_NOTINBRANCH:
12221 if (branch_seen)
12223 error_at (OMP_CLAUSE_LOCATION (c),
12224 "%<inbranch%> clause is incompatible with "
12225 "%<notinbranch%>");
12226 remove = true;
12227 break;
12229 branch_seen = true;
12230 pc = &OMP_CLAUSE_CHAIN (c);
12231 continue;
12233 default:
12234 gcc_unreachable ();
12237 if (!remove)
12239 t = OMP_CLAUSE_DECL (c);
12241 if (need_complete)
12243 t = require_complete_type (t);
12244 if (t == error_mark_node)
12245 remove = true;
12248 if (need_implicitly_determined)
12250 const char *share_name = NULL;
12252 if (TREE_CODE (t) == VAR_DECL && DECL_THREAD_LOCAL_P (t))
12253 share_name = "threadprivate";
12254 else switch (c_omp_predetermined_sharing (t))
12256 case OMP_CLAUSE_DEFAULT_UNSPECIFIED:
12257 break;
12258 case OMP_CLAUSE_DEFAULT_SHARED:
12259 /* const vars may be specified in firstprivate clause. */
12260 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE
12261 && TREE_READONLY (t))
12262 break;
12263 share_name = "shared";
12264 break;
12265 case OMP_CLAUSE_DEFAULT_PRIVATE:
12266 share_name = "private";
12267 break;
12268 default:
12269 gcc_unreachable ();
12271 if (share_name)
12273 error_at (OMP_CLAUSE_LOCATION (c),
12274 "%qE is predetermined %qs for %qs",
12275 t, share_name,
12276 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
12277 remove = true;
12282 if (remove)
12283 *pc = OMP_CLAUSE_CHAIN (c);
12284 else
12285 pc = &OMP_CLAUSE_CHAIN (c);
12288 bitmap_obstack_release (NULL);
12289 return clauses;
12292 /* Create a transaction node. */
12294 tree
12295 c_finish_transaction (location_t loc, tree block, int flags)
12297 tree stmt = build_stmt (loc, TRANSACTION_EXPR, block);
12298 if (flags & TM_STMT_ATTR_OUTER)
12299 TRANSACTION_EXPR_OUTER (stmt) = 1;
12300 if (flags & TM_STMT_ATTR_RELAXED)
12301 TRANSACTION_EXPR_RELAXED (stmt) = 1;
12302 return add_stmt (stmt);
12305 /* Make a variant type in the proper way for C/C++, propagating qualifiers
12306 down to the element type of an array. */
12308 tree
12309 c_build_qualified_type (tree type, int type_quals)
12311 if (type == error_mark_node)
12312 return type;
12314 if (TREE_CODE (type) == ARRAY_TYPE)
12316 tree t;
12317 tree element_type = c_build_qualified_type (TREE_TYPE (type),
12318 type_quals);
12320 /* See if we already have an identically qualified type. */
12321 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
12323 if (TYPE_QUALS (strip_array_types (t)) == type_quals
12324 && TYPE_NAME (t) == TYPE_NAME (type)
12325 && TYPE_CONTEXT (t) == TYPE_CONTEXT (type)
12326 && attribute_list_equal (TYPE_ATTRIBUTES (t),
12327 TYPE_ATTRIBUTES (type)))
12328 break;
12330 if (!t)
12332 tree domain = TYPE_DOMAIN (type);
12334 t = build_variant_type_copy (type);
12335 TREE_TYPE (t) = element_type;
12337 if (TYPE_STRUCTURAL_EQUALITY_P (element_type)
12338 || (domain && TYPE_STRUCTURAL_EQUALITY_P (domain)))
12339 SET_TYPE_STRUCTURAL_EQUALITY (t);
12340 else if (TYPE_CANONICAL (element_type) != element_type
12341 || (domain && TYPE_CANONICAL (domain) != domain))
12343 tree unqualified_canon
12344 = build_array_type (TYPE_CANONICAL (element_type),
12345 domain? TYPE_CANONICAL (domain)
12346 : NULL_TREE);
12347 TYPE_CANONICAL (t)
12348 = c_build_qualified_type (unqualified_canon, type_quals);
12350 else
12351 TYPE_CANONICAL (t) = t;
12353 return t;
12356 /* A restrict-qualified pointer type must be a pointer to object or
12357 incomplete type. Note that the use of POINTER_TYPE_P also allows
12358 REFERENCE_TYPEs, which is appropriate for C++. */
12359 if ((type_quals & TYPE_QUAL_RESTRICT)
12360 && (!POINTER_TYPE_P (type)
12361 || !C_TYPE_OBJECT_OR_INCOMPLETE_P (TREE_TYPE (type))))
12363 error ("invalid use of %<restrict%>");
12364 type_quals &= ~TYPE_QUAL_RESTRICT;
12367 return build_qualified_type (type, type_quals);
12370 /* Build a VA_ARG_EXPR for the C parser. */
12372 tree
12373 c_build_va_arg (location_t loc, tree expr, tree type)
12375 if (warn_cxx_compat && TREE_CODE (type) == ENUMERAL_TYPE)
12376 warning_at (loc, OPT_Wc___compat,
12377 "C++ requires promoted type, not enum type, in %<va_arg%>");
12378 return build_va_arg (loc, expr, type);
12381 /* Return truthvalue of whether T1 is the same tree structure as T2.
12382 Return 1 if they are the same. Return 0 if they are different. */
12384 bool
12385 c_tree_equal (tree t1, tree t2)
12387 enum tree_code code1, code2;
12389 if (t1 == t2)
12390 return true;
12391 if (!t1 || !t2)
12392 return false;
12394 for (code1 = TREE_CODE (t1);
12395 CONVERT_EXPR_CODE_P (code1)
12396 || code1 == NON_LVALUE_EXPR;
12397 code1 = TREE_CODE (t1))
12398 t1 = TREE_OPERAND (t1, 0);
12399 for (code2 = TREE_CODE (t2);
12400 CONVERT_EXPR_CODE_P (code2)
12401 || code2 == NON_LVALUE_EXPR;
12402 code2 = TREE_CODE (t2))
12403 t2 = TREE_OPERAND (t2, 0);
12405 /* They might have become equal now. */
12406 if (t1 == t2)
12407 return true;
12409 if (code1 != code2)
12410 return false;
12412 switch (code1)
12414 case INTEGER_CST:
12415 return wi::eq_p (t1, t2);
12417 case REAL_CST:
12418 return REAL_VALUES_EQUAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
12420 case STRING_CST:
12421 return TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
12422 && !memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
12423 TREE_STRING_LENGTH (t1));
12425 case FIXED_CST:
12426 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1),
12427 TREE_FIXED_CST (t2));
12429 case COMPLEX_CST:
12430 return c_tree_equal (TREE_REALPART (t1), TREE_REALPART (t2))
12431 && c_tree_equal (TREE_IMAGPART (t1), TREE_IMAGPART (t2));
12433 case VECTOR_CST:
12434 return operand_equal_p (t1, t2, OEP_ONLY_CONST);
12436 case CONSTRUCTOR:
12437 /* We need to do this when determining whether or not two
12438 non-type pointer to member function template arguments
12439 are the same. */
12440 if (!comptypes (TREE_TYPE (t1), TREE_TYPE (t2))
12441 || CONSTRUCTOR_NELTS (t1) != CONSTRUCTOR_NELTS (t2))
12442 return false;
12444 tree field, value;
12445 unsigned int i;
12446 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t1), i, field, value)
12448 constructor_elt *elt2 = CONSTRUCTOR_ELT (t2, i);
12449 if (!c_tree_equal (field, elt2->index)
12450 || !c_tree_equal (value, elt2->value))
12451 return false;
12454 return true;
12456 case TREE_LIST:
12457 if (!c_tree_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2)))
12458 return false;
12459 if (!c_tree_equal (TREE_VALUE (t1), TREE_VALUE (t2)))
12460 return false;
12461 return c_tree_equal (TREE_CHAIN (t1), TREE_CHAIN (t2));
12463 case SAVE_EXPR:
12464 return c_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
12466 case CALL_EXPR:
12468 tree arg1, arg2;
12469 call_expr_arg_iterator iter1, iter2;
12470 if (!c_tree_equal (CALL_EXPR_FN (t1), CALL_EXPR_FN (t2)))
12471 return false;
12472 for (arg1 = first_call_expr_arg (t1, &iter1),
12473 arg2 = first_call_expr_arg (t2, &iter2);
12474 arg1 && arg2;
12475 arg1 = next_call_expr_arg (&iter1),
12476 arg2 = next_call_expr_arg (&iter2))
12477 if (!c_tree_equal (arg1, arg2))
12478 return false;
12479 if (arg1 || arg2)
12480 return false;
12481 return true;
12484 case TARGET_EXPR:
12486 tree o1 = TREE_OPERAND (t1, 0);
12487 tree o2 = TREE_OPERAND (t2, 0);
12489 /* Special case: if either target is an unallocated VAR_DECL,
12490 it means that it's going to be unified with whatever the
12491 TARGET_EXPR is really supposed to initialize, so treat it
12492 as being equivalent to anything. */
12493 if (TREE_CODE (o1) == VAR_DECL && DECL_NAME (o1) == NULL_TREE
12494 && !DECL_RTL_SET_P (o1))
12495 /*Nop*/;
12496 else if (TREE_CODE (o2) == VAR_DECL && DECL_NAME (o2) == NULL_TREE
12497 && !DECL_RTL_SET_P (o2))
12498 /*Nop*/;
12499 else if (!c_tree_equal (o1, o2))
12500 return false;
12502 return c_tree_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
12505 case COMPONENT_REF:
12506 if (TREE_OPERAND (t1, 1) != TREE_OPERAND (t2, 1))
12507 return false;
12508 return c_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
12510 case PARM_DECL:
12511 case VAR_DECL:
12512 case CONST_DECL:
12513 case FIELD_DECL:
12514 case FUNCTION_DECL:
12515 case IDENTIFIER_NODE:
12516 case SSA_NAME:
12517 return false;
12519 case TREE_VEC:
12521 unsigned ix;
12522 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
12523 return false;
12524 for (ix = TREE_VEC_LENGTH (t1); ix--;)
12525 if (!c_tree_equal (TREE_VEC_ELT (t1, ix),
12526 TREE_VEC_ELT (t2, ix)))
12527 return false;
12528 return true;
12531 default:
12532 break;
12535 switch (TREE_CODE_CLASS (code1))
12537 case tcc_unary:
12538 case tcc_binary:
12539 case tcc_comparison:
12540 case tcc_expression:
12541 case tcc_vl_exp:
12542 case tcc_reference:
12543 case tcc_statement:
12545 int i, n = TREE_OPERAND_LENGTH (t1);
12547 switch (code1)
12549 case PREINCREMENT_EXPR:
12550 case PREDECREMENT_EXPR:
12551 case POSTINCREMENT_EXPR:
12552 case POSTDECREMENT_EXPR:
12553 n = 1;
12554 break;
12555 case ARRAY_REF:
12556 n = 2;
12557 break;
12558 default:
12559 break;
12562 if (TREE_CODE_CLASS (code1) == tcc_vl_exp
12563 && n != TREE_OPERAND_LENGTH (t2))
12564 return false;
12566 for (i = 0; i < n; ++i)
12567 if (!c_tree_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i)))
12568 return false;
12570 return true;
12573 case tcc_type:
12574 return comptypes (t1, t2);
12575 default:
12576 gcc_unreachable ();
12578 /* We can get here with --disable-checking. */
12579 return false;
12582 /* Inserts "cleanup" functions after the function-body of FNDECL. FNDECL is a
12583 spawn-helper and BODY is the newly created body for FNDECL. */
12585 void
12586 cilk_install_body_with_frame_cleanup (tree fndecl, tree body, void *w)
12588 tree list = alloc_stmt_list ();
12589 tree frame = make_cilk_frame (fndecl);
12590 tree dtor = create_cilk_function_exit (frame, false, true);
12591 add_local_decl (cfun, frame);
12593 DECL_SAVED_TREE (fndecl) = list;
12594 tree frame_ptr = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (frame)),
12595 frame);
12596 tree body_list = cilk_install_body_pedigree_operations (frame_ptr);
12597 gcc_assert (TREE_CODE (body_list) == STATEMENT_LIST);
12599 tree detach_expr = build_call_expr (cilk_detach_fndecl, 1, frame_ptr);
12600 append_to_statement_list (detach_expr, &body_list);
12602 cilk_outline (fndecl, &body, (struct wrapper_data *) w);
12603 body = fold_build_cleanup_point_expr (void_type_node, body);
12605 append_to_statement_list (body, &body_list);
12606 append_to_statement_list (build_stmt (EXPR_LOCATION (body), TRY_FINALLY_EXPR,
12607 body_list, dtor), &list);