1 /* Build expressions with type checking for C compiler.
2 Copyright (C) 1987-2018 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
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
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. */
28 #include "coretypes.h"
34 #include "gimple-expr.h"
36 #include "stor-layout.h"
37 #include "trans-mem.h"
40 #include "langhooks.h"
43 #include "tree-iterator.h"
45 #include "tree-inline.h"
46 #include "omp-general.h"
47 #include "c-family/c-objc.h"
48 #include "c-family/c-ubsan.h"
49 #include "gomp-constants.h"
50 #include "spellcheck-tree.h"
51 #include "gcc-rich-location.h"
52 #include "stringpool.h"
56 /* Possible cases of implicit bad conversions. Used to select
57 diagnostic messages in convert_for_assignment. */
65 /* The level of nesting inside "__alignof__". */
68 /* The level of nesting inside "sizeof". */
71 /* The level of nesting inside "typeof". */
74 /* The argument of last parsed sizeof expression, only to be tested
75 if expr.original_code == SIZEOF_EXPR. */
76 tree c_last_sizeof_arg
;
77 location_t c_last_sizeof_loc
;
79 /* Nonzero if we might need to print a "missing braces around
80 initializer" message within this initializer. */
81 static int found_missing_braces
;
83 static int require_constant_value
;
84 static int require_constant_elements
;
86 static bool null_pointer_constant_p (const_tree
);
87 static tree
qualify_type (tree
, tree
);
88 static int tagged_types_tu_compatible_p (const_tree
, const_tree
, bool *,
90 static int comp_target_types (location_t
, tree
, tree
);
91 static int function_types_compatible_p (const_tree
, const_tree
, bool *,
93 static int type_lists_compatible_p (const_tree
, const_tree
, bool *, bool *);
94 static tree
lookup_field (tree
, tree
);
95 static int convert_arguments (location_t
, vec
<location_t
>, tree
,
96 vec
<tree
, va_gc
> *, vec
<tree
, va_gc
> *, tree
,
98 static tree
pointer_diff (location_t
, tree
, tree
, tree
*);
99 static tree
convert_for_assignment (location_t
, location_t
, tree
, tree
, tree
,
100 enum impl_conv
, bool, tree
, tree
, int);
101 static tree
valid_compound_expr_initializer (tree
, tree
);
102 static void push_string (const char *);
103 static void push_member_name (tree
);
104 static int spelling_length (void);
105 static char *print_spelling (char *);
106 static void warning_init (location_t
, int, const char *);
107 static tree
digest_init (location_t
, tree
, tree
, tree
, bool, bool, int);
108 static void output_init_element (location_t
, tree
, tree
, bool, tree
, tree
, bool,
109 bool, struct obstack
*);
110 static void output_pending_init_elements (int, struct obstack
*);
111 static bool set_designator (location_t
, bool, struct obstack
*);
112 static void push_range_stack (tree
, struct obstack
*);
113 static void add_pending_init (location_t
, tree
, tree
, tree
, bool,
115 static void set_nonincremental_init (struct obstack
*);
116 static void set_nonincremental_init_from_string (tree
, struct obstack
*);
117 static tree
find_init_member (tree
, struct obstack
*);
118 static void readonly_warning (tree
, enum lvalue_use
);
119 static int lvalue_or_else (location_t
, const_tree
, enum lvalue_use
);
120 static void record_maybe_used_decl (tree
);
121 static int comptypes_internal (const_tree
, const_tree
, bool *, bool *);
123 /* Return true if EXP is a null pointer constant, false otherwise. */
126 null_pointer_constant_p (const_tree expr
)
128 /* This should really operate on c_expr structures, but they aren't
129 yet available everywhere required. */
130 tree type
= TREE_TYPE (expr
);
131 return (TREE_CODE (expr
) == INTEGER_CST
132 && !TREE_OVERFLOW (expr
)
133 && integer_zerop (expr
)
134 && (INTEGRAL_TYPE_P (type
)
135 || (TREE_CODE (type
) == POINTER_TYPE
136 && VOID_TYPE_P (TREE_TYPE (type
))
137 && TYPE_QUALS (TREE_TYPE (type
)) == TYPE_UNQUALIFIED
)));
140 /* EXPR may appear in an unevaluated part of an integer constant
141 expression, but not in an evaluated part. Wrap it in a
142 C_MAYBE_CONST_EXPR, or mark it with TREE_OVERFLOW if it is just an
143 INTEGER_CST and we cannot create a C_MAYBE_CONST_EXPR. */
146 note_integer_operands (tree expr
)
149 if (TREE_CODE (expr
) == INTEGER_CST
&& in_late_binary_op
)
151 ret
= copy_node (expr
);
152 TREE_OVERFLOW (ret
) = 1;
156 ret
= build2 (C_MAYBE_CONST_EXPR
, TREE_TYPE (expr
), NULL_TREE
, expr
);
157 C_MAYBE_CONST_EXPR_INT_OPERANDS (ret
) = 1;
162 /* Having checked whether EXPR may appear in an unevaluated part of an
163 integer constant expression and found that it may, remove any
164 C_MAYBE_CONST_EXPR noting this fact and return the resulting
168 remove_c_maybe_const_expr (tree expr
)
170 if (TREE_CODE (expr
) == C_MAYBE_CONST_EXPR
)
171 return C_MAYBE_CONST_EXPR_EXPR (expr
);
176 \f/* This is a cache to hold if two types are compatible or not. */
178 struct tagged_tu_seen_cache
{
179 const struct tagged_tu_seen_cache
* next
;
182 /* The return value of tagged_types_tu_compatible_p if we had seen
183 these two types already. */
187 static const struct tagged_tu_seen_cache
* tagged_tu_seen_base
;
188 static void free_all_tagged_tu_seen_up_to (const struct tagged_tu_seen_cache
*);
190 /* Do `exp = require_complete_type (loc, exp);' to make sure exp
191 does not have an incomplete type. (That includes void types.)
192 LOC is the location of the use. */
195 require_complete_type (location_t loc
, tree value
)
197 tree type
= TREE_TYPE (value
);
199 if (error_operand_p (value
))
200 return error_mark_node
;
202 /* First, detect a valid value with a complete type. */
203 if (COMPLETE_TYPE_P (type
))
206 c_incomplete_type_error (loc
, value
, type
);
207 return error_mark_node
;
210 /* Print an error message for invalid use of an incomplete type.
211 VALUE is the expression that was used (or 0 if that isn't known)
212 and TYPE is the type that was invalid. LOC is the location for
216 c_incomplete_type_error (location_t loc
, const_tree value
, const_tree type
)
218 /* Avoid duplicate error message. */
219 if (TREE_CODE (type
) == ERROR_MARK
)
222 if (value
!= NULL_TREE
&& (VAR_P (value
) || TREE_CODE (value
) == PARM_DECL
))
223 error_at (loc
, "%qD has an incomplete type %qT", value
, type
);
227 /* We must print an error message. Be clever about what it says. */
229 switch (TREE_CODE (type
))
237 error_at (loc
, "invalid use of void expression");
241 if (TYPE_DOMAIN (type
))
243 if (TYPE_MAX_VALUE (TYPE_DOMAIN (type
)) == NULL
)
245 error_at (loc
, "invalid use of flexible array member");
248 type
= TREE_TYPE (type
);
251 error_at (loc
, "invalid use of array with unspecified bounds");
258 if (TREE_CODE (TYPE_NAME (type
)) == IDENTIFIER_NODE
)
259 error_at (loc
, "invalid use of undefined type %qT", type
);
261 /* If this type has a typedef-name, the TYPE_NAME is a TYPE_DECL. */
262 error_at (loc
, "invalid use of incomplete typedef %qT", type
);
266 /* Given a type, apply default promotions wrt unnamed function
267 arguments and return the new type. */
270 c_type_promotes_to (tree type
)
272 tree ret
= NULL_TREE
;
274 if (TYPE_MAIN_VARIANT (type
) == float_type_node
)
275 ret
= double_type_node
;
276 else if (c_promoting_integer_type_p (type
))
278 /* Preserve unsignedness if not really getting any wider. */
279 if (TYPE_UNSIGNED (type
)
280 && (TYPE_PRECISION (type
) == TYPE_PRECISION (integer_type_node
)))
281 ret
= unsigned_type_node
;
283 ret
= integer_type_node
;
286 if (ret
!= NULL_TREE
)
287 return (TYPE_ATOMIC (type
)
288 ? c_build_qualified_type (ret
, TYPE_QUAL_ATOMIC
)
294 /* Return true if between two named address spaces, whether there is a superset
295 named address space that encompasses both address spaces. If there is a
296 superset, return which address space is the superset. */
299 addr_space_superset (addr_space_t as1
, addr_space_t as2
, addr_space_t
*common
)
306 else if (targetm
.addr_space
.subset_p (as1
, as2
))
311 else if (targetm
.addr_space
.subset_p (as2
, as1
))
320 /* Return a variant of TYPE which has all the type qualifiers of LIKE
321 as well as those of TYPE. */
324 qualify_type (tree type
, tree like
)
326 addr_space_t as_type
= TYPE_ADDR_SPACE (type
);
327 addr_space_t as_like
= TYPE_ADDR_SPACE (like
);
328 addr_space_t as_common
;
330 /* If the two named address spaces are different, determine the common
331 superset address space. If there isn't one, raise an error. */
332 if (!addr_space_superset (as_type
, as_like
, &as_common
))
335 error ("%qT and %qT are in disjoint named address spaces",
339 return c_build_qualified_type (type
,
340 TYPE_QUALS_NO_ADDR_SPACE (type
)
341 | TYPE_QUALS_NO_ADDR_SPACE_NO_ATOMIC (like
)
342 | ENCODE_QUAL_ADDR_SPACE (as_common
));
345 /* Return true iff the given tree T is a variable length array. */
348 c_vla_type_p (const_tree t
)
350 if (TREE_CODE (t
) == ARRAY_TYPE
351 && C_TYPE_VARIABLE_SIZE (t
))
356 /* Return the composite type of two compatible types.
358 We assume that comptypes has already been done and returned
359 nonzero; if that isn't so, this may crash. In particular, we
360 assume that qualifiers match. */
363 composite_type (tree t1
, tree t2
)
365 enum tree_code code1
;
366 enum tree_code code2
;
369 /* Save time if the two types are the same. */
371 if (t1
== t2
) return t1
;
373 /* If one type is nonsense, use the other. */
374 if (t1
== error_mark_node
)
376 if (t2
== error_mark_node
)
379 code1
= TREE_CODE (t1
);
380 code2
= TREE_CODE (t2
);
382 /* Merge the attributes. */
383 attributes
= targetm
.merge_type_attributes (t1
, t2
);
385 /* If one is an enumerated type and the other is the compatible
386 integer type, the composite type might be either of the two
387 (DR#013 question 3). For consistency, use the enumerated type as
388 the composite type. */
390 if (code1
== ENUMERAL_TYPE
&& code2
== INTEGER_TYPE
)
392 if (code2
== ENUMERAL_TYPE
&& code1
== INTEGER_TYPE
)
395 gcc_assert (code1
== code2
);
400 /* For two pointers, do this recursively on the target type. */
402 tree pointed_to_1
= TREE_TYPE (t1
);
403 tree pointed_to_2
= TREE_TYPE (t2
);
404 tree target
= composite_type (pointed_to_1
, pointed_to_2
);
405 t1
= build_pointer_type_for_mode (target
, TYPE_MODE (t1
), false);
406 t1
= build_type_attribute_variant (t1
, attributes
);
407 return qualify_type (t1
, t2
);
412 tree elt
= composite_type (TREE_TYPE (t1
), TREE_TYPE (t2
));
415 tree d1
= TYPE_DOMAIN (t1
);
416 tree d2
= TYPE_DOMAIN (t2
);
417 bool d1_variable
, d2_variable
;
418 bool d1_zero
, d2_zero
;
419 bool t1_complete
, t2_complete
;
421 /* We should not have any type quals on arrays at all. */
422 gcc_assert (!TYPE_QUALS_NO_ADDR_SPACE (t1
)
423 && !TYPE_QUALS_NO_ADDR_SPACE (t2
));
425 t1_complete
= COMPLETE_TYPE_P (t1
);
426 t2_complete
= COMPLETE_TYPE_P (t2
);
428 d1_zero
= d1
== NULL_TREE
|| !TYPE_MAX_VALUE (d1
);
429 d2_zero
= d2
== NULL_TREE
|| !TYPE_MAX_VALUE (d2
);
431 d1_variable
= (!d1_zero
432 && (TREE_CODE (TYPE_MIN_VALUE (d1
)) != INTEGER_CST
433 || TREE_CODE (TYPE_MAX_VALUE (d1
)) != INTEGER_CST
));
434 d2_variable
= (!d2_zero
435 && (TREE_CODE (TYPE_MIN_VALUE (d2
)) != INTEGER_CST
436 || TREE_CODE (TYPE_MAX_VALUE (d2
)) != INTEGER_CST
));
437 d1_variable
= d1_variable
|| (d1_zero
&& c_vla_type_p (t1
));
438 d2_variable
= d2_variable
|| (d2_zero
&& c_vla_type_p (t2
));
440 /* Save space: see if the result is identical to one of the args. */
441 if (elt
== TREE_TYPE (t1
) && TYPE_DOMAIN (t1
)
442 && (d2_variable
|| d2_zero
|| !d1_variable
))
443 return build_type_attribute_variant (t1
, attributes
);
444 if (elt
== TREE_TYPE (t2
) && TYPE_DOMAIN (t2
)
445 && (d1_variable
|| d1_zero
|| !d2_variable
))
446 return build_type_attribute_variant (t2
, attributes
);
448 if (elt
== TREE_TYPE (t1
) && !TYPE_DOMAIN (t2
) && !TYPE_DOMAIN (t1
))
449 return build_type_attribute_variant (t1
, attributes
);
450 if (elt
== TREE_TYPE (t2
) && !TYPE_DOMAIN (t2
) && !TYPE_DOMAIN (t1
))
451 return build_type_attribute_variant (t2
, attributes
);
453 /* Merge the element types, and have a size if either arg has
454 one. We may have qualifiers on the element types. To set
455 up TYPE_MAIN_VARIANT correctly, we need to form the
456 composite of the unqualified types and add the qualifiers
458 quals
= TYPE_QUALS (strip_array_types (elt
));
459 unqual_elt
= c_build_qualified_type (elt
, TYPE_UNQUALIFIED
);
460 t1
= build_array_type (unqual_elt
,
461 TYPE_DOMAIN ((TYPE_DOMAIN (t1
)
467 /* Ensure a composite type involving a zero-length array type
468 is a zero-length type not an incomplete type. */
469 if (d1_zero
&& d2_zero
470 && (t1_complete
|| t2_complete
)
471 && !COMPLETE_TYPE_P (t1
))
473 TYPE_SIZE (t1
) = bitsize_zero_node
;
474 TYPE_SIZE_UNIT (t1
) = size_zero_node
;
476 t1
= c_build_qualified_type (t1
, quals
);
477 return build_type_attribute_variant (t1
, attributes
);
483 if (attributes
!= NULL
)
485 /* Try harder not to create a new aggregate type. */
486 if (attribute_list_equal (TYPE_ATTRIBUTES (t1
), attributes
))
488 if (attribute_list_equal (TYPE_ATTRIBUTES (t2
), attributes
))
491 return build_type_attribute_variant (t1
, attributes
);
494 /* Function types: prefer the one that specified arg types.
495 If both do, merge the arg types. Also merge the return types. */
497 tree valtype
= composite_type (TREE_TYPE (t1
), TREE_TYPE (t2
));
498 tree p1
= TYPE_ARG_TYPES (t1
);
499 tree p2
= TYPE_ARG_TYPES (t2
);
504 /* Save space: see if the result is identical to one of the args. */
505 if (valtype
== TREE_TYPE (t1
) && !TYPE_ARG_TYPES (t2
))
506 return build_type_attribute_variant (t1
, attributes
);
507 if (valtype
== TREE_TYPE (t2
) && !TYPE_ARG_TYPES (t1
))
508 return build_type_attribute_variant (t2
, attributes
);
510 /* Simple way if one arg fails to specify argument types. */
511 if (TYPE_ARG_TYPES (t1
) == NULL_TREE
)
513 t1
= build_function_type (valtype
, TYPE_ARG_TYPES (t2
));
514 t1
= build_type_attribute_variant (t1
, attributes
);
515 return qualify_type (t1
, t2
);
517 if (TYPE_ARG_TYPES (t2
) == NULL_TREE
)
519 t1
= build_function_type (valtype
, TYPE_ARG_TYPES (t1
));
520 t1
= build_type_attribute_variant (t1
, attributes
);
521 return qualify_type (t1
, t2
);
524 /* If both args specify argument types, we must merge the two
525 lists, argument by argument. */
527 for (len
= 0, newargs
= p1
;
528 newargs
&& newargs
!= void_list_node
;
529 len
++, newargs
= TREE_CHAIN (newargs
))
532 for (i
= 0; i
< len
; i
++)
533 newargs
= tree_cons (NULL_TREE
, NULL_TREE
, newargs
);
537 for (; p1
&& p1
!= void_list_node
;
538 p1
= TREE_CHAIN (p1
), p2
= TREE_CHAIN (p2
), n
= TREE_CHAIN (n
))
540 /* A null type means arg type is not specified.
541 Take whatever the other function type has. */
542 if (TREE_VALUE (p1
) == NULL_TREE
)
544 TREE_VALUE (n
) = TREE_VALUE (p2
);
547 if (TREE_VALUE (p2
) == NULL_TREE
)
549 TREE_VALUE (n
) = TREE_VALUE (p1
);
553 /* Given wait (union {union wait *u; int *i} *)
554 and wait (union wait *),
555 prefer union wait * as type of parm. */
556 if (TREE_CODE (TREE_VALUE (p1
)) == UNION_TYPE
557 && TREE_VALUE (p1
) != TREE_VALUE (p2
))
560 tree mv2
= TREE_VALUE (p2
);
561 if (mv2
&& mv2
!= error_mark_node
562 && TREE_CODE (mv2
) != ARRAY_TYPE
)
563 mv2
= TYPE_MAIN_VARIANT (mv2
);
564 for (memb
= TYPE_FIELDS (TREE_VALUE (p1
));
565 memb
; memb
= DECL_CHAIN (memb
))
567 tree mv3
= TREE_TYPE (memb
);
568 if (mv3
&& mv3
!= error_mark_node
569 && TREE_CODE (mv3
) != ARRAY_TYPE
)
570 mv3
= TYPE_MAIN_VARIANT (mv3
);
571 if (comptypes (mv3
, mv2
))
573 TREE_VALUE (n
) = composite_type (TREE_TYPE (memb
),
575 pedwarn (input_location
, OPT_Wpedantic
,
576 "function types not truly compatible in ISO C");
581 if (TREE_CODE (TREE_VALUE (p2
)) == UNION_TYPE
582 && TREE_VALUE (p2
) != TREE_VALUE (p1
))
585 tree mv1
= TREE_VALUE (p1
);
586 if (mv1
&& mv1
!= error_mark_node
587 && TREE_CODE (mv1
) != ARRAY_TYPE
)
588 mv1
= TYPE_MAIN_VARIANT (mv1
);
589 for (memb
= TYPE_FIELDS (TREE_VALUE (p2
));
590 memb
; memb
= DECL_CHAIN (memb
))
592 tree mv3
= TREE_TYPE (memb
);
593 if (mv3
&& mv3
!= error_mark_node
594 && TREE_CODE (mv3
) != ARRAY_TYPE
)
595 mv3
= TYPE_MAIN_VARIANT (mv3
);
596 if (comptypes (mv3
, mv1
))
598 TREE_VALUE (n
) = composite_type (TREE_TYPE (memb
),
600 pedwarn (input_location
, OPT_Wpedantic
,
601 "function types not truly compatible in ISO C");
606 TREE_VALUE (n
) = composite_type (TREE_VALUE (p1
), TREE_VALUE (p2
));
610 t1
= build_function_type (valtype
, newargs
);
611 t1
= qualify_type (t1
, t2
);
616 return build_type_attribute_variant (t1
, attributes
);
621 /* Return the type of a conditional expression between pointers to
622 possibly differently qualified versions of compatible types.
624 We assume that comp_target_types has already been done and returned
625 nonzero; if that isn't so, this may crash. */
628 common_pointer_type (tree t1
, tree t2
)
631 tree pointed_to_1
, mv1
;
632 tree pointed_to_2
, mv2
;
634 unsigned target_quals
;
635 addr_space_t as1
, as2
, as_common
;
638 /* Save time if the two types are the same. */
640 if (t1
== t2
) return t1
;
642 /* If one type is nonsense, use the other. */
643 if (t1
== error_mark_node
)
645 if (t2
== error_mark_node
)
648 gcc_assert (TREE_CODE (t1
) == POINTER_TYPE
649 && TREE_CODE (t2
) == POINTER_TYPE
);
651 /* Merge the attributes. */
652 attributes
= targetm
.merge_type_attributes (t1
, t2
);
654 /* Find the composite type of the target types, and combine the
655 qualifiers of the two types' targets. Do not lose qualifiers on
656 array element types by taking the TYPE_MAIN_VARIANT. */
657 mv1
= pointed_to_1
= TREE_TYPE (t1
);
658 mv2
= pointed_to_2
= TREE_TYPE (t2
);
659 if (TREE_CODE (mv1
) != ARRAY_TYPE
)
660 mv1
= TYPE_MAIN_VARIANT (pointed_to_1
);
661 if (TREE_CODE (mv2
) != ARRAY_TYPE
)
662 mv2
= TYPE_MAIN_VARIANT (pointed_to_2
);
663 target
= composite_type (mv1
, mv2
);
665 /* Strip array types to get correct qualifier for pointers to arrays */
666 quals1
= TYPE_QUALS_NO_ADDR_SPACE (strip_array_types (pointed_to_1
));
667 quals2
= TYPE_QUALS_NO_ADDR_SPACE (strip_array_types (pointed_to_2
));
669 /* For function types do not merge const qualifiers, but drop them
670 if used inconsistently. The middle-end uses these to mark const
671 and noreturn functions. */
672 if (TREE_CODE (pointed_to_1
) == FUNCTION_TYPE
)
673 target_quals
= (quals1
& quals2
);
675 target_quals
= (quals1
| quals2
);
677 /* If the two named address spaces are different, determine the common
678 superset address space. This is guaranteed to exist due to the
679 assumption that comp_target_type returned non-zero. */
680 as1
= TYPE_ADDR_SPACE (pointed_to_1
);
681 as2
= TYPE_ADDR_SPACE (pointed_to_2
);
682 if (!addr_space_superset (as1
, as2
, &as_common
))
685 target_quals
|= ENCODE_QUAL_ADDR_SPACE (as_common
);
687 t1
= build_pointer_type (c_build_qualified_type (target
, target_quals
));
688 return build_type_attribute_variant (t1
, attributes
);
691 /* Return the common type for two arithmetic types under the usual
692 arithmetic conversions. The default conversions have already been
693 applied, and enumerated types converted to their compatible integer
694 types. The resulting type is unqualified and has no attributes.
696 This is the type for the result of most arithmetic operations
697 if the operands have the given two types. */
700 c_common_type (tree t1
, tree t2
)
702 enum tree_code code1
;
703 enum tree_code code2
;
705 /* If one type is nonsense, use the other. */
706 if (t1
== error_mark_node
)
708 if (t2
== error_mark_node
)
711 if (TYPE_QUALS (t1
) != TYPE_UNQUALIFIED
)
712 t1
= TYPE_MAIN_VARIANT (t1
);
714 if (TYPE_QUALS (t2
) != TYPE_UNQUALIFIED
)
715 t2
= TYPE_MAIN_VARIANT (t2
);
717 if (TYPE_ATTRIBUTES (t1
) != NULL_TREE
)
718 t1
= build_type_attribute_variant (t1
, NULL_TREE
);
720 if (TYPE_ATTRIBUTES (t2
) != NULL_TREE
)
721 t2
= build_type_attribute_variant (t2
, NULL_TREE
);
723 /* Save time if the two types are the same. */
725 if (t1
== t2
) return t1
;
727 code1
= TREE_CODE (t1
);
728 code2
= TREE_CODE (t2
);
730 gcc_assert (code1
== VECTOR_TYPE
|| code1
== COMPLEX_TYPE
731 || code1
== FIXED_POINT_TYPE
|| code1
== REAL_TYPE
732 || code1
== INTEGER_TYPE
);
733 gcc_assert (code2
== VECTOR_TYPE
|| code2
== COMPLEX_TYPE
734 || code2
== FIXED_POINT_TYPE
|| code2
== REAL_TYPE
735 || code2
== INTEGER_TYPE
);
737 /* When one operand is a decimal float type, the other operand cannot be
738 a generic float type or a complex type. We also disallow vector types
740 if ((DECIMAL_FLOAT_TYPE_P (t1
) || DECIMAL_FLOAT_TYPE_P (t2
))
741 && !(DECIMAL_FLOAT_TYPE_P (t1
) && DECIMAL_FLOAT_TYPE_P (t2
)))
743 if (code1
== VECTOR_TYPE
|| code2
== VECTOR_TYPE
)
745 error ("can%'t mix operands of decimal float and vector types");
746 return error_mark_node
;
748 if (code1
== COMPLEX_TYPE
|| code2
== COMPLEX_TYPE
)
750 error ("can%'t mix operands of decimal float and complex types");
751 return error_mark_node
;
753 if (code1
== REAL_TYPE
&& code2
== REAL_TYPE
)
755 error ("can%'t mix operands of decimal float and other float types");
756 return error_mark_node
;
760 /* If one type is a vector type, return that type. (How the usual
761 arithmetic conversions apply to the vector types extension is not
762 precisely specified.) */
763 if (code1
== VECTOR_TYPE
)
766 if (code2
== VECTOR_TYPE
)
769 /* If one type is complex, form the common type of the non-complex
770 components, then make that complex. Use T1 or T2 if it is the
772 if (code1
== COMPLEX_TYPE
|| code2
== COMPLEX_TYPE
)
774 tree subtype1
= code1
== COMPLEX_TYPE
? TREE_TYPE (t1
) : t1
;
775 tree subtype2
= code2
== COMPLEX_TYPE
? TREE_TYPE (t2
) : t2
;
776 tree subtype
= c_common_type (subtype1
, subtype2
);
778 if (code1
== COMPLEX_TYPE
&& TREE_TYPE (t1
) == subtype
)
780 else if (code2
== COMPLEX_TYPE
&& TREE_TYPE (t2
) == subtype
)
783 return build_complex_type (subtype
);
786 /* If only one is real, use it as the result. */
788 if (code1
== REAL_TYPE
&& code2
!= REAL_TYPE
)
791 if (code2
== REAL_TYPE
&& code1
!= REAL_TYPE
)
794 /* If both are real and either are decimal floating point types, use
795 the decimal floating point type with the greater precision. */
797 if (code1
== REAL_TYPE
&& code2
== REAL_TYPE
)
799 if (TYPE_MAIN_VARIANT (t1
) == dfloat128_type_node
800 || TYPE_MAIN_VARIANT (t2
) == dfloat128_type_node
)
801 return dfloat128_type_node
;
802 else if (TYPE_MAIN_VARIANT (t1
) == dfloat64_type_node
803 || TYPE_MAIN_VARIANT (t2
) == dfloat64_type_node
)
804 return dfloat64_type_node
;
805 else if (TYPE_MAIN_VARIANT (t1
) == dfloat32_type_node
806 || TYPE_MAIN_VARIANT (t2
) == dfloat32_type_node
)
807 return dfloat32_type_node
;
810 /* Deal with fixed-point types. */
811 if (code1
== FIXED_POINT_TYPE
|| code2
== FIXED_POINT_TYPE
)
813 unsigned int unsignedp
= 0, satp
= 0;
815 unsigned int fbit1
, ibit1
, fbit2
, ibit2
, max_fbit
, max_ibit
;
817 m1
= SCALAR_TYPE_MODE (t1
);
818 m2
= SCALAR_TYPE_MODE (t2
);
820 /* If one input type is saturating, the result type is saturating. */
821 if (TYPE_SATURATING (t1
) || TYPE_SATURATING (t2
))
824 /* If both fixed-point types are unsigned, the result type is unsigned.
825 When mixing fixed-point and integer types, follow the sign of the
827 Otherwise, the result type is signed. */
828 if ((TYPE_UNSIGNED (t1
) && TYPE_UNSIGNED (t2
)
829 && code1
== FIXED_POINT_TYPE
&& code2
== FIXED_POINT_TYPE
)
830 || (code1
== FIXED_POINT_TYPE
&& code2
!= FIXED_POINT_TYPE
831 && TYPE_UNSIGNED (t1
))
832 || (code1
!= FIXED_POINT_TYPE
&& code2
== FIXED_POINT_TYPE
833 && TYPE_UNSIGNED (t2
)))
836 /* The result type is signed. */
839 /* If the input type is unsigned, we need to convert to the
841 if (code1
== FIXED_POINT_TYPE
&& TYPE_UNSIGNED (t1
))
843 enum mode_class mclass
= (enum mode_class
) 0;
844 if (GET_MODE_CLASS (m1
) == MODE_UFRACT
)
846 else if (GET_MODE_CLASS (m1
) == MODE_UACCUM
)
850 m1
= as_a
<scalar_mode
>
851 (mode_for_size (GET_MODE_PRECISION (m1
), mclass
, 0));
853 if (code2
== FIXED_POINT_TYPE
&& TYPE_UNSIGNED (t2
))
855 enum mode_class mclass
= (enum mode_class
) 0;
856 if (GET_MODE_CLASS (m2
) == MODE_UFRACT
)
858 else if (GET_MODE_CLASS (m2
) == MODE_UACCUM
)
862 m2
= as_a
<scalar_mode
>
863 (mode_for_size (GET_MODE_PRECISION (m2
), mclass
, 0));
867 if (code1
== FIXED_POINT_TYPE
)
869 fbit1
= GET_MODE_FBIT (m1
);
870 ibit1
= GET_MODE_IBIT (m1
);
875 /* Signed integers need to subtract one sign bit. */
876 ibit1
= TYPE_PRECISION (t1
) - (!TYPE_UNSIGNED (t1
));
879 if (code2
== FIXED_POINT_TYPE
)
881 fbit2
= GET_MODE_FBIT (m2
);
882 ibit2
= GET_MODE_IBIT (m2
);
887 /* Signed integers need to subtract one sign bit. */
888 ibit2
= TYPE_PRECISION (t2
) - (!TYPE_UNSIGNED (t2
));
891 max_ibit
= ibit1
>= ibit2
? ibit1
: ibit2
;
892 max_fbit
= fbit1
>= fbit2
? fbit1
: fbit2
;
893 return c_common_fixed_point_type_for_size (max_ibit
, max_fbit
, unsignedp
,
897 /* Both real or both integers; use the one with greater precision. */
899 if (TYPE_PRECISION (t1
) > TYPE_PRECISION (t2
))
901 else if (TYPE_PRECISION (t2
) > TYPE_PRECISION (t1
))
904 /* Same precision. Prefer long longs to longs to ints when the
905 same precision, following the C99 rules on integer type rank
906 (which are equivalent to the C90 rules for C90 types). */
908 if (TYPE_MAIN_VARIANT (t1
) == long_long_unsigned_type_node
909 || TYPE_MAIN_VARIANT (t2
) == long_long_unsigned_type_node
)
910 return long_long_unsigned_type_node
;
912 if (TYPE_MAIN_VARIANT (t1
) == long_long_integer_type_node
913 || TYPE_MAIN_VARIANT (t2
) == long_long_integer_type_node
)
915 if (TYPE_UNSIGNED (t1
) || TYPE_UNSIGNED (t2
))
916 return long_long_unsigned_type_node
;
918 return long_long_integer_type_node
;
921 if (TYPE_MAIN_VARIANT (t1
) == long_unsigned_type_node
922 || TYPE_MAIN_VARIANT (t2
) == long_unsigned_type_node
)
923 return long_unsigned_type_node
;
925 if (TYPE_MAIN_VARIANT (t1
) == long_integer_type_node
926 || TYPE_MAIN_VARIANT (t2
) == long_integer_type_node
)
928 /* But preserve unsignedness from the other type,
929 since long cannot hold all the values of an unsigned int. */
930 if (TYPE_UNSIGNED (t1
) || TYPE_UNSIGNED (t2
))
931 return long_unsigned_type_node
;
933 return long_integer_type_node
;
936 /* For floating types of the same TYPE_PRECISION (which we here
937 assume means either the same set of values, or sets of values
938 neither a subset of the other, with behavior being undefined in
939 the latter case), follow the rules from TS 18661-3: prefer
940 interchange types _FloatN, then standard types long double,
941 double, float, then extended types _FloatNx. For extended types,
942 check them starting with _Float128x as that seems most consistent
943 in spirit with preferring long double to double; for interchange
944 types, also check in that order for consistency although it's not
945 possible for more than one of them to have the same
947 tree mv1
= TYPE_MAIN_VARIANT (t1
);
948 tree mv2
= TYPE_MAIN_VARIANT (t2
);
950 for (int i
= NUM_FLOATN_TYPES
- 1; i
>= 0; i
--)
951 if (mv1
== FLOATN_TYPE_NODE (i
) || mv2
== FLOATN_TYPE_NODE (i
))
952 return FLOATN_TYPE_NODE (i
);
954 /* Likewise, prefer long double to double even if same size. */
955 if (mv1
== long_double_type_node
|| mv2
== long_double_type_node
)
956 return long_double_type_node
;
958 /* Likewise, prefer double to float even if same size.
959 We got a couple of embedded targets with 32 bit doubles, and the
960 pdp11 might have 64 bit floats. */
961 if (mv1
== double_type_node
|| mv2
== double_type_node
)
962 return double_type_node
;
964 if (mv1
== float_type_node
|| mv2
== float_type_node
)
965 return float_type_node
;
967 for (int i
= NUM_FLOATNX_TYPES
- 1; i
>= 0; i
--)
968 if (mv1
== FLOATNX_TYPE_NODE (i
) || mv2
== FLOATNX_TYPE_NODE (i
))
969 return FLOATNX_TYPE_NODE (i
);
971 /* Otherwise prefer the unsigned one. */
973 if (TYPE_UNSIGNED (t1
))
979 /* Wrapper around c_common_type that is used by c-common.c and other
980 front end optimizations that remove promotions. ENUMERAL_TYPEs
981 are allowed here and are converted to their compatible integer types.
982 BOOLEAN_TYPEs are allowed here and return either boolean_type_node or
983 preferably a non-Boolean type as the common type. */
985 common_type (tree t1
, tree t2
)
987 if (TREE_CODE (t1
) == ENUMERAL_TYPE
)
988 t1
= c_common_type_for_size (TYPE_PRECISION (t1
), 1);
989 if (TREE_CODE (t2
) == ENUMERAL_TYPE
)
990 t2
= c_common_type_for_size (TYPE_PRECISION (t2
), 1);
992 /* If both types are BOOLEAN_TYPE, then return boolean_type_node. */
993 if (TREE_CODE (t1
) == BOOLEAN_TYPE
994 && TREE_CODE (t2
) == BOOLEAN_TYPE
)
995 return boolean_type_node
;
997 /* If either type is BOOLEAN_TYPE, then return the other. */
998 if (TREE_CODE (t1
) == BOOLEAN_TYPE
)
1000 if (TREE_CODE (t2
) == BOOLEAN_TYPE
)
1003 return c_common_type (t1
, t2
);
1006 /* Return 1 if TYPE1 and TYPE2 are compatible types for assignment
1007 or various other operations. Return 2 if they are compatible
1008 but a warning may be needed if you use them together. */
1011 comptypes (tree type1
, tree type2
)
1013 const struct tagged_tu_seen_cache
* tagged_tu_seen_base1
= tagged_tu_seen_base
;
1016 val
= comptypes_internal (type1
, type2
, NULL
, NULL
);
1017 free_all_tagged_tu_seen_up_to (tagged_tu_seen_base1
);
1022 /* Like comptypes, but if it returns non-zero because enum and int are
1023 compatible, it sets *ENUM_AND_INT_P to true. */
1026 comptypes_check_enum_int (tree type1
, tree type2
, bool *enum_and_int_p
)
1028 const struct tagged_tu_seen_cache
* tagged_tu_seen_base1
= tagged_tu_seen_base
;
1031 val
= comptypes_internal (type1
, type2
, enum_and_int_p
, NULL
);
1032 free_all_tagged_tu_seen_up_to (tagged_tu_seen_base1
);
1037 /* Like comptypes, but if it returns nonzero for different types, it
1038 sets *DIFFERENT_TYPES_P to true. */
1041 comptypes_check_different_types (tree type1
, tree type2
,
1042 bool *different_types_p
)
1044 const struct tagged_tu_seen_cache
* tagged_tu_seen_base1
= tagged_tu_seen_base
;
1047 val
= comptypes_internal (type1
, type2
, NULL
, different_types_p
);
1048 free_all_tagged_tu_seen_up_to (tagged_tu_seen_base1
);
1053 /* Return 1 if TYPE1 and TYPE2 are compatible types for assignment
1054 or various other operations. Return 2 if they are compatible
1055 but a warning may be needed if you use them together. If
1056 ENUM_AND_INT_P is not NULL, and one type is an enum and the other a
1057 compatible integer type, then this sets *ENUM_AND_INT_P to true;
1058 *ENUM_AND_INT_P is never set to false. If DIFFERENT_TYPES_P is not
1059 NULL, and the types are compatible but different enough not to be
1060 permitted in C11 typedef redeclarations, then this sets
1061 *DIFFERENT_TYPES_P to true; *DIFFERENT_TYPES_P is never set to
1062 false, but may or may not be set if the types are incompatible.
1063 This differs from comptypes, in that we don't free the seen
1067 comptypes_internal (const_tree type1
, const_tree type2
, bool *enum_and_int_p
,
1068 bool *different_types_p
)
1070 const_tree t1
= type1
;
1071 const_tree t2
= type2
;
1074 /* Suppress errors caused by previously reported errors. */
1076 if (t1
== t2
|| !t1
|| !t2
1077 || TREE_CODE (t1
) == ERROR_MARK
|| TREE_CODE (t2
) == ERROR_MARK
)
1080 /* Enumerated types are compatible with integer types, but this is
1081 not transitive: two enumerated types in the same translation unit
1082 are compatible with each other only if they are the same type. */
1084 if (TREE_CODE (t1
) == ENUMERAL_TYPE
&& TREE_CODE (t2
) != ENUMERAL_TYPE
)
1086 t1
= c_common_type_for_size (TYPE_PRECISION (t1
), TYPE_UNSIGNED (t1
));
1087 if (TREE_CODE (t2
) != VOID_TYPE
)
1089 if (enum_and_int_p
!= NULL
)
1090 *enum_and_int_p
= true;
1091 if (different_types_p
!= NULL
)
1092 *different_types_p
= true;
1095 else if (TREE_CODE (t2
) == ENUMERAL_TYPE
&& TREE_CODE (t1
) != ENUMERAL_TYPE
)
1097 t2
= c_common_type_for_size (TYPE_PRECISION (t2
), TYPE_UNSIGNED (t2
));
1098 if (TREE_CODE (t1
) != VOID_TYPE
)
1100 if (enum_and_int_p
!= NULL
)
1101 *enum_and_int_p
= true;
1102 if (different_types_p
!= NULL
)
1103 *different_types_p
= true;
1110 /* Different classes of types can't be compatible. */
1112 if (TREE_CODE (t1
) != TREE_CODE (t2
))
1115 /* Qualifiers must match. C99 6.7.3p9 */
1117 if (TYPE_QUALS (t1
) != TYPE_QUALS (t2
))
1120 /* Allow for two different type nodes which have essentially the same
1121 definition. Note that we already checked for equality of the type
1122 qualifiers (just above). */
1124 if (TREE_CODE (t1
) != ARRAY_TYPE
1125 && TYPE_MAIN_VARIANT (t1
) == TYPE_MAIN_VARIANT (t2
))
1128 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
1129 if (!(attrval
= comp_type_attributes (t1
, t2
)))
1132 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
1135 switch (TREE_CODE (t1
))
1138 case FIXED_POINT_TYPE
:
1140 /* With these nodes, we can't determine type equivalence by
1141 looking at what is stored in the nodes themselves, because
1142 two nodes might have different TYPE_MAIN_VARIANTs but still
1143 represent the same type. For example, wchar_t and int could
1144 have the same properties (TYPE_PRECISION, TYPE_MIN_VALUE,
1145 TYPE_MAX_VALUE, etc.), but have different TYPE_MAIN_VARIANTs
1146 and are distinct types. On the other hand, int and the
1149 typedef int INT __attribute((may_alias));
1151 have identical properties, different TYPE_MAIN_VARIANTs, but
1152 represent the same type. The canonical type system keeps
1153 track of equivalence in this case, so we fall back on it. */
1154 return TYPE_CANONICAL (t1
) == TYPE_CANONICAL (t2
);
1157 /* Do not remove mode information. */
1158 if (TYPE_MODE (t1
) != TYPE_MODE (t2
))
1160 val
= (TREE_TYPE (t1
) == TREE_TYPE (t2
)
1161 ? 1 : comptypes_internal (TREE_TYPE (t1
), TREE_TYPE (t2
),
1162 enum_and_int_p
, different_types_p
));
1166 val
= function_types_compatible_p (t1
, t2
, enum_and_int_p
,
1172 tree d1
= TYPE_DOMAIN (t1
);
1173 tree d2
= TYPE_DOMAIN (t2
);
1174 bool d1_variable
, d2_variable
;
1175 bool d1_zero
, d2_zero
;
1178 /* Target types must match incl. qualifiers. */
1179 if (TREE_TYPE (t1
) != TREE_TYPE (t2
)
1180 && (val
= comptypes_internal (TREE_TYPE (t1
), TREE_TYPE (t2
),
1182 different_types_p
)) == 0)
1185 if (different_types_p
!= NULL
1186 && (d1
== NULL_TREE
) != (d2
== NULL_TREE
))
1187 *different_types_p
= true;
1188 /* Sizes must match unless one is missing or variable. */
1189 if (d1
== NULL_TREE
|| d2
== NULL_TREE
|| d1
== d2
)
1192 d1_zero
= !TYPE_MAX_VALUE (d1
);
1193 d2_zero
= !TYPE_MAX_VALUE (d2
);
1195 d1_variable
= (!d1_zero
1196 && (TREE_CODE (TYPE_MIN_VALUE (d1
)) != INTEGER_CST
1197 || TREE_CODE (TYPE_MAX_VALUE (d1
)) != INTEGER_CST
));
1198 d2_variable
= (!d2_zero
1199 && (TREE_CODE (TYPE_MIN_VALUE (d2
)) != INTEGER_CST
1200 || TREE_CODE (TYPE_MAX_VALUE (d2
)) != INTEGER_CST
));
1201 d1_variable
= d1_variable
|| (d1_zero
&& c_vla_type_p (t1
));
1202 d2_variable
= d2_variable
|| (d2_zero
&& c_vla_type_p (t2
));
1204 if (different_types_p
!= NULL
1205 && d1_variable
!= d2_variable
)
1206 *different_types_p
= true;
1207 if (d1_variable
|| d2_variable
)
1209 if (d1_zero
&& d2_zero
)
1211 if (d1_zero
|| d2_zero
1212 || !tree_int_cst_equal (TYPE_MIN_VALUE (d1
), TYPE_MIN_VALUE (d2
))
1213 || !tree_int_cst_equal (TYPE_MAX_VALUE (d1
), TYPE_MAX_VALUE (d2
)))
1222 if (val
!= 1 && !same_translation_unit_p (t1
, t2
))
1224 tree a1
= TYPE_ATTRIBUTES (t1
);
1225 tree a2
= TYPE_ATTRIBUTES (t2
);
1227 if (! attribute_list_contained (a1
, a2
)
1228 && ! attribute_list_contained (a2
, a1
))
1232 return tagged_types_tu_compatible_p (t1
, t2
, enum_and_int_p
,
1234 val
= tagged_types_tu_compatible_p (t1
, t2
, enum_and_int_p
,
1240 val
= (known_eq (TYPE_VECTOR_SUBPARTS (t1
), TYPE_VECTOR_SUBPARTS (t2
))
1241 && comptypes_internal (TREE_TYPE (t1
), TREE_TYPE (t2
),
1242 enum_and_int_p
, different_types_p
));
1248 return attrval
== 2 && val
== 1 ? 2 : val
;
1251 /* Return 1 if TTL and TTR are pointers to types that are equivalent, ignoring
1252 their qualifiers, except for named address spaces. If the pointers point to
1253 different named addresses, then we must determine if one address space is a
1254 subset of the other. */
1257 comp_target_types (location_t location
, tree ttl
, tree ttr
)
1261 tree mvl
= TREE_TYPE (ttl
);
1262 tree mvr
= TREE_TYPE (ttr
);
1263 addr_space_t asl
= TYPE_ADDR_SPACE (mvl
);
1264 addr_space_t asr
= TYPE_ADDR_SPACE (mvr
);
1265 addr_space_t as_common
;
1266 bool enum_and_int_p
;
1268 /* Fail if pointers point to incompatible address spaces. */
1269 if (!addr_space_superset (asl
, asr
, &as_common
))
1272 /* For pedantic record result of comptypes on arrays before losing
1273 qualifiers on the element type below. */
1276 if (TREE_CODE (mvl
) == ARRAY_TYPE
1277 && TREE_CODE (mvr
) == ARRAY_TYPE
)
1278 val_ped
= comptypes (mvl
, mvr
);
1280 /* Qualifiers on element types of array types that are
1281 pointer targets are lost by taking their TYPE_MAIN_VARIANT. */
1283 mvl
= (TYPE_ATOMIC (strip_array_types (mvl
))
1284 ? c_build_qualified_type (TYPE_MAIN_VARIANT (mvl
), TYPE_QUAL_ATOMIC
)
1285 : TYPE_MAIN_VARIANT (mvl
));
1287 mvr
= (TYPE_ATOMIC (strip_array_types (mvr
))
1288 ? c_build_qualified_type (TYPE_MAIN_VARIANT (mvr
), TYPE_QUAL_ATOMIC
)
1289 : TYPE_MAIN_VARIANT (mvr
));
1291 enum_and_int_p
= false;
1292 val
= comptypes_check_enum_int (mvl
, mvr
, &enum_and_int_p
);
1294 if (val
== 1 && val_ped
!= 1)
1295 pedwarn (location
, OPT_Wpedantic
, "pointers to arrays with different qualifiers "
1296 "are incompatible in ISO C");
1299 pedwarn (location
, OPT_Wpedantic
, "types are not quite compatible");
1301 if (val
== 1 && enum_and_int_p
&& warn_cxx_compat
)
1302 warning_at (location
, OPT_Wc___compat
,
1303 "pointer target types incompatible in C++");
1308 /* Subroutines of `comptypes'. */
1310 /* Determine whether two trees derive from the same translation unit.
1311 If the CONTEXT chain ends in a null, that tree's context is still
1312 being parsed, so if two trees have context chains ending in null,
1313 they're in the same translation unit. */
1316 same_translation_unit_p (const_tree t1
, const_tree t2
)
1318 while (t1
&& TREE_CODE (t1
) != TRANSLATION_UNIT_DECL
)
1319 switch (TREE_CODE_CLASS (TREE_CODE (t1
)))
1321 case tcc_declaration
:
1322 t1
= DECL_CONTEXT (t1
); break;
1324 t1
= TYPE_CONTEXT (t1
); break;
1325 case tcc_exceptional
:
1326 t1
= BLOCK_SUPERCONTEXT (t1
); break; /* assume block */
1327 default: gcc_unreachable ();
1330 while (t2
&& TREE_CODE (t2
) != TRANSLATION_UNIT_DECL
)
1331 switch (TREE_CODE_CLASS (TREE_CODE (t2
)))
1333 case tcc_declaration
:
1334 t2
= DECL_CONTEXT (t2
); break;
1336 t2
= TYPE_CONTEXT (t2
); break;
1337 case tcc_exceptional
:
1338 t2
= BLOCK_SUPERCONTEXT (t2
); break; /* assume block */
1339 default: gcc_unreachable ();
1345 /* Allocate the seen two types, assuming that they are compatible. */
1347 static struct tagged_tu_seen_cache
*
1348 alloc_tagged_tu_seen_cache (const_tree t1
, const_tree t2
)
1350 struct tagged_tu_seen_cache
*tu
= XNEW (struct tagged_tu_seen_cache
);
1351 tu
->next
= tagged_tu_seen_base
;
1355 tagged_tu_seen_base
= tu
;
1357 /* The C standard says that two structures in different translation
1358 units are compatible with each other only if the types of their
1359 fields are compatible (among other things). We assume that they
1360 are compatible until proven otherwise when building the cache.
1361 An example where this can occur is:
1366 If we are comparing this against a similar struct in another TU,
1367 and did not assume they were compatible, we end up with an infinite
1373 /* Free the seen types until we get to TU_TIL. */
1376 free_all_tagged_tu_seen_up_to (const struct tagged_tu_seen_cache
*tu_til
)
1378 const struct tagged_tu_seen_cache
*tu
= tagged_tu_seen_base
;
1379 while (tu
!= tu_til
)
1381 const struct tagged_tu_seen_cache
*const tu1
1382 = (const struct tagged_tu_seen_cache
*) tu
;
1384 free (CONST_CAST (struct tagged_tu_seen_cache
*, tu1
));
1386 tagged_tu_seen_base
= tu_til
;
1389 /* Return 1 if two 'struct', 'union', or 'enum' types T1 and T2 are
1390 compatible. If the two types are not the same (which has been
1391 checked earlier), this can only happen when multiple translation
1392 units are being compiled. See C99 6.2.7 paragraph 1 for the exact
1393 rules. ENUM_AND_INT_P and DIFFERENT_TYPES_P are as in
1394 comptypes_internal. */
1397 tagged_types_tu_compatible_p (const_tree t1
, const_tree t2
,
1398 bool *enum_and_int_p
, bool *different_types_p
)
1401 bool needs_warning
= false;
1403 /* We have to verify that the tags of the types are the same. This
1404 is harder than it looks because this may be a typedef, so we have
1405 to go look at the original type. It may even be a typedef of a
1407 In the case of compiler-created builtin structs the TYPE_DECL
1408 may be a dummy, with no DECL_ORIGINAL_TYPE. Don't fault. */
1409 while (TYPE_NAME (t1
)
1410 && TREE_CODE (TYPE_NAME (t1
)) == TYPE_DECL
1411 && DECL_ORIGINAL_TYPE (TYPE_NAME (t1
)))
1412 t1
= DECL_ORIGINAL_TYPE (TYPE_NAME (t1
));
1414 while (TYPE_NAME (t2
)
1415 && TREE_CODE (TYPE_NAME (t2
)) == TYPE_DECL
1416 && DECL_ORIGINAL_TYPE (TYPE_NAME (t2
)))
1417 t2
= DECL_ORIGINAL_TYPE (TYPE_NAME (t2
));
1419 /* C90 didn't have the requirement that the two tags be the same. */
1420 if (flag_isoc99
&& TYPE_NAME (t1
) != TYPE_NAME (t2
))
1423 /* C90 didn't say what happened if one or both of the types were
1424 incomplete; we choose to follow C99 rules here, which is that they
1426 if (TYPE_SIZE (t1
) == NULL
1427 || TYPE_SIZE (t2
) == NULL
)
1431 const struct tagged_tu_seen_cache
* tts_i
;
1432 for (tts_i
= tagged_tu_seen_base
; tts_i
!= NULL
; tts_i
= tts_i
->next
)
1433 if (tts_i
->t1
== t1
&& tts_i
->t2
== t2
)
1437 switch (TREE_CODE (t1
))
1441 struct tagged_tu_seen_cache
*tu
= alloc_tagged_tu_seen_cache (t1
, t2
);
1442 /* Speed up the case where the type values are in the same order. */
1443 tree tv1
= TYPE_VALUES (t1
);
1444 tree tv2
= TYPE_VALUES (t2
);
1451 for (;tv1
&& tv2
; tv1
= TREE_CHAIN (tv1
), tv2
= TREE_CHAIN (tv2
))
1453 if (TREE_PURPOSE (tv1
) != TREE_PURPOSE (tv2
))
1455 if (simple_cst_equal (TREE_VALUE (tv1
), TREE_VALUE (tv2
)) != 1)
1462 if (tv1
== NULL_TREE
&& tv2
== NULL_TREE
)
1466 if (tv1
== NULL_TREE
|| tv2
== NULL_TREE
)
1472 if (list_length (TYPE_VALUES (t1
)) != list_length (TYPE_VALUES (t2
)))
1478 for (s1
= TYPE_VALUES (t1
); s1
; s1
= TREE_CHAIN (s1
))
1480 s2
= purpose_member (TREE_PURPOSE (s1
), TYPE_VALUES (t2
));
1482 || simple_cst_equal (TREE_VALUE (s1
), TREE_VALUE (s2
)) != 1)
1493 struct tagged_tu_seen_cache
*tu
= alloc_tagged_tu_seen_cache (t1
, t2
);
1494 if (list_length (TYPE_FIELDS (t1
)) != list_length (TYPE_FIELDS (t2
)))
1500 /* Speed up the common case where the fields are in the same order. */
1501 for (s1
= TYPE_FIELDS (t1
), s2
= TYPE_FIELDS (t2
); s1
&& s2
;
1502 s1
= DECL_CHAIN (s1
), s2
= DECL_CHAIN (s2
))
1506 if (DECL_NAME (s1
) != DECL_NAME (s2
))
1508 result
= comptypes_internal (TREE_TYPE (s1
), TREE_TYPE (s2
),
1509 enum_and_int_p
, different_types_p
);
1511 if (result
!= 1 && !DECL_NAME (s1
))
1519 needs_warning
= true;
1521 if (TREE_CODE (s1
) == FIELD_DECL
1522 && simple_cst_equal (DECL_FIELD_BIT_OFFSET (s1
),
1523 DECL_FIELD_BIT_OFFSET (s2
)) != 1)
1531 tu
->val
= needs_warning
? 2 : 1;
1535 for (s1
= TYPE_FIELDS (t1
); s1
; s1
= DECL_CHAIN (s1
))
1539 for (s2
= TYPE_FIELDS (t2
); s2
; s2
= DECL_CHAIN (s2
))
1540 if (DECL_NAME (s1
) == DECL_NAME (s2
))
1544 result
= comptypes_internal (TREE_TYPE (s1
), TREE_TYPE (s2
),
1548 if (result
!= 1 && !DECL_NAME (s1
))
1556 needs_warning
= true;
1558 if (TREE_CODE (s1
) == FIELD_DECL
1559 && simple_cst_equal (DECL_FIELD_BIT_OFFSET (s1
),
1560 DECL_FIELD_BIT_OFFSET (s2
)) != 1)
1572 tu
->val
= needs_warning
? 2 : 10;
1578 struct tagged_tu_seen_cache
*tu
= alloc_tagged_tu_seen_cache (t1
, t2
);
1580 for (s1
= TYPE_FIELDS (t1
), s2
= TYPE_FIELDS (t2
);
1582 s1
= DECL_CHAIN (s1
), s2
= DECL_CHAIN (s2
))
1585 if (TREE_CODE (s1
) != TREE_CODE (s2
)
1586 || DECL_NAME (s1
) != DECL_NAME (s2
))
1588 result
= comptypes_internal (TREE_TYPE (s1
), TREE_TYPE (s2
),
1589 enum_and_int_p
, different_types_p
);
1593 needs_warning
= true;
1595 if (TREE_CODE (s1
) == FIELD_DECL
1596 && simple_cst_equal (DECL_FIELD_BIT_OFFSET (s1
),
1597 DECL_FIELD_BIT_OFFSET (s2
)) != 1)
1603 tu
->val
= needs_warning
? 2 : 1;
1612 /* Return 1 if two function types F1 and F2 are compatible.
1613 If either type specifies no argument types,
1614 the other must specify a fixed number of self-promoting arg types.
1615 Otherwise, if one type specifies only the number of arguments,
1616 the other must specify that number of self-promoting arg types.
1617 Otherwise, the argument types must match.
1618 ENUM_AND_INT_P and DIFFERENT_TYPES_P are as in comptypes_internal. */
1621 function_types_compatible_p (const_tree f1
, const_tree f2
,
1622 bool *enum_and_int_p
, bool *different_types_p
)
1625 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
1630 ret1
= TREE_TYPE (f1
);
1631 ret2
= TREE_TYPE (f2
);
1633 /* 'volatile' qualifiers on a function's return type used to mean
1634 the function is noreturn. */
1635 if (TYPE_VOLATILE (ret1
) != TYPE_VOLATILE (ret2
))
1636 pedwarn (input_location
, 0, "function return types not compatible due to %<volatile%>");
1637 if (TYPE_VOLATILE (ret1
))
1638 ret1
= build_qualified_type (TYPE_MAIN_VARIANT (ret1
),
1639 TYPE_QUALS (ret1
) & ~TYPE_QUAL_VOLATILE
);
1640 if (TYPE_VOLATILE (ret2
))
1641 ret2
= build_qualified_type (TYPE_MAIN_VARIANT (ret2
),
1642 TYPE_QUALS (ret2
) & ~TYPE_QUAL_VOLATILE
);
1643 val
= comptypes_internal (ret1
, ret2
, enum_and_int_p
, different_types_p
);
1647 args1
= TYPE_ARG_TYPES (f1
);
1648 args2
= TYPE_ARG_TYPES (f2
);
1650 if (different_types_p
!= NULL
1651 && (args1
== NULL_TREE
) != (args2
== NULL_TREE
))
1652 *different_types_p
= true;
1654 /* An unspecified parmlist matches any specified parmlist
1655 whose argument types don't need default promotions. */
1657 if (args1
== NULL_TREE
)
1659 if (!self_promoting_args_p (args2
))
1661 /* If one of these types comes from a non-prototype fn definition,
1662 compare that with the other type's arglist.
1663 If they don't match, ask for a warning (but no error). */
1664 if (TYPE_ACTUAL_ARG_TYPES (f1
)
1665 && type_lists_compatible_p (args2
, TYPE_ACTUAL_ARG_TYPES (f1
),
1666 enum_and_int_p
, different_types_p
) != 1)
1670 if (args2
== NULL_TREE
)
1672 if (!self_promoting_args_p (args1
))
1674 if (TYPE_ACTUAL_ARG_TYPES (f2
)
1675 && type_lists_compatible_p (args1
, TYPE_ACTUAL_ARG_TYPES (f2
),
1676 enum_and_int_p
, different_types_p
) != 1)
1681 /* Both types have argument lists: compare them and propagate results. */
1682 val1
= type_lists_compatible_p (args1
, args2
, enum_and_int_p
,
1684 return val1
!= 1 ? val1
: val
;
1687 /* Check two lists of types for compatibility, returning 0 for
1688 incompatible, 1 for compatible, or 2 for compatible with
1689 warning. ENUM_AND_INT_P and DIFFERENT_TYPES_P are as in
1690 comptypes_internal. */
1693 type_lists_compatible_p (const_tree args1
, const_tree args2
,
1694 bool *enum_and_int_p
, bool *different_types_p
)
1696 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
1702 tree a1
, mv1
, a2
, mv2
;
1703 if (args1
== NULL_TREE
&& args2
== NULL_TREE
)
1705 /* If one list is shorter than the other,
1706 they fail to match. */
1707 if (args1
== NULL_TREE
|| args2
== NULL_TREE
)
1709 mv1
= a1
= TREE_VALUE (args1
);
1710 mv2
= a2
= TREE_VALUE (args2
);
1711 if (mv1
&& mv1
!= error_mark_node
&& TREE_CODE (mv1
) != ARRAY_TYPE
)
1712 mv1
= (TYPE_ATOMIC (mv1
)
1713 ? c_build_qualified_type (TYPE_MAIN_VARIANT (mv1
),
1715 : TYPE_MAIN_VARIANT (mv1
));
1716 if (mv2
&& mv2
!= error_mark_node
&& TREE_CODE (mv2
) != ARRAY_TYPE
)
1717 mv2
= (TYPE_ATOMIC (mv2
)
1718 ? c_build_qualified_type (TYPE_MAIN_VARIANT (mv2
),
1720 : TYPE_MAIN_VARIANT (mv2
));
1721 /* A null pointer instead of a type
1722 means there is supposed to be an argument
1723 but nothing is specified about what type it has.
1724 So match anything that self-promotes. */
1725 if (different_types_p
!= NULL
1726 && (a1
== NULL_TREE
) != (a2
== NULL_TREE
))
1727 *different_types_p
= true;
1728 if (a1
== NULL_TREE
)
1730 if (c_type_promotes_to (a2
) != a2
)
1733 else if (a2
== NULL_TREE
)
1735 if (c_type_promotes_to (a1
) != a1
)
1738 /* If one of the lists has an error marker, ignore this arg. */
1739 else if (TREE_CODE (a1
) == ERROR_MARK
1740 || TREE_CODE (a2
) == ERROR_MARK
)
1742 else if (!(newval
= comptypes_internal (mv1
, mv2
, enum_and_int_p
,
1743 different_types_p
)))
1745 if (different_types_p
!= NULL
)
1746 *different_types_p
= true;
1747 /* Allow wait (union {union wait *u; int *i} *)
1748 and wait (union wait *) to be compatible. */
1749 if (TREE_CODE (a1
) == UNION_TYPE
1750 && (TYPE_NAME (a1
) == NULL_TREE
1751 || TYPE_TRANSPARENT_AGGR (a1
))
1752 && TREE_CODE (TYPE_SIZE (a1
)) == INTEGER_CST
1753 && tree_int_cst_equal (TYPE_SIZE (a1
),
1757 for (memb
= TYPE_FIELDS (a1
);
1758 memb
; memb
= DECL_CHAIN (memb
))
1760 tree mv3
= TREE_TYPE (memb
);
1761 if (mv3
&& mv3
!= error_mark_node
1762 && TREE_CODE (mv3
) != ARRAY_TYPE
)
1763 mv3
= (TYPE_ATOMIC (mv3
)
1764 ? c_build_qualified_type (TYPE_MAIN_VARIANT (mv3
),
1766 : TYPE_MAIN_VARIANT (mv3
));
1767 if (comptypes_internal (mv3
, mv2
, enum_and_int_p
,
1771 if (memb
== NULL_TREE
)
1774 else if (TREE_CODE (a2
) == UNION_TYPE
1775 && (TYPE_NAME (a2
) == NULL_TREE
1776 || TYPE_TRANSPARENT_AGGR (a2
))
1777 && TREE_CODE (TYPE_SIZE (a2
)) == INTEGER_CST
1778 && tree_int_cst_equal (TYPE_SIZE (a2
),
1782 for (memb
= TYPE_FIELDS (a2
);
1783 memb
; memb
= DECL_CHAIN (memb
))
1785 tree mv3
= TREE_TYPE (memb
);
1786 if (mv3
&& mv3
!= error_mark_node
1787 && TREE_CODE (mv3
) != ARRAY_TYPE
)
1788 mv3
= (TYPE_ATOMIC (mv3
)
1789 ? c_build_qualified_type (TYPE_MAIN_VARIANT (mv3
),
1791 : TYPE_MAIN_VARIANT (mv3
));
1792 if (comptypes_internal (mv3
, mv1
, enum_and_int_p
,
1796 if (memb
== NULL_TREE
)
1803 /* comptypes said ok, but record if it said to warn. */
1807 args1
= TREE_CHAIN (args1
);
1808 args2
= TREE_CHAIN (args2
);
1812 /* Compute the size to increment a pointer by. When a function type or void
1813 type or incomplete type is passed, size_one_node is returned.
1814 This function does not emit any diagnostics; the caller is responsible
1818 c_size_in_bytes (const_tree type
)
1820 enum tree_code code
= TREE_CODE (type
);
1822 if (code
== FUNCTION_TYPE
|| code
== VOID_TYPE
|| code
== ERROR_MARK
1823 || !COMPLETE_TYPE_P (type
))
1824 return size_one_node
;
1826 /* Convert in case a char is more than one unit. */
1827 return size_binop_loc (input_location
, CEIL_DIV_EXPR
, TYPE_SIZE_UNIT (type
),
1828 size_int (TYPE_PRECISION (char_type_node
)
1832 /* Return either DECL or its known constant value (if it has one). */
1835 decl_constant_value_1 (tree decl
, bool in_init
)
1837 if (/* Note that DECL_INITIAL isn't valid for a PARM_DECL. */
1838 TREE_CODE (decl
) != PARM_DECL
1839 && !TREE_THIS_VOLATILE (decl
)
1840 && TREE_READONLY (decl
)
1841 && DECL_INITIAL (decl
) != NULL_TREE
1842 && !error_operand_p (DECL_INITIAL (decl
))
1843 /* This is invalid if initial value is not constant.
1844 If it has either a function call, a memory reference,
1845 or a variable, then re-evaluating it could give different results. */
1846 && TREE_CONSTANT (DECL_INITIAL (decl
))
1847 /* Check for cases where this is sub-optimal, even though valid. */
1848 && (in_init
|| TREE_CODE (DECL_INITIAL (decl
)) != CONSTRUCTOR
))
1849 return DECL_INITIAL (decl
);
1853 /* Return either DECL or its known constant value (if it has one).
1854 Like the above, but always return decl outside of functions. */
1857 decl_constant_value (tree decl
)
1859 /* Don't change a variable array bound or initial value to a constant
1860 in a place where a variable is invalid. */
1861 return current_function_decl
? decl_constant_value_1 (decl
, false) : decl
;
1864 /* Convert the array expression EXP to a pointer. */
1866 array_to_pointer_conversion (location_t loc
, tree exp
)
1868 tree orig_exp
= exp
;
1869 tree type
= TREE_TYPE (exp
);
1871 tree restype
= TREE_TYPE (type
);
1874 gcc_assert (TREE_CODE (type
) == ARRAY_TYPE
);
1876 STRIP_TYPE_NOPS (exp
);
1878 if (TREE_NO_WARNING (orig_exp
))
1879 TREE_NO_WARNING (exp
) = 1;
1881 ptrtype
= build_pointer_type (restype
);
1883 if (INDIRECT_REF_P (exp
))
1884 return convert (ptrtype
, TREE_OPERAND (exp
, 0));
1886 /* In C++ array compound literals are temporary objects unless they are
1887 const or appear in namespace scope, so they are destroyed too soon
1888 to use them for much of anything (c++/53220). */
1889 if (warn_cxx_compat
&& TREE_CODE (exp
) == COMPOUND_LITERAL_EXPR
)
1891 tree decl
= TREE_OPERAND (TREE_OPERAND (exp
, 0), 0);
1892 if (!TREE_READONLY (decl
) && !TREE_STATIC (decl
))
1893 warning_at (DECL_SOURCE_LOCATION (decl
), OPT_Wc___compat
,
1894 "converting an array compound literal to a pointer "
1895 "is ill-formed in C++");
1898 adr
= build_unary_op (loc
, ADDR_EXPR
, exp
, true);
1899 return convert (ptrtype
, adr
);
1902 /* Convert the function expression EXP to a pointer. */
1904 function_to_pointer_conversion (location_t loc
, tree exp
)
1906 tree orig_exp
= exp
;
1908 gcc_assert (TREE_CODE (TREE_TYPE (exp
)) == FUNCTION_TYPE
);
1910 STRIP_TYPE_NOPS (exp
);
1912 if (TREE_NO_WARNING (orig_exp
))
1913 TREE_NO_WARNING (exp
) = 1;
1915 return build_unary_op (loc
, ADDR_EXPR
, exp
, false);
1918 /* Mark EXP as read, not just set, for set but not used -Wunused
1919 warning purposes. */
1922 mark_exp_read (tree exp
)
1924 switch (TREE_CODE (exp
))
1928 DECL_READ_P (exp
) = 1;
1937 case VIEW_CONVERT_EXPR
:
1938 mark_exp_read (TREE_OPERAND (exp
, 0));
1941 case C_MAYBE_CONST_EXPR
:
1942 mark_exp_read (TREE_OPERAND (exp
, 1));
1949 /* Perform the default conversion of arrays and functions to pointers.
1950 Return the result of converting EXP. For any other expression, just
1953 LOC is the location of the expression. */
1956 default_function_array_conversion (location_t loc
, struct c_expr exp
)
1958 tree orig_exp
= exp
.value
;
1959 tree type
= TREE_TYPE (exp
.value
);
1960 enum tree_code code
= TREE_CODE (type
);
1966 bool not_lvalue
= false;
1967 bool lvalue_array_p
;
1969 while ((TREE_CODE (exp
.value
) == NON_LVALUE_EXPR
1970 || CONVERT_EXPR_P (exp
.value
))
1971 && TREE_TYPE (TREE_OPERAND (exp
.value
, 0)) == type
)
1973 if (TREE_CODE (exp
.value
) == NON_LVALUE_EXPR
)
1975 exp
.value
= TREE_OPERAND (exp
.value
, 0);
1978 if (TREE_NO_WARNING (orig_exp
))
1979 TREE_NO_WARNING (exp
.value
) = 1;
1981 lvalue_array_p
= !not_lvalue
&& lvalue_p (exp
.value
);
1982 if (!flag_isoc99
&& !lvalue_array_p
)
1984 /* Before C99, non-lvalue arrays do not decay to pointers.
1985 Normally, using such an array would be invalid; but it can
1986 be used correctly inside sizeof or as a statement expression.
1987 Thus, do not give an error here; an error will result later. */
1991 exp
.value
= array_to_pointer_conversion (loc
, exp
.value
);
1995 exp
.value
= function_to_pointer_conversion (loc
, exp
.value
);
2005 default_function_array_read_conversion (location_t loc
, struct c_expr exp
)
2007 mark_exp_read (exp
.value
);
2008 return default_function_array_conversion (loc
, exp
);
2011 /* Return whether EXPR should be treated as an atomic lvalue for the
2012 purposes of load and store handling. */
2015 really_atomic_lvalue (tree expr
)
2017 if (error_operand_p (expr
))
2019 if (!TYPE_ATOMIC (TREE_TYPE (expr
)))
2021 if (!lvalue_p (expr
))
2024 /* Ignore _Atomic on register variables, since their addresses can't
2025 be taken so (a) atomicity is irrelevant and (b) the normal atomic
2026 sequences wouldn't work. Ignore _Atomic on structures containing
2027 bit-fields, since accessing elements of atomic structures or
2028 unions is undefined behavior (C11 6.5.2.3#5), but it's unclear if
2029 it's undefined at translation time or execution time, and the
2030 normal atomic sequences again wouldn't work. */
2031 while (handled_component_p (expr
))
2033 if (TREE_CODE (expr
) == COMPONENT_REF
2034 && DECL_C_BIT_FIELD (TREE_OPERAND (expr
, 1)))
2036 expr
= TREE_OPERAND (expr
, 0);
2038 if (DECL_P (expr
) && C_DECL_REGISTER (expr
))
2043 /* Convert expression EXP (location LOC) from lvalue to rvalue,
2044 including converting functions and arrays to pointers if CONVERT_P.
2045 If READ_P, also mark the expression as having been read. */
2048 convert_lvalue_to_rvalue (location_t loc
, struct c_expr exp
,
2049 bool convert_p
, bool read_p
)
2052 mark_exp_read (exp
.value
);
2054 exp
= default_function_array_conversion (loc
, exp
);
2055 if (really_atomic_lvalue (exp
.value
))
2057 vec
<tree
, va_gc
> *params
;
2058 tree nonatomic_type
, tmp
, tmp_addr
, fndecl
, func_call
;
2059 tree expr_type
= TREE_TYPE (exp
.value
);
2060 tree expr_addr
= build_unary_op (loc
, ADDR_EXPR
, exp
.value
, false);
2061 tree seq_cst
= build_int_cst (integer_type_node
, MEMMODEL_SEQ_CST
);
2063 gcc_assert (TYPE_ATOMIC (expr_type
));
2065 /* Expansion of a generic atomic load may require an addition
2066 element, so allocate enough to prevent a resize. */
2067 vec_alloc (params
, 4);
2069 /* Remove the qualifiers for the rest of the expressions and
2070 create the VAL temp variable to hold the RHS. */
2071 nonatomic_type
= build_qualified_type (expr_type
, TYPE_UNQUALIFIED
);
2072 tmp
= create_tmp_var_raw (nonatomic_type
);
2073 tmp_addr
= build_unary_op (loc
, ADDR_EXPR
, tmp
, false);
2074 TREE_ADDRESSABLE (tmp
) = 1;
2075 TREE_NO_WARNING (tmp
) = 1;
2077 /* Issue __atomic_load (&expr, &tmp, SEQ_CST); */
2078 fndecl
= builtin_decl_explicit (BUILT_IN_ATOMIC_LOAD
);
2079 params
->quick_push (expr_addr
);
2080 params
->quick_push (tmp_addr
);
2081 params
->quick_push (seq_cst
);
2082 func_call
= c_build_function_call_vec (loc
, vNULL
, fndecl
, params
, NULL
);
2084 /* EXPR is always read. */
2085 mark_exp_read (exp
.value
);
2087 /* Return tmp which contains the value loaded. */
2088 exp
.value
= build4 (TARGET_EXPR
, nonatomic_type
, tmp
, func_call
,
2089 NULL_TREE
, NULL_TREE
);
2094 /* EXP is an expression of integer type. Apply the integer promotions
2095 to it and return the promoted value. */
2098 perform_integral_promotions (tree exp
)
2100 tree type
= TREE_TYPE (exp
);
2101 enum tree_code code
= TREE_CODE (type
);
2103 gcc_assert (INTEGRAL_TYPE_P (type
));
2105 /* Normally convert enums to int,
2106 but convert wide enums to something wider. */
2107 if (code
== ENUMERAL_TYPE
)
2109 type
= c_common_type_for_size (MAX (TYPE_PRECISION (type
),
2110 TYPE_PRECISION (integer_type_node
)),
2111 ((TYPE_PRECISION (type
)
2112 >= TYPE_PRECISION (integer_type_node
))
2113 && TYPE_UNSIGNED (type
)));
2115 return convert (type
, exp
);
2118 /* ??? This should no longer be needed now bit-fields have their
2120 if (TREE_CODE (exp
) == COMPONENT_REF
2121 && DECL_C_BIT_FIELD (TREE_OPERAND (exp
, 1))
2122 /* If it's thinner than an int, promote it like a
2123 c_promoting_integer_type_p, otherwise leave it alone. */
2124 && compare_tree_int (DECL_SIZE (TREE_OPERAND (exp
, 1)),
2125 TYPE_PRECISION (integer_type_node
)) < 0)
2126 return convert (integer_type_node
, exp
);
2128 if (c_promoting_integer_type_p (type
))
2130 /* Preserve unsignedness if not really getting any wider. */
2131 if (TYPE_UNSIGNED (type
)
2132 && TYPE_PRECISION (type
) == TYPE_PRECISION (integer_type_node
))
2133 return convert (unsigned_type_node
, exp
);
2135 return convert (integer_type_node
, exp
);
2142 /* Perform default promotions for C data used in expressions.
2143 Enumeral types or short or char are converted to int.
2144 In addition, manifest constants symbols are replaced by their values. */
2147 default_conversion (tree exp
)
2150 tree type
= TREE_TYPE (exp
);
2151 enum tree_code code
= TREE_CODE (type
);
2154 mark_exp_read (exp
);
2156 /* Functions and arrays have been converted during parsing. */
2157 gcc_assert (code
!= FUNCTION_TYPE
);
2158 if (code
== ARRAY_TYPE
)
2161 /* Constants can be used directly unless they're not loadable. */
2162 if (TREE_CODE (exp
) == CONST_DECL
)
2163 exp
= DECL_INITIAL (exp
);
2165 /* Strip no-op conversions. */
2167 STRIP_TYPE_NOPS (exp
);
2169 if (TREE_NO_WARNING (orig_exp
))
2170 TREE_NO_WARNING (exp
) = 1;
2172 if (code
== VOID_TYPE
)
2174 error_at (EXPR_LOC_OR_LOC (exp
, input_location
),
2175 "void value not ignored as it ought to be");
2176 return error_mark_node
;
2179 exp
= require_complete_type (EXPR_LOC_OR_LOC (exp
, input_location
), exp
);
2180 if (exp
== error_mark_node
)
2181 return error_mark_node
;
2183 promoted_type
= targetm
.promoted_type (type
);
2185 return convert (promoted_type
, exp
);
2187 if (INTEGRAL_TYPE_P (type
))
2188 return perform_integral_promotions (exp
);
2193 /* Look up COMPONENT in a structure or union TYPE.
2195 If the component name is not found, returns NULL_TREE. Otherwise,
2196 the return value is a TREE_LIST, with each TREE_VALUE a FIELD_DECL
2197 stepping down the chain to the component, which is in the last
2198 TREE_VALUE of the list. Normally the list is of length one, but if
2199 the component is embedded within (nested) anonymous structures or
2200 unions, the list steps down the chain to the component. */
2203 lookup_field (tree type
, tree component
)
2207 /* If TYPE_LANG_SPECIFIC is set, then it is a sorted array of pointers
2208 to the field elements. Use a binary search on this array to quickly
2209 find the element. Otherwise, do a linear search. TYPE_LANG_SPECIFIC
2210 will always be set for structures which have many elements. */
2212 if (TYPE_LANG_SPECIFIC (type
) && TYPE_LANG_SPECIFIC (type
)->s
)
2215 tree
*field_array
= &TYPE_LANG_SPECIFIC (type
)->s
->elts
[0];
2217 field
= TYPE_FIELDS (type
);
2219 top
= TYPE_LANG_SPECIFIC (type
)->s
->len
;
2220 while (top
- bot
> 1)
2222 half
= (top
- bot
+ 1) >> 1;
2223 field
= field_array
[bot
+half
];
2225 if (DECL_NAME (field
) == NULL_TREE
)
2227 /* Step through all anon unions in linear fashion. */
2228 while (DECL_NAME (field_array
[bot
]) == NULL_TREE
)
2230 field
= field_array
[bot
++];
2231 if (RECORD_OR_UNION_TYPE_P (TREE_TYPE (field
)))
2233 tree anon
= lookup_field (TREE_TYPE (field
), component
);
2236 return tree_cons (NULL_TREE
, field
, anon
);
2238 /* The Plan 9 compiler permits referring
2239 directly to an anonymous struct/union field
2240 using a typedef name. */
2241 if (flag_plan9_extensions
2242 && TYPE_NAME (TREE_TYPE (field
)) != NULL_TREE
2243 && (TREE_CODE (TYPE_NAME (TREE_TYPE (field
)))
2245 && (DECL_NAME (TYPE_NAME (TREE_TYPE (field
)))
2251 /* Entire record is only anon unions. */
2255 /* Restart the binary search, with new lower bound. */
2259 if (DECL_NAME (field
) == component
)
2261 if (DECL_NAME (field
) < component
)
2267 if (DECL_NAME (field_array
[bot
]) == component
)
2268 field
= field_array
[bot
];
2269 else if (DECL_NAME (field
) != component
)
2274 for (field
= TYPE_FIELDS (type
); field
; field
= DECL_CHAIN (field
))
2276 if (DECL_NAME (field
) == NULL_TREE
2277 && RECORD_OR_UNION_TYPE_P (TREE_TYPE (field
)))
2279 tree anon
= lookup_field (TREE_TYPE (field
), component
);
2282 return tree_cons (NULL_TREE
, field
, anon
);
2284 /* The Plan 9 compiler permits referring directly to an
2285 anonymous struct/union field using a typedef
2287 if (flag_plan9_extensions
2288 && TYPE_NAME (TREE_TYPE (field
)) != NULL_TREE
2289 && TREE_CODE (TYPE_NAME (TREE_TYPE (field
))) == TYPE_DECL
2290 && (DECL_NAME (TYPE_NAME (TREE_TYPE (field
)))
2295 if (DECL_NAME (field
) == component
)
2299 if (field
== NULL_TREE
)
2303 return tree_cons (NULL_TREE
, field
, NULL_TREE
);
2306 /* Recursively append candidate IDENTIFIER_NODEs to CANDIDATES. */
2309 lookup_field_fuzzy_find_candidates (tree type
, tree component
,
2310 vec
<tree
> *candidates
)
2313 for (field
= TYPE_FIELDS (type
); field
; field
= DECL_CHAIN (field
))
2315 if (DECL_NAME (field
) == NULL_TREE
2316 && RECORD_OR_UNION_TYPE_P (TREE_TYPE (field
)))
2317 lookup_field_fuzzy_find_candidates (TREE_TYPE (field
), component
,
2320 if (DECL_NAME (field
))
2321 candidates
->safe_push (DECL_NAME (field
));
2325 /* Like "lookup_field", but find the closest matching IDENTIFIER_NODE,
2326 rather than returning a TREE_LIST for an exact match. */
2329 lookup_field_fuzzy (tree type
, tree component
)
2331 gcc_assert (TREE_CODE (component
) == IDENTIFIER_NODE
);
2333 /* First, gather a list of candidates. */
2334 auto_vec
<tree
> candidates
;
2336 lookup_field_fuzzy_find_candidates (type
, component
,
2339 return find_closest_identifier (component
, &candidates
);
2342 /* Support function for build_component_ref's error-handling.
2344 Given DATUM_TYPE, and "DATUM.COMPONENT", where DATUM is *not* a
2345 struct or union, should we suggest "DATUM->COMPONENT" as a hint? */
2348 should_suggest_deref_p (tree datum_type
)
2350 /* We don't do it for Objective-C, since Objective-C 2.0 dot-syntax
2351 allows "." for ptrs; we could be handling a failed attempt
2352 to access a property. */
2353 if (c_dialect_objc ())
2356 /* Only suggest it for pointers... */
2357 if (TREE_CODE (datum_type
) != POINTER_TYPE
)
2360 /* ...to structs/unions. */
2361 tree underlying_type
= TREE_TYPE (datum_type
);
2362 enum tree_code code
= TREE_CODE (underlying_type
);
2363 if (code
== RECORD_TYPE
|| code
== UNION_TYPE
)
2369 /* Make an expression to refer to the COMPONENT field of structure or
2370 union value DATUM. COMPONENT is an IDENTIFIER_NODE. LOC is the
2371 location of the COMPONENT_REF. COMPONENT_LOC is the location
2375 build_component_ref (location_t loc
, tree datum
, tree component
,
2376 location_t component_loc
)
2378 tree type
= TREE_TYPE (datum
);
2379 enum tree_code code
= TREE_CODE (type
);
2382 bool datum_lvalue
= lvalue_p (datum
);
2384 if (!objc_is_public (datum
, component
))
2385 return error_mark_node
;
2387 /* Detect Objective-C property syntax object.property. */
2388 if (c_dialect_objc ()
2389 && (ref
= objc_maybe_build_component_ref (datum
, component
)))
2392 /* See if there is a field or component with name COMPONENT. */
2394 if (code
== RECORD_TYPE
|| code
== UNION_TYPE
)
2396 if (!COMPLETE_TYPE_P (type
))
2398 c_incomplete_type_error (loc
, NULL_TREE
, type
);
2399 return error_mark_node
;
2402 field
= lookup_field (type
, component
);
2406 tree guessed_id
= lookup_field_fuzzy (type
, component
);
2409 /* Attempt to provide a fixit replacement hint, if
2410 we have a valid range for the component. */
2411 location_t reported_loc
2412 = (component_loc
!= UNKNOWN_LOCATION
) ? component_loc
: loc
;
2413 gcc_rich_location
rich_loc (reported_loc
);
2414 if (component_loc
!= UNKNOWN_LOCATION
)
2415 rich_loc
.add_fixit_misspelled_id (component_loc
, guessed_id
);
2416 error_at (&rich_loc
,
2417 "%qT has no member named %qE; did you mean %qE?",
2418 type
, component
, guessed_id
);
2421 error_at (loc
, "%qT has no member named %qE", type
, component
);
2422 return error_mark_node
;
2425 /* Accessing elements of atomic structures or unions is undefined
2426 behavior (C11 6.5.2.3#5). */
2427 if (TYPE_ATOMIC (type
) && c_inhibit_evaluation_warnings
== 0)
2429 if (code
== RECORD_TYPE
)
2430 warning_at (loc
, 0, "accessing a member %qE of an atomic "
2431 "structure %qE", component
, datum
);
2433 warning_at (loc
, 0, "accessing a member %qE of an atomic "
2434 "union %qE", component
, datum
);
2437 /* Chain the COMPONENT_REFs if necessary down to the FIELD.
2438 This might be better solved in future the way the C++ front
2439 end does it - by giving the anonymous entities each a
2440 separate name and type, and then have build_component_ref
2441 recursively call itself. We can't do that here. */
2444 tree subdatum
= TREE_VALUE (field
);
2447 bool use_datum_quals
;
2449 if (TREE_TYPE (subdatum
) == error_mark_node
)
2450 return error_mark_node
;
2452 /* If this is an rvalue, it does not have qualifiers in C
2453 standard terms and we must avoid propagating such
2454 qualifiers down to a non-lvalue array that is then
2455 converted to a pointer. */
2456 use_datum_quals
= (datum_lvalue
2457 || TREE_CODE (TREE_TYPE (subdatum
)) != ARRAY_TYPE
);
2459 quals
= TYPE_QUALS (strip_array_types (TREE_TYPE (subdatum
)));
2460 if (use_datum_quals
)
2461 quals
|= TYPE_QUALS (TREE_TYPE (datum
));
2462 subtype
= c_build_qualified_type (TREE_TYPE (subdatum
), quals
);
2464 ref
= build3 (COMPONENT_REF
, subtype
, datum
, subdatum
,
2466 SET_EXPR_LOCATION (ref
, loc
);
2467 if (TREE_READONLY (subdatum
)
2468 || (use_datum_quals
&& TREE_READONLY (datum
)))
2469 TREE_READONLY (ref
) = 1;
2470 if (TREE_THIS_VOLATILE (subdatum
)
2471 || (use_datum_quals
&& TREE_THIS_VOLATILE (datum
)))
2472 TREE_THIS_VOLATILE (ref
) = 1;
2474 if (TREE_DEPRECATED (subdatum
))
2475 warn_deprecated_use (subdatum
, NULL_TREE
);
2479 field
= TREE_CHAIN (field
);
2485 else if (should_suggest_deref_p (type
))
2487 /* Special-case the error message for "ptr.field" for the case
2488 where the user has confused "." vs "->". */
2489 rich_location
richloc (line_table
, loc
);
2490 /* "loc" should be the "." token. */
2491 richloc
.add_fixit_replace ("->");
2493 "%qE is a pointer; did you mean to use %<->%>?",
2495 return error_mark_node
;
2497 else if (code
!= ERROR_MARK
)
2499 "request for member %qE in something not a structure or union",
2502 return error_mark_node
;
2505 /* Given an expression PTR for a pointer, return an expression
2506 for the value pointed to.
2507 ERRORSTRING is the name of the operator to appear in error messages.
2509 LOC is the location to use for the generated tree. */
2512 build_indirect_ref (location_t loc
, tree ptr
, ref_operator errstring
)
2514 tree pointer
= default_conversion (ptr
);
2515 tree type
= TREE_TYPE (pointer
);
2518 if (TREE_CODE (type
) == POINTER_TYPE
)
2520 if (CONVERT_EXPR_P (pointer
)
2521 || TREE_CODE (pointer
) == VIEW_CONVERT_EXPR
)
2523 /* If a warning is issued, mark it to avoid duplicates from
2524 the backend. This only needs to be done at
2525 warn_strict_aliasing > 2. */
2526 if (warn_strict_aliasing
> 2)
2527 if (strict_aliasing_warning (EXPR_LOCATION (pointer
),
2528 type
, TREE_OPERAND (pointer
, 0)))
2529 TREE_NO_WARNING (pointer
) = 1;
2532 if (TREE_CODE (pointer
) == ADDR_EXPR
2533 && (TREE_TYPE (TREE_OPERAND (pointer
, 0))
2534 == TREE_TYPE (type
)))
2536 ref
= TREE_OPERAND (pointer
, 0);
2537 protected_set_expr_location (ref
, loc
);
2542 tree t
= TREE_TYPE (type
);
2544 ref
= build1 (INDIRECT_REF
, t
, pointer
);
2546 if (!COMPLETE_OR_VOID_TYPE_P (t
) && TREE_CODE (t
) != ARRAY_TYPE
)
2548 if (!C_TYPE_ERROR_REPORTED (TREE_TYPE (ptr
)))
2550 error_at (loc
, "dereferencing pointer to incomplete type "
2552 C_TYPE_ERROR_REPORTED (TREE_TYPE (ptr
)) = 1;
2554 return error_mark_node
;
2556 if (VOID_TYPE_P (t
) && c_inhibit_evaluation_warnings
== 0)
2557 warning_at (loc
, 0, "dereferencing %<void *%> pointer");
2559 /* We *must* set TREE_READONLY when dereferencing a pointer to const,
2560 so that we get the proper error message if the result is used
2561 to assign to. Also, &* is supposed to be a no-op.
2562 And ANSI C seems to specify that the type of the result
2563 should be the const type. */
2564 /* A de-reference of a pointer to const is not a const. It is valid
2565 to change it via some other pointer. */
2566 TREE_READONLY (ref
) = TYPE_READONLY (t
);
2567 TREE_SIDE_EFFECTS (ref
)
2568 = TYPE_VOLATILE (t
) || TREE_SIDE_EFFECTS (pointer
);
2569 TREE_THIS_VOLATILE (ref
) = TYPE_VOLATILE (t
);
2570 protected_set_expr_location (ref
, loc
);
2574 else if (TREE_CODE (pointer
) != ERROR_MARK
)
2575 invalid_indirection_error (loc
, type
, errstring
);
2577 return error_mark_node
;
2580 /* This handles expressions of the form "a[i]", which denotes
2583 This is logically equivalent in C to *(a+i), but we may do it differently.
2584 If A is a variable or a member, we generate a primitive ARRAY_REF.
2585 This avoids forcing the array out of registers, and can work on
2586 arrays that are not lvalues (for example, members of structures returned
2589 For vector types, allow vector[i] but not i[vector], and create
2590 *(((type*)&vectortype) + i) for the expression.
2592 LOC is the location to use for the returned expression. */
2595 build_array_ref (location_t loc
, tree array
, tree index
)
2598 bool swapped
= false;
2599 if (TREE_TYPE (array
) == error_mark_node
2600 || TREE_TYPE (index
) == error_mark_node
)
2601 return error_mark_node
;
2603 if (TREE_CODE (TREE_TYPE (array
)) != ARRAY_TYPE
2604 && TREE_CODE (TREE_TYPE (array
)) != POINTER_TYPE
2605 /* Allow vector[index] but not index[vector]. */
2606 && !VECTOR_TYPE_P (TREE_TYPE (array
)))
2608 if (TREE_CODE (TREE_TYPE (index
)) != ARRAY_TYPE
2609 && TREE_CODE (TREE_TYPE (index
)) != POINTER_TYPE
)
2612 "subscripted value is neither array nor pointer nor vector");
2614 return error_mark_node
;
2616 std::swap (array
, index
);
2620 if (!INTEGRAL_TYPE_P (TREE_TYPE (index
)))
2622 error_at (loc
, "array subscript is not an integer");
2623 return error_mark_node
;
2626 if (TREE_CODE (TREE_TYPE (TREE_TYPE (array
))) == FUNCTION_TYPE
)
2628 error_at (loc
, "subscripted value is pointer to function");
2629 return error_mark_node
;
2632 /* ??? Existing practice has been to warn only when the char
2633 index is syntactically the index, not for char[array]. */
2635 warn_array_subscript_with_type_char (loc
, index
);
2637 /* Apply default promotions *after* noticing character types. */
2638 index
= default_conversion (index
);
2639 if (index
== error_mark_node
)
2640 return error_mark_node
;
2642 gcc_assert (TREE_CODE (TREE_TYPE (index
)) == INTEGER_TYPE
);
2644 bool was_vector
= VECTOR_TYPE_P (TREE_TYPE (array
));
2645 bool non_lvalue
= convert_vector_to_array_for_subscript (loc
, &array
, index
);
2647 if (TREE_CODE (TREE_TYPE (array
)) == ARRAY_TYPE
)
2651 /* An array that is indexed by a non-constant
2652 cannot be stored in a register; we must be able to do
2653 address arithmetic on its address.
2654 Likewise an array of elements of variable size. */
2655 if (TREE_CODE (index
) != INTEGER_CST
2656 || (COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (array
)))
2657 && TREE_CODE (TYPE_SIZE (TREE_TYPE (TREE_TYPE (array
)))) != INTEGER_CST
))
2659 if (!c_mark_addressable (array
, true))
2660 return error_mark_node
;
2662 /* An array that is indexed by a constant value which is not within
2663 the array bounds cannot be stored in a register either; because we
2664 would get a crash in store_bit_field/extract_bit_field when trying
2665 to access a non-existent part of the register. */
2666 if (TREE_CODE (index
) == INTEGER_CST
2667 && TYPE_DOMAIN (TREE_TYPE (array
))
2668 && !int_fits_type_p (index
, TYPE_DOMAIN (TREE_TYPE (array
))))
2670 if (!c_mark_addressable (array
))
2671 return error_mark_node
;
2674 if ((pedantic
|| warn_c90_c99_compat
)
2678 while (TREE_CODE (foo
) == COMPONENT_REF
)
2679 foo
= TREE_OPERAND (foo
, 0);
2680 if (VAR_P (foo
) && C_DECL_REGISTER (foo
))
2681 pedwarn (loc
, OPT_Wpedantic
,
2682 "ISO C forbids subscripting %<register%> array");
2683 else if (!lvalue_p (foo
))
2684 pedwarn_c90 (loc
, OPT_Wpedantic
,
2685 "ISO C90 forbids subscripting non-lvalue "
2689 type
= TREE_TYPE (TREE_TYPE (array
));
2690 rval
= build4 (ARRAY_REF
, type
, array
, index
, NULL_TREE
, NULL_TREE
);
2691 /* Array ref is const/volatile if the array elements are
2692 or if the array is. */
2693 TREE_READONLY (rval
)
2694 |= (TYPE_READONLY (TREE_TYPE (TREE_TYPE (array
)))
2695 | TREE_READONLY (array
));
2696 TREE_SIDE_EFFECTS (rval
)
2697 |= (TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (array
)))
2698 | TREE_SIDE_EFFECTS (array
));
2699 TREE_THIS_VOLATILE (rval
)
2700 |= (TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (array
)))
2701 /* This was added by rms on 16 Nov 91.
2702 It fixes vol struct foo *a; a->elts[1]
2703 in an inline function.
2704 Hope it doesn't break something else. */
2705 | TREE_THIS_VOLATILE (array
));
2706 ret
= require_complete_type (loc
, rval
);
2707 protected_set_expr_location (ret
, loc
);
2709 ret
= non_lvalue_loc (loc
, ret
);
2714 tree ar
= default_conversion (array
);
2716 if (ar
== error_mark_node
)
2719 gcc_assert (TREE_CODE (TREE_TYPE (ar
)) == POINTER_TYPE
);
2720 gcc_assert (TREE_CODE (TREE_TYPE (TREE_TYPE (ar
))) != FUNCTION_TYPE
);
2722 ret
= build_indirect_ref (loc
, build_binary_op (loc
, PLUS_EXPR
, ar
,
2726 ret
= non_lvalue_loc (loc
, ret
);
2731 /* Build an external reference to identifier ID. FUN indicates
2732 whether this will be used for a function call. LOC is the source
2733 location of the identifier. This sets *TYPE to the type of the
2734 identifier, which is not the same as the type of the returned value
2735 for CONST_DECLs defined as enum constants. If the type of the
2736 identifier is not available, *TYPE is set to NULL. */
2738 build_external_ref (location_t loc
, tree id
, bool fun
, tree
*type
)
2741 tree decl
= lookup_name (id
);
2743 /* In Objective-C, an instance variable (ivar) may be preferred to
2744 whatever lookup_name() found. */
2745 decl
= objc_lookup_ivar (decl
, id
);
2748 if (decl
&& decl
!= error_mark_node
)
2751 *type
= TREE_TYPE (ref
);
2754 /* Implicit function declaration. */
2755 ref
= implicitly_declare (loc
, id
);
2756 else if (decl
== error_mark_node
)
2757 /* Don't complain about something that's already been
2758 complained about. */
2759 return error_mark_node
;
2762 undeclared_variable (loc
, id
);
2763 return error_mark_node
;
2766 if (TREE_TYPE (ref
) == error_mark_node
)
2767 return error_mark_node
;
2769 if (TREE_DEPRECATED (ref
))
2770 warn_deprecated_use (ref
, NULL_TREE
);
2772 /* Recursive call does not count as usage. */
2773 if (ref
!= current_function_decl
)
2775 TREE_USED (ref
) = 1;
2778 if (TREE_CODE (ref
) == FUNCTION_DECL
&& !in_alignof
)
2780 if (!in_sizeof
&& !in_typeof
)
2781 C_DECL_USED (ref
) = 1;
2782 else if (DECL_INITIAL (ref
) == NULL_TREE
2783 && DECL_EXTERNAL (ref
)
2784 && !TREE_PUBLIC (ref
))
2785 record_maybe_used_decl (ref
);
2788 if (TREE_CODE (ref
) == CONST_DECL
)
2790 used_types_insert (TREE_TYPE (ref
));
2793 && TREE_CODE (TREE_TYPE (ref
)) == ENUMERAL_TYPE
2794 && C_TYPE_DEFINED_IN_STRUCT (TREE_TYPE (ref
)))
2796 warning_at (loc
, OPT_Wc___compat
,
2797 ("enum constant defined in struct or union "
2798 "is not visible in C++"));
2799 inform (DECL_SOURCE_LOCATION (ref
), "enum constant defined here");
2802 ref
= DECL_INITIAL (ref
);
2803 TREE_CONSTANT (ref
) = 1;
2805 else if (current_function_decl
!= NULL_TREE
2806 && !DECL_FILE_SCOPE_P (current_function_decl
)
2807 && (VAR_OR_FUNCTION_DECL_P (ref
)
2808 || TREE_CODE (ref
) == PARM_DECL
))
2810 tree context
= decl_function_context (ref
);
2812 if (context
!= NULL_TREE
&& context
!= current_function_decl
)
2813 DECL_NONLOCAL (ref
) = 1;
2815 /* C99 6.7.4p3: An inline definition of a function with external
2816 linkage ... shall not contain a reference to an identifier with
2817 internal linkage. */
2818 else if (current_function_decl
!= NULL_TREE
2819 && DECL_DECLARED_INLINE_P (current_function_decl
)
2820 && DECL_EXTERNAL (current_function_decl
)
2821 && VAR_OR_FUNCTION_DECL_P (ref
)
2822 && (!VAR_P (ref
) || TREE_STATIC (ref
))
2823 && ! TREE_PUBLIC (ref
)
2824 && DECL_CONTEXT (ref
) != current_function_decl
)
2825 record_inline_static (loc
, current_function_decl
, ref
,
2831 /* Record details of decls possibly used inside sizeof or typeof. */
2832 struct maybe_used_decl
2836 /* The level seen at (in_sizeof + in_typeof). */
2838 /* The next one at this level or above, or NULL. */
2839 struct maybe_used_decl
*next
;
2842 static struct maybe_used_decl
*maybe_used_decls
;
2844 /* Record that DECL, an undefined static function reference seen
2845 inside sizeof or typeof, might be used if the operand of sizeof is
2846 a VLA type or the operand of typeof is a variably modified
2850 record_maybe_used_decl (tree decl
)
2852 struct maybe_used_decl
*t
= XOBNEW (&parser_obstack
, struct maybe_used_decl
);
2854 t
->level
= in_sizeof
+ in_typeof
;
2855 t
->next
= maybe_used_decls
;
2856 maybe_used_decls
= t
;
2859 /* Pop the stack of decls possibly used inside sizeof or typeof. If
2860 USED is false, just discard them. If it is true, mark them used
2861 (if no longer inside sizeof or typeof) or move them to the next
2862 level up (if still inside sizeof or typeof). */
2865 pop_maybe_used (bool used
)
2867 struct maybe_used_decl
*p
= maybe_used_decls
;
2868 int cur_level
= in_sizeof
+ in_typeof
;
2869 while (p
&& p
->level
> cur_level
)
2874 C_DECL_USED (p
->decl
) = 1;
2876 p
->level
= cur_level
;
2880 if (!used
|| cur_level
== 0)
2881 maybe_used_decls
= p
;
2884 /* Return the result of sizeof applied to EXPR. */
2887 c_expr_sizeof_expr (location_t loc
, struct c_expr expr
)
2890 if (expr
.value
== error_mark_node
)
2892 ret
.value
= error_mark_node
;
2893 ret
.original_code
= ERROR_MARK
;
2894 ret
.original_type
= NULL
;
2895 pop_maybe_used (false);
2899 bool expr_const_operands
= true;
2901 if (TREE_CODE (expr
.value
) == PARM_DECL
2902 && C_ARRAY_PARAMETER (expr
.value
))
2904 if (warning_at (loc
, OPT_Wsizeof_array_argument
,
2905 "%<sizeof%> on array function parameter %qE will "
2906 "return size of %qT", expr
.value
,
2907 TREE_TYPE (expr
.value
)))
2908 inform (DECL_SOURCE_LOCATION (expr
.value
), "declared here");
2910 tree folded_expr
= c_fully_fold (expr
.value
, require_constant_value
,
2911 &expr_const_operands
);
2912 ret
.value
= c_sizeof (loc
, TREE_TYPE (folded_expr
));
2913 c_last_sizeof_arg
= expr
.value
;
2914 c_last_sizeof_loc
= loc
;
2915 ret
.original_code
= SIZEOF_EXPR
;
2916 ret
.original_type
= NULL
;
2917 if (c_vla_type_p (TREE_TYPE (folded_expr
)))
2919 /* sizeof is evaluated when given a vla (C99 6.5.3.4p2). */
2920 ret
.value
= build2 (C_MAYBE_CONST_EXPR
, TREE_TYPE (ret
.value
),
2921 folded_expr
, ret
.value
);
2922 C_MAYBE_CONST_EXPR_NON_CONST (ret
.value
) = !expr_const_operands
;
2923 SET_EXPR_LOCATION (ret
.value
, loc
);
2925 pop_maybe_used (C_TYPE_VARIABLE_SIZE (TREE_TYPE (folded_expr
)));
2930 /* Return the result of sizeof applied to T, a structure for the type
2931 name passed to sizeof (rather than the type itself). LOC is the
2932 location of the original expression. */
2935 c_expr_sizeof_type (location_t loc
, struct c_type_name
*t
)
2939 tree type_expr
= NULL_TREE
;
2940 bool type_expr_const
= true;
2941 type
= groktypename (t
, &type_expr
, &type_expr_const
);
2942 ret
.value
= c_sizeof (loc
, type
);
2943 c_last_sizeof_arg
= type
;
2944 c_last_sizeof_loc
= loc
;
2945 ret
.original_code
= SIZEOF_EXPR
;
2946 ret
.original_type
= NULL
;
2947 if ((type_expr
|| TREE_CODE (ret
.value
) == INTEGER_CST
)
2948 && c_vla_type_p (type
))
2950 /* If the type is a [*] array, it is a VLA but is represented as
2951 having a size of zero. In such a case we must ensure that
2952 the result of sizeof does not get folded to a constant by
2953 c_fully_fold, because if the size is evaluated the result is
2954 not constant and so constraints on zero or negative size
2955 arrays must not be applied when this sizeof call is inside
2956 another array declarator. */
2958 type_expr
= integer_zero_node
;
2959 ret
.value
= build2 (C_MAYBE_CONST_EXPR
, TREE_TYPE (ret
.value
),
2960 type_expr
, ret
.value
);
2961 C_MAYBE_CONST_EXPR_NON_CONST (ret
.value
) = !type_expr_const
;
2963 pop_maybe_used (type
!= error_mark_node
2964 ? C_TYPE_VARIABLE_SIZE (type
) : false);
2968 /* Build a function call to function FUNCTION with parameters PARAMS.
2969 The function call is at LOC.
2970 PARAMS is a list--a chain of TREE_LIST nodes--in which the
2971 TREE_VALUE of each node is a parameter-expression.
2972 FUNCTION's data type may be a function type or a pointer-to-function. */
2975 build_function_call (location_t loc
, tree function
, tree params
)
2977 vec
<tree
, va_gc
> *v
;
2980 vec_alloc (v
, list_length (params
));
2981 for (; params
; params
= TREE_CHAIN (params
))
2982 v
->quick_push (TREE_VALUE (params
));
2983 ret
= c_build_function_call_vec (loc
, vNULL
, function
, v
, NULL
);
2988 /* Give a note about the location of the declaration of DECL. */
2991 inform_declaration (tree decl
)
2993 if (decl
&& (TREE_CODE (decl
) != FUNCTION_DECL
|| !DECL_IS_BUILTIN (decl
)))
2994 inform (DECL_SOURCE_LOCATION (decl
), "declared here");
2997 /* Build a function call to function FUNCTION with parameters PARAMS.
2998 ORIGTYPES, if not NULL, is a vector of types; each element is
2999 either NULL or the original type of the corresponding element in
3000 PARAMS. The original type may differ from TREE_TYPE of the
3001 parameter for enums. FUNCTION's data type may be a function type
3002 or pointer-to-function. This function changes the elements of
3006 build_function_call_vec (location_t loc
, vec
<location_t
> arg_loc
,
3007 tree function
, vec
<tree
, va_gc
> *params
,
3008 vec
<tree
, va_gc
> *origtypes
)
3010 tree fntype
, fundecl
= NULL_TREE
;
3011 tree name
= NULL_TREE
, result
;
3017 /* Strip NON_LVALUE_EXPRs, etc., since we aren't using as an lvalue. */
3018 STRIP_TYPE_NOPS (function
);
3020 /* Convert anything with function type to a pointer-to-function. */
3021 if (TREE_CODE (function
) == FUNCTION_DECL
)
3023 name
= DECL_NAME (function
);
3026 tm_malloc_replacement (function
);
3028 /* Atomic functions have type checking/casting already done. They are
3029 often rewritten and don't match the original parameter list. */
3030 if (name
&& !strncmp (IDENTIFIER_POINTER (name
), "__atomic_", 9))
3033 if (TREE_CODE (TREE_TYPE (function
)) == FUNCTION_TYPE
)
3034 function
= function_to_pointer_conversion (loc
, function
);
3036 /* For Objective-C, convert any calls via a cast to OBJC_TYPE_REF
3037 expressions, like those used for ObjC messenger dispatches. */
3038 if (params
&& !params
->is_empty ())
3039 function
= objc_rewrite_function_call (function
, (*params
)[0]);
3041 function
= c_fully_fold (function
, false, NULL
);
3043 fntype
= TREE_TYPE (function
);
3045 if (TREE_CODE (fntype
) == ERROR_MARK
)
3046 return error_mark_node
;
3048 if (!(TREE_CODE (fntype
) == POINTER_TYPE
3049 && TREE_CODE (TREE_TYPE (fntype
)) == FUNCTION_TYPE
))
3051 if (!flag_diagnostics_show_caret
)
3053 "called object %qE is not a function or function pointer",
3055 else if (DECL_P (function
))
3058 "called object %qD is not a function or function pointer",
3060 inform_declaration (function
);
3064 "called object is not a function or function pointer");
3065 return error_mark_node
;
3068 if (fundecl
&& TREE_THIS_VOLATILE (fundecl
))
3069 current_function_returns_abnormally
= 1;
3071 /* fntype now gets the type of function pointed to. */
3072 fntype
= TREE_TYPE (fntype
);
3074 /* Convert the parameters to the types declared in the
3075 function prototype, or apply default promotions. */
3077 nargs
= convert_arguments (loc
, arg_loc
, TYPE_ARG_TYPES (fntype
), params
,
3078 origtypes
, function
, fundecl
);
3080 return error_mark_node
;
3082 /* Check that the function is called through a compatible prototype.
3083 If it is not, warn. */
3084 if (CONVERT_EXPR_P (function
)
3085 && TREE_CODE (tem
= TREE_OPERAND (function
, 0)) == ADDR_EXPR
3086 && TREE_CODE (tem
= TREE_OPERAND (tem
, 0)) == FUNCTION_DECL
3087 && !comptypes (fntype
, TREE_TYPE (tem
)))
3089 tree return_type
= TREE_TYPE (fntype
);
3091 /* This situation leads to run-time undefined behavior. We can't,
3092 therefore, simply error unless we can prove that all possible
3093 executions of the program must execute the code. */
3094 warning_at (loc
, 0, "function called through a non-compatible type");
3096 if (VOID_TYPE_P (return_type
)
3097 && TYPE_QUALS (return_type
) != TYPE_UNQUALIFIED
)
3099 "function with qualified void return type called");
3102 argarray
= vec_safe_address (params
);
3104 /* Check that arguments to builtin functions match the expectations. */
3106 && DECL_BUILT_IN (fundecl
)
3107 && DECL_BUILT_IN_CLASS (fundecl
) == BUILT_IN_NORMAL
3108 && !check_builtin_function_arguments (loc
, arg_loc
, fundecl
, nargs
,
3110 return error_mark_node
;
3112 /* Check that the arguments to the function are valid. */
3113 bool warned_p
= check_function_arguments (loc
, fundecl
, fntype
,
3114 nargs
, argarray
, &arg_loc
);
3116 if (name
!= NULL_TREE
3117 && !strncmp (IDENTIFIER_POINTER (name
), "__builtin_", 10))
3119 if (require_constant_value
)
3121 = fold_build_call_array_initializer_loc (loc
, TREE_TYPE (fntype
),
3122 function
, nargs
, argarray
);
3124 result
= fold_build_call_array_loc (loc
, TREE_TYPE (fntype
),
3125 function
, nargs
, argarray
);
3126 if (TREE_CODE (result
) == NOP_EXPR
3127 && TREE_CODE (TREE_OPERAND (result
, 0)) == INTEGER_CST
)
3128 STRIP_TYPE_NOPS (result
);
3131 result
= build_call_array_loc (loc
, TREE_TYPE (fntype
),
3132 function
, nargs
, argarray
);
3133 /* If -Wnonnull warning has been diagnosed, avoid diagnosing it again
3135 if (warned_p
&& TREE_CODE (result
) == CALL_EXPR
)
3136 TREE_NO_WARNING (result
) = 1;
3138 /* In this improbable scenario, a nested function returns a VM type.
3139 Create a TARGET_EXPR so that the call always has a LHS, much as
3140 what the C++ FE does for functions returning non-PODs. */
3141 if (variably_modified_type_p (TREE_TYPE (fntype
), NULL_TREE
))
3143 tree tmp
= create_tmp_var_raw (TREE_TYPE (fntype
));
3144 result
= build4 (TARGET_EXPR
, TREE_TYPE (fntype
), tmp
, result
,
3145 NULL_TREE
, NULL_TREE
);
3148 if (VOID_TYPE_P (TREE_TYPE (result
)))
3150 if (TYPE_QUALS (TREE_TYPE (result
)) != TYPE_UNQUALIFIED
)
3152 "function with qualified void return type called");
3155 return require_complete_type (loc
, result
);
3158 /* Like build_function_call_vec, but call also resolve_overloaded_builtin. */
3161 c_build_function_call_vec (location_t loc
, vec
<location_t
> arg_loc
,
3162 tree function
, vec
<tree
, va_gc
> *params
,
3163 vec
<tree
, va_gc
> *origtypes
)
3165 /* Strip NON_LVALUE_EXPRs, etc., since we aren't using as an lvalue. */
3166 STRIP_TYPE_NOPS (function
);
3168 /* Convert anything with function type to a pointer-to-function. */
3169 if (TREE_CODE (function
) == FUNCTION_DECL
)
3171 /* Implement type-directed function overloading for builtins.
3172 resolve_overloaded_builtin and targetm.resolve_overloaded_builtin
3173 handle all the type checking. The result is a complete expression
3174 that implements this function call. */
3175 tree tem
= resolve_overloaded_builtin (loc
, function
, params
);
3179 return build_function_call_vec (loc
, arg_loc
, function
, params
, origtypes
);
3182 /* Convert the argument expressions in the vector VALUES
3183 to the types in the list TYPELIST.
3185 If TYPELIST is exhausted, or when an element has NULL as its type,
3186 perform the default conversions.
3188 ORIGTYPES is the original types of the expressions in VALUES. This
3189 holds the type of enum values which have been converted to integral
3190 types. It may be NULL.
3192 FUNCTION is a tree for the called function. It is used only for
3193 error messages, where it is formatted with %qE.
3195 This is also where warnings about wrong number of args are generated.
3197 ARG_LOC are locations of function arguments (if any).
3199 Returns the actual number of arguments processed (which may be less
3200 than the length of VALUES in some error situations), or -1 on
3204 convert_arguments (location_t loc
, vec
<location_t
> arg_loc
, tree typelist
,
3205 vec
<tree
, va_gc
> *values
, vec
<tree
, va_gc
> *origtypes
,
3206 tree function
, tree fundecl
)
3209 unsigned int parmnum
;
3210 bool error_args
= false;
3211 const bool type_generic
= fundecl
3212 && lookup_attribute ("type generic", TYPE_ATTRIBUTES (TREE_TYPE (fundecl
)));
3213 bool type_generic_remove_excess_precision
= false;
3214 bool type_generic_overflow_p
= false;
3217 /* Change pointer to function to the function itself for
3219 if (TREE_CODE (function
) == ADDR_EXPR
3220 && TREE_CODE (TREE_OPERAND (function
, 0)) == FUNCTION_DECL
)
3221 function
= TREE_OPERAND (function
, 0);
3223 /* Handle an ObjC selector specially for diagnostics. */
3224 selector
= objc_message_selector ();
3226 /* For type-generic built-in functions, determine whether excess
3227 precision should be removed (classification) or not
3230 && DECL_BUILT_IN (fundecl
)
3231 && DECL_BUILT_IN_CLASS (fundecl
) == BUILT_IN_NORMAL
)
3233 switch (DECL_FUNCTION_CODE (fundecl
))
3235 case BUILT_IN_ISFINITE
:
3236 case BUILT_IN_ISINF
:
3237 case BUILT_IN_ISINF_SIGN
:
3238 case BUILT_IN_ISNAN
:
3239 case BUILT_IN_ISNORMAL
:
3240 case BUILT_IN_FPCLASSIFY
:
3241 type_generic_remove_excess_precision
= true;
3244 case BUILT_IN_ADD_OVERFLOW_P
:
3245 case BUILT_IN_SUB_OVERFLOW_P
:
3246 case BUILT_IN_MUL_OVERFLOW_P
:
3247 /* The last argument of these type-generic builtins
3248 should not be promoted. */
3249 type_generic_overflow_p
= true;
3257 /* Scan the given expressions and types, producing individual
3258 converted arguments. */
3260 for (typetail
= typelist
, parmnum
= 0;
3261 values
&& values
->iterate (parmnum
, &val
);
3264 tree type
= typetail
? TREE_VALUE (typetail
) : 0;
3265 tree valtype
= TREE_TYPE (val
);
3266 tree rname
= function
;
3267 int argnum
= parmnum
+ 1;
3268 const char *invalid_func_diag
;
3269 bool excess_precision
= false;
3272 /* Some __atomic_* builtins have additional hidden argument at
3275 = !arg_loc
.is_empty () && values
->length () == arg_loc
.length ()
3276 ? expansion_point_location_if_in_system_header (arg_loc
[parmnum
])
3279 if (type
== void_type_node
)
3282 error_at (loc
, "too many arguments to method %qE", selector
);
3284 error_at (loc
, "too many arguments to function %qE", function
);
3285 inform_declaration (fundecl
);
3286 return error_args
? -1 : (int) parmnum
;
3289 if (selector
&& argnum
> 2)
3295 npc
= null_pointer_constant_p (val
);
3297 /* If there is excess precision and a prototype, convert once to
3298 the required type rather than converting via the semantic
3299 type. Likewise without a prototype a float value represented
3300 as long double should be converted once to double. But for
3301 type-generic classification functions excess precision must
3303 if (TREE_CODE (val
) == EXCESS_PRECISION_EXPR
3304 && (type
|| !type_generic
|| !type_generic_remove_excess_precision
))
3306 val
= TREE_OPERAND (val
, 0);
3307 excess_precision
= true;
3309 val
= c_fully_fold (val
, false, NULL
);
3310 STRIP_TYPE_NOPS (val
);
3312 val
= require_complete_type (ploc
, val
);
3314 /* Some floating-point arguments must be promoted to double when
3315 no type is specified by a prototype. This applies to
3316 arguments of type float, and to architecture-specific types
3317 (ARM __fp16), but not to _FloatN or _FloatNx types. */
3318 bool promote_float_arg
= false;
3319 if (type
== NULL_TREE
3320 && TREE_CODE (valtype
) == REAL_TYPE
3321 && (TYPE_PRECISION (valtype
)
3322 <= TYPE_PRECISION (double_type_node
))
3323 && TYPE_MAIN_VARIANT (valtype
) != double_type_node
3324 && TYPE_MAIN_VARIANT (valtype
) != long_double_type_node
3325 && !DECIMAL_FLOAT_MODE_P (TYPE_MODE (valtype
)))
3327 /* Promote this argument, unless it has a _FloatN or
3329 promote_float_arg
= true;
3330 for (int i
= 0; i
< NUM_FLOATN_NX_TYPES
; i
++)
3331 if (TYPE_MAIN_VARIANT (valtype
) == FLOATN_NX_TYPE_NODE (i
))
3333 promote_float_arg
= false;
3338 if (type
!= NULL_TREE
)
3340 /* Formal parm type is specified by a function prototype. */
3342 if (type
== error_mark_node
|| !COMPLETE_TYPE_P (type
))
3344 error_at (ploc
, "type of formal parameter %d is incomplete",
3352 /* Optionally warn about conversions that
3353 differ from the default conversions. */
3354 if (warn_traditional_conversion
|| warn_traditional
)
3356 unsigned int formal_prec
= TYPE_PRECISION (type
);
3358 if (INTEGRAL_TYPE_P (type
)
3359 && TREE_CODE (valtype
) == REAL_TYPE
)
3360 warning_at (ploc
, OPT_Wtraditional_conversion
,
3361 "passing argument %d of %qE as integer rather "
3362 "than floating due to prototype",
3364 if (INTEGRAL_TYPE_P (type
)
3365 && TREE_CODE (valtype
) == COMPLEX_TYPE
)
3366 warning_at (ploc
, OPT_Wtraditional_conversion
,
3367 "passing argument %d of %qE as integer rather "
3368 "than complex due to prototype",
3370 else if (TREE_CODE (type
) == COMPLEX_TYPE
3371 && TREE_CODE (valtype
) == REAL_TYPE
)
3372 warning_at (ploc
, OPT_Wtraditional_conversion
,
3373 "passing argument %d of %qE as complex rather "
3374 "than floating due to prototype",
3376 else if (TREE_CODE (type
) == REAL_TYPE
3377 && INTEGRAL_TYPE_P (valtype
))
3378 warning_at (ploc
, OPT_Wtraditional_conversion
,
3379 "passing argument %d of %qE as floating rather "
3380 "than integer due to prototype",
3382 else if (TREE_CODE (type
) == COMPLEX_TYPE
3383 && INTEGRAL_TYPE_P (valtype
))
3384 warning_at (ploc
, OPT_Wtraditional_conversion
,
3385 "passing argument %d of %qE as complex rather "
3386 "than integer due to prototype",
3388 else if (TREE_CODE (type
) == REAL_TYPE
3389 && TREE_CODE (valtype
) == COMPLEX_TYPE
)
3390 warning_at (ploc
, OPT_Wtraditional_conversion
,
3391 "passing argument %d of %qE as floating rather "
3392 "than complex due to prototype",
3394 /* ??? At some point, messages should be written about
3395 conversions between complex types, but that's too messy
3397 else if (TREE_CODE (type
) == REAL_TYPE
3398 && TREE_CODE (valtype
) == REAL_TYPE
)
3400 /* Warn if any argument is passed as `float',
3401 since without a prototype it would be `double'. */
3402 if (formal_prec
== TYPE_PRECISION (float_type_node
)
3403 && type
!= dfloat32_type_node
)
3404 warning_at (ploc
, 0,
3405 "passing argument %d of %qE as %<float%> "
3406 "rather than %<double%> due to prototype",
3409 /* Warn if mismatch between argument and prototype
3410 for decimal float types. Warn of conversions with
3411 binary float types and of precision narrowing due to
3413 else if (type
!= valtype
3414 && (type
== dfloat32_type_node
3415 || type
== dfloat64_type_node
3416 || type
== dfloat128_type_node
3417 || valtype
== dfloat32_type_node
3418 || valtype
== dfloat64_type_node
3419 || valtype
== dfloat128_type_node
)
3421 <= TYPE_PRECISION (valtype
)
3422 || (type
== dfloat128_type_node
3424 != dfloat64_type_node
3426 != dfloat32_type_node
)))
3427 || (type
== dfloat64_type_node
3429 != dfloat32_type_node
))))
3430 warning_at (ploc
, 0,
3431 "passing argument %d of %qE as %qT "
3432 "rather than %qT due to prototype",
3433 argnum
, rname
, type
, valtype
);
3436 /* Detect integer changing in width or signedness.
3437 These warnings are only activated with
3438 -Wtraditional-conversion, not with -Wtraditional. */
3439 else if (warn_traditional_conversion
3440 && INTEGRAL_TYPE_P (type
)
3441 && INTEGRAL_TYPE_P (valtype
))
3443 tree would_have_been
= default_conversion (val
);
3444 tree type1
= TREE_TYPE (would_have_been
);
3446 if (val
== error_mark_node
)
3447 /* VAL could have been of incomplete type. */;
3448 else if (TREE_CODE (type
) == ENUMERAL_TYPE
3449 && (TYPE_MAIN_VARIANT (type
)
3450 == TYPE_MAIN_VARIANT (valtype
)))
3451 /* No warning if function asks for enum
3452 and the actual arg is that enum type. */
3454 else if (formal_prec
!= TYPE_PRECISION (type1
))
3455 warning_at (ploc
, OPT_Wtraditional_conversion
,
3456 "passing argument %d of %qE "
3457 "with different width due to prototype",
3459 else if (TYPE_UNSIGNED (type
) == TYPE_UNSIGNED (type1
))
3461 /* Don't complain if the formal parameter type
3462 is an enum, because we can't tell now whether
3463 the value was an enum--even the same enum. */
3464 else if (TREE_CODE (type
) == ENUMERAL_TYPE
)
3466 else if (TREE_CODE (val
) == INTEGER_CST
3467 && int_fits_type_p (val
, type
))
3468 /* Change in signedness doesn't matter
3469 if a constant value is unaffected. */
3471 /* If the value is extended from a narrower
3472 unsigned type, it doesn't matter whether we
3473 pass it as signed or unsigned; the value
3474 certainly is the same either way. */
3475 else if (TYPE_PRECISION (valtype
) < TYPE_PRECISION (type
)
3476 && TYPE_UNSIGNED (valtype
))
3478 else if (TYPE_UNSIGNED (type
))
3479 warning_at (ploc
, OPT_Wtraditional_conversion
,
3480 "passing argument %d of %qE "
3481 "as unsigned due to prototype",
3484 warning_at (ploc
, OPT_Wtraditional_conversion
,
3485 "passing argument %d of %qE "
3486 "as signed due to prototype",
3491 /* Possibly restore an EXCESS_PRECISION_EXPR for the
3492 sake of better warnings from convert_and_check. */
3493 if (excess_precision
)
3494 val
= build1 (EXCESS_PRECISION_EXPR
, valtype
, val
);
3495 origtype
= (!origtypes
) ? NULL_TREE
: (*origtypes
)[parmnum
];
3496 parmval
= convert_for_assignment (loc
, ploc
, type
,
3497 val
, origtype
, ic_argpass
,
3498 npc
, fundecl
, function
,
3501 if (targetm
.calls
.promote_prototypes (fundecl
? TREE_TYPE (fundecl
) : 0)
3502 && INTEGRAL_TYPE_P (type
)
3503 && (TYPE_PRECISION (type
) < TYPE_PRECISION (integer_type_node
)))
3504 parmval
= default_conversion (parmval
);
3507 else if (promote_float_arg
)
3513 /* Convert `float' to `double'. */
3514 if (warn_double_promotion
&& !c_inhibit_evaluation_warnings
)
3515 warning_at (ploc
, OPT_Wdouble_promotion
,
3516 "implicit conversion from %qT to %qT when passing "
3517 "argument to function",
3518 valtype
, double_type_node
);
3519 parmval
= convert (double_type_node
, val
);
3522 else if ((excess_precision
&& !type_generic
)
3523 || (type_generic_overflow_p
&& parmnum
== 2))
3524 /* A "double" argument with excess precision being passed
3525 without a prototype or in variable arguments.
3526 The last argument of __builtin_*_overflow_p should not be
3528 parmval
= convert (valtype
, val
);
3529 else if ((invalid_func_diag
=
3530 targetm
.calls
.invalid_arg_for_unprototyped_fn (typelist
, fundecl
, val
)))
3532 error (invalid_func_diag
);
3535 else if (TREE_CODE (val
) == ADDR_EXPR
&& reject_gcc_builtin (val
))
3540 /* Convert `short' and `char' to full-size `int'. */
3541 parmval
= default_conversion (val
);
3543 (*values
)[parmnum
] = parmval
;
3544 if (parmval
== error_mark_node
)
3548 typetail
= TREE_CHAIN (typetail
);
3551 gcc_assert (parmnum
== vec_safe_length (values
));
3553 if (typetail
!= NULL_TREE
&& TREE_VALUE (typetail
) != void_type_node
)
3555 error_at (loc
, "too few arguments to function %qE", function
);
3556 inform_declaration (fundecl
);
3560 return error_args
? -1 : (int) parmnum
;
3563 /* This is the entry point used by the parser to build unary operators
3564 in the input. CODE, a tree_code, specifies the unary operator, and
3565 ARG is the operand. For unary plus, the C parser currently uses
3566 CONVERT_EXPR for code.
3568 LOC is the location to use for the tree generated.
3572 parser_build_unary_op (location_t loc
, enum tree_code code
, struct c_expr arg
)
3574 struct c_expr result
;
3576 result
.original_code
= code
;
3577 result
.original_type
= NULL
;
3579 if (reject_gcc_builtin (arg
.value
))
3581 result
.value
= error_mark_node
;
3585 result
.value
= build_unary_op (loc
, code
, arg
.value
, false);
3587 if (TREE_OVERFLOW_P (result
.value
) && !TREE_OVERFLOW_P (arg
.value
))
3588 overflow_warning (loc
, result
.value
, arg
.value
);
3591 /* We are typically called when parsing a prefix token at LOC acting on
3592 ARG. Reflect this by updating the source range of the result to
3593 start at LOC and end at the end of ARG. */
3594 set_c_expr_source_range (&result
,
3595 loc
, arg
.get_finish ());
3600 /* Returns true if TYPE is a character type, *not* including wchar_t. */
3603 char_type_p (tree type
)
3605 return (type
== char_type_node
3606 || type
== unsigned_char_type_node
3607 || type
== signed_char_type_node
3608 || type
== char16_type_node
3609 || type
== char32_type_node
);
3612 /* This is the entry point used by the parser to build binary operators
3613 in the input. CODE, a tree_code, specifies the binary operator, and
3614 ARG1 and ARG2 are the operands. In addition to constructing the
3615 expression, we check for operands that were written with other binary
3616 operators in a way that is likely to confuse the user.
3618 LOCATION is the location of the binary operator. */
3621 parser_build_binary_op (location_t location
, enum tree_code code
,
3622 struct c_expr arg1
, struct c_expr arg2
)
3624 struct c_expr result
;
3626 enum tree_code code1
= arg1
.original_code
;
3627 enum tree_code code2
= arg2
.original_code
;
3628 tree type1
= (arg1
.original_type
3629 ? arg1
.original_type
3630 : TREE_TYPE (arg1
.value
));
3631 tree type2
= (arg2
.original_type
3632 ? arg2
.original_type
3633 : TREE_TYPE (arg2
.value
));
3635 result
.value
= build_binary_op (location
, code
,
3636 arg1
.value
, arg2
.value
, true);
3637 result
.original_code
= code
;
3638 result
.original_type
= NULL
;
3640 if (TREE_CODE (result
.value
) == ERROR_MARK
)
3642 set_c_expr_source_range (&result
,
3644 arg2
.get_finish ());
3648 if (location
!= UNKNOWN_LOCATION
)
3649 protected_set_expr_location (result
.value
, location
);
3651 set_c_expr_source_range (&result
,
3653 arg2
.get_finish ());
3655 /* Check for cases such as x+y<<z which users are likely
3657 if (warn_parentheses
)
3658 warn_about_parentheses (location
, code
, code1
, arg1
.value
, code2
,
3661 if (warn_logical_op
)
3662 warn_logical_operator (location
, code
, TREE_TYPE (result
.value
),
3663 code1
, arg1
.value
, code2
, arg2
.value
);
3665 if (warn_tautological_compare
)
3667 tree lhs
= arg1
.value
;
3668 tree rhs
= arg2
.value
;
3669 if (TREE_CODE (lhs
) == C_MAYBE_CONST_EXPR
)
3671 if (C_MAYBE_CONST_EXPR_PRE (lhs
) != NULL_TREE
3672 && TREE_SIDE_EFFECTS (C_MAYBE_CONST_EXPR_PRE (lhs
)))
3675 lhs
= C_MAYBE_CONST_EXPR_EXPR (lhs
);
3677 if (TREE_CODE (rhs
) == C_MAYBE_CONST_EXPR
)
3679 if (C_MAYBE_CONST_EXPR_PRE (rhs
) != NULL_TREE
3680 && TREE_SIDE_EFFECTS (C_MAYBE_CONST_EXPR_PRE (rhs
)))
3683 rhs
= C_MAYBE_CONST_EXPR_EXPR (rhs
);
3685 if (lhs
!= NULL_TREE
&& rhs
!= NULL_TREE
)
3686 warn_tautological_cmp (location
, code
, lhs
, rhs
);
3689 if (warn_logical_not_paren
3690 && TREE_CODE_CLASS (code
) == tcc_comparison
3691 && code1
== TRUTH_NOT_EXPR
3692 && code2
!= TRUTH_NOT_EXPR
3693 /* Avoid warning for !!x == y. */
3694 && (TREE_CODE (arg1
.value
) != NE_EXPR
3695 || !integer_zerop (TREE_OPERAND (arg1
.value
, 1))))
3697 /* Avoid warning for !b == y where b has _Bool type. */
3698 tree t
= integer_zero_node
;
3699 if (TREE_CODE (arg1
.value
) == EQ_EXPR
3700 && integer_zerop (TREE_OPERAND (arg1
.value
, 1))
3701 && TREE_TYPE (TREE_OPERAND (arg1
.value
, 0)) == integer_type_node
)
3703 t
= TREE_OPERAND (arg1
.value
, 0);
3706 if (TREE_TYPE (t
) != integer_type_node
)
3708 if (TREE_CODE (t
) == C_MAYBE_CONST_EXPR
)
3709 t
= C_MAYBE_CONST_EXPR_EXPR (t
);
3710 else if (CONVERT_EXPR_P (t
))
3711 t
= TREE_OPERAND (t
, 0);
3717 if (TREE_CODE (TREE_TYPE (t
)) != BOOLEAN_TYPE
)
3718 warn_logical_not_parentheses (location
, code
, arg1
.value
, arg2
.value
);
3721 /* Warn about comparisons against string literals, with the exception
3722 of testing for equality or inequality of a string literal with NULL. */
3723 if (code
== EQ_EXPR
|| code
== NE_EXPR
)
3725 if ((code1
== STRING_CST
3726 && !integer_zerop (tree_strip_nop_conversions (arg2
.value
)))
3727 || (code2
== STRING_CST
3728 && !integer_zerop (tree_strip_nop_conversions (arg1
.value
))))
3729 warning_at (location
, OPT_Waddress
,
3730 "comparison with string literal results in unspecified behavior");
3731 /* Warn for ptr == '\0', it's likely that it should've been ptr[0]. */
3732 if (POINTER_TYPE_P (type1
)
3733 && null_pointer_constant_p (arg2
.value
)
3734 && char_type_p (type2
)
3735 && warning_at (location
, OPT_Wpointer_compare
,
3736 "comparison between pointer and zero character "
3738 inform (arg1
.get_start (), "did you mean to dereference the pointer?");
3739 else if (POINTER_TYPE_P (type2
)
3740 && null_pointer_constant_p (arg1
.value
)
3741 && char_type_p (type1
)
3742 && warning_at (location
, OPT_Wpointer_compare
,
3743 "comparison between pointer and zero character "
3745 inform (arg2
.get_start (), "did you mean to dereference the pointer?");
3747 else if (TREE_CODE_CLASS (code
) == tcc_comparison
3748 && (code1
== STRING_CST
|| code2
== STRING_CST
))
3749 warning_at (location
, OPT_Waddress
,
3750 "comparison with string literal results in unspecified behavior");
3752 if (TREE_OVERFLOW_P (result
.value
)
3753 && !TREE_OVERFLOW_P (arg1
.value
)
3754 && !TREE_OVERFLOW_P (arg2
.value
))
3755 overflow_warning (location
, result
.value
);
3757 /* Warn about comparisons of different enum types. */
3758 if (warn_enum_compare
3759 && TREE_CODE_CLASS (code
) == tcc_comparison
3760 && TREE_CODE (type1
) == ENUMERAL_TYPE
3761 && TREE_CODE (type2
) == ENUMERAL_TYPE
3762 && TYPE_MAIN_VARIANT (type1
) != TYPE_MAIN_VARIANT (type2
))
3763 warning_at (location
, OPT_Wenum_compare
,
3764 "comparison between %qT and %qT",
3770 /* Return a tree for the difference of pointers OP0 and OP1.
3771 The resulting tree has type ptrdiff_t. If POINTER_SUBTRACT sanitization is
3772 enabled, assign to INSTRUMENT_EXPR call to libsanitizer. */
3775 pointer_diff (location_t loc
, tree op0
, tree op1
, tree
*instrument_expr
)
3777 tree restype
= ptrdiff_type_node
;
3778 tree result
, inttype
;
3780 addr_space_t as0
= TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (op0
)));
3781 addr_space_t as1
= TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (op1
)));
3782 tree target_type
= TREE_TYPE (TREE_TYPE (op0
));
3783 tree orig_op1
= op1
;
3785 /* If the operands point into different address spaces, we need to
3786 explicitly convert them to pointers into the common address space
3787 before we can subtract the numerical address values. */
3790 addr_space_t as_common
;
3793 /* Determine the common superset address space. This is guaranteed
3794 to exist because the caller verified that comp_target_types
3795 returned non-zero. */
3796 if (!addr_space_superset (as0
, as1
, &as_common
))
3799 common_type
= common_pointer_type (TREE_TYPE (op0
), TREE_TYPE (op1
));
3800 op0
= convert (common_type
, op0
);
3801 op1
= convert (common_type
, op1
);
3804 /* Determine integer type result of the subtraction. This will usually
3805 be the same as the result type (ptrdiff_t), but may need to be a wider
3806 type if pointers for the address space are wider than ptrdiff_t. */
3807 if (TYPE_PRECISION (restype
) < TYPE_PRECISION (TREE_TYPE (op0
)))
3808 inttype
= c_common_type_for_size (TYPE_PRECISION (TREE_TYPE (op0
)), 0);
3812 if (TREE_CODE (target_type
) == VOID_TYPE
)
3813 pedwarn (loc
, OPT_Wpointer_arith
,
3814 "pointer of type %<void *%> used in subtraction");
3815 if (TREE_CODE (target_type
) == FUNCTION_TYPE
)
3816 pedwarn (loc
, OPT_Wpointer_arith
,
3817 "pointer to a function used in subtraction");
3819 if (sanitize_flags_p (SANITIZE_POINTER_SUBTRACT
))
3821 gcc_assert (current_function_decl
!= NULL_TREE
);
3823 op0
= save_expr (op0
);
3824 op1
= save_expr (op1
);
3826 tree tt
= builtin_decl_explicit (BUILT_IN_ASAN_POINTER_SUBTRACT
);
3827 *instrument_expr
= build_call_expr_loc (loc
, tt
, 2, op0
, op1
);
3830 /* First do the subtraction, then build the divide operator
3831 and only convert at the very end.
3832 Do not do default conversions in case restype is a short type. */
3834 /* POINTER_DIFF_EXPR requires a signed integer type of the same size as
3835 pointers. If some platform cannot provide that, or has a larger
3836 ptrdiff_type to support differences larger than half the address
3837 space, cast the pointers to some larger integer type and do the
3838 computations in that type. */
3839 if (TYPE_PRECISION (inttype
) > TYPE_PRECISION (TREE_TYPE (op0
)))
3840 op0
= build_binary_op (loc
, MINUS_EXPR
, convert (inttype
, op0
),
3841 convert (inttype
, op1
), false);
3843 op0
= build2_loc (loc
, POINTER_DIFF_EXPR
, inttype
, op0
, op1
);
3845 /* This generates an error if op1 is pointer to incomplete type. */
3846 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (orig_op1
))))
3847 error_at (loc
, "arithmetic on pointer to an incomplete type");
3849 op1
= c_size_in_bytes (target_type
);
3851 if (pointer_to_zero_sized_aggr_p (TREE_TYPE (orig_op1
)))
3852 error_at (loc
, "arithmetic on pointer to an empty aggregate");
3854 /* Divide by the size, in easiest possible way. */
3855 result
= fold_build2_loc (loc
, EXACT_DIV_EXPR
, inttype
,
3856 op0
, convert (inttype
, op1
));
3858 /* Convert to final result type if necessary. */
3859 return convert (restype
, result
);
3862 /* Expand atomic compound assignments into an appropriate sequence as
3863 specified by the C11 standard section 6.5.16.2.
3869 This sequence is used for all types for which these operations are
3872 In addition, built-in versions of the 'fe' prefixed routines may
3873 need to be invoked for floating point (real, complex or vector) when
3874 floating-point exceptions are supported. See 6.5.16.2 footnote 113.
3884 __atomic_load (addr, &old, SEQ_CST);
3885 feholdexcept (&fenv);
3887 newval = old op val;
3888 if (__atomic_compare_exchange_strong (addr, &old, &newval, SEQ_CST,
3891 feclearexcept (FE_ALL_EXCEPT);
3894 feupdateenv (&fenv);
3896 The compiler will issue the __atomic_fetch_* built-in when possible,
3897 otherwise it will generate the generic form of the atomic operations.
3898 This requires temp(s) and has their address taken. The atomic processing
3899 is smart enough to figure out when the size of an object can utilize
3900 a lock-free version, and convert the built-in call to the appropriate
3901 lock-free routine. The optimizers will then dispose of any temps that
3902 are no longer required, and lock-free implementations are utilized as
3903 long as there is target support for the required size.
3905 If the operator is NOP_EXPR, then this is a simple assignment, and
3906 an __atomic_store is issued to perform the assignment rather than
3909 /* Build an atomic assignment at LOC, expanding into the proper
3910 sequence to store LHS MODIFYCODE= RHS. Return a value representing
3911 the result of the operation, unless RETURN_OLD_P, in which case
3912 return the old value of LHS (this is only for postincrement and
3916 build_atomic_assign (location_t loc
, tree lhs
, enum tree_code modifycode
,
3917 tree rhs
, bool return_old_p
)
3919 tree fndecl
, func_call
;
3920 vec
<tree
, va_gc
> *params
;
3921 tree val
, nonatomic_lhs_type
, nonatomic_rhs_type
, newval
, newval_addr
;
3924 tree stmt
, goto_stmt
;
3925 tree loop_label
, loop_decl
, done_label
, done_decl
;
3927 tree lhs_type
= TREE_TYPE (lhs
);
3928 tree lhs_addr
= build_unary_op (loc
, ADDR_EXPR
, lhs
, false);
3929 tree seq_cst
= build_int_cst (integer_type_node
, MEMMODEL_SEQ_CST
);
3930 tree rhs_semantic_type
= TREE_TYPE (rhs
);
3931 tree nonatomic_rhs_semantic_type
;
3934 gcc_assert (TYPE_ATOMIC (lhs_type
));
3937 gcc_assert (modifycode
== PLUS_EXPR
|| modifycode
== MINUS_EXPR
);
3939 /* Allocate enough vector items for a compare_exchange. */
3940 vec_alloc (params
, 6);
3942 /* Create a compound statement to hold the sequence of statements
3944 compound_stmt
= c_begin_compound_stmt (false);
3946 /* Remove any excess precision (which is only present here in the
3947 case of compound assignments). */
3948 if (TREE_CODE (rhs
) == EXCESS_PRECISION_EXPR
)
3950 gcc_assert (modifycode
!= NOP_EXPR
);
3951 rhs
= TREE_OPERAND (rhs
, 0);
3953 rhs_type
= TREE_TYPE (rhs
);
3955 /* Fold the RHS if it hasn't already been folded. */
3956 if (modifycode
!= NOP_EXPR
)
3957 rhs
= c_fully_fold (rhs
, false, NULL
);
3959 /* Remove the qualifiers for the rest of the expressions and create
3960 the VAL temp variable to hold the RHS. */
3961 nonatomic_lhs_type
= build_qualified_type (lhs_type
, TYPE_UNQUALIFIED
);
3962 nonatomic_rhs_type
= build_qualified_type (rhs_type
, TYPE_UNQUALIFIED
);
3963 nonatomic_rhs_semantic_type
= build_qualified_type (rhs_semantic_type
,
3965 val
= create_tmp_var_raw (nonatomic_rhs_type
);
3966 TREE_ADDRESSABLE (val
) = 1;
3967 TREE_NO_WARNING (val
) = 1;
3968 rhs
= build4 (TARGET_EXPR
, nonatomic_rhs_type
, val
, rhs
, NULL_TREE
,
3970 SET_EXPR_LOCATION (rhs
, loc
);
3973 /* NOP_EXPR indicates it's a straight store of the RHS. Simply issue
3975 if (modifycode
== NOP_EXPR
)
3977 /* Build __atomic_store (&lhs, &val, SEQ_CST) */
3978 rhs
= build_unary_op (loc
, ADDR_EXPR
, val
, false);
3979 fndecl
= builtin_decl_explicit (BUILT_IN_ATOMIC_STORE
);
3980 params
->quick_push (lhs_addr
);
3981 params
->quick_push (rhs
);
3982 params
->quick_push (seq_cst
);
3983 func_call
= c_build_function_call_vec (loc
, vNULL
, fndecl
, params
, NULL
);
3984 add_stmt (func_call
);
3986 /* Finish the compound statement. */
3987 compound_stmt
= c_end_compound_stmt (loc
, compound_stmt
, false);
3989 /* VAL is the value which was stored, return a COMPOUND_STMT of
3990 the statement and that value. */
3991 return build2 (COMPOUND_EXPR
, nonatomic_lhs_type
, compound_stmt
, val
);
3994 /* Attempt to implement the atomic operation as an __atomic_fetch_* or
3995 __atomic_*_fetch built-in rather than a CAS loop. atomic_bool type
3996 isn't applicable for such builtins. ??? Do we want to handle enums? */
3997 if ((TREE_CODE (lhs_type
) == INTEGER_TYPE
|| POINTER_TYPE_P (lhs_type
))
3998 && TREE_CODE (rhs_type
) == INTEGER_TYPE
)
4000 built_in_function fncode
;
4004 case POINTER_PLUS_EXPR
:
4005 fncode
= (return_old_p
4006 ? BUILT_IN_ATOMIC_FETCH_ADD_N
4007 : BUILT_IN_ATOMIC_ADD_FETCH_N
);
4010 fncode
= (return_old_p
4011 ? BUILT_IN_ATOMIC_FETCH_SUB_N
4012 : BUILT_IN_ATOMIC_SUB_FETCH_N
);
4015 fncode
= (return_old_p
4016 ? BUILT_IN_ATOMIC_FETCH_AND_N
4017 : BUILT_IN_ATOMIC_AND_FETCH_N
);
4020 fncode
= (return_old_p
4021 ? BUILT_IN_ATOMIC_FETCH_OR_N
4022 : BUILT_IN_ATOMIC_OR_FETCH_N
);
4025 fncode
= (return_old_p
4026 ? BUILT_IN_ATOMIC_FETCH_XOR_N
4027 : BUILT_IN_ATOMIC_XOR_FETCH_N
);
4033 /* We can only use "_1" through "_16" variants of the atomic fetch
4035 unsigned HOST_WIDE_INT size
= tree_to_uhwi (TYPE_SIZE_UNIT (lhs_type
));
4036 if (size
!= 1 && size
!= 2 && size
!= 4 && size
!= 8 && size
!= 16)
4039 /* If this is a pointer type, we need to multiply by the size of
4040 the pointer target type. */
4041 if (POINTER_TYPE_P (lhs_type
))
4043 if (!COMPLETE_TYPE_P (TREE_TYPE (lhs_type
))
4044 /* ??? This would introduce -Wdiscarded-qualifiers
4045 warning: __atomic_fetch_* expect volatile void *
4046 type as the first argument. (Assignments between
4047 atomic and non-atomic objects are OK.) */
4048 || TYPE_RESTRICT (lhs_type
))
4050 tree sz
= TYPE_SIZE_UNIT (TREE_TYPE (lhs_type
));
4051 rhs
= fold_build2_loc (loc
, MULT_EXPR
, ptrdiff_type_node
,
4052 convert (ptrdiff_type_node
, rhs
),
4053 convert (ptrdiff_type_node
, sz
));
4056 /* Build __atomic_fetch_* (&lhs, &val, SEQ_CST), or
4057 __atomic_*_fetch (&lhs, &val, SEQ_CST). */
4058 fndecl
= builtin_decl_explicit (fncode
);
4059 params
->quick_push (lhs_addr
);
4060 params
->quick_push (rhs
);
4061 params
->quick_push (seq_cst
);
4062 func_call
= c_build_function_call_vec (loc
, vNULL
, fndecl
, params
, NULL
);
4064 newval
= create_tmp_var_raw (nonatomic_lhs_type
);
4065 TREE_ADDRESSABLE (newval
) = 1;
4066 TREE_NO_WARNING (newval
) = 1;
4067 rhs
= build4 (TARGET_EXPR
, nonatomic_lhs_type
, newval
, func_call
,
4068 NULL_TREE
, NULL_TREE
);
4069 SET_EXPR_LOCATION (rhs
, loc
);
4072 /* Finish the compound statement. */
4073 compound_stmt
= c_end_compound_stmt (loc
, compound_stmt
, false);
4075 /* NEWVAL is the value which was stored, return a COMPOUND_STMT of
4076 the statement and that value. */
4077 return build2 (COMPOUND_EXPR
, nonatomic_lhs_type
, compound_stmt
, newval
);
4081 /* Create the variables and labels required for the op= form. */
4082 old
= create_tmp_var_raw (nonatomic_lhs_type
);
4083 old_addr
= build_unary_op (loc
, ADDR_EXPR
, old
, false);
4084 TREE_ADDRESSABLE (old
) = 1;
4085 TREE_NO_WARNING (old
) = 1;
4087 newval
= create_tmp_var_raw (nonatomic_lhs_type
);
4088 newval_addr
= build_unary_op (loc
, ADDR_EXPR
, newval
, false);
4089 TREE_ADDRESSABLE (newval
) = 1;
4090 TREE_NO_WARNING (newval
) = 1;
4092 loop_decl
= create_artificial_label (loc
);
4093 loop_label
= build1 (LABEL_EXPR
, void_type_node
, loop_decl
);
4095 done_decl
= create_artificial_label (loc
);
4096 done_label
= build1 (LABEL_EXPR
, void_type_node
, done_decl
);
4098 /* __atomic_load (addr, &old, SEQ_CST). */
4099 fndecl
= builtin_decl_explicit (BUILT_IN_ATOMIC_LOAD
);
4100 params
->quick_push (lhs_addr
);
4101 params
->quick_push (old_addr
);
4102 params
->quick_push (seq_cst
);
4103 func_call
= c_build_function_call_vec (loc
, vNULL
, fndecl
, params
, NULL
);
4104 old
= build4 (TARGET_EXPR
, nonatomic_lhs_type
, old
, func_call
, NULL_TREE
,
4107 params
->truncate (0);
4109 /* Create the expressions for floating-point environment
4110 manipulation, if required. */
4111 bool need_fenv
= (flag_trapping_math
4112 && (FLOAT_TYPE_P (lhs_type
) || FLOAT_TYPE_P (rhs_type
)));
4113 tree hold_call
= NULL_TREE
, clear_call
= NULL_TREE
, update_call
= NULL_TREE
;
4115 targetm
.atomic_assign_expand_fenv (&hold_call
, &clear_call
, &update_call
);
4118 add_stmt (hold_call
);
4121 add_stmt (loop_label
);
4123 /* newval = old + val; */
4124 if (rhs_type
!= rhs_semantic_type
)
4125 val
= build1 (EXCESS_PRECISION_EXPR
, nonatomic_rhs_semantic_type
, val
);
4126 rhs
= build_binary_op (loc
, modifycode
, old
, val
, true);
4127 if (TREE_CODE (rhs
) == EXCESS_PRECISION_EXPR
)
4129 tree eptype
= TREE_TYPE (rhs
);
4130 rhs
= c_fully_fold (TREE_OPERAND (rhs
, 0), false, NULL
);
4131 rhs
= build1 (EXCESS_PRECISION_EXPR
, eptype
, rhs
);
4134 rhs
= c_fully_fold (rhs
, false, NULL
);
4135 rhs
= convert_for_assignment (loc
, UNKNOWN_LOCATION
, nonatomic_lhs_type
,
4136 rhs
, NULL_TREE
, ic_assign
, false, NULL_TREE
,
4138 if (rhs
!= error_mark_node
)
4140 rhs
= build4 (TARGET_EXPR
, nonatomic_lhs_type
, newval
, rhs
, NULL_TREE
,
4142 SET_EXPR_LOCATION (rhs
, loc
);
4146 /* if (__atomic_compare_exchange (addr, &old, &new, false, SEQ_CST, SEQ_CST))
4148 fndecl
= builtin_decl_explicit (BUILT_IN_ATOMIC_COMPARE_EXCHANGE
);
4149 params
->quick_push (lhs_addr
);
4150 params
->quick_push (old_addr
);
4151 params
->quick_push (newval_addr
);
4152 params
->quick_push (integer_zero_node
);
4153 params
->quick_push (seq_cst
);
4154 params
->quick_push (seq_cst
);
4155 func_call
= c_build_function_call_vec (loc
, vNULL
, fndecl
, params
, NULL
);
4157 goto_stmt
= build1 (GOTO_EXPR
, void_type_node
, done_decl
);
4158 SET_EXPR_LOCATION (goto_stmt
, loc
);
4160 stmt
= build3 (COND_EXPR
, void_type_node
, func_call
, goto_stmt
, NULL_TREE
);
4161 SET_EXPR_LOCATION (stmt
, loc
);
4165 add_stmt (clear_call
);
4168 goto_stmt
= build1 (GOTO_EXPR
, void_type_node
, loop_decl
);
4169 SET_EXPR_LOCATION (goto_stmt
, loc
);
4170 add_stmt (goto_stmt
);
4173 add_stmt (done_label
);
4176 add_stmt (update_call
);
4178 /* Finish the compound statement. */
4179 compound_stmt
= c_end_compound_stmt (loc
, compound_stmt
, false);
4181 /* NEWVAL is the value that was successfully stored, return a
4182 COMPOUND_EXPR of the statement and the appropriate value. */
4183 return build2 (COMPOUND_EXPR
, nonatomic_lhs_type
, compound_stmt
,
4184 return_old_p
? old
: newval
);
4187 /* Construct and perhaps optimize a tree representation
4188 for a unary operation. CODE, a tree_code, specifies the operation
4189 and XARG is the operand.
4190 For any CODE other than ADDR_EXPR, NOCONVERT suppresses the default
4191 promotions (such as from short to int).
4192 For ADDR_EXPR, the default promotions are not applied; NOCONVERT allows
4193 non-lvalues; this is only used to handle conversion of non-lvalue arrays
4196 LOCATION is the location of the operator. */
4199 build_unary_op (location_t location
, enum tree_code code
, tree xarg
,
4202 /* No default_conversion here. It causes trouble for ADDR_EXPR. */
4204 tree argtype
= NULL_TREE
;
4205 enum tree_code typecode
;
4207 tree ret
= error_mark_node
;
4208 tree eptype
= NULL_TREE
;
4209 const char *invalid_op_diag
;
4212 int_operands
= EXPR_INT_CONST_OPERANDS (xarg
);
4214 arg
= remove_c_maybe_const_expr (arg
);
4216 if (code
!= ADDR_EXPR
)
4217 arg
= require_complete_type (location
, arg
);
4219 typecode
= TREE_CODE (TREE_TYPE (arg
));
4220 if (typecode
== ERROR_MARK
)
4221 return error_mark_node
;
4222 if (typecode
== ENUMERAL_TYPE
|| typecode
== BOOLEAN_TYPE
)
4223 typecode
= INTEGER_TYPE
;
4225 if ((invalid_op_diag
4226 = targetm
.invalid_unary_op (code
, TREE_TYPE (xarg
))))
4228 error_at (location
, invalid_op_diag
);
4229 return error_mark_node
;
4232 if (TREE_CODE (arg
) == EXCESS_PRECISION_EXPR
)
4234 eptype
= TREE_TYPE (arg
);
4235 arg
= TREE_OPERAND (arg
, 0);
4241 /* This is used for unary plus, because a CONVERT_EXPR
4242 is enough to prevent anybody from looking inside for
4243 associativity, but won't generate any code. */
4244 if (!(typecode
== INTEGER_TYPE
|| typecode
== REAL_TYPE
4245 || typecode
== FIXED_POINT_TYPE
|| typecode
== COMPLEX_TYPE
4246 || typecode
== VECTOR_TYPE
))
4248 error_at (location
, "wrong type argument to unary plus");
4249 return error_mark_node
;
4251 else if (!noconvert
)
4252 arg
= default_conversion (arg
);
4253 arg
= non_lvalue_loc (location
, arg
);
4257 if (!(typecode
== INTEGER_TYPE
|| typecode
== REAL_TYPE
4258 || typecode
== FIXED_POINT_TYPE
|| typecode
== COMPLEX_TYPE
4259 || typecode
== VECTOR_TYPE
))
4261 error_at (location
, "wrong type argument to unary minus");
4262 return error_mark_node
;
4264 else if (!noconvert
)
4265 arg
= default_conversion (arg
);
4269 /* ~ works on integer types and non float vectors. */
4270 if (typecode
== INTEGER_TYPE
4271 || (typecode
== VECTOR_TYPE
4272 && !VECTOR_FLOAT_TYPE_P (TREE_TYPE (arg
))))
4276 /* Warn if the expression has boolean value. */
4277 while (TREE_CODE (e
) == COMPOUND_EXPR
)
4278 e
= TREE_OPERAND (e
, 1);
4280 if ((TREE_CODE (TREE_TYPE (arg
)) == BOOLEAN_TYPE
4281 || truth_value_p (TREE_CODE (e
)))
4282 && warning_at (location
, OPT_Wbool_operation
,
4283 "%<~%> on a boolean expression"))
4285 gcc_rich_location
richloc (location
);
4286 richloc
.add_fixit_insert_before (location
, "!");
4287 inform (&richloc
, "did you mean to use logical not?");
4290 arg
= default_conversion (arg
);
4292 else if (typecode
== COMPLEX_TYPE
)
4295 pedwarn (location
, OPT_Wpedantic
,
4296 "ISO C does not support %<~%> for complex conjugation");
4298 arg
= default_conversion (arg
);
4302 error_at (location
, "wrong type argument to bit-complement");
4303 return error_mark_node
;
4308 if (!(typecode
== INTEGER_TYPE
|| typecode
== REAL_TYPE
))
4310 error_at (location
, "wrong type argument to abs");
4311 return error_mark_node
;
4313 else if (!noconvert
)
4314 arg
= default_conversion (arg
);
4318 /* Conjugating a real value is a no-op, but allow it anyway. */
4319 if (!(typecode
== INTEGER_TYPE
|| typecode
== REAL_TYPE
4320 || typecode
== COMPLEX_TYPE
))
4322 error_at (location
, "wrong type argument to conjugation");
4323 return error_mark_node
;
4325 else if (!noconvert
)
4326 arg
= default_conversion (arg
);
4329 case TRUTH_NOT_EXPR
:
4330 if (typecode
!= INTEGER_TYPE
&& typecode
!= FIXED_POINT_TYPE
4331 && typecode
!= REAL_TYPE
&& typecode
!= POINTER_TYPE
4332 && typecode
!= COMPLEX_TYPE
)
4335 "wrong type argument to unary exclamation mark");
4336 return error_mark_node
;
4340 arg
= c_objc_common_truthvalue_conversion (location
, xarg
);
4341 arg
= remove_c_maybe_const_expr (arg
);
4344 arg
= c_objc_common_truthvalue_conversion (location
, arg
);
4345 ret
= invert_truthvalue_loc (location
, arg
);
4346 /* If the TRUTH_NOT_EXPR has been folded, reset the location. */
4347 if (EXPR_P (ret
) && EXPR_HAS_LOCATION (ret
))
4348 location
= EXPR_LOCATION (ret
);
4349 goto return_build_unary_op
;
4353 ret
= build_real_imag_expr (location
, code
, arg
);
4354 if (ret
== error_mark_node
)
4355 return error_mark_node
;
4356 if (eptype
&& TREE_CODE (eptype
) == COMPLEX_TYPE
)
4357 eptype
= TREE_TYPE (eptype
);
4358 goto return_build_unary_op
;
4360 case PREINCREMENT_EXPR
:
4361 case POSTINCREMENT_EXPR
:
4362 case PREDECREMENT_EXPR
:
4363 case POSTDECREMENT_EXPR
:
4365 if (TREE_CODE (arg
) == C_MAYBE_CONST_EXPR
)
4367 tree inner
= build_unary_op (location
, code
,
4368 C_MAYBE_CONST_EXPR_EXPR (arg
),
4370 if (inner
== error_mark_node
)
4371 return error_mark_node
;
4372 ret
= build2 (C_MAYBE_CONST_EXPR
, TREE_TYPE (inner
),
4373 C_MAYBE_CONST_EXPR_PRE (arg
), inner
);
4374 gcc_assert (!C_MAYBE_CONST_EXPR_INT_OPERANDS (arg
));
4375 C_MAYBE_CONST_EXPR_NON_CONST (ret
) = 1;
4376 goto return_build_unary_op
;
4379 /* Complain about anything that is not a true lvalue. In
4380 Objective-C, skip this check for property_refs. */
4381 if (!objc_is_property_ref (arg
)
4382 && !lvalue_or_else (location
,
4383 arg
, ((code
== PREINCREMENT_EXPR
4384 || code
== POSTINCREMENT_EXPR
)
4387 return error_mark_node
;
4389 if (warn_cxx_compat
&& TREE_CODE (TREE_TYPE (arg
)) == ENUMERAL_TYPE
)
4391 if (code
== PREINCREMENT_EXPR
|| code
== POSTINCREMENT_EXPR
)
4392 warning_at (location
, OPT_Wc___compat
,
4393 "increment of enumeration value is invalid in C++");
4395 warning_at (location
, OPT_Wc___compat
,
4396 "decrement of enumeration value is invalid in C++");
4399 if (TREE_CODE (TREE_TYPE (arg
)) == BOOLEAN_TYPE
)
4401 if (code
== PREINCREMENT_EXPR
|| code
== POSTINCREMENT_EXPR
)
4402 warning_at (location
, OPT_Wbool_operation
,
4403 "increment of a boolean expression");
4405 warning_at (location
, OPT_Wbool_operation
,
4406 "decrement of a boolean expression");
4409 /* Ensure the argument is fully folded inside any SAVE_EXPR. */
4410 arg
= c_fully_fold (arg
, false, NULL
, true);
4413 atomic_op
= really_atomic_lvalue (arg
);
4415 /* Increment or decrement the real part of the value,
4416 and don't change the imaginary part. */
4417 if (typecode
== COMPLEX_TYPE
)
4421 pedwarn (location
, OPT_Wpedantic
,
4422 "ISO C does not support %<++%> and %<--%> on complex types");
4426 arg
= stabilize_reference (arg
);
4427 real
= build_unary_op (EXPR_LOCATION (arg
), REALPART_EXPR
, arg
,
4429 imag
= build_unary_op (EXPR_LOCATION (arg
), IMAGPART_EXPR
, arg
,
4431 real
= build_unary_op (EXPR_LOCATION (arg
), code
, real
, true);
4432 if (real
== error_mark_node
|| imag
== error_mark_node
)
4433 return error_mark_node
;
4434 ret
= build2 (COMPLEX_EXPR
, TREE_TYPE (arg
),
4436 goto return_build_unary_op
;
4440 /* Report invalid types. */
4442 if (typecode
!= POINTER_TYPE
&& typecode
!= FIXED_POINT_TYPE
4443 && typecode
!= INTEGER_TYPE
&& typecode
!= REAL_TYPE
4444 && typecode
!= COMPLEX_TYPE
&& typecode
!= VECTOR_TYPE
)
4446 if (code
== PREINCREMENT_EXPR
|| code
== POSTINCREMENT_EXPR
)
4447 error_at (location
, "wrong type argument to increment");
4449 error_at (location
, "wrong type argument to decrement");
4451 return error_mark_node
;
4457 argtype
= TREE_TYPE (arg
);
4459 /* Compute the increment. */
4461 if (typecode
== POINTER_TYPE
)
4463 /* If pointer target is an incomplete type,
4464 we just cannot know how to do the arithmetic. */
4465 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (argtype
)))
4467 if (code
== PREINCREMENT_EXPR
|| code
== POSTINCREMENT_EXPR
)
4469 "increment of pointer to an incomplete type %qT",
4470 TREE_TYPE (argtype
));
4473 "decrement of pointer to an incomplete type %qT",
4474 TREE_TYPE (argtype
));
4476 else if (TREE_CODE (TREE_TYPE (argtype
)) == FUNCTION_TYPE
4477 || TREE_CODE (TREE_TYPE (argtype
)) == VOID_TYPE
)
4479 if (code
== PREINCREMENT_EXPR
|| code
== POSTINCREMENT_EXPR
)
4480 pedwarn (location
, OPT_Wpointer_arith
,
4481 "wrong type argument to increment");
4483 pedwarn (location
, OPT_Wpointer_arith
,
4484 "wrong type argument to decrement");
4487 inc
= c_size_in_bytes (TREE_TYPE (argtype
));
4488 inc
= convert_to_ptrofftype_loc (location
, inc
);
4490 else if (FRACT_MODE_P (TYPE_MODE (argtype
)))
4492 /* For signed fract types, we invert ++ to -- or
4493 -- to ++, and change inc from 1 to -1, because
4494 it is not possible to represent 1 in signed fract constants.
4495 For unsigned fract types, the result always overflows and
4496 we get an undefined (original) or the maximum value. */
4497 if (code
== PREINCREMENT_EXPR
)
4498 code
= PREDECREMENT_EXPR
;
4499 else if (code
== PREDECREMENT_EXPR
)
4500 code
= PREINCREMENT_EXPR
;
4501 else if (code
== POSTINCREMENT_EXPR
)
4502 code
= POSTDECREMENT_EXPR
;
4503 else /* code == POSTDECREMENT_EXPR */
4504 code
= POSTINCREMENT_EXPR
;
4506 inc
= integer_minus_one_node
;
4507 inc
= convert (argtype
, inc
);
4511 inc
= VECTOR_TYPE_P (argtype
)
4512 ? build_one_cst (argtype
)
4514 inc
= convert (argtype
, inc
);
4517 /* If 'arg' is an Objective-C PROPERTY_REF expression, then we
4518 need to ask Objective-C to build the increment or decrement
4519 expression for it. */
4520 if (objc_is_property_ref (arg
))
4521 return objc_build_incr_expr_for_property_ref (location
, code
,
4524 /* Report a read-only lvalue. */
4525 if (TYPE_READONLY (argtype
))
4527 readonly_error (location
, arg
,
4528 ((code
== PREINCREMENT_EXPR
4529 || code
== POSTINCREMENT_EXPR
)
4530 ? lv_increment
: lv_decrement
));
4531 return error_mark_node
;
4533 else if (TREE_READONLY (arg
))
4534 readonly_warning (arg
,
4535 ((code
== PREINCREMENT_EXPR
4536 || code
== POSTINCREMENT_EXPR
)
4537 ? lv_increment
: lv_decrement
));
4539 /* If the argument is atomic, use the special code sequences for
4540 atomic compound assignment. */
4543 arg
= stabilize_reference (arg
);
4544 ret
= build_atomic_assign (location
, arg
,
4545 ((code
== PREINCREMENT_EXPR
4546 || code
== POSTINCREMENT_EXPR
)
4549 (FRACT_MODE_P (TYPE_MODE (argtype
))
4551 : integer_one_node
),
4552 (code
== POSTINCREMENT_EXPR
4553 || code
== POSTDECREMENT_EXPR
));
4554 goto return_build_unary_op
;
4557 if (TREE_CODE (TREE_TYPE (arg
)) == BOOLEAN_TYPE
)
4558 val
= boolean_increment (code
, arg
);
4560 val
= build2 (code
, TREE_TYPE (arg
), arg
, inc
);
4561 TREE_SIDE_EFFECTS (val
) = 1;
4562 if (TREE_CODE (val
) != code
)
4563 TREE_NO_WARNING (val
) = 1;
4565 goto return_build_unary_op
;
4569 /* Note that this operation never does default_conversion. */
4571 /* The operand of unary '&' must be an lvalue (which excludes
4572 expressions of type void), or, in C99, the result of a [] or
4573 unary '*' operator. */
4574 if (VOID_TYPE_P (TREE_TYPE (arg
))
4575 && TYPE_QUALS (TREE_TYPE (arg
)) == TYPE_UNQUALIFIED
4576 && (!INDIRECT_REF_P (arg
) || !flag_isoc99
))
4577 pedwarn (location
, 0, "taking address of expression of type %<void%>");
4579 /* Let &* cancel out to simplify resulting code. */
4580 if (INDIRECT_REF_P (arg
))
4582 /* Don't let this be an lvalue. */
4583 if (lvalue_p (TREE_OPERAND (arg
, 0)))
4584 return non_lvalue_loc (location
, TREE_OPERAND (arg
, 0));
4585 ret
= TREE_OPERAND (arg
, 0);
4586 goto return_build_unary_op
;
4589 /* Anything not already handled and not a true memory reference
4590 or a non-lvalue array is an error. */
4591 if (typecode
!= FUNCTION_TYPE
&& !noconvert
4592 && !lvalue_or_else (location
, arg
, lv_addressof
))
4593 return error_mark_node
;
4595 /* Move address operations inside C_MAYBE_CONST_EXPR to simplify
4597 if (TREE_CODE (arg
) == C_MAYBE_CONST_EXPR
)
4599 tree inner
= build_unary_op (location
, code
,
4600 C_MAYBE_CONST_EXPR_EXPR (arg
),
4602 ret
= build2 (C_MAYBE_CONST_EXPR
, TREE_TYPE (inner
),
4603 C_MAYBE_CONST_EXPR_PRE (arg
), inner
);
4604 gcc_assert (!C_MAYBE_CONST_EXPR_INT_OPERANDS (arg
));
4605 C_MAYBE_CONST_EXPR_NON_CONST (ret
)
4606 = C_MAYBE_CONST_EXPR_NON_CONST (arg
);
4607 goto return_build_unary_op
;
4610 /* Ordinary case; arg is a COMPONENT_REF or a decl. */
4611 argtype
= TREE_TYPE (arg
);
4613 /* If the lvalue is const or volatile, merge that into the type
4614 to which the address will point. This is only needed
4615 for function types. */
4616 if ((DECL_P (arg
) || REFERENCE_CLASS_P (arg
))
4617 && (TREE_READONLY (arg
) || TREE_THIS_VOLATILE (arg
))
4618 && TREE_CODE (argtype
) == FUNCTION_TYPE
)
4620 int orig_quals
= TYPE_QUALS (strip_array_types (argtype
));
4621 int quals
= orig_quals
;
4623 if (TREE_READONLY (arg
))
4624 quals
|= TYPE_QUAL_CONST
;
4625 if (TREE_THIS_VOLATILE (arg
))
4626 quals
|= TYPE_QUAL_VOLATILE
;
4628 argtype
= c_build_qualified_type (argtype
, quals
);
4631 switch (TREE_CODE (arg
))
4634 if (DECL_C_BIT_FIELD (TREE_OPERAND (arg
, 1)))
4636 error_at (location
, "cannot take address of bit-field %qD",
4637 TREE_OPERAND (arg
, 1));
4638 return error_mark_node
;
4644 if (TYPE_REVERSE_STORAGE_ORDER (TREE_TYPE (TREE_OPERAND (arg
, 0))))
4646 if (!AGGREGATE_TYPE_P (TREE_TYPE (arg
))
4647 && !VECTOR_TYPE_P (TREE_TYPE (arg
)))
4649 error_at (location
, "cannot take address of scalar with "
4650 "reverse storage order");
4651 return error_mark_node
;
4654 if (TREE_CODE (TREE_TYPE (arg
)) == ARRAY_TYPE
4655 && TYPE_REVERSE_STORAGE_ORDER (TREE_TYPE (arg
)))
4656 warning_at (location
, OPT_Wscalar_storage_order
,
4657 "address of array with reverse scalar storage "
4665 if (!c_mark_addressable (arg
))
4666 return error_mark_node
;
4668 gcc_assert (TREE_CODE (arg
) != COMPONENT_REF
4669 || !DECL_C_BIT_FIELD (TREE_OPERAND (arg
, 1)));
4671 argtype
= build_pointer_type (argtype
);
4673 /* ??? Cope with user tricks that amount to offsetof. Delete this
4674 when we have proper support for integer constant expressions. */
4675 val
= get_base_address (arg
);
4676 if (val
&& INDIRECT_REF_P (val
)
4677 && TREE_CONSTANT (TREE_OPERAND (val
, 0)))
4679 ret
= fold_convert_loc (location
, argtype
, fold_offsetof_1 (arg
));
4680 goto return_build_unary_op
;
4683 val
= build1 (ADDR_EXPR
, argtype
, arg
);
4686 goto return_build_unary_op
;
4692 if (argtype
== NULL_TREE
)
4693 argtype
= TREE_TYPE (arg
);
4694 if (TREE_CODE (arg
) == INTEGER_CST
)
4695 ret
= (require_constant_value
4696 ? fold_build1_initializer_loc (location
, code
, argtype
, arg
)
4697 : fold_build1_loc (location
, code
, argtype
, arg
));
4699 ret
= build1 (code
, argtype
, arg
);
4700 return_build_unary_op
:
4701 gcc_assert (ret
!= error_mark_node
);
4702 if (TREE_CODE (ret
) == INTEGER_CST
&& !TREE_OVERFLOW (ret
)
4703 && !(TREE_CODE (xarg
) == INTEGER_CST
&& !TREE_OVERFLOW (xarg
)))
4704 ret
= build1 (NOP_EXPR
, TREE_TYPE (ret
), ret
);
4705 else if (TREE_CODE (ret
) != INTEGER_CST
&& int_operands
)
4706 ret
= note_integer_operands (ret
);
4708 ret
= build1 (EXCESS_PRECISION_EXPR
, eptype
, ret
);
4709 protected_set_expr_location (ret
, location
);
4713 /* Return nonzero if REF is an lvalue valid for this language.
4714 Lvalues can be assigned, unless their type has TYPE_READONLY.
4715 Lvalues can have their address taken, unless they have C_DECL_REGISTER. */
4718 lvalue_p (const_tree ref
)
4720 const enum tree_code code
= TREE_CODE (ref
);
4727 return lvalue_p (TREE_OPERAND (ref
, 0));
4729 case C_MAYBE_CONST_EXPR
:
4730 return lvalue_p (TREE_OPERAND (ref
, 1));
4732 case COMPOUND_LITERAL_EXPR
:
4742 return (TREE_CODE (TREE_TYPE (ref
)) != FUNCTION_TYPE
4743 && TREE_CODE (TREE_TYPE (ref
)) != METHOD_TYPE
);
4746 return TREE_CODE (TREE_TYPE (ref
)) == ARRAY_TYPE
;
4753 /* Give a warning for storing in something that is read-only in GCC
4754 terms but not const in ISO C terms. */
4757 readonly_warning (tree arg
, enum lvalue_use use
)
4762 warning (0, "assignment of read-only location %qE", arg
);
4765 warning (0, "increment of read-only location %qE", arg
);
4768 warning (0, "decrement of read-only location %qE", arg
);
4777 /* Return nonzero if REF is an lvalue valid for this language;
4778 otherwise, print an error message and return zero. USE says
4779 how the lvalue is being used and so selects the error message.
4780 LOCATION is the location at which any error should be reported. */
4783 lvalue_or_else (location_t loc
, const_tree ref
, enum lvalue_use use
)
4785 int win
= lvalue_p (ref
);
4788 lvalue_error (loc
, use
);
4793 /* Mark EXP saying that we need to be able to take the
4794 address of it; it should not be allocated in a register.
4795 Returns true if successful. ARRAY_REF_P is true if this
4796 is for ARRAY_REF construction - in that case we don't want
4797 to look through VIEW_CONVERT_EXPR from VECTOR_TYPE to ARRAY_TYPE,
4798 it is fine to use ARRAY_REFs for vector subscripts on vector
4799 register variables. */
4802 c_mark_addressable (tree exp
, bool array_ref_p
)
4807 switch (TREE_CODE (x
))
4809 case VIEW_CONVERT_EXPR
:
4811 && TREE_CODE (TREE_TYPE (x
)) == ARRAY_TYPE
4812 && VECTOR_TYPE_P (TREE_TYPE (TREE_OPERAND (x
, 0))))
4820 x
= TREE_OPERAND (x
, 0);
4823 case COMPOUND_LITERAL_EXPR
:
4825 TREE_ADDRESSABLE (x
) = 1;
4832 if (C_DECL_REGISTER (x
)
4833 && DECL_NONLOCAL (x
))
4835 if (TREE_PUBLIC (x
) || is_global_var (x
))
4838 ("global register variable %qD used in nested function", x
);
4841 pedwarn (input_location
, 0, "register variable %qD used in nested function", x
);
4843 else if (C_DECL_REGISTER (x
))
4845 if (TREE_PUBLIC (x
) || is_global_var (x
))
4846 error ("address of global register variable %qD requested", x
);
4848 error ("address of register variable %qD requested", x
);
4854 TREE_ADDRESSABLE (x
) = 1;
4861 /* Convert EXPR to TYPE, warning about conversion problems with
4862 constants. SEMANTIC_TYPE is the type this conversion would use
4863 without excess precision. If SEMANTIC_TYPE is NULL, this function
4864 is equivalent to convert_and_check. This function is a wrapper that
4865 handles conversions that may be different than
4866 the usual ones because of excess precision. */
4869 ep_convert_and_check (location_t loc
, tree type
, tree expr
,
4872 if (TREE_TYPE (expr
) == type
)
4875 /* For C11, integer conversions may have results with excess
4877 if (flag_isoc11
|| !semantic_type
)
4878 return convert_and_check (loc
, type
, expr
);
4880 if (TREE_CODE (TREE_TYPE (expr
)) == INTEGER_TYPE
4881 && TREE_TYPE (expr
) != semantic_type
)
4883 /* For integers, we need to check the real conversion, not
4884 the conversion to the excess precision type. */
4885 expr
= convert_and_check (loc
, semantic_type
, expr
);
4887 /* Result type is the excess precision type, which should be
4888 large enough, so do not check. */
4889 return convert (type
, expr
);
4892 /* Build and return a conditional expression IFEXP ? OP1 : OP2. If
4893 IFEXP_BCP then the condition is a call to __builtin_constant_p, and
4894 if folded to an integer constant then the unselected half may
4895 contain arbitrary operations not normally permitted in constant
4896 expressions. Set the location of the expression to LOC. */
4899 build_conditional_expr (location_t colon_loc
, tree ifexp
, bool ifexp_bcp
,
4900 tree op1
, tree op1_original_type
, location_t op1_loc
,
4901 tree op2
, tree op2_original_type
, location_t op2_loc
)
4905 enum tree_code code1
;
4906 enum tree_code code2
;
4907 tree result_type
= NULL
;
4908 tree semantic_result_type
= NULL
;
4909 tree orig_op1
= op1
, orig_op2
= op2
;
4910 bool int_const
, op1_int_operands
, op2_int_operands
, int_operands
;
4911 bool ifexp_int_operands
;
4914 op1_int_operands
= EXPR_INT_CONST_OPERANDS (orig_op1
);
4915 if (op1_int_operands
)
4916 op1
= remove_c_maybe_const_expr (op1
);
4917 op2_int_operands
= EXPR_INT_CONST_OPERANDS (orig_op2
);
4918 if (op2_int_operands
)
4919 op2
= remove_c_maybe_const_expr (op2
);
4920 ifexp_int_operands
= EXPR_INT_CONST_OPERANDS (ifexp
);
4921 if (ifexp_int_operands
)
4922 ifexp
= remove_c_maybe_const_expr (ifexp
);
4924 /* Promote both alternatives. */
4926 if (TREE_CODE (TREE_TYPE (op1
)) != VOID_TYPE
)
4927 op1
= default_conversion (op1
);
4928 if (TREE_CODE (TREE_TYPE (op2
)) != VOID_TYPE
)
4929 op2
= default_conversion (op2
);
4931 if (TREE_CODE (ifexp
) == ERROR_MARK
4932 || TREE_CODE (TREE_TYPE (op1
)) == ERROR_MARK
4933 || TREE_CODE (TREE_TYPE (op2
)) == ERROR_MARK
)
4934 return error_mark_node
;
4936 type1
= TREE_TYPE (op1
);
4937 code1
= TREE_CODE (type1
);
4938 type2
= TREE_TYPE (op2
);
4939 code2
= TREE_CODE (type2
);
4941 if (code1
== POINTER_TYPE
&& reject_gcc_builtin (op1
))
4942 return error_mark_node
;
4944 if (code2
== POINTER_TYPE
&& reject_gcc_builtin (op2
))
4945 return error_mark_node
;
4947 /* C90 does not permit non-lvalue arrays in conditional expressions.
4948 In C99 they will be pointers by now. */
4949 if (code1
== ARRAY_TYPE
|| code2
== ARRAY_TYPE
)
4951 error_at (colon_loc
, "non-lvalue array in conditional expression");
4952 return error_mark_node
;
4955 if ((TREE_CODE (op1
) == EXCESS_PRECISION_EXPR
4956 || TREE_CODE (op2
) == EXCESS_PRECISION_EXPR
)
4957 && (code1
== INTEGER_TYPE
|| code1
== REAL_TYPE
4958 || code1
== COMPLEX_TYPE
)
4959 && (code2
== INTEGER_TYPE
|| code2
== REAL_TYPE
4960 || code2
== COMPLEX_TYPE
))
4962 semantic_result_type
= c_common_type (type1
, type2
);
4963 if (TREE_CODE (op1
) == EXCESS_PRECISION_EXPR
)
4965 op1
= TREE_OPERAND (op1
, 0);
4966 type1
= TREE_TYPE (op1
);
4967 gcc_assert (TREE_CODE (type1
) == code1
);
4969 if (TREE_CODE (op2
) == EXCESS_PRECISION_EXPR
)
4971 op2
= TREE_OPERAND (op2
, 0);
4972 type2
= TREE_TYPE (op2
);
4973 gcc_assert (TREE_CODE (type2
) == code2
);
4977 if (warn_cxx_compat
)
4979 tree t1
= op1_original_type
? op1_original_type
: TREE_TYPE (orig_op1
);
4980 tree t2
= op2_original_type
? op2_original_type
: TREE_TYPE (orig_op2
);
4982 if (TREE_CODE (t1
) == ENUMERAL_TYPE
4983 && TREE_CODE (t2
) == ENUMERAL_TYPE
4984 && TYPE_MAIN_VARIANT (t1
) != TYPE_MAIN_VARIANT (t2
))
4985 warning_at (colon_loc
, OPT_Wc___compat
,
4986 ("different enum types in conditional is "
4987 "invalid in C++: %qT vs %qT"),
4991 /* Quickly detect the usual case where op1 and op2 have the same type
4993 if (TYPE_MAIN_VARIANT (type1
) == TYPE_MAIN_VARIANT (type2
))
4996 result_type
= type1
;
4998 result_type
= TYPE_MAIN_VARIANT (type1
);
5000 else if ((code1
== INTEGER_TYPE
|| code1
== REAL_TYPE
5001 || code1
== COMPLEX_TYPE
)
5002 && (code2
== INTEGER_TYPE
|| code2
== REAL_TYPE
5003 || code2
== COMPLEX_TYPE
))
5005 /* In C11, a conditional expression between a floating-point
5006 type and an integer type should convert the integer type to
5007 the evaluation format of the floating-point type, with
5008 possible excess precision. */
5009 tree eptype1
= type1
;
5010 tree eptype2
= type2
;
5014 if (ANY_INTEGRAL_TYPE_P (type1
)
5015 && (eptype
= excess_precision_type (type2
)) != NULL_TREE
)
5018 if (!semantic_result_type
)
5019 semantic_result_type
= c_common_type (type1
, type2
);
5021 else if (ANY_INTEGRAL_TYPE_P (type2
)
5022 && (eptype
= excess_precision_type (type1
)) != NULL_TREE
)
5025 if (!semantic_result_type
)
5026 semantic_result_type
= c_common_type (type1
, type2
);
5029 result_type
= c_common_type (eptype1
, eptype2
);
5030 if (result_type
== error_mark_node
)
5031 return error_mark_node
;
5032 do_warn_double_promotion (result_type
, type1
, type2
,
5033 "implicit conversion from %qT to %qT to "
5034 "match other result of conditional",
5037 /* If -Wsign-compare, warn here if type1 and type2 have
5038 different signedness. We'll promote the signed to unsigned
5039 and later code won't know it used to be different.
5040 Do this check on the original types, so that explicit casts
5041 will be considered, but default promotions won't. */
5042 if (c_inhibit_evaluation_warnings
== 0)
5044 int unsigned_op1
= TYPE_UNSIGNED (TREE_TYPE (orig_op1
));
5045 int unsigned_op2
= TYPE_UNSIGNED (TREE_TYPE (orig_op2
));
5047 if (unsigned_op1
^ unsigned_op2
)
5051 /* Do not warn if the result type is signed, since the
5052 signed type will only be chosen if it can represent
5053 all the values of the unsigned type. */
5054 if (!TYPE_UNSIGNED (result_type
))
5058 bool op1_maybe_const
= true;
5059 bool op2_maybe_const
= true;
5061 /* Do not warn if the signed quantity is an
5062 unsuffixed integer literal (or some static
5063 constant expression involving such literals) and
5064 it is non-negative. This warning requires the
5065 operands to be folded for best results, so do
5066 that folding in this case even without
5067 warn_sign_compare to avoid warning options
5068 possibly affecting code generation. */
5069 c_inhibit_evaluation_warnings
5070 += (ifexp
== truthvalue_false_node
);
5071 op1
= c_fully_fold (op1
, require_constant_value
,
5073 c_inhibit_evaluation_warnings
5074 -= (ifexp
== truthvalue_false_node
);
5076 c_inhibit_evaluation_warnings
5077 += (ifexp
== truthvalue_true_node
);
5078 op2
= c_fully_fold (op2
, require_constant_value
,
5080 c_inhibit_evaluation_warnings
5081 -= (ifexp
== truthvalue_true_node
);
5083 if (warn_sign_compare
)
5086 && tree_expr_nonnegative_warnv_p (op1
, &ovf
))
5088 && tree_expr_nonnegative_warnv_p (op2
, &ovf
)))
5090 else if (unsigned_op2
)
5091 warning_at (op1_loc
, OPT_Wsign_compare
,
5092 "operand of ?: changes signedness from "
5093 "%qT to %qT due to unsignedness of other "
5094 "operand", TREE_TYPE (orig_op1
),
5095 TREE_TYPE (orig_op2
));
5097 warning_at (op2_loc
, OPT_Wsign_compare
,
5098 "operand of ?: changes signedness from "
5099 "%qT to %qT due to unsignedness of other "
5100 "operand", TREE_TYPE (orig_op2
),
5101 TREE_TYPE (orig_op1
));
5103 if (!op1_maybe_const
|| TREE_CODE (op1
) != INTEGER_CST
)
5104 op1
= c_wrap_maybe_const (op1
, !op1_maybe_const
);
5105 if (!op2_maybe_const
|| TREE_CODE (op2
) != INTEGER_CST
)
5106 op2
= c_wrap_maybe_const (op2
, !op2_maybe_const
);
5111 else if (code1
== VOID_TYPE
|| code2
== VOID_TYPE
)
5113 if (code1
!= VOID_TYPE
|| code2
!= VOID_TYPE
)
5114 pedwarn (colon_loc
, OPT_Wpedantic
,
5115 "ISO C forbids conditional expr with only one void side");
5116 result_type
= void_type_node
;
5118 else if (code1
== POINTER_TYPE
&& code2
== POINTER_TYPE
)
5120 addr_space_t as1
= TYPE_ADDR_SPACE (TREE_TYPE (type1
));
5121 addr_space_t as2
= TYPE_ADDR_SPACE (TREE_TYPE (type2
));
5122 addr_space_t as_common
;
5124 if (comp_target_types (colon_loc
, type1
, type2
))
5125 result_type
= common_pointer_type (type1
, type2
);
5126 else if (null_pointer_constant_p (orig_op1
))
5127 result_type
= type2
;
5128 else if (null_pointer_constant_p (orig_op2
))
5129 result_type
= type1
;
5130 else if (!addr_space_superset (as1
, as2
, &as_common
))
5132 error_at (colon_loc
, "pointers to disjoint address spaces "
5133 "used in conditional expression");
5134 return error_mark_node
;
5136 else if (VOID_TYPE_P (TREE_TYPE (type1
))
5137 && !TYPE_ATOMIC (TREE_TYPE (type1
)))
5139 if ((TREE_CODE (TREE_TYPE (type2
)) == ARRAY_TYPE
)
5140 && (TYPE_QUALS (strip_array_types (TREE_TYPE (type2
)))
5141 & ~TYPE_QUALS (TREE_TYPE (type1
))))
5142 warning_at (colon_loc
, OPT_Wdiscarded_array_qualifiers
,
5143 "pointer to array loses qualifier "
5144 "in conditional expression");
5146 if (TREE_CODE (TREE_TYPE (type2
)) == FUNCTION_TYPE
)
5147 pedwarn (colon_loc
, OPT_Wpedantic
,
5148 "ISO C forbids conditional expr between "
5149 "%<void *%> and function pointer");
5150 result_type
= build_pointer_type (qualify_type (TREE_TYPE (type1
),
5151 TREE_TYPE (type2
)));
5153 else if (VOID_TYPE_P (TREE_TYPE (type2
))
5154 && !TYPE_ATOMIC (TREE_TYPE (type2
)))
5156 if ((TREE_CODE (TREE_TYPE (type1
)) == ARRAY_TYPE
)
5157 && (TYPE_QUALS (strip_array_types (TREE_TYPE (type1
)))
5158 & ~TYPE_QUALS (TREE_TYPE (type2
))))
5159 warning_at (colon_loc
, OPT_Wdiscarded_array_qualifiers
,
5160 "pointer to array loses qualifier "
5161 "in conditional expression");
5163 if (TREE_CODE (TREE_TYPE (type1
)) == FUNCTION_TYPE
)
5164 pedwarn (colon_loc
, OPT_Wpedantic
,
5165 "ISO C forbids conditional expr between "
5166 "%<void *%> and function pointer");
5167 result_type
= build_pointer_type (qualify_type (TREE_TYPE (type2
),
5168 TREE_TYPE (type1
)));
5170 /* Objective-C pointer comparisons are a bit more lenient. */
5171 else if (objc_have_common_type (type1
, type2
, -3, NULL_TREE
))
5172 result_type
= objc_common_type (type1
, type2
);
5175 int qual
= ENCODE_QUAL_ADDR_SPACE (as_common
);
5177 pedwarn (colon_loc
, 0,
5178 "pointer type mismatch in conditional expression");
5179 result_type
= build_pointer_type
5180 (build_qualified_type (void_type_node
, qual
));
5183 else if (code1
== POINTER_TYPE
&& code2
== INTEGER_TYPE
)
5185 if (!null_pointer_constant_p (orig_op2
))
5186 pedwarn (colon_loc
, 0,
5187 "pointer/integer type mismatch in conditional expression");
5190 op2
= null_pointer_node
;
5192 result_type
= type1
;
5194 else if (code2
== POINTER_TYPE
&& code1
== INTEGER_TYPE
)
5196 if (!null_pointer_constant_p (orig_op1
))
5197 pedwarn (colon_loc
, 0,
5198 "pointer/integer type mismatch in conditional expression");
5201 op1
= null_pointer_node
;
5203 result_type
= type2
;
5208 if (flag_cond_mismatch
)
5209 result_type
= void_type_node
;
5212 error_at (colon_loc
, "type mismatch in conditional expression");
5213 return error_mark_node
;
5217 /* Merge const and volatile flags of the incoming types. */
5219 = build_type_variant (result_type
,
5220 TYPE_READONLY (type1
) || TYPE_READONLY (type2
),
5221 TYPE_VOLATILE (type1
) || TYPE_VOLATILE (type2
));
5223 op1
= ep_convert_and_check (colon_loc
, result_type
, op1
,
5224 semantic_result_type
);
5225 op2
= ep_convert_and_check (colon_loc
, result_type
, op2
,
5226 semantic_result_type
);
5228 if (ifexp_bcp
&& ifexp
== truthvalue_true_node
)
5230 op2_int_operands
= true;
5231 op1
= c_fully_fold (op1
, require_constant_value
, NULL
);
5233 if (ifexp_bcp
&& ifexp
== truthvalue_false_node
)
5235 op1_int_operands
= true;
5236 op2
= c_fully_fold (op2
, require_constant_value
, NULL
);
5238 int_const
= int_operands
= (ifexp_int_operands
5240 && op2_int_operands
);
5243 int_const
= ((ifexp
== truthvalue_true_node
5244 && TREE_CODE (orig_op1
) == INTEGER_CST
5245 && !TREE_OVERFLOW (orig_op1
))
5246 || (ifexp
== truthvalue_false_node
5247 && TREE_CODE (orig_op2
) == INTEGER_CST
5248 && !TREE_OVERFLOW (orig_op2
)));
5251 /* Need to convert condition operand into a vector mask. */
5252 if (VECTOR_TYPE_P (TREE_TYPE (ifexp
)))
5254 tree vectype
= TREE_TYPE (ifexp
);
5255 tree elem_type
= TREE_TYPE (vectype
);
5256 tree zero
= build_int_cst (elem_type
, 0);
5257 tree zero_vec
= build_vector_from_val (vectype
, zero
);
5258 tree cmp_type
= build_same_sized_truth_vector_type (vectype
);
5259 ifexp
= build2 (NE_EXPR
, cmp_type
, ifexp
, zero_vec
);
5262 if (int_const
|| (ifexp_bcp
&& TREE_CODE (ifexp
) == INTEGER_CST
))
5263 ret
= fold_build3_loc (colon_loc
, COND_EXPR
, result_type
, ifexp
, op1
, op2
);
5268 /* Use c_fully_fold here, since C_MAYBE_CONST_EXPR might be
5269 nested inside of the expression. */
5270 op1
= c_fully_fold (op1
, false, NULL
);
5271 op2
= c_fully_fold (op2
, false, NULL
);
5273 ret
= build3 (COND_EXPR
, result_type
, ifexp
, op1
, op2
);
5275 ret
= note_integer_operands (ret
);
5277 if (semantic_result_type
)
5278 ret
= build1 (EXCESS_PRECISION_EXPR
, semantic_result_type
, ret
);
5280 protected_set_expr_location (ret
, colon_loc
);
5282 /* If the OP1 and OP2 are the same and don't have side-effects,
5283 warn here, because the COND_EXPR will be turned into OP1. */
5284 if (warn_duplicated_branches
5285 && TREE_CODE (ret
) == COND_EXPR
5286 && (op1
== op2
|| operand_equal_p (op1
, op2
, 0)))
5287 warning_at (EXPR_LOCATION (ret
), OPT_Wduplicated_branches
,
5288 "this condition has identical branches");
5293 /* Return a compound expression that performs two expressions and
5294 returns the value of the second of them.
5296 LOC is the location of the COMPOUND_EXPR. */
5299 build_compound_expr (location_t loc
, tree expr1
, tree expr2
)
5301 bool expr1_int_operands
, expr2_int_operands
;
5302 tree eptype
= NULL_TREE
;
5305 expr1_int_operands
= EXPR_INT_CONST_OPERANDS (expr1
);
5306 if (expr1_int_operands
)
5307 expr1
= remove_c_maybe_const_expr (expr1
);
5308 expr2_int_operands
= EXPR_INT_CONST_OPERANDS (expr2
);
5309 if (expr2_int_operands
)
5310 expr2
= remove_c_maybe_const_expr (expr2
);
5312 if (TREE_CODE (expr1
) == EXCESS_PRECISION_EXPR
)
5313 expr1
= TREE_OPERAND (expr1
, 0);
5314 if (TREE_CODE (expr2
) == EXCESS_PRECISION_EXPR
)
5316 eptype
= TREE_TYPE (expr2
);
5317 expr2
= TREE_OPERAND (expr2
, 0);
5320 if (!TREE_SIDE_EFFECTS (expr1
))
5322 /* The left-hand operand of a comma expression is like an expression
5323 statement: with -Wunused, we should warn if it doesn't have
5324 any side-effects, unless it was explicitly cast to (void). */
5325 if (warn_unused_value
)
5327 if (VOID_TYPE_P (TREE_TYPE (expr1
))
5328 && CONVERT_EXPR_P (expr1
))
5330 else if (VOID_TYPE_P (TREE_TYPE (expr1
))
5331 && TREE_CODE (expr1
) == COMPOUND_EXPR
5332 && CONVERT_EXPR_P (TREE_OPERAND (expr1
, 1)))
5333 ; /* (void) a, (void) b, c */
5335 warning_at (loc
, OPT_Wunused_value
,
5336 "left-hand operand of comma expression has no effect");
5339 else if (TREE_CODE (expr1
) == COMPOUND_EXPR
5340 && warn_unused_value
)
5343 location_t cloc
= loc
;
5344 while (TREE_CODE (r
) == COMPOUND_EXPR
)
5346 if (EXPR_HAS_LOCATION (r
))
5347 cloc
= EXPR_LOCATION (r
);
5348 r
= TREE_OPERAND (r
, 1);
5350 if (!TREE_SIDE_EFFECTS (r
)
5351 && !VOID_TYPE_P (TREE_TYPE (r
))
5352 && !CONVERT_EXPR_P (r
))
5353 warning_at (cloc
, OPT_Wunused_value
,
5354 "right-hand operand of comma expression has no effect");
5357 /* With -Wunused, we should also warn if the left-hand operand does have
5358 side-effects, but computes a value which is not used. For example, in
5359 `foo() + bar(), baz()' the result of the `+' operator is not used,
5360 so we should issue a warning. */
5361 else if (warn_unused_value
)
5362 warn_if_unused_value (expr1
, loc
);
5364 if (expr2
== error_mark_node
)
5365 return error_mark_node
;
5367 ret
= build2 (COMPOUND_EXPR
, TREE_TYPE (expr2
), expr1
, expr2
);
5370 && expr1_int_operands
5371 && expr2_int_operands
)
5372 ret
= note_integer_operands (ret
);
5375 ret
= build1 (EXCESS_PRECISION_EXPR
, eptype
, ret
);
5377 protected_set_expr_location (ret
, loc
);
5381 /* Issue -Wcast-qual warnings when appropriate. TYPE is the type to
5382 which we are casting. OTYPE is the type of the expression being
5383 cast. Both TYPE and OTYPE are pointer types. LOC is the location
5384 of the cast. -Wcast-qual appeared on the command line. Named
5385 address space qualifiers are not handled here, because they result
5386 in different warnings. */
5389 handle_warn_cast_qual (location_t loc
, tree type
, tree otype
)
5391 tree in_type
= type
;
5392 tree in_otype
= otype
;
5397 /* Check that the qualifiers on IN_TYPE are a superset of the
5398 qualifiers of IN_OTYPE. The outermost level of POINTER_TYPE
5399 nodes is uninteresting and we stop as soon as we hit a
5400 non-POINTER_TYPE node on either type. */
5403 in_otype
= TREE_TYPE (in_otype
);
5404 in_type
= TREE_TYPE (in_type
);
5406 /* GNU C allows cv-qualified function types. 'const' means the
5407 function is very pure, 'volatile' means it can't return. We
5408 need to warn when such qualifiers are added, not when they're
5410 if (TREE_CODE (in_otype
) == FUNCTION_TYPE
5411 && TREE_CODE (in_type
) == FUNCTION_TYPE
)
5412 added
|= (TYPE_QUALS_NO_ADDR_SPACE (in_type
)
5413 & ~TYPE_QUALS_NO_ADDR_SPACE (in_otype
));
5415 discarded
|= (TYPE_QUALS_NO_ADDR_SPACE (in_otype
)
5416 & ~TYPE_QUALS_NO_ADDR_SPACE (in_type
));
5418 while (TREE_CODE (in_type
) == POINTER_TYPE
5419 && TREE_CODE (in_otype
) == POINTER_TYPE
);
5422 warning_at (loc
, OPT_Wcast_qual
,
5423 "cast adds %q#v qualifier to function type", added
);
5426 /* There are qualifiers present in IN_OTYPE that are not present
5428 warning_at (loc
, OPT_Wcast_qual
,
5429 "cast discards %qv qualifier from pointer target type",
5432 if (added
|| discarded
)
5435 /* A cast from **T to const **T is unsafe, because it can cause a
5436 const value to be changed with no additional warning. We only
5437 issue this warning if T is the same on both sides, and we only
5438 issue the warning if there are the same number of pointers on
5439 both sides, as otherwise the cast is clearly unsafe anyhow. A
5440 cast is unsafe when a qualifier is added at one level and const
5441 is not present at all outer levels.
5443 To issue this warning, we check at each level whether the cast
5444 adds new qualifiers not already seen. We don't need to special
5445 case function types, as they won't have the same
5446 TYPE_MAIN_VARIANT. */
5448 if (TYPE_MAIN_VARIANT (in_type
) != TYPE_MAIN_VARIANT (in_otype
))
5450 if (TREE_CODE (TREE_TYPE (type
)) != POINTER_TYPE
)
5455 is_const
= TYPE_READONLY (TREE_TYPE (in_type
));
5458 in_type
= TREE_TYPE (in_type
);
5459 in_otype
= TREE_TYPE (in_otype
);
5460 if ((TYPE_QUALS (in_type
) &~ TYPE_QUALS (in_otype
)) != 0
5463 warning_at (loc
, OPT_Wcast_qual
,
5464 "to be safe all intermediate pointers in cast from "
5465 "%qT to %qT must be %<const%> qualified",
5470 is_const
= TYPE_READONLY (in_type
);
5472 while (TREE_CODE (in_type
) == POINTER_TYPE
);
5475 /* Heuristic check if two parameter types can be considered ABI-equivalent. */
5478 c_safe_arg_type_equiv_p (tree t1
, tree t2
)
5480 t1
= TYPE_MAIN_VARIANT (t1
);
5481 t2
= TYPE_MAIN_VARIANT (t2
);
5483 if (TREE_CODE (t1
) == POINTER_TYPE
5484 && TREE_CODE (t2
) == POINTER_TYPE
)
5487 /* The signedness of the parameter matters only when an integral
5488 type smaller than int is promoted to int, otherwise only the
5489 precision of the parameter matters.
5490 This check should make sure that the callee does not see
5491 undefined values in argument registers. */
5492 if (INTEGRAL_TYPE_P (t1
)
5493 && INTEGRAL_TYPE_P (t2
)
5494 && TYPE_PRECISION (t1
) == TYPE_PRECISION (t2
)
5495 && (TYPE_UNSIGNED (t1
) == TYPE_UNSIGNED (t2
)
5496 || !targetm
.calls
.promote_prototypes (NULL_TREE
)
5497 || TYPE_PRECISION (t1
) >= TYPE_PRECISION (integer_type_node
)))
5500 return comptypes (t1
, t2
);
5503 /* Check if a type cast between two function types can be considered safe. */
5506 c_safe_function_type_cast_p (tree t1
, tree t2
)
5508 if (TREE_TYPE (t1
) == void_type_node
&&
5509 TYPE_ARG_TYPES (t1
) == void_list_node
)
5512 if (TREE_TYPE (t2
) == void_type_node
&&
5513 TYPE_ARG_TYPES (t2
) == void_list_node
)
5516 if (!c_safe_arg_type_equiv_p (TREE_TYPE (t1
), TREE_TYPE (t2
)))
5519 for (t1
= TYPE_ARG_TYPES (t1
), t2
= TYPE_ARG_TYPES (t2
);
5521 t1
= TREE_CHAIN (t1
), t2
= TREE_CHAIN (t2
))
5522 if (!c_safe_arg_type_equiv_p (TREE_VALUE (t1
), TREE_VALUE (t2
)))
5528 /* Build an expression representing a cast to type TYPE of expression EXPR.
5529 LOC is the location of the cast-- typically the open paren of the cast. */
5532 build_c_cast (location_t loc
, tree type
, tree expr
)
5536 if (TREE_CODE (expr
) == EXCESS_PRECISION_EXPR
)
5537 expr
= TREE_OPERAND (expr
, 0);
5541 if (type
== error_mark_node
|| expr
== error_mark_node
)
5542 return error_mark_node
;
5544 /* The ObjC front-end uses TYPE_MAIN_VARIANT to tie together types differing
5545 only in <protocol> qualifications. But when constructing cast expressions,
5546 the protocols do matter and must be kept around. */
5547 if (objc_is_object_ptr (type
) && objc_is_object_ptr (TREE_TYPE (expr
)))
5548 return build1 (NOP_EXPR
, type
, expr
);
5550 type
= TYPE_MAIN_VARIANT (type
);
5552 if (TREE_CODE (type
) == ARRAY_TYPE
)
5554 error_at (loc
, "cast specifies array type");
5555 return error_mark_node
;
5558 if (TREE_CODE (type
) == FUNCTION_TYPE
)
5560 error_at (loc
, "cast specifies function type");
5561 return error_mark_node
;
5564 if (!VOID_TYPE_P (type
))
5566 value
= require_complete_type (loc
, value
);
5567 if (value
== error_mark_node
)
5568 return error_mark_node
;
5571 if (type
== TYPE_MAIN_VARIANT (TREE_TYPE (value
)))
5573 if (RECORD_OR_UNION_TYPE_P (type
))
5574 pedwarn (loc
, OPT_Wpedantic
,
5575 "ISO C forbids casting nonscalar to the same type");
5577 /* Convert to remove any qualifiers from VALUE's type. */
5578 value
= convert (type
, value
);
5580 else if (TREE_CODE (type
) == UNION_TYPE
)
5584 for (field
= TYPE_FIELDS (type
); field
; field
= DECL_CHAIN (field
))
5585 if (TREE_TYPE (field
) != error_mark_node
5586 && comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (field
)),
5587 TYPE_MAIN_VARIANT (TREE_TYPE (value
))))
5593 bool maybe_const
= true;
5595 pedwarn (loc
, OPT_Wpedantic
, "ISO C forbids casts to union type");
5596 t
= c_fully_fold (value
, false, &maybe_const
);
5597 t
= build_constructor_single (type
, field
, t
);
5599 t
= c_wrap_maybe_const (t
, true);
5600 t
= digest_init (loc
, type
, t
,
5601 NULL_TREE
, false, true, 0);
5602 TREE_CONSTANT (t
) = TREE_CONSTANT (value
);
5605 error_at (loc
, "cast to union type from type not present in union");
5606 return error_mark_node
;
5612 if (type
== void_type_node
)
5614 tree t
= build1 (CONVERT_EXPR
, type
, value
);
5615 SET_EXPR_LOCATION (t
, loc
);
5619 otype
= TREE_TYPE (value
);
5621 /* Optionally warn about potentially worrisome casts. */
5623 && TREE_CODE (type
) == POINTER_TYPE
5624 && TREE_CODE (otype
) == POINTER_TYPE
)
5625 handle_warn_cast_qual (loc
, type
, otype
);
5627 /* Warn about conversions between pointers to disjoint
5629 if (TREE_CODE (type
) == POINTER_TYPE
5630 && TREE_CODE (otype
) == POINTER_TYPE
5631 && !null_pointer_constant_p (value
))
5633 addr_space_t as_to
= TYPE_ADDR_SPACE (TREE_TYPE (type
));
5634 addr_space_t as_from
= TYPE_ADDR_SPACE (TREE_TYPE (otype
));
5635 addr_space_t as_common
;
5637 if (!addr_space_superset (as_to
, as_from
, &as_common
))
5639 if (ADDR_SPACE_GENERIC_P (as_from
))
5640 warning_at (loc
, 0, "cast to %s address space pointer "
5641 "from disjoint generic address space pointer",
5642 c_addr_space_name (as_to
));
5644 else if (ADDR_SPACE_GENERIC_P (as_to
))
5645 warning_at (loc
, 0, "cast to generic address space pointer "
5646 "from disjoint %s address space pointer",
5647 c_addr_space_name (as_from
));
5650 warning_at (loc
, 0, "cast to %s address space pointer "
5651 "from disjoint %s address space pointer",
5652 c_addr_space_name (as_to
),
5653 c_addr_space_name (as_from
));
5657 /* Warn about possible alignment problems. */
5658 if ((STRICT_ALIGNMENT
|| warn_cast_align
== 2)
5659 && TREE_CODE (type
) == POINTER_TYPE
5660 && TREE_CODE (otype
) == POINTER_TYPE
5661 && TREE_CODE (TREE_TYPE (otype
)) != VOID_TYPE
5662 && TREE_CODE (TREE_TYPE (otype
)) != FUNCTION_TYPE
5663 /* Don't warn about opaque types, where the actual alignment
5664 restriction is unknown. */
5665 && !(RECORD_OR_UNION_TYPE_P (TREE_TYPE (otype
))
5666 && TYPE_MODE (TREE_TYPE (otype
)) == VOIDmode
)
5667 && min_align_of_type (TREE_TYPE (type
))
5668 > min_align_of_type (TREE_TYPE (otype
)))
5669 warning_at (loc
, OPT_Wcast_align
,
5670 "cast increases required alignment of target type");
5672 if (TREE_CODE (type
) == INTEGER_TYPE
5673 && TREE_CODE (otype
) == POINTER_TYPE
5674 && TYPE_PRECISION (type
) != TYPE_PRECISION (otype
))
5675 /* Unlike conversion of integers to pointers, where the
5676 warning is disabled for converting constants because
5677 of cases such as SIG_*, warn about converting constant
5678 pointers to integers. In some cases it may cause unwanted
5679 sign extension, and a warning is appropriate. */
5680 warning_at (loc
, OPT_Wpointer_to_int_cast
,
5681 "cast from pointer to integer of different size");
5683 if (TREE_CODE (value
) == CALL_EXPR
5684 && TREE_CODE (type
) != TREE_CODE (otype
))
5685 warning_at (loc
, OPT_Wbad_function_cast
,
5686 "cast from function call of type %qT "
5687 "to non-matching type %qT", otype
, type
);
5689 if (TREE_CODE (type
) == POINTER_TYPE
5690 && TREE_CODE (otype
) == INTEGER_TYPE
5691 && TYPE_PRECISION (type
) != TYPE_PRECISION (otype
)
5692 /* Don't warn about converting any constant. */
5693 && !TREE_CONSTANT (value
))
5695 OPT_Wint_to_pointer_cast
, "cast to pointer from integer "
5696 "of different size");
5698 if (warn_strict_aliasing
<= 2)
5699 strict_aliasing_warning (EXPR_LOCATION (value
), type
, expr
);
5701 /* If pedantic, warn for conversions between function and object
5702 pointer types, except for converting a null pointer constant
5703 to function pointer type. */
5705 && TREE_CODE (type
) == POINTER_TYPE
5706 && TREE_CODE (otype
) == POINTER_TYPE
5707 && TREE_CODE (TREE_TYPE (otype
)) == FUNCTION_TYPE
5708 && TREE_CODE (TREE_TYPE (type
)) != FUNCTION_TYPE
)
5709 pedwarn (loc
, OPT_Wpedantic
, "ISO C forbids "
5710 "conversion of function pointer to object pointer type");
5713 && TREE_CODE (type
) == POINTER_TYPE
5714 && TREE_CODE (otype
) == POINTER_TYPE
5715 && TREE_CODE (TREE_TYPE (type
)) == FUNCTION_TYPE
5716 && TREE_CODE (TREE_TYPE (otype
)) != FUNCTION_TYPE
5717 && !null_pointer_constant_p (value
))
5718 pedwarn (loc
, OPT_Wpedantic
, "ISO C forbids "
5719 "conversion of object pointer to function pointer type");
5721 if (TREE_CODE (type
) == POINTER_TYPE
5722 && TREE_CODE (otype
) == POINTER_TYPE
5723 && TREE_CODE (TREE_TYPE (type
)) == FUNCTION_TYPE
5724 && TREE_CODE (TREE_TYPE (otype
)) == FUNCTION_TYPE
5725 && !c_safe_function_type_cast_p (TREE_TYPE (type
),
5727 warning_at (loc
, OPT_Wcast_function_type
,
5728 "cast between incompatible function types"
5729 " from %qT to %qT", otype
, type
);
5732 value
= convert (type
, value
);
5734 /* Ignore any integer overflow caused by the cast. */
5735 if (TREE_CODE (value
) == INTEGER_CST
&& !FLOAT_TYPE_P (otype
))
5737 if (CONSTANT_CLASS_P (ovalue
) && TREE_OVERFLOW (ovalue
))
5739 if (!TREE_OVERFLOW (value
))
5741 /* Avoid clobbering a shared constant. */
5742 value
= copy_node (value
);
5743 TREE_OVERFLOW (value
) = TREE_OVERFLOW (ovalue
);
5746 else if (TREE_OVERFLOW (value
))
5747 /* Reset VALUE's overflow flags, ensuring constant sharing. */
5748 value
= wide_int_to_tree (TREE_TYPE (value
), wi::to_wide (value
));
5752 /* Don't let a cast be an lvalue. */
5753 if (lvalue_p (value
))
5754 value
= non_lvalue_loc (loc
, value
);
5756 /* Don't allow the results of casting to floating-point or complex
5757 types be confused with actual constants, or casts involving
5758 integer and pointer types other than direct integer-to-integer
5759 and integer-to-pointer be confused with integer constant
5760 expressions and null pointer constants. */
5761 if (TREE_CODE (value
) == REAL_CST
5762 || TREE_CODE (value
) == COMPLEX_CST
5763 || (TREE_CODE (value
) == INTEGER_CST
5764 && !((TREE_CODE (expr
) == INTEGER_CST
5765 && INTEGRAL_TYPE_P (TREE_TYPE (expr
)))
5766 || TREE_CODE (expr
) == REAL_CST
5767 || TREE_CODE (expr
) == COMPLEX_CST
)))
5768 value
= build1 (NOP_EXPR
, type
, value
);
5770 protected_set_expr_location (value
, loc
);
5774 /* Interpret a cast of expression EXPR to type TYPE. LOC is the
5775 location of the open paren of the cast, or the position of the cast
5778 c_cast_expr (location_t loc
, struct c_type_name
*type_name
, tree expr
)
5781 tree type_expr
= NULL_TREE
;
5782 bool type_expr_const
= true;
5784 int saved_wsp
= warn_strict_prototypes
;
5786 /* This avoids warnings about unprototyped casts on
5787 integers. E.g. "#define SIG_DFL (void(*)())0". */
5788 if (TREE_CODE (expr
) == INTEGER_CST
)
5789 warn_strict_prototypes
= 0;
5790 type
= groktypename (type_name
, &type_expr
, &type_expr_const
);
5791 warn_strict_prototypes
= saved_wsp
;
5793 if (TREE_CODE (expr
) == ADDR_EXPR
&& !VOID_TYPE_P (type
)
5794 && reject_gcc_builtin (expr
))
5795 return error_mark_node
;
5797 ret
= build_c_cast (loc
, type
, expr
);
5800 bool inner_expr_const
= true;
5801 ret
= c_fully_fold (ret
, require_constant_value
, &inner_expr_const
);
5802 ret
= build2 (C_MAYBE_CONST_EXPR
, TREE_TYPE (ret
), type_expr
, ret
);
5803 C_MAYBE_CONST_EXPR_NON_CONST (ret
) = !(type_expr_const
5804 && inner_expr_const
);
5805 SET_EXPR_LOCATION (ret
, loc
);
5808 if (!EXPR_HAS_LOCATION (ret
))
5809 protected_set_expr_location (ret
, loc
);
5811 /* C++ does not permits types to be defined in a cast, but it
5812 allows references to incomplete types. */
5813 if (warn_cxx_compat
&& type_name
->specs
->typespec_kind
== ctsk_tagdef
)
5814 warning_at (loc
, OPT_Wc___compat
,
5815 "defining a type in a cast is invalid in C++");
5820 /* Build an assignment expression of lvalue LHS from value RHS.
5821 If LHS_ORIGTYPE is not NULL, it is the original type of LHS, which
5822 may differ from TREE_TYPE (LHS) for an enum bitfield.
5823 MODIFYCODE is the code for a binary operator that we use
5824 to combine the old value of LHS with RHS to get the new value.
5825 Or else MODIFYCODE is NOP_EXPR meaning do a simple assignment.
5826 If RHS_ORIGTYPE is not NULL_TREE, it is the original type of RHS,
5827 which may differ from TREE_TYPE (RHS) for an enum value.
5829 LOCATION is the location of the MODIFYCODE operator.
5830 RHS_LOC is the location of the RHS. */
5833 build_modify_expr (location_t location
, tree lhs
, tree lhs_origtype
,
5834 enum tree_code modifycode
,
5835 location_t rhs_loc
, tree rhs
, tree rhs_origtype
)
5839 tree rhseval
= NULL_TREE
;
5840 tree lhstype
= TREE_TYPE (lhs
);
5841 tree olhstype
= lhstype
;
5845 /* Types that aren't fully specified cannot be used in assignments. */
5846 lhs
= require_complete_type (location
, lhs
);
5848 /* Avoid duplicate error messages from operands that had errors. */
5849 if (TREE_CODE (lhs
) == ERROR_MARK
|| TREE_CODE (rhs
) == ERROR_MARK
)
5850 return error_mark_node
;
5852 /* Ensure an error for assigning a non-lvalue array to an array in
5854 if (TREE_CODE (lhstype
) == ARRAY_TYPE
)
5856 error_at (location
, "assignment to expression with array type");
5857 return error_mark_node
;
5860 /* For ObjC properties, defer this check. */
5861 if (!objc_is_property_ref (lhs
) && !lvalue_or_else (location
, lhs
, lv_assign
))
5862 return error_mark_node
;
5864 is_atomic_op
= really_atomic_lvalue (lhs
);
5868 if (TREE_CODE (lhs
) == C_MAYBE_CONST_EXPR
)
5870 tree inner
= build_modify_expr (location
, C_MAYBE_CONST_EXPR_EXPR (lhs
),
5871 lhs_origtype
, modifycode
, rhs_loc
, rhs
,
5873 if (inner
== error_mark_node
)
5874 return error_mark_node
;
5875 result
= build2 (C_MAYBE_CONST_EXPR
, TREE_TYPE (inner
),
5876 C_MAYBE_CONST_EXPR_PRE (lhs
), inner
);
5877 gcc_assert (!C_MAYBE_CONST_EXPR_INT_OPERANDS (lhs
));
5878 C_MAYBE_CONST_EXPR_NON_CONST (result
) = 1;
5879 protected_set_expr_location (result
, location
);
5883 /* If a binary op has been requested, combine the old LHS value with the RHS
5884 producing the value we should actually store into the LHS. */
5886 if (modifycode
!= NOP_EXPR
)
5888 lhs
= c_fully_fold (lhs
, false, NULL
, true);
5889 lhs
= stabilize_reference (lhs
);
5891 /* Construct the RHS for any non-atomic compound assignemnt. */
5894 /* If in LHS op= RHS the RHS has side-effects, ensure they
5895 are preevaluated before the rest of the assignment expression's
5896 side-effects, because RHS could contain e.g. function calls
5898 if (TREE_SIDE_EFFECTS (rhs
))
5900 if (TREE_CODE (rhs
) == EXCESS_PRECISION_EXPR
)
5901 newrhs
= save_expr (TREE_OPERAND (rhs
, 0));
5903 newrhs
= save_expr (rhs
);
5905 if (TREE_CODE (rhs
) == EXCESS_PRECISION_EXPR
)
5906 newrhs
= build1 (EXCESS_PRECISION_EXPR
, TREE_TYPE (rhs
),
5909 newrhs
= build_binary_op (location
,
5910 modifycode
, lhs
, newrhs
, true);
5912 /* The original type of the right hand side is no longer
5914 rhs_origtype
= NULL_TREE
;
5918 if (c_dialect_objc ())
5920 /* Check if we are modifying an Objective-C property reference;
5921 if so, we need to generate setter calls. */
5922 if (TREE_CODE (newrhs
) == EXCESS_PRECISION_EXPR
)
5923 result
= objc_maybe_build_modify_expr (lhs
, TREE_OPERAND (newrhs
, 0));
5925 result
= objc_maybe_build_modify_expr (lhs
, newrhs
);
5929 /* Else, do the check that we postponed for Objective-C. */
5930 if (!lvalue_or_else (location
, lhs
, lv_assign
))
5931 return error_mark_node
;
5934 /* Give an error for storing in something that is 'const'. */
5936 if (TYPE_READONLY (lhstype
)
5937 || (RECORD_OR_UNION_TYPE_P (lhstype
)
5938 && C_TYPE_FIELDS_READONLY (lhstype
)))
5940 readonly_error (location
, lhs
, lv_assign
);
5941 return error_mark_node
;
5943 else if (TREE_READONLY (lhs
))
5944 readonly_warning (lhs
, lv_assign
);
5946 /* If storing into a structure or union member,
5947 it has probably been given type `int'.
5948 Compute the type that would go with
5949 the actual amount of storage the member occupies. */
5951 if (TREE_CODE (lhs
) == COMPONENT_REF
5952 && (TREE_CODE (lhstype
) == INTEGER_TYPE
5953 || TREE_CODE (lhstype
) == BOOLEAN_TYPE
5954 || TREE_CODE (lhstype
) == REAL_TYPE
5955 || TREE_CODE (lhstype
) == ENUMERAL_TYPE
))
5956 lhstype
= TREE_TYPE (get_unwidened (lhs
, 0));
5958 /* If storing in a field that is in actuality a short or narrower than one,
5959 we must store in the field in its actual type. */
5961 if (lhstype
!= TREE_TYPE (lhs
))
5963 lhs
= copy_node (lhs
);
5964 TREE_TYPE (lhs
) = lhstype
;
5967 /* Issue -Wc++-compat warnings about an assignment to an enum type
5968 when LHS does not have its original type. This happens for,
5969 e.g., an enum bitfield in a struct. */
5971 && lhs_origtype
!= NULL_TREE
5972 && lhs_origtype
!= lhstype
5973 && TREE_CODE (lhs_origtype
) == ENUMERAL_TYPE
)
5975 tree checktype
= (rhs_origtype
!= NULL_TREE
5978 if (checktype
!= error_mark_node
5979 && (TYPE_MAIN_VARIANT (checktype
) != TYPE_MAIN_VARIANT (lhs_origtype
)
5980 || (is_atomic_op
&& modifycode
!= NOP_EXPR
)))
5981 warning_at (location
, OPT_Wc___compat
,
5982 "enum conversion in assignment is invalid in C++");
5985 /* If the lhs is atomic, remove that qualifier. */
5988 lhstype
= build_qualified_type (lhstype
,
5989 (TYPE_QUALS (lhstype
)
5990 & ~TYPE_QUAL_ATOMIC
));
5991 olhstype
= build_qualified_type (olhstype
,
5992 (TYPE_QUALS (lhstype
)
5993 & ~TYPE_QUAL_ATOMIC
));
5996 /* Convert new value to destination type. Fold it first, then
5997 restore any excess precision information, for the sake of
5998 conversion warnings. */
6000 if (!(is_atomic_op
&& modifycode
!= NOP_EXPR
))
6002 tree rhs_semantic_type
= NULL_TREE
;
6003 if (TREE_CODE (newrhs
) == EXCESS_PRECISION_EXPR
)
6005 rhs_semantic_type
= TREE_TYPE (newrhs
);
6006 newrhs
= TREE_OPERAND (newrhs
, 0);
6008 npc
= null_pointer_constant_p (newrhs
);
6009 newrhs
= c_fully_fold (newrhs
, false, NULL
);
6010 if (rhs_semantic_type
)
6011 newrhs
= build1 (EXCESS_PRECISION_EXPR
, rhs_semantic_type
, newrhs
);
6012 newrhs
= convert_for_assignment (location
, rhs_loc
, lhstype
, newrhs
,
6013 rhs_origtype
, ic_assign
, npc
,
6014 NULL_TREE
, NULL_TREE
, 0);
6015 if (TREE_CODE (newrhs
) == ERROR_MARK
)
6016 return error_mark_node
;
6019 /* Emit ObjC write barrier, if necessary. */
6020 if (c_dialect_objc () && flag_objc_gc
)
6022 result
= objc_generate_write_barrier (lhs
, modifycode
, newrhs
);
6025 protected_set_expr_location (result
, location
);
6030 /* Scan operands. */
6033 result
= build_atomic_assign (location
, lhs
, modifycode
, newrhs
, false);
6036 result
= build2 (MODIFY_EXPR
, lhstype
, lhs
, newrhs
);
6037 TREE_SIDE_EFFECTS (result
) = 1;
6038 protected_set_expr_location (result
, location
);
6041 /* If we got the LHS in a different type for storing in,
6042 convert the result back to the nominal type of LHS
6043 so that the value we return always has the same type
6044 as the LHS argument. */
6046 if (olhstype
== TREE_TYPE (result
))
6049 result
= convert_for_assignment (location
, rhs_loc
, olhstype
, result
,
6050 rhs_origtype
, ic_assign
, false, NULL_TREE
,
6052 protected_set_expr_location (result
, location
);
6056 result
= build2 (COMPOUND_EXPR
, TREE_TYPE (result
), rhseval
, result
);
6060 /* Return whether STRUCT_TYPE has an anonymous field with type TYPE.
6061 This is used to implement -fplan9-extensions. */
6064 find_anonymous_field_with_type (tree struct_type
, tree type
)
6069 gcc_assert (RECORD_OR_UNION_TYPE_P (struct_type
));
6071 for (field
= TYPE_FIELDS (struct_type
);
6073 field
= TREE_CHAIN (field
))
6075 tree fieldtype
= (TYPE_ATOMIC (TREE_TYPE (field
))
6076 ? c_build_qualified_type (TREE_TYPE (field
),
6078 : TYPE_MAIN_VARIANT (TREE_TYPE (field
)));
6079 if (DECL_NAME (field
) == NULL
6080 && comptypes (type
, fieldtype
))
6086 else if (DECL_NAME (field
) == NULL
6087 && RECORD_OR_UNION_TYPE_P (TREE_TYPE (field
))
6088 && find_anonymous_field_with_type (TREE_TYPE (field
), type
))
6098 /* RHS is an expression whose type is pointer to struct. If there is
6099 an anonymous field in RHS with type TYPE, then return a pointer to
6100 that field in RHS. This is used with -fplan9-extensions. This
6101 returns NULL if no conversion could be found. */
6104 convert_to_anonymous_field (location_t location
, tree type
, tree rhs
)
6106 tree rhs_struct_type
, lhs_main_type
;
6107 tree field
, found_field
;
6108 bool found_sub_field
;
6111 gcc_assert (POINTER_TYPE_P (TREE_TYPE (rhs
)));
6112 rhs_struct_type
= TREE_TYPE (TREE_TYPE (rhs
));
6113 gcc_assert (RECORD_OR_UNION_TYPE_P (rhs_struct_type
));
6115 gcc_assert (POINTER_TYPE_P (type
));
6116 lhs_main_type
= (TYPE_ATOMIC (TREE_TYPE (type
))
6117 ? c_build_qualified_type (TREE_TYPE (type
),
6119 : TYPE_MAIN_VARIANT (TREE_TYPE (type
)));
6121 found_field
= NULL_TREE
;
6122 found_sub_field
= false;
6123 for (field
= TYPE_FIELDS (rhs_struct_type
);
6125 field
= TREE_CHAIN (field
))
6127 if (DECL_NAME (field
) != NULL_TREE
6128 || !RECORD_OR_UNION_TYPE_P (TREE_TYPE (field
)))
6130 tree fieldtype
= (TYPE_ATOMIC (TREE_TYPE (field
))
6131 ? c_build_qualified_type (TREE_TYPE (field
),
6133 : TYPE_MAIN_VARIANT (TREE_TYPE (field
)));
6134 if (comptypes (lhs_main_type
, fieldtype
))
6136 if (found_field
!= NULL_TREE
)
6138 found_field
= field
;
6140 else if (find_anonymous_field_with_type (TREE_TYPE (field
),
6143 if (found_field
!= NULL_TREE
)
6145 found_field
= field
;
6146 found_sub_field
= true;
6150 if (found_field
== NULL_TREE
)
6153 ret
= fold_build3_loc (location
, COMPONENT_REF
, TREE_TYPE (found_field
),
6154 build_fold_indirect_ref (rhs
), found_field
,
6156 ret
= build_fold_addr_expr_loc (location
, ret
);
6158 if (found_sub_field
)
6160 ret
= convert_to_anonymous_field (location
, type
, ret
);
6161 gcc_assert (ret
!= NULL_TREE
);
6167 /* Issue an error message for a bad initializer component.
6168 GMSGID identifies the message.
6169 The component name is taken from the spelling stack. */
6172 error_init (location_t loc
, const char *gmsgid
)
6176 /* The gmsgid may be a format string with %< and %>. */
6177 error_at (loc
, gmsgid
);
6178 ofwhat
= print_spelling ((char *) alloca (spelling_length () + 1));
6180 inform (loc
, "(near initialization for %qs)", ofwhat
);
6183 /* Issue a pedantic warning for a bad initializer component. OPT is
6184 the option OPT_* (from options.h) controlling this warning or 0 if
6185 it is unconditionally given. GMSGID identifies the message. The
6186 component name is taken from the spelling stack. */
6188 static void ATTRIBUTE_GCC_DIAG (3,0)
6189 pedwarn_init (location_t loc
, int opt
, const char *gmsgid
, ...)
6191 /* Use the location where a macro was expanded rather than where
6192 it was defined to make sure macros defined in system headers
6193 but used incorrectly elsewhere are diagnosed. */
6194 source_location exploc
= expansion_point_location_if_in_system_header (loc
);
6197 va_start (ap
, gmsgid
);
6198 bool warned
= emit_diagnostic_valist (DK_PEDWARN
, exploc
, opt
, gmsgid
, &ap
);
6200 char *ofwhat
= print_spelling ((char *) alloca (spelling_length () + 1));
6201 if (*ofwhat
&& warned
)
6202 inform (exploc
, "(near initialization for %qs)", ofwhat
);
6205 /* Issue a warning for a bad initializer component.
6207 OPT is the OPT_W* value corresponding to the warning option that
6208 controls this warning. GMSGID identifies the message. The
6209 component name is taken from the spelling stack. */
6212 warning_init (location_t loc
, int opt
, const char *gmsgid
)
6217 /* Use the location where a macro was expanded rather than where
6218 it was defined to make sure macros defined in system headers
6219 but used incorrectly elsewhere are diagnosed. */
6220 source_location exploc
= expansion_point_location_if_in_system_header (loc
);
6222 /* The gmsgid may be a format string with %< and %>. */
6223 warned
= warning_at (exploc
, opt
, gmsgid
);
6224 ofwhat
= print_spelling ((char *) alloca (spelling_length () + 1));
6225 if (*ofwhat
&& warned
)
6226 inform (exploc
, "(near initialization for %qs)", ofwhat
);
6229 /* If TYPE is an array type and EXPR is a parenthesized string
6230 constant, warn if pedantic that EXPR is being used to initialize an
6231 object of type TYPE. */
6234 maybe_warn_string_init (location_t loc
, tree type
, struct c_expr expr
)
6237 && TREE_CODE (type
) == ARRAY_TYPE
6238 && TREE_CODE (expr
.value
) == STRING_CST
6239 && expr
.original_code
!= STRING_CST
)
6240 pedwarn_init (loc
, OPT_Wpedantic
,
6241 "array initialized from parenthesized string constant");
6244 /* Attempt to locate the parameter with the given index within FNDECL,
6245 returning DECL_SOURCE_LOCATION (FNDECL) if it can't be found. */
6248 get_fndecl_argument_location (tree fndecl
, int argnum
)
6253 /* Locate param by index within DECL_ARGUMENTS (fndecl). */
6254 for (i
= 0, param
= DECL_ARGUMENTS (fndecl
);
6255 i
< argnum
&& param
;
6256 i
++, param
= TREE_CHAIN (param
))
6259 /* If something went wrong (e.g. if we have a builtin and thus no arguments),
6260 return DECL_SOURCE_LOCATION (FNDECL). */
6262 return DECL_SOURCE_LOCATION (fndecl
);
6264 return DECL_SOURCE_LOCATION (param
);
6267 /* Issue a note about a mismatching argument for parameter PARMNUM
6268 to FUNDECL, for types EXPECTED_TYPE and ACTUAL_TYPE.
6269 Attempt to issue the note at the pertinent parameter of the decl;
6270 failing that issue it at the location of FUNDECL; failing that
6271 issue it at PLOC. */
6274 inform_for_arg (tree fundecl
, location_t ploc
, int parmnum
,
6275 tree expected_type
, tree actual_type
)
6278 if (fundecl
&& !DECL_IS_BUILTIN (fundecl
))
6279 loc
= get_fndecl_argument_location (fundecl
, parmnum
- 1);
6284 "expected %qT but argument is of type %qT",
6285 expected_type
, actual_type
);
6288 /* Convert value RHS to type TYPE as preparation for an assignment to
6289 an lvalue of type TYPE. If ORIGTYPE is not NULL_TREE, it is the
6290 original type of RHS; this differs from TREE_TYPE (RHS) for enum
6291 types. NULL_POINTER_CONSTANT says whether RHS was a null pointer
6292 constant before any folding.
6293 The real work of conversion is done by `convert'.
6294 The purpose of this function is to generate error messages
6295 for assignments that are not allowed in C.
6296 ERRTYPE says whether it is argument passing, assignment,
6297 initialization or return.
6299 In the following example, '~' denotes where EXPR_LOC and '^' where
6302 f (var); [ic_argpass]
6304 x = var; [ic_assign]
6306 int x = var; [ic_init]
6308 return x; [ic_return]
6311 FUNCTION is a tree for the function being called.
6312 PARMNUM is the number of the argument, for printing in error messages. */
6315 convert_for_assignment (location_t location
, location_t expr_loc
, tree type
,
6316 tree rhs
, tree origtype
, enum impl_conv errtype
,
6317 bool null_pointer_constant
, tree fundecl
,
6318 tree function
, int parmnum
)
6320 enum tree_code codel
= TREE_CODE (type
);
6321 tree orig_rhs
= rhs
;
6323 enum tree_code coder
;
6324 tree rname
= NULL_TREE
;
6325 bool objc_ok
= false;
6327 /* Use the expansion point location to handle cases such as user's
6328 function returning a wrong-type macro defined in a system header. */
6329 location
= expansion_point_location_if_in_system_header (location
);
6331 if (errtype
== ic_argpass
)
6334 /* Change pointer to function to the function itself for
6336 if (TREE_CODE (function
) == ADDR_EXPR
6337 && TREE_CODE (TREE_OPERAND (function
, 0)) == FUNCTION_DECL
)
6338 function
= TREE_OPERAND (function
, 0);
6340 /* Handle an ObjC selector specially for diagnostics. */
6341 selector
= objc_message_selector ();
6343 if (selector
&& parmnum
> 2)
6350 /* This macro is used to emit diagnostics to ensure that all format
6351 strings are complete sentences, visible to gettext and checked at
6353 #define PEDWARN_FOR_ASSIGNMENT(LOCATION, PLOC, OPT, AR, AS, IN, RE) \
6358 if (pedwarn (PLOC, OPT, AR, parmnum, rname)) \
6359 inform_for_arg (fundecl, (PLOC), parmnum, type, rhstype); \
6362 pedwarn (LOCATION, OPT, AS); \
6365 pedwarn_init (LOCATION, OPT, IN); \
6368 pedwarn (LOCATION, OPT, RE); \
6371 gcc_unreachable (); \
6375 /* This macro is used to emit diagnostics to ensure that all format
6376 strings are complete sentences, visible to gettext and checked at
6377 compile time. It is the same as PEDWARN_FOR_ASSIGNMENT but with an
6378 extra parameter to enumerate qualifiers. */
6379 #define PEDWARN_FOR_QUALIFIERS(LOCATION, PLOC, OPT, AR, AS, IN, RE, QUALS) \
6384 if (pedwarn (PLOC, OPT, AR, parmnum, rname, QUALS)) \
6385 inform_for_arg (fundecl, (PLOC), parmnum, type, rhstype); \
6388 pedwarn (LOCATION, OPT, AS, QUALS); \
6391 pedwarn (LOCATION, OPT, IN, QUALS); \
6394 pedwarn (LOCATION, OPT, RE, QUALS); \
6397 gcc_unreachable (); \
6401 /* This macro is used to emit diagnostics to ensure that all format
6402 strings are complete sentences, visible to gettext and checked at
6403 compile time. It is the same as PEDWARN_FOR_QUALIFIERS but uses
6404 warning_at instead of pedwarn. */
6405 #define WARNING_FOR_QUALIFIERS(LOCATION, PLOC, OPT, AR, AS, IN, RE, QUALS) \
6410 if (warning_at (PLOC, OPT, AR, parmnum, rname, QUALS)) \
6411 inform_for_arg (fundecl, (PLOC), parmnum, type, rhstype); \
6414 warning_at (LOCATION, OPT, AS, QUALS); \
6417 warning_at (LOCATION, OPT, IN, QUALS); \
6420 warning_at (LOCATION, OPT, RE, QUALS); \
6423 gcc_unreachable (); \
6427 if (TREE_CODE (rhs
) == EXCESS_PRECISION_EXPR
)
6428 rhs
= TREE_OPERAND (rhs
, 0);
6430 rhstype
= TREE_TYPE (rhs
);
6431 coder
= TREE_CODE (rhstype
);
6433 if (coder
== ERROR_MARK
)
6434 return error_mark_node
;
6436 if (c_dialect_objc ())
6459 objc_ok
= objc_compare_types (type
, rhstype
, parmno
, rname
);
6462 if (warn_cxx_compat
)
6464 tree checktype
= origtype
!= NULL_TREE
? origtype
: rhstype
;
6465 if (checktype
!= error_mark_node
6466 && TREE_CODE (type
) == ENUMERAL_TYPE
6467 && TYPE_MAIN_VARIANT (checktype
) != TYPE_MAIN_VARIANT (type
))
6471 if (pedwarn (expr_loc
, OPT_Wc___compat
, "enum conversion when "
6472 "passing argument %d of %qE is invalid in C++",
6474 inform ((fundecl
&& !DECL_IS_BUILTIN (fundecl
))
6475 ? DECL_SOURCE_LOCATION (fundecl
) : expr_loc
,
6476 "expected %qT but argument is of type %qT",
6480 pedwarn (location
, OPT_Wc___compat
, "enum conversion from %qT to "
6481 "%qT in assignment is invalid in C++", rhstype
, type
);
6484 pedwarn_init (location
, OPT_Wc___compat
, "enum conversion from "
6485 "%qT to %qT in initialization is invalid in C++",
6489 pedwarn (location
, OPT_Wc___compat
, "enum conversion from %qT to "
6490 "%qT in return is invalid in C++", rhstype
, type
);
6497 if (TYPE_MAIN_VARIANT (type
) == TYPE_MAIN_VARIANT (rhstype
))
6500 if (coder
== VOID_TYPE
)
6502 /* Except for passing an argument to an unprototyped function,
6503 this is a constraint violation. When passing an argument to
6504 an unprototyped function, it is compile-time undefined;
6505 making it a constraint in that case was rejected in
6507 error_at (location
, "void value not ignored as it ought to be");
6508 return error_mark_node
;
6510 rhs
= require_complete_type (location
, rhs
);
6511 if (rhs
== error_mark_node
)
6512 return error_mark_node
;
6514 if (coder
== POINTER_TYPE
&& reject_gcc_builtin (rhs
))
6515 return error_mark_node
;
6517 /* A non-reference type can convert to a reference. This handles
6518 va_start, va_copy and possibly port built-ins. */
6519 if (codel
== REFERENCE_TYPE
&& coder
!= REFERENCE_TYPE
)
6521 if (!lvalue_p (rhs
))
6523 error_at (location
, "cannot pass rvalue to reference parameter");
6524 return error_mark_node
;
6526 if (!c_mark_addressable (rhs
))
6527 return error_mark_node
;
6528 rhs
= build1 (ADDR_EXPR
, build_pointer_type (TREE_TYPE (rhs
)), rhs
);
6529 SET_EXPR_LOCATION (rhs
, location
);
6531 rhs
= convert_for_assignment (location
, expr_loc
,
6532 build_pointer_type (TREE_TYPE (type
)),
6533 rhs
, origtype
, errtype
,
6534 null_pointer_constant
, fundecl
, function
,
6536 if (rhs
== error_mark_node
)
6537 return error_mark_node
;
6539 rhs
= build1 (NOP_EXPR
, type
, rhs
);
6540 SET_EXPR_LOCATION (rhs
, location
);
6543 /* Some types can interconvert without explicit casts. */
6544 else if (codel
== VECTOR_TYPE
&& coder
== VECTOR_TYPE
6545 && vector_types_convertible_p (type
, TREE_TYPE (rhs
), true))
6546 return convert (type
, rhs
);
6547 /* Arithmetic types all interconvert, and enum is treated like int. */
6548 else if ((codel
== INTEGER_TYPE
|| codel
== REAL_TYPE
6549 || codel
== FIXED_POINT_TYPE
6550 || codel
== ENUMERAL_TYPE
|| codel
== COMPLEX_TYPE
6551 || codel
== BOOLEAN_TYPE
)
6552 && (coder
== INTEGER_TYPE
|| coder
== REAL_TYPE
6553 || coder
== FIXED_POINT_TYPE
6554 || coder
== ENUMERAL_TYPE
|| coder
== COMPLEX_TYPE
6555 || coder
== BOOLEAN_TYPE
))
6558 bool save
= in_late_binary_op
;
6559 if (codel
== BOOLEAN_TYPE
|| codel
== COMPLEX_TYPE
6560 || (coder
== REAL_TYPE
6561 && (codel
== INTEGER_TYPE
|| codel
== ENUMERAL_TYPE
)
6562 && sanitize_flags_p (SANITIZE_FLOAT_CAST
)))
6563 in_late_binary_op
= true;
6564 ret
= convert_and_check (expr_loc
!= UNKNOWN_LOCATION
6565 ? expr_loc
: location
, type
, orig_rhs
);
6566 in_late_binary_op
= save
;
6570 /* Aggregates in different TUs might need conversion. */
6571 if ((codel
== RECORD_TYPE
|| codel
== UNION_TYPE
)
6573 && comptypes (type
, rhstype
))
6574 return convert_and_check (expr_loc
!= UNKNOWN_LOCATION
6575 ? expr_loc
: location
, type
, rhs
);
6577 /* Conversion to a transparent union or record from its member types.
6578 This applies only to function arguments. */
6579 if (((codel
== UNION_TYPE
|| codel
== RECORD_TYPE
)
6580 && TYPE_TRANSPARENT_AGGR (type
))
6581 && errtype
== ic_argpass
)
6583 tree memb
, marginal_memb
= NULL_TREE
;
6585 for (memb
= TYPE_FIELDS (type
); memb
; memb
= DECL_CHAIN (memb
))
6587 tree memb_type
= TREE_TYPE (memb
);
6589 if (comptypes (TYPE_MAIN_VARIANT (memb_type
),
6590 TYPE_MAIN_VARIANT (rhstype
)))
6593 if (TREE_CODE (memb_type
) != POINTER_TYPE
)
6596 if (coder
== POINTER_TYPE
)
6598 tree ttl
= TREE_TYPE (memb_type
);
6599 tree ttr
= TREE_TYPE (rhstype
);
6601 /* Any non-function converts to a [const][volatile] void *
6602 and vice versa; otherwise, targets must be the same.
6603 Meanwhile, the lhs target must have all the qualifiers of
6605 if ((VOID_TYPE_P (ttl
) && !TYPE_ATOMIC (ttl
))
6606 || (VOID_TYPE_P (ttr
) && !TYPE_ATOMIC (ttr
))
6607 || comp_target_types (location
, memb_type
, rhstype
))
6609 int lquals
= TYPE_QUALS (ttl
) & ~TYPE_QUAL_ATOMIC
;
6610 int rquals
= TYPE_QUALS (ttr
) & ~TYPE_QUAL_ATOMIC
;
6611 /* If this type won't generate any warnings, use it. */
6612 if (lquals
== rquals
6613 || ((TREE_CODE (ttr
) == FUNCTION_TYPE
6614 && TREE_CODE (ttl
) == FUNCTION_TYPE
)
6615 ? ((lquals
| rquals
) == rquals
)
6616 : ((lquals
| rquals
) == lquals
)))
6619 /* Keep looking for a better type, but remember this one. */
6621 marginal_memb
= memb
;
6625 /* Can convert integer zero to any pointer type. */
6626 if (null_pointer_constant
)
6628 rhs
= null_pointer_node
;
6633 if (memb
|| marginal_memb
)
6637 /* We have only a marginally acceptable member type;
6638 it needs a warning. */
6639 tree ttl
= TREE_TYPE (TREE_TYPE (marginal_memb
));
6640 tree ttr
= TREE_TYPE (rhstype
);
6642 /* Const and volatile mean something different for function
6643 types, so the usual warnings are not appropriate. */
6644 if (TREE_CODE (ttr
) == FUNCTION_TYPE
6645 && TREE_CODE (ttl
) == FUNCTION_TYPE
)
6647 /* Because const and volatile on functions are
6648 restrictions that say the function will not do
6649 certain things, it is okay to use a const or volatile
6650 function where an ordinary one is wanted, but not
6652 if (TYPE_QUALS_NO_ADDR_SPACE (ttl
)
6653 & ~TYPE_QUALS_NO_ADDR_SPACE (ttr
))
6654 PEDWARN_FOR_QUALIFIERS (location
, expr_loc
,
6655 OPT_Wdiscarded_qualifiers
,
6656 G_("passing argument %d of %qE "
6657 "makes %q#v qualified function "
6658 "pointer from unqualified"),
6659 G_("assignment makes %q#v qualified "
6660 "function pointer from "
6662 G_("initialization makes %q#v qualified "
6663 "function pointer from "
6665 G_("return makes %q#v qualified function "
6666 "pointer from unqualified"),
6667 TYPE_QUALS (ttl
) & ~TYPE_QUALS (ttr
));
6669 else if (TYPE_QUALS_NO_ADDR_SPACE (ttr
)
6670 & ~TYPE_QUALS_NO_ADDR_SPACE (ttl
))
6671 PEDWARN_FOR_QUALIFIERS (location
, expr_loc
,
6672 OPT_Wdiscarded_qualifiers
,
6673 G_("passing argument %d of %qE discards "
6674 "%qv qualifier from pointer target type"),
6675 G_("assignment discards %qv qualifier "
6676 "from pointer target type"),
6677 G_("initialization discards %qv qualifier "
6678 "from pointer target type"),
6679 G_("return discards %qv qualifier from "
6680 "pointer target type"),
6681 TYPE_QUALS (ttr
) & ~TYPE_QUALS (ttl
));
6683 memb
= marginal_memb
;
6686 if (!fundecl
|| !DECL_IN_SYSTEM_HEADER (fundecl
))
6687 pedwarn (location
, OPT_Wpedantic
,
6688 "ISO C prohibits argument conversion to union type");
6690 rhs
= fold_convert_loc (location
, TREE_TYPE (memb
), rhs
);
6691 return build_constructor_single (type
, memb
, rhs
);
6695 /* Conversions among pointers */
6696 else if ((codel
== POINTER_TYPE
|| codel
== REFERENCE_TYPE
)
6697 && (coder
== codel
))
6699 tree ttl
= TREE_TYPE (type
);
6700 tree ttr
= TREE_TYPE (rhstype
);
6703 bool is_opaque_pointer
;
6704 int target_cmp
= 0; /* Cache comp_target_types () result. */
6708 if (TREE_CODE (mvl
) != ARRAY_TYPE
)
6709 mvl
= (TYPE_ATOMIC (mvl
)
6710 ? c_build_qualified_type (TYPE_MAIN_VARIANT (mvl
),
6712 : TYPE_MAIN_VARIANT (mvl
));
6713 if (TREE_CODE (mvr
) != ARRAY_TYPE
)
6714 mvr
= (TYPE_ATOMIC (mvr
)
6715 ? c_build_qualified_type (TYPE_MAIN_VARIANT (mvr
),
6717 : TYPE_MAIN_VARIANT (mvr
));
6718 /* Opaque pointers are treated like void pointers. */
6719 is_opaque_pointer
= vector_targets_convertible_p (ttl
, ttr
);
6721 /* The Plan 9 compiler permits a pointer to a struct to be
6722 automatically converted into a pointer to an anonymous field
6723 within the struct. */
6724 if (flag_plan9_extensions
6725 && RECORD_OR_UNION_TYPE_P (mvl
)
6726 && RECORD_OR_UNION_TYPE_P (mvr
)
6729 tree new_rhs
= convert_to_anonymous_field (location
, type
, rhs
);
6730 if (new_rhs
!= NULL_TREE
)
6733 rhstype
= TREE_TYPE (rhs
);
6734 coder
= TREE_CODE (rhstype
);
6735 ttr
= TREE_TYPE (rhstype
);
6736 mvr
= TYPE_MAIN_VARIANT (ttr
);
6740 /* C++ does not allow the implicit conversion void* -> T*. However,
6741 for the purpose of reducing the number of false positives, we
6742 tolerate the special case of
6746 where NULL is typically defined in C to be '(void *) 0'. */
6747 if (VOID_TYPE_P (ttr
) && rhs
!= null_pointer_node
&& !VOID_TYPE_P (ttl
))
6748 warning_at (errtype
== ic_argpass
? expr_loc
: location
,
6750 "request for implicit conversion "
6751 "from %qT to %qT not permitted in C++", rhstype
, type
);
6753 /* See if the pointers point to incompatible address spaces. */
6754 asl
= TYPE_ADDR_SPACE (ttl
);
6755 asr
= TYPE_ADDR_SPACE (ttr
);
6756 if (!null_pointer_constant_p (rhs
)
6757 && asr
!= asl
&& !targetm
.addr_space
.subset_p (asr
, asl
))
6762 error_at (expr_loc
, "passing argument %d of %qE from pointer to "
6763 "non-enclosed address space", parmnum
, rname
);
6766 error_at (location
, "assignment from pointer to "
6767 "non-enclosed address space");
6770 error_at (location
, "initialization from pointer to "
6771 "non-enclosed address space");
6774 error_at (location
, "return from pointer to "
6775 "non-enclosed address space");
6780 return error_mark_node
;
6783 /* Check if the right-hand side has a format attribute but the
6784 left-hand side doesn't. */
6785 if (warn_suggest_attribute_format
6786 && check_missing_format_attribute (type
, rhstype
))
6791 warning_at (expr_loc
, OPT_Wsuggest_attribute_format
,
6792 "argument %d of %qE might be "
6793 "a candidate for a format attribute",
6797 warning_at (location
, OPT_Wsuggest_attribute_format
,
6798 "assignment left-hand side might be "
6799 "a candidate for a format attribute");
6802 warning_at (location
, OPT_Wsuggest_attribute_format
,
6803 "initialization left-hand side might be "
6804 "a candidate for a format attribute");
6807 warning_at (location
, OPT_Wsuggest_attribute_format
,
6808 "return type might be "
6809 "a candidate for a format attribute");
6816 /* Any non-function converts to a [const][volatile] void *
6817 and vice versa; otherwise, targets must be the same.
6818 Meanwhile, the lhs target must have all the qualifiers of the rhs. */
6819 if ((VOID_TYPE_P (ttl
) && !TYPE_ATOMIC (ttl
))
6820 || (VOID_TYPE_P (ttr
) && !TYPE_ATOMIC (ttr
))
6821 || (target_cmp
= comp_target_types (location
, type
, rhstype
))
6822 || is_opaque_pointer
6823 || ((c_common_unsigned_type (mvl
)
6824 == c_common_unsigned_type (mvr
))
6825 && (c_common_signed_type (mvl
)
6826 == c_common_signed_type (mvr
))
6827 && TYPE_ATOMIC (mvl
) == TYPE_ATOMIC (mvr
)))
6829 /* Warn about loss of qualifers from pointers to arrays with
6830 qualifiers on the element type. */
6831 if (TREE_CODE (ttr
) == ARRAY_TYPE
)
6833 ttr
= strip_array_types (ttr
);
6834 ttl
= strip_array_types (ttl
);
6836 if (TYPE_QUALS_NO_ADDR_SPACE_NO_ATOMIC (ttr
)
6837 & ~TYPE_QUALS_NO_ADDR_SPACE_NO_ATOMIC (ttl
))
6838 WARNING_FOR_QUALIFIERS (location
, expr_loc
,
6839 OPT_Wdiscarded_array_qualifiers
,
6840 G_("passing argument %d of %qE discards "
6841 "%qv qualifier from pointer target type"),
6842 G_("assignment discards %qv qualifier "
6843 "from pointer target type"),
6844 G_("initialization discards %qv qualifier "
6845 "from pointer target type"),
6846 G_("return discards %qv qualifier from "
6847 "pointer target type"),
6848 TYPE_QUALS (ttr
) & ~TYPE_QUALS (ttl
));
6851 && ((VOID_TYPE_P (ttl
) && TREE_CODE (ttr
) == FUNCTION_TYPE
)
6854 && !null_pointer_constant
6855 && TREE_CODE (ttl
) == FUNCTION_TYPE
)))
6856 PEDWARN_FOR_ASSIGNMENT (location
, expr_loc
, OPT_Wpedantic
,
6857 G_("ISO C forbids passing argument %d of "
6858 "%qE between function pointer "
6860 G_("ISO C forbids assignment between "
6861 "function pointer and %<void *%>"),
6862 G_("ISO C forbids initialization between "
6863 "function pointer and %<void *%>"),
6864 G_("ISO C forbids return between function "
6865 "pointer and %<void *%>"));
6866 /* Const and volatile mean something different for function types,
6867 so the usual warnings are not appropriate. */
6868 else if (TREE_CODE (ttr
) != FUNCTION_TYPE
6869 && TREE_CODE (ttl
) != FUNCTION_TYPE
)
6871 /* Don't warn about loss of qualifier for conversions from
6872 qualified void* to pointers to arrays with corresponding
6873 qualifier on the element type. */
6875 ttl
= strip_array_types (ttl
);
6877 /* Assignments between atomic and non-atomic objects are OK. */
6878 if (TYPE_QUALS_NO_ADDR_SPACE_NO_ATOMIC (ttr
)
6879 & ~TYPE_QUALS_NO_ADDR_SPACE_NO_ATOMIC (ttl
))
6881 PEDWARN_FOR_QUALIFIERS (location
, expr_loc
,
6882 OPT_Wdiscarded_qualifiers
,
6883 G_("passing argument %d of %qE discards "
6884 "%qv qualifier from pointer target type"),
6885 G_("assignment discards %qv qualifier "
6886 "from pointer target type"),
6887 G_("initialization discards %qv qualifier "
6888 "from pointer target type"),
6889 G_("return discards %qv qualifier from "
6890 "pointer target type"),
6891 TYPE_QUALS (ttr
) & ~TYPE_QUALS (ttl
));
6893 /* If this is not a case of ignoring a mismatch in signedness,
6895 else if (VOID_TYPE_P (ttl
) || VOID_TYPE_P (ttr
)
6898 /* If there is a mismatch, do warn. */
6899 else if (warn_pointer_sign
)
6903 if (pedwarn (expr_loc
, OPT_Wpointer_sign
,
6904 "pointer targets in passing argument %d of "
6905 "%qE differ in signedness", parmnum
, rname
))
6906 inform ((fundecl
&& !DECL_IS_BUILTIN (fundecl
))
6907 ? DECL_SOURCE_LOCATION (fundecl
) : expr_loc
,
6908 "expected %qT but argument is of type %qT",
6912 pedwarn (location
, OPT_Wpointer_sign
,
6913 "pointer targets in assignment from %qT to %qT "
6914 "differ in signedness", rhstype
, type
);
6917 pedwarn_init (location
, OPT_Wpointer_sign
,
6918 "pointer targets in initialization of %qT "
6919 "from %qT differ in signedness", type
,
6923 pedwarn (location
, OPT_Wpointer_sign
, "pointer targets in "
6924 "returning %qT from a function with return type "
6925 "%qT differ in signedness", rhstype
, type
);
6931 else if (TREE_CODE (ttl
) == FUNCTION_TYPE
6932 && TREE_CODE (ttr
) == FUNCTION_TYPE
)
6934 /* Because const and volatile on functions are restrictions
6935 that say the function will not do certain things,
6936 it is okay to use a const or volatile function
6937 where an ordinary one is wanted, but not vice-versa. */
6938 if (TYPE_QUALS_NO_ADDR_SPACE (ttl
)
6939 & ~TYPE_QUALS_NO_ADDR_SPACE (ttr
))
6940 PEDWARN_FOR_QUALIFIERS (location
, expr_loc
,
6941 OPT_Wdiscarded_qualifiers
,
6942 G_("passing argument %d of %qE makes "
6943 "%q#v qualified function pointer "
6944 "from unqualified"),
6945 G_("assignment makes %q#v qualified function "
6946 "pointer from unqualified"),
6947 G_("initialization makes %q#v qualified "
6948 "function pointer from unqualified"),
6949 G_("return makes %q#v qualified function "
6950 "pointer from unqualified"),
6951 TYPE_QUALS (ttl
) & ~TYPE_QUALS (ttr
));
6954 /* Avoid warning about the volatile ObjC EH puts on decls. */
6960 if (pedwarn (expr_loc
, OPT_Wincompatible_pointer_types
,
6961 "passing argument %d of %qE from incompatible "
6962 "pointer type", parmnum
, rname
))
6963 inform_for_arg (fundecl
, expr_loc
, parmnum
, type
, rhstype
);
6966 pedwarn (location
, OPT_Wincompatible_pointer_types
,
6967 "assignment to %qT from incompatible pointer type %qT",
6971 pedwarn_init (location
, OPT_Wincompatible_pointer_types
,
6972 "initialization of %qT from incompatible pointer "
6973 "type %qT", type
, rhstype
);
6976 pedwarn (location
, OPT_Wincompatible_pointer_types
,
6977 "returning %qT from a function with incompatible "
6978 "return type %qT", rhstype
, type
);
6985 return convert (type
, rhs
);
6987 else if (codel
== POINTER_TYPE
&& coder
== ARRAY_TYPE
)
6989 /* ??? This should not be an error when inlining calls to
6990 unprototyped functions. */
6991 error_at (location
, "invalid use of non-lvalue array");
6992 return error_mark_node
;
6994 else if (codel
== POINTER_TYPE
&& coder
== INTEGER_TYPE
)
6996 /* An explicit constant 0 can convert to a pointer,
6997 or one that results from arithmetic, even including
6998 a cast to integer type. */
6999 if (!null_pointer_constant
)
7003 if (pedwarn (expr_loc
, OPT_Wint_conversion
,
7004 "passing argument %d of %qE makes pointer from "
7005 "integer without a cast", parmnum
, rname
))
7006 inform_for_arg (fundecl
, expr_loc
, parmnum
, type
, rhstype
);
7009 pedwarn (location
, OPT_Wint_conversion
,
7010 "assignment to %qT from %qT makes pointer from integer "
7011 "without a cast", type
, rhstype
);
7014 pedwarn_init (location
, OPT_Wint_conversion
,
7015 "initialization of %qT from %qT makes pointer from "
7016 "integer without a cast", type
, rhstype
);
7019 pedwarn (location
, OPT_Wint_conversion
, "returning %qT from a "
7020 "function with return type %qT makes pointer from "
7021 "integer without a cast", rhstype
, type
);
7027 return convert (type
, rhs
);
7029 else if (codel
== INTEGER_TYPE
&& coder
== POINTER_TYPE
)
7034 if (pedwarn (expr_loc
, OPT_Wint_conversion
,
7035 "passing argument %d of %qE makes integer from "
7036 "pointer without a cast", parmnum
, rname
))
7037 inform_for_arg (fundecl
, expr_loc
, parmnum
, type
, rhstype
);
7040 pedwarn (location
, OPT_Wint_conversion
,
7041 "assignment to %qT from %qT makes integer from pointer "
7042 "without a cast", type
, rhstype
);
7045 pedwarn_init (location
, OPT_Wint_conversion
,
7046 "initialization of %qT from %qT makes integer from "
7047 "pointer without a cast", type
, rhstype
);
7050 pedwarn (location
, OPT_Wint_conversion
, "returning %qT from a "
7051 "function with return type %qT makes integer from "
7052 "pointer without a cast", rhstype
, type
);
7058 return convert (type
, rhs
);
7060 else if (codel
== BOOLEAN_TYPE
&& coder
== POINTER_TYPE
)
7063 bool save
= in_late_binary_op
;
7064 in_late_binary_op
= true;
7065 ret
= convert (type
, rhs
);
7066 in_late_binary_op
= save
;
7073 error_at (expr_loc
, "incompatible type for argument %d of %qE", parmnum
,
7075 inform_for_arg (fundecl
, expr_loc
, parmnum
, type
, rhstype
);
7078 error_at (location
, "incompatible types when assigning to type %qT from "
7079 "type %qT", type
, rhstype
);
7083 "incompatible types when initializing type %qT using type %qT",
7088 "incompatible types when returning type %qT but %qT was "
7089 "expected", rhstype
, type
);
7095 return error_mark_node
;
7098 /* If VALUE is a compound expr all of whose expressions are constant, then
7099 return its value. Otherwise, return error_mark_node.
7101 This is for handling COMPOUND_EXPRs as initializer elements
7102 which is allowed with a warning when -pedantic is specified. */
7105 valid_compound_expr_initializer (tree value
, tree endtype
)
7107 if (TREE_CODE (value
) == COMPOUND_EXPR
)
7109 if (valid_compound_expr_initializer (TREE_OPERAND (value
, 0), endtype
)
7111 return error_mark_node
;
7112 return valid_compound_expr_initializer (TREE_OPERAND (value
, 1),
7115 else if (!initializer_constant_valid_p (value
, endtype
))
7116 return error_mark_node
;
7121 /* Perform appropriate conversions on the initial value of a variable,
7122 store it in the declaration DECL,
7123 and print any error messages that are appropriate.
7124 If ORIGTYPE is not NULL_TREE, it is the original type of INIT.
7125 If the init is invalid, store an ERROR_MARK.
7127 INIT_LOC is the location of the initial value. */
7130 store_init_value (location_t init_loc
, tree decl
, tree init
, tree origtype
)
7135 /* If variable's type was invalidly declared, just ignore it. */
7137 type
= TREE_TYPE (decl
);
7138 if (TREE_CODE (type
) == ERROR_MARK
)
7141 /* Digest the specified initializer into an expression. */
7144 npc
= null_pointer_constant_p (init
);
7145 value
= digest_init (init_loc
, type
, init
, origtype
, npc
,
7146 true, TREE_STATIC (decl
));
7148 /* Store the expression if valid; else report error. */
7150 if (!in_system_header_at (input_location
)
7151 && AGGREGATE_TYPE_P (TREE_TYPE (decl
)) && !TREE_STATIC (decl
))
7152 warning (OPT_Wtraditional
, "traditional C rejects automatic "
7153 "aggregate initialization");
7155 if (value
!= error_mark_node
|| TREE_CODE (decl
) != FUNCTION_DECL
)
7156 DECL_INITIAL (decl
) = value
;
7158 /* ANSI wants warnings about out-of-range constant initializers. */
7159 STRIP_TYPE_NOPS (value
);
7160 if (TREE_STATIC (decl
))
7161 constant_expression_warning (value
);
7163 /* Check if we need to set array size from compound literal size. */
7164 if (TREE_CODE (type
) == ARRAY_TYPE
7165 && TYPE_DOMAIN (type
) == NULL_TREE
7166 && value
!= error_mark_node
)
7168 tree inside_init
= init
;
7170 STRIP_TYPE_NOPS (inside_init
);
7171 inside_init
= fold (inside_init
);
7173 if (TREE_CODE (inside_init
) == COMPOUND_LITERAL_EXPR
)
7175 tree cldecl
= COMPOUND_LITERAL_EXPR_DECL (inside_init
);
7177 if (TYPE_DOMAIN (TREE_TYPE (cldecl
)))
7179 /* For int foo[] = (int [3]){1}; we need to set array size
7180 now since later on array initializer will be just the
7181 brace enclosed list of the compound literal. */
7182 tree etype
= strip_array_types (TREE_TYPE (decl
));
7183 type
= build_distinct_type_copy (TYPE_MAIN_VARIANT (type
));
7184 TYPE_DOMAIN (type
) = TYPE_DOMAIN (TREE_TYPE (cldecl
));
7186 layout_decl (cldecl
, 0);
7188 = c_build_qualified_type (type
, TYPE_QUALS (etype
));
7194 /* Methods for storing and printing names for error messages. */
7196 /* Implement a spelling stack that allows components of a name to be pushed
7197 and popped. Each element on the stack is this structure. */
7204 unsigned HOST_WIDE_INT i
;
7209 #define SPELLING_STRING 1
7210 #define SPELLING_MEMBER 2
7211 #define SPELLING_BOUNDS 3
7213 static struct spelling
*spelling
; /* Next stack element (unused). */
7214 static struct spelling
*spelling_base
; /* Spelling stack base. */
7215 static int spelling_size
; /* Size of the spelling stack. */
7217 /* Macros to save and restore the spelling stack around push_... functions.
7218 Alternative to SAVE_SPELLING_STACK. */
7220 #define SPELLING_DEPTH() (spelling - spelling_base)
7221 #define RESTORE_SPELLING_DEPTH(DEPTH) (spelling = spelling_base + (DEPTH))
7223 /* Push an element on the spelling stack with type KIND and assign VALUE
7226 #define PUSH_SPELLING(KIND, VALUE, MEMBER) \
7228 int depth = SPELLING_DEPTH (); \
7230 if (depth >= spelling_size) \
7232 spelling_size += 10; \
7233 spelling_base = XRESIZEVEC (struct spelling, spelling_base, \
7235 RESTORE_SPELLING_DEPTH (depth); \
7238 spelling->kind = (KIND); \
7239 spelling->MEMBER = (VALUE); \
7243 /* Push STRING on the stack. Printed literally. */
7246 push_string (const char *string
)
7248 PUSH_SPELLING (SPELLING_STRING
, string
, u
.s
);
7251 /* Push a member name on the stack. Printed as '.' STRING. */
7254 push_member_name (tree decl
)
7256 const char *const string
7258 ? identifier_to_locale (IDENTIFIER_POINTER (DECL_NAME (decl
)))
7259 : _("<anonymous>"));
7260 PUSH_SPELLING (SPELLING_MEMBER
, string
, u
.s
);
7263 /* Push an array bounds on the stack. Printed as [BOUNDS]. */
7266 push_array_bounds (unsigned HOST_WIDE_INT bounds
)
7268 PUSH_SPELLING (SPELLING_BOUNDS
, bounds
, u
.i
);
7271 /* Compute the maximum size in bytes of the printed spelling. */
7274 spelling_length (void)
7279 for (p
= spelling_base
; p
< spelling
; p
++)
7281 if (p
->kind
== SPELLING_BOUNDS
)
7284 size
+= strlen (p
->u
.s
) + 1;
7290 /* Print the spelling to BUFFER and return it. */
7293 print_spelling (char *buffer
)
7298 for (p
= spelling_base
; p
< spelling
; p
++)
7299 if (p
->kind
== SPELLING_BOUNDS
)
7301 sprintf (d
, "[" HOST_WIDE_INT_PRINT_UNSIGNED
"]", p
->u
.i
);
7307 if (p
->kind
== SPELLING_MEMBER
)
7309 for (s
= p
->u
.s
; (*d
= *s
++); d
++)
7316 /* Digest the parser output INIT as an initializer for type TYPE.
7317 Return a C expression of type TYPE to represent the initial value.
7319 If ORIGTYPE is not NULL_TREE, it is the original type of INIT.
7321 NULL_POINTER_CONSTANT is true if INIT is a null pointer constant.
7323 If INIT is a string constant, STRICT_STRING is true if it is
7324 unparenthesized or we should not warn here for it being parenthesized.
7325 For other types of INIT, STRICT_STRING is not used.
7327 INIT_LOC is the location of the INIT.
7329 REQUIRE_CONSTANT requests an error if non-constant initializers or
7330 elements are seen. */
7333 digest_init (location_t init_loc
, tree type
, tree init
, tree origtype
,
7334 bool null_pointer_constant
, bool strict_string
,
7335 int require_constant
)
7337 enum tree_code code
= TREE_CODE (type
);
7338 tree inside_init
= init
;
7339 tree semantic_type
= NULL_TREE
;
7340 bool maybe_const
= true;
7342 if (type
== error_mark_node
7344 || error_operand_p (init
))
7345 return error_mark_node
;
7347 STRIP_TYPE_NOPS (inside_init
);
7349 if (TREE_CODE (inside_init
) == EXCESS_PRECISION_EXPR
)
7351 semantic_type
= TREE_TYPE (inside_init
);
7352 inside_init
= TREE_OPERAND (inside_init
, 0);
7354 inside_init
= c_fully_fold (inside_init
, require_constant
, &maybe_const
);
7356 /* Initialization of an array of chars from a string constant
7357 optionally enclosed in braces. */
7359 if (code
== ARRAY_TYPE
&& inside_init
7360 && TREE_CODE (inside_init
) == STRING_CST
)
7363 = (TYPE_ATOMIC (TREE_TYPE (type
))
7364 ? c_build_qualified_type (TYPE_MAIN_VARIANT (TREE_TYPE (type
)),
7366 : TYPE_MAIN_VARIANT (TREE_TYPE (type
)));
7367 /* Note that an array could be both an array of character type
7368 and an array of wchar_t if wchar_t is signed char or unsigned
7370 bool char_array
= (typ1
== char_type_node
7371 || typ1
== signed_char_type_node
7372 || typ1
== unsigned_char_type_node
);
7373 bool wchar_array
= !!comptypes (typ1
, wchar_type_node
);
7374 bool char16_array
= !!comptypes (typ1
, char16_type_node
);
7375 bool char32_array
= !!comptypes (typ1
, char32_type_node
);
7377 if (char_array
|| wchar_array
|| char16_array
|| char32_array
)
7380 tree typ2
= TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (inside_init
)));
7381 expr
.value
= inside_init
;
7382 expr
.original_code
= (strict_string
? STRING_CST
: ERROR_MARK
);
7383 expr
.original_type
= NULL
;
7384 maybe_warn_string_init (init_loc
, type
, expr
);
7386 if (TYPE_DOMAIN (type
) && !TYPE_MAX_VALUE (TYPE_DOMAIN (type
)))
7387 pedwarn_init (init_loc
, OPT_Wpedantic
,
7388 "initialization of a flexible array member");
7390 if (comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (inside_init
)),
7391 TYPE_MAIN_VARIANT (type
)))
7396 if (typ2
!= char_type_node
)
7398 error_init (init_loc
, "char-array initialized from wide "
7400 return error_mark_node
;
7405 if (typ2
== char_type_node
)
7407 error_init (init_loc
, "wide character array initialized "
7408 "from non-wide string");
7409 return error_mark_node
;
7411 else if (!comptypes(typ1
, typ2
))
7413 error_init (init_loc
, "wide character array initialized "
7414 "from incompatible wide string");
7415 return error_mark_node
;
7419 TREE_TYPE (inside_init
) = type
;
7420 if (TYPE_DOMAIN (type
) != NULL_TREE
7421 && TYPE_SIZE (type
) != NULL_TREE
7422 && TREE_CODE (TYPE_SIZE (type
)) == INTEGER_CST
)
7424 unsigned HOST_WIDE_INT len
= TREE_STRING_LENGTH (inside_init
);
7426 /* Subtract the size of a single (possibly wide) character
7427 because it's ok to ignore the terminating null char
7428 that is counted in the length of the constant. */
7429 if (compare_tree_int (TYPE_SIZE_UNIT (type
),
7430 (len
- (TYPE_PRECISION (typ1
)
7431 / BITS_PER_UNIT
))) < 0)
7432 pedwarn_init (init_loc
, 0,
7433 ("initializer-string for array of chars "
7435 else if (warn_cxx_compat
7436 && compare_tree_int (TYPE_SIZE_UNIT (type
), len
) < 0)
7437 warning_at (init_loc
, OPT_Wc___compat
,
7438 ("initializer-string for array chars "
7439 "is too long for C++"));
7444 else if (INTEGRAL_TYPE_P (typ1
))
7446 error_init (init_loc
, "array of inappropriate type initialized "
7447 "from string constant");
7448 return error_mark_node
;
7452 /* Build a VECTOR_CST from a *constant* vector constructor. If the
7453 vector constructor is not constant (e.g. {1,2,3,foo()}) then punt
7454 below and handle as a constructor. */
7455 if (code
== VECTOR_TYPE
7456 && VECTOR_TYPE_P (TREE_TYPE (inside_init
))
7457 && vector_types_convertible_p (TREE_TYPE (inside_init
), type
, true)
7458 && TREE_CONSTANT (inside_init
))
7460 if (TREE_CODE (inside_init
) == VECTOR_CST
7461 && comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (inside_init
)),
7462 TYPE_MAIN_VARIANT (type
)))
7465 if (TREE_CODE (inside_init
) == CONSTRUCTOR
)
7467 unsigned HOST_WIDE_INT ix
;
7469 bool constant_p
= true;
7471 /* Iterate through elements and check if all constructor
7472 elements are *_CSTs. */
7473 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (inside_init
), ix
, value
)
7474 if (!CONSTANT_CLASS_P (value
))
7481 return build_vector_from_ctor (type
,
7482 CONSTRUCTOR_ELTS (inside_init
));
7486 if (warn_sequence_point
)
7487 verify_sequence_points (inside_init
);
7489 /* Any type can be initialized
7490 from an expression of the same type, optionally with braces. */
7492 if (inside_init
&& TREE_TYPE (inside_init
) != NULL_TREE
7493 && (comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (inside_init
)),
7494 TYPE_MAIN_VARIANT (type
))
7495 || (code
== ARRAY_TYPE
7496 && comptypes (TREE_TYPE (inside_init
), type
))
7497 || (code
== VECTOR_TYPE
7498 && comptypes (TREE_TYPE (inside_init
), type
))
7499 || (code
== POINTER_TYPE
7500 && TREE_CODE (TREE_TYPE (inside_init
)) == ARRAY_TYPE
7501 && comptypes (TREE_TYPE (TREE_TYPE (inside_init
)),
7502 TREE_TYPE (type
)))))
7504 if (code
== POINTER_TYPE
)
7506 if (TREE_CODE (TREE_TYPE (inside_init
)) == ARRAY_TYPE
)
7508 if (TREE_CODE (inside_init
) == STRING_CST
7509 || TREE_CODE (inside_init
) == COMPOUND_LITERAL_EXPR
)
7510 inside_init
= array_to_pointer_conversion
7511 (init_loc
, inside_init
);
7514 error_init (init_loc
, "invalid use of non-lvalue array");
7515 return error_mark_node
;
7520 if (code
== VECTOR_TYPE
)
7521 /* Although the types are compatible, we may require a
7523 inside_init
= convert (type
, inside_init
);
7525 if (require_constant
7526 && TREE_CODE (inside_init
) == COMPOUND_LITERAL_EXPR
)
7528 /* As an extension, allow initializing objects with static storage
7529 duration with compound literals (which are then treated just as
7530 the brace enclosed list they contain). Also allow this for
7531 vectors, as we can only assign them with compound literals. */
7532 if (flag_isoc99
&& code
!= VECTOR_TYPE
)
7533 pedwarn_init (init_loc
, OPT_Wpedantic
, "initializer element "
7535 tree decl
= COMPOUND_LITERAL_EXPR_DECL (inside_init
);
7536 inside_init
= DECL_INITIAL (decl
);
7539 if (code
== ARRAY_TYPE
&& TREE_CODE (inside_init
) != STRING_CST
7540 && TREE_CODE (inside_init
) != CONSTRUCTOR
)
7542 error_init (init_loc
, "array initialized from non-constant array "
7544 return error_mark_node
;
7547 /* Compound expressions can only occur here if -Wpedantic or
7548 -pedantic-errors is specified. In the later case, we always want
7549 an error. In the former case, we simply want a warning. */
7550 if (require_constant
&& pedantic
7551 && TREE_CODE (inside_init
) == COMPOUND_EXPR
)
7554 = valid_compound_expr_initializer (inside_init
,
7555 TREE_TYPE (inside_init
));
7556 if (inside_init
== error_mark_node
)
7557 error_init (init_loc
, "initializer element is not constant");
7559 pedwarn_init (init_loc
, OPT_Wpedantic
,
7560 "initializer element is not constant");
7561 if (flag_pedantic_errors
)
7562 inside_init
= error_mark_node
;
7564 else if (require_constant
7565 && !initializer_constant_valid_p (inside_init
,
7566 TREE_TYPE (inside_init
)))
7568 error_init (init_loc
, "initializer element is not constant");
7569 inside_init
= error_mark_node
;
7571 else if (require_constant
&& !maybe_const
)
7572 pedwarn_init (init_loc
, OPT_Wpedantic
,
7573 "initializer element is not a constant expression");
7575 /* Added to enable additional -Wsuggest-attribute=format warnings. */
7576 if (TREE_CODE (TREE_TYPE (inside_init
)) == POINTER_TYPE
)
7577 inside_init
= convert_for_assignment (init_loc
, UNKNOWN_LOCATION
,
7578 type
, inside_init
, origtype
,
7579 ic_init
, null_pointer_constant
,
7580 NULL_TREE
, NULL_TREE
, 0);
7584 /* Handle scalar types, including conversions. */
7586 if (code
== INTEGER_TYPE
|| code
== REAL_TYPE
|| code
== FIXED_POINT_TYPE
7587 || code
== POINTER_TYPE
|| code
== ENUMERAL_TYPE
|| code
== BOOLEAN_TYPE
7588 || code
== COMPLEX_TYPE
|| code
== VECTOR_TYPE
)
7590 if (TREE_CODE (TREE_TYPE (init
)) == ARRAY_TYPE
7591 && (TREE_CODE (init
) == STRING_CST
7592 || TREE_CODE (init
) == COMPOUND_LITERAL_EXPR
))
7593 inside_init
= init
= array_to_pointer_conversion (init_loc
, init
);
7595 inside_init
= build1 (EXCESS_PRECISION_EXPR
, semantic_type
,
7598 = convert_for_assignment (init_loc
, UNKNOWN_LOCATION
, type
,
7599 inside_init
, origtype
, ic_init
,
7600 null_pointer_constant
, NULL_TREE
, NULL_TREE
,
7603 /* Check to see if we have already given an error message. */
7604 if (inside_init
== error_mark_node
)
7606 else if (require_constant
&& !TREE_CONSTANT (inside_init
))
7608 error_init (init_loc
, "initializer element is not constant");
7609 inside_init
= error_mark_node
;
7611 else if (require_constant
7612 && !initializer_constant_valid_p (inside_init
,
7613 TREE_TYPE (inside_init
)))
7615 error_init (init_loc
, "initializer element is not computable at "
7617 inside_init
= error_mark_node
;
7619 else if (require_constant
&& !maybe_const
)
7620 pedwarn_init (init_loc
, OPT_Wpedantic
,
7621 "initializer element is not a constant expression");
7626 /* Come here only for records and arrays. */
7628 if (COMPLETE_TYPE_P (type
) && TREE_CODE (TYPE_SIZE (type
)) != INTEGER_CST
)
7630 error_init (init_loc
, "variable-sized object may not be initialized");
7631 return error_mark_node
;
7634 error_init (init_loc
, "invalid initializer");
7635 return error_mark_node
;
7638 /* Handle initializers that use braces. */
7640 /* Type of object we are accumulating a constructor for.
7641 This type is always a RECORD_TYPE, UNION_TYPE or ARRAY_TYPE. */
7642 static tree constructor_type
;
7644 /* For a RECORD_TYPE or UNION_TYPE, this is the chain of fields
7646 static tree constructor_fields
;
7648 /* For an ARRAY_TYPE, this is the specified index
7649 at which to store the next element we get. */
7650 static tree constructor_index
;
7652 /* For an ARRAY_TYPE, this is the maximum index. */
7653 static tree constructor_max_index
;
7655 /* For a RECORD_TYPE, this is the first field not yet written out. */
7656 static tree constructor_unfilled_fields
;
7658 /* For an ARRAY_TYPE, this is the index of the first element
7659 not yet written out. */
7660 static tree constructor_unfilled_index
;
7662 /* In a RECORD_TYPE, the byte index of the next consecutive field.
7663 This is so we can generate gaps between fields, when appropriate. */
7664 static tree constructor_bit_index
;
7666 /* If we are saving up the elements rather than allocating them,
7667 this is the list of elements so far (in reverse order,
7668 most recent first). */
7669 static vec
<constructor_elt
, va_gc
> *constructor_elements
;
7671 /* 1 if constructor should be incrementally stored into a constructor chain,
7672 0 if all the elements should be kept in AVL tree. */
7673 static int constructor_incremental
;
7675 /* 1 if so far this constructor's elements are all compile-time constants. */
7676 static int constructor_constant
;
7678 /* 1 if so far this constructor's elements are all valid address constants. */
7679 static int constructor_simple
;
7681 /* 1 if this constructor has an element that cannot be part of a
7682 constant expression. */
7683 static int constructor_nonconst
;
7685 /* 1 if this constructor is erroneous so far. */
7686 static int constructor_erroneous
;
7688 /* 1 if this constructor is the universal zero initializer { 0 }. */
7689 static int constructor_zeroinit
;
7691 /* Structure for managing pending initializer elements, organized as an
7696 struct init_node
*left
, *right
;
7697 struct init_node
*parent
;
7704 /* Tree of pending elements at this constructor level.
7705 These are elements encountered out of order
7706 which belong at places we haven't reached yet in actually
7708 Will never hold tree nodes across GC runs. */
7709 static struct init_node
*constructor_pending_elts
;
7711 /* The SPELLING_DEPTH of this constructor. */
7712 static int constructor_depth
;
7714 /* DECL node for which an initializer is being read.
7715 0 means we are reading a constructor expression
7716 such as (struct foo) {...}. */
7717 static tree constructor_decl
;
7719 /* Nonzero if this is an initializer for a top-level decl. */
7720 static int constructor_top_level
;
7722 /* Nonzero if there were any member designators in this initializer. */
7723 static int constructor_designated
;
7725 /* Nesting depth of designator list. */
7726 static int designator_depth
;
7728 /* Nonzero if there were diagnosed errors in this designator list. */
7729 static int designator_erroneous
;
7732 /* This stack has a level for each implicit or explicit level of
7733 structuring in the initializer, including the outermost one. It
7734 saves the values of most of the variables above. */
7736 struct constructor_range_stack
;
7738 struct constructor_stack
7740 struct constructor_stack
*next
;
7745 tree unfilled_index
;
7746 tree unfilled_fields
;
7748 vec
<constructor_elt
, va_gc
> *elements
;
7749 struct init_node
*pending_elts
;
7752 /* If value nonzero, this value should replace the entire
7753 constructor at this level. */
7754 struct c_expr replacement_value
;
7755 struct constructor_range_stack
*range_stack
;
7764 int designator_depth
;
7767 static struct constructor_stack
*constructor_stack
;
7769 /* This stack represents designators from some range designator up to
7770 the last designator in the list. */
7772 struct constructor_range_stack
7774 struct constructor_range_stack
*next
, *prev
;
7775 struct constructor_stack
*stack
;
7782 static struct constructor_range_stack
*constructor_range_stack
;
7784 /* This stack records separate initializers that are nested.
7785 Nested initializers can't happen in ANSI C, but GNU C allows them
7786 in cases like { ... (struct foo) { ... } ... }. */
7788 struct initializer_stack
7790 struct initializer_stack
*next
;
7792 struct constructor_stack
*constructor_stack
;
7793 struct constructor_range_stack
*constructor_range_stack
;
7794 vec
<constructor_elt
, va_gc
> *elements
;
7795 struct spelling
*spelling
;
7796 struct spelling
*spelling_base
;
7799 char require_constant_value
;
7800 char require_constant_elements
;
7801 rich_location
*missing_brace_richloc
;
7804 static struct initializer_stack
*initializer_stack
;
7806 /* Prepare to parse and output the initializer for variable DECL. */
7809 start_init (tree decl
, tree asmspec_tree ATTRIBUTE_UNUSED
, int top_level
,
7810 rich_location
*richloc
)
7813 struct initializer_stack
*p
= XNEW (struct initializer_stack
);
7815 p
->decl
= constructor_decl
;
7816 p
->require_constant_value
= require_constant_value
;
7817 p
->require_constant_elements
= require_constant_elements
;
7818 p
->constructor_stack
= constructor_stack
;
7819 p
->constructor_range_stack
= constructor_range_stack
;
7820 p
->elements
= constructor_elements
;
7821 p
->spelling
= spelling
;
7822 p
->spelling_base
= spelling_base
;
7823 p
->spelling_size
= spelling_size
;
7824 p
->top_level
= constructor_top_level
;
7825 p
->next
= initializer_stack
;
7826 p
->missing_brace_richloc
= richloc
;
7827 initializer_stack
= p
;
7829 constructor_decl
= decl
;
7830 constructor_designated
= 0;
7831 constructor_top_level
= top_level
;
7833 if (decl
!= NULL_TREE
&& decl
!= error_mark_node
)
7835 require_constant_value
= TREE_STATIC (decl
);
7836 require_constant_elements
7837 = ((TREE_STATIC (decl
) || (pedantic
&& !flag_isoc99
))
7838 /* For a scalar, you can always use any value to initialize,
7839 even within braces. */
7840 && AGGREGATE_TYPE_P (TREE_TYPE (decl
)));
7841 locus
= identifier_to_locale (IDENTIFIER_POINTER (DECL_NAME (decl
)));
7845 require_constant_value
= 0;
7846 require_constant_elements
= 0;
7847 locus
= _("(anonymous)");
7850 constructor_stack
= 0;
7851 constructor_range_stack
= 0;
7853 found_missing_braces
= 0;
7857 RESTORE_SPELLING_DEPTH (0);
7860 push_string (locus
);
7866 struct initializer_stack
*p
= initializer_stack
;
7868 /* Free the whole constructor stack of this initializer. */
7869 while (constructor_stack
)
7871 struct constructor_stack
*q
= constructor_stack
;
7872 constructor_stack
= q
->next
;
7876 gcc_assert (!constructor_range_stack
);
7878 /* Pop back to the data of the outer initializer (if any). */
7879 free (spelling_base
);
7881 constructor_decl
= p
->decl
;
7882 require_constant_value
= p
->require_constant_value
;
7883 require_constant_elements
= p
->require_constant_elements
;
7884 constructor_stack
= p
->constructor_stack
;
7885 constructor_range_stack
= p
->constructor_range_stack
;
7886 constructor_elements
= p
->elements
;
7887 spelling
= p
->spelling
;
7888 spelling_base
= p
->spelling_base
;
7889 spelling_size
= p
->spelling_size
;
7890 constructor_top_level
= p
->top_level
;
7891 initializer_stack
= p
->next
;
7895 /* Call here when we see the initializer is surrounded by braces.
7896 This is instead of a call to push_init_level;
7897 it is matched by a call to pop_init_level.
7899 TYPE is the type to initialize, for a constructor expression.
7900 For an initializer for a decl, TYPE is zero. */
7903 really_start_incremental_init (tree type
)
7905 struct constructor_stack
*p
= XNEW (struct constructor_stack
);
7907 if (type
== NULL_TREE
)
7908 type
= TREE_TYPE (constructor_decl
);
7910 if (VECTOR_TYPE_P (type
)
7911 && TYPE_VECTOR_OPAQUE (type
))
7912 error ("opaque vector types cannot be initialized");
7914 p
->type
= constructor_type
;
7915 p
->fields
= constructor_fields
;
7916 p
->index
= constructor_index
;
7917 p
->max_index
= constructor_max_index
;
7918 p
->unfilled_index
= constructor_unfilled_index
;
7919 p
->unfilled_fields
= constructor_unfilled_fields
;
7920 p
->bit_index
= constructor_bit_index
;
7921 p
->elements
= constructor_elements
;
7922 p
->constant
= constructor_constant
;
7923 p
->simple
= constructor_simple
;
7924 p
->nonconst
= constructor_nonconst
;
7925 p
->erroneous
= constructor_erroneous
;
7926 p
->pending_elts
= constructor_pending_elts
;
7927 p
->depth
= constructor_depth
;
7928 p
->replacement_value
.value
= 0;
7929 p
->replacement_value
.original_code
= ERROR_MARK
;
7930 p
->replacement_value
.original_type
= NULL
;
7934 p
->incremental
= constructor_incremental
;
7935 p
->designated
= constructor_designated
;
7936 p
->designator_depth
= designator_depth
;
7938 constructor_stack
= p
;
7940 constructor_constant
= 1;
7941 constructor_simple
= 1;
7942 constructor_nonconst
= 0;
7943 constructor_depth
= SPELLING_DEPTH ();
7944 constructor_elements
= NULL
;
7945 constructor_pending_elts
= 0;
7946 constructor_type
= type
;
7947 constructor_incremental
= 1;
7948 constructor_designated
= 0;
7949 constructor_zeroinit
= 1;
7950 designator_depth
= 0;
7951 designator_erroneous
= 0;
7953 if (RECORD_OR_UNION_TYPE_P (constructor_type
))
7955 constructor_fields
= TYPE_FIELDS (constructor_type
);
7956 /* Skip any nameless bit fields at the beginning. */
7957 while (constructor_fields
!= NULL_TREE
7958 && DECL_UNNAMED_BIT_FIELD (constructor_fields
))
7959 constructor_fields
= DECL_CHAIN (constructor_fields
);
7961 constructor_unfilled_fields
= constructor_fields
;
7962 constructor_bit_index
= bitsize_zero_node
;
7964 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
7966 if (TYPE_DOMAIN (constructor_type
))
7968 constructor_max_index
7969 = TYPE_MAX_VALUE (TYPE_DOMAIN (constructor_type
));
7971 /* Detect non-empty initializations of zero-length arrays. */
7972 if (constructor_max_index
== NULL_TREE
7973 && TYPE_SIZE (constructor_type
))
7974 constructor_max_index
= integer_minus_one_node
;
7976 /* constructor_max_index needs to be an INTEGER_CST. Attempts
7977 to initialize VLAs will cause a proper error; avoid tree
7978 checking errors as well by setting a safe value. */
7979 if (constructor_max_index
7980 && TREE_CODE (constructor_max_index
) != INTEGER_CST
)
7981 constructor_max_index
= integer_minus_one_node
;
7984 = convert (bitsizetype
,
7985 TYPE_MIN_VALUE (TYPE_DOMAIN (constructor_type
)));
7989 constructor_index
= bitsize_zero_node
;
7990 constructor_max_index
= NULL_TREE
;
7993 constructor_unfilled_index
= constructor_index
;
7995 else if (VECTOR_TYPE_P (constructor_type
))
7997 /* Vectors are like simple fixed-size arrays. */
7998 constructor_max_index
=
7999 bitsize_int (TYPE_VECTOR_SUBPARTS (constructor_type
) - 1);
8000 constructor_index
= bitsize_zero_node
;
8001 constructor_unfilled_index
= constructor_index
;
8005 /* Handle the case of int x = {5}; */
8006 constructor_fields
= constructor_type
;
8007 constructor_unfilled_fields
= constructor_type
;
8011 extern location_t last_init_list_comma
;
8013 /* Called when we see an open brace for a nested initializer. Finish
8014 off any pending levels with implicit braces. */
8016 finish_implicit_inits (location_t loc
, struct obstack
*braced_init_obstack
)
8018 while (constructor_stack
->implicit
)
8020 if (RECORD_OR_UNION_TYPE_P (constructor_type
)
8021 && constructor_fields
== NULL_TREE
)
8022 process_init_element (input_location
,
8023 pop_init_level (loc
, 1, braced_init_obstack
,
8024 last_init_list_comma
),
8025 true, braced_init_obstack
);
8026 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
8027 && constructor_max_index
8028 && tree_int_cst_lt (constructor_max_index
,
8030 process_init_element (input_location
,
8031 pop_init_level (loc
, 1, braced_init_obstack
,
8032 last_init_list_comma
),
8033 true, braced_init_obstack
);
8039 /* Push down into a subobject, for initialization.
8040 If this is for an explicit set of braces, IMPLICIT is 0.
8041 If it is because the next element belongs at a lower level,
8042 IMPLICIT is 1 (or 2 if the push is because of designator list). */
8045 push_init_level (location_t loc
, int implicit
,
8046 struct obstack
*braced_init_obstack
)
8048 struct constructor_stack
*p
;
8049 tree value
= NULL_TREE
;
8051 /* Unless this is an explicit brace, we need to preserve previous
8055 if (RECORD_OR_UNION_TYPE_P (constructor_type
) && constructor_fields
)
8056 value
= find_init_member (constructor_fields
, braced_init_obstack
);
8057 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
8058 value
= find_init_member (constructor_index
, braced_init_obstack
);
8061 p
= XNEW (struct constructor_stack
);
8062 p
->type
= constructor_type
;
8063 p
->fields
= constructor_fields
;
8064 p
->index
= constructor_index
;
8065 p
->max_index
= constructor_max_index
;
8066 p
->unfilled_index
= constructor_unfilled_index
;
8067 p
->unfilled_fields
= constructor_unfilled_fields
;
8068 p
->bit_index
= constructor_bit_index
;
8069 p
->elements
= constructor_elements
;
8070 p
->constant
= constructor_constant
;
8071 p
->simple
= constructor_simple
;
8072 p
->nonconst
= constructor_nonconst
;
8073 p
->erroneous
= constructor_erroneous
;
8074 p
->pending_elts
= constructor_pending_elts
;
8075 p
->depth
= constructor_depth
;
8076 p
->replacement_value
.value
= NULL_TREE
;
8077 p
->replacement_value
.original_code
= ERROR_MARK
;
8078 p
->replacement_value
.original_type
= NULL
;
8079 p
->implicit
= implicit
;
8081 p
->incremental
= constructor_incremental
;
8082 p
->designated
= constructor_designated
;
8083 p
->designator_depth
= designator_depth
;
8084 p
->next
= constructor_stack
;
8086 constructor_stack
= p
;
8088 constructor_constant
= 1;
8089 constructor_simple
= 1;
8090 constructor_nonconst
= 0;
8091 constructor_depth
= SPELLING_DEPTH ();
8092 constructor_elements
= NULL
;
8093 constructor_incremental
= 1;
8094 constructor_designated
= 0;
8095 constructor_pending_elts
= 0;
8098 p
->range_stack
= constructor_range_stack
;
8099 constructor_range_stack
= 0;
8100 designator_depth
= 0;
8101 designator_erroneous
= 0;
8104 /* Don't die if an entire brace-pair level is superfluous
8105 in the containing level. */
8106 if (constructor_type
== NULL_TREE
)
8108 else if (RECORD_OR_UNION_TYPE_P (constructor_type
))
8110 /* Don't die if there are extra init elts at the end. */
8111 if (constructor_fields
== NULL_TREE
)
8112 constructor_type
= NULL_TREE
;
8115 constructor_type
= TREE_TYPE (constructor_fields
);
8116 push_member_name (constructor_fields
);
8117 constructor_depth
++;
8119 /* If upper initializer is designated, then mark this as
8120 designated too to prevent bogus warnings. */
8121 constructor_designated
= p
->designated
;
8123 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
8125 constructor_type
= TREE_TYPE (constructor_type
);
8126 push_array_bounds (tree_to_uhwi (constructor_index
));
8127 constructor_depth
++;
8130 if (constructor_type
== NULL_TREE
)
8132 error_init (loc
, "extra brace group at end of initializer");
8133 constructor_fields
= NULL_TREE
;
8134 constructor_unfilled_fields
= NULL_TREE
;
8138 if (value
&& TREE_CODE (value
) == CONSTRUCTOR
)
8140 constructor_constant
= TREE_CONSTANT (value
);
8141 constructor_simple
= TREE_STATIC (value
);
8142 constructor_nonconst
= CONSTRUCTOR_NON_CONST (value
);
8143 constructor_elements
= CONSTRUCTOR_ELTS (value
);
8144 if (!vec_safe_is_empty (constructor_elements
)
8145 && (TREE_CODE (constructor_type
) == RECORD_TYPE
8146 || TREE_CODE (constructor_type
) == ARRAY_TYPE
))
8147 set_nonincremental_init (braced_init_obstack
);
8152 found_missing_braces
= 1;
8153 if (initializer_stack
->missing_brace_richloc
)
8154 initializer_stack
->missing_brace_richloc
->add_fixit_insert_before
8158 if (RECORD_OR_UNION_TYPE_P (constructor_type
))
8160 constructor_fields
= TYPE_FIELDS (constructor_type
);
8161 /* Skip any nameless bit fields at the beginning. */
8162 while (constructor_fields
!= NULL_TREE
8163 && DECL_UNNAMED_BIT_FIELD (constructor_fields
))
8164 constructor_fields
= DECL_CHAIN (constructor_fields
);
8166 constructor_unfilled_fields
= constructor_fields
;
8167 constructor_bit_index
= bitsize_zero_node
;
8169 else if (VECTOR_TYPE_P (constructor_type
))
8171 /* Vectors are like simple fixed-size arrays. */
8172 constructor_max_index
=
8173 bitsize_int (TYPE_VECTOR_SUBPARTS (constructor_type
) - 1);
8174 constructor_index
= bitsize_int (0);
8175 constructor_unfilled_index
= constructor_index
;
8177 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
8179 if (TYPE_DOMAIN (constructor_type
))
8181 constructor_max_index
8182 = TYPE_MAX_VALUE (TYPE_DOMAIN (constructor_type
));
8184 /* Detect non-empty initializations of zero-length arrays. */
8185 if (constructor_max_index
== NULL_TREE
8186 && TYPE_SIZE (constructor_type
))
8187 constructor_max_index
= integer_minus_one_node
;
8189 /* constructor_max_index needs to be an INTEGER_CST. Attempts
8190 to initialize VLAs will cause a proper error; avoid tree
8191 checking errors as well by setting a safe value. */
8192 if (constructor_max_index
8193 && TREE_CODE (constructor_max_index
) != INTEGER_CST
)
8194 constructor_max_index
= integer_minus_one_node
;
8197 = convert (bitsizetype
,
8198 TYPE_MIN_VALUE (TYPE_DOMAIN (constructor_type
)));
8201 constructor_index
= bitsize_zero_node
;
8203 constructor_unfilled_index
= constructor_index
;
8204 if (value
&& TREE_CODE (value
) == STRING_CST
)
8206 /* We need to split the char/wchar array into individual
8207 characters, so that we don't have to special case it
8209 set_nonincremental_init_from_string (value
, braced_init_obstack
);
8214 if (constructor_type
!= error_mark_node
)
8215 warning_init (input_location
, 0, "braces around scalar initializer");
8216 constructor_fields
= constructor_type
;
8217 constructor_unfilled_fields
= constructor_type
;
8221 /* At the end of an implicit or explicit brace level,
8222 finish up that level of constructor. If a single expression
8223 with redundant braces initialized that level, return the
8224 c_expr structure for that expression. Otherwise, the original_code
8225 element is set to ERROR_MARK.
8226 If we were outputting the elements as they are read, return 0 as the value
8227 from inner levels (process_init_element ignores that),
8228 but return error_mark_node as the value from the outermost level
8229 (that's what we want to put in DECL_INITIAL).
8230 Otherwise, return a CONSTRUCTOR expression as the value. */
8233 pop_init_level (location_t loc
, int implicit
,
8234 struct obstack
*braced_init_obstack
,
8235 location_t insert_before
)
8237 struct constructor_stack
*p
;
8239 ret
.value
= NULL_TREE
;
8240 ret
.original_code
= ERROR_MARK
;
8241 ret
.original_type
= NULL
;
8245 /* When we come to an explicit close brace,
8246 pop any inner levels that didn't have explicit braces. */
8247 while (constructor_stack
->implicit
)
8248 process_init_element (input_location
,
8249 pop_init_level (loc
, 1, braced_init_obstack
,
8251 true, braced_init_obstack
);
8252 gcc_assert (!constructor_range_stack
);
8255 if (initializer_stack
->missing_brace_richloc
)
8256 initializer_stack
->missing_brace_richloc
->add_fixit_insert_before
8257 (insert_before
, "}");
8259 /* Now output all pending elements. */
8260 constructor_incremental
= 1;
8261 output_pending_init_elements (1, braced_init_obstack
);
8263 p
= constructor_stack
;
8265 /* Error for initializing a flexible array member, or a zero-length
8266 array member in an inappropriate context. */
8267 if (constructor_type
&& constructor_fields
8268 && TREE_CODE (constructor_type
) == ARRAY_TYPE
8269 && TYPE_DOMAIN (constructor_type
)
8270 && !TYPE_MAX_VALUE (TYPE_DOMAIN (constructor_type
)))
8272 /* Silently discard empty initializations. The parser will
8273 already have pedwarned for empty brackets. */
8274 if (integer_zerop (constructor_unfilled_index
))
8275 constructor_type
= NULL_TREE
;
8278 gcc_assert (!TYPE_SIZE (constructor_type
));
8280 if (constructor_depth
> 2)
8281 error_init (loc
, "initialization of flexible array member in a nested context");
8283 pedwarn_init (loc
, OPT_Wpedantic
,
8284 "initialization of a flexible array member");
8286 /* We have already issued an error message for the existence
8287 of a flexible array member not at the end of the structure.
8288 Discard the initializer so that we do not die later. */
8289 if (DECL_CHAIN (constructor_fields
) != NULL_TREE
)
8290 constructor_type
= NULL_TREE
;
8294 switch (vec_safe_length (constructor_elements
))
8297 /* Initialization with { } counts as zeroinit. */
8298 constructor_zeroinit
= 1;
8301 /* This might be zeroinit as well. */
8302 if (integer_zerop ((*constructor_elements
)[0].value
))
8303 constructor_zeroinit
= 1;
8306 /* If the constructor has more than one element, it can't be { 0 }. */
8307 constructor_zeroinit
= 0;
8311 /* Warn when some structs are initialized with direct aggregation. */
8312 if (!implicit
&& found_missing_braces
&& warn_missing_braces
8313 && !constructor_zeroinit
)
8315 gcc_assert (initializer_stack
->missing_brace_richloc
);
8316 warning_at (initializer_stack
->missing_brace_richloc
,
8317 OPT_Wmissing_braces
,
8318 "missing braces around initializer");
8321 /* Warn when some struct elements are implicitly initialized to zero. */
8322 if (warn_missing_field_initializers
8324 && TREE_CODE (constructor_type
) == RECORD_TYPE
8325 && constructor_unfilled_fields
)
8327 /* Do not warn for flexible array members or zero-length arrays. */
8328 while (constructor_unfilled_fields
8329 && (!DECL_SIZE (constructor_unfilled_fields
)
8330 || integer_zerop (DECL_SIZE (constructor_unfilled_fields
))))
8331 constructor_unfilled_fields
= DECL_CHAIN (constructor_unfilled_fields
);
8333 if (constructor_unfilled_fields
8334 /* Do not warn if this level of the initializer uses member
8335 designators; it is likely to be deliberate. */
8336 && !constructor_designated
8337 /* Do not warn about initializing with { 0 } or with { }. */
8338 && !constructor_zeroinit
)
8340 if (warning_at (input_location
, OPT_Wmissing_field_initializers
,
8341 "missing initializer for field %qD of %qT",
8342 constructor_unfilled_fields
,
8344 inform (DECL_SOURCE_LOCATION (constructor_unfilled_fields
),
8345 "%qD declared here", constructor_unfilled_fields
);
8349 /* Pad out the end of the structure. */
8350 if (p
->replacement_value
.value
)
8351 /* If this closes a superfluous brace pair,
8352 just pass out the element between them. */
8353 ret
= p
->replacement_value
;
8354 else if (constructor_type
== NULL_TREE
)
8356 else if (!RECORD_OR_UNION_TYPE_P (constructor_type
)
8357 && TREE_CODE (constructor_type
) != ARRAY_TYPE
8358 && !VECTOR_TYPE_P (constructor_type
))
8360 /* A nonincremental scalar initializer--just return
8361 the element, after verifying there is just one. */
8362 if (vec_safe_is_empty (constructor_elements
))
8364 if (!constructor_erroneous
)
8365 error_init (loc
, "empty scalar initializer");
8366 ret
.value
= error_mark_node
;
8368 else if (vec_safe_length (constructor_elements
) != 1)
8370 error_init (loc
, "extra elements in scalar initializer");
8371 ret
.value
= (*constructor_elements
)[0].value
;
8374 ret
.value
= (*constructor_elements
)[0].value
;
8378 if (constructor_erroneous
)
8379 ret
.value
= error_mark_node
;
8382 ret
.value
= build_constructor (constructor_type
,
8383 constructor_elements
);
8384 if (constructor_constant
)
8385 TREE_CONSTANT (ret
.value
) = 1;
8386 if (constructor_constant
&& constructor_simple
)
8387 TREE_STATIC (ret
.value
) = 1;
8388 if (constructor_nonconst
)
8389 CONSTRUCTOR_NON_CONST (ret
.value
) = 1;
8393 if (ret
.value
&& TREE_CODE (ret
.value
) != CONSTRUCTOR
)
8395 if (constructor_nonconst
)
8396 ret
.original_code
= C_MAYBE_CONST_EXPR
;
8397 else if (ret
.original_code
== C_MAYBE_CONST_EXPR
)
8398 ret
.original_code
= ERROR_MARK
;
8401 constructor_type
= p
->type
;
8402 constructor_fields
= p
->fields
;
8403 constructor_index
= p
->index
;
8404 constructor_max_index
= p
->max_index
;
8405 constructor_unfilled_index
= p
->unfilled_index
;
8406 constructor_unfilled_fields
= p
->unfilled_fields
;
8407 constructor_bit_index
= p
->bit_index
;
8408 constructor_elements
= p
->elements
;
8409 constructor_constant
= p
->constant
;
8410 constructor_simple
= p
->simple
;
8411 constructor_nonconst
= p
->nonconst
;
8412 constructor_erroneous
= p
->erroneous
;
8413 constructor_incremental
= p
->incremental
;
8414 constructor_designated
= p
->designated
;
8415 designator_depth
= p
->designator_depth
;
8416 constructor_pending_elts
= p
->pending_elts
;
8417 constructor_depth
= p
->depth
;
8419 constructor_range_stack
= p
->range_stack
;
8420 RESTORE_SPELLING_DEPTH (constructor_depth
);
8422 constructor_stack
= p
->next
;
8425 if (ret
.value
== NULL_TREE
&& constructor_stack
== 0)
8426 ret
.value
= error_mark_node
;
8430 /* Common handling for both array range and field name designators.
8431 ARRAY argument is nonzero for array ranges. Returns false for success. */
8434 set_designator (location_t loc
, bool array
,
8435 struct obstack
*braced_init_obstack
)
8438 enum tree_code subcode
;
8440 /* Don't die if an entire brace-pair level is superfluous
8441 in the containing level. */
8442 if (constructor_type
== NULL_TREE
)
8445 /* If there were errors in this designator list already, bail out
8447 if (designator_erroneous
)
8450 if (!designator_depth
)
8452 gcc_assert (!constructor_range_stack
);
8454 /* Designator list starts at the level of closest explicit
8456 while (constructor_stack
->implicit
)
8457 process_init_element (input_location
,
8458 pop_init_level (loc
, 1, braced_init_obstack
,
8459 last_init_list_comma
),
8460 true, braced_init_obstack
);
8461 constructor_designated
= 1;
8465 switch (TREE_CODE (constructor_type
))
8469 subtype
= TREE_TYPE (constructor_fields
);
8470 if (subtype
!= error_mark_node
)
8471 subtype
= TYPE_MAIN_VARIANT (subtype
);
8474 subtype
= TYPE_MAIN_VARIANT (TREE_TYPE (constructor_type
));
8480 subcode
= TREE_CODE (subtype
);
8481 if (array
&& subcode
!= ARRAY_TYPE
)
8483 error_init (loc
, "array index in non-array initializer");
8486 else if (!array
&& subcode
!= RECORD_TYPE
&& subcode
!= UNION_TYPE
)
8488 error_init (loc
, "field name not in record or union initializer");
8492 constructor_designated
= 1;
8493 finish_implicit_inits (loc
, braced_init_obstack
);
8494 push_init_level (loc
, 2, braced_init_obstack
);
8498 /* If there are range designators in designator list, push a new designator
8499 to constructor_range_stack. RANGE_END is end of such stack range or
8500 NULL_TREE if there is no range designator at this level. */
8503 push_range_stack (tree range_end
, struct obstack
* braced_init_obstack
)
8505 struct constructor_range_stack
*p
;
8507 p
= (struct constructor_range_stack
*)
8508 obstack_alloc (braced_init_obstack
,
8509 sizeof (struct constructor_range_stack
));
8510 p
->prev
= constructor_range_stack
;
8512 p
->fields
= constructor_fields
;
8513 p
->range_start
= constructor_index
;
8514 p
->index
= constructor_index
;
8515 p
->stack
= constructor_stack
;
8516 p
->range_end
= range_end
;
8517 if (constructor_range_stack
)
8518 constructor_range_stack
->next
= p
;
8519 constructor_range_stack
= p
;
8522 /* Within an array initializer, specify the next index to be initialized.
8523 FIRST is that index. If LAST is nonzero, then initialize a range
8524 of indices, running from FIRST through LAST. */
8527 set_init_index (location_t loc
, tree first
, tree last
,
8528 struct obstack
*braced_init_obstack
)
8530 if (set_designator (loc
, true, braced_init_obstack
))
8533 designator_erroneous
= 1;
8535 if (!INTEGRAL_TYPE_P (TREE_TYPE (first
))
8536 || (last
&& !INTEGRAL_TYPE_P (TREE_TYPE (last
))))
8538 error_init (loc
, "array index in initializer not of integer type");
8542 if (TREE_CODE (first
) != INTEGER_CST
)
8544 first
= c_fully_fold (first
, false, NULL
);
8545 if (TREE_CODE (first
) == INTEGER_CST
)
8546 pedwarn_init (loc
, OPT_Wpedantic
,
8547 "array index in initializer is not "
8548 "an integer constant expression");
8551 if (last
&& TREE_CODE (last
) != INTEGER_CST
)
8553 last
= c_fully_fold (last
, false, NULL
);
8554 if (TREE_CODE (last
) == INTEGER_CST
)
8555 pedwarn_init (loc
, OPT_Wpedantic
,
8556 "array index in initializer is not "
8557 "an integer constant expression");
8560 if (TREE_CODE (first
) != INTEGER_CST
)
8561 error_init (loc
, "nonconstant array index in initializer");
8562 else if (last
!= NULL_TREE
&& TREE_CODE (last
) != INTEGER_CST
)
8563 error_init (loc
, "nonconstant array index in initializer");
8564 else if (TREE_CODE (constructor_type
) != ARRAY_TYPE
)
8565 error_init (loc
, "array index in non-array initializer");
8566 else if (tree_int_cst_sgn (first
) == -1)
8567 error_init (loc
, "array index in initializer exceeds array bounds");
8568 else if (constructor_max_index
8569 && tree_int_cst_lt (constructor_max_index
, first
))
8570 error_init (loc
, "array index in initializer exceeds array bounds");
8573 constant_expression_warning (first
);
8575 constant_expression_warning (last
);
8576 constructor_index
= convert (bitsizetype
, first
);
8577 if (tree_int_cst_lt (constructor_index
, first
))
8579 constructor_index
= copy_node (constructor_index
);
8580 TREE_OVERFLOW (constructor_index
) = 1;
8585 if (tree_int_cst_equal (first
, last
))
8587 else if (tree_int_cst_lt (last
, first
))
8589 error_init (loc
, "empty index range in initializer");
8594 last
= convert (bitsizetype
, last
);
8595 if (constructor_max_index
!= NULL_TREE
8596 && tree_int_cst_lt (constructor_max_index
, last
))
8598 error_init (loc
, "array index range in initializer exceeds "
8606 designator_erroneous
= 0;
8607 if (constructor_range_stack
|| last
)
8608 push_range_stack (last
, braced_init_obstack
);
8612 /* Within a struct initializer, specify the next field to be initialized. */
8615 set_init_label (location_t loc
, tree fieldname
, location_t fieldname_loc
,
8616 struct obstack
*braced_init_obstack
)
8620 if (set_designator (loc
, false, braced_init_obstack
))
8623 designator_erroneous
= 1;
8625 if (!RECORD_OR_UNION_TYPE_P (constructor_type
))
8627 error_init (loc
, "field name not in record or union initializer");
8631 field
= lookup_field (constructor_type
, fieldname
);
8633 if (field
== NULL_TREE
)
8635 tree guessed_id
= lookup_field_fuzzy (constructor_type
, fieldname
);
8638 gcc_rich_location
rich_loc (fieldname_loc
);
8639 rich_loc
.add_fixit_misspelled_id (fieldname_loc
, guessed_id
);
8640 error_at (&rich_loc
,
8641 "%qT has no member named %qE; did you mean %qE?",
8642 constructor_type
, fieldname
, guessed_id
);
8645 error_at (fieldname_loc
, "%qT has no member named %qE",
8646 constructor_type
, fieldname
);
8651 constructor_fields
= TREE_VALUE (field
);
8653 designator_erroneous
= 0;
8654 if (constructor_range_stack
)
8655 push_range_stack (NULL_TREE
, braced_init_obstack
);
8656 field
= TREE_CHAIN (field
);
8659 if (set_designator (loc
, false, braced_init_obstack
))
8663 while (field
!= NULL_TREE
);
8666 /* Add a new initializer to the tree of pending initializers. PURPOSE
8667 identifies the initializer, either array index or field in a structure.
8668 VALUE is the value of that index or field. If ORIGTYPE is not
8669 NULL_TREE, it is the original type of VALUE.
8671 IMPLICIT is true if value comes from pop_init_level (1),
8672 the new initializer has been merged with the existing one
8673 and thus no warnings should be emitted about overriding an
8674 existing initializer. */
8677 add_pending_init (location_t loc
, tree purpose
, tree value
, tree origtype
,
8678 bool implicit
, struct obstack
*braced_init_obstack
)
8680 struct init_node
*p
, **q
, *r
;
8682 q
= &constructor_pending_elts
;
8685 if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
8690 if (tree_int_cst_lt (purpose
, p
->purpose
))
8692 else if (tree_int_cst_lt (p
->purpose
, purpose
))
8698 if (TREE_SIDE_EFFECTS (p
->value
))
8699 warning_init (loc
, OPT_Woverride_init_side_effects
,
8700 "initialized field with side-effects "
8702 else if (warn_override_init
)
8703 warning_init (loc
, OPT_Woverride_init
,
8704 "initialized field overwritten");
8707 p
->origtype
= origtype
;
8716 bitpos
= bit_position (purpose
);
8720 if (tree_int_cst_lt (bitpos
, bit_position (p
->purpose
)))
8722 else if (p
->purpose
!= purpose
)
8728 if (TREE_SIDE_EFFECTS (p
->value
))
8729 warning_init (loc
, OPT_Woverride_init_side_effects
,
8730 "initialized field with side-effects "
8732 else if (warn_override_init
)
8733 warning_init (loc
, OPT_Woverride_init
,
8734 "initialized field overwritten");
8737 p
->origtype
= origtype
;
8743 r
= (struct init_node
*) obstack_alloc (braced_init_obstack
,
8744 sizeof (struct init_node
));
8745 r
->purpose
= purpose
;
8747 r
->origtype
= origtype
;
8757 struct init_node
*s
;
8761 if (p
->balance
== 0)
8763 else if (p
->balance
< 0)
8770 p
->left
->parent
= p
;
8787 constructor_pending_elts
= r
;
8792 struct init_node
*t
= r
->right
;
8796 r
->right
->parent
= r
;
8801 p
->left
->parent
= p
;
8804 p
->balance
= t
->balance
< 0;
8805 r
->balance
= -(t
->balance
> 0);
8820 constructor_pending_elts
= t
;
8826 /* p->balance == +1; growth of left side balances the node. */
8831 else /* r == p->right */
8833 if (p
->balance
== 0)
8834 /* Growth propagation from right side. */
8836 else if (p
->balance
> 0)
8843 p
->right
->parent
= p
;
8860 constructor_pending_elts
= r
;
8862 else /* r->balance == -1 */
8865 struct init_node
*t
= r
->left
;
8869 r
->left
->parent
= r
;
8874 p
->right
->parent
= p
;
8877 r
->balance
= (t
->balance
< 0);
8878 p
->balance
= -(t
->balance
> 0);
8893 constructor_pending_elts
= t
;
8899 /* p->balance == -1; growth of right side balances the node. */
8910 /* Build AVL tree from a sorted chain. */
8913 set_nonincremental_init (struct obstack
* braced_init_obstack
)
8915 unsigned HOST_WIDE_INT ix
;
8918 if (TREE_CODE (constructor_type
) != RECORD_TYPE
8919 && TREE_CODE (constructor_type
) != ARRAY_TYPE
)
8922 FOR_EACH_CONSTRUCTOR_ELT (constructor_elements
, ix
, index
, value
)
8923 add_pending_init (input_location
, index
, value
, NULL_TREE
, true,
8924 braced_init_obstack
);
8925 constructor_elements
= NULL
;
8926 if (TREE_CODE (constructor_type
) == RECORD_TYPE
)
8928 constructor_unfilled_fields
= TYPE_FIELDS (constructor_type
);
8929 /* Skip any nameless bit fields at the beginning. */
8930 while (constructor_unfilled_fields
!= NULL_TREE
8931 && DECL_UNNAMED_BIT_FIELD (constructor_unfilled_fields
))
8932 constructor_unfilled_fields
= TREE_CHAIN (constructor_unfilled_fields
);
8935 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
8937 if (TYPE_DOMAIN (constructor_type
))
8938 constructor_unfilled_index
8939 = convert (bitsizetype
,
8940 TYPE_MIN_VALUE (TYPE_DOMAIN (constructor_type
)));
8942 constructor_unfilled_index
= bitsize_zero_node
;
8944 constructor_incremental
= 0;
8947 /* Build AVL tree from a string constant. */
8950 set_nonincremental_init_from_string (tree str
,
8951 struct obstack
* braced_init_obstack
)
8953 tree value
, purpose
, type
;
8954 HOST_WIDE_INT val
[2];
8955 const char *p
, *end
;
8956 int byte
, wchar_bytes
, charwidth
, bitpos
;
8958 gcc_assert (TREE_CODE (constructor_type
) == ARRAY_TYPE
);
8960 wchar_bytes
= TYPE_PRECISION (TREE_TYPE (TREE_TYPE (str
))) / BITS_PER_UNIT
;
8961 charwidth
= TYPE_PRECISION (char_type_node
);
8962 gcc_assert ((size_t) wchar_bytes
* charwidth
8963 <= ARRAY_SIZE (val
) * HOST_BITS_PER_WIDE_INT
);
8964 type
= TREE_TYPE (constructor_type
);
8965 p
= TREE_STRING_POINTER (str
);
8966 end
= p
+ TREE_STRING_LENGTH (str
);
8968 for (purpose
= bitsize_zero_node
;
8970 && !(constructor_max_index
8971 && tree_int_cst_lt (constructor_max_index
, purpose
));
8972 purpose
= size_binop (PLUS_EXPR
, purpose
, bitsize_one_node
))
8974 if (wchar_bytes
== 1)
8976 val
[0] = (unsigned char) *p
++;
8983 for (byte
= 0; byte
< wchar_bytes
; byte
++)
8985 if (BYTES_BIG_ENDIAN
)
8986 bitpos
= (wchar_bytes
- byte
- 1) * charwidth
;
8988 bitpos
= byte
* charwidth
;
8989 val
[bitpos
/ HOST_BITS_PER_WIDE_INT
]
8990 |= ((unsigned HOST_WIDE_INT
) ((unsigned char) *p
++))
8991 << (bitpos
% HOST_BITS_PER_WIDE_INT
);
8995 if (!TYPE_UNSIGNED (type
))
8997 bitpos
= ((wchar_bytes
- 1) * charwidth
) + HOST_BITS_PER_CHAR
;
8998 if (bitpos
< HOST_BITS_PER_WIDE_INT
)
9000 if (val
[0] & (HOST_WIDE_INT_1
<< (bitpos
- 1)))
9002 val
[0] |= HOST_WIDE_INT_M1U
<< bitpos
;
9006 else if (bitpos
== HOST_BITS_PER_WIDE_INT
)
9011 else if (val
[1] & (HOST_WIDE_INT_1
9012 << (bitpos
- 1 - HOST_BITS_PER_WIDE_INT
)))
9013 val
[1] |= HOST_WIDE_INT_M1U
<< (bitpos
- HOST_BITS_PER_WIDE_INT
);
9016 value
= wide_int_to_tree (type
,
9017 wide_int::from_array (val
, 2,
9018 HOST_BITS_PER_WIDE_INT
* 2));
9019 add_pending_init (input_location
, purpose
, value
, NULL_TREE
, true,
9020 braced_init_obstack
);
9023 constructor_incremental
= 0;
9026 /* Return value of FIELD in pending initializer or NULL_TREE if the field was
9027 not initialized yet. */
9030 find_init_member (tree field
, struct obstack
* braced_init_obstack
)
9032 struct init_node
*p
;
9034 if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
9036 if (constructor_incremental
9037 && tree_int_cst_lt (field
, constructor_unfilled_index
))
9038 set_nonincremental_init (braced_init_obstack
);
9040 p
= constructor_pending_elts
;
9043 if (tree_int_cst_lt (field
, p
->purpose
))
9045 else if (tree_int_cst_lt (p
->purpose
, field
))
9051 else if (TREE_CODE (constructor_type
) == RECORD_TYPE
)
9053 tree bitpos
= bit_position (field
);
9055 if (constructor_incremental
9056 && (!constructor_unfilled_fields
9057 || tree_int_cst_lt (bitpos
,
9058 bit_position (constructor_unfilled_fields
))))
9059 set_nonincremental_init (braced_init_obstack
);
9061 p
= constructor_pending_elts
;
9064 if (field
== p
->purpose
)
9066 else if (tree_int_cst_lt (bitpos
, bit_position (p
->purpose
)))
9072 else if (TREE_CODE (constructor_type
) == UNION_TYPE
)
9074 if (!vec_safe_is_empty (constructor_elements
)
9075 && (constructor_elements
->last ().index
== field
))
9076 return constructor_elements
->last ().value
;
9081 /* "Output" the next constructor element.
9082 At top level, really output it to assembler code now.
9083 Otherwise, collect it in a list from which we will make a CONSTRUCTOR.
9084 If ORIGTYPE is not NULL_TREE, it is the original type of VALUE.
9085 TYPE is the data type that the containing data type wants here.
9086 FIELD is the field (a FIELD_DECL) or the index that this element fills.
9087 If VALUE is a string constant, STRICT_STRING is true if it is
9088 unparenthesized or we should not warn here for it being parenthesized.
9089 For other types of VALUE, STRICT_STRING is not used.
9091 PENDING if true means output pending elements that belong
9092 right after this element. (PENDING is normally true;
9093 it is false while outputting pending elements, to avoid recursion.)
9095 IMPLICIT is true if value comes from pop_init_level (1),
9096 the new initializer has been merged with the existing one
9097 and thus no warnings should be emitted about overriding an
9098 existing initializer. */
9101 output_init_element (location_t loc
, tree value
, tree origtype
,
9102 bool strict_string
, tree type
, tree field
, bool pending
,
9103 bool implicit
, struct obstack
* braced_init_obstack
)
9105 tree semantic_type
= NULL_TREE
;
9106 bool maybe_const
= true;
9109 if (type
== error_mark_node
|| value
== error_mark_node
)
9111 constructor_erroneous
= 1;
9114 if (TREE_CODE (TREE_TYPE (value
)) == ARRAY_TYPE
9115 && (TREE_CODE (value
) == STRING_CST
9116 || TREE_CODE (value
) == COMPOUND_LITERAL_EXPR
)
9117 && !(TREE_CODE (value
) == STRING_CST
9118 && TREE_CODE (type
) == ARRAY_TYPE
9119 && INTEGRAL_TYPE_P (TREE_TYPE (type
)))
9120 && !comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (value
)),
9121 TYPE_MAIN_VARIANT (type
)))
9122 value
= array_to_pointer_conversion (input_location
, value
);
9124 if (TREE_CODE (value
) == COMPOUND_LITERAL_EXPR
9125 && require_constant_value
&& pending
)
9127 /* As an extension, allow initializing objects with static storage
9128 duration with compound literals (which are then treated just as
9129 the brace enclosed list they contain). */
9131 pedwarn_init (loc
, OPT_Wpedantic
, "initializer element is not "
9133 tree decl
= COMPOUND_LITERAL_EXPR_DECL (value
);
9134 value
= DECL_INITIAL (decl
);
9137 npc
= null_pointer_constant_p (value
);
9138 if (TREE_CODE (value
) == EXCESS_PRECISION_EXPR
)
9140 semantic_type
= TREE_TYPE (value
);
9141 value
= TREE_OPERAND (value
, 0);
9143 value
= c_fully_fold (value
, require_constant_value
, &maybe_const
);
9145 if (value
== error_mark_node
)
9146 constructor_erroneous
= 1;
9147 else if (!TREE_CONSTANT (value
))
9148 constructor_constant
= 0;
9149 else if (!initializer_constant_valid_p (value
,
9151 AGGREGATE_TYPE_P (constructor_type
)
9152 && TYPE_REVERSE_STORAGE_ORDER
9154 || (RECORD_OR_UNION_TYPE_P (constructor_type
)
9155 && DECL_C_BIT_FIELD (field
)
9156 && TREE_CODE (value
) != INTEGER_CST
))
9157 constructor_simple
= 0;
9159 constructor_nonconst
= 1;
9161 /* Digest the initializer and issue any errors about incompatible
9162 types before issuing errors about non-constant initializers. */
9163 tree new_value
= value
;
9165 new_value
= build1 (EXCESS_PRECISION_EXPR
, semantic_type
, value
);
9166 new_value
= digest_init (loc
, type
, new_value
, origtype
, npc
, strict_string
,
9167 require_constant_value
);
9168 if (new_value
== error_mark_node
)
9170 constructor_erroneous
= 1;
9173 if (require_constant_value
|| require_constant_elements
)
9174 constant_expression_warning (new_value
);
9176 /* Proceed to check the constness of the original initializer. */
9177 if (!initializer_constant_valid_p (value
, TREE_TYPE (value
)))
9179 if (require_constant_value
)
9181 error_init (loc
, "initializer element is not constant");
9182 value
= error_mark_node
;
9184 else if (require_constant_elements
)
9185 pedwarn (loc
, OPT_Wpedantic
,
9186 "initializer element is not computable at load time");
9188 else if (!maybe_const
9189 && (require_constant_value
|| require_constant_elements
))
9190 pedwarn_init (loc
, OPT_Wpedantic
,
9191 "initializer element is not a constant expression");
9193 /* Issue -Wc++-compat warnings about initializing a bitfield with
9196 && field
!= NULL_TREE
9197 && TREE_CODE (field
) == FIELD_DECL
9198 && DECL_BIT_FIELD_TYPE (field
) != NULL_TREE
9199 && (TYPE_MAIN_VARIANT (DECL_BIT_FIELD_TYPE (field
))
9200 != TYPE_MAIN_VARIANT (type
))
9201 && TREE_CODE (DECL_BIT_FIELD_TYPE (field
)) == ENUMERAL_TYPE
)
9203 tree checktype
= origtype
!= NULL_TREE
? origtype
: TREE_TYPE (value
);
9204 if (checktype
!= error_mark_node
9205 && (TYPE_MAIN_VARIANT (checktype
)
9206 != TYPE_MAIN_VARIANT (DECL_BIT_FIELD_TYPE (field
))))
9207 warning_init (loc
, OPT_Wc___compat
,
9208 "enum conversion in initialization is invalid in C++");
9211 /* If this field is empty and does not have side effects (and is not at
9212 the end of structure), don't do anything other than checking the
9215 && (TREE_TYPE (field
) == error_mark_node
9216 || (COMPLETE_TYPE_P (TREE_TYPE (field
))
9217 && integer_zerop (TYPE_SIZE (TREE_TYPE (field
)))
9218 && !TREE_SIDE_EFFECTS (new_value
)
9219 && (TREE_CODE (constructor_type
) == ARRAY_TYPE
9220 || DECL_CHAIN (field
)))))
9223 /* Finally, set VALUE to the initializer value digested above. */
9226 /* If this element doesn't come next in sequence,
9227 put it on constructor_pending_elts. */
9228 if (TREE_CODE (constructor_type
) == ARRAY_TYPE
9229 && (!constructor_incremental
9230 || !tree_int_cst_equal (field
, constructor_unfilled_index
)))
9232 if (constructor_incremental
9233 && tree_int_cst_lt (field
, constructor_unfilled_index
))
9234 set_nonincremental_init (braced_init_obstack
);
9236 add_pending_init (loc
, field
, value
, origtype
, implicit
,
9237 braced_init_obstack
);
9240 else if (TREE_CODE (constructor_type
) == RECORD_TYPE
9241 && (!constructor_incremental
9242 || field
!= constructor_unfilled_fields
))
9244 /* We do this for records but not for unions. In a union,
9245 no matter which field is specified, it can be initialized
9246 right away since it starts at the beginning of the union. */
9247 if (constructor_incremental
)
9249 if (!constructor_unfilled_fields
)
9250 set_nonincremental_init (braced_init_obstack
);
9253 tree bitpos
, unfillpos
;
9255 bitpos
= bit_position (field
);
9256 unfillpos
= bit_position (constructor_unfilled_fields
);
9258 if (tree_int_cst_lt (bitpos
, unfillpos
))
9259 set_nonincremental_init (braced_init_obstack
);
9263 add_pending_init (loc
, field
, value
, origtype
, implicit
,
9264 braced_init_obstack
);
9267 else if (TREE_CODE (constructor_type
) == UNION_TYPE
9268 && !vec_safe_is_empty (constructor_elements
))
9272 if (TREE_SIDE_EFFECTS (constructor_elements
->last ().value
))
9273 warning_init (loc
, OPT_Woverride_init_side_effects
,
9274 "initialized field with side-effects overwritten");
9275 else if (warn_override_init
)
9276 warning_init (loc
, OPT_Woverride_init
,
9277 "initialized field overwritten");
9280 /* We can have just one union field set. */
9281 constructor_elements
= NULL
;
9284 /* Otherwise, output this element either to
9285 constructor_elements or to the assembler file. */
9287 constructor_elt celt
= {field
, value
};
9288 vec_safe_push (constructor_elements
, celt
);
9290 /* Advance the variable that indicates sequential elements output. */
9291 if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
9292 constructor_unfilled_index
9293 = size_binop_loc (input_location
, PLUS_EXPR
, constructor_unfilled_index
,
9295 else if (TREE_CODE (constructor_type
) == RECORD_TYPE
)
9297 constructor_unfilled_fields
9298 = DECL_CHAIN (constructor_unfilled_fields
);
9300 /* Skip any nameless bit fields. */
9301 while (constructor_unfilled_fields
!= NULL_TREE
9302 && DECL_UNNAMED_BIT_FIELD (constructor_unfilled_fields
))
9303 constructor_unfilled_fields
=
9304 DECL_CHAIN (constructor_unfilled_fields
);
9306 else if (TREE_CODE (constructor_type
) == UNION_TYPE
)
9307 constructor_unfilled_fields
= NULL_TREE
;
9309 /* Now output any pending elements which have become next. */
9311 output_pending_init_elements (0, braced_init_obstack
);
9314 /* Output any pending elements which have become next.
9315 As we output elements, constructor_unfilled_{fields,index}
9316 advances, which may cause other elements to become next;
9317 if so, they too are output.
9319 If ALL is 0, we return when there are
9320 no more pending elements to output now.
9322 If ALL is 1, we output space as necessary so that
9323 we can output all the pending elements. */
9325 output_pending_init_elements (int all
, struct obstack
* braced_init_obstack
)
9327 struct init_node
*elt
= constructor_pending_elts
;
9332 /* Look through the whole pending tree.
9333 If we find an element that should be output now,
9334 output it. Otherwise, set NEXT to the element
9335 that comes first among those still pending. */
9340 if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
9342 if (tree_int_cst_equal (elt
->purpose
,
9343 constructor_unfilled_index
))
9344 output_init_element (input_location
, elt
->value
, elt
->origtype
,
9345 true, TREE_TYPE (constructor_type
),
9346 constructor_unfilled_index
, false, false,
9347 braced_init_obstack
);
9348 else if (tree_int_cst_lt (constructor_unfilled_index
,
9351 /* Advance to the next smaller node. */
9356 /* We have reached the smallest node bigger than the
9357 current unfilled index. Fill the space first. */
9358 next
= elt
->purpose
;
9364 /* Advance to the next bigger node. */
9369 /* We have reached the biggest node in a subtree. Find
9370 the parent of it, which is the next bigger node. */
9371 while (elt
->parent
&& elt
->parent
->right
== elt
)
9374 if (elt
&& tree_int_cst_lt (constructor_unfilled_index
,
9377 next
= elt
->purpose
;
9383 else if (RECORD_OR_UNION_TYPE_P (constructor_type
))
9385 tree ctor_unfilled_bitpos
, elt_bitpos
;
9387 /* If the current record is complete we are done. */
9388 if (constructor_unfilled_fields
== NULL_TREE
)
9391 ctor_unfilled_bitpos
= bit_position (constructor_unfilled_fields
);
9392 elt_bitpos
= bit_position (elt
->purpose
);
9393 /* We can't compare fields here because there might be empty
9394 fields in between. */
9395 if (tree_int_cst_equal (elt_bitpos
, ctor_unfilled_bitpos
))
9397 constructor_unfilled_fields
= elt
->purpose
;
9398 output_init_element (input_location
, elt
->value
, elt
->origtype
,
9399 true, TREE_TYPE (elt
->purpose
),
9400 elt
->purpose
, false, false,
9401 braced_init_obstack
);
9403 else if (tree_int_cst_lt (ctor_unfilled_bitpos
, elt_bitpos
))
9405 /* Advance to the next smaller node. */
9410 /* We have reached the smallest node bigger than the
9411 current unfilled field. Fill the space first. */
9412 next
= elt
->purpose
;
9418 /* Advance to the next bigger node. */
9423 /* We have reached the biggest node in a subtree. Find
9424 the parent of it, which is the next bigger node. */
9425 while (elt
->parent
&& elt
->parent
->right
== elt
)
9429 && (tree_int_cst_lt (ctor_unfilled_bitpos
,
9430 bit_position (elt
->purpose
))))
9432 next
= elt
->purpose
;
9440 /* Ordinarily return, but not if we want to output all
9441 and there are elements left. */
9442 if (!(all
&& next
!= NULL_TREE
))
9445 /* If it's not incremental, just skip over the gap, so that after
9446 jumping to retry we will output the next successive element. */
9447 if (RECORD_OR_UNION_TYPE_P (constructor_type
))
9448 constructor_unfilled_fields
= next
;
9449 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
9450 constructor_unfilled_index
= next
;
9452 /* ELT now points to the node in the pending tree with the next
9453 initializer to output. */
9457 /* Add one non-braced element to the current constructor level.
9458 This adjusts the current position within the constructor's type.
9459 This may also start or terminate implicit levels
9460 to handle a partly-braced initializer.
9462 Once this has found the correct level for the new element,
9463 it calls output_init_element.
9465 IMPLICIT is true if value comes from pop_init_level (1),
9466 the new initializer has been merged with the existing one
9467 and thus no warnings should be emitted about overriding an
9468 existing initializer. */
9471 process_init_element (location_t loc
, struct c_expr value
, bool implicit
,
9472 struct obstack
* braced_init_obstack
)
9474 tree orig_value
= value
.value
;
9476 = (orig_value
!= NULL_TREE
&& TREE_CODE (orig_value
) == STRING_CST
);
9477 bool strict_string
= value
.original_code
== STRING_CST
;
9478 bool was_designated
= designator_depth
!= 0;
9480 designator_depth
= 0;
9481 designator_erroneous
= 0;
9483 if (!implicit
&& value
.value
&& !integer_zerop (value
.value
))
9484 constructor_zeroinit
= 0;
9486 /* Handle superfluous braces around string cst as in
9487 char x[] = {"foo"}; */
9491 && TREE_CODE (constructor_type
) == ARRAY_TYPE
9492 && INTEGRAL_TYPE_P (TREE_TYPE (constructor_type
))
9493 && integer_zerop (constructor_unfilled_index
))
9495 if (constructor_stack
->replacement_value
.value
)
9496 error_init (loc
, "excess elements in char array initializer");
9497 constructor_stack
->replacement_value
= value
;
9501 if (constructor_stack
->replacement_value
.value
!= NULL_TREE
)
9503 error_init (loc
, "excess elements in struct initializer");
9507 /* Ignore elements of a brace group if it is entirely superfluous
9508 and has already been diagnosed. */
9509 if (constructor_type
== NULL_TREE
)
9512 if (!implicit
&& warn_designated_init
&& !was_designated
9513 && TREE_CODE (constructor_type
) == RECORD_TYPE
9514 && lookup_attribute ("designated_init",
9515 TYPE_ATTRIBUTES (constructor_type
)))
9517 OPT_Wdesignated_init
,
9518 "positional initialization of field "
9519 "in %<struct%> declared with %<designated_init%> attribute");
9521 /* If we've exhausted any levels that didn't have braces,
9523 while (constructor_stack
->implicit
)
9525 if (RECORD_OR_UNION_TYPE_P (constructor_type
)
9526 && constructor_fields
== NULL_TREE
)
9527 process_init_element (loc
,
9528 pop_init_level (loc
, 1, braced_init_obstack
,
9529 last_init_list_comma
),
9530 true, braced_init_obstack
);
9531 else if ((TREE_CODE (constructor_type
) == ARRAY_TYPE
9532 || VECTOR_TYPE_P (constructor_type
))
9533 && constructor_max_index
9534 && tree_int_cst_lt (constructor_max_index
,
9536 process_init_element (loc
,
9537 pop_init_level (loc
, 1, braced_init_obstack
,
9538 last_init_list_comma
),
9539 true, braced_init_obstack
);
9544 /* In the case of [LO ... HI] = VALUE, only evaluate VALUE once. */
9545 if (constructor_range_stack
)
9547 /* If value is a compound literal and we'll be just using its
9548 content, don't put it into a SAVE_EXPR. */
9549 if (TREE_CODE (value
.value
) != COMPOUND_LITERAL_EXPR
9550 || !require_constant_value
)
9552 tree semantic_type
= NULL_TREE
;
9553 if (TREE_CODE (value
.value
) == EXCESS_PRECISION_EXPR
)
9555 semantic_type
= TREE_TYPE (value
.value
);
9556 value
.value
= TREE_OPERAND (value
.value
, 0);
9558 value
.value
= save_expr (value
.value
);
9560 value
.value
= build1 (EXCESS_PRECISION_EXPR
, semantic_type
,
9567 if (TREE_CODE (constructor_type
) == RECORD_TYPE
)
9570 enum tree_code fieldcode
;
9572 if (constructor_fields
== NULL_TREE
)
9574 pedwarn_init (loc
, 0, "excess elements in struct initializer");
9578 fieldtype
= TREE_TYPE (constructor_fields
);
9579 if (fieldtype
!= error_mark_node
)
9580 fieldtype
= TYPE_MAIN_VARIANT (fieldtype
);
9581 fieldcode
= TREE_CODE (fieldtype
);
9583 /* Error for non-static initialization of a flexible array member. */
9584 if (fieldcode
== ARRAY_TYPE
9585 && !require_constant_value
9586 && TYPE_SIZE (fieldtype
) == NULL_TREE
9587 && DECL_CHAIN (constructor_fields
) == NULL_TREE
)
9589 error_init (loc
, "non-static initialization of a flexible "
9594 /* Error for initialization of a flexible array member with
9595 a string constant if the structure is in an array. E.g.:
9596 struct S { int x; char y[]; };
9597 struct S s[] = { { 1, "foo" } };
9600 && fieldcode
== ARRAY_TYPE
9601 && constructor_depth
> 1
9602 && TYPE_SIZE (fieldtype
) == NULL_TREE
9603 && DECL_CHAIN (constructor_fields
) == NULL_TREE
)
9605 bool in_array_p
= false;
9606 for (struct constructor_stack
*p
= constructor_stack
;
9607 p
&& p
->type
; p
= p
->next
)
9608 if (TREE_CODE (p
->type
) == ARRAY_TYPE
)
9615 error_init (loc
, "initialization of flexible array "
9616 "member in a nested context");
9621 /* Accept a string constant to initialize a subarray. */
9622 if (value
.value
!= NULL_TREE
9623 && fieldcode
== ARRAY_TYPE
9624 && INTEGRAL_TYPE_P (TREE_TYPE (fieldtype
))
9626 value
.value
= orig_value
;
9627 /* Otherwise, if we have come to a subaggregate,
9628 and we don't have an element of its type, push into it. */
9629 else if (value
.value
!= NULL_TREE
9630 && value
.value
!= error_mark_node
9631 && TYPE_MAIN_VARIANT (TREE_TYPE (value
.value
)) != fieldtype
9632 && (fieldcode
== RECORD_TYPE
|| fieldcode
== ARRAY_TYPE
9633 || fieldcode
== UNION_TYPE
|| fieldcode
== VECTOR_TYPE
))
9635 push_init_level (loc
, 1, braced_init_obstack
);
9641 push_member_name (constructor_fields
);
9642 output_init_element (loc
, value
.value
, value
.original_type
,
9643 strict_string
, fieldtype
,
9644 constructor_fields
, true, implicit
,
9645 braced_init_obstack
);
9646 RESTORE_SPELLING_DEPTH (constructor_depth
);
9649 /* Do the bookkeeping for an element that was
9650 directly output as a constructor. */
9652 /* For a record, keep track of end position of last field. */
9653 if (DECL_SIZE (constructor_fields
))
9654 constructor_bit_index
9655 = size_binop_loc (input_location
, PLUS_EXPR
,
9656 bit_position (constructor_fields
),
9657 DECL_SIZE (constructor_fields
));
9659 /* If the current field was the first one not yet written out,
9660 it isn't now, so update. */
9661 if (constructor_unfilled_fields
== constructor_fields
)
9663 constructor_unfilled_fields
= DECL_CHAIN (constructor_fields
);
9664 /* Skip any nameless bit fields. */
9665 while (constructor_unfilled_fields
!= 0
9666 && (DECL_UNNAMED_BIT_FIELD
9667 (constructor_unfilled_fields
)))
9668 constructor_unfilled_fields
=
9669 DECL_CHAIN (constructor_unfilled_fields
);
9673 constructor_fields
= DECL_CHAIN (constructor_fields
);
9674 /* Skip any nameless bit fields at the beginning. */
9675 while (constructor_fields
!= NULL_TREE
9676 && DECL_UNNAMED_BIT_FIELD (constructor_fields
))
9677 constructor_fields
= DECL_CHAIN (constructor_fields
);
9679 else if (TREE_CODE (constructor_type
) == UNION_TYPE
)
9682 enum tree_code fieldcode
;
9684 if (constructor_fields
== NULL_TREE
)
9686 pedwarn_init (loc
, 0,
9687 "excess elements in union initializer");
9691 fieldtype
= TREE_TYPE (constructor_fields
);
9692 if (fieldtype
!= error_mark_node
)
9693 fieldtype
= TYPE_MAIN_VARIANT (fieldtype
);
9694 fieldcode
= TREE_CODE (fieldtype
);
9696 /* Warn that traditional C rejects initialization of unions.
9697 We skip the warning if the value is zero. This is done
9698 under the assumption that the zero initializer in user
9699 code appears conditioned on e.g. __STDC__ to avoid
9700 "missing initializer" warnings and relies on default
9701 initialization to zero in the traditional C case.
9702 We also skip the warning if the initializer is designated,
9703 again on the assumption that this must be conditional on
9704 __STDC__ anyway (and we've already complained about the
9705 member-designator already). */
9706 if (!in_system_header_at (input_location
) && !constructor_designated
9707 && !(value
.value
&& (integer_zerop (value
.value
)
9708 || real_zerop (value
.value
))))
9709 warning (OPT_Wtraditional
, "traditional C rejects initialization "
9712 /* Accept a string constant to initialize a subarray. */
9713 if (value
.value
!= NULL_TREE
9714 && fieldcode
== ARRAY_TYPE
9715 && INTEGRAL_TYPE_P (TREE_TYPE (fieldtype
))
9717 value
.value
= orig_value
;
9718 /* Otherwise, if we have come to a subaggregate,
9719 and we don't have an element of its type, push into it. */
9720 else if (value
.value
!= NULL_TREE
9721 && value
.value
!= error_mark_node
9722 && TYPE_MAIN_VARIANT (TREE_TYPE (value
.value
)) != fieldtype
9723 && (fieldcode
== RECORD_TYPE
|| fieldcode
== ARRAY_TYPE
9724 || fieldcode
== UNION_TYPE
|| fieldcode
== VECTOR_TYPE
))
9726 push_init_level (loc
, 1, braced_init_obstack
);
9732 push_member_name (constructor_fields
);
9733 output_init_element (loc
, value
.value
, value
.original_type
,
9734 strict_string
, fieldtype
,
9735 constructor_fields
, true, implicit
,
9736 braced_init_obstack
);
9737 RESTORE_SPELLING_DEPTH (constructor_depth
);
9740 /* Do the bookkeeping for an element that was
9741 directly output as a constructor. */
9743 constructor_bit_index
= DECL_SIZE (constructor_fields
);
9744 constructor_unfilled_fields
= DECL_CHAIN (constructor_fields
);
9747 constructor_fields
= NULL_TREE
;
9749 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
9751 tree elttype
= TYPE_MAIN_VARIANT (TREE_TYPE (constructor_type
));
9752 enum tree_code eltcode
= TREE_CODE (elttype
);
9754 /* Accept a string constant to initialize a subarray. */
9755 if (value
.value
!= NULL_TREE
9756 && eltcode
== ARRAY_TYPE
9757 && INTEGRAL_TYPE_P (TREE_TYPE (elttype
))
9759 value
.value
= orig_value
;
9760 /* Otherwise, if we have come to a subaggregate,
9761 and we don't have an element of its type, push into it. */
9762 else if (value
.value
!= NULL_TREE
9763 && value
.value
!= error_mark_node
9764 && TYPE_MAIN_VARIANT (TREE_TYPE (value
.value
)) != elttype
9765 && (eltcode
== RECORD_TYPE
|| eltcode
== ARRAY_TYPE
9766 || eltcode
== UNION_TYPE
|| eltcode
== VECTOR_TYPE
))
9768 push_init_level (loc
, 1, braced_init_obstack
);
9772 if (constructor_max_index
!= NULL_TREE
9773 && (tree_int_cst_lt (constructor_max_index
, constructor_index
)
9774 || integer_all_onesp (constructor_max_index
)))
9776 pedwarn_init (loc
, 0,
9777 "excess elements in array initializer");
9781 /* Now output the actual element. */
9784 push_array_bounds (tree_to_uhwi (constructor_index
));
9785 output_init_element (loc
, value
.value
, value
.original_type
,
9786 strict_string
, elttype
,
9787 constructor_index
, true, implicit
,
9788 braced_init_obstack
);
9789 RESTORE_SPELLING_DEPTH (constructor_depth
);
9793 = size_binop_loc (input_location
, PLUS_EXPR
,
9794 constructor_index
, bitsize_one_node
);
9797 /* If we are doing the bookkeeping for an element that was
9798 directly output as a constructor, we must update
9799 constructor_unfilled_index. */
9800 constructor_unfilled_index
= constructor_index
;
9802 else if (VECTOR_TYPE_P (constructor_type
))
9804 tree elttype
= TYPE_MAIN_VARIANT (TREE_TYPE (constructor_type
));
9806 /* Do a basic check of initializer size. Note that vectors
9807 always have a fixed size derived from their type. */
9808 if (tree_int_cst_lt (constructor_max_index
, constructor_index
))
9810 pedwarn_init (loc
, 0,
9811 "excess elements in vector initializer");
9815 /* Now output the actual element. */
9818 if (TREE_CODE (value
.value
) == VECTOR_CST
)
9819 elttype
= TYPE_MAIN_VARIANT (constructor_type
);
9820 output_init_element (loc
, value
.value
, value
.original_type
,
9821 strict_string
, elttype
,
9822 constructor_index
, true, implicit
,
9823 braced_init_obstack
);
9827 = size_binop_loc (input_location
,
9828 PLUS_EXPR
, constructor_index
, bitsize_one_node
);
9831 /* If we are doing the bookkeeping for an element that was
9832 directly output as a constructor, we must update
9833 constructor_unfilled_index. */
9834 constructor_unfilled_index
= constructor_index
;
9837 /* Handle the sole element allowed in a braced initializer
9838 for a scalar variable. */
9839 else if (constructor_type
!= error_mark_node
9840 && constructor_fields
== NULL_TREE
)
9842 pedwarn_init (loc
, 0,
9843 "excess elements in scalar initializer");
9849 output_init_element (loc
, value
.value
, value
.original_type
,
9850 strict_string
, constructor_type
,
9851 NULL_TREE
, true, implicit
,
9852 braced_init_obstack
);
9853 constructor_fields
= NULL_TREE
;
9856 /* Handle range initializers either at this level or anywhere higher
9857 in the designator stack. */
9858 if (constructor_range_stack
)
9860 struct constructor_range_stack
*p
, *range_stack
;
9863 range_stack
= constructor_range_stack
;
9864 constructor_range_stack
= 0;
9865 while (constructor_stack
!= range_stack
->stack
)
9867 gcc_assert (constructor_stack
->implicit
);
9868 process_init_element (loc
,
9869 pop_init_level (loc
, 1,
9870 braced_init_obstack
,
9871 last_init_list_comma
),
9872 true, braced_init_obstack
);
9874 for (p
= range_stack
;
9875 !p
->range_end
|| tree_int_cst_equal (p
->index
, p
->range_end
);
9878 gcc_assert (constructor_stack
->implicit
);
9879 process_init_element (loc
,
9880 pop_init_level (loc
, 1,
9881 braced_init_obstack
,
9882 last_init_list_comma
),
9883 true, braced_init_obstack
);
9886 p
->index
= size_binop_loc (input_location
,
9887 PLUS_EXPR
, p
->index
, bitsize_one_node
);
9888 if (tree_int_cst_equal (p
->index
, p
->range_end
) && !p
->prev
)
9893 constructor_index
= p
->index
;
9894 constructor_fields
= p
->fields
;
9895 if (finish
&& p
->range_end
&& p
->index
== p
->range_start
)
9903 finish_implicit_inits (loc
, braced_init_obstack
);
9904 push_init_level (loc
, 2, braced_init_obstack
);
9905 p
->stack
= constructor_stack
;
9906 if (p
->range_end
&& tree_int_cst_equal (p
->index
, p
->range_end
))
9907 p
->index
= p
->range_start
;
9911 constructor_range_stack
= range_stack
;
9918 constructor_range_stack
= 0;
9921 /* Build a complete asm-statement, whose components are a CV_QUALIFIER
9922 (guaranteed to be 'volatile' or null) and ARGS (represented using
9923 an ASM_EXPR node). */
9925 build_asm_stmt (tree cv_qualifier
, tree args
)
9927 if (!ASM_VOLATILE_P (args
) && cv_qualifier
)
9928 ASM_VOLATILE_P (args
) = 1;
9929 return add_stmt (args
);
9932 /* Build an asm-expr, whose components are a STRING, some OUTPUTS,
9933 some INPUTS, and some CLOBBERS. The latter three may be NULL.
9934 SIMPLE indicates whether there was anything at all after the
9935 string in the asm expression -- asm("blah") and asm("blah" : )
9936 are subtly different. We use a ASM_EXPR node to represent this. */
9938 build_asm_expr (location_t loc
, tree string
, tree outputs
, tree inputs
,
9939 tree clobbers
, tree labels
, bool simple
)
9944 const char *constraint
;
9945 const char **oconstraints
;
9946 bool allows_mem
, allows_reg
, is_inout
;
9947 int ninputs
, noutputs
;
9949 ninputs
= list_length (inputs
);
9950 noutputs
= list_length (outputs
);
9951 oconstraints
= (const char **) alloca (noutputs
* sizeof (const char *));
9953 string
= resolve_asm_operand_names (string
, outputs
, inputs
, labels
);
9955 /* Remove output conversions that change the type but not the mode. */
9956 for (i
= 0, tail
= outputs
; tail
; ++i
, tail
= TREE_CHAIN (tail
))
9958 tree output
= TREE_VALUE (tail
);
9960 output
= c_fully_fold (output
, false, NULL
, true);
9962 /* ??? Really, this should not be here. Users should be using a
9963 proper lvalue, dammit. But there's a long history of using casts
9964 in the output operands. In cases like longlong.h, this becomes a
9965 primitive form of typechecking -- if the cast can be removed, then
9966 the output operand had a type of the proper width; otherwise we'll
9967 get an error. Gross, but ... */
9968 STRIP_NOPS (output
);
9970 if (!lvalue_or_else (loc
, output
, lv_asm
))
9971 output
= error_mark_node
;
9973 if (output
!= error_mark_node
9974 && (TREE_READONLY (output
)
9975 || TYPE_READONLY (TREE_TYPE (output
))
9976 || (RECORD_OR_UNION_TYPE_P (TREE_TYPE (output
))
9977 && C_TYPE_FIELDS_READONLY (TREE_TYPE (output
)))))
9978 readonly_error (loc
, output
, lv_asm
);
9980 constraint
= TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (tail
)));
9981 oconstraints
[i
] = constraint
;
9983 if (parse_output_constraint (&constraint
, i
, ninputs
, noutputs
,
9984 &allows_mem
, &allows_reg
, &is_inout
))
9986 /* If the operand is going to end up in memory,
9987 mark it addressable. */
9988 if (!allows_reg
&& !c_mark_addressable (output
))
9989 output
= error_mark_node
;
9990 if (!(!allows_reg
&& allows_mem
)
9991 && output
!= error_mark_node
9992 && VOID_TYPE_P (TREE_TYPE (output
)))
9994 error_at (loc
, "invalid use of void expression");
9995 output
= error_mark_node
;
9999 output
= error_mark_node
;
10001 TREE_VALUE (tail
) = output
;
10004 for (i
= 0, tail
= inputs
; tail
; ++i
, tail
= TREE_CHAIN (tail
))
10008 constraint
= TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (tail
)));
10009 input
= TREE_VALUE (tail
);
10011 if (parse_input_constraint (&constraint
, i
, ninputs
, noutputs
, 0,
10012 oconstraints
, &allows_mem
, &allows_reg
))
10014 /* If the operand is going to end up in memory,
10015 mark it addressable. */
10016 if (!allows_reg
&& allows_mem
)
10018 input
= c_fully_fold (input
, false, NULL
, true);
10020 /* Strip the nops as we allow this case. FIXME, this really
10021 should be rejected or made deprecated. */
10022 STRIP_NOPS (input
);
10023 if (!c_mark_addressable (input
))
10024 input
= error_mark_node
;
10028 struct c_expr expr
;
10029 memset (&expr
, 0, sizeof (expr
));
10030 expr
.value
= input
;
10031 expr
= convert_lvalue_to_rvalue (loc
, expr
, true, false);
10032 input
= c_fully_fold (expr
.value
, false, NULL
);
10034 if (input
!= error_mark_node
&& VOID_TYPE_P (TREE_TYPE (input
)))
10036 error_at (loc
, "invalid use of void expression");
10037 input
= error_mark_node
;
10042 input
= error_mark_node
;
10044 TREE_VALUE (tail
) = input
;
10047 /* ASMs with labels cannot have outputs. This should have been
10048 enforced by the parser. */
10049 gcc_assert (outputs
== NULL
|| labels
== NULL
);
10051 args
= build_stmt (loc
, ASM_EXPR
, string
, outputs
, inputs
, clobbers
, labels
);
10053 /* asm statements without outputs, including simple ones, are treated
10055 ASM_INPUT_P (args
) = simple
;
10056 ASM_VOLATILE_P (args
) = (noutputs
== 0);
10061 /* Generate a goto statement to LABEL. LOC is the location of the
10065 c_finish_goto_label (location_t loc
, tree label
)
10067 tree decl
= lookup_label_for_goto (loc
, label
);
10070 TREE_USED (decl
) = 1;
10072 add_stmt (build_predict_expr (PRED_GOTO
, NOT_TAKEN
));
10073 tree t
= build1 (GOTO_EXPR
, void_type_node
, decl
);
10074 SET_EXPR_LOCATION (t
, loc
);
10075 return add_stmt (t
);
10079 /* Generate a computed goto statement to EXPR. LOC is the location of
10083 c_finish_goto_ptr (location_t loc
, tree expr
)
10086 pedwarn (loc
, OPT_Wpedantic
, "ISO C forbids %<goto *expr;%>");
10087 expr
= c_fully_fold (expr
, false, NULL
);
10088 expr
= convert (ptr_type_node
, expr
);
10089 t
= build1 (GOTO_EXPR
, void_type_node
, expr
);
10090 SET_EXPR_LOCATION (t
, loc
);
10091 return add_stmt (t
);
10094 /* Generate a C `return' statement. RETVAL is the expression for what
10095 to return, or a null pointer for `return;' with no value. LOC is
10096 the location of the return statement, or the location of the expression,
10097 if the statement has any. If ORIGTYPE is not NULL_TREE, it
10098 is the original type of RETVAL. */
10101 c_finish_return (location_t loc
, tree retval
, tree origtype
)
10103 tree valtype
= TREE_TYPE (TREE_TYPE (current_function_decl
)), ret_stmt
;
10104 bool no_warning
= false;
10107 /* Use the expansion point to handle cases such as returning NULL
10108 in a function returning void. */
10109 source_location xloc
= expansion_point_location_if_in_system_header (loc
);
10111 if (TREE_THIS_VOLATILE (current_function_decl
))
10112 warning_at (xloc
, 0,
10113 "function declared %<noreturn%> has a %<return%> statement");
10117 tree semantic_type
= NULL_TREE
;
10118 npc
= null_pointer_constant_p (retval
);
10119 if (TREE_CODE (retval
) == EXCESS_PRECISION_EXPR
)
10121 semantic_type
= TREE_TYPE (retval
);
10122 retval
= TREE_OPERAND (retval
, 0);
10124 retval
= c_fully_fold (retval
, false, NULL
);
10126 retval
= build1 (EXCESS_PRECISION_EXPR
, semantic_type
, retval
);
10131 current_function_returns_null
= 1;
10132 if ((warn_return_type
|| flag_isoc99
)
10133 && valtype
!= NULL_TREE
&& TREE_CODE (valtype
) != VOID_TYPE
)
10137 warned_here
= pedwarn
10139 "%<return%> with no value, in function returning non-void");
10141 warned_here
= warning_at
10142 (loc
, OPT_Wreturn_type
,
10143 "%<return%> with no value, in function returning non-void");
10146 inform (DECL_SOURCE_LOCATION (current_function_decl
),
10150 else if (valtype
== NULL_TREE
|| TREE_CODE (valtype
) == VOID_TYPE
)
10152 current_function_returns_null
= 1;
10154 if (TREE_CODE (TREE_TYPE (retval
)) != VOID_TYPE
)
10155 warned_here
= pedwarn
10157 "%<return%> with a value, in function returning void");
10159 warned_here
= pedwarn
10160 (xloc
, OPT_Wpedantic
, "ISO C forbids "
10161 "%<return%> with expression, in function returning void");
10163 inform (DECL_SOURCE_LOCATION (current_function_decl
),
10168 tree t
= convert_for_assignment (loc
, UNKNOWN_LOCATION
, valtype
,
10169 retval
, origtype
, ic_return
,
10170 npc
, NULL_TREE
, NULL_TREE
, 0);
10171 tree res
= DECL_RESULT (current_function_decl
);
10175 current_function_returns_value
= 1;
10176 if (t
== error_mark_node
)
10179 save
= in_late_binary_op
;
10180 if (TREE_CODE (TREE_TYPE (res
)) == BOOLEAN_TYPE
10181 || TREE_CODE (TREE_TYPE (res
)) == COMPLEX_TYPE
10182 || (TREE_CODE (TREE_TYPE (t
)) == REAL_TYPE
10183 && (TREE_CODE (TREE_TYPE (res
)) == INTEGER_TYPE
10184 || TREE_CODE (TREE_TYPE (res
)) == ENUMERAL_TYPE
)
10185 && sanitize_flags_p (SANITIZE_FLOAT_CAST
)))
10186 in_late_binary_op
= true;
10187 inner
= t
= convert (TREE_TYPE (res
), t
);
10188 in_late_binary_op
= save
;
10190 /* Strip any conversions, additions, and subtractions, and see if
10191 we are returning the address of a local variable. Warn if so. */
10194 switch (TREE_CODE (inner
))
10197 case NON_LVALUE_EXPR
:
10199 case POINTER_PLUS_EXPR
:
10200 inner
= TREE_OPERAND (inner
, 0);
10204 /* If the second operand of the MINUS_EXPR has a pointer
10205 type (or is converted from it), this may be valid, so
10206 don't give a warning. */
10208 tree op1
= TREE_OPERAND (inner
, 1);
10210 while (!POINTER_TYPE_P (TREE_TYPE (op1
))
10211 && (CONVERT_EXPR_P (op1
)
10212 || TREE_CODE (op1
) == NON_LVALUE_EXPR
))
10213 op1
= TREE_OPERAND (op1
, 0);
10215 if (POINTER_TYPE_P (TREE_TYPE (op1
)))
10218 inner
= TREE_OPERAND (inner
, 0);
10223 inner
= TREE_OPERAND (inner
, 0);
10225 while (REFERENCE_CLASS_P (inner
)
10226 && !INDIRECT_REF_P (inner
))
10227 inner
= TREE_OPERAND (inner
, 0);
10230 && !DECL_EXTERNAL (inner
)
10231 && !TREE_STATIC (inner
)
10232 && DECL_CONTEXT (inner
) == current_function_decl
)
10234 if (TREE_CODE (inner
) == LABEL_DECL
)
10235 warning_at (loc
, OPT_Wreturn_local_addr
,
10236 "function returns address of label");
10239 warning_at (loc
, OPT_Wreturn_local_addr
,
10240 "function returns address of local variable");
10241 tree zero
= build_zero_cst (TREE_TYPE (res
));
10242 t
= build2 (COMPOUND_EXPR
, TREE_TYPE (res
), t
, zero
);
10254 retval
= build2 (MODIFY_EXPR
, TREE_TYPE (res
), res
, t
);
10255 SET_EXPR_LOCATION (retval
, loc
);
10257 if (warn_sequence_point
)
10258 verify_sequence_points (retval
);
10261 ret_stmt
= build_stmt (loc
, RETURN_EXPR
, retval
);
10262 TREE_NO_WARNING (ret_stmt
) |= no_warning
;
10263 return add_stmt (ret_stmt
);
10267 /* The SWITCH_EXPR being built. */
10270 /* The original type of the testing expression, i.e. before the
10271 default conversion is applied. */
10274 /* A splay-tree mapping the low element of a case range to the high
10275 element, or NULL_TREE if there is no high element. Used to
10276 determine whether or not a new case label duplicates an old case
10277 label. We need a tree, rather than simply a hash table, because
10278 of the GNU case range extension. */
10281 /* The bindings at the point of the switch. This is used for
10282 warnings crossing decls when branching to a case label. */
10283 struct c_spot_bindings
*bindings
;
10285 /* The next node on the stack. */
10286 struct c_switch
*next
;
10288 /* Remember whether the controlling expression had boolean type
10289 before integer promotions for the sake of -Wswitch-bool. */
10292 /* Remember whether there was a case value that is outside the
10293 range of the ORIG_TYPE. */
10294 bool outside_range_p
;
10297 /* A stack of the currently active switch statements. The innermost
10298 switch statement is on the top of the stack. There is no need to
10299 mark the stack for garbage collection because it is only active
10300 during the processing of the body of a function, and we never
10301 collect at that point. */
10303 struct c_switch
*c_switch_stack
;
10305 /* Start a C switch statement, testing expression EXP. Return the new
10306 SWITCH_EXPR. SWITCH_LOC is the location of the `switch'.
10307 SWITCH_COND_LOC is the location of the switch's condition.
10308 EXPLICIT_CAST_P is true if the expression EXP has an explicit cast. */
10311 c_start_case (location_t switch_loc
,
10312 location_t switch_cond_loc
,
10313 tree exp
, bool explicit_cast_p
)
10315 tree orig_type
= error_mark_node
;
10316 bool bool_cond_p
= false;
10317 struct c_switch
*cs
;
10319 if (exp
!= error_mark_node
)
10321 orig_type
= TREE_TYPE (exp
);
10323 if (!INTEGRAL_TYPE_P (orig_type
))
10325 if (orig_type
!= error_mark_node
)
10327 error_at (switch_cond_loc
, "switch quantity not an integer");
10328 orig_type
= error_mark_node
;
10330 exp
= integer_zero_node
;
10334 tree type
= TYPE_MAIN_VARIANT (orig_type
);
10337 /* Warn if the condition has boolean value. */
10338 while (TREE_CODE (e
) == COMPOUND_EXPR
)
10339 e
= TREE_OPERAND (e
, 1);
10341 if ((TREE_CODE (type
) == BOOLEAN_TYPE
10342 || truth_value_p (TREE_CODE (e
)))
10343 /* Explicit cast to int suppresses this warning. */
10344 && !(TREE_CODE (type
) == INTEGER_TYPE
10345 && explicit_cast_p
))
10346 bool_cond_p
= true;
10348 if (!in_system_header_at (input_location
)
10349 && (type
== long_integer_type_node
10350 || type
== long_unsigned_type_node
))
10351 warning_at (switch_cond_loc
,
10352 OPT_Wtraditional
, "%<long%> switch expression not "
10353 "converted to %<int%> in ISO C");
10355 exp
= c_fully_fold (exp
, false, NULL
);
10356 exp
= default_conversion (exp
);
10358 if (warn_sequence_point
)
10359 verify_sequence_points (exp
);
10363 /* Add this new SWITCH_EXPR to the stack. */
10364 cs
= XNEW (struct c_switch
);
10365 cs
->switch_expr
= build2 (SWITCH_EXPR
, orig_type
, exp
, NULL_TREE
);
10366 SET_EXPR_LOCATION (cs
->switch_expr
, switch_loc
);
10367 cs
->orig_type
= orig_type
;
10368 cs
->cases
= splay_tree_new (case_compare
, NULL
, NULL
);
10369 cs
->bindings
= c_get_switch_bindings ();
10370 cs
->bool_cond_p
= bool_cond_p
;
10371 cs
->outside_range_p
= false;
10372 cs
->next
= c_switch_stack
;
10373 c_switch_stack
= cs
;
10375 return add_stmt (cs
->switch_expr
);
10378 /* Process a case label at location LOC. */
10381 do_case (location_t loc
, tree low_value
, tree high_value
)
10383 tree label
= NULL_TREE
;
10385 if (low_value
&& TREE_CODE (low_value
) != INTEGER_CST
)
10387 low_value
= c_fully_fold (low_value
, false, NULL
);
10388 if (TREE_CODE (low_value
) == INTEGER_CST
)
10389 pedwarn (loc
, OPT_Wpedantic
,
10390 "case label is not an integer constant expression");
10393 if (high_value
&& TREE_CODE (high_value
) != INTEGER_CST
)
10395 high_value
= c_fully_fold (high_value
, false, NULL
);
10396 if (TREE_CODE (high_value
) == INTEGER_CST
)
10397 pedwarn (input_location
, OPT_Wpedantic
,
10398 "case label is not an integer constant expression");
10401 if (c_switch_stack
== NULL
)
10404 error_at (loc
, "case label not within a switch statement");
10406 error_at (loc
, "%<default%> label not within a switch statement");
10410 if (c_check_switch_jump_warnings (c_switch_stack
->bindings
,
10411 EXPR_LOCATION (c_switch_stack
->switch_expr
),
10415 label
= c_add_case_label (loc
, c_switch_stack
->cases
,
10416 SWITCH_COND (c_switch_stack
->switch_expr
),
10417 c_switch_stack
->orig_type
,
10418 low_value
, high_value
,
10419 &c_switch_stack
->outside_range_p
);
10420 if (label
== error_mark_node
)
10425 /* Finish the switch statement. TYPE is the original type of the
10426 controlling expression of the switch, or NULL_TREE. */
10429 c_finish_case (tree body
, tree type
)
10431 struct c_switch
*cs
= c_switch_stack
;
10432 location_t switch_location
;
10434 SWITCH_BODY (cs
->switch_expr
) = body
;
10436 /* Emit warnings as needed. */
10437 switch_location
= EXPR_LOCATION (cs
->switch_expr
);
10438 c_do_switch_warnings (cs
->cases
, switch_location
,
10439 type
? type
: TREE_TYPE (cs
->switch_expr
),
10440 SWITCH_COND (cs
->switch_expr
),
10441 cs
->bool_cond_p
, cs
->outside_range_p
);
10442 if (c_switch_covers_all_cases_p (cs
->cases
, TREE_TYPE (cs
->switch_expr
)))
10443 SWITCH_ALL_CASES_P (cs
->switch_expr
) = 1;
10445 /* Pop the stack. */
10446 c_switch_stack
= cs
->next
;
10447 splay_tree_delete (cs
->cases
);
10448 c_release_switch_bindings (cs
->bindings
);
10452 /* Emit an if statement. IF_LOCUS is the location of the 'if'. COND,
10453 THEN_BLOCK and ELSE_BLOCK are expressions to be used; ELSE_BLOCK
10457 c_finish_if_stmt (location_t if_locus
, tree cond
, tree then_block
,
10462 stmt
= build3 (COND_EXPR
, void_type_node
, cond
, then_block
, else_block
);
10463 SET_EXPR_LOCATION (stmt
, if_locus
);
10467 /* Emit a general-purpose loop construct. START_LOCUS is the location of
10468 the beginning of the loop. COND is the loop condition. COND_IS_FIRST
10469 is false for DO loops. INCR is the FOR increment expression. BODY is
10470 the statement controlled by the loop. BLAB is the break label. CLAB is
10471 the continue label. Everything is allowed to be NULL. */
10474 c_finish_loop (location_t start_locus
, tree cond
, tree incr
, tree body
,
10475 tree blab
, tree clab
, bool cond_is_first
)
10477 tree entry
= NULL
, exit
= NULL
, t
;
10479 /* If the condition is zero don't generate a loop construct. */
10480 if (cond
&& integer_zerop (cond
))
10484 t
= build_and_jump (&blab
);
10485 SET_EXPR_LOCATION (t
, start_locus
);
10491 tree top
= build1 (LABEL_EXPR
, void_type_node
, NULL_TREE
);
10493 /* If we have an exit condition, then we build an IF with gotos either
10494 out of the loop, or to the top of it. If there's no exit condition,
10495 then we just build a jump back to the top. */
10496 exit
= build_and_jump (&LABEL_EXPR_LABEL (top
));
10498 if (cond
&& !integer_nonzerop (cond
))
10500 /* Canonicalize the loop condition to the end. This means
10501 generating a branch to the loop condition. Reuse the
10502 continue label, if possible. */
10507 entry
= build1 (LABEL_EXPR
, void_type_node
, NULL_TREE
);
10508 t
= build_and_jump (&LABEL_EXPR_LABEL (entry
));
10511 t
= build1 (GOTO_EXPR
, void_type_node
, clab
);
10512 SET_EXPR_LOCATION (t
, start_locus
);
10516 t
= build_and_jump (&blab
);
10518 exit
= fold_build3_loc (start_locus
,
10519 COND_EXPR
, void_type_node
, cond
, exit
, t
);
10521 exit
= fold_build3_loc (input_location
,
10522 COND_EXPR
, void_type_node
, cond
, exit
, t
);
10526 /* For the backward-goto's location of an unconditional loop
10527 use the beginning of the body, or, if there is none, the
10528 top of the loop. */
10529 location_t loc
= EXPR_LOCATION (expr_first (body
));
10530 if (loc
== UNKNOWN_LOCATION
)
10532 SET_EXPR_LOCATION (exit
, loc
);
10541 add_stmt (build1 (LABEL_EXPR
, void_type_node
, clab
));
10549 add_stmt (build1 (LABEL_EXPR
, void_type_node
, blab
));
10553 c_finish_bc_stmt (location_t loc
, tree
*label_p
, bool is_break
)
10556 tree label
= *label_p
;
10558 /* In switch statements break is sometimes stylistically used after
10559 a return statement. This can lead to spurious warnings about
10560 control reaching the end of a non-void function when it is
10561 inlined. Note that we are calling block_may_fallthru with
10562 language specific tree nodes; this works because
10563 block_may_fallthru returns true when given something it does not
10565 skip
= !block_may_fallthru (cur_stmt_list
);
10570 *label_p
= label
= create_artificial_label (loc
);
10572 else if (TREE_CODE (label
) == LABEL_DECL
)
10574 else switch (TREE_INT_CST_LOW (label
))
10578 error_at (loc
, "break statement not within loop or switch");
10580 error_at (loc
, "continue statement not within a loop");
10584 gcc_assert (is_break
);
10585 error_at (loc
, "break statement used with OpenMP for loop");
10590 error ("break statement within %<#pragma simd%> loop body");
10592 error ("continue statement within %<#pragma simd%> loop body");
10596 gcc_unreachable ();
10603 add_stmt (build_predict_expr (PRED_CONTINUE
, NOT_TAKEN
));
10605 return add_stmt (build1 (GOTO_EXPR
, void_type_node
, label
));
10608 /* A helper routine for c_process_expr_stmt and c_finish_stmt_expr. */
10611 emit_side_effect_warnings (location_t loc
, tree expr
)
10613 if (expr
== error_mark_node
)
10615 else if (!TREE_SIDE_EFFECTS (expr
))
10617 if (!VOID_TYPE_P (TREE_TYPE (expr
)) && !TREE_NO_WARNING (expr
))
10618 warning_at (loc
, OPT_Wunused_value
, "statement with no effect");
10620 else if (TREE_CODE (expr
) == COMPOUND_EXPR
)
10623 location_t cloc
= loc
;
10624 while (TREE_CODE (r
) == COMPOUND_EXPR
)
10626 if (EXPR_HAS_LOCATION (r
))
10627 cloc
= EXPR_LOCATION (r
);
10628 r
= TREE_OPERAND (r
, 1);
10630 if (!TREE_SIDE_EFFECTS (r
)
10631 && !VOID_TYPE_P (TREE_TYPE (r
))
10632 && !CONVERT_EXPR_P (r
)
10633 && !TREE_NO_WARNING (r
)
10634 && !TREE_NO_WARNING (expr
))
10635 warning_at (cloc
, OPT_Wunused_value
,
10636 "right-hand operand of comma expression has no effect");
10639 warn_if_unused_value (expr
, loc
);
10642 /* Process an expression as if it were a complete statement. Emit
10643 diagnostics, but do not call ADD_STMT. LOC is the location of the
10647 c_process_expr_stmt (location_t loc
, tree expr
)
10654 expr
= c_fully_fold (expr
, false, NULL
);
10656 if (warn_sequence_point
)
10657 verify_sequence_points (expr
);
10659 if (TREE_TYPE (expr
) != error_mark_node
10660 && !COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (expr
))
10661 && TREE_CODE (TREE_TYPE (expr
)) != ARRAY_TYPE
)
10662 error_at (loc
, "expression statement has incomplete type");
10664 /* If we're not processing a statement expression, warn about unused values.
10665 Warnings for statement expressions will be emitted later, once we figure
10666 out which is the result. */
10667 if (!STATEMENT_LIST_STMT_EXPR (cur_stmt_list
)
10668 && warn_unused_value
)
10669 emit_side_effect_warnings (EXPR_LOC_OR_LOC (expr
, loc
), expr
);
10672 while (TREE_CODE (exprv
) == COMPOUND_EXPR
)
10673 exprv
= TREE_OPERAND (exprv
, 1);
10674 while (CONVERT_EXPR_P (exprv
))
10675 exprv
= TREE_OPERAND (exprv
, 0);
10677 || handled_component_p (exprv
)
10678 || TREE_CODE (exprv
) == ADDR_EXPR
)
10679 mark_exp_read (exprv
);
10681 /* If the expression is not of a type to which we cannot assign a line
10682 number, wrap the thing in a no-op NOP_EXPR. */
10683 if (DECL_P (expr
) || CONSTANT_CLASS_P (expr
))
10685 expr
= build1 (NOP_EXPR
, TREE_TYPE (expr
), expr
);
10686 SET_EXPR_LOCATION (expr
, loc
);
10692 /* Emit an expression as a statement. LOC is the location of the
10696 c_finish_expr_stmt (location_t loc
, tree expr
)
10699 return add_stmt (c_process_expr_stmt (loc
, expr
));
10704 /* Do the opposite and emit a statement as an expression. To begin,
10705 create a new binding level and return it. */
10708 c_begin_stmt_expr (void)
10712 /* We must force a BLOCK for this level so that, if it is not expanded
10713 later, there is a way to turn off the entire subtree of blocks that
10714 are contained in it. */
10715 keep_next_level ();
10716 ret
= c_begin_compound_stmt (true);
10718 c_bindings_start_stmt_expr (c_switch_stack
== NULL
10720 : c_switch_stack
->bindings
);
10722 /* Mark the current statement list as belonging to a statement list. */
10723 STATEMENT_LIST_STMT_EXPR (ret
) = 1;
10728 /* LOC is the location of the compound statement to which this body
10732 c_finish_stmt_expr (location_t loc
, tree body
)
10734 tree last
, type
, tmp
, val
;
10737 body
= c_end_compound_stmt (loc
, body
, true);
10739 c_bindings_end_stmt_expr (c_switch_stack
== NULL
10741 : c_switch_stack
->bindings
);
10743 /* Locate the last statement in BODY. See c_end_compound_stmt
10744 about always returning a BIND_EXPR. */
10745 last_p
= &BIND_EXPR_BODY (body
);
10746 last
= BIND_EXPR_BODY (body
);
10748 continue_searching
:
10749 if (TREE_CODE (last
) == STATEMENT_LIST
)
10751 tree_stmt_iterator l
= tsi_last (last
);
10753 while (!tsi_end_p (l
) && TREE_CODE (tsi_stmt (l
)) == DEBUG_BEGIN_STMT
)
10756 /* This can happen with degenerate cases like ({ }). No value. */
10760 /* If we're supposed to generate side effects warnings, process
10761 all of the statements except the last. */
10762 if (warn_unused_value
)
10764 for (tree_stmt_iterator i
= tsi_start (last
);
10765 tsi_stmt (i
) != tsi_stmt (l
); tsi_next (&i
))
10768 tree t
= tsi_stmt (i
);
10770 tloc
= EXPR_HAS_LOCATION (t
) ? EXPR_LOCATION (t
) : loc
;
10771 emit_side_effect_warnings (tloc
, t
);
10774 last_p
= tsi_stmt_ptr (l
);
10778 /* If the end of the list is exception related, then the list was split
10779 by a call to push_cleanup. Continue searching. */
10780 if (TREE_CODE (last
) == TRY_FINALLY_EXPR
10781 || TREE_CODE (last
) == TRY_CATCH_EXPR
)
10783 last_p
= &TREE_OPERAND (last
, 0);
10785 goto continue_searching
;
10788 if (last
== error_mark_node
)
10791 /* In the case that the BIND_EXPR is not necessary, return the
10792 expression out from inside it. */
10793 if ((last
== BIND_EXPR_BODY (body
)
10794 /* Skip nested debug stmts. */
10795 || last
== expr_first (BIND_EXPR_BODY (body
)))
10796 && BIND_EXPR_VARS (body
) == NULL
)
10798 /* Even if this looks constant, do not allow it in a constant
10800 last
= c_wrap_maybe_const (last
, true);
10801 /* Do not warn if the return value of a statement expression is
10803 TREE_NO_WARNING (last
) = 1;
10807 /* Extract the type of said expression. */
10808 type
= TREE_TYPE (last
);
10810 /* If we're not returning a value at all, then the BIND_EXPR that
10811 we already have is a fine expression to return. */
10812 if (!type
|| VOID_TYPE_P (type
))
10815 /* Now that we've located the expression containing the value, it seems
10816 silly to make voidify_wrapper_expr repeat the process. Create a
10817 temporary of the appropriate type and stick it in a TARGET_EXPR. */
10818 tmp
= create_tmp_var_raw (type
);
10820 /* Unwrap a no-op NOP_EXPR as added by c_finish_expr_stmt. This avoids
10821 tree_expr_nonnegative_p giving up immediately. */
10823 if (TREE_CODE (val
) == NOP_EXPR
10824 && TREE_TYPE (val
) == TREE_TYPE (TREE_OPERAND (val
, 0)))
10825 val
= TREE_OPERAND (val
, 0);
10827 *last_p
= build2 (MODIFY_EXPR
, void_type_node
, tmp
, val
);
10828 SET_EXPR_LOCATION (*last_p
, EXPR_LOCATION (last
));
10831 tree t
= build4 (TARGET_EXPR
, type
, tmp
, body
, NULL_TREE
, NULL_TREE
);
10832 SET_EXPR_LOCATION (t
, loc
);
10837 /* Begin and end compound statements. This is as simple as pushing
10838 and popping new statement lists from the tree. */
10841 c_begin_compound_stmt (bool do_scope
)
10843 tree stmt
= push_stmt_list ();
10849 /* End a compound statement. STMT is the statement. LOC is the
10850 location of the compound statement-- this is usually the location
10851 of the opening brace. */
10854 c_end_compound_stmt (location_t loc
, tree stmt
, bool do_scope
)
10860 if (c_dialect_objc ())
10861 objc_clear_super_receiver ();
10862 block
= pop_scope ();
10865 stmt
= pop_stmt_list (stmt
);
10866 stmt
= c_build_bind_expr (loc
, block
, stmt
);
10868 /* If this compound statement is nested immediately inside a statement
10869 expression, then force a BIND_EXPR to be created. Otherwise we'll
10870 do the wrong thing for ({ { 1; } }) or ({ 1; { } }). In particular,
10871 STATEMENT_LISTs merge, and thus we can lose track of what statement
10872 was really last. */
10873 if (building_stmt_list_p ()
10874 && STATEMENT_LIST_STMT_EXPR (cur_stmt_list
)
10875 && TREE_CODE (stmt
) != BIND_EXPR
)
10877 stmt
= build3 (BIND_EXPR
, void_type_node
, NULL
, stmt
, NULL
);
10878 TREE_SIDE_EFFECTS (stmt
) = 1;
10879 SET_EXPR_LOCATION (stmt
, loc
);
10885 /* Queue a cleanup. CLEANUP is an expression/statement to be executed
10886 when the current scope is exited. EH_ONLY is true when this is not
10887 meant to apply to normal control flow transfer. */
10890 push_cleanup (tree decl
, tree cleanup
, bool eh_only
)
10892 enum tree_code code
;
10896 code
= eh_only
? TRY_CATCH_EXPR
: TRY_FINALLY_EXPR
;
10897 stmt
= build_stmt (DECL_SOURCE_LOCATION (decl
), code
, NULL
, cleanup
);
10899 stmt_expr
= STATEMENT_LIST_STMT_EXPR (cur_stmt_list
);
10900 list
= push_stmt_list ();
10901 TREE_OPERAND (stmt
, 0) = list
;
10902 STATEMENT_LIST_STMT_EXPR (list
) = stmt_expr
;
10905 /* Build a vector comparison of ARG0 and ARG1 using CODE opcode
10906 into a value of TYPE type. Comparison is done via VEC_COND_EXPR. */
10909 build_vec_cmp (tree_code code
, tree type
,
10910 tree arg0
, tree arg1
)
10912 tree zero_vec
= build_zero_cst (type
);
10913 tree minus_one_vec
= build_minus_one_cst (type
);
10914 tree cmp_type
= build_same_sized_truth_vector_type (type
);
10915 tree cmp
= build2 (code
, cmp_type
, arg0
, arg1
);
10916 return build3 (VEC_COND_EXPR
, type
, cmp
, minus_one_vec
, zero_vec
);
10919 /* Build a binary-operation expression without default conversions.
10920 CODE is the kind of expression to build.
10921 LOCATION is the operator's location.
10922 This function differs from `build' in several ways:
10923 the data type of the result is computed and recorded in it,
10924 warnings are generated if arg data types are invalid,
10925 special handling for addition and subtraction of pointers is known,
10926 and some optimization is done (operations on narrow ints
10927 are done in the narrower type when that gives the same result).
10928 Constant folding is also done before the result is returned.
10930 Note that the operands will never have enumeral types, or function
10931 or array types, because either they will have the default conversions
10932 performed or they have both just been converted to some other type in which
10933 the arithmetic is to be done. */
10936 build_binary_op (location_t location
, enum tree_code code
,
10937 tree orig_op0
, tree orig_op1
, bool convert_p
)
10939 tree type0
, type1
, orig_type0
, orig_type1
;
10941 enum tree_code code0
, code1
;
10943 tree ret
= error_mark_node
;
10944 const char *invalid_op_diag
;
10945 bool op0_int_operands
, op1_int_operands
;
10946 bool int_const
, int_const_or_overflow
, int_operands
;
10948 /* Expression code to give to the expression when it is built.
10949 Normally this is CODE, which is what the caller asked for,
10950 but in some special cases we change it. */
10951 enum tree_code resultcode
= code
;
10953 /* Data type in which the computation is to be performed.
10954 In the simplest cases this is the common type of the arguments. */
10955 tree result_type
= NULL
;
10957 /* When the computation is in excess precision, the type of the
10958 final EXCESS_PRECISION_EXPR. */
10959 tree semantic_result_type
= NULL
;
10961 /* Nonzero means operands have already been type-converted
10962 in whatever way is necessary.
10963 Zero means they need to be converted to RESULT_TYPE. */
10966 /* Nonzero means create the expression with this type, rather than
10968 tree build_type
= NULL_TREE
;
10970 /* Nonzero means after finally constructing the expression
10971 convert it to this type. */
10972 tree final_type
= NULL_TREE
;
10974 /* Nonzero if this is an operation like MIN or MAX which can
10975 safely be computed in short if both args are promoted shorts.
10976 Also implies COMMON.
10977 -1 indicates a bitwise operation; this makes a difference
10978 in the exact conditions for when it is safe to do the operation
10979 in a narrower mode. */
10982 /* Nonzero if this is a comparison operation;
10983 if both args are promoted shorts, compare the original shorts.
10984 Also implies COMMON. */
10985 int short_compare
= 0;
10987 /* Nonzero if this is a right-shift operation, which can be computed on the
10988 original short and then promoted if the operand is a promoted short. */
10989 int short_shift
= 0;
10991 /* Nonzero means set RESULT_TYPE to the common type of the args. */
10994 /* True means types are compatible as far as ObjC is concerned. */
10997 /* True means this is an arithmetic operation that may need excess
10999 bool may_need_excess_precision
;
11001 /* True means this is a boolean operation that converts both its
11002 operands to truth-values. */
11003 bool boolean_op
= false;
11005 /* Remember whether we're doing / or %. */
11006 bool doing_div_or_mod
= false;
11008 /* Remember whether we're doing << or >>. */
11009 bool doing_shift
= false;
11011 /* Tree holding instrumentation expression. */
11012 tree instrument_expr
= NULL
;
11014 if (location
== UNKNOWN_LOCATION
)
11015 location
= input_location
;
11020 op0_int_operands
= EXPR_INT_CONST_OPERANDS (orig_op0
);
11021 if (op0_int_operands
)
11022 op0
= remove_c_maybe_const_expr (op0
);
11023 op1_int_operands
= EXPR_INT_CONST_OPERANDS (orig_op1
);
11024 if (op1_int_operands
)
11025 op1
= remove_c_maybe_const_expr (op1
);
11026 int_operands
= (op0_int_operands
&& op1_int_operands
);
11029 int_const_or_overflow
= (TREE_CODE (orig_op0
) == INTEGER_CST
11030 && TREE_CODE (orig_op1
) == INTEGER_CST
);
11031 int_const
= (int_const_or_overflow
11032 && !TREE_OVERFLOW (orig_op0
)
11033 && !TREE_OVERFLOW (orig_op1
));
11036 int_const
= int_const_or_overflow
= false;
11038 /* Do not apply default conversion in mixed vector/scalar expression. */
11040 && VECTOR_TYPE_P (TREE_TYPE (op0
)) == VECTOR_TYPE_P (TREE_TYPE (op1
)))
11042 op0
= default_conversion (op0
);
11043 op1
= default_conversion (op1
);
11046 orig_type0
= type0
= TREE_TYPE (op0
);
11048 orig_type1
= type1
= TREE_TYPE (op1
);
11050 /* The expression codes of the data types of the arguments tell us
11051 whether the arguments are integers, floating, pointers, etc. */
11052 code0
= TREE_CODE (type0
);
11053 code1
= TREE_CODE (type1
);
11055 /* Strip NON_LVALUE_EXPRs, etc., since we aren't using as an lvalue. */
11056 STRIP_TYPE_NOPS (op0
);
11057 STRIP_TYPE_NOPS (op1
);
11059 /* If an error was already reported for one of the arguments,
11060 avoid reporting another error. */
11062 if (code0
== ERROR_MARK
|| code1
== ERROR_MARK
)
11063 return error_mark_node
;
11065 if (code0
== POINTER_TYPE
11066 && reject_gcc_builtin (op0
, EXPR_LOCATION (orig_op0
)))
11067 return error_mark_node
;
11069 if (code1
== POINTER_TYPE
11070 && reject_gcc_builtin (op1
, EXPR_LOCATION (orig_op1
)))
11071 return error_mark_node
;
11073 if ((invalid_op_diag
11074 = targetm
.invalid_binary_op (code
, type0
, type1
)))
11076 error_at (location
, invalid_op_diag
);
11077 return error_mark_node
;
11085 case TRUNC_DIV_EXPR
:
11086 case CEIL_DIV_EXPR
:
11087 case FLOOR_DIV_EXPR
:
11088 case ROUND_DIV_EXPR
:
11089 case EXACT_DIV_EXPR
:
11090 may_need_excess_precision
= true;
11093 may_need_excess_precision
= false;
11096 if (TREE_CODE (op0
) == EXCESS_PRECISION_EXPR
)
11098 op0
= TREE_OPERAND (op0
, 0);
11099 type0
= TREE_TYPE (op0
);
11101 else if (may_need_excess_precision
11102 && (eptype
= excess_precision_type (type0
)) != NULL_TREE
)
11105 op0
= convert (eptype
, op0
);
11107 if (TREE_CODE (op1
) == EXCESS_PRECISION_EXPR
)
11109 op1
= TREE_OPERAND (op1
, 0);
11110 type1
= TREE_TYPE (op1
);
11112 else if (may_need_excess_precision
11113 && (eptype
= excess_precision_type (type1
)) != NULL_TREE
)
11116 op1
= convert (eptype
, op1
);
11119 objc_ok
= objc_compare_types (type0
, type1
, -3, NULL_TREE
);
11121 /* In case when one of the operands of the binary operation is
11122 a vector and another is a scalar -- convert scalar to vector. */
11123 if ((code0
== VECTOR_TYPE
) != (code1
== VECTOR_TYPE
))
11125 enum stv_conv convert_flag
= scalar_to_vector (location
, code
, op0
, op1
,
11128 switch (convert_flag
)
11131 return error_mark_node
;
11134 bool maybe_const
= true;
11136 sc
= c_fully_fold (op0
, false, &maybe_const
);
11137 sc
= save_expr (sc
);
11138 sc
= convert (TREE_TYPE (type1
), sc
);
11139 op0
= build_vector_from_val (type1
, sc
);
11141 op0
= c_wrap_maybe_const (op0
, true);
11142 orig_type0
= type0
= TREE_TYPE (op0
);
11143 code0
= TREE_CODE (type0
);
11147 case stv_secondarg
:
11149 bool maybe_const
= true;
11151 sc
= c_fully_fold (op1
, false, &maybe_const
);
11152 sc
= save_expr (sc
);
11153 sc
= convert (TREE_TYPE (type0
), sc
);
11154 op1
= build_vector_from_val (type0
, sc
);
11156 op1
= c_wrap_maybe_const (op1
, true);
11157 orig_type1
= type1
= TREE_TYPE (op1
);
11158 code1
= TREE_CODE (type1
);
11170 /* Handle the pointer + int case. */
11171 if (code0
== POINTER_TYPE
&& code1
== INTEGER_TYPE
)
11173 ret
= pointer_int_sum (location
, PLUS_EXPR
, op0
, op1
);
11174 goto return_build_binary_op
;
11176 else if (code1
== POINTER_TYPE
&& code0
== INTEGER_TYPE
)
11178 ret
= pointer_int_sum (location
, PLUS_EXPR
, op1
, op0
);
11179 goto return_build_binary_op
;
11186 /* Subtraction of two similar pointers.
11187 We must subtract them as integers, then divide by object size. */
11188 if (code0
== POINTER_TYPE
&& code1
== POINTER_TYPE
11189 && comp_target_types (location
, type0
, type1
))
11191 ret
= pointer_diff (location
, op0
, op1
, &instrument_expr
);
11192 goto return_build_binary_op
;
11194 /* Handle pointer minus int. Just like pointer plus int. */
11195 else if (code0
== POINTER_TYPE
&& code1
== INTEGER_TYPE
)
11197 ret
= pointer_int_sum (location
, MINUS_EXPR
, op0
, op1
);
11198 goto return_build_binary_op
;
11208 case TRUNC_DIV_EXPR
:
11209 case CEIL_DIV_EXPR
:
11210 case FLOOR_DIV_EXPR
:
11211 case ROUND_DIV_EXPR
:
11212 case EXACT_DIV_EXPR
:
11213 doing_div_or_mod
= true;
11214 warn_for_div_by_zero (location
, op1
);
11216 if ((code0
== INTEGER_TYPE
|| code0
== REAL_TYPE
11217 || code0
== FIXED_POINT_TYPE
11218 || code0
== COMPLEX_TYPE
|| code0
== VECTOR_TYPE
)
11219 && (code1
== INTEGER_TYPE
|| code1
== REAL_TYPE
11220 || code1
== FIXED_POINT_TYPE
11221 || code1
== COMPLEX_TYPE
|| code1
== VECTOR_TYPE
))
11223 enum tree_code tcode0
= code0
, tcode1
= code1
;
11225 if (code0
== COMPLEX_TYPE
|| code0
== VECTOR_TYPE
)
11226 tcode0
= TREE_CODE (TREE_TYPE (TREE_TYPE (op0
)));
11227 if (code1
== COMPLEX_TYPE
|| code1
== VECTOR_TYPE
)
11228 tcode1
= TREE_CODE (TREE_TYPE (TREE_TYPE (op1
)));
11230 if (!((tcode0
== INTEGER_TYPE
&& tcode1
== INTEGER_TYPE
)
11231 || (tcode0
== FIXED_POINT_TYPE
&& tcode1
== FIXED_POINT_TYPE
)))
11232 resultcode
= RDIV_EXPR
;
11234 /* Although it would be tempting to shorten always here, that
11235 loses on some targets, since the modulo instruction is
11236 undefined if the quotient can't be represented in the
11237 computation mode. We shorten only if unsigned or if
11238 dividing by something we know != -1. */
11239 shorten
= (TYPE_UNSIGNED (TREE_TYPE (orig_op0
))
11240 || (TREE_CODE (op1
) == INTEGER_CST
11241 && !integer_all_onesp (op1
)));
11249 if (code0
== INTEGER_TYPE
&& code1
== INTEGER_TYPE
)
11251 /* Allow vector types which are not floating point types. */
11252 else if (code0
== VECTOR_TYPE
11253 && code1
== VECTOR_TYPE
11254 && !VECTOR_FLOAT_TYPE_P (type0
)
11255 && !VECTOR_FLOAT_TYPE_P (type1
))
11259 case TRUNC_MOD_EXPR
:
11260 case FLOOR_MOD_EXPR
:
11261 doing_div_or_mod
= true;
11262 warn_for_div_by_zero (location
, op1
);
11264 if (code0
== VECTOR_TYPE
&& code1
== VECTOR_TYPE
11265 && TREE_CODE (TREE_TYPE (type0
)) == INTEGER_TYPE
11266 && TREE_CODE (TREE_TYPE (type1
)) == INTEGER_TYPE
)
11268 else if (code0
== INTEGER_TYPE
&& code1
== INTEGER_TYPE
)
11270 /* Although it would be tempting to shorten always here, that loses
11271 on some targets, since the modulo instruction is undefined if the
11272 quotient can't be represented in the computation mode. We shorten
11273 only if unsigned or if dividing by something we know != -1. */
11274 shorten
= (TYPE_UNSIGNED (TREE_TYPE (orig_op0
))
11275 || (TREE_CODE (op1
) == INTEGER_CST
11276 && !integer_all_onesp (op1
)));
11281 case TRUTH_ANDIF_EXPR
:
11282 case TRUTH_ORIF_EXPR
:
11283 case TRUTH_AND_EXPR
:
11284 case TRUTH_OR_EXPR
:
11285 case TRUTH_XOR_EXPR
:
11286 if ((code0
== INTEGER_TYPE
|| code0
== POINTER_TYPE
11287 || code0
== REAL_TYPE
|| code0
== COMPLEX_TYPE
11288 || code0
== FIXED_POINT_TYPE
)
11289 && (code1
== INTEGER_TYPE
|| code1
== POINTER_TYPE
11290 || code1
== REAL_TYPE
|| code1
== COMPLEX_TYPE
11291 || code1
== FIXED_POINT_TYPE
))
11293 /* Result of these operations is always an int,
11294 but that does not mean the operands should be
11295 converted to ints! */
11296 result_type
= integer_type_node
;
11297 if (op0_int_operands
)
11299 op0
= c_objc_common_truthvalue_conversion (location
, orig_op0
);
11300 op0
= remove_c_maybe_const_expr (op0
);
11303 op0
= c_objc_common_truthvalue_conversion (location
, op0
);
11304 if (op1_int_operands
)
11306 op1
= c_objc_common_truthvalue_conversion (location
, orig_op1
);
11307 op1
= remove_c_maybe_const_expr (op1
);
11310 op1
= c_objc_common_truthvalue_conversion (location
, op1
);
11314 if (code
== TRUTH_ANDIF_EXPR
)
11316 int_const_or_overflow
= (int_operands
11317 && TREE_CODE (orig_op0
) == INTEGER_CST
11318 && (op0
== truthvalue_false_node
11319 || TREE_CODE (orig_op1
) == INTEGER_CST
));
11320 int_const
= (int_const_or_overflow
11321 && !TREE_OVERFLOW (orig_op0
)
11322 && (op0
== truthvalue_false_node
11323 || !TREE_OVERFLOW (orig_op1
)));
11325 else if (code
== TRUTH_ORIF_EXPR
)
11327 int_const_or_overflow
= (int_operands
11328 && TREE_CODE (orig_op0
) == INTEGER_CST
11329 && (op0
== truthvalue_true_node
11330 || TREE_CODE (orig_op1
) == INTEGER_CST
));
11331 int_const
= (int_const_or_overflow
11332 && !TREE_OVERFLOW (orig_op0
)
11333 && (op0
== truthvalue_true_node
11334 || !TREE_OVERFLOW (orig_op1
)));
11338 /* Shift operations: result has same type as first operand;
11339 always convert second operand to int.
11340 Also set SHORT_SHIFT if shifting rightward. */
11343 if (code0
== VECTOR_TYPE
&& code1
== VECTOR_TYPE
11344 && TREE_CODE (TREE_TYPE (type0
)) == INTEGER_TYPE
11345 && TREE_CODE (TREE_TYPE (type1
)) == INTEGER_TYPE
11346 && known_eq (TYPE_VECTOR_SUBPARTS (type0
),
11347 TYPE_VECTOR_SUBPARTS (type1
)))
11349 result_type
= type0
;
11352 else if ((code0
== INTEGER_TYPE
|| code0
== FIXED_POINT_TYPE
11353 || (code0
== VECTOR_TYPE
11354 && TREE_CODE (TREE_TYPE (type0
)) == INTEGER_TYPE
))
11355 && code1
== INTEGER_TYPE
)
11357 doing_shift
= true;
11358 if (TREE_CODE (op1
) == INTEGER_CST
)
11360 if (tree_int_cst_sgn (op1
) < 0)
11363 if (c_inhibit_evaluation_warnings
== 0)
11364 warning_at (location
, OPT_Wshift_count_negative
,
11365 "right shift count is negative");
11367 else if (code0
== VECTOR_TYPE
)
11369 if (compare_tree_int (op1
,
11370 TYPE_PRECISION (TREE_TYPE (type0
)))
11374 if (c_inhibit_evaluation_warnings
== 0)
11375 warning_at (location
, OPT_Wshift_count_overflow
,
11376 "right shift count >= width of vector element");
11381 if (!integer_zerop (op1
))
11384 if (compare_tree_int (op1
, TYPE_PRECISION (type0
)) >= 0)
11387 if (c_inhibit_evaluation_warnings
== 0)
11388 warning_at (location
, OPT_Wshift_count_overflow
,
11389 "right shift count >= width of type");
11394 /* Use the type of the value to be shifted. */
11395 result_type
= type0
;
11396 /* Avoid converting op1 to result_type later. */
11402 if (code0
== VECTOR_TYPE
&& code1
== VECTOR_TYPE
11403 && TREE_CODE (TREE_TYPE (type0
)) == INTEGER_TYPE
11404 && TREE_CODE (TREE_TYPE (type1
)) == INTEGER_TYPE
11405 && known_eq (TYPE_VECTOR_SUBPARTS (type0
),
11406 TYPE_VECTOR_SUBPARTS (type1
)))
11408 result_type
= type0
;
11411 else if ((code0
== INTEGER_TYPE
|| code0
== FIXED_POINT_TYPE
11412 || (code0
== VECTOR_TYPE
11413 && TREE_CODE (TREE_TYPE (type0
)) == INTEGER_TYPE
))
11414 && code1
== INTEGER_TYPE
)
11416 doing_shift
= true;
11417 if (TREE_CODE (op0
) == INTEGER_CST
11418 && tree_int_cst_sgn (op0
) < 0)
11420 /* Don't reject a left shift of a negative value in a context
11421 where a constant expression is needed in C90. */
11424 if (c_inhibit_evaluation_warnings
== 0)
11425 warning_at (location
, OPT_Wshift_negative_value
,
11426 "left shift of negative value");
11428 if (TREE_CODE (op1
) == INTEGER_CST
)
11430 if (tree_int_cst_sgn (op1
) < 0)
11433 if (c_inhibit_evaluation_warnings
== 0)
11434 warning_at (location
, OPT_Wshift_count_negative
,
11435 "left shift count is negative");
11437 else if (code0
== VECTOR_TYPE
)
11439 if (compare_tree_int (op1
,
11440 TYPE_PRECISION (TREE_TYPE (type0
)))
11444 if (c_inhibit_evaluation_warnings
== 0)
11445 warning_at (location
, OPT_Wshift_count_overflow
,
11446 "left shift count >= width of vector element");
11449 else if (compare_tree_int (op1
, TYPE_PRECISION (type0
)) >= 0)
11452 if (c_inhibit_evaluation_warnings
== 0)
11453 warning_at (location
, OPT_Wshift_count_overflow
,
11454 "left shift count >= width of type");
11456 else if (TREE_CODE (op0
) == INTEGER_CST
11457 && maybe_warn_shift_overflow (location
, op0
, op1
)
11462 /* Use the type of the value to be shifted. */
11463 result_type
= type0
;
11464 /* Avoid converting op1 to result_type later. */
11471 if (code0
== VECTOR_TYPE
&& code1
== VECTOR_TYPE
)
11474 if (!vector_types_compatible_elements_p (type0
, type1
))
11476 error_at (location
, "comparing vectors with different "
11478 return error_mark_node
;
11481 if (maybe_ne (TYPE_VECTOR_SUBPARTS (type0
),
11482 TYPE_VECTOR_SUBPARTS (type1
)))
11484 error_at (location
, "comparing vectors with different "
11485 "number of elements");
11486 return error_mark_node
;
11489 /* It's not precisely specified how the usual arithmetic
11490 conversions apply to the vector types. Here, we use
11491 the unsigned type if one of the operands is signed and
11492 the other one is unsigned. */
11493 if (TYPE_UNSIGNED (type0
) != TYPE_UNSIGNED (type1
))
11495 if (!TYPE_UNSIGNED (type0
))
11496 op0
= build1 (VIEW_CONVERT_EXPR
, type1
, op0
);
11498 op1
= build1 (VIEW_CONVERT_EXPR
, type0
, op1
);
11499 warning_at (location
, OPT_Wsign_compare
, "comparison between "
11500 "types %qT and %qT", type0
, type1
);
11503 /* Always construct signed integer vector type. */
11504 intt
= c_common_type_for_size (GET_MODE_BITSIZE
11506 (TREE_TYPE (type0
))), 0);
11509 error_at (location
, "could not find an integer type "
11510 "of the same size as %qT",
11511 TREE_TYPE (type0
));
11512 return error_mark_node
;
11514 result_type
= build_opaque_vector_type (intt
,
11515 TYPE_VECTOR_SUBPARTS (type0
));
11517 ret
= build_vec_cmp (resultcode
, result_type
, op0
, op1
);
11518 goto return_build_binary_op
;
11520 if (FLOAT_TYPE_P (type0
) || FLOAT_TYPE_P (type1
))
11521 warning_at (location
,
11523 "comparing floating point with == or != is unsafe");
11524 /* Result of comparison is always int,
11525 but don't convert the args to int! */
11526 build_type
= integer_type_node
;
11527 if ((code0
== INTEGER_TYPE
|| code0
== REAL_TYPE
11528 || code0
== FIXED_POINT_TYPE
|| code0
== COMPLEX_TYPE
)
11529 && (code1
== INTEGER_TYPE
|| code1
== REAL_TYPE
11530 || code1
== FIXED_POINT_TYPE
|| code1
== COMPLEX_TYPE
))
11532 else if (code0
== POINTER_TYPE
&& null_pointer_constant_p (orig_op1
))
11534 if (TREE_CODE (op0
) == ADDR_EXPR
11535 && decl_with_nonnull_addr_p (TREE_OPERAND (op0
, 0))
11536 && !from_macro_expansion_at (location
))
11538 if (code
== EQ_EXPR
)
11539 warning_at (location
,
11541 "the comparison will always evaluate as %<false%> "
11542 "for the address of %qD will never be NULL",
11543 TREE_OPERAND (op0
, 0));
11545 warning_at (location
,
11547 "the comparison will always evaluate as %<true%> "
11548 "for the address of %qD will never be NULL",
11549 TREE_OPERAND (op0
, 0));
11551 result_type
= type0
;
11553 else if (code1
== POINTER_TYPE
&& null_pointer_constant_p (orig_op0
))
11555 if (TREE_CODE (op1
) == ADDR_EXPR
11556 && decl_with_nonnull_addr_p (TREE_OPERAND (op1
, 0))
11557 && !from_macro_expansion_at (location
))
11559 if (code
== EQ_EXPR
)
11560 warning_at (location
,
11562 "the comparison will always evaluate as %<false%> "
11563 "for the address of %qD will never be NULL",
11564 TREE_OPERAND (op1
, 0));
11566 warning_at (location
,
11568 "the comparison will always evaluate as %<true%> "
11569 "for the address of %qD will never be NULL",
11570 TREE_OPERAND (op1
, 0));
11572 result_type
= type1
;
11574 else if (code0
== POINTER_TYPE
&& code1
== POINTER_TYPE
)
11576 tree tt0
= TREE_TYPE (type0
);
11577 tree tt1
= TREE_TYPE (type1
);
11578 addr_space_t as0
= TYPE_ADDR_SPACE (tt0
);
11579 addr_space_t as1
= TYPE_ADDR_SPACE (tt1
);
11580 addr_space_t as_common
= ADDR_SPACE_GENERIC
;
11582 /* Anything compares with void *. void * compares with anything.
11583 Otherwise, the targets must be compatible
11584 and both must be object or both incomplete. */
11585 if (comp_target_types (location
, type0
, type1
))
11586 result_type
= common_pointer_type (type0
, type1
);
11587 else if (!addr_space_superset (as0
, as1
, &as_common
))
11589 error_at (location
, "comparison of pointers to "
11590 "disjoint address spaces");
11591 return error_mark_node
;
11593 else if (VOID_TYPE_P (tt0
) && !TYPE_ATOMIC (tt0
))
11595 if (pedantic
&& TREE_CODE (tt1
) == FUNCTION_TYPE
)
11596 pedwarn (location
, OPT_Wpedantic
, "ISO C forbids "
11597 "comparison of %<void *%> with function pointer");
11599 else if (VOID_TYPE_P (tt1
) && !TYPE_ATOMIC (tt1
))
11601 if (pedantic
&& TREE_CODE (tt0
) == FUNCTION_TYPE
)
11602 pedwarn (location
, OPT_Wpedantic
, "ISO C forbids "
11603 "comparison of %<void *%> with function pointer");
11606 /* Avoid warning about the volatile ObjC EH puts on decls. */
11608 pedwarn (location
, 0,
11609 "comparison of distinct pointer types lacks a cast");
11611 if (result_type
== NULL_TREE
)
11613 int qual
= ENCODE_QUAL_ADDR_SPACE (as_common
);
11614 result_type
= build_pointer_type
11615 (build_qualified_type (void_type_node
, qual
));
11618 else if (code0
== POINTER_TYPE
&& code1
== INTEGER_TYPE
)
11620 result_type
= type0
;
11621 pedwarn (location
, 0, "comparison between pointer and integer");
11623 else if (code0
== INTEGER_TYPE
&& code1
== POINTER_TYPE
)
11625 result_type
= type1
;
11626 pedwarn (location
, 0, "comparison between pointer and integer");
11628 if ((TREE_CODE (TREE_TYPE (orig_op0
)) == BOOLEAN_TYPE
11629 || truth_value_p (TREE_CODE (orig_op0
)))
11630 ^ (TREE_CODE (TREE_TYPE (orig_op1
)) == BOOLEAN_TYPE
11631 || truth_value_p (TREE_CODE (orig_op1
))))
11632 maybe_warn_bool_compare (location
, code
, orig_op0
, orig_op1
);
11639 if (code0
== VECTOR_TYPE
&& code1
== VECTOR_TYPE
)
11642 if (!vector_types_compatible_elements_p (type0
, type1
))
11644 error_at (location
, "comparing vectors with different "
11646 return error_mark_node
;
11649 if (maybe_ne (TYPE_VECTOR_SUBPARTS (type0
),
11650 TYPE_VECTOR_SUBPARTS (type1
)))
11652 error_at (location
, "comparing vectors with different "
11653 "number of elements");
11654 return error_mark_node
;
11657 /* It's not precisely specified how the usual arithmetic
11658 conversions apply to the vector types. Here, we use
11659 the unsigned type if one of the operands is signed and
11660 the other one is unsigned. */
11661 if (TYPE_UNSIGNED (type0
) != TYPE_UNSIGNED (type1
))
11663 if (!TYPE_UNSIGNED (type0
))
11664 op0
= build1 (VIEW_CONVERT_EXPR
, type1
, op0
);
11666 op1
= build1 (VIEW_CONVERT_EXPR
, type0
, op1
);
11667 warning_at (location
, OPT_Wsign_compare
, "comparison between "
11668 "types %qT and %qT", type0
, type1
);
11671 /* Always construct signed integer vector type. */
11672 intt
= c_common_type_for_size (GET_MODE_BITSIZE
11674 (TREE_TYPE (type0
))), 0);
11677 error_at (location
, "could not find an integer type "
11678 "of the same size as %qT",
11679 TREE_TYPE (type0
));
11680 return error_mark_node
;
11682 result_type
= build_opaque_vector_type (intt
,
11683 TYPE_VECTOR_SUBPARTS (type0
));
11685 ret
= build_vec_cmp (resultcode
, result_type
, op0
, op1
);
11686 goto return_build_binary_op
;
11688 build_type
= integer_type_node
;
11689 if ((code0
== INTEGER_TYPE
|| code0
== REAL_TYPE
11690 || code0
== FIXED_POINT_TYPE
)
11691 && (code1
== INTEGER_TYPE
|| code1
== REAL_TYPE
11692 || code1
== FIXED_POINT_TYPE
))
11694 else if (code0
== POINTER_TYPE
&& code1
== POINTER_TYPE
)
11696 addr_space_t as0
= TYPE_ADDR_SPACE (TREE_TYPE (type0
));
11697 addr_space_t as1
= TYPE_ADDR_SPACE (TREE_TYPE (type1
));
11698 addr_space_t as_common
;
11700 if (comp_target_types (location
, type0
, type1
))
11702 result_type
= common_pointer_type (type0
, type1
);
11703 if (!COMPLETE_TYPE_P (TREE_TYPE (type0
))
11704 != !COMPLETE_TYPE_P (TREE_TYPE (type1
)))
11705 pedwarn (location
, 0,
11706 "comparison of complete and incomplete pointers");
11707 else if (TREE_CODE (TREE_TYPE (type0
)) == FUNCTION_TYPE
)
11708 pedwarn (location
, OPT_Wpedantic
, "ISO C forbids "
11709 "ordered comparisons of pointers to functions");
11710 else if (null_pointer_constant_p (orig_op0
)
11711 || null_pointer_constant_p (orig_op1
))
11712 warning_at (location
, OPT_Wextra
,
11713 "ordered comparison of pointer with null pointer");
11716 else if (!addr_space_superset (as0
, as1
, &as_common
))
11718 error_at (location
, "comparison of pointers to "
11719 "disjoint address spaces");
11720 return error_mark_node
;
11724 int qual
= ENCODE_QUAL_ADDR_SPACE (as_common
);
11725 result_type
= build_pointer_type
11726 (build_qualified_type (void_type_node
, qual
));
11727 pedwarn (location
, 0,
11728 "comparison of distinct pointer types lacks a cast");
11731 else if (code0
== POINTER_TYPE
&& null_pointer_constant_p (orig_op1
))
11733 result_type
= type0
;
11735 pedwarn (location
, OPT_Wpedantic
,
11736 "ordered comparison of pointer with integer zero");
11737 else if (extra_warnings
)
11738 warning_at (location
, OPT_Wextra
,
11739 "ordered comparison of pointer with integer zero");
11741 else if (code1
== POINTER_TYPE
&& null_pointer_constant_p (orig_op0
))
11743 result_type
= type1
;
11745 pedwarn (location
, OPT_Wpedantic
,
11746 "ordered comparison of pointer with integer zero");
11747 else if (extra_warnings
)
11748 warning_at (location
, OPT_Wextra
,
11749 "ordered comparison of pointer with integer zero");
11751 else if (code0
== POINTER_TYPE
&& code1
== INTEGER_TYPE
)
11753 result_type
= type0
;
11754 pedwarn (location
, 0, "comparison between pointer and integer");
11756 else if (code0
== INTEGER_TYPE
&& code1
== POINTER_TYPE
)
11758 result_type
= type1
;
11759 pedwarn (location
, 0, "comparison between pointer and integer");
11762 if ((code0
== POINTER_TYPE
|| code1
== POINTER_TYPE
)
11763 && sanitize_flags_p (SANITIZE_POINTER_COMPARE
))
11765 op0
= save_expr (op0
);
11766 op1
= save_expr (op1
);
11768 tree tt
= builtin_decl_explicit (BUILT_IN_ASAN_POINTER_COMPARE
);
11769 instrument_expr
= build_call_expr_loc (location
, tt
, 2, op0
, op1
);
11772 if ((TREE_CODE (TREE_TYPE (orig_op0
)) == BOOLEAN_TYPE
11773 || truth_value_p (TREE_CODE (orig_op0
)))
11774 ^ (TREE_CODE (TREE_TYPE (orig_op1
)) == BOOLEAN_TYPE
11775 || truth_value_p (TREE_CODE (orig_op1
))))
11776 maybe_warn_bool_compare (location
, code
, orig_op0
, orig_op1
);
11780 gcc_unreachable ();
11783 if (code0
== ERROR_MARK
|| code1
== ERROR_MARK
)
11784 return error_mark_node
;
11786 if (code0
== VECTOR_TYPE
&& code1
== VECTOR_TYPE
11787 && (!tree_int_cst_equal (TYPE_SIZE (type0
), TYPE_SIZE (type1
))
11788 || !vector_types_compatible_elements_p (type0
, type1
)))
11790 gcc_rich_location
richloc (location
);
11791 richloc
.maybe_add_expr (orig_op0
);
11792 richloc
.maybe_add_expr (orig_op1
);
11793 binary_op_error (&richloc
, code
, type0
, type1
);
11794 return error_mark_node
;
11797 if ((code0
== INTEGER_TYPE
|| code0
== REAL_TYPE
|| code0
== COMPLEX_TYPE
11798 || code0
== FIXED_POINT_TYPE
|| code0
== VECTOR_TYPE
)
11800 (code1
== INTEGER_TYPE
|| code1
== REAL_TYPE
|| code1
== COMPLEX_TYPE
11801 || code1
== FIXED_POINT_TYPE
|| code1
== VECTOR_TYPE
))
11803 bool first_complex
= (code0
== COMPLEX_TYPE
);
11804 bool second_complex
= (code1
== COMPLEX_TYPE
);
11805 int none_complex
= (!first_complex
&& !second_complex
);
11807 if (shorten
|| common
|| short_compare
)
11809 result_type
= c_common_type (type0
, type1
);
11810 do_warn_double_promotion (result_type
, type0
, type1
,
11811 "implicit conversion from %qT to %qT "
11812 "to match other operand of binary "
11815 if (result_type
== error_mark_node
)
11816 return error_mark_node
;
11819 if (first_complex
!= second_complex
11820 && (code
== PLUS_EXPR
11821 || code
== MINUS_EXPR
11822 || code
== MULT_EXPR
11823 || (code
== TRUNC_DIV_EXPR
&& first_complex
))
11824 && TREE_CODE (TREE_TYPE (result_type
)) == REAL_TYPE
11825 && flag_signed_zeros
)
11827 /* An operation on mixed real/complex operands must be
11828 handled specially, but the language-independent code can
11829 more easily optimize the plain complex arithmetic if
11830 -fno-signed-zeros. */
11831 tree real_type
= TREE_TYPE (result_type
);
11833 if (type0
!= orig_type0
|| type1
!= orig_type1
)
11835 gcc_assert (may_need_excess_precision
&& common
);
11836 semantic_result_type
= c_common_type (orig_type0
, orig_type1
);
11840 if (TREE_TYPE (op0
) != result_type
)
11841 op0
= convert_and_check (location
, result_type
, op0
);
11842 if (TREE_TYPE (op1
) != real_type
)
11843 op1
= convert_and_check (location
, real_type
, op1
);
11847 if (TREE_TYPE (op0
) != real_type
)
11848 op0
= convert_and_check (location
, real_type
, op0
);
11849 if (TREE_TYPE (op1
) != result_type
)
11850 op1
= convert_and_check (location
, result_type
, op1
);
11852 if (TREE_CODE (op0
) == ERROR_MARK
|| TREE_CODE (op1
) == ERROR_MARK
)
11853 return error_mark_node
;
11856 op0
= save_expr (op0
);
11857 real
= build_unary_op (EXPR_LOCATION (orig_op0
), REALPART_EXPR
,
11859 imag
= build_unary_op (EXPR_LOCATION (orig_op0
), IMAGPART_EXPR
,
11864 case TRUNC_DIV_EXPR
:
11865 op1
= save_expr (op1
);
11866 imag
= build2 (resultcode
, real_type
, imag
, op1
);
11867 /* Fall through. */
11870 real
= build2 (resultcode
, real_type
, real
, op1
);
11878 op1
= save_expr (op1
);
11879 real
= build_unary_op (EXPR_LOCATION (orig_op1
), REALPART_EXPR
,
11881 imag
= build_unary_op (EXPR_LOCATION (orig_op1
), IMAGPART_EXPR
,
11886 op0
= save_expr (op0
);
11887 imag
= build2 (resultcode
, real_type
, op0
, imag
);
11888 /* Fall through. */
11890 real
= build2 (resultcode
, real_type
, op0
, real
);
11893 real
= build2 (resultcode
, real_type
, op0
, real
);
11894 imag
= build1 (NEGATE_EXPR
, real_type
, imag
);
11900 ret
= build2 (COMPLEX_EXPR
, result_type
, real
, imag
);
11901 goto return_build_binary_op
;
11904 /* For certain operations (which identify themselves by shorten != 0)
11905 if both args were extended from the same smaller type,
11906 do the arithmetic in that type and then extend.
11908 shorten !=0 and !=1 indicates a bitwise operation.
11909 For them, this optimization is safe only if
11910 both args are zero-extended or both are sign-extended.
11911 Otherwise, we might change the result.
11912 Eg, (short)-1 | (unsigned short)-1 is (int)-1
11913 but calculated in (unsigned short) it would be (unsigned short)-1. */
11915 if (shorten
&& none_complex
)
11917 final_type
= result_type
;
11918 result_type
= shorten_binary_op (result_type
, op0
, op1
,
11922 /* Shifts can be shortened if shifting right. */
11927 tree arg0
= get_narrower (op0
, &unsigned_arg
);
11929 final_type
= result_type
;
11931 if (arg0
== op0
&& final_type
== TREE_TYPE (op0
))
11932 unsigned_arg
= TYPE_UNSIGNED (TREE_TYPE (op0
));
11934 if (TYPE_PRECISION (TREE_TYPE (arg0
)) < TYPE_PRECISION (result_type
)
11935 && tree_int_cst_sgn (op1
) > 0
11936 /* We can shorten only if the shift count is less than the
11937 number of bits in the smaller type size. */
11938 && compare_tree_int (op1
, TYPE_PRECISION (TREE_TYPE (arg0
))) < 0
11939 /* We cannot drop an unsigned shift after sign-extension. */
11940 && (!TYPE_UNSIGNED (final_type
) || unsigned_arg
))
11942 /* Do an unsigned shift if the operand was zero-extended. */
11944 = c_common_signed_or_unsigned_type (unsigned_arg
,
11946 /* Convert value-to-be-shifted to that type. */
11947 if (TREE_TYPE (op0
) != result_type
)
11948 op0
= convert (result_type
, op0
);
11953 /* Comparison operations are shortened too but differently.
11954 They identify themselves by setting short_compare = 1. */
11958 /* Don't write &op0, etc., because that would prevent op0
11959 from being kept in a register.
11960 Instead, make copies of the our local variables and
11961 pass the copies by reference, then copy them back afterward. */
11962 tree xop0
= op0
, xop1
= op1
, xresult_type
= result_type
;
11963 enum tree_code xresultcode
= resultcode
;
11965 = shorten_compare (location
, &xop0
, &xop1
, &xresult_type
,
11968 if (val
!= NULL_TREE
)
11971 goto return_build_binary_op
;
11974 op0
= xop0
, op1
= xop1
;
11976 resultcode
= xresultcode
;
11978 if (c_inhibit_evaluation_warnings
== 0)
11980 bool op0_maybe_const
= true;
11981 bool op1_maybe_const
= true;
11982 tree orig_op0_folded
, orig_op1_folded
;
11984 if (in_late_binary_op
)
11986 orig_op0_folded
= orig_op0
;
11987 orig_op1_folded
= orig_op1
;
11991 /* Fold for the sake of possible warnings, as in
11992 build_conditional_expr. This requires the
11993 "original" values to be folded, not just op0 and
11995 c_inhibit_evaluation_warnings
++;
11996 op0
= c_fully_fold (op0
, require_constant_value
,
11998 op1
= c_fully_fold (op1
, require_constant_value
,
12000 c_inhibit_evaluation_warnings
--;
12001 orig_op0_folded
= c_fully_fold (orig_op0
,
12002 require_constant_value
,
12004 orig_op1_folded
= c_fully_fold (orig_op1
,
12005 require_constant_value
,
12009 if (warn_sign_compare
)
12010 warn_for_sign_compare (location
, orig_op0_folded
,
12011 orig_op1_folded
, op0
, op1
,
12012 result_type
, resultcode
);
12013 if (!in_late_binary_op
&& !int_operands
)
12015 if (!op0_maybe_const
|| TREE_CODE (op0
) != INTEGER_CST
)
12016 op0
= c_wrap_maybe_const (op0
, !op0_maybe_const
);
12017 if (!op1_maybe_const
|| TREE_CODE (op1
) != INTEGER_CST
)
12018 op1
= c_wrap_maybe_const (op1
, !op1_maybe_const
);
12024 /* At this point, RESULT_TYPE must be nonzero to avoid an error message.
12025 If CONVERTED is zero, both args will be converted to type RESULT_TYPE.
12026 Then the expression will be built.
12027 It will be given type FINAL_TYPE if that is nonzero;
12028 otherwise, it will be given type RESULT_TYPE. */
12032 gcc_rich_location
richloc (location
);
12033 richloc
.maybe_add_expr (orig_op0
);
12034 richloc
.maybe_add_expr (orig_op1
);
12035 binary_op_error (&richloc
, code
, TREE_TYPE (op0
), TREE_TYPE (op1
));
12036 return error_mark_node
;
12039 if (build_type
== NULL_TREE
)
12041 build_type
= result_type
;
12042 if ((type0
!= orig_type0
|| type1
!= orig_type1
)
12045 gcc_assert (may_need_excess_precision
&& common
);
12046 semantic_result_type
= c_common_type (orig_type0
, orig_type1
);
12052 op0
= ep_convert_and_check (location
, result_type
, op0
,
12053 semantic_result_type
);
12054 op1
= ep_convert_and_check (location
, result_type
, op1
,
12055 semantic_result_type
);
12057 /* This can happen if one operand has a vector type, and the other
12058 has a different type. */
12059 if (TREE_CODE (op0
) == ERROR_MARK
|| TREE_CODE (op1
) == ERROR_MARK
)
12060 return error_mark_node
;
12063 if (sanitize_flags_p ((SANITIZE_SHIFT
12064 | SANITIZE_DIVIDE
| SANITIZE_FLOAT_DIVIDE
))
12065 && current_function_decl
!= NULL_TREE
12066 && (doing_div_or_mod
|| doing_shift
)
12067 && !require_constant_value
)
12069 /* OP0 and/or OP1 might have side-effects. */
12070 op0
= save_expr (op0
);
12071 op1
= save_expr (op1
);
12072 op0
= c_fully_fold (op0
, false, NULL
);
12073 op1
= c_fully_fold (op1
, false, NULL
);
12074 if (doing_div_or_mod
&& (sanitize_flags_p ((SANITIZE_DIVIDE
12075 | SANITIZE_FLOAT_DIVIDE
))))
12076 instrument_expr
= ubsan_instrument_division (location
, op0
, op1
);
12077 else if (doing_shift
&& sanitize_flags_p (SANITIZE_SHIFT
))
12078 instrument_expr
= ubsan_instrument_shift (location
, code
, op0
, op1
);
12081 /* Treat expressions in initializers specially as they can't trap. */
12082 if (int_const_or_overflow
)
12083 ret
= (require_constant_value
12084 ? fold_build2_initializer_loc (location
, resultcode
, build_type
,
12086 : fold_build2_loc (location
, resultcode
, build_type
, op0
, op1
));
12088 ret
= build2 (resultcode
, build_type
, op0
, op1
);
12089 if (final_type
!= NULL_TREE
)
12090 ret
= convert (final_type
, ret
);
12092 return_build_binary_op
:
12093 gcc_assert (ret
!= error_mark_node
);
12094 if (TREE_CODE (ret
) == INTEGER_CST
&& !TREE_OVERFLOW (ret
) && !int_const
)
12095 ret
= (int_operands
12096 ? note_integer_operands (ret
)
12097 : build1 (NOP_EXPR
, TREE_TYPE (ret
), ret
));
12098 else if (TREE_CODE (ret
) != INTEGER_CST
&& int_operands
12099 && !in_late_binary_op
)
12100 ret
= note_integer_operands (ret
);
12101 protected_set_expr_location (ret
, location
);
12103 if (instrument_expr
!= NULL
)
12104 ret
= fold_build2 (COMPOUND_EXPR
, TREE_TYPE (ret
),
12105 instrument_expr
, ret
);
12107 if (semantic_result_type
)
12108 ret
= build1_loc (location
, EXCESS_PRECISION_EXPR
,
12109 semantic_result_type
, ret
);
12115 /* Convert EXPR to be a truth-value, validating its type for this
12116 purpose. LOCATION is the source location for the expression. */
12119 c_objc_common_truthvalue_conversion (location_t location
, tree expr
)
12121 bool int_const
, int_operands
;
12123 switch (TREE_CODE (TREE_TYPE (expr
)))
12126 error_at (location
, "used array that cannot be converted to pointer where scalar is required");
12127 return error_mark_node
;
12130 error_at (location
, "used struct type value where scalar is required");
12131 return error_mark_node
;
12134 error_at (location
, "used union type value where scalar is required");
12135 return error_mark_node
;
12138 error_at (location
, "void value not ignored as it ought to be");
12139 return error_mark_node
;
12142 if (reject_gcc_builtin (expr
))
12143 return error_mark_node
;
12146 case FUNCTION_TYPE
:
12147 gcc_unreachable ();
12150 error_at (location
, "used vector type where scalar is required");
12151 return error_mark_node
;
12157 int_const
= (TREE_CODE (expr
) == INTEGER_CST
&& !TREE_OVERFLOW (expr
));
12158 int_operands
= EXPR_INT_CONST_OPERANDS (expr
);
12159 if (int_operands
&& TREE_CODE (expr
) != INTEGER_CST
)
12161 expr
= remove_c_maybe_const_expr (expr
);
12162 expr
= build2 (NE_EXPR
, integer_type_node
, expr
,
12163 convert (TREE_TYPE (expr
), integer_zero_node
));
12164 expr
= note_integer_operands (expr
);
12167 /* ??? Should we also give an error for vectors rather than leaving
12168 those to give errors later? */
12169 expr
= c_common_truthvalue_conversion (location
, expr
);
12171 if (TREE_CODE (expr
) == INTEGER_CST
&& int_operands
&& !int_const
)
12173 if (TREE_OVERFLOW (expr
))
12176 return note_integer_operands (expr
);
12178 if (TREE_CODE (expr
) == INTEGER_CST
&& !int_const
)
12179 return build1 (NOP_EXPR
, TREE_TYPE (expr
), expr
);
12184 /* Convert EXPR to a contained DECL, updating *TC, *TI and *SE as
12188 c_expr_to_decl (tree expr
, bool *tc ATTRIBUTE_UNUSED
, bool *se
)
12190 if (TREE_CODE (expr
) == COMPOUND_LITERAL_EXPR
)
12192 tree decl
= COMPOUND_LITERAL_EXPR_DECL (expr
);
12193 /* Executing a compound literal inside a function reinitializes
12195 if (!TREE_STATIC (decl
))
12203 /* Generate OMP construct CODE, with BODY and CLAUSES as its compound
12204 statement. LOC is the location of the construct. */
12207 c_finish_omp_construct (location_t loc
, enum tree_code code
, tree body
,
12210 body
= c_end_compound_stmt (loc
, body
, true);
12212 tree stmt
= make_node (code
);
12213 TREE_TYPE (stmt
) = void_type_node
;
12214 OMP_BODY (stmt
) = body
;
12215 OMP_CLAUSES (stmt
) = clauses
;
12216 SET_EXPR_LOCATION (stmt
, loc
);
12218 return add_stmt (stmt
);
12221 /* Generate OACC_DATA, with CLAUSES and BLOCK as its compound
12222 statement. LOC is the location of the OACC_DATA. */
12225 c_finish_oacc_data (location_t loc
, tree clauses
, tree block
)
12229 block
= c_end_compound_stmt (loc
, block
, true);
12231 stmt
= make_node (OACC_DATA
);
12232 TREE_TYPE (stmt
) = void_type_node
;
12233 OACC_DATA_CLAUSES (stmt
) = clauses
;
12234 OACC_DATA_BODY (stmt
) = block
;
12235 SET_EXPR_LOCATION (stmt
, loc
);
12237 return add_stmt (stmt
);
12240 /* Generate OACC_HOST_DATA, with CLAUSES and BLOCK as its compound
12241 statement. LOC is the location of the OACC_HOST_DATA. */
12244 c_finish_oacc_host_data (location_t loc
, tree clauses
, tree block
)
12248 block
= c_end_compound_stmt (loc
, block
, true);
12250 stmt
= make_node (OACC_HOST_DATA
);
12251 TREE_TYPE (stmt
) = void_type_node
;
12252 OACC_HOST_DATA_CLAUSES (stmt
) = clauses
;
12253 OACC_HOST_DATA_BODY (stmt
) = block
;
12254 SET_EXPR_LOCATION (stmt
, loc
);
12256 return add_stmt (stmt
);
12259 /* Like c_begin_compound_stmt, except force the retention of the BLOCK. */
12262 c_begin_omp_parallel (void)
12266 keep_next_level ();
12267 block
= c_begin_compound_stmt (true);
12272 /* Generate OMP_PARALLEL, with CLAUSES and BLOCK as its compound
12273 statement. LOC is the location of the OMP_PARALLEL. */
12276 c_finish_omp_parallel (location_t loc
, tree clauses
, tree block
)
12280 block
= c_end_compound_stmt (loc
, block
, true);
12282 stmt
= make_node (OMP_PARALLEL
);
12283 TREE_TYPE (stmt
) = void_type_node
;
12284 OMP_PARALLEL_CLAUSES (stmt
) = clauses
;
12285 OMP_PARALLEL_BODY (stmt
) = block
;
12286 SET_EXPR_LOCATION (stmt
, loc
);
12288 return add_stmt (stmt
);
12291 /* Like c_begin_compound_stmt, except force the retention of the BLOCK. */
12294 c_begin_omp_task (void)
12298 keep_next_level ();
12299 block
= c_begin_compound_stmt (true);
12304 /* Generate OMP_TASK, with CLAUSES and BLOCK as its compound
12305 statement. LOC is the location of the #pragma. */
12308 c_finish_omp_task (location_t loc
, tree clauses
, tree block
)
12312 block
= c_end_compound_stmt (loc
, block
, true);
12314 stmt
= make_node (OMP_TASK
);
12315 TREE_TYPE (stmt
) = void_type_node
;
12316 OMP_TASK_CLAUSES (stmt
) = clauses
;
12317 OMP_TASK_BODY (stmt
) = block
;
12318 SET_EXPR_LOCATION (stmt
, loc
);
12320 return add_stmt (stmt
);
12323 /* Generate GOMP_cancel call for #pragma omp cancel. */
12326 c_finish_omp_cancel (location_t loc
, tree clauses
)
12328 tree fn
= builtin_decl_explicit (BUILT_IN_GOMP_CANCEL
);
12330 if (omp_find_clause (clauses
, OMP_CLAUSE_PARALLEL
))
12332 else if (omp_find_clause (clauses
, OMP_CLAUSE_FOR
))
12334 else if (omp_find_clause (clauses
, OMP_CLAUSE_SECTIONS
))
12336 else if (omp_find_clause (clauses
, OMP_CLAUSE_TASKGROUP
))
12340 error_at (loc
, "%<#pragma omp cancel%> must specify one of "
12341 "%<parallel%>, %<for%>, %<sections%> or %<taskgroup%> "
12345 tree ifc
= omp_find_clause (clauses
, OMP_CLAUSE_IF
);
12346 if (ifc
!= NULL_TREE
)
12348 tree type
= TREE_TYPE (OMP_CLAUSE_IF_EXPR (ifc
));
12349 ifc
= fold_build2_loc (OMP_CLAUSE_LOCATION (ifc
), NE_EXPR
,
12350 boolean_type_node
, OMP_CLAUSE_IF_EXPR (ifc
),
12351 build_zero_cst (type
));
12354 ifc
= boolean_true_node
;
12355 tree stmt
= build_call_expr_loc (loc
, fn
, 2,
12356 build_int_cst (integer_type_node
, mask
),
12361 /* Generate GOMP_cancellation_point call for
12362 #pragma omp cancellation point. */
12365 c_finish_omp_cancellation_point (location_t loc
, tree clauses
)
12367 tree fn
= builtin_decl_explicit (BUILT_IN_GOMP_CANCELLATION_POINT
);
12369 if (omp_find_clause (clauses
, OMP_CLAUSE_PARALLEL
))
12371 else if (omp_find_clause (clauses
, OMP_CLAUSE_FOR
))
12373 else if (omp_find_clause (clauses
, OMP_CLAUSE_SECTIONS
))
12375 else if (omp_find_clause (clauses
, OMP_CLAUSE_TASKGROUP
))
12379 error_at (loc
, "%<#pragma omp cancellation point%> must specify one of "
12380 "%<parallel%>, %<for%>, %<sections%> or %<taskgroup%> "
12384 tree stmt
= build_call_expr_loc (loc
, fn
, 1,
12385 build_int_cst (integer_type_node
, mask
));
12389 /* Helper function for handle_omp_array_sections. Called recursively
12390 to handle multiple array-section-subscripts. C is the clause,
12391 T current expression (initially OMP_CLAUSE_DECL), which is either
12392 a TREE_LIST for array-section-subscript (TREE_PURPOSE is low-bound
12393 expression if specified, TREE_VALUE length expression if specified,
12394 TREE_CHAIN is what it has been specified after, or some decl.
12395 TYPES vector is populated with array section types, MAYBE_ZERO_LEN
12396 set to true if any of the array-section-subscript could have length
12397 of zero (explicit or implicit), FIRST_NON_ONE is the index of the
12398 first array-section-subscript which is known not to have length
12400 map(a[:b][2:1][:c][:2][:d][e:f][2:5])
12401 FIRST_NON_ONE will be 3, array-section-subscript [:b], [2:1] and [:c]
12402 all are or may have length of 1, array-section-subscript [:2] is the
12403 first one known not to have length 1. For array-section-subscript
12404 <= FIRST_NON_ONE we diagnose non-contiguous arrays if low bound isn't
12405 0 or length isn't the array domain max + 1, for > FIRST_NON_ONE we
12406 can if MAYBE_ZERO_LEN is false. MAYBE_ZERO_LEN will be true in the above
12407 case though, as some lengths could be zero. */
12410 handle_omp_array_sections_1 (tree c
, tree t
, vec
<tree
> &types
,
12411 bool &maybe_zero_len
, unsigned int &first_non_one
,
12412 enum c_omp_region_type ort
)
12414 tree ret
, low_bound
, length
, type
;
12415 if (TREE_CODE (t
) != TREE_LIST
)
12417 if (error_operand_p (t
))
12418 return error_mark_node
;
12420 if (OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_DEPEND
12421 && TYPE_ATOMIC (strip_array_types (TREE_TYPE (t
))))
12423 error_at (OMP_CLAUSE_LOCATION (c
), "%<_Atomic%> %qE in %qs clause",
12424 t
, omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
12425 return error_mark_node
;
12427 if (TREE_CODE (t
) == COMPONENT_REF
12428 && ort
== C_ORT_OMP
12429 && (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_MAP
12430 || OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_TO
12431 || OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_FROM
))
12433 if (DECL_BIT_FIELD (TREE_OPERAND (t
, 1)))
12435 error_at (OMP_CLAUSE_LOCATION (c
),
12436 "bit-field %qE in %qs clause",
12437 t
, omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
12438 return error_mark_node
;
12440 while (TREE_CODE (t
) == COMPONENT_REF
)
12442 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (t
, 0))) == UNION_TYPE
)
12444 error_at (OMP_CLAUSE_LOCATION (c
),
12445 "%qE is a member of a union", t
);
12446 return error_mark_node
;
12448 t
= TREE_OPERAND (t
, 0);
12451 if (!VAR_P (t
) && TREE_CODE (t
) != PARM_DECL
)
12454 error_at (OMP_CLAUSE_LOCATION (c
),
12455 "%qD is not a variable in %qs clause", t
,
12456 omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
12458 error_at (OMP_CLAUSE_LOCATION (c
),
12459 "%qE is not a variable in %qs clause", t
,
12460 omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
12461 return error_mark_node
;
12463 else if (OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_DEPEND
12464 && TYPE_ATOMIC (TREE_TYPE (t
)))
12466 error_at (OMP_CLAUSE_LOCATION (c
), "%<_Atomic%> %qD in %qs clause",
12467 t
, omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
12468 return error_mark_node
;
12470 else if (OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_DEPEND
12472 && DECL_THREAD_LOCAL_P (t
))
12474 error_at (OMP_CLAUSE_LOCATION (c
),
12475 "%qD is threadprivate variable in %qs clause", t
,
12476 omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
12477 return error_mark_node
;
12479 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_DEPEND
12480 && TYPE_ATOMIC (TREE_TYPE (t
))
12481 && POINTER_TYPE_P (TREE_TYPE (t
)))
12483 /* If the array section is pointer based and the pointer
12484 itself is _Atomic qualified, we need to atomically load
12487 memset (&expr
, 0, sizeof (expr
));
12489 expr
= convert_lvalue_to_rvalue (OMP_CLAUSE_LOCATION (c
),
12490 expr
, false, false);
12496 ret
= handle_omp_array_sections_1 (c
, TREE_CHAIN (t
), types
,
12497 maybe_zero_len
, first_non_one
, ort
);
12498 if (ret
== error_mark_node
|| ret
== NULL_TREE
)
12501 type
= TREE_TYPE (ret
);
12502 low_bound
= TREE_PURPOSE (t
);
12503 length
= TREE_VALUE (t
);
12505 if (low_bound
== error_mark_node
|| length
== error_mark_node
)
12506 return error_mark_node
;
12508 if (low_bound
&& !INTEGRAL_TYPE_P (TREE_TYPE (low_bound
)))
12510 error_at (OMP_CLAUSE_LOCATION (c
),
12511 "low bound %qE of array section does not have integral type",
12513 return error_mark_node
;
12515 if (length
&& !INTEGRAL_TYPE_P (TREE_TYPE (length
)))
12517 error_at (OMP_CLAUSE_LOCATION (c
),
12518 "length %qE of array section does not have integral type",
12520 return error_mark_node
;
12523 && TREE_CODE (low_bound
) == INTEGER_CST
12524 && TYPE_PRECISION (TREE_TYPE (low_bound
))
12525 > TYPE_PRECISION (sizetype
))
12526 low_bound
= fold_convert (sizetype
, low_bound
);
12528 && TREE_CODE (length
) == INTEGER_CST
12529 && TYPE_PRECISION (TREE_TYPE (length
))
12530 > TYPE_PRECISION (sizetype
))
12531 length
= fold_convert (sizetype
, length
);
12532 if (low_bound
== NULL_TREE
)
12533 low_bound
= integer_zero_node
;
12535 if (length
!= NULL_TREE
)
12537 if (!integer_nonzerop (length
))
12539 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_DEPEND
12540 || OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_REDUCTION
)
12542 if (integer_zerop (length
))
12544 error_at (OMP_CLAUSE_LOCATION (c
),
12545 "zero length array section in %qs clause",
12546 omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
12547 return error_mark_node
;
12551 maybe_zero_len
= true;
12553 if (first_non_one
== types
.length ()
12554 && (TREE_CODE (length
) != INTEGER_CST
|| integer_onep (length
)))
12557 if (TREE_CODE (type
) == ARRAY_TYPE
)
12559 if (length
== NULL_TREE
12560 && (TYPE_DOMAIN (type
) == NULL_TREE
12561 || TYPE_MAX_VALUE (TYPE_DOMAIN (type
)) == NULL_TREE
))
12563 error_at (OMP_CLAUSE_LOCATION (c
),
12564 "for unknown bound array type length expression must "
12566 return error_mark_node
;
12568 if (TREE_CODE (low_bound
) == INTEGER_CST
12569 && tree_int_cst_sgn (low_bound
) == -1)
12571 error_at (OMP_CLAUSE_LOCATION (c
),
12572 "negative low bound in array section in %qs clause",
12573 omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
12574 return error_mark_node
;
12576 if (length
!= NULL_TREE
12577 && TREE_CODE (length
) == INTEGER_CST
12578 && tree_int_cst_sgn (length
) == -1)
12580 error_at (OMP_CLAUSE_LOCATION (c
),
12581 "negative length in array section in %qs clause",
12582 omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
12583 return error_mark_node
;
12585 if (TYPE_DOMAIN (type
)
12586 && TYPE_MAX_VALUE (TYPE_DOMAIN (type
))
12587 && TREE_CODE (TYPE_MAX_VALUE (TYPE_DOMAIN (type
)))
12591 = fold_convert (sizetype
, TYPE_MAX_VALUE (TYPE_DOMAIN (type
)));
12592 size
= size_binop (PLUS_EXPR
, size
, size_one_node
);
12593 if (TREE_CODE (low_bound
) == INTEGER_CST
)
12595 if (tree_int_cst_lt (size
, low_bound
))
12597 error_at (OMP_CLAUSE_LOCATION (c
),
12598 "low bound %qE above array section size "
12599 "in %qs clause", low_bound
,
12600 omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
12601 return error_mark_node
;
12603 if (tree_int_cst_equal (size
, low_bound
))
12605 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_DEPEND
12606 || OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_REDUCTION
)
12608 error_at (OMP_CLAUSE_LOCATION (c
),
12609 "zero length array section in %qs clause",
12610 omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
12611 return error_mark_node
;
12613 maybe_zero_len
= true;
12615 else if (length
== NULL_TREE
12616 && first_non_one
== types
.length ()
12617 && tree_int_cst_equal
12618 (TYPE_MAX_VALUE (TYPE_DOMAIN (type
)),
12622 else if (length
== NULL_TREE
)
12624 if (OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_DEPEND
12625 && OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_REDUCTION
)
12626 maybe_zero_len
= true;
12627 if (first_non_one
== types
.length ())
12630 if (length
&& TREE_CODE (length
) == INTEGER_CST
)
12632 if (tree_int_cst_lt (size
, length
))
12634 error_at (OMP_CLAUSE_LOCATION (c
),
12635 "length %qE above array section size "
12636 "in %qs clause", length
,
12637 omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
12638 return error_mark_node
;
12640 if (TREE_CODE (low_bound
) == INTEGER_CST
)
12643 = size_binop (PLUS_EXPR
,
12644 fold_convert (sizetype
, low_bound
),
12645 fold_convert (sizetype
, length
));
12646 if (TREE_CODE (lbpluslen
) == INTEGER_CST
12647 && tree_int_cst_lt (size
, lbpluslen
))
12649 error_at (OMP_CLAUSE_LOCATION (c
),
12650 "high bound %qE above array section size "
12651 "in %qs clause", lbpluslen
,
12652 omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
12653 return error_mark_node
;
12658 else if (length
== NULL_TREE
)
12660 if (OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_DEPEND
12661 && OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_REDUCTION
)
12662 maybe_zero_len
= true;
12663 if (first_non_one
== types
.length ())
12667 /* For [lb:] we will need to evaluate lb more than once. */
12668 if (length
== NULL_TREE
&& OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_DEPEND
)
12670 tree lb
= save_expr (low_bound
);
12671 if (lb
!= low_bound
)
12673 TREE_PURPOSE (t
) = lb
;
12678 else if (TREE_CODE (type
) == POINTER_TYPE
)
12680 if (length
== NULL_TREE
)
12682 error_at (OMP_CLAUSE_LOCATION (c
),
12683 "for pointer type length expression must be specified");
12684 return error_mark_node
;
12686 if (length
!= NULL_TREE
12687 && TREE_CODE (length
) == INTEGER_CST
12688 && tree_int_cst_sgn (length
) == -1)
12690 error_at (OMP_CLAUSE_LOCATION (c
),
12691 "negative length in array section in %qs clause",
12692 omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
12693 return error_mark_node
;
12695 /* If there is a pointer type anywhere but in the very first
12696 array-section-subscript, the array section can't be contiguous. */
12697 if (OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_DEPEND
12698 && TREE_CODE (TREE_CHAIN (t
)) == TREE_LIST
)
12700 error_at (OMP_CLAUSE_LOCATION (c
),
12701 "array section is not contiguous in %qs clause",
12702 omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
12703 return error_mark_node
;
12708 error_at (OMP_CLAUSE_LOCATION (c
),
12709 "%qE does not have pointer or array type", ret
);
12710 return error_mark_node
;
12712 if (OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_DEPEND
)
12713 types
.safe_push (TREE_TYPE (ret
));
12714 /* We will need to evaluate lb more than once. */
12715 tree lb
= save_expr (low_bound
);
12716 if (lb
!= low_bound
)
12718 TREE_PURPOSE (t
) = lb
;
12721 ret
= build_array_ref (OMP_CLAUSE_LOCATION (c
), ret
, low_bound
);
12725 /* Handle array sections for clause C. */
12728 handle_omp_array_sections (tree c
, enum c_omp_region_type ort
)
12730 bool maybe_zero_len
= false;
12731 unsigned int first_non_one
= 0;
12732 auto_vec
<tree
, 10> types
;
12733 tree first
= handle_omp_array_sections_1 (c
, OMP_CLAUSE_DECL (c
), types
,
12734 maybe_zero_len
, first_non_one
,
12736 if (first
== error_mark_node
)
12738 if (first
== NULL_TREE
)
12740 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_DEPEND
)
12742 tree t
= OMP_CLAUSE_DECL (c
);
12743 tree tem
= NULL_TREE
;
12744 /* Need to evaluate side effects in the length expressions
12746 while (TREE_CODE (t
) == TREE_LIST
)
12748 if (TREE_VALUE (t
) && TREE_SIDE_EFFECTS (TREE_VALUE (t
)))
12750 if (tem
== NULL_TREE
)
12751 tem
= TREE_VALUE (t
);
12753 tem
= build2 (COMPOUND_EXPR
, TREE_TYPE (tem
),
12754 TREE_VALUE (t
), tem
);
12756 t
= TREE_CHAIN (t
);
12759 first
= build2 (COMPOUND_EXPR
, TREE_TYPE (first
), tem
, first
);
12760 first
= c_fully_fold (first
, false, NULL
, true);
12761 OMP_CLAUSE_DECL (c
) = first
;
12765 unsigned int num
= types
.length (), i
;
12766 tree t
, side_effects
= NULL_TREE
, size
= NULL_TREE
;
12767 tree condition
= NULL_TREE
;
12769 if (int_size_in_bytes (TREE_TYPE (first
)) <= 0)
12770 maybe_zero_len
= true;
12772 for (i
= num
, t
= OMP_CLAUSE_DECL (c
); i
> 0;
12773 t
= TREE_CHAIN (t
))
12775 tree low_bound
= TREE_PURPOSE (t
);
12776 tree length
= TREE_VALUE (t
);
12780 && TREE_CODE (low_bound
) == INTEGER_CST
12781 && TYPE_PRECISION (TREE_TYPE (low_bound
))
12782 > TYPE_PRECISION (sizetype
))
12783 low_bound
= fold_convert (sizetype
, low_bound
);
12785 && TREE_CODE (length
) == INTEGER_CST
12786 && TYPE_PRECISION (TREE_TYPE (length
))
12787 > TYPE_PRECISION (sizetype
))
12788 length
= fold_convert (sizetype
, length
);
12789 if (low_bound
== NULL_TREE
)
12790 low_bound
= integer_zero_node
;
12791 if (!maybe_zero_len
&& i
> first_non_one
)
12793 if (integer_nonzerop (low_bound
))
12794 goto do_warn_noncontiguous
;
12795 if (length
!= NULL_TREE
12796 && TREE_CODE (length
) == INTEGER_CST
12797 && TYPE_DOMAIN (types
[i
])
12798 && TYPE_MAX_VALUE (TYPE_DOMAIN (types
[i
]))
12799 && TREE_CODE (TYPE_MAX_VALUE (TYPE_DOMAIN (types
[i
])))
12803 size
= size_binop (PLUS_EXPR
,
12804 TYPE_MAX_VALUE (TYPE_DOMAIN (types
[i
])),
12806 if (!tree_int_cst_equal (length
, size
))
12808 do_warn_noncontiguous
:
12809 error_at (OMP_CLAUSE_LOCATION (c
),
12810 "array section is not contiguous in %qs "
12812 omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
12816 if (length
!= NULL_TREE
12817 && TREE_SIDE_EFFECTS (length
))
12819 if (side_effects
== NULL_TREE
)
12820 side_effects
= length
;
12822 side_effects
= build2 (COMPOUND_EXPR
,
12823 TREE_TYPE (side_effects
),
12824 length
, side_effects
);
12831 if (i
> first_non_one
12832 && ((length
&& integer_nonzerop (length
))
12833 || OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_REDUCTION
))
12836 l
= fold_convert (sizetype
, length
);
12839 l
= size_binop (PLUS_EXPR
,
12840 TYPE_MAX_VALUE (TYPE_DOMAIN (types
[i
])),
12842 l
= size_binop (MINUS_EXPR
, l
,
12843 fold_convert (sizetype
, low_bound
));
12845 if (i
> first_non_one
)
12847 l
= fold_build2 (NE_EXPR
, boolean_type_node
, l
,
12849 if (condition
== NULL_TREE
)
12852 condition
= fold_build2 (BIT_AND_EXPR
, boolean_type_node
,
12855 else if (size
== NULL_TREE
)
12857 size
= size_in_bytes (TREE_TYPE (types
[i
]));
12858 tree eltype
= TREE_TYPE (types
[num
- 1]);
12859 while (TREE_CODE (eltype
) == ARRAY_TYPE
)
12860 eltype
= TREE_TYPE (eltype
);
12861 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_REDUCTION
)
12863 if (integer_zerop (size
)
12864 || integer_zerop (size_in_bytes (eltype
)))
12866 error_at (OMP_CLAUSE_LOCATION (c
),
12867 "zero length array section in %qs clause",
12868 omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
12869 return error_mark_node
;
12871 size
= size_binop (EXACT_DIV_EXPR
, size
,
12872 size_in_bytes (eltype
));
12874 size
= size_binop (MULT_EXPR
, size
, l
);
12876 size
= fold_build3 (COND_EXPR
, sizetype
, condition
,
12877 size
, size_zero_node
);
12880 size
= size_binop (MULT_EXPR
, size
, l
);
12884 size
= build2 (COMPOUND_EXPR
, sizetype
, side_effects
, size
);
12885 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_REDUCTION
)
12887 size
= size_binop (MINUS_EXPR
, size
, size_one_node
);
12888 size
= c_fully_fold (size
, false, NULL
);
12889 tree index_type
= build_index_type (size
);
12890 tree eltype
= TREE_TYPE (first
);
12891 while (TREE_CODE (eltype
) == ARRAY_TYPE
)
12892 eltype
= TREE_TYPE (eltype
);
12893 tree type
= build_array_type (eltype
, index_type
);
12894 tree ptype
= build_pointer_type (eltype
);
12895 if (TREE_CODE (TREE_TYPE (t
)) == ARRAY_TYPE
)
12896 t
= build_fold_addr_expr (t
);
12897 tree t2
= build_fold_addr_expr (first
);
12898 t2
= fold_convert_loc (OMP_CLAUSE_LOCATION (c
),
12899 ptrdiff_type_node
, t2
);
12900 t2
= fold_build2_loc (OMP_CLAUSE_LOCATION (c
), MINUS_EXPR
,
12901 ptrdiff_type_node
, t2
,
12902 fold_convert_loc (OMP_CLAUSE_LOCATION (c
),
12903 ptrdiff_type_node
, t
));
12904 t2
= c_fully_fold (t2
, false, NULL
);
12905 if (tree_fits_shwi_p (t2
))
12906 t
= build2 (MEM_REF
, type
, t
,
12907 build_int_cst (ptype
, tree_to_shwi (t2
)));
12910 t2
= fold_convert_loc (OMP_CLAUSE_LOCATION (c
), sizetype
, t2
);
12911 t
= build2_loc (OMP_CLAUSE_LOCATION (c
), POINTER_PLUS_EXPR
,
12912 TREE_TYPE (t
), t
, t2
);
12913 t
= build2 (MEM_REF
, type
, t
, build_int_cst (ptype
, 0));
12915 OMP_CLAUSE_DECL (c
) = t
;
12918 first
= c_fully_fold (first
, false, NULL
);
12919 OMP_CLAUSE_DECL (c
) = first
;
12921 size
= c_fully_fold (size
, false, NULL
);
12922 OMP_CLAUSE_SIZE (c
) = size
;
12923 if (OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_MAP
12924 || (TREE_CODE (t
) == COMPONENT_REF
12925 && TREE_CODE (TREE_TYPE (t
)) == ARRAY_TYPE
))
12927 gcc_assert (OMP_CLAUSE_MAP_KIND (c
) != GOMP_MAP_FORCE_DEVICEPTR
);
12928 if (ort
== C_ORT_OMP
|| ort
== C_ORT_ACC
)
12929 switch (OMP_CLAUSE_MAP_KIND (c
))
12931 case GOMP_MAP_ALLOC
:
12933 case GOMP_MAP_FROM
:
12934 case GOMP_MAP_TOFROM
:
12935 case GOMP_MAP_ALWAYS_TO
:
12936 case GOMP_MAP_ALWAYS_FROM
:
12937 case GOMP_MAP_ALWAYS_TOFROM
:
12938 case GOMP_MAP_RELEASE
:
12939 case GOMP_MAP_DELETE
:
12940 case GOMP_MAP_FORCE_TO
:
12941 case GOMP_MAP_FORCE_FROM
:
12942 case GOMP_MAP_FORCE_TOFROM
:
12943 case GOMP_MAP_FORCE_PRESENT
:
12944 OMP_CLAUSE_MAP_MAYBE_ZERO_LENGTH_ARRAY_SECTION (c
) = 1;
12949 tree c2
= build_omp_clause (OMP_CLAUSE_LOCATION (c
), OMP_CLAUSE_MAP
);
12950 if (ort
!= C_ORT_OMP
&& ort
!= C_ORT_ACC
)
12951 OMP_CLAUSE_SET_MAP_KIND (c2
, GOMP_MAP_POINTER
);
12952 else if (TREE_CODE (t
) == COMPONENT_REF
)
12953 OMP_CLAUSE_SET_MAP_KIND (c2
, GOMP_MAP_ALWAYS_POINTER
);
12955 OMP_CLAUSE_SET_MAP_KIND (c2
, GOMP_MAP_FIRSTPRIVATE_POINTER
);
12956 if (OMP_CLAUSE_MAP_KIND (c2
) != GOMP_MAP_FIRSTPRIVATE_POINTER
12957 && !c_mark_addressable (t
))
12959 OMP_CLAUSE_DECL (c2
) = t
;
12960 t
= build_fold_addr_expr (first
);
12961 t
= fold_convert_loc (OMP_CLAUSE_LOCATION (c
), ptrdiff_type_node
, t
);
12962 tree ptr
= OMP_CLAUSE_DECL (c2
);
12963 if (!POINTER_TYPE_P (TREE_TYPE (ptr
)))
12964 ptr
= build_fold_addr_expr (ptr
);
12965 t
= fold_build2_loc (OMP_CLAUSE_LOCATION (c
), MINUS_EXPR
,
12966 ptrdiff_type_node
, t
,
12967 fold_convert_loc (OMP_CLAUSE_LOCATION (c
),
12968 ptrdiff_type_node
, ptr
));
12969 t
= c_fully_fold (t
, false, NULL
);
12970 OMP_CLAUSE_SIZE (c2
) = t
;
12971 OMP_CLAUSE_CHAIN (c2
) = OMP_CLAUSE_CHAIN (c
);
12972 OMP_CLAUSE_CHAIN (c
) = c2
;
12977 /* Helper function of finish_omp_clauses. Clone STMT as if we were making
12978 an inline call. But, remap
12979 the OMP_DECL1 VAR_DECL (omp_out resp. omp_orig) to PLACEHOLDER
12980 and OMP_DECL2 VAR_DECL (omp_in resp. omp_priv) to DECL. */
12983 c_clone_omp_udr (tree stmt
, tree omp_decl1
, tree omp_decl2
,
12984 tree decl
, tree placeholder
)
12987 hash_map
<tree
, tree
> decl_map
;
12989 decl_map
.put (omp_decl1
, placeholder
);
12990 decl_map
.put (omp_decl2
, decl
);
12991 memset (&id
, 0, sizeof (id
));
12992 id
.src_fn
= DECL_CONTEXT (omp_decl1
);
12993 id
.dst_fn
= current_function_decl
;
12994 id
.src_cfun
= DECL_STRUCT_FUNCTION (id
.src_fn
);
12995 id
.decl_map
= &decl_map
;
12997 id
.copy_decl
= copy_decl_no_change
;
12998 id
.transform_call_graph_edges
= CB_CGE_DUPLICATE
;
12999 id
.transform_new_cfg
= true;
13000 id
.transform_return_to_modify
= false;
13001 id
.transform_lang_insert_block
= NULL
;
13003 walk_tree (&stmt
, copy_tree_body_r
, &id
, NULL
);
13007 /* Helper function of c_finish_omp_clauses, called via walk_tree.
13008 Find OMP_CLAUSE_PLACEHOLDER (passed in DATA) in *TP. */
13011 c_find_omp_placeholder_r (tree
*tp
, int *, void *data
)
13013 if (*tp
== (tree
) data
)
13018 /* For all elements of CLAUSES, validate them against their constraints.
13019 Remove any elements from the list that are invalid. */
13022 c_finish_omp_clauses (tree clauses
, enum c_omp_region_type ort
)
13024 bitmap_head generic_head
, firstprivate_head
, lastprivate_head
;
13025 bitmap_head aligned_head
, map_head
, map_field_head
, oacc_reduction_head
;
13026 tree c
, t
, type
, *pc
;
13027 tree simdlen
= NULL_TREE
, safelen
= NULL_TREE
;
13028 bool branch_seen
= false;
13029 bool copyprivate_seen
= false;
13030 bool linear_variable_step_check
= false;
13031 tree
*nowait_clause
= NULL
;
13032 bool ordered_seen
= false;
13033 tree schedule_clause
= NULL_TREE
;
13034 bool oacc_async
= false;
13036 bitmap_obstack_initialize (NULL
);
13037 bitmap_initialize (&generic_head
, &bitmap_default_obstack
);
13038 bitmap_initialize (&firstprivate_head
, &bitmap_default_obstack
);
13039 bitmap_initialize (&lastprivate_head
, &bitmap_default_obstack
);
13040 bitmap_initialize (&aligned_head
, &bitmap_default_obstack
);
13041 bitmap_initialize (&map_head
, &bitmap_default_obstack
);
13042 bitmap_initialize (&map_field_head
, &bitmap_default_obstack
);
13043 bitmap_initialize (&oacc_reduction_head
, &bitmap_default_obstack
);
13045 if (ort
& C_ORT_ACC
)
13046 for (c
= clauses
; c
; c
= OMP_CLAUSE_CHAIN (c
))
13047 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_ASYNC
)
13053 for (pc
= &clauses
, c
= clauses
; c
; c
= *pc
)
13055 bool remove
= false;
13056 bool need_complete
= false;
13057 bool need_implicitly_determined
= false;
13059 switch (OMP_CLAUSE_CODE (c
))
13061 case OMP_CLAUSE_SHARED
:
13062 need_implicitly_determined
= true;
13063 goto check_dup_generic
;
13065 case OMP_CLAUSE_PRIVATE
:
13066 need_complete
= true;
13067 need_implicitly_determined
= true;
13068 goto check_dup_generic
;
13070 case OMP_CLAUSE_REDUCTION
:
13071 need_implicitly_determined
= true;
13072 t
= OMP_CLAUSE_DECL (c
);
13073 if (TREE_CODE (t
) == TREE_LIST
)
13075 if (handle_omp_array_sections (c
, ort
))
13081 t
= OMP_CLAUSE_DECL (c
);
13083 t
= require_complete_type (OMP_CLAUSE_LOCATION (c
), t
);
13084 if (t
== error_mark_node
)
13090 c_mark_addressable (t
);
13091 type
= TREE_TYPE (t
);
13092 if (TREE_CODE (t
) == MEM_REF
)
13093 type
= TREE_TYPE (type
);
13094 if (TREE_CODE (type
) == ARRAY_TYPE
)
13096 tree oatype
= type
;
13097 gcc_assert (TREE_CODE (t
) != MEM_REF
);
13098 while (TREE_CODE (type
) == ARRAY_TYPE
)
13099 type
= TREE_TYPE (type
);
13100 if (integer_zerop (TYPE_SIZE_UNIT (type
)))
13102 error_at (OMP_CLAUSE_LOCATION (c
),
13103 "%qD in %<reduction%> clause is a zero size array",
13108 tree size
= size_binop (EXACT_DIV_EXPR
, TYPE_SIZE_UNIT (oatype
),
13109 TYPE_SIZE_UNIT (type
));
13110 if (integer_zerop (size
))
13112 error_at (OMP_CLAUSE_LOCATION (c
),
13113 "%qD in %<reduction%> clause is a zero size array",
13118 size
= size_binop (MINUS_EXPR
, size
, size_one_node
);
13119 tree index_type
= build_index_type (size
);
13120 tree atype
= build_array_type (type
, index_type
);
13121 tree ptype
= build_pointer_type (type
);
13122 if (TREE_CODE (TREE_TYPE (t
)) == ARRAY_TYPE
)
13123 t
= build_fold_addr_expr (t
);
13124 t
= build2 (MEM_REF
, atype
, t
, build_int_cst (ptype
, 0));
13125 OMP_CLAUSE_DECL (c
) = t
;
13127 if (TYPE_ATOMIC (type
))
13129 error_at (OMP_CLAUSE_LOCATION (c
),
13130 "%<_Atomic%> %qE in %<reduction%> clause", t
);
13134 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
) == NULL_TREE
13135 && (FLOAT_TYPE_P (type
)
13136 || TREE_CODE (type
) == COMPLEX_TYPE
))
13138 enum tree_code r_code
= OMP_CLAUSE_REDUCTION_CODE (c
);
13139 const char *r_name
= NULL
;
13148 if (TREE_CODE (type
) == COMPLEX_TYPE
)
13152 if (TREE_CODE (type
) == COMPLEX_TYPE
)
13164 case TRUTH_ANDIF_EXPR
:
13165 if (FLOAT_TYPE_P (type
))
13168 case TRUTH_ORIF_EXPR
:
13169 if (FLOAT_TYPE_P (type
))
13173 gcc_unreachable ();
13177 error_at (OMP_CLAUSE_LOCATION (c
),
13178 "%qE has invalid type for %<reduction(%s)%>",
13184 else if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
) == error_mark_node
)
13186 error_at (OMP_CLAUSE_LOCATION (c
),
13187 "user defined reduction not found for %qE", t
);
13191 else if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
))
13193 tree list
= OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
);
13194 type
= TYPE_MAIN_VARIANT (type
);
13195 tree placeholder
= build_decl (OMP_CLAUSE_LOCATION (c
),
13196 VAR_DECL
, NULL_TREE
, type
);
13197 tree decl_placeholder
= NULL_TREE
;
13198 OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
) = placeholder
;
13199 DECL_ARTIFICIAL (placeholder
) = 1;
13200 DECL_IGNORED_P (placeholder
) = 1;
13201 if (TREE_CODE (t
) == MEM_REF
)
13203 decl_placeholder
= build_decl (OMP_CLAUSE_LOCATION (c
),
13204 VAR_DECL
, NULL_TREE
, type
);
13205 OMP_CLAUSE_REDUCTION_DECL_PLACEHOLDER (c
) = decl_placeholder
;
13206 DECL_ARTIFICIAL (decl_placeholder
) = 1;
13207 DECL_IGNORED_P (decl_placeholder
) = 1;
13209 if (TREE_ADDRESSABLE (TREE_VEC_ELT (list
, 0)))
13210 c_mark_addressable (placeholder
);
13211 if (TREE_ADDRESSABLE (TREE_VEC_ELT (list
, 1)))
13212 c_mark_addressable (decl_placeholder
? decl_placeholder
13213 : OMP_CLAUSE_DECL (c
));
13214 OMP_CLAUSE_REDUCTION_MERGE (c
)
13215 = c_clone_omp_udr (TREE_VEC_ELT (list
, 2),
13216 TREE_VEC_ELT (list
, 0),
13217 TREE_VEC_ELT (list
, 1),
13218 decl_placeholder
? decl_placeholder
13219 : OMP_CLAUSE_DECL (c
), placeholder
);
13220 OMP_CLAUSE_REDUCTION_MERGE (c
)
13221 = build3_loc (OMP_CLAUSE_LOCATION (c
), BIND_EXPR
,
13222 void_type_node
, NULL_TREE
,
13223 OMP_CLAUSE_REDUCTION_MERGE (c
), NULL_TREE
);
13224 TREE_SIDE_EFFECTS (OMP_CLAUSE_REDUCTION_MERGE (c
)) = 1;
13225 if (TREE_VEC_LENGTH (list
) == 6)
13227 if (TREE_ADDRESSABLE (TREE_VEC_ELT (list
, 3)))
13228 c_mark_addressable (decl_placeholder
? decl_placeholder
13229 : OMP_CLAUSE_DECL (c
));
13230 if (TREE_ADDRESSABLE (TREE_VEC_ELT (list
, 4)))
13231 c_mark_addressable (placeholder
);
13232 tree init
= TREE_VEC_ELT (list
, 5);
13233 if (init
== error_mark_node
)
13234 init
= DECL_INITIAL (TREE_VEC_ELT (list
, 3));
13235 OMP_CLAUSE_REDUCTION_INIT (c
)
13236 = c_clone_omp_udr (init
, TREE_VEC_ELT (list
, 4),
13237 TREE_VEC_ELT (list
, 3),
13238 decl_placeholder
? decl_placeholder
13239 : OMP_CLAUSE_DECL (c
), placeholder
);
13240 if (TREE_VEC_ELT (list
, 5) == error_mark_node
)
13242 tree v
= decl_placeholder
? decl_placeholder
: t
;
13243 OMP_CLAUSE_REDUCTION_INIT (c
)
13244 = build2 (INIT_EXPR
, TREE_TYPE (v
), v
,
13245 OMP_CLAUSE_REDUCTION_INIT (c
));
13247 if (walk_tree (&OMP_CLAUSE_REDUCTION_INIT (c
),
13248 c_find_omp_placeholder_r
,
13249 placeholder
, NULL
))
13250 OMP_CLAUSE_REDUCTION_OMP_ORIG_REF (c
) = 1;
13255 tree v
= decl_placeholder
? decl_placeholder
: t
;
13256 if (AGGREGATE_TYPE_P (TREE_TYPE (v
)))
13257 init
= build_constructor (TREE_TYPE (v
), NULL
);
13259 init
= fold_convert (TREE_TYPE (v
), integer_zero_node
);
13260 OMP_CLAUSE_REDUCTION_INIT (c
)
13261 = build2 (INIT_EXPR
, TREE_TYPE (v
), v
, init
);
13263 OMP_CLAUSE_REDUCTION_INIT (c
)
13264 = build3_loc (OMP_CLAUSE_LOCATION (c
), BIND_EXPR
,
13265 void_type_node
, NULL_TREE
,
13266 OMP_CLAUSE_REDUCTION_INIT (c
), NULL_TREE
);
13267 TREE_SIDE_EFFECTS (OMP_CLAUSE_REDUCTION_INIT (c
)) = 1;
13269 if (TREE_CODE (t
) == MEM_REF
)
13271 if (TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (t
))) == NULL_TREE
13272 || TREE_CODE (TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (t
))))
13275 sorry ("variable length element type in array "
13276 "%<reduction%> clause");
13280 t
= TREE_OPERAND (t
, 0);
13281 if (TREE_CODE (t
) == POINTER_PLUS_EXPR
)
13282 t
= TREE_OPERAND (t
, 0);
13283 if (TREE_CODE (t
) == ADDR_EXPR
)
13284 t
= TREE_OPERAND (t
, 0);
13286 goto check_dup_generic_t
;
13288 case OMP_CLAUSE_COPYPRIVATE
:
13289 copyprivate_seen
= true;
13292 error_at (OMP_CLAUSE_LOCATION (*nowait_clause
),
13293 "%<nowait%> clause must not be used together "
13294 "with %<copyprivate%>");
13295 *nowait_clause
= OMP_CLAUSE_CHAIN (*nowait_clause
);
13296 nowait_clause
= NULL
;
13298 goto check_dup_generic
;
13300 case OMP_CLAUSE_COPYIN
:
13301 t
= OMP_CLAUSE_DECL (c
);
13302 if (!VAR_P (t
) || !DECL_THREAD_LOCAL_P (t
))
13304 error_at (OMP_CLAUSE_LOCATION (c
),
13305 "%qE must be %<threadprivate%> for %<copyin%>", t
);
13309 goto check_dup_generic
;
13311 case OMP_CLAUSE_LINEAR
:
13312 if (ort
!= C_ORT_OMP_DECLARE_SIMD
)
13313 need_implicitly_determined
= true;
13314 t
= OMP_CLAUSE_DECL (c
);
13315 if (ort
!= C_ORT_OMP_DECLARE_SIMD
13316 && OMP_CLAUSE_LINEAR_KIND (c
) != OMP_CLAUSE_LINEAR_DEFAULT
)
13318 error_at (OMP_CLAUSE_LOCATION (c
),
13319 "modifier should not be specified in %<linear%> "
13320 "clause on %<simd%> or %<for%> constructs");
13321 OMP_CLAUSE_LINEAR_KIND (c
) = OMP_CLAUSE_LINEAR_DEFAULT
;
13323 if (!INTEGRAL_TYPE_P (TREE_TYPE (t
))
13324 && TREE_CODE (TREE_TYPE (t
)) != POINTER_TYPE
)
13326 error_at (OMP_CLAUSE_LOCATION (c
),
13327 "linear clause applied to non-integral non-pointer "
13328 "variable with type %qT", TREE_TYPE (t
));
13332 if (TYPE_ATOMIC (TREE_TYPE (t
)))
13334 error_at (OMP_CLAUSE_LOCATION (c
),
13335 "%<_Atomic%> %qD in %<linear%> clause", t
);
13339 if (ort
== C_ORT_OMP_DECLARE_SIMD
)
13341 tree s
= OMP_CLAUSE_LINEAR_STEP (c
);
13342 if (TREE_CODE (s
) == PARM_DECL
)
13344 OMP_CLAUSE_LINEAR_VARIABLE_STRIDE (c
) = 1;
13345 /* map_head bitmap is used as uniform_head if
13347 if (!bitmap_bit_p (&map_head
, DECL_UID (s
)))
13348 linear_variable_step_check
= true;
13349 goto check_dup_generic
;
13351 if (TREE_CODE (s
) != INTEGER_CST
)
13353 error_at (OMP_CLAUSE_LOCATION (c
),
13354 "%<linear%> clause step %qE is neither constant "
13355 "nor a parameter", s
);
13360 if (TREE_CODE (TREE_TYPE (OMP_CLAUSE_DECL (c
))) == POINTER_TYPE
)
13362 tree s
= OMP_CLAUSE_LINEAR_STEP (c
);
13363 s
= pointer_int_sum (OMP_CLAUSE_LOCATION (c
), PLUS_EXPR
,
13364 OMP_CLAUSE_DECL (c
), s
);
13365 s
= fold_build2_loc (OMP_CLAUSE_LOCATION (c
), MINUS_EXPR
,
13366 sizetype
, fold_convert (sizetype
, s
),
13368 (sizetype
, OMP_CLAUSE_DECL (c
)));
13369 if (s
== error_mark_node
)
13371 OMP_CLAUSE_LINEAR_STEP (c
) = s
;
13374 OMP_CLAUSE_LINEAR_STEP (c
)
13375 = fold_convert (TREE_TYPE (t
), OMP_CLAUSE_LINEAR_STEP (c
));
13376 goto check_dup_generic
;
13379 t
= OMP_CLAUSE_DECL (c
);
13380 check_dup_generic_t
:
13381 if (!VAR_P (t
) && TREE_CODE (t
) != PARM_DECL
)
13383 error_at (OMP_CLAUSE_LOCATION (c
),
13384 "%qE is not a variable in clause %qs", t
,
13385 omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
13388 else if (ort
== C_ORT_ACC
13389 && OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_REDUCTION
)
13391 if (bitmap_bit_p (&oacc_reduction_head
, DECL_UID (t
)))
13393 error ("%qD appears more than once in reduction clauses", t
);
13397 bitmap_set_bit (&oacc_reduction_head
, DECL_UID (t
));
13399 else if (bitmap_bit_p (&generic_head
, DECL_UID (t
))
13400 || bitmap_bit_p (&firstprivate_head
, DECL_UID (t
))
13401 || bitmap_bit_p (&lastprivate_head
, DECL_UID (t
)))
13403 error_at (OMP_CLAUSE_LOCATION (c
),
13404 "%qE appears more than once in data clauses", t
);
13407 else if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_PRIVATE
13408 && bitmap_bit_p (&map_head
, DECL_UID (t
)))
13410 if (ort
== C_ORT_ACC
)
13411 error ("%qD appears more than once in data clauses", t
);
13413 error ("%qD appears both in data and map clauses", t
);
13417 bitmap_set_bit (&generic_head
, DECL_UID (t
));
13420 case OMP_CLAUSE_FIRSTPRIVATE
:
13421 t
= OMP_CLAUSE_DECL (c
);
13422 need_complete
= true;
13423 need_implicitly_determined
= true;
13424 if (!VAR_P (t
) && TREE_CODE (t
) != PARM_DECL
)
13426 error_at (OMP_CLAUSE_LOCATION (c
),
13427 "%qE is not a variable in clause %<firstprivate%>", t
);
13430 else if (bitmap_bit_p (&generic_head
, DECL_UID (t
))
13431 || bitmap_bit_p (&firstprivate_head
, DECL_UID (t
)))
13433 error_at (OMP_CLAUSE_LOCATION (c
),
13434 "%qE appears more than once in data clauses", t
);
13437 else if (bitmap_bit_p (&map_head
, DECL_UID (t
)))
13439 if (ort
== C_ORT_ACC
)
13440 error ("%qD appears more than once in data clauses", t
);
13442 error ("%qD appears both in data and map clauses", t
);
13446 bitmap_set_bit (&firstprivate_head
, DECL_UID (t
));
13449 case OMP_CLAUSE_LASTPRIVATE
:
13450 t
= OMP_CLAUSE_DECL (c
);
13451 need_complete
= true;
13452 need_implicitly_determined
= true;
13453 if (!VAR_P (t
) && TREE_CODE (t
) != PARM_DECL
)
13455 error_at (OMP_CLAUSE_LOCATION (c
),
13456 "%qE is not a variable in clause %<lastprivate%>", t
);
13459 else if (bitmap_bit_p (&generic_head
, DECL_UID (t
))
13460 || bitmap_bit_p (&lastprivate_head
, DECL_UID (t
)))
13462 error_at (OMP_CLAUSE_LOCATION (c
),
13463 "%qE appears more than once in data clauses", t
);
13467 bitmap_set_bit (&lastprivate_head
, DECL_UID (t
));
13470 case OMP_CLAUSE_ALIGNED
:
13471 t
= OMP_CLAUSE_DECL (c
);
13472 if (!VAR_P (t
) && TREE_CODE (t
) != PARM_DECL
)
13474 error_at (OMP_CLAUSE_LOCATION (c
),
13475 "%qE is not a variable in %<aligned%> clause", t
);
13478 else if (!POINTER_TYPE_P (TREE_TYPE (t
))
13479 && TREE_CODE (TREE_TYPE (t
)) != ARRAY_TYPE
)
13481 error_at (OMP_CLAUSE_LOCATION (c
),
13482 "%qE in %<aligned%> clause is neither a pointer nor "
13486 else if (TYPE_ATOMIC (TREE_TYPE (t
)))
13488 error_at (OMP_CLAUSE_LOCATION (c
),
13489 "%<_Atomic%> %qD in %<aligned%> clause", t
);
13493 else if (bitmap_bit_p (&aligned_head
, DECL_UID (t
)))
13495 error_at (OMP_CLAUSE_LOCATION (c
),
13496 "%qE appears more than once in %<aligned%> clauses",
13501 bitmap_set_bit (&aligned_head
, DECL_UID (t
));
13504 case OMP_CLAUSE_DEPEND
:
13505 t
= OMP_CLAUSE_DECL (c
);
13506 if (t
== NULL_TREE
)
13508 gcc_assert (OMP_CLAUSE_DEPEND_KIND (c
)
13509 == OMP_CLAUSE_DEPEND_SOURCE
);
13512 if (OMP_CLAUSE_DEPEND_KIND (c
) == OMP_CLAUSE_DEPEND_SINK
)
13514 gcc_assert (TREE_CODE (t
) == TREE_LIST
);
13515 for (; t
; t
= TREE_CHAIN (t
))
13517 tree decl
= TREE_VALUE (t
);
13518 if (TREE_CODE (TREE_TYPE (decl
)) == POINTER_TYPE
)
13520 tree offset
= TREE_PURPOSE (t
);
13521 bool neg
= wi::neg_p (wi::to_wide (offset
));
13522 offset
= fold_unary (ABS_EXPR
, TREE_TYPE (offset
), offset
);
13523 tree t2
= pointer_int_sum (OMP_CLAUSE_LOCATION (c
),
13524 neg
? MINUS_EXPR
: PLUS_EXPR
,
13526 t2
= fold_build2_loc (OMP_CLAUSE_LOCATION (c
), MINUS_EXPR
,
13528 fold_convert (sizetype
, t2
),
13529 fold_convert (sizetype
, decl
));
13530 if (t2
== error_mark_node
)
13535 TREE_PURPOSE (t
) = t2
;
13540 if (TREE_CODE (t
) == TREE_LIST
)
13542 if (handle_omp_array_sections (c
, ort
))
13546 if (t
== error_mark_node
)
13548 else if (!VAR_P (t
) && TREE_CODE (t
) != PARM_DECL
)
13550 error_at (OMP_CLAUSE_LOCATION (c
),
13551 "%qE is not a variable in %<depend%> clause", t
);
13554 else if (!c_mark_addressable (t
))
13558 case OMP_CLAUSE_MAP
:
13559 case OMP_CLAUSE_TO
:
13560 case OMP_CLAUSE_FROM
:
13561 case OMP_CLAUSE__CACHE_
:
13562 t
= OMP_CLAUSE_DECL (c
);
13563 if (TREE_CODE (t
) == TREE_LIST
)
13565 if (handle_omp_array_sections (c
, ort
))
13569 t
= OMP_CLAUSE_DECL (c
);
13570 if (!lang_hooks
.types
.omp_mappable_type (TREE_TYPE (t
)))
13572 error_at (OMP_CLAUSE_LOCATION (c
),
13573 "array section does not have mappable type "
13575 omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
13578 else if (TYPE_ATOMIC (TREE_TYPE (t
)))
13580 error_at (OMP_CLAUSE_LOCATION (c
),
13581 "%<_Atomic%> %qE in %qs clause", t
,
13582 omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
13585 while (TREE_CODE (t
) == ARRAY_REF
)
13586 t
= TREE_OPERAND (t
, 0);
13587 if (TREE_CODE (t
) == COMPONENT_REF
13588 && TREE_CODE (TREE_TYPE (t
)) == ARRAY_TYPE
)
13590 while (TREE_CODE (t
) == COMPONENT_REF
)
13591 t
= TREE_OPERAND (t
, 0);
13592 if (bitmap_bit_p (&map_field_head
, DECL_UID (t
)))
13594 if (bitmap_bit_p (&map_head
, DECL_UID (t
)))
13596 if (OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_MAP
)
13597 error ("%qD appears more than once in motion"
13599 else if (ort
== C_ORT_ACC
)
13600 error ("%qD appears more than once in data"
13603 error ("%qD appears more than once in map"
13609 bitmap_set_bit (&map_head
, DECL_UID (t
));
13610 bitmap_set_bit (&map_field_head
, DECL_UID (t
));
13616 if (t
== error_mark_node
)
13621 if (TREE_CODE (t
) == COMPONENT_REF
13622 && (ort
& C_ORT_OMP
)
13623 && OMP_CLAUSE_CODE (c
) != OMP_CLAUSE__CACHE_
)
13625 if (DECL_BIT_FIELD (TREE_OPERAND (t
, 1)))
13627 error_at (OMP_CLAUSE_LOCATION (c
),
13628 "bit-field %qE in %qs clause",
13629 t
, omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
13632 else if (!lang_hooks
.types
.omp_mappable_type (TREE_TYPE (t
)))
13634 error_at (OMP_CLAUSE_LOCATION (c
),
13635 "%qE does not have a mappable type in %qs clause",
13636 t
, omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
13639 else if (TYPE_ATOMIC (TREE_TYPE (t
)))
13641 error_at (OMP_CLAUSE_LOCATION (c
),
13642 "%<_Atomic%> %qE in %qs clause", t
,
13643 omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
13646 while (TREE_CODE (t
) == COMPONENT_REF
)
13648 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (t
, 0)))
13651 error_at (OMP_CLAUSE_LOCATION (c
),
13652 "%qE is a member of a union", t
);
13656 t
= TREE_OPERAND (t
, 0);
13660 if (VAR_P (t
) || TREE_CODE (t
) == PARM_DECL
)
13662 if (bitmap_bit_p (&map_field_head
, DECL_UID (t
)))
13666 if (!VAR_P (t
) && TREE_CODE (t
) != PARM_DECL
)
13668 error_at (OMP_CLAUSE_LOCATION (c
),
13669 "%qE is not a variable in %qs clause", t
,
13670 omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
13673 else if (VAR_P (t
) && DECL_THREAD_LOCAL_P (t
))
13675 error_at (OMP_CLAUSE_LOCATION (c
),
13676 "%qD is threadprivate variable in %qs clause", t
,
13677 omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
13680 else if ((OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_MAP
13681 || (OMP_CLAUSE_MAP_KIND (c
)
13682 != GOMP_MAP_FIRSTPRIVATE_POINTER
))
13683 && !c_mark_addressable (t
))
13685 else if (!(OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_MAP
13686 && (OMP_CLAUSE_MAP_KIND (c
) == GOMP_MAP_POINTER
13687 || (OMP_CLAUSE_MAP_KIND (c
)
13688 == GOMP_MAP_FIRSTPRIVATE_POINTER
)
13689 || (OMP_CLAUSE_MAP_KIND (c
)
13690 == GOMP_MAP_FORCE_DEVICEPTR
)))
13691 && t
== OMP_CLAUSE_DECL (c
)
13692 && !lang_hooks
.types
.omp_mappable_type (TREE_TYPE (t
)))
13694 error_at (OMP_CLAUSE_LOCATION (c
),
13695 "%qD does not have a mappable type in %qs clause", t
,
13696 omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
13699 else if (TREE_TYPE (t
) == error_mark_node
)
13701 else if (TYPE_ATOMIC (strip_array_types (TREE_TYPE (t
))))
13703 error_at (OMP_CLAUSE_LOCATION (c
),
13704 "%<_Atomic%> %qE in %qs clause", t
,
13705 omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
13708 else if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_MAP
13709 && OMP_CLAUSE_MAP_KIND (c
) == GOMP_MAP_FIRSTPRIVATE_POINTER
)
13711 if (bitmap_bit_p (&generic_head
, DECL_UID (t
))
13712 || bitmap_bit_p (&firstprivate_head
, DECL_UID (t
)))
13714 error ("%qD appears more than once in data clauses", t
);
13717 else if (bitmap_bit_p (&map_head
, DECL_UID (t
)))
13719 if (ort
== C_ORT_ACC
)
13720 error ("%qD appears more than once in data clauses", t
);
13722 error ("%qD appears both in data and map clauses", t
);
13726 bitmap_set_bit (&generic_head
, DECL_UID (t
));
13728 else if (bitmap_bit_p (&map_head
, DECL_UID (t
)))
13730 if (OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_MAP
)
13731 error ("%qD appears more than once in motion clauses", t
);
13732 else if (ort
== C_ORT_ACC
)
13733 error ("%qD appears more than once in data clauses", t
);
13735 error ("%qD appears more than once in map clauses", t
);
13738 else if (bitmap_bit_p (&generic_head
, DECL_UID (t
))
13739 || bitmap_bit_p (&firstprivate_head
, DECL_UID (t
)))
13741 if (ort
== C_ORT_ACC
)
13742 error ("%qD appears more than once in data clauses", t
);
13744 error ("%qD appears both in data and map clauses", t
);
13749 bitmap_set_bit (&map_head
, DECL_UID (t
));
13750 if (t
!= OMP_CLAUSE_DECL (c
)
13751 && TREE_CODE (OMP_CLAUSE_DECL (c
)) == COMPONENT_REF
)
13752 bitmap_set_bit (&map_field_head
, DECL_UID (t
));
13756 case OMP_CLAUSE_TO_DECLARE
:
13757 case OMP_CLAUSE_LINK
:
13758 t
= OMP_CLAUSE_DECL (c
);
13759 if (TREE_CODE (t
) == FUNCTION_DECL
13760 && OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_TO_DECLARE
)
13762 else if (!VAR_P (t
))
13764 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_TO_DECLARE
)
13765 error_at (OMP_CLAUSE_LOCATION (c
),
13766 "%qE is neither a variable nor a function name in "
13768 omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
13770 error_at (OMP_CLAUSE_LOCATION (c
),
13771 "%qE is not a variable in clause %qs", t
,
13772 omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
13775 else if (DECL_THREAD_LOCAL_P (t
))
13777 error_at (OMP_CLAUSE_LOCATION (c
),
13778 "%qD is threadprivate variable in %qs clause", t
,
13779 omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
13782 else if (!lang_hooks
.types
.omp_mappable_type (TREE_TYPE (t
)))
13784 error_at (OMP_CLAUSE_LOCATION (c
),
13785 "%qD does not have a mappable type in %qs clause", t
,
13786 omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
13791 if (bitmap_bit_p (&generic_head
, DECL_UID (t
)))
13793 error_at (OMP_CLAUSE_LOCATION (c
),
13794 "%qE appears more than once on the same "
13795 "%<declare target%> directive", t
);
13799 bitmap_set_bit (&generic_head
, DECL_UID (t
));
13802 case OMP_CLAUSE_UNIFORM
:
13803 t
= OMP_CLAUSE_DECL (c
);
13804 if (TREE_CODE (t
) != PARM_DECL
)
13807 error_at (OMP_CLAUSE_LOCATION (c
),
13808 "%qD is not an argument in %<uniform%> clause", t
);
13810 error_at (OMP_CLAUSE_LOCATION (c
),
13811 "%qE is not an argument in %<uniform%> clause", t
);
13815 /* map_head bitmap is used as uniform_head if declare_simd. */
13816 bitmap_set_bit (&map_head
, DECL_UID (t
));
13817 goto check_dup_generic
;
13819 case OMP_CLAUSE_IS_DEVICE_PTR
:
13820 case OMP_CLAUSE_USE_DEVICE_PTR
:
13821 t
= OMP_CLAUSE_DECL (c
);
13822 if (TREE_CODE (TREE_TYPE (t
)) != POINTER_TYPE
13823 && TREE_CODE (TREE_TYPE (t
)) != ARRAY_TYPE
)
13825 error_at (OMP_CLAUSE_LOCATION (c
),
13826 "%qs variable is neither a pointer nor an array",
13827 omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
13830 goto check_dup_generic
;
13832 case OMP_CLAUSE_NOWAIT
:
13833 if (copyprivate_seen
)
13835 error_at (OMP_CLAUSE_LOCATION (c
),
13836 "%<nowait%> clause must not be used together "
13837 "with %<copyprivate%>");
13841 nowait_clause
= pc
;
13842 pc
= &OMP_CLAUSE_CHAIN (c
);
13845 case OMP_CLAUSE_IF
:
13846 case OMP_CLAUSE_NUM_THREADS
:
13847 case OMP_CLAUSE_NUM_TEAMS
:
13848 case OMP_CLAUSE_THREAD_LIMIT
:
13849 case OMP_CLAUSE_DEFAULT
:
13850 case OMP_CLAUSE_UNTIED
:
13851 case OMP_CLAUSE_COLLAPSE
:
13852 case OMP_CLAUSE_FINAL
:
13853 case OMP_CLAUSE_MERGEABLE
:
13854 case OMP_CLAUSE_DEVICE
:
13855 case OMP_CLAUSE_DIST_SCHEDULE
:
13856 case OMP_CLAUSE_PARALLEL
:
13857 case OMP_CLAUSE_FOR
:
13858 case OMP_CLAUSE_SECTIONS
:
13859 case OMP_CLAUSE_TASKGROUP
:
13860 case OMP_CLAUSE_PROC_BIND
:
13861 case OMP_CLAUSE_PRIORITY
:
13862 case OMP_CLAUSE_GRAINSIZE
:
13863 case OMP_CLAUSE_NUM_TASKS
:
13864 case OMP_CLAUSE_NOGROUP
:
13865 case OMP_CLAUSE_THREADS
:
13866 case OMP_CLAUSE_SIMD
:
13867 case OMP_CLAUSE_HINT
:
13868 case OMP_CLAUSE_DEFAULTMAP
:
13869 case OMP_CLAUSE_NUM_GANGS
:
13870 case OMP_CLAUSE_NUM_WORKERS
:
13871 case OMP_CLAUSE_VECTOR_LENGTH
:
13872 case OMP_CLAUSE_ASYNC
:
13873 case OMP_CLAUSE_WAIT
:
13874 case OMP_CLAUSE_AUTO
:
13875 case OMP_CLAUSE_INDEPENDENT
:
13876 case OMP_CLAUSE_SEQ
:
13877 case OMP_CLAUSE_GANG
:
13878 case OMP_CLAUSE_WORKER
:
13879 case OMP_CLAUSE_VECTOR
:
13880 case OMP_CLAUSE_TILE
:
13881 pc
= &OMP_CLAUSE_CHAIN (c
);
13884 case OMP_CLAUSE_SCHEDULE
:
13885 if (OMP_CLAUSE_SCHEDULE_KIND (c
) & OMP_CLAUSE_SCHEDULE_NONMONOTONIC
)
13887 const char *p
= NULL
;
13888 switch (OMP_CLAUSE_SCHEDULE_KIND (c
) & OMP_CLAUSE_SCHEDULE_MASK
)
13890 case OMP_CLAUSE_SCHEDULE_STATIC
: p
= "static"; break;
13891 case OMP_CLAUSE_SCHEDULE_DYNAMIC
: break;
13892 case OMP_CLAUSE_SCHEDULE_GUIDED
: break;
13893 case OMP_CLAUSE_SCHEDULE_AUTO
: p
= "auto"; break;
13894 case OMP_CLAUSE_SCHEDULE_RUNTIME
: p
= "runtime"; break;
13895 default: gcc_unreachable ();
13899 error_at (OMP_CLAUSE_LOCATION (c
),
13900 "%<nonmonotonic%> modifier specified for %qs "
13901 "schedule kind", p
);
13902 OMP_CLAUSE_SCHEDULE_KIND (c
)
13903 = (enum omp_clause_schedule_kind
)
13904 (OMP_CLAUSE_SCHEDULE_KIND (c
)
13905 & ~OMP_CLAUSE_SCHEDULE_NONMONOTONIC
);
13908 schedule_clause
= c
;
13909 pc
= &OMP_CLAUSE_CHAIN (c
);
13912 case OMP_CLAUSE_ORDERED
:
13913 ordered_seen
= true;
13914 pc
= &OMP_CLAUSE_CHAIN (c
);
13917 case OMP_CLAUSE_SAFELEN
:
13919 pc
= &OMP_CLAUSE_CHAIN (c
);
13921 case OMP_CLAUSE_SIMDLEN
:
13923 pc
= &OMP_CLAUSE_CHAIN (c
);
13926 case OMP_CLAUSE_INBRANCH
:
13927 case OMP_CLAUSE_NOTINBRANCH
:
13930 error_at (OMP_CLAUSE_LOCATION (c
),
13931 "%<inbranch%> clause is incompatible with "
13932 "%<notinbranch%>");
13936 branch_seen
= true;
13937 pc
= &OMP_CLAUSE_CHAIN (c
);
13941 gcc_unreachable ();
13946 t
= OMP_CLAUSE_DECL (c
);
13950 t
= require_complete_type (OMP_CLAUSE_LOCATION (c
), t
);
13951 if (t
== error_mark_node
)
13955 if (need_implicitly_determined
)
13957 const char *share_name
= NULL
;
13959 if (VAR_P (t
) && DECL_THREAD_LOCAL_P (t
))
13960 share_name
= "threadprivate";
13961 else switch (c_omp_predetermined_sharing (t
))
13963 case OMP_CLAUSE_DEFAULT_UNSPECIFIED
:
13965 case OMP_CLAUSE_DEFAULT_SHARED
:
13966 /* const vars may be specified in firstprivate clause. */
13967 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_FIRSTPRIVATE
13968 && TREE_READONLY (t
))
13970 share_name
= "shared";
13972 case OMP_CLAUSE_DEFAULT_PRIVATE
:
13973 share_name
= "private";
13976 gcc_unreachable ();
13980 error_at (OMP_CLAUSE_LOCATION (c
),
13981 "%qE is predetermined %qs for %qs",
13983 omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
13990 *pc
= OMP_CLAUSE_CHAIN (c
);
13992 pc
= &OMP_CLAUSE_CHAIN (c
);
13997 && tree_int_cst_lt (OMP_CLAUSE_SAFELEN_EXPR (safelen
),
13998 OMP_CLAUSE_SIMDLEN_EXPR (simdlen
)))
14000 error_at (OMP_CLAUSE_LOCATION (simdlen
),
14001 "%<simdlen%> clause value is bigger than "
14002 "%<safelen%> clause value");
14003 OMP_CLAUSE_SIMDLEN_EXPR (simdlen
)
14004 = OMP_CLAUSE_SAFELEN_EXPR (safelen
);
14009 && (OMP_CLAUSE_SCHEDULE_KIND (schedule_clause
)
14010 & OMP_CLAUSE_SCHEDULE_NONMONOTONIC
))
14012 error_at (OMP_CLAUSE_LOCATION (schedule_clause
),
14013 "%<nonmonotonic%> schedule modifier specified together "
14014 "with %<ordered%> clause");
14015 OMP_CLAUSE_SCHEDULE_KIND (schedule_clause
)
14016 = (enum omp_clause_schedule_kind
)
14017 (OMP_CLAUSE_SCHEDULE_KIND (schedule_clause
)
14018 & ~OMP_CLAUSE_SCHEDULE_NONMONOTONIC
);
14021 if (linear_variable_step_check
)
14022 for (pc
= &clauses
, c
= clauses
; c
; c
= *pc
)
14024 bool remove
= false;
14025 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_LINEAR
14026 && OMP_CLAUSE_LINEAR_VARIABLE_STRIDE (c
)
14027 && !bitmap_bit_p (&map_head
,
14028 DECL_UID (OMP_CLAUSE_LINEAR_STEP (c
))))
14030 error_at (OMP_CLAUSE_LOCATION (c
),
14031 "%<linear%> clause step is a parameter %qD not "
14032 "specified in %<uniform%> clause",
14033 OMP_CLAUSE_LINEAR_STEP (c
));
14038 *pc
= OMP_CLAUSE_CHAIN (c
);
14040 pc
= &OMP_CLAUSE_CHAIN (c
);
14043 bitmap_obstack_release (NULL
);
14047 /* Return code to initialize DST with a copy constructor from SRC.
14048 C doesn't have copy constructors nor assignment operators, only for
14049 _Atomic vars we need to perform __atomic_load from src into a temporary
14050 followed by __atomic_store of the temporary to dst. */
14053 c_omp_clause_copy_ctor (tree clause
, tree dst
, tree src
)
14055 if (!really_atomic_lvalue (dst
) && !really_atomic_lvalue (src
))
14056 return build2 (MODIFY_EXPR
, TREE_TYPE (dst
), dst
, src
);
14058 location_t loc
= OMP_CLAUSE_LOCATION (clause
);
14059 tree type
= TREE_TYPE (dst
);
14060 tree nonatomic_type
= build_qualified_type (type
, TYPE_UNQUALIFIED
);
14061 tree tmp
= create_tmp_var (nonatomic_type
);
14062 tree tmp_addr
= build_fold_addr_expr (tmp
);
14063 TREE_ADDRESSABLE (tmp
) = 1;
14064 TREE_NO_WARNING (tmp
) = 1;
14065 tree src_addr
= build_fold_addr_expr (src
);
14066 tree dst_addr
= build_fold_addr_expr (dst
);
14067 tree seq_cst
= build_int_cst (integer_type_node
, MEMMODEL_SEQ_CST
);
14068 vec
<tree
, va_gc
> *params
;
14069 /* Expansion of a generic atomic load may require an addition
14070 element, so allocate enough to prevent a resize. */
14071 vec_alloc (params
, 4);
14073 /* Build __atomic_load (&src, &tmp, SEQ_CST); */
14074 tree fndecl
= builtin_decl_explicit (BUILT_IN_ATOMIC_LOAD
);
14075 params
->quick_push (src_addr
);
14076 params
->quick_push (tmp_addr
);
14077 params
->quick_push (seq_cst
);
14078 tree load
= c_build_function_call_vec (loc
, vNULL
, fndecl
, params
, NULL
);
14080 vec_alloc (params
, 4);
14082 /* Build __atomic_store (&dst, &tmp, SEQ_CST); */
14083 fndecl
= builtin_decl_explicit (BUILT_IN_ATOMIC_STORE
);
14084 params
->quick_push (dst_addr
);
14085 params
->quick_push (tmp_addr
);
14086 params
->quick_push (seq_cst
);
14087 tree store
= c_build_function_call_vec (loc
, vNULL
, fndecl
, params
, NULL
);
14088 return build2 (COMPOUND_EXPR
, void_type_node
, load
, store
);
14091 /* Create a transaction node. */
14094 c_finish_transaction (location_t loc
, tree block
, int flags
)
14096 tree stmt
= build_stmt (loc
, TRANSACTION_EXPR
, block
);
14097 if (flags
& TM_STMT_ATTR_OUTER
)
14098 TRANSACTION_EXPR_OUTER (stmt
) = 1;
14099 if (flags
& TM_STMT_ATTR_RELAXED
)
14100 TRANSACTION_EXPR_RELAXED (stmt
) = 1;
14101 return add_stmt (stmt
);
14104 /* Make a variant type in the proper way for C/C++, propagating qualifiers
14105 down to the element type of an array. If ORIG_QUAL_TYPE is not
14106 NULL, then it should be used as the qualified type
14107 ORIG_QUAL_INDIRECT levels down in array type derivation (to
14108 preserve information about the typedef name from which an array
14109 type was derived). */
14112 c_build_qualified_type (tree type
, int type_quals
, tree orig_qual_type
,
14113 size_t orig_qual_indirect
)
14115 if (type
== error_mark_node
)
14118 if (TREE_CODE (type
) == ARRAY_TYPE
)
14121 tree element_type
= c_build_qualified_type (TREE_TYPE (type
),
14122 type_quals
, orig_qual_type
,
14123 orig_qual_indirect
- 1);
14125 /* See if we already have an identically qualified type. */
14126 if (orig_qual_type
&& orig_qual_indirect
== 0)
14127 t
= orig_qual_type
;
14129 for (t
= TYPE_MAIN_VARIANT (type
); t
; t
= TYPE_NEXT_VARIANT (t
))
14131 if (TYPE_QUALS (strip_array_types (t
)) == type_quals
14132 && TYPE_NAME (t
) == TYPE_NAME (type
)
14133 && TYPE_CONTEXT (t
) == TYPE_CONTEXT (type
)
14134 && attribute_list_equal (TYPE_ATTRIBUTES (t
),
14135 TYPE_ATTRIBUTES (type
)))
14140 tree domain
= TYPE_DOMAIN (type
);
14142 t
= build_variant_type_copy (type
);
14143 TREE_TYPE (t
) = element_type
;
14145 if (TYPE_STRUCTURAL_EQUALITY_P (element_type
)
14146 || (domain
&& TYPE_STRUCTURAL_EQUALITY_P (domain
)))
14147 SET_TYPE_STRUCTURAL_EQUALITY (t
);
14148 else if (TYPE_CANONICAL (element_type
) != element_type
14149 || (domain
&& TYPE_CANONICAL (domain
) != domain
))
14151 tree unqualified_canon
14152 = build_array_type (TYPE_CANONICAL (element_type
),
14153 domain
? TYPE_CANONICAL (domain
)
14155 if (TYPE_REVERSE_STORAGE_ORDER (type
))
14158 = build_distinct_type_copy (unqualified_canon
);
14159 TYPE_REVERSE_STORAGE_ORDER (unqualified_canon
) = 1;
14162 = c_build_qualified_type (unqualified_canon
, type_quals
);
14165 TYPE_CANONICAL (t
) = t
;
14170 /* A restrict-qualified pointer type must be a pointer to object or
14171 incomplete type. Note that the use of POINTER_TYPE_P also allows
14172 REFERENCE_TYPEs, which is appropriate for C++. */
14173 if ((type_quals
& TYPE_QUAL_RESTRICT
)
14174 && (!POINTER_TYPE_P (type
)
14175 || !C_TYPE_OBJECT_OR_INCOMPLETE_P (TREE_TYPE (type
))))
14177 error ("invalid use of %<restrict%>");
14178 type_quals
&= ~TYPE_QUAL_RESTRICT
;
14181 tree var_type
= (orig_qual_type
&& orig_qual_indirect
== 0
14183 : build_qualified_type (type
, type_quals
));
14184 /* A variant type does not inherit the list of incomplete vars from the
14185 type main variant. */
14186 if (RECORD_OR_UNION_TYPE_P (var_type
)
14187 && TYPE_MAIN_VARIANT (var_type
) != var_type
)
14188 C_TYPE_INCOMPLETE_VARS (var_type
) = 0;
14192 /* Build a VA_ARG_EXPR for the C parser. */
14195 c_build_va_arg (location_t loc1
, tree expr
, location_t loc2
, tree type
)
14197 if (error_operand_p (type
))
14198 return error_mark_node
;
14199 /* VA_ARG_EXPR cannot be used for a scalar va_list with reverse storage
14200 order because it takes the address of the expression. */
14201 else if (handled_component_p (expr
)
14202 && reverse_storage_order_for_component_p (expr
))
14204 error_at (loc1
, "cannot use %<va_arg%> with reverse storage order");
14205 return error_mark_node
;
14207 else if (!COMPLETE_TYPE_P (type
))
14209 error_at (loc2
, "second argument to %<va_arg%> is of incomplete "
14211 return error_mark_node
;
14213 else if (warn_cxx_compat
&& TREE_CODE (type
) == ENUMERAL_TYPE
)
14214 warning_at (loc2
, OPT_Wc___compat
,
14215 "C++ requires promoted type, not enum type, in %<va_arg%>");
14216 return build_va_arg (loc2
, expr
, type
);
14219 /* Return truthvalue of whether T1 is the same tree structure as T2.
14220 Return 1 if they are the same. Return false if they are different. */
14223 c_tree_equal (tree t1
, tree t2
)
14225 enum tree_code code1
, code2
;
14232 for (code1
= TREE_CODE (t1
);
14233 CONVERT_EXPR_CODE_P (code1
)
14234 || code1
== NON_LVALUE_EXPR
;
14235 code1
= TREE_CODE (t1
))
14236 t1
= TREE_OPERAND (t1
, 0);
14237 for (code2
= TREE_CODE (t2
);
14238 CONVERT_EXPR_CODE_P (code2
)
14239 || code2
== NON_LVALUE_EXPR
;
14240 code2
= TREE_CODE (t2
))
14241 t2
= TREE_OPERAND (t2
, 0);
14243 /* They might have become equal now. */
14247 if (code1
!= code2
)
14253 return wi::to_wide (t1
) == wi::to_wide (t2
);
14256 return real_equal (&TREE_REAL_CST (t1
), &TREE_REAL_CST (t2
));
14259 return TREE_STRING_LENGTH (t1
) == TREE_STRING_LENGTH (t2
)
14260 && !memcmp (TREE_STRING_POINTER (t1
), TREE_STRING_POINTER (t2
),
14261 TREE_STRING_LENGTH (t1
));
14264 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1
),
14265 TREE_FIXED_CST (t2
));
14268 return c_tree_equal (TREE_REALPART (t1
), TREE_REALPART (t2
))
14269 && c_tree_equal (TREE_IMAGPART (t1
), TREE_IMAGPART (t2
));
14272 return operand_equal_p (t1
, t2
, OEP_ONLY_CONST
);
14275 /* We need to do this when determining whether or not two
14276 non-type pointer to member function template arguments
14278 if (!comptypes (TREE_TYPE (t1
), TREE_TYPE (t2
))
14279 || CONSTRUCTOR_NELTS (t1
) != CONSTRUCTOR_NELTS (t2
))
14284 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t1
), i
, field
, value
)
14286 constructor_elt
*elt2
= CONSTRUCTOR_ELT (t2
, i
);
14287 if (!c_tree_equal (field
, elt2
->index
)
14288 || !c_tree_equal (value
, elt2
->value
))
14295 if (!c_tree_equal (TREE_PURPOSE (t1
), TREE_PURPOSE (t2
)))
14297 if (!c_tree_equal (TREE_VALUE (t1
), TREE_VALUE (t2
)))
14299 return c_tree_equal (TREE_CHAIN (t1
), TREE_CHAIN (t2
));
14302 return c_tree_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
14307 call_expr_arg_iterator iter1
, iter2
;
14308 if (!c_tree_equal (CALL_EXPR_FN (t1
), CALL_EXPR_FN (t2
)))
14310 for (arg1
= first_call_expr_arg (t1
, &iter1
),
14311 arg2
= first_call_expr_arg (t2
, &iter2
);
14313 arg1
= next_call_expr_arg (&iter1
),
14314 arg2
= next_call_expr_arg (&iter2
))
14315 if (!c_tree_equal (arg1
, arg2
))
14324 tree o1
= TREE_OPERAND (t1
, 0);
14325 tree o2
= TREE_OPERAND (t2
, 0);
14327 /* Special case: if either target is an unallocated VAR_DECL,
14328 it means that it's going to be unified with whatever the
14329 TARGET_EXPR is really supposed to initialize, so treat it
14330 as being equivalent to anything. */
14331 if (VAR_P (o1
) && DECL_NAME (o1
) == NULL_TREE
14332 && !DECL_RTL_SET_P (o1
))
14334 else if (VAR_P (o2
) && DECL_NAME (o2
) == NULL_TREE
14335 && !DECL_RTL_SET_P (o2
))
14337 else if (!c_tree_equal (o1
, o2
))
14340 return c_tree_equal (TREE_OPERAND (t1
, 1), TREE_OPERAND (t2
, 1));
14343 case COMPONENT_REF
:
14344 if (TREE_OPERAND (t1
, 1) != TREE_OPERAND (t2
, 1))
14346 return c_tree_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
14352 case FUNCTION_DECL
:
14353 case IDENTIFIER_NODE
:
14360 if (TREE_VEC_LENGTH (t1
) != TREE_VEC_LENGTH (t2
))
14362 for (ix
= TREE_VEC_LENGTH (t1
); ix
--;)
14363 if (!c_tree_equal (TREE_VEC_ELT (t1
, ix
),
14364 TREE_VEC_ELT (t2
, ix
)))
14373 switch (TREE_CODE_CLASS (code1
))
14377 case tcc_comparison
:
14378 case tcc_expression
:
14380 case tcc_reference
:
14381 case tcc_statement
:
14383 int i
, n
= TREE_OPERAND_LENGTH (t1
);
14387 case PREINCREMENT_EXPR
:
14388 case PREDECREMENT_EXPR
:
14389 case POSTINCREMENT_EXPR
:
14390 case POSTDECREMENT_EXPR
:
14400 if (TREE_CODE_CLASS (code1
) == tcc_vl_exp
14401 && n
!= TREE_OPERAND_LENGTH (t2
))
14404 for (i
= 0; i
< n
; ++i
)
14405 if (!c_tree_equal (TREE_OPERAND (t1
, i
), TREE_OPERAND (t2
, i
)))
14412 return comptypes (t1
, t2
);
14414 gcc_unreachable ();
14416 /* We can get here with --disable-checking. */
14420 /* Returns true when the function declaration FNDECL is implicit,
14421 introduced as a result of a call to an otherwise undeclared
14422 function, and false otherwise. */
14425 c_decl_implicit (const_tree fndecl
)
14427 return C_DECL_IMPLICIT (fndecl
);