OSDN Git Service

PR c/456
[pf3gnuchains/gcc-fork.git] / gcc / c-typeck.c
1 /* Build expressions with type checking for C compiler.
2    Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3    1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
4    Free Software Foundation, Inc.
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
12
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3.  If not see
20 <http://www.gnu.org/licenses/>.  */
21
22
23 /* This file is part of the C front end.
24    It contains routines to build C expressions given their operands,
25    including computing the types of the result, C-specific error checks,
26    and some optimization.  */
27
28 #include "config.h"
29 #include "system.h"
30 #include "coretypes.h"
31 #include "tm.h"
32 #include "rtl.h"
33 #include "tree.h"
34 #include "langhooks.h"
35 #include "c-tree.h"
36 #include "tm_p.h"
37 #include "flags.h"
38 #include "output.h"
39 #include "expr.h"
40 #include "toplev.h"
41 #include "intl.h"
42 #include "ggc.h"
43 #include "target.h"
44 #include "tree-iterator.h"
45 #include "gimple.h"
46 #include "tree-flow.h"
47
48 /* Possible cases of implicit bad conversions.  Used to select
49    diagnostic messages in convert_for_assignment.  */
50 enum impl_conv {
51   ic_argpass,
52   ic_assign,
53   ic_init,
54   ic_return
55 };
56
57 /* Whether we are building a boolean conversion inside
58    convert_for_assignment, or some other late binary operation.  If
59    build_binary_op is called (from code shared with C++) in this case,
60    then the operands have already been folded and the result will not
61    be folded again, so C_MAYBE_CONST_EXPR should not be generated.  */
62 bool in_late_binary_op;
63
64 /* The level of nesting inside "__alignof__".  */
65 int in_alignof;
66
67 /* The level of nesting inside "sizeof".  */
68 int in_sizeof;
69
70 /* The level of nesting inside "typeof".  */
71 int in_typeof;
72
73 struct c_label_context_se *label_context_stack_se;
74 struct c_label_context_vm *label_context_stack_vm;
75
76 /* Nonzero if we've already printed a "missing braces around initializer"
77    message within this initializer.  */
78 static int missing_braces_mentioned;
79
80 static int require_constant_value;
81 static int require_constant_elements;
82
83 static bool null_pointer_constant_p (const_tree);
84 static tree qualify_type (tree, tree);
85 static int tagged_types_tu_compatible_p (const_tree, const_tree);
86 static int comp_target_types (tree, tree);
87 static int function_types_compatible_p (const_tree, const_tree);
88 static int type_lists_compatible_p (const_tree, const_tree);
89 static tree lookup_field (tree, tree);
90 static int convert_arguments (int, tree *, tree, tree, tree, tree);
91 static tree pointer_diff (tree, tree);
92 static tree convert_for_assignment (tree, tree, enum impl_conv, bool,
93                                     tree, tree, int);
94 static tree valid_compound_expr_initializer (tree, tree);
95 static void push_string (const char *);
96 static void push_member_name (tree);
97 static int spelling_length (void);
98 static char *print_spelling (char *);
99 static void warning_init (int, const char *);
100 static tree digest_init (tree, tree, bool, bool, int);
101 static void output_init_element (tree, bool, tree, tree, int, bool);
102 static void output_pending_init_elements (int);
103 static int set_designator (int);
104 static void push_range_stack (tree);
105 static void add_pending_init (tree, tree, bool);
106 static void set_nonincremental_init (void);
107 static void set_nonincremental_init_from_string (tree);
108 static tree find_init_member (tree);
109 static void readonly_error (tree, enum lvalue_use);
110 static int lvalue_or_else (const_tree, enum lvalue_use);
111 static int lvalue_p (const_tree);
112 static void record_maybe_used_decl (tree);
113 static int comptypes_internal (const_tree, const_tree);
114 \f
115 /* Return true if EXP is a null pointer constant, false otherwise.  */
116
117 static bool
118 null_pointer_constant_p (const_tree expr)
119 {
120   /* This should really operate on c_expr structures, but they aren't
121      yet available everywhere required.  */
122   tree type = TREE_TYPE (expr);
123   return (TREE_CODE (expr) == INTEGER_CST
124           && !TREE_OVERFLOW (expr)
125           && integer_zerop (expr)
126           && (INTEGRAL_TYPE_P (type)
127               || (TREE_CODE (type) == POINTER_TYPE
128                   && VOID_TYPE_P (TREE_TYPE (type))
129                   && TYPE_QUALS (TREE_TYPE (type)) == TYPE_UNQUALIFIED)));
130 }
131
132 /* EXPR may appear in an unevaluated part of an integer constant
133    expression, but not in an evaluated part.  Wrap it in a
134    C_MAYBE_CONST_EXPR, or mark it with TREE_OVERFLOW if it is just an
135    INTEGER_CST and we cannot create a C_MAYBE_CONST_EXPR.  */
136
137 static tree
138 note_integer_operands (tree expr)
139 {
140   tree ret;
141   if (TREE_CODE (expr) == INTEGER_CST && in_late_binary_op)
142     {
143       ret = copy_node (expr);
144       TREE_OVERFLOW (ret) = 1;
145     }
146   else
147     {
148       ret = build2 (C_MAYBE_CONST_EXPR, TREE_TYPE (expr), NULL_TREE, expr);
149       C_MAYBE_CONST_EXPR_INT_OPERANDS (ret) = 1;
150     }
151   return ret;
152 }
153
154 \f/* This is a cache to hold if two types are compatible or not.  */
155
156 struct tagged_tu_seen_cache {
157   const struct tagged_tu_seen_cache * next;
158   const_tree t1;
159   const_tree t2;
160   /* The return value of tagged_types_tu_compatible_p if we had seen
161      these two types already.  */
162   int val;
163 };
164
165 static const struct tagged_tu_seen_cache * tagged_tu_seen_base;
166 static void free_all_tagged_tu_seen_up_to (const struct tagged_tu_seen_cache *);
167
168 /* Do `exp = require_complete_type (exp);' to make sure exp
169    does not have an incomplete type.  (That includes void types.)  */
170
171 tree
172 require_complete_type (tree value)
173 {
174   tree type = TREE_TYPE (value);
175
176   if (value == error_mark_node || type == error_mark_node)
177     return error_mark_node;
178
179   /* First, detect a valid value with a complete type.  */
180   if (COMPLETE_TYPE_P (type))
181     return value;
182
183   c_incomplete_type_error (value, type);
184   return error_mark_node;
185 }
186
187 /* Print an error message for invalid use of an incomplete type.
188    VALUE is the expression that was used (or 0 if that isn't known)
189    and TYPE is the type that was invalid.  */
190
191 void
192 c_incomplete_type_error (const_tree value, const_tree type)
193 {
194   const char *type_code_string;
195
196   /* Avoid duplicate error message.  */
197   if (TREE_CODE (type) == ERROR_MARK)
198     return;
199
200   if (value != 0 && (TREE_CODE (value) == VAR_DECL
201                      || TREE_CODE (value) == PARM_DECL))
202     error ("%qD has an incomplete type", value);
203   else
204     {
205     retry:
206       /* We must print an error message.  Be clever about what it says.  */
207
208       switch (TREE_CODE (type))
209         {
210         case RECORD_TYPE:
211           type_code_string = "struct";
212           break;
213
214         case UNION_TYPE:
215           type_code_string = "union";
216           break;
217
218         case ENUMERAL_TYPE:
219           type_code_string = "enum";
220           break;
221
222         case VOID_TYPE:
223           error ("invalid use of void expression");
224           return;
225
226         case ARRAY_TYPE:
227           if (TYPE_DOMAIN (type))
228             {
229               if (TYPE_MAX_VALUE (TYPE_DOMAIN (type)) == NULL)
230                 {
231                   error ("invalid use of flexible array member");
232                   return;
233                 }
234               type = TREE_TYPE (type);
235               goto retry;
236             }
237           error ("invalid use of array with unspecified bounds");
238           return;
239
240         default:
241           gcc_unreachable ();
242         }
243
244       if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
245         error ("invalid use of undefined type %<%s %E%>",
246                type_code_string, TYPE_NAME (type));
247       else
248         /* If this type has a typedef-name, the TYPE_NAME is a TYPE_DECL.  */
249         error ("invalid use of incomplete typedef %qD", TYPE_NAME (type));
250     }
251 }
252
253 /* Given a type, apply default promotions wrt unnamed function
254    arguments and return the new type.  */
255
256 tree
257 c_type_promotes_to (tree type)
258 {
259   if (TYPE_MAIN_VARIANT (type) == float_type_node)
260     return double_type_node;
261
262   if (c_promoting_integer_type_p (type))
263     {
264       /* Preserve unsignedness if not really getting any wider.  */
265       if (TYPE_UNSIGNED (type)
266           && (TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node)))
267         return unsigned_type_node;
268       return integer_type_node;
269     }
270
271   return type;
272 }
273
274 /* Return a variant of TYPE which has all the type qualifiers of LIKE
275    as well as those of TYPE.  */
276
277 static tree
278 qualify_type (tree type, tree like)
279 {
280   return c_build_qualified_type (type,
281                                  TYPE_QUALS (type) | TYPE_QUALS (like));
282 }
283
284 /* Return true iff the given tree T is a variable length array.  */
285
286 bool
287 c_vla_type_p (const_tree t)
288 {
289   if (TREE_CODE (t) == ARRAY_TYPE
290       && C_TYPE_VARIABLE_SIZE (t))
291     return true;
292   return false;
293 }
294 \f
295 /* Return the composite type of two compatible types.
296
297    We assume that comptypes has already been done and returned
298    nonzero; if that isn't so, this may crash.  In particular, we
299    assume that qualifiers match.  */
300
301 tree
302 composite_type (tree t1, tree t2)
303 {
304   enum tree_code code1;
305   enum tree_code code2;
306   tree attributes;
307
308   /* Save time if the two types are the same.  */
309
310   if (t1 == t2) return t1;
311
312   /* If one type is nonsense, use the other.  */
313   if (t1 == error_mark_node)
314     return t2;
315   if (t2 == error_mark_node)
316     return t1;
317
318   code1 = TREE_CODE (t1);
319   code2 = TREE_CODE (t2);
320
321   /* Merge the attributes.  */
322   attributes = targetm.merge_type_attributes (t1, t2);
323
324   /* If one is an enumerated type and the other is the compatible
325      integer type, the composite type might be either of the two
326      (DR#013 question 3).  For consistency, use the enumerated type as
327      the composite type.  */
328
329   if (code1 == ENUMERAL_TYPE && code2 == INTEGER_TYPE)
330     return t1;
331   if (code2 == ENUMERAL_TYPE && code1 == INTEGER_TYPE)
332     return t2;
333
334   gcc_assert (code1 == code2);
335
336   switch (code1)
337     {
338     case POINTER_TYPE:
339       /* For two pointers, do this recursively on the target type.  */
340       {
341         tree pointed_to_1 = TREE_TYPE (t1);
342         tree pointed_to_2 = TREE_TYPE (t2);
343         tree target = composite_type (pointed_to_1, pointed_to_2);
344         t1 = build_pointer_type (target);
345         t1 = build_type_attribute_variant (t1, attributes);
346         return qualify_type (t1, t2);
347       }
348
349     case ARRAY_TYPE:
350       {
351         tree elt = composite_type (TREE_TYPE (t1), TREE_TYPE (t2));
352         int quals;
353         tree unqual_elt;
354         tree d1 = TYPE_DOMAIN (t1);
355         tree d2 = TYPE_DOMAIN (t2);
356         bool d1_variable, d2_variable;
357         bool d1_zero, d2_zero;
358         bool t1_complete, t2_complete;
359
360         /* We should not have any type quals on arrays at all.  */
361         gcc_assert (!TYPE_QUALS (t1) && !TYPE_QUALS (t2));
362
363         t1_complete = COMPLETE_TYPE_P (t1);
364         t2_complete = COMPLETE_TYPE_P (t2);
365
366         d1_zero = d1 == 0 || !TYPE_MAX_VALUE (d1);
367         d2_zero = d2 == 0 || !TYPE_MAX_VALUE (d2);
368
369         d1_variable = (!d1_zero
370                        && (TREE_CODE (TYPE_MIN_VALUE (d1)) != INTEGER_CST
371                            || TREE_CODE (TYPE_MAX_VALUE (d1)) != INTEGER_CST));
372         d2_variable = (!d2_zero
373                        && (TREE_CODE (TYPE_MIN_VALUE (d2)) != INTEGER_CST
374                            || TREE_CODE (TYPE_MAX_VALUE (d2)) != INTEGER_CST));
375         d1_variable = d1_variable || (d1_zero && c_vla_type_p (t1));
376         d2_variable = d2_variable || (d2_zero && c_vla_type_p (t2));
377
378         /* Save space: see if the result is identical to one of the args.  */
379         if (elt == TREE_TYPE (t1) && TYPE_DOMAIN (t1)
380             && (d2_variable || d2_zero || !d1_variable))
381           return build_type_attribute_variant (t1, attributes);
382         if (elt == TREE_TYPE (t2) && TYPE_DOMAIN (t2)
383             && (d1_variable || d1_zero || !d2_variable))
384           return build_type_attribute_variant (t2, attributes);
385
386         if (elt == TREE_TYPE (t1) && !TYPE_DOMAIN (t2) && !TYPE_DOMAIN (t1))
387           return build_type_attribute_variant (t1, attributes);
388         if (elt == TREE_TYPE (t2) && !TYPE_DOMAIN (t2) && !TYPE_DOMAIN (t1))
389           return build_type_attribute_variant (t2, attributes);
390
391         /* Merge the element types, and have a size if either arg has
392            one.  We may have qualifiers on the element types.  To set
393            up TYPE_MAIN_VARIANT correctly, we need to form the
394            composite of the unqualified types and add the qualifiers
395            back at the end.  */
396         quals = TYPE_QUALS (strip_array_types (elt));
397         unqual_elt = c_build_qualified_type (elt, TYPE_UNQUALIFIED);
398         t1 = build_array_type (unqual_elt,
399                                TYPE_DOMAIN ((TYPE_DOMAIN (t1)
400                                              && (d2_variable
401                                                  || d2_zero
402                                                  || !d1_variable))
403                                             ? t1
404                                             : t2));
405         /* Ensure a composite type involving a zero-length array type
406            is a zero-length type not an incomplete type.  */
407         if (d1_zero && d2_zero
408             && (t1_complete || t2_complete)
409             && !COMPLETE_TYPE_P (t1))
410           {
411             TYPE_SIZE (t1) = bitsize_zero_node;
412             TYPE_SIZE_UNIT (t1) = size_zero_node;
413           }
414         t1 = c_build_qualified_type (t1, quals);
415         return build_type_attribute_variant (t1, attributes);
416       }
417
418     case ENUMERAL_TYPE:
419     case RECORD_TYPE:
420     case UNION_TYPE:
421       if (attributes != NULL)
422         {
423           /* Try harder not to create a new aggregate type.  */
424           if (attribute_list_equal (TYPE_ATTRIBUTES (t1), attributes))
425             return t1;
426           if (attribute_list_equal (TYPE_ATTRIBUTES (t2), attributes))
427             return t2;
428         }
429       return build_type_attribute_variant (t1, attributes);
430
431     case FUNCTION_TYPE:
432       /* Function types: prefer the one that specified arg types.
433          If both do, merge the arg types.  Also merge the return types.  */
434       {
435         tree valtype = composite_type (TREE_TYPE (t1), TREE_TYPE (t2));
436         tree p1 = TYPE_ARG_TYPES (t1);
437         tree p2 = TYPE_ARG_TYPES (t2);
438         int len;
439         tree newargs, n;
440         int i;
441
442         /* Save space: see if the result is identical to one of the args.  */
443         if (valtype == TREE_TYPE (t1) && !TYPE_ARG_TYPES (t2))
444           return build_type_attribute_variant (t1, attributes);
445         if (valtype == TREE_TYPE (t2) && !TYPE_ARG_TYPES (t1))
446           return build_type_attribute_variant (t2, attributes);
447
448         /* Simple way if one arg fails to specify argument types.  */
449         if (TYPE_ARG_TYPES (t1) == 0)
450          {
451             t1 = build_function_type (valtype, TYPE_ARG_TYPES (t2));
452             t1 = build_type_attribute_variant (t1, attributes);
453             return qualify_type (t1, t2);
454          }
455         if (TYPE_ARG_TYPES (t2) == 0)
456          {
457            t1 = build_function_type (valtype, TYPE_ARG_TYPES (t1));
458            t1 = build_type_attribute_variant (t1, attributes);
459            return qualify_type (t1, t2);
460          }
461
462         /* If both args specify argument types, we must merge the two
463            lists, argument by argument.  */
464         /* Tell global_bindings_p to return false so that variable_size
465            doesn't die on VLAs in parameter types.  */
466         c_override_global_bindings_to_false = true;
467
468         len = list_length (p1);
469         newargs = 0;
470
471         for (i = 0; i < len; i++)
472           newargs = tree_cons (NULL_TREE, NULL_TREE, newargs);
473
474         n = newargs;
475
476         for (; p1;
477              p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2), n = TREE_CHAIN (n))
478           {
479             /* A null type means arg type is not specified.
480                Take whatever the other function type has.  */
481             if (TREE_VALUE (p1) == 0)
482               {
483                 TREE_VALUE (n) = TREE_VALUE (p2);
484                 goto parm_done;
485               }
486             if (TREE_VALUE (p2) == 0)
487               {
488                 TREE_VALUE (n) = TREE_VALUE (p1);
489                 goto parm_done;
490               }
491
492             /* Given  wait (union {union wait *u; int *i} *)
493                and  wait (union wait *),
494                prefer  union wait *  as type of parm.  */
495             if (TREE_CODE (TREE_VALUE (p1)) == UNION_TYPE
496                 && TREE_VALUE (p1) != TREE_VALUE (p2))
497               {
498                 tree memb;
499                 tree mv2 = TREE_VALUE (p2);
500                 if (mv2 && mv2 != error_mark_node
501                     && TREE_CODE (mv2) != ARRAY_TYPE)
502                   mv2 = TYPE_MAIN_VARIANT (mv2);
503                 for (memb = TYPE_FIELDS (TREE_VALUE (p1));
504                      memb; memb = TREE_CHAIN (memb))
505                   {
506                     tree mv3 = TREE_TYPE (memb);
507                     if (mv3 && mv3 != error_mark_node
508                         && TREE_CODE (mv3) != ARRAY_TYPE)
509                       mv3 = TYPE_MAIN_VARIANT (mv3);
510                     if (comptypes (mv3, mv2))
511                       {
512                         TREE_VALUE (n) = composite_type (TREE_TYPE (memb),
513                                                          TREE_VALUE (p2));
514                         pedwarn (input_location, OPT_pedantic, 
515                                  "function types not truly compatible in ISO C");
516                         goto parm_done;
517                       }
518                   }
519               }
520             if (TREE_CODE (TREE_VALUE (p2)) == UNION_TYPE
521                 && TREE_VALUE (p2) != TREE_VALUE (p1))
522               {
523                 tree memb;
524                 tree mv1 = TREE_VALUE (p1);
525                 if (mv1 && mv1 != error_mark_node
526                     && TREE_CODE (mv1) != ARRAY_TYPE)
527                   mv1 = TYPE_MAIN_VARIANT (mv1);
528                 for (memb = TYPE_FIELDS (TREE_VALUE (p2));
529                      memb; memb = TREE_CHAIN (memb))
530                   {
531                     tree mv3 = TREE_TYPE (memb);
532                     if (mv3 && mv3 != error_mark_node
533                         && TREE_CODE (mv3) != ARRAY_TYPE)
534                       mv3 = TYPE_MAIN_VARIANT (mv3);
535                     if (comptypes (mv3, mv1))
536                       {
537                         TREE_VALUE (n) = composite_type (TREE_TYPE (memb),
538                                                          TREE_VALUE (p1));
539                         pedwarn (input_location, OPT_pedantic, 
540                                  "function types not truly compatible in ISO C");
541                         goto parm_done;
542                       }
543                   }
544               }
545             TREE_VALUE (n) = composite_type (TREE_VALUE (p1), TREE_VALUE (p2));
546           parm_done: ;
547           }
548
549         c_override_global_bindings_to_false = false;
550         t1 = build_function_type (valtype, newargs);
551         t1 = qualify_type (t1, t2);
552         /* ... falls through ...  */
553       }
554
555     default:
556       return build_type_attribute_variant (t1, attributes);
557     }
558
559 }
560
561 /* Return the type of a conditional expression between pointers to
562    possibly differently qualified versions of compatible types.
563
564    We assume that comp_target_types has already been done and returned
565    nonzero; if that isn't so, this may crash.  */
566
567 static tree
568 common_pointer_type (tree t1, tree t2)
569 {
570   tree attributes;
571   tree pointed_to_1, mv1;
572   tree pointed_to_2, mv2;
573   tree target;
574   unsigned target_quals;
575
576   /* Save time if the two types are the same.  */
577
578   if (t1 == t2) return t1;
579
580   /* If one type is nonsense, use the other.  */
581   if (t1 == error_mark_node)
582     return t2;
583   if (t2 == error_mark_node)
584     return t1;
585
586   gcc_assert (TREE_CODE (t1) == POINTER_TYPE
587               && TREE_CODE (t2) == POINTER_TYPE);
588
589   /* Merge the attributes.  */
590   attributes = targetm.merge_type_attributes (t1, t2);
591
592   /* Find the composite type of the target types, and combine the
593      qualifiers of the two types' targets.  Do not lose qualifiers on
594      array element types by taking the TYPE_MAIN_VARIANT.  */
595   mv1 = pointed_to_1 = TREE_TYPE (t1);
596   mv2 = pointed_to_2 = TREE_TYPE (t2);
597   if (TREE_CODE (mv1) != ARRAY_TYPE)
598     mv1 = TYPE_MAIN_VARIANT (pointed_to_1);
599   if (TREE_CODE (mv2) != ARRAY_TYPE)
600     mv2 = TYPE_MAIN_VARIANT (pointed_to_2);
601   target = composite_type (mv1, mv2);
602
603   /* For function types do not merge const qualifiers, but drop them
604      if used inconsistently.  The middle-end uses these to mark const
605      and noreturn functions.  */
606   if (TREE_CODE (pointed_to_1) == FUNCTION_TYPE)
607     target_quals = TYPE_QUALS (pointed_to_1) & TYPE_QUALS (pointed_to_2);
608   else
609     target_quals = TYPE_QUALS (pointed_to_1) | TYPE_QUALS (pointed_to_2);
610   t1 = build_pointer_type (c_build_qualified_type (target, target_quals));
611   return build_type_attribute_variant (t1, attributes);
612 }
613
614 /* Return the common type for two arithmetic types under the usual
615    arithmetic conversions.  The default conversions have already been
616    applied, and enumerated types converted to their compatible integer
617    types.  The resulting type is unqualified and has no attributes.
618
619    This is the type for the result of most arithmetic operations
620    if the operands have the given two types.  */
621
622 static tree
623 c_common_type (tree t1, tree t2)
624 {
625   enum tree_code code1;
626   enum tree_code code2;
627
628   /* If one type is nonsense, use the other.  */
629   if (t1 == error_mark_node)
630     return t2;
631   if (t2 == error_mark_node)
632     return t1;
633
634   if (TYPE_QUALS (t1) != TYPE_UNQUALIFIED)
635     t1 = TYPE_MAIN_VARIANT (t1);
636
637   if (TYPE_QUALS (t2) != TYPE_UNQUALIFIED)
638     t2 = TYPE_MAIN_VARIANT (t2);
639
640   if (TYPE_ATTRIBUTES (t1) != NULL_TREE)
641     t1 = build_type_attribute_variant (t1, NULL_TREE);
642
643   if (TYPE_ATTRIBUTES (t2) != NULL_TREE)
644     t2 = build_type_attribute_variant (t2, NULL_TREE);
645
646   /* Save time if the two types are the same.  */
647
648   if (t1 == t2) return t1;
649
650   code1 = TREE_CODE (t1);
651   code2 = TREE_CODE (t2);
652
653   gcc_assert (code1 == VECTOR_TYPE || code1 == COMPLEX_TYPE
654               || code1 == FIXED_POINT_TYPE || code1 == REAL_TYPE
655               || code1 == INTEGER_TYPE);
656   gcc_assert (code2 == VECTOR_TYPE || code2 == COMPLEX_TYPE
657               || code2 == FIXED_POINT_TYPE || code2 == REAL_TYPE
658               || code2 == INTEGER_TYPE);
659
660   /* When one operand is a decimal float type, the other operand cannot be
661      a generic float type or a complex type.  We also disallow vector types
662      here.  */
663   if ((DECIMAL_FLOAT_TYPE_P (t1) || DECIMAL_FLOAT_TYPE_P (t2))
664       && !(DECIMAL_FLOAT_TYPE_P (t1) && DECIMAL_FLOAT_TYPE_P (t2)))
665     {
666       if (code1 == VECTOR_TYPE || code2 == VECTOR_TYPE)
667         {
668           error ("can%'t mix operands of decimal float and vector types");
669           return error_mark_node;
670         }
671       if (code1 == COMPLEX_TYPE || code2 == COMPLEX_TYPE)
672         {
673           error ("can%'t mix operands of decimal float and complex types");
674           return error_mark_node;
675         }
676       if (code1 == REAL_TYPE && code2 == REAL_TYPE)
677         {
678           error ("can%'t mix operands of decimal float and other float types");
679           return error_mark_node;
680         }
681     }
682
683   /* If one type is a vector type, return that type.  (How the usual
684      arithmetic conversions apply to the vector types extension is not
685      precisely specified.)  */
686   if (code1 == VECTOR_TYPE)
687     return t1;
688
689   if (code2 == VECTOR_TYPE)
690     return t2;
691
692   /* If one type is complex, form the common type of the non-complex
693      components, then make that complex.  Use T1 or T2 if it is the
694      required type.  */
695   if (code1 == COMPLEX_TYPE || code2 == COMPLEX_TYPE)
696     {
697       tree subtype1 = code1 == COMPLEX_TYPE ? TREE_TYPE (t1) : t1;
698       tree subtype2 = code2 == COMPLEX_TYPE ? TREE_TYPE (t2) : t2;
699       tree subtype = c_common_type (subtype1, subtype2);
700
701       if (code1 == COMPLEX_TYPE && TREE_TYPE (t1) == subtype)
702         return t1;
703       else if (code2 == COMPLEX_TYPE && TREE_TYPE (t2) == subtype)
704         return t2;
705       else
706         return build_complex_type (subtype);
707     }
708
709   /* If only one is real, use it as the result.  */
710
711   if (code1 == REAL_TYPE && code2 != REAL_TYPE)
712     return t1;
713
714   if (code2 == REAL_TYPE && code1 != REAL_TYPE)
715     return t2;
716
717   /* If both are real and either are decimal floating point types, use
718      the decimal floating point type with the greater precision. */
719
720   if (code1 == REAL_TYPE && code2 == REAL_TYPE)
721     {
722       if (TYPE_MAIN_VARIANT (t1) == dfloat128_type_node
723           || TYPE_MAIN_VARIANT (t2) == dfloat128_type_node)
724         return dfloat128_type_node;
725       else if (TYPE_MAIN_VARIANT (t1) == dfloat64_type_node
726                || TYPE_MAIN_VARIANT (t2) == dfloat64_type_node)
727         return dfloat64_type_node;
728       else if (TYPE_MAIN_VARIANT (t1) == dfloat32_type_node
729                || TYPE_MAIN_VARIANT (t2) == dfloat32_type_node)
730         return dfloat32_type_node;
731     }
732
733   /* Deal with fixed-point types.  */
734   if (code1 == FIXED_POINT_TYPE || code2 == FIXED_POINT_TYPE)
735     {
736       unsigned int unsignedp = 0, satp = 0;
737       enum machine_mode m1, m2;
738       unsigned int fbit1, ibit1, fbit2, ibit2, max_fbit, max_ibit;
739
740       m1 = TYPE_MODE (t1);
741       m2 = TYPE_MODE (t2);
742
743       /* If one input type is saturating, the result type is saturating.  */
744       if (TYPE_SATURATING (t1) || TYPE_SATURATING (t2))
745         satp = 1;
746
747       /* If both fixed-point types are unsigned, the result type is unsigned.
748          When mixing fixed-point and integer types, follow the sign of the
749          fixed-point type.
750          Otherwise, the result type is signed.  */
751       if ((TYPE_UNSIGNED (t1) && TYPE_UNSIGNED (t2)
752            && code1 == FIXED_POINT_TYPE && code2 == FIXED_POINT_TYPE)
753           || (code1 == FIXED_POINT_TYPE && code2 != FIXED_POINT_TYPE
754               && TYPE_UNSIGNED (t1))
755           || (code1 != FIXED_POINT_TYPE && code2 == FIXED_POINT_TYPE
756               && TYPE_UNSIGNED (t2)))
757         unsignedp = 1;
758
759       /* The result type is signed.  */
760       if (unsignedp == 0)
761         {
762           /* If the input type is unsigned, we need to convert to the
763              signed type.  */
764           if (code1 == FIXED_POINT_TYPE && TYPE_UNSIGNED (t1))
765             {
766               enum mode_class mclass = (enum mode_class) 0;
767               if (GET_MODE_CLASS (m1) == MODE_UFRACT)
768                 mclass = MODE_FRACT;
769               else if (GET_MODE_CLASS (m1) == MODE_UACCUM)
770                 mclass = MODE_ACCUM;
771               else
772                 gcc_unreachable ();
773               m1 = mode_for_size (GET_MODE_PRECISION (m1), mclass, 0);
774             }
775           if (code2 == FIXED_POINT_TYPE && TYPE_UNSIGNED (t2))
776             {
777               enum mode_class mclass = (enum mode_class) 0;
778               if (GET_MODE_CLASS (m2) == MODE_UFRACT)
779                 mclass = MODE_FRACT;
780               else if (GET_MODE_CLASS (m2) == MODE_UACCUM)
781                 mclass = MODE_ACCUM;
782               else
783                 gcc_unreachable ();
784               m2 = mode_for_size (GET_MODE_PRECISION (m2), mclass, 0);
785             }
786         }
787
788       if (code1 == FIXED_POINT_TYPE)
789         {
790           fbit1 = GET_MODE_FBIT (m1);
791           ibit1 = GET_MODE_IBIT (m1);
792         }
793       else
794         {
795           fbit1 = 0;
796           /* Signed integers need to subtract one sign bit.  */
797           ibit1 = TYPE_PRECISION (t1) - (!TYPE_UNSIGNED (t1));
798         }
799
800       if (code2 == FIXED_POINT_TYPE)
801         {
802           fbit2 = GET_MODE_FBIT (m2);
803           ibit2 = GET_MODE_IBIT (m2);
804         }
805       else
806         {
807           fbit2 = 0;
808           /* Signed integers need to subtract one sign bit.  */
809           ibit2 = TYPE_PRECISION (t2) - (!TYPE_UNSIGNED (t2));
810         }
811
812       max_ibit = ibit1 >= ibit2 ?  ibit1 : ibit2;
813       max_fbit = fbit1 >= fbit2 ?  fbit1 : fbit2;
814       return c_common_fixed_point_type_for_size (max_ibit, max_fbit, unsignedp,
815                                                  satp);
816     }
817
818   /* Both real or both integers; use the one with greater precision.  */
819
820   if (TYPE_PRECISION (t1) > TYPE_PRECISION (t2))
821     return t1;
822   else if (TYPE_PRECISION (t2) > TYPE_PRECISION (t1))
823     return t2;
824
825   /* Same precision.  Prefer long longs to longs to ints when the
826      same precision, following the C99 rules on integer type rank
827      (which are equivalent to the C90 rules for C90 types).  */
828
829   if (TYPE_MAIN_VARIANT (t1) == long_long_unsigned_type_node
830       || TYPE_MAIN_VARIANT (t2) == long_long_unsigned_type_node)
831     return long_long_unsigned_type_node;
832
833   if (TYPE_MAIN_VARIANT (t1) == long_long_integer_type_node
834       || TYPE_MAIN_VARIANT (t2) == long_long_integer_type_node)
835     {
836       if (TYPE_UNSIGNED (t1) || TYPE_UNSIGNED (t2))
837         return long_long_unsigned_type_node;
838       else
839         return long_long_integer_type_node;
840     }
841
842   if (TYPE_MAIN_VARIANT (t1) == long_unsigned_type_node
843       || TYPE_MAIN_VARIANT (t2) == long_unsigned_type_node)
844     return long_unsigned_type_node;
845
846   if (TYPE_MAIN_VARIANT (t1) == long_integer_type_node
847       || TYPE_MAIN_VARIANT (t2) == long_integer_type_node)
848     {
849       /* But preserve unsignedness from the other type,
850          since long cannot hold all the values of an unsigned int.  */
851       if (TYPE_UNSIGNED (t1) || TYPE_UNSIGNED (t2))
852         return long_unsigned_type_node;
853       else
854         return long_integer_type_node;
855     }
856
857   /* Likewise, prefer long double to double even if same size.  */
858   if (TYPE_MAIN_VARIANT (t1) == long_double_type_node
859       || TYPE_MAIN_VARIANT (t2) == long_double_type_node)
860     return long_double_type_node;
861
862   /* Otherwise prefer the unsigned one.  */
863
864   if (TYPE_UNSIGNED (t1))
865     return t1;
866   else
867     return t2;
868 }
869 \f
870 /* Wrapper around c_common_type that is used by c-common.c and other
871    front end optimizations that remove promotions.  ENUMERAL_TYPEs
872    are allowed here and are converted to their compatible integer types.
873    BOOLEAN_TYPEs are allowed here and return either boolean_type_node or
874    preferably a non-Boolean type as the common type.  */
875 tree
876 common_type (tree t1, tree t2)
877 {
878   if (TREE_CODE (t1) == ENUMERAL_TYPE)
879     t1 = c_common_type_for_size (TYPE_PRECISION (t1), 1);
880   if (TREE_CODE (t2) == ENUMERAL_TYPE)
881     t2 = c_common_type_for_size (TYPE_PRECISION (t2), 1);
882
883   /* If both types are BOOLEAN_TYPE, then return boolean_type_node.  */
884   if (TREE_CODE (t1) == BOOLEAN_TYPE
885       && TREE_CODE (t2) == BOOLEAN_TYPE)
886     return boolean_type_node;
887
888   /* If either type is BOOLEAN_TYPE, then return the other.  */
889   if (TREE_CODE (t1) == BOOLEAN_TYPE)
890     return t2;
891   if (TREE_CODE (t2) == BOOLEAN_TYPE)
892     return t1;
893
894   return c_common_type (t1, t2);
895 }
896
897 /* Return 1 if TYPE1 and TYPE2 are compatible types for assignment
898    or various other operations.  Return 2 if they are compatible
899    but a warning may be needed if you use them together.  */
900
901 int
902 comptypes (tree type1, tree type2)
903 {
904   const struct tagged_tu_seen_cache * tagged_tu_seen_base1 = tagged_tu_seen_base;
905   int val;
906
907   val = comptypes_internal (type1, type2);
908   free_all_tagged_tu_seen_up_to (tagged_tu_seen_base1);
909
910   return val;
911 }
912 \f
913 /* Return 1 if TYPE1 and TYPE2 are compatible types for assignment
914    or various other operations.  Return 2 if they are compatible
915    but a warning may be needed if you use them together.  This
916    differs from comptypes, in that we don't free the seen types.  */
917
918 static int
919 comptypes_internal (const_tree type1, const_tree type2)
920 {
921   const_tree t1 = type1;
922   const_tree t2 = type2;
923   int attrval, val;
924
925   /* Suppress errors caused by previously reported errors.  */
926
927   if (t1 == t2 || !t1 || !t2
928       || TREE_CODE (t1) == ERROR_MARK || TREE_CODE (t2) == ERROR_MARK)
929     return 1;
930
931   /* If either type is the internal version of sizetype, return the
932      language version.  */
933   if (TREE_CODE (t1) == INTEGER_TYPE && TYPE_IS_SIZETYPE (t1)
934       && TYPE_ORIG_SIZE_TYPE (t1))
935     t1 = TYPE_ORIG_SIZE_TYPE (t1);
936
937   if (TREE_CODE (t2) == INTEGER_TYPE && TYPE_IS_SIZETYPE (t2)
938       && TYPE_ORIG_SIZE_TYPE (t2))
939     t2 = TYPE_ORIG_SIZE_TYPE (t2);
940
941
942   /* Enumerated types are compatible with integer types, but this is
943      not transitive: two enumerated types in the same translation unit
944      are compatible with each other only if they are the same type.  */
945
946   if (TREE_CODE (t1) == ENUMERAL_TYPE && TREE_CODE (t2) != ENUMERAL_TYPE)
947     t1 = c_common_type_for_size (TYPE_PRECISION (t1), TYPE_UNSIGNED (t1));
948   else if (TREE_CODE (t2) == ENUMERAL_TYPE && TREE_CODE (t1) != ENUMERAL_TYPE)
949     t2 = c_common_type_for_size (TYPE_PRECISION (t2), TYPE_UNSIGNED (t2));
950
951   if (t1 == t2)
952     return 1;
953
954   /* Different classes of types can't be compatible.  */
955
956   if (TREE_CODE (t1) != TREE_CODE (t2))
957     return 0;
958
959   /* Qualifiers must match. C99 6.7.3p9 */
960
961   if (TYPE_QUALS (t1) != TYPE_QUALS (t2))
962     return 0;
963
964   /* Allow for two different type nodes which have essentially the same
965      definition.  Note that we already checked for equality of the type
966      qualifiers (just above).  */
967
968   if (TREE_CODE (t1) != ARRAY_TYPE
969       && TYPE_MAIN_VARIANT (t1) == TYPE_MAIN_VARIANT (t2))
970     return 1;
971
972   /* 1 if no need for warning yet, 2 if warning cause has been seen.  */
973   if (!(attrval = targetm.comp_type_attributes (t1, t2)))
974      return 0;
975
976   /* 1 if no need for warning yet, 2 if warning cause has been seen.  */
977   val = 0;
978
979   switch (TREE_CODE (t1))
980     {
981     case POINTER_TYPE:
982       /* Do not remove mode or aliasing information.  */
983       if (TYPE_MODE (t1) != TYPE_MODE (t2)
984           || TYPE_REF_CAN_ALIAS_ALL (t1) != TYPE_REF_CAN_ALIAS_ALL (t2))
985         break;
986       val = (TREE_TYPE (t1) == TREE_TYPE (t2)
987              ? 1 : comptypes_internal (TREE_TYPE (t1), TREE_TYPE (t2)));
988       break;
989
990     case FUNCTION_TYPE:
991       val = function_types_compatible_p (t1, t2);
992       break;
993
994     case ARRAY_TYPE:
995       {
996         tree d1 = TYPE_DOMAIN (t1);
997         tree d2 = TYPE_DOMAIN (t2);
998         bool d1_variable, d2_variable;
999         bool d1_zero, d2_zero;
1000         val = 1;
1001
1002         /* Target types must match incl. qualifiers.  */
1003         if (TREE_TYPE (t1) != TREE_TYPE (t2)
1004             && 0 == (val = comptypes_internal (TREE_TYPE (t1), TREE_TYPE (t2))))
1005           return 0;
1006
1007         /* Sizes must match unless one is missing or variable.  */
1008         if (d1 == 0 || d2 == 0 || d1 == d2)
1009           break;
1010
1011         d1_zero = !TYPE_MAX_VALUE (d1);
1012         d2_zero = !TYPE_MAX_VALUE (d2);
1013
1014         d1_variable = (!d1_zero
1015                        && (TREE_CODE (TYPE_MIN_VALUE (d1)) != INTEGER_CST
1016                            || TREE_CODE (TYPE_MAX_VALUE (d1)) != INTEGER_CST));
1017         d2_variable = (!d2_zero
1018                        && (TREE_CODE (TYPE_MIN_VALUE (d2)) != INTEGER_CST
1019                            || TREE_CODE (TYPE_MAX_VALUE (d2)) != INTEGER_CST));
1020         d1_variable = d1_variable || (d1_zero && c_vla_type_p (t1));
1021         d2_variable = d2_variable || (d2_zero && c_vla_type_p (t2));
1022
1023         if (d1_variable || d2_variable)
1024           break;
1025         if (d1_zero && d2_zero)
1026           break;
1027         if (d1_zero || d2_zero
1028             || !tree_int_cst_equal (TYPE_MIN_VALUE (d1), TYPE_MIN_VALUE (d2))
1029             || !tree_int_cst_equal (TYPE_MAX_VALUE (d1), TYPE_MAX_VALUE (d2)))
1030           val = 0;
1031
1032         break;
1033       }
1034
1035     case ENUMERAL_TYPE:
1036     case RECORD_TYPE:
1037     case UNION_TYPE:
1038       if (val != 1 && !same_translation_unit_p (t1, t2))
1039         {
1040           tree a1 = TYPE_ATTRIBUTES (t1);
1041           tree a2 = TYPE_ATTRIBUTES (t2);
1042
1043           if (! attribute_list_contained (a1, a2)
1044               && ! attribute_list_contained (a2, a1))
1045             break;
1046
1047           if (attrval != 2)
1048             return tagged_types_tu_compatible_p (t1, t2);
1049           val = tagged_types_tu_compatible_p (t1, t2);
1050         }
1051       break;
1052
1053     case VECTOR_TYPE:
1054       val = TYPE_VECTOR_SUBPARTS (t1) == TYPE_VECTOR_SUBPARTS (t2)
1055             && comptypes_internal (TREE_TYPE (t1), TREE_TYPE (t2));
1056       break;
1057
1058     default:
1059       break;
1060     }
1061   return attrval == 2 && val == 1 ? 2 : val;
1062 }
1063
1064 /* Return 1 if TTL and TTR are pointers to types that are equivalent,
1065    ignoring their qualifiers.  */
1066
1067 static int
1068 comp_target_types (tree ttl, tree ttr)
1069 {
1070   int val;
1071   tree mvl, mvr;
1072
1073   /* Do not lose qualifiers on element types of array types that are
1074      pointer targets by taking their TYPE_MAIN_VARIANT.  */
1075   mvl = TREE_TYPE (ttl);
1076   mvr = TREE_TYPE (ttr);
1077   if (TREE_CODE (mvl) != ARRAY_TYPE)
1078     mvl = TYPE_MAIN_VARIANT (mvl);
1079   if (TREE_CODE (mvr) != ARRAY_TYPE)
1080     mvr = TYPE_MAIN_VARIANT (mvr);
1081   val = comptypes (mvl, mvr);
1082
1083   if (val == 2)
1084     pedwarn (input_location, OPT_pedantic, "types are not quite compatible");
1085   return val;
1086 }
1087 \f
1088 /* Subroutines of `comptypes'.  */
1089
1090 /* Determine whether two trees derive from the same translation unit.
1091    If the CONTEXT chain ends in a null, that tree's context is still
1092    being parsed, so if two trees have context chains ending in null,
1093    they're in the same translation unit.  */
1094 int
1095 same_translation_unit_p (const_tree t1, const_tree t2)
1096 {
1097   while (t1 && TREE_CODE (t1) != TRANSLATION_UNIT_DECL)
1098     switch (TREE_CODE_CLASS (TREE_CODE (t1)))
1099       {
1100       case tcc_declaration:
1101         t1 = DECL_CONTEXT (t1); break;
1102       case tcc_type:
1103         t1 = TYPE_CONTEXT (t1); break;
1104       case tcc_exceptional:
1105         t1 = BLOCK_SUPERCONTEXT (t1); break;  /* assume block */
1106       default: gcc_unreachable ();
1107       }
1108
1109   while (t2 && TREE_CODE (t2) != TRANSLATION_UNIT_DECL)
1110     switch (TREE_CODE_CLASS (TREE_CODE (t2)))
1111       {
1112       case tcc_declaration:
1113         t2 = DECL_CONTEXT (t2); break;
1114       case tcc_type:
1115         t2 = TYPE_CONTEXT (t2); break;
1116       case tcc_exceptional:
1117         t2 = BLOCK_SUPERCONTEXT (t2); break;  /* assume block */
1118       default: gcc_unreachable ();
1119       }
1120
1121   return t1 == t2;
1122 }
1123
1124 /* Allocate the seen two types, assuming that they are compatible. */
1125
1126 static struct tagged_tu_seen_cache *
1127 alloc_tagged_tu_seen_cache (const_tree t1, const_tree t2)
1128 {
1129   struct tagged_tu_seen_cache *tu = XNEW (struct tagged_tu_seen_cache);
1130   tu->next = tagged_tu_seen_base;
1131   tu->t1 = t1;
1132   tu->t2 = t2;
1133
1134   tagged_tu_seen_base = tu;
1135
1136   /* The C standard says that two structures in different translation
1137      units are compatible with each other only if the types of their
1138      fields are compatible (among other things).  We assume that they
1139      are compatible until proven otherwise when building the cache.
1140      An example where this can occur is:
1141      struct a
1142      {
1143        struct a *next;
1144      };
1145      If we are comparing this against a similar struct in another TU,
1146      and did not assume they were compatible, we end up with an infinite
1147      loop.  */
1148   tu->val = 1;
1149   return tu;
1150 }
1151
1152 /* Free the seen types until we get to TU_TIL. */
1153
1154 static void
1155 free_all_tagged_tu_seen_up_to (const struct tagged_tu_seen_cache *tu_til)
1156 {
1157   const struct tagged_tu_seen_cache *tu = tagged_tu_seen_base;
1158   while (tu != tu_til)
1159     {
1160       const struct tagged_tu_seen_cache *const tu1
1161         = (const struct tagged_tu_seen_cache *) tu;
1162       tu = tu1->next;
1163       free (CONST_CAST (struct tagged_tu_seen_cache *, tu1));
1164     }
1165   tagged_tu_seen_base = tu_til;
1166 }
1167
1168 /* Return 1 if two 'struct', 'union', or 'enum' types T1 and T2 are
1169    compatible.  If the two types are not the same (which has been
1170    checked earlier), this can only happen when multiple translation
1171    units are being compiled.  See C99 6.2.7 paragraph 1 for the exact
1172    rules.  */
1173
1174 static int
1175 tagged_types_tu_compatible_p (const_tree t1, const_tree t2)
1176 {
1177   tree s1, s2;
1178   bool needs_warning = false;
1179
1180   /* We have to verify that the tags of the types are the same.  This
1181      is harder than it looks because this may be a typedef, so we have
1182      to go look at the original type.  It may even be a typedef of a
1183      typedef...
1184      In the case of compiler-created builtin structs the TYPE_DECL
1185      may be a dummy, with no DECL_ORIGINAL_TYPE.  Don't fault.  */
1186   while (TYPE_NAME (t1)
1187          && TREE_CODE (TYPE_NAME (t1)) == TYPE_DECL
1188          && DECL_ORIGINAL_TYPE (TYPE_NAME (t1)))
1189     t1 = DECL_ORIGINAL_TYPE (TYPE_NAME (t1));
1190
1191   while (TYPE_NAME (t2)
1192          && TREE_CODE (TYPE_NAME (t2)) == TYPE_DECL
1193          && DECL_ORIGINAL_TYPE (TYPE_NAME (t2)))
1194     t2 = DECL_ORIGINAL_TYPE (TYPE_NAME (t2));
1195
1196   /* C90 didn't have the requirement that the two tags be the same.  */
1197   if (flag_isoc99 && TYPE_NAME (t1) != TYPE_NAME (t2))
1198     return 0;
1199
1200   /* C90 didn't say what happened if one or both of the types were
1201      incomplete; we choose to follow C99 rules here, which is that they
1202      are compatible.  */
1203   if (TYPE_SIZE (t1) == NULL
1204       || TYPE_SIZE (t2) == NULL)
1205     return 1;
1206
1207   {
1208     const struct tagged_tu_seen_cache * tts_i;
1209     for (tts_i = tagged_tu_seen_base; tts_i != NULL; tts_i = tts_i->next)
1210       if (tts_i->t1 == t1 && tts_i->t2 == t2)
1211         return tts_i->val;
1212   }
1213
1214   switch (TREE_CODE (t1))
1215     {
1216     case ENUMERAL_TYPE:
1217       {
1218         struct tagged_tu_seen_cache *tu = alloc_tagged_tu_seen_cache (t1, t2);
1219         /* Speed up the case where the type values are in the same order.  */
1220         tree tv1 = TYPE_VALUES (t1);
1221         tree tv2 = TYPE_VALUES (t2);
1222
1223         if (tv1 == tv2)
1224           {
1225             return 1;
1226           }
1227
1228         for (;tv1 && tv2; tv1 = TREE_CHAIN (tv1), tv2 = TREE_CHAIN (tv2))
1229           {
1230             if (TREE_PURPOSE (tv1) != TREE_PURPOSE (tv2))
1231               break;
1232             if (simple_cst_equal (TREE_VALUE (tv1), TREE_VALUE (tv2)) != 1)
1233               {
1234                 tu->val = 0;
1235                 return 0;
1236               }
1237           }
1238
1239         if (tv1 == NULL_TREE && tv2 == NULL_TREE)
1240           {
1241             return 1;
1242           }
1243         if (tv1 == NULL_TREE || tv2 == NULL_TREE)
1244           {
1245             tu->val = 0;
1246             return 0;
1247           }
1248
1249         if (list_length (TYPE_VALUES (t1)) != list_length (TYPE_VALUES (t2)))
1250           {
1251             tu->val = 0;
1252             return 0;
1253           }
1254
1255         for (s1 = TYPE_VALUES (t1); s1; s1 = TREE_CHAIN (s1))
1256           {
1257             s2 = purpose_member (TREE_PURPOSE (s1), TYPE_VALUES (t2));
1258             if (s2 == NULL
1259                 || simple_cst_equal (TREE_VALUE (s1), TREE_VALUE (s2)) != 1)
1260               {
1261                 tu->val = 0;
1262                 return 0;
1263               }
1264           }
1265         return 1;
1266       }
1267
1268     case UNION_TYPE:
1269       {
1270         struct tagged_tu_seen_cache *tu = alloc_tagged_tu_seen_cache (t1, t2);
1271         if (list_length (TYPE_FIELDS (t1)) != list_length (TYPE_FIELDS (t2)))
1272           {
1273             tu->val = 0;
1274             return 0;
1275           }
1276
1277         /*  Speed up the common case where the fields are in the same order. */
1278         for (s1 = TYPE_FIELDS (t1), s2 = TYPE_FIELDS (t2); s1 && s2;
1279              s1 = TREE_CHAIN (s1), s2 = TREE_CHAIN (s2))
1280           {
1281             int result;
1282
1283             if (DECL_NAME (s1) != DECL_NAME (s2))
1284               break;
1285             result = comptypes_internal (TREE_TYPE (s1), TREE_TYPE (s2));
1286
1287             if (result != 1 && !DECL_NAME (s1))
1288               break;
1289             if (result == 0)
1290               {
1291                 tu->val = 0;
1292                 return 0;
1293               }
1294             if (result == 2)
1295               needs_warning = true;
1296
1297             if (TREE_CODE (s1) == FIELD_DECL
1298                 && simple_cst_equal (DECL_FIELD_BIT_OFFSET (s1),
1299                                      DECL_FIELD_BIT_OFFSET (s2)) != 1)
1300               {
1301                 tu->val = 0;
1302                 return 0;
1303               }
1304           }
1305         if (!s1 && !s2)
1306           {
1307             tu->val = needs_warning ? 2 : 1;
1308             return tu->val;
1309           }
1310
1311         for (s1 = TYPE_FIELDS (t1); s1; s1 = TREE_CHAIN (s1))
1312           {
1313             bool ok = false;
1314
1315             for (s2 = TYPE_FIELDS (t2); s2; s2 = TREE_CHAIN (s2))
1316               if (DECL_NAME (s1) == DECL_NAME (s2))
1317                 {
1318                   int result;
1319
1320                   result = comptypes_internal (TREE_TYPE (s1), TREE_TYPE (s2));
1321
1322                   if (result != 1 && !DECL_NAME (s1))
1323                     continue;
1324                   if (result == 0)
1325                     {
1326                       tu->val = 0;
1327                       return 0;
1328                     }
1329                   if (result == 2)
1330                     needs_warning = true;
1331
1332                   if (TREE_CODE (s1) == FIELD_DECL
1333                       && simple_cst_equal (DECL_FIELD_BIT_OFFSET (s1),
1334                                            DECL_FIELD_BIT_OFFSET (s2)) != 1)
1335                     break;
1336
1337                   ok = true;
1338                   break;
1339                 }
1340             if (!ok)
1341               {
1342                 tu->val = 0;
1343                 return 0;
1344               }
1345           }
1346         tu->val = needs_warning ? 2 : 10;
1347         return tu->val;
1348       }
1349
1350     case RECORD_TYPE:
1351       {
1352         struct tagged_tu_seen_cache *tu = alloc_tagged_tu_seen_cache (t1, t2);
1353
1354         for (s1 = TYPE_FIELDS (t1), s2 = TYPE_FIELDS (t2);
1355              s1 && s2;
1356              s1 = TREE_CHAIN (s1), s2 = TREE_CHAIN (s2))
1357           {
1358             int result;
1359             if (TREE_CODE (s1) != TREE_CODE (s2)
1360                 || DECL_NAME (s1) != DECL_NAME (s2))
1361               break;
1362             result = comptypes_internal (TREE_TYPE (s1), TREE_TYPE (s2));
1363             if (result == 0)
1364               break;
1365             if (result == 2)
1366               needs_warning = true;
1367
1368             if (TREE_CODE (s1) == FIELD_DECL
1369                 && simple_cst_equal (DECL_FIELD_BIT_OFFSET (s1),
1370                                      DECL_FIELD_BIT_OFFSET (s2)) != 1)
1371               break;
1372           }
1373         if (s1 && s2)
1374           tu->val = 0;
1375         else
1376           tu->val = needs_warning ? 2 : 1;
1377         return tu->val;
1378       }
1379
1380     default:
1381       gcc_unreachable ();
1382     }
1383 }
1384
1385 /* Return 1 if two function types F1 and F2 are compatible.
1386    If either type specifies no argument types,
1387    the other must specify a fixed number of self-promoting arg types.
1388    Otherwise, if one type specifies only the number of arguments,
1389    the other must specify that number of self-promoting arg types.
1390    Otherwise, the argument types must match.  */
1391
1392 static int
1393 function_types_compatible_p (const_tree f1, const_tree f2)
1394 {
1395   tree args1, args2;
1396   /* 1 if no need for warning yet, 2 if warning cause has been seen.  */
1397   int val = 1;
1398   int val1;
1399   tree ret1, ret2;
1400
1401   ret1 = TREE_TYPE (f1);
1402   ret2 = TREE_TYPE (f2);
1403
1404   /* 'volatile' qualifiers on a function's return type used to mean
1405      the function is noreturn.  */
1406   if (TYPE_VOLATILE (ret1) != TYPE_VOLATILE (ret2))
1407     pedwarn (input_location, 0, "function return types not compatible due to %<volatile%>");
1408   if (TYPE_VOLATILE (ret1))
1409     ret1 = build_qualified_type (TYPE_MAIN_VARIANT (ret1),
1410                                  TYPE_QUALS (ret1) & ~TYPE_QUAL_VOLATILE);
1411   if (TYPE_VOLATILE (ret2))
1412     ret2 = build_qualified_type (TYPE_MAIN_VARIANT (ret2),
1413                                  TYPE_QUALS (ret2) & ~TYPE_QUAL_VOLATILE);
1414   val = comptypes_internal (ret1, ret2);
1415   if (val == 0)
1416     return 0;
1417
1418   args1 = TYPE_ARG_TYPES (f1);
1419   args2 = TYPE_ARG_TYPES (f2);
1420
1421   /* An unspecified parmlist matches any specified parmlist
1422      whose argument types don't need default promotions.  */
1423
1424   if (args1 == 0)
1425     {
1426       if (!self_promoting_args_p (args2))
1427         return 0;
1428       /* If one of these types comes from a non-prototype fn definition,
1429          compare that with the other type's arglist.
1430          If they don't match, ask for a warning (but no error).  */
1431       if (TYPE_ACTUAL_ARG_TYPES (f1)
1432           && 1 != type_lists_compatible_p (args2, TYPE_ACTUAL_ARG_TYPES (f1)))
1433         val = 2;
1434       return val;
1435     }
1436   if (args2 == 0)
1437     {
1438       if (!self_promoting_args_p (args1))
1439         return 0;
1440       if (TYPE_ACTUAL_ARG_TYPES (f2)
1441           && 1 != type_lists_compatible_p (args1, TYPE_ACTUAL_ARG_TYPES (f2)))
1442         val = 2;
1443       return val;
1444     }
1445
1446   /* Both types have argument lists: compare them and propagate results.  */
1447   val1 = type_lists_compatible_p (args1, args2);
1448   return val1 != 1 ? val1 : val;
1449 }
1450
1451 /* Check two lists of types for compatibility,
1452    returning 0 for incompatible, 1 for compatible,
1453    or 2 for compatible with warning.  */
1454
1455 static int
1456 type_lists_compatible_p (const_tree args1, const_tree args2)
1457 {
1458   /* 1 if no need for warning yet, 2 if warning cause has been seen.  */
1459   int val = 1;
1460   int newval = 0;
1461
1462   while (1)
1463     {
1464       tree a1, mv1, a2, mv2;
1465       if (args1 == 0 && args2 == 0)
1466         return val;
1467       /* If one list is shorter than the other,
1468          they fail to match.  */
1469       if (args1 == 0 || args2 == 0)
1470         return 0;
1471       mv1 = a1 = TREE_VALUE (args1);
1472       mv2 = a2 = TREE_VALUE (args2);
1473       if (mv1 && mv1 != error_mark_node && TREE_CODE (mv1) != ARRAY_TYPE)
1474         mv1 = TYPE_MAIN_VARIANT (mv1);
1475       if (mv2 && mv2 != error_mark_node && TREE_CODE (mv2) != ARRAY_TYPE)
1476         mv2 = TYPE_MAIN_VARIANT (mv2);
1477       /* A null pointer instead of a type
1478          means there is supposed to be an argument
1479          but nothing is specified about what type it has.
1480          So match anything that self-promotes.  */
1481       if (a1 == 0)
1482         {
1483           if (c_type_promotes_to (a2) != a2)
1484             return 0;
1485         }
1486       else if (a2 == 0)
1487         {
1488           if (c_type_promotes_to (a1) != a1)
1489             return 0;
1490         }
1491       /* If one of the lists has an error marker, ignore this arg.  */
1492       else if (TREE_CODE (a1) == ERROR_MARK
1493                || TREE_CODE (a2) == ERROR_MARK)
1494         ;
1495       else if (!(newval = comptypes_internal (mv1, mv2)))
1496         {
1497           /* Allow  wait (union {union wait *u; int *i} *)
1498              and  wait (union wait *)  to be compatible.  */
1499           if (TREE_CODE (a1) == UNION_TYPE
1500               && (TYPE_NAME (a1) == 0
1501                   || TYPE_TRANSPARENT_UNION (a1))
1502               && TREE_CODE (TYPE_SIZE (a1)) == INTEGER_CST
1503               && tree_int_cst_equal (TYPE_SIZE (a1),
1504                                      TYPE_SIZE (a2)))
1505             {
1506               tree memb;
1507               for (memb = TYPE_FIELDS (a1);
1508                    memb; memb = TREE_CHAIN (memb))
1509                 {
1510                   tree mv3 = TREE_TYPE (memb);
1511                   if (mv3 && mv3 != error_mark_node
1512                       && TREE_CODE (mv3) != ARRAY_TYPE)
1513                     mv3 = TYPE_MAIN_VARIANT (mv3);
1514                   if (comptypes_internal (mv3, mv2))
1515                     break;
1516                 }
1517               if (memb == 0)
1518                 return 0;
1519             }
1520           else if (TREE_CODE (a2) == UNION_TYPE
1521                    && (TYPE_NAME (a2) == 0
1522                        || TYPE_TRANSPARENT_UNION (a2))
1523                    && TREE_CODE (TYPE_SIZE (a2)) == INTEGER_CST
1524                    && tree_int_cst_equal (TYPE_SIZE (a2),
1525                                           TYPE_SIZE (a1)))
1526             {
1527               tree memb;
1528               for (memb = TYPE_FIELDS (a2);
1529                    memb; memb = TREE_CHAIN (memb))
1530                 {
1531                   tree mv3 = TREE_TYPE (memb);
1532                   if (mv3 && mv3 != error_mark_node
1533                       && TREE_CODE (mv3) != ARRAY_TYPE)
1534                     mv3 = TYPE_MAIN_VARIANT (mv3);
1535                   if (comptypes_internal (mv3, mv1))
1536                     break;
1537                 }
1538               if (memb == 0)
1539                 return 0;
1540             }
1541           else
1542             return 0;
1543         }
1544
1545       /* comptypes said ok, but record if it said to warn.  */
1546       if (newval > val)
1547         val = newval;
1548
1549       args1 = TREE_CHAIN (args1);
1550       args2 = TREE_CHAIN (args2);
1551     }
1552 }
1553 \f
1554 /* Compute the size to increment a pointer by.  */
1555
1556 static tree
1557 c_size_in_bytes (const_tree type)
1558 {
1559   enum tree_code code = TREE_CODE (type);
1560
1561   if (code == FUNCTION_TYPE || code == VOID_TYPE || code == ERROR_MARK)
1562     return size_one_node;
1563
1564   if (!COMPLETE_OR_VOID_TYPE_P (type))
1565     {
1566       error ("arithmetic on pointer to an incomplete type");
1567       return size_one_node;
1568     }
1569
1570   /* Convert in case a char is more than one unit.  */
1571   return size_binop (CEIL_DIV_EXPR, TYPE_SIZE_UNIT (type),
1572                      size_int (TYPE_PRECISION (char_type_node)
1573                                / BITS_PER_UNIT));
1574 }
1575 \f
1576 /* Return either DECL or its known constant value (if it has one).  */
1577
1578 tree
1579 decl_constant_value (tree decl)
1580 {
1581   if (/* Don't change a variable array bound or initial value to a constant
1582          in a place where a variable is invalid.  Note that DECL_INITIAL
1583          isn't valid for a PARM_DECL.  */
1584       current_function_decl != 0
1585       && TREE_CODE (decl) != PARM_DECL
1586       && !TREE_THIS_VOLATILE (decl)
1587       && TREE_READONLY (decl)
1588       && DECL_INITIAL (decl) != 0
1589       && TREE_CODE (DECL_INITIAL (decl)) != ERROR_MARK
1590       /* This is invalid if initial value is not constant.
1591          If it has either a function call, a memory reference,
1592          or a variable, then re-evaluating it could give different results.  */
1593       && TREE_CONSTANT (DECL_INITIAL (decl))
1594       /* Check for cases where this is sub-optimal, even though valid.  */
1595       && TREE_CODE (DECL_INITIAL (decl)) != CONSTRUCTOR)
1596     return DECL_INITIAL (decl);
1597   return decl;
1598 }
1599
1600 /* Convert the array expression EXP to a pointer.  */
1601 static tree
1602 array_to_pointer_conversion (tree exp)
1603 {
1604   tree orig_exp = exp;
1605   tree type = TREE_TYPE (exp);
1606   tree adr;
1607   tree restype = TREE_TYPE (type);
1608   tree ptrtype;
1609
1610   gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
1611
1612   STRIP_TYPE_NOPS (exp);
1613
1614   if (TREE_NO_WARNING (orig_exp))
1615     TREE_NO_WARNING (exp) = 1;
1616
1617   ptrtype = build_pointer_type (restype);
1618
1619   if (TREE_CODE (exp) == INDIRECT_REF)
1620     return convert (ptrtype, TREE_OPERAND (exp, 0));
1621
1622   if (TREE_CODE (exp) == VAR_DECL)
1623     {
1624       /* We are making an ADDR_EXPR of ptrtype.  This is a valid
1625          ADDR_EXPR because it's the best way of representing what
1626          happens in C when we take the address of an array and place
1627          it in a pointer to the element type.  */
1628       adr = build1 (ADDR_EXPR, ptrtype, exp);
1629       if (!c_mark_addressable (exp))
1630         return error_mark_node;
1631       TREE_SIDE_EFFECTS (adr) = 0;   /* Default would be, same as EXP.  */
1632       return adr;
1633     }
1634
1635   /* This way is better for a COMPONENT_REF since it can
1636      simplify the offset for a component.  */
1637   adr = build_unary_op (EXPR_LOCATION (exp), ADDR_EXPR, exp, 1);
1638   return convert (ptrtype, adr);
1639 }
1640
1641 /* Convert the function expression EXP to a pointer.  */
1642 static tree
1643 function_to_pointer_conversion (tree exp)
1644 {
1645   tree orig_exp = exp;
1646
1647   gcc_assert (TREE_CODE (TREE_TYPE (exp)) == FUNCTION_TYPE);
1648
1649   STRIP_TYPE_NOPS (exp);
1650
1651   if (TREE_NO_WARNING (orig_exp))
1652     TREE_NO_WARNING (exp) = 1;
1653
1654   return build_unary_op (EXPR_LOCATION (exp), ADDR_EXPR, exp, 0);
1655 }
1656
1657 /* Perform the default conversion of arrays and functions to pointers.
1658    Return the result of converting EXP.  For any other expression, just
1659    return EXP.  */
1660
1661 struct c_expr
1662 default_function_array_conversion (struct c_expr exp)
1663 {
1664   tree orig_exp = exp.value;
1665   tree type = TREE_TYPE (exp.value);
1666   enum tree_code code = TREE_CODE (type);
1667
1668   switch (code)
1669     {
1670     case ARRAY_TYPE:
1671       {
1672         bool not_lvalue = false;
1673         bool lvalue_array_p;
1674
1675         while ((TREE_CODE (exp.value) == NON_LVALUE_EXPR
1676                 || CONVERT_EXPR_P (exp.value))
1677                && TREE_TYPE (TREE_OPERAND (exp.value, 0)) == type)
1678           {
1679             if (TREE_CODE (exp.value) == NON_LVALUE_EXPR)
1680               not_lvalue = true;
1681             exp.value = TREE_OPERAND (exp.value, 0);
1682           }
1683
1684         if (TREE_NO_WARNING (orig_exp))
1685           TREE_NO_WARNING (exp.value) = 1;
1686
1687         lvalue_array_p = !not_lvalue && lvalue_p (exp.value);
1688         if (!flag_isoc99 && !lvalue_array_p)
1689           {
1690             /* Before C99, non-lvalue arrays do not decay to pointers.
1691                Normally, using such an array would be invalid; but it can
1692                be used correctly inside sizeof or as a statement expression.
1693                Thus, do not give an error here; an error will result later.  */
1694             return exp;
1695           }
1696
1697         exp.value = array_to_pointer_conversion (exp.value);
1698       }
1699       break;
1700     case FUNCTION_TYPE:
1701       exp.value = function_to_pointer_conversion (exp.value);
1702       break;
1703     default:
1704       break;
1705     }
1706
1707   return exp;
1708 }
1709
1710
1711 /* EXP is an expression of integer type.  Apply the integer promotions
1712    to it and return the promoted value.  */
1713
1714 tree
1715 perform_integral_promotions (tree exp)
1716 {
1717   tree type = TREE_TYPE (exp);
1718   enum tree_code code = TREE_CODE (type);
1719
1720   gcc_assert (INTEGRAL_TYPE_P (type));
1721
1722   /* Normally convert enums to int,
1723      but convert wide enums to something wider.  */
1724   if (code == ENUMERAL_TYPE)
1725     {
1726       type = c_common_type_for_size (MAX (TYPE_PRECISION (type),
1727                                           TYPE_PRECISION (integer_type_node)),
1728                                      ((TYPE_PRECISION (type)
1729                                        >= TYPE_PRECISION (integer_type_node))
1730                                       && TYPE_UNSIGNED (type)));
1731
1732       return convert (type, exp);
1733     }
1734
1735   /* ??? This should no longer be needed now bit-fields have their
1736      proper types.  */
1737   if (TREE_CODE (exp) == COMPONENT_REF
1738       && DECL_C_BIT_FIELD (TREE_OPERAND (exp, 1))
1739       /* If it's thinner than an int, promote it like a
1740          c_promoting_integer_type_p, otherwise leave it alone.  */
1741       && 0 > compare_tree_int (DECL_SIZE (TREE_OPERAND (exp, 1)),
1742                                TYPE_PRECISION (integer_type_node)))
1743     return convert (integer_type_node, exp);
1744
1745   if (c_promoting_integer_type_p (type))
1746     {
1747       /* Preserve unsignedness if not really getting any wider.  */
1748       if (TYPE_UNSIGNED (type)
1749           && TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node))
1750         return convert (unsigned_type_node, exp);
1751
1752       return convert (integer_type_node, exp);
1753     }
1754
1755   return exp;
1756 }
1757
1758
1759 /* Perform default promotions for C data used in expressions.
1760    Enumeral types or short or char are converted to int.
1761    In addition, manifest constants symbols are replaced by their values.  */
1762
1763 tree
1764 default_conversion (tree exp)
1765 {
1766   tree orig_exp;
1767   tree type = TREE_TYPE (exp);
1768   enum tree_code code = TREE_CODE (type);
1769
1770   /* Functions and arrays have been converted during parsing.  */
1771   gcc_assert (code != FUNCTION_TYPE);
1772   if (code == ARRAY_TYPE)
1773     return exp;
1774
1775   /* Constants can be used directly unless they're not loadable.  */
1776   if (TREE_CODE (exp) == CONST_DECL)
1777     exp = DECL_INITIAL (exp);
1778
1779   /* Strip no-op conversions.  */
1780   orig_exp = exp;
1781   STRIP_TYPE_NOPS (exp);
1782
1783   if (TREE_NO_WARNING (orig_exp))
1784     TREE_NO_WARNING (exp) = 1;
1785
1786   if (code == VOID_TYPE)
1787     {
1788       error ("void value not ignored as it ought to be");
1789       return error_mark_node;
1790     }
1791
1792   exp = require_complete_type (exp);
1793   if (exp == error_mark_node)
1794     return error_mark_node;
1795
1796   if (INTEGRAL_TYPE_P (type))
1797     return perform_integral_promotions (exp);
1798
1799   return exp;
1800 }
1801 \f
1802 /* Look up COMPONENT in a structure or union DECL.
1803
1804    If the component name is not found, returns NULL_TREE.  Otherwise,
1805    the return value is a TREE_LIST, with each TREE_VALUE a FIELD_DECL
1806    stepping down the chain to the component, which is in the last
1807    TREE_VALUE of the list.  Normally the list is of length one, but if
1808    the component is embedded within (nested) anonymous structures or
1809    unions, the list steps down the chain to the component.  */
1810
1811 static tree
1812 lookup_field (tree decl, tree component)
1813 {
1814   tree type = TREE_TYPE (decl);
1815   tree field;
1816
1817   /* If TYPE_LANG_SPECIFIC is set, then it is a sorted array of pointers
1818      to the field elements.  Use a binary search on this array to quickly
1819      find the element.  Otherwise, do a linear search.  TYPE_LANG_SPECIFIC
1820      will always be set for structures which have many elements.  */
1821
1822   if (TYPE_LANG_SPECIFIC (type) && TYPE_LANG_SPECIFIC (type)->s)
1823     {
1824       int bot, top, half;
1825       tree *field_array = &TYPE_LANG_SPECIFIC (type)->s->elts[0];
1826
1827       field = TYPE_FIELDS (type);
1828       bot = 0;
1829       top = TYPE_LANG_SPECIFIC (type)->s->len;
1830       while (top - bot > 1)
1831         {
1832           half = (top - bot + 1) >> 1;
1833           field = field_array[bot+half];
1834
1835           if (DECL_NAME (field) == NULL_TREE)
1836             {
1837               /* Step through all anon unions in linear fashion.  */
1838               while (DECL_NAME (field_array[bot]) == NULL_TREE)
1839                 {
1840                   field = field_array[bot++];
1841                   if (TREE_CODE (TREE_TYPE (field)) == RECORD_TYPE
1842                       || TREE_CODE (TREE_TYPE (field)) == UNION_TYPE)
1843                     {
1844                       tree anon = lookup_field (field, component);
1845
1846                       if (anon)
1847                         return tree_cons (NULL_TREE, field, anon);
1848                     }
1849                 }
1850
1851               /* Entire record is only anon unions.  */
1852               if (bot > top)
1853                 return NULL_TREE;
1854
1855               /* Restart the binary search, with new lower bound.  */
1856               continue;
1857             }
1858
1859           if (DECL_NAME (field) == component)
1860             break;
1861           if (DECL_NAME (field) < component)
1862             bot += half;
1863           else
1864             top = bot + half;
1865         }
1866
1867       if (DECL_NAME (field_array[bot]) == component)
1868         field = field_array[bot];
1869       else if (DECL_NAME (field) != component)
1870         return NULL_TREE;
1871     }
1872   else
1873     {
1874       for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
1875         {
1876           if (DECL_NAME (field) == NULL_TREE
1877               && (TREE_CODE (TREE_TYPE (field)) == RECORD_TYPE
1878                   || TREE_CODE (TREE_TYPE (field)) == UNION_TYPE))
1879             {
1880               tree anon = lookup_field (field, component);
1881
1882               if (anon)
1883                 return tree_cons (NULL_TREE, field, anon);
1884             }
1885
1886           if (DECL_NAME (field) == component)
1887             break;
1888         }
1889
1890       if (field == NULL_TREE)
1891         return NULL_TREE;
1892     }
1893
1894   return tree_cons (NULL_TREE, field, NULL_TREE);
1895 }
1896
1897 /* Make an expression to refer to the COMPONENT field of
1898    structure or union value DATUM.  COMPONENT is an IDENTIFIER_NODE.  */
1899
1900 tree
1901 build_component_ref (tree datum, tree component)
1902 {
1903   tree type = TREE_TYPE (datum);
1904   enum tree_code code = TREE_CODE (type);
1905   tree field = NULL;
1906   tree ref;
1907
1908   if (!objc_is_public (datum, component))
1909     return error_mark_node;
1910
1911   /* See if there is a field or component with name COMPONENT.  */
1912
1913   if (code == RECORD_TYPE || code == UNION_TYPE)
1914     {
1915       if (!COMPLETE_TYPE_P (type))
1916         {
1917           c_incomplete_type_error (NULL_TREE, type);
1918           return error_mark_node;
1919         }
1920
1921       field = lookup_field (datum, component);
1922
1923       if (!field)
1924         {
1925           error ("%qT has no member named %qE", type, component);
1926           return error_mark_node;
1927         }
1928
1929       /* Chain the COMPONENT_REFs if necessary down to the FIELD.
1930          This might be better solved in future the way the C++ front
1931          end does it - by giving the anonymous entities each a
1932          separate name and type, and then have build_component_ref
1933          recursively call itself.  We can't do that here.  */
1934       do
1935         {
1936           tree subdatum = TREE_VALUE (field);
1937           int quals;
1938           tree subtype;
1939
1940           if (TREE_TYPE (subdatum) == error_mark_node)
1941             return error_mark_node;
1942
1943           quals = TYPE_QUALS (strip_array_types (TREE_TYPE (subdatum)));
1944           quals |= TYPE_QUALS (TREE_TYPE (datum));
1945           subtype = c_build_qualified_type (TREE_TYPE (subdatum), quals);
1946
1947           ref = build3 (COMPONENT_REF, subtype, datum, subdatum,
1948                         NULL_TREE);
1949           if (TREE_READONLY (datum) || TREE_READONLY (subdatum))
1950             TREE_READONLY (ref) = 1;
1951           if (TREE_THIS_VOLATILE (datum) || TREE_THIS_VOLATILE (subdatum))
1952             TREE_THIS_VOLATILE (ref) = 1;
1953
1954           if (TREE_DEPRECATED (subdatum))
1955             warn_deprecated_use (subdatum);
1956
1957           datum = ref;
1958
1959           field = TREE_CHAIN (field);
1960         }
1961       while (field);
1962
1963       return ref;
1964     }
1965   else if (code != ERROR_MARK)
1966     error ("request for member %qE in something not a structure or union",
1967            component);
1968
1969   return error_mark_node;
1970 }
1971 \f
1972 /* Given an expression PTR for a pointer, return an expression
1973    for the value pointed to.
1974    ERRORSTRING is the name of the operator to appear in error messages.
1975
1976    LOC is the location to use for the generated tree.  */
1977
1978 tree
1979 build_indirect_ref (location_t loc, tree ptr, const char *errorstring)
1980 {
1981   tree pointer = default_conversion (ptr);
1982   tree type = TREE_TYPE (pointer);
1983   tree ref;
1984
1985   if (TREE_CODE (type) == POINTER_TYPE)
1986     {
1987       if (CONVERT_EXPR_P (pointer)
1988           || TREE_CODE (pointer) == VIEW_CONVERT_EXPR)
1989         {
1990           /* If a warning is issued, mark it to avoid duplicates from
1991              the backend.  This only needs to be done at
1992              warn_strict_aliasing > 2.  */
1993           if (warn_strict_aliasing > 2)
1994             if (strict_aliasing_warning (TREE_TYPE (TREE_OPERAND (pointer, 0)),
1995                                          type, TREE_OPERAND (pointer, 0)))
1996               TREE_NO_WARNING (pointer) = 1;
1997         }
1998
1999       if (TREE_CODE (pointer) == ADDR_EXPR
2000           && (TREE_TYPE (TREE_OPERAND (pointer, 0))
2001               == TREE_TYPE (type)))
2002         {
2003           ref = TREE_OPERAND (pointer, 0);
2004           protected_set_expr_location (ref, loc);
2005           return ref;
2006         }
2007       else
2008         {
2009           tree t = TREE_TYPE (type);
2010
2011           ref = build1 (INDIRECT_REF, t, pointer);
2012
2013           if (!COMPLETE_OR_VOID_TYPE_P (t) && TREE_CODE (t) != ARRAY_TYPE)
2014             {
2015               error_at (loc, "dereferencing pointer to incomplete type");
2016               return error_mark_node;
2017             }
2018           if (VOID_TYPE_P (t) && skip_evaluation == 0)
2019             warning_at (loc, 0, "dereferencing %<void *%> pointer");
2020
2021           /* We *must* set TREE_READONLY when dereferencing a pointer to const,
2022              so that we get the proper error message if the result is used
2023              to assign to.  Also, &* is supposed to be a no-op.
2024              And ANSI C seems to specify that the type of the result
2025              should be the const type.  */
2026           /* A de-reference of a pointer to const is not a const.  It is valid
2027              to change it via some other pointer.  */
2028           TREE_READONLY (ref) = TYPE_READONLY (t);
2029           TREE_SIDE_EFFECTS (ref)
2030             = TYPE_VOLATILE (t) || TREE_SIDE_EFFECTS (pointer);
2031           TREE_THIS_VOLATILE (ref) = TYPE_VOLATILE (t);
2032           protected_set_expr_location (ref, loc);
2033           return ref;
2034         }
2035     }
2036   else if (TREE_CODE (pointer) != ERROR_MARK)
2037     error_at (loc,
2038               "invalid type argument of %qs (have %qT)", errorstring, type);
2039   return error_mark_node;
2040 }
2041
2042 /* This handles expressions of the form "a[i]", which denotes
2043    an array reference.
2044
2045    This is logically equivalent in C to *(a+i), but we may do it differently.
2046    If A is a variable or a member, we generate a primitive ARRAY_REF.
2047    This avoids forcing the array out of registers, and can work on
2048    arrays that are not lvalues (for example, members of structures returned
2049    by functions).
2050
2051    LOC is the location to use for the returned expression.  */
2052
2053 tree
2054 build_array_ref (tree array, tree index, location_t loc)
2055 {
2056   tree ret;
2057   bool swapped = false;
2058   if (TREE_TYPE (array) == error_mark_node
2059       || TREE_TYPE (index) == error_mark_node)
2060     return error_mark_node;
2061
2062   if (TREE_CODE (TREE_TYPE (array)) != ARRAY_TYPE
2063       && TREE_CODE (TREE_TYPE (array)) != POINTER_TYPE)
2064     {
2065       tree temp;
2066       if (TREE_CODE (TREE_TYPE (index)) != ARRAY_TYPE
2067           && TREE_CODE (TREE_TYPE (index)) != POINTER_TYPE)
2068         {
2069           error_at (loc, "subscripted value is neither array nor pointer");
2070           return error_mark_node;
2071         }
2072       temp = array;
2073       array = index;
2074       index = temp;
2075       swapped = true;
2076     }
2077
2078   if (!INTEGRAL_TYPE_P (TREE_TYPE (index)))
2079     {
2080       error_at (loc, "array subscript is not an integer");
2081       return error_mark_node;
2082     }
2083
2084   if (TREE_CODE (TREE_TYPE (TREE_TYPE (array))) == FUNCTION_TYPE)
2085     {
2086       error_at (loc, "subscripted value is pointer to function");
2087       return error_mark_node;
2088     }
2089
2090   /* ??? Existing practice has been to warn only when the char
2091      index is syntactically the index, not for char[array].  */
2092   if (!swapped)
2093      warn_array_subscript_with_type_char (index);
2094
2095   /* Apply default promotions *after* noticing character types.  */
2096   index = default_conversion (index);
2097
2098   gcc_assert (TREE_CODE (TREE_TYPE (index)) == INTEGER_TYPE);
2099
2100   if (TREE_CODE (TREE_TYPE (array)) == ARRAY_TYPE)
2101     {
2102       tree rval, type;
2103
2104       /* An array that is indexed by a non-constant
2105          cannot be stored in a register; we must be able to do
2106          address arithmetic on its address.
2107          Likewise an array of elements of variable size.  */
2108       if (TREE_CODE (index) != INTEGER_CST
2109           || (COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (array)))
2110               && TREE_CODE (TYPE_SIZE (TREE_TYPE (TREE_TYPE (array)))) != INTEGER_CST))
2111         {
2112           if (!c_mark_addressable (array))
2113             return error_mark_node;
2114         }
2115       /* An array that is indexed by a constant value which is not within
2116          the array bounds cannot be stored in a register either; because we
2117          would get a crash in store_bit_field/extract_bit_field when trying
2118          to access a non-existent part of the register.  */
2119       if (TREE_CODE (index) == INTEGER_CST
2120           && TYPE_DOMAIN (TREE_TYPE (array))
2121           && !int_fits_type_p (index, TYPE_DOMAIN (TREE_TYPE (array))))
2122         {
2123           if (!c_mark_addressable (array))
2124             return error_mark_node;
2125         }
2126
2127       if (pedantic)
2128         {
2129           tree foo = array;
2130           while (TREE_CODE (foo) == COMPONENT_REF)
2131             foo = TREE_OPERAND (foo, 0);
2132           if (TREE_CODE (foo) == VAR_DECL && C_DECL_REGISTER (foo))
2133             pedwarn (loc, OPT_pedantic, 
2134                      "ISO C forbids subscripting %<register%> array");
2135           else if (!flag_isoc99 && !lvalue_p (foo))
2136             pedwarn (loc, OPT_pedantic, 
2137                      "ISO C90 forbids subscripting non-lvalue array");
2138         }
2139
2140       type = TREE_TYPE (TREE_TYPE (array));
2141       rval = build4 (ARRAY_REF, type, array, index, NULL_TREE, NULL_TREE);
2142       /* Array ref is const/volatile if the array elements are
2143          or if the array is.  */
2144       TREE_READONLY (rval)
2145         |= (TYPE_READONLY (TREE_TYPE (TREE_TYPE (array)))
2146             | TREE_READONLY (array));
2147       TREE_SIDE_EFFECTS (rval)
2148         |= (TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (array)))
2149             | TREE_SIDE_EFFECTS (array));
2150       TREE_THIS_VOLATILE (rval)
2151         |= (TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (array)))
2152             /* This was added by rms on 16 Nov 91.
2153                It fixes  vol struct foo *a;  a->elts[1]
2154                in an inline function.
2155                Hope it doesn't break something else.  */
2156             | TREE_THIS_VOLATILE (array));
2157       ret = require_complete_type (rval);
2158       protected_set_expr_location (ret, loc);
2159       return ret;
2160     }
2161   else
2162     {
2163       tree ar = default_conversion (array);
2164
2165       if (ar == error_mark_node)
2166         return ar;
2167
2168       gcc_assert (TREE_CODE (TREE_TYPE (ar)) == POINTER_TYPE);
2169       gcc_assert (TREE_CODE (TREE_TYPE (TREE_TYPE (ar))) != FUNCTION_TYPE);
2170
2171       return build_indirect_ref
2172         (loc, build_binary_op (loc, PLUS_EXPR, ar, index, 0),
2173          "array indexing");
2174     }
2175 }
2176 \f
2177 /* Build an external reference to identifier ID.  FUN indicates
2178    whether this will be used for a function call.  LOC is the source
2179    location of the identifier.  */
2180 tree
2181 build_external_ref (tree id, int fun, location_t loc)
2182 {
2183   tree ref;
2184   tree decl = lookup_name (id);
2185
2186   /* In Objective-C, an instance variable (ivar) may be preferred to
2187      whatever lookup_name() found.  */
2188   decl = objc_lookup_ivar (decl, id);
2189
2190   if (decl && decl != error_mark_node)
2191     ref = decl;
2192   else if (fun)
2193     /* Implicit function declaration.  */
2194     ref = implicitly_declare (id);
2195   else if (decl == error_mark_node)
2196     /* Don't complain about something that's already been
2197        complained about.  */
2198     return error_mark_node;
2199   else
2200     {
2201       undeclared_variable (id, loc);
2202       return error_mark_node;
2203     }
2204
2205   if (TREE_TYPE (ref) == error_mark_node)
2206     return error_mark_node;
2207
2208   if (TREE_DEPRECATED (ref))
2209     warn_deprecated_use (ref);
2210
2211   /* Recursive call does not count as usage.  */
2212   if (ref != current_function_decl) 
2213     {
2214       TREE_USED (ref) = 1;
2215     }
2216
2217   if (TREE_CODE (ref) == FUNCTION_DECL && !in_alignof)
2218     {
2219       if (!in_sizeof && !in_typeof)
2220         C_DECL_USED (ref) = 1;
2221       else if (DECL_INITIAL (ref) == 0
2222                && DECL_EXTERNAL (ref)
2223                && !TREE_PUBLIC (ref))
2224         record_maybe_used_decl (ref);
2225     }
2226
2227   if (TREE_CODE (ref) == CONST_DECL)
2228     {
2229       used_types_insert (TREE_TYPE (ref));
2230       ref = DECL_INITIAL (ref);
2231       TREE_CONSTANT (ref) = 1;
2232     }
2233   else if (current_function_decl != 0
2234            && !DECL_FILE_SCOPE_P (current_function_decl)
2235            && (TREE_CODE (ref) == VAR_DECL
2236                || TREE_CODE (ref) == PARM_DECL
2237                || TREE_CODE (ref) == FUNCTION_DECL))
2238     {
2239       tree context = decl_function_context (ref);
2240
2241       if (context != 0 && context != current_function_decl)
2242         DECL_NONLOCAL (ref) = 1;
2243     }
2244   /* C99 6.7.4p3: An inline definition of a function with external
2245      linkage ... shall not contain a reference to an identifier with
2246      internal linkage.  */
2247   else if (current_function_decl != 0
2248            && DECL_DECLARED_INLINE_P (current_function_decl)
2249            && DECL_EXTERNAL (current_function_decl)
2250            && VAR_OR_FUNCTION_DECL_P (ref)
2251            && (TREE_CODE (ref) != VAR_DECL || TREE_STATIC (ref))
2252            && ! TREE_PUBLIC (ref)
2253            && DECL_CONTEXT (ref) != current_function_decl)
2254     pedwarn (loc, 0, "%qD is static but used in inline function %qD "
2255              "which is not static", ref, current_function_decl);
2256
2257   return ref;
2258 }
2259
2260 /* Record details of decls possibly used inside sizeof or typeof.  */
2261 struct maybe_used_decl
2262 {
2263   /* The decl.  */
2264   tree decl;
2265   /* The level seen at (in_sizeof + in_typeof).  */
2266   int level;
2267   /* The next one at this level or above, or NULL.  */
2268   struct maybe_used_decl *next;
2269 };
2270
2271 static struct maybe_used_decl *maybe_used_decls;
2272
2273 /* Record that DECL, an undefined static function reference seen
2274    inside sizeof or typeof, might be used if the operand of sizeof is
2275    a VLA type or the operand of typeof is a variably modified
2276    type.  */
2277
2278 static void
2279 record_maybe_used_decl (tree decl)
2280 {
2281   struct maybe_used_decl *t = XOBNEW (&parser_obstack, struct maybe_used_decl);
2282   t->decl = decl;
2283   t->level = in_sizeof + in_typeof;
2284   t->next = maybe_used_decls;
2285   maybe_used_decls = t;
2286 }
2287
2288 /* Pop the stack of decls possibly used inside sizeof or typeof.  If
2289    USED is false, just discard them.  If it is true, mark them used
2290    (if no longer inside sizeof or typeof) or move them to the next
2291    level up (if still inside sizeof or typeof).  */
2292
2293 void
2294 pop_maybe_used (bool used)
2295 {
2296   struct maybe_used_decl *p = maybe_used_decls;
2297   int cur_level = in_sizeof + in_typeof;
2298   while (p && p->level > cur_level)
2299     {
2300       if (used)
2301         {
2302           if (cur_level == 0)
2303             C_DECL_USED (p->decl) = 1;
2304           else
2305             p->level = cur_level;
2306         }
2307       p = p->next;
2308     }
2309   if (!used || cur_level == 0)
2310     maybe_used_decls = p;
2311 }
2312
2313 /* Return the result of sizeof applied to EXPR.  */
2314
2315 struct c_expr
2316 c_expr_sizeof_expr (struct c_expr expr)
2317 {
2318   struct c_expr ret;
2319   if (expr.value == error_mark_node)
2320     {
2321       ret.value = error_mark_node;
2322       ret.original_code = ERROR_MARK;
2323       pop_maybe_used (false);
2324     }
2325   else
2326     {
2327       bool expr_const_operands = true;
2328       tree folded_expr = c_fully_fold (expr.value, require_constant_value,
2329                                        &expr_const_operands);
2330       ret.value = c_sizeof (TREE_TYPE (folded_expr));
2331       ret.original_code = ERROR_MARK;
2332       if (c_vla_type_p (TREE_TYPE (folded_expr)))
2333         {
2334           /* sizeof is evaluated when given a vla (C99 6.5.3.4p2).  */
2335           ret.value = build2 (C_MAYBE_CONST_EXPR, TREE_TYPE (ret.value),
2336                               folded_expr, ret.value);
2337           C_MAYBE_CONST_EXPR_NON_CONST (ret.value) = !expr_const_operands;
2338         }
2339       pop_maybe_used (C_TYPE_VARIABLE_SIZE (TREE_TYPE (folded_expr)));
2340     }
2341   return ret;
2342 }
2343
2344 /* Return the result of sizeof applied to T, a structure for the type
2345    name passed to sizeof (rather than the type itself).  */
2346
2347 struct c_expr
2348 c_expr_sizeof_type (struct c_type_name *t)
2349 {
2350   tree type;
2351   struct c_expr ret;
2352   tree type_expr = NULL_TREE;
2353   bool type_expr_const = true;
2354   type = groktypename (t, &type_expr, &type_expr_const);
2355   ret.value = c_sizeof (type);
2356   ret.original_code = ERROR_MARK;
2357   if (type_expr && c_vla_type_p (type))
2358     {
2359       ret.value = build2 (C_MAYBE_CONST_EXPR, TREE_TYPE (ret.value),
2360                           type_expr, ret.value);
2361       C_MAYBE_CONST_EXPR_NON_CONST (ret.value) = !type_expr_const;
2362     }
2363   pop_maybe_used (type != error_mark_node
2364                   ? C_TYPE_VARIABLE_SIZE (type) : false);
2365   return ret;
2366 }
2367
2368 /* Build a function call to function FUNCTION with parameters PARAMS.
2369    PARAMS is a list--a chain of TREE_LIST nodes--in which the
2370    TREE_VALUE of each node is a parameter-expression.
2371    FUNCTION's data type may be a function type or a pointer-to-function.  */
2372
2373 tree
2374 build_function_call (tree function, tree params)
2375 {
2376   tree fntype, fundecl = 0;
2377   tree name = NULL_TREE, result;
2378   tree tem;
2379   int nargs;
2380   tree *argarray;
2381   
2382
2383   /* Strip NON_LVALUE_EXPRs, etc., since we aren't using as an lvalue.  */
2384   STRIP_TYPE_NOPS (function);
2385
2386   /* Convert anything with function type to a pointer-to-function.  */
2387   if (TREE_CODE (function) == FUNCTION_DECL)
2388     {
2389       /* Implement type-directed function overloading for builtins.
2390          resolve_overloaded_builtin and targetm.resolve_overloaded_builtin
2391          handle all the type checking.  The result is a complete expression
2392          that implements this function call.  */
2393       tem = resolve_overloaded_builtin (function, params);
2394       if (tem)
2395         return tem;
2396
2397       name = DECL_NAME (function);
2398       fundecl = function;
2399     }
2400   if (TREE_CODE (TREE_TYPE (function)) == FUNCTION_TYPE)
2401     function = function_to_pointer_conversion (function);
2402
2403   /* For Objective-C, convert any calls via a cast to OBJC_TYPE_REF
2404      expressions, like those used for ObjC messenger dispatches.  */
2405   function = objc_rewrite_function_call (function, params);
2406
2407   function = c_fully_fold (function, false, NULL);
2408
2409   fntype = TREE_TYPE (function);
2410
2411   if (TREE_CODE (fntype) == ERROR_MARK)
2412     return error_mark_node;
2413
2414   if (!(TREE_CODE (fntype) == POINTER_TYPE
2415         && TREE_CODE (TREE_TYPE (fntype)) == FUNCTION_TYPE))
2416     {
2417       error ("called object %qE is not a function", function);
2418       return error_mark_node;
2419     }
2420
2421   if (fundecl && TREE_THIS_VOLATILE (fundecl))
2422     current_function_returns_abnormally = 1;
2423
2424   /* fntype now gets the type of function pointed to.  */
2425   fntype = TREE_TYPE (fntype);
2426
2427   /* Convert the parameters to the types declared in the
2428      function prototype, or apply default promotions.  */
2429
2430   nargs = list_length (params);
2431   argarray = (tree *) alloca (nargs * sizeof (tree));
2432   nargs = convert_arguments (nargs, argarray, TYPE_ARG_TYPES (fntype), 
2433                              params, function, fundecl);
2434   if (nargs < 0)
2435     return error_mark_node;
2436
2437   /* Check that the function is called through a compatible prototype.
2438      If it is not, replace the call by a trap, wrapped up in a compound
2439      expression if necessary.  This has the nice side-effect to prevent
2440      the tree-inliner from generating invalid assignment trees which may
2441      blow up in the RTL expander later.  */
2442   if (CONVERT_EXPR_P (function)
2443       && TREE_CODE (tem = TREE_OPERAND (function, 0)) == ADDR_EXPR
2444       && TREE_CODE (tem = TREE_OPERAND (tem, 0)) == FUNCTION_DECL
2445       && !comptypes (fntype, TREE_TYPE (tem)))
2446     {
2447       tree return_type = TREE_TYPE (fntype);
2448       tree trap = build_function_call (built_in_decls[BUILT_IN_TRAP],
2449                                        NULL_TREE);
2450       int i;
2451
2452       /* This situation leads to run-time undefined behavior.  We can't,
2453          therefore, simply error unless we can prove that all possible
2454          executions of the program must execute the code.  */
2455       if (warning (0, "function called through a non-compatible type"))
2456         /* We can, however, treat "undefined" any way we please.
2457            Call abort to encourage the user to fix the program.  */
2458         inform (input_location, "if this code is reached, the program will abort");
2459       /* Before the abort, allow the function arguments to exit or
2460          call longjmp.  */
2461       for (i = 0; i < nargs; i++)
2462         trap = build2 (COMPOUND_EXPR, void_type_node, argarray[i], trap);
2463
2464       if (VOID_TYPE_P (return_type))
2465         return trap;
2466       else
2467         {
2468           tree rhs;
2469
2470           if (AGGREGATE_TYPE_P (return_type))
2471             rhs = build_compound_literal (return_type,
2472                                           build_constructor (return_type, 0),
2473                                           false);
2474           else
2475             rhs = fold_convert (return_type, integer_zero_node);
2476
2477           return build2 (COMPOUND_EXPR, return_type, trap, rhs);
2478         }
2479     }
2480
2481   /* Check that arguments to builtin functions match the expectations.  */
2482   if (fundecl
2483       && DECL_BUILT_IN (fundecl)
2484       && DECL_BUILT_IN_CLASS (fundecl) == BUILT_IN_NORMAL
2485       && !check_builtin_function_arguments (fundecl, nargs, argarray))
2486     return error_mark_node;
2487
2488   /* Check that the arguments to the function are valid.  */
2489   check_function_arguments (TYPE_ATTRIBUTES (fntype), nargs, argarray,
2490                             TYPE_ARG_TYPES (fntype));
2491
2492   if (name != NULL_TREE
2493       && !strncmp (IDENTIFIER_POINTER (name), "__builtin_", 10))
2494     {
2495       if (require_constant_value)
2496         result = fold_build_call_array_initializer (TREE_TYPE (fntype),
2497                                                     function, nargs, argarray);
2498       else
2499         result = fold_build_call_array (TREE_TYPE (fntype),
2500                                         function, nargs, argarray);
2501       if (TREE_CODE (result) == NOP_EXPR
2502           && TREE_CODE (TREE_OPERAND (result, 0)) == INTEGER_CST)
2503         STRIP_TYPE_NOPS (result);
2504     }
2505   else
2506     result = build_call_array (TREE_TYPE (fntype),
2507                                function, nargs, argarray);
2508
2509   if (VOID_TYPE_P (TREE_TYPE (result)))
2510     return result;
2511   return require_complete_type (result);
2512 }
2513 \f
2514 /* Convert the argument expressions in the list VALUES
2515    to the types in the list TYPELIST.  The resulting arguments are
2516    stored in the array ARGARRAY which has size NARGS.
2517
2518    If TYPELIST is exhausted, or when an element has NULL as its type,
2519    perform the default conversions.
2520
2521    PARMLIST is the chain of parm decls for the function being called.
2522    It may be 0, if that info is not available.
2523    It is used only for generating error messages.
2524
2525    FUNCTION is a tree for the called function.  It is used only for
2526    error messages, where it is formatted with %qE.
2527
2528    This is also where warnings about wrong number of args are generated.
2529
2530    VALUES is a chain of TREE_LIST nodes with the elements of the list
2531    in the TREE_VALUE slots of those nodes.
2532
2533    Returns the actual number of arguments processed (which may be less
2534    than NARGS in some error situations), or -1 on failure.  */
2535
2536 static int
2537 convert_arguments (int nargs, tree *argarray,
2538                    tree typelist, tree values, tree function, tree fundecl)
2539 {
2540   tree typetail, valtail;
2541   int parmnum;
2542   const bool type_generic = fundecl
2543     && lookup_attribute ("type generic", TYPE_ATTRIBUTES(TREE_TYPE (fundecl)));
2544   tree selector;
2545
2546   /* Change pointer to function to the function itself for
2547      diagnostics.  */
2548   if (TREE_CODE (function) == ADDR_EXPR
2549       && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
2550     function = TREE_OPERAND (function, 0);
2551
2552   /* Handle an ObjC selector specially for diagnostics.  */
2553   selector = objc_message_selector ();
2554
2555   /* Scan the given expressions and types, producing individual
2556      converted arguments and storing them in ARGARRAY.  */
2557
2558   for (valtail = values, typetail = typelist, parmnum = 0;
2559        valtail;
2560        valtail = TREE_CHAIN (valtail), parmnum++)
2561     {
2562       tree type = typetail ? TREE_VALUE (typetail) : 0;
2563       tree val = TREE_VALUE (valtail);
2564       tree rname = function;
2565       int argnum = parmnum + 1;
2566       const char *invalid_func_diag;
2567       bool npc;
2568
2569       if (type == void_type_node)
2570         {
2571           error ("too many arguments to function %qE", function);
2572           return parmnum;
2573         }
2574
2575       if (selector && argnum > 2)
2576         {
2577           rname = selector;
2578           argnum -= 2;
2579         }
2580
2581       npc = null_pointer_constant_p (val);
2582       val = c_fully_fold (val, false, NULL);
2583       STRIP_TYPE_NOPS (val);
2584
2585       val = require_complete_type (val);
2586
2587       if (type != 0)
2588         {
2589           /* Formal parm type is specified by a function prototype.  */
2590           tree parmval;
2591
2592           if (type == error_mark_node || !COMPLETE_TYPE_P (type))
2593             {
2594               error ("type of formal parameter %d is incomplete", parmnum + 1);
2595               parmval = val;
2596             }
2597           else
2598             {
2599               /* Optionally warn about conversions that
2600                  differ from the default conversions.  */
2601               if (warn_traditional_conversion || warn_traditional)
2602                 {
2603                   unsigned int formal_prec = TYPE_PRECISION (type);
2604
2605                   if (INTEGRAL_TYPE_P (type)
2606                       && TREE_CODE (TREE_TYPE (val)) == REAL_TYPE)
2607                     warning (0, "passing argument %d of %qE as integer "
2608                              "rather than floating due to prototype",
2609                              argnum, rname);
2610                   if (INTEGRAL_TYPE_P (type)
2611                       && TREE_CODE (TREE_TYPE (val)) == COMPLEX_TYPE)
2612                     warning (0, "passing argument %d of %qE as integer "
2613                              "rather than complex due to prototype",
2614                              argnum, rname);
2615                   else if (TREE_CODE (type) == COMPLEX_TYPE
2616                            && TREE_CODE (TREE_TYPE (val)) == REAL_TYPE)
2617                     warning (0, "passing argument %d of %qE as complex "
2618                              "rather than floating due to prototype",
2619                              argnum, rname);
2620                   else if (TREE_CODE (type) == REAL_TYPE
2621                            && INTEGRAL_TYPE_P (TREE_TYPE (val)))
2622                     warning (0, "passing argument %d of %qE as floating "
2623                              "rather than integer due to prototype",
2624                              argnum, rname);
2625                   else if (TREE_CODE (type) == COMPLEX_TYPE
2626                            && INTEGRAL_TYPE_P (TREE_TYPE (val)))
2627                     warning (0, "passing argument %d of %qE as complex "
2628                              "rather than integer due to prototype",
2629                              argnum, rname);
2630                   else if (TREE_CODE (type) == REAL_TYPE
2631                            && TREE_CODE (TREE_TYPE (val)) == COMPLEX_TYPE)
2632                     warning (0, "passing argument %d of %qE as floating "
2633                              "rather than complex due to prototype",
2634                              argnum, rname);
2635                   /* ??? At some point, messages should be written about
2636                      conversions between complex types, but that's too messy
2637                      to do now.  */
2638                   else if (TREE_CODE (type) == REAL_TYPE
2639                            && TREE_CODE (TREE_TYPE (val)) == REAL_TYPE)
2640                     {
2641                       /* Warn if any argument is passed as `float',
2642                          since without a prototype it would be `double'.  */
2643                       if (formal_prec == TYPE_PRECISION (float_type_node)
2644                           && type != dfloat32_type_node)
2645                         warning (0, "passing argument %d of %qE as %<float%> "
2646                                  "rather than %<double%> due to prototype",
2647                                  argnum, rname);
2648
2649                       /* Warn if mismatch between argument and prototype
2650                          for decimal float types.  Warn of conversions with
2651                          binary float types and of precision narrowing due to
2652                          prototype. */
2653                       else if (type != TREE_TYPE (val)
2654                                && (type == dfloat32_type_node
2655                                    || type == dfloat64_type_node
2656                                    || type == dfloat128_type_node
2657                                    || TREE_TYPE (val) == dfloat32_type_node
2658                                    || TREE_TYPE (val) == dfloat64_type_node
2659                                    || TREE_TYPE (val) == dfloat128_type_node)
2660                                && (formal_prec
2661                                    <= TYPE_PRECISION (TREE_TYPE (val))
2662                                    || (type == dfloat128_type_node
2663                                        && (TREE_TYPE (val)
2664                                            != dfloat64_type_node
2665                                            && (TREE_TYPE (val)
2666                                                != dfloat32_type_node)))
2667                                    || (type == dfloat64_type_node
2668                                        && (TREE_TYPE (val)
2669                                            != dfloat32_type_node))))
2670                         warning (0, "passing argument %d of %qE as %qT "
2671                                  "rather than %qT due to prototype",
2672                                  argnum, rname, type, TREE_TYPE (val));
2673
2674                     }
2675                   /* Detect integer changing in width or signedness.
2676                      These warnings are only activated with
2677                      -Wtraditional-conversion, not with -Wtraditional.  */
2678                   else if (warn_traditional_conversion && INTEGRAL_TYPE_P (type)
2679                            && INTEGRAL_TYPE_P (TREE_TYPE (val)))
2680                     {
2681                       tree would_have_been = default_conversion (val);
2682                       tree type1 = TREE_TYPE (would_have_been);
2683
2684                       if (TREE_CODE (type) == ENUMERAL_TYPE
2685                           && (TYPE_MAIN_VARIANT (type)
2686                               == TYPE_MAIN_VARIANT (TREE_TYPE (val))))
2687                         /* No warning if function asks for enum
2688                            and the actual arg is that enum type.  */
2689                         ;
2690                       else if (formal_prec != TYPE_PRECISION (type1))
2691                         warning (OPT_Wtraditional_conversion, "passing argument %d of %qE "
2692                                  "with different width due to prototype",
2693                                  argnum, rname);
2694                       else if (TYPE_UNSIGNED (type) == TYPE_UNSIGNED (type1))
2695                         ;
2696                       /* Don't complain if the formal parameter type
2697                          is an enum, because we can't tell now whether
2698                          the value was an enum--even the same enum.  */
2699                       else if (TREE_CODE (type) == ENUMERAL_TYPE)
2700                         ;
2701                       else if (TREE_CODE (val) == INTEGER_CST
2702                                && int_fits_type_p (val, type))
2703                         /* Change in signedness doesn't matter
2704                            if a constant value is unaffected.  */
2705                         ;
2706                       /* If the value is extended from a narrower
2707                          unsigned type, it doesn't matter whether we
2708                          pass it as signed or unsigned; the value
2709                          certainly is the same either way.  */
2710                       else if (TYPE_PRECISION (TREE_TYPE (val)) < TYPE_PRECISION (type)
2711                                && TYPE_UNSIGNED (TREE_TYPE (val)))
2712                         ;
2713                       else if (TYPE_UNSIGNED (type))
2714                         warning (OPT_Wtraditional_conversion, "passing argument %d of %qE "
2715                                  "as unsigned due to prototype",
2716                                  argnum, rname);
2717                       else
2718                         warning (OPT_Wtraditional_conversion, "passing argument %d of %qE "
2719                                  "as signed due to prototype", argnum, rname);
2720                     }
2721                 }
2722
2723               parmval = convert_for_assignment (type, val, ic_argpass, npc,
2724                                                 fundecl, function,
2725                                                 parmnum + 1);
2726
2727               if (targetm.calls.promote_prototypes (fundecl ? TREE_TYPE (fundecl) : 0)
2728                   && INTEGRAL_TYPE_P (type)
2729                   && (TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node)))
2730                 parmval = default_conversion (parmval);
2731             }
2732           argarray[parmnum] = parmval;
2733         }
2734       else if (TREE_CODE (TREE_TYPE (val)) == REAL_TYPE
2735                && (TYPE_PRECISION (TREE_TYPE (val))
2736                    < TYPE_PRECISION (double_type_node))
2737                && !DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (val))))
2738         {
2739           if (type_generic)
2740             argarray[parmnum] = val;
2741           else
2742             /* Convert `float' to `double'.  */
2743             argarray[parmnum] = convert (double_type_node, val);
2744         }
2745       else if ((invalid_func_diag =
2746                 targetm.calls.invalid_arg_for_unprototyped_fn (typelist, fundecl, val)))
2747         {
2748           error (invalid_func_diag);
2749           return -1;
2750         }
2751       else
2752         /* Convert `short' and `char' to full-size `int'.  */
2753         argarray[parmnum] = default_conversion (val);
2754
2755       if (typetail)
2756         typetail = TREE_CHAIN (typetail);
2757     }
2758
2759   gcc_assert (parmnum == nargs);
2760
2761   if (typetail != 0 && TREE_VALUE (typetail) != void_type_node)
2762     {
2763       error ("too few arguments to function %qE", function);
2764       return -1;
2765     }
2766
2767   return parmnum;
2768 }
2769 \f
2770 /* This is the entry point used by the parser to build unary operators
2771    in the input.  CODE, a tree_code, specifies the unary operator, and
2772    ARG is the operand.  For unary plus, the C parser currently uses
2773    CONVERT_EXPR for code.
2774
2775    LOC is the location to use for the tree generated.
2776 */
2777
2778 struct c_expr
2779 parser_build_unary_op (enum tree_code code, struct c_expr arg, location_t loc)
2780 {
2781   struct c_expr result;
2782
2783   result.value = build_unary_op (loc, code, arg.value, 0);
2784   result.original_code = code;
2785   
2786   if (TREE_OVERFLOW_P (result.value) && !TREE_OVERFLOW_P (arg.value))
2787     overflow_warning (result.value);
2788
2789   return result;
2790 }
2791
2792 /* This is the entry point used by the parser to build binary operators
2793    in the input.  CODE, a tree_code, specifies the binary operator, and
2794    ARG1 and ARG2 are the operands.  In addition to constructing the
2795    expression, we check for operands that were written with other binary
2796    operators in a way that is likely to confuse the user.
2797
2798    LOCATION is the location of the binary operator.  */
2799
2800 struct c_expr
2801 parser_build_binary_op (location_t location, enum tree_code code,
2802                         struct c_expr arg1, struct c_expr arg2)
2803 {
2804   struct c_expr result;
2805
2806   enum tree_code code1 = arg1.original_code;
2807   enum tree_code code2 = arg2.original_code;
2808
2809   result.value = build_binary_op (location, code,
2810                                   arg1.value, arg2.value, 1);
2811   result.original_code = code;
2812
2813   if (TREE_CODE (result.value) == ERROR_MARK)
2814     return result;
2815
2816   if (location != UNKNOWN_LOCATION)
2817     protected_set_expr_location (result.value, location);
2818
2819   /* Check for cases such as x+y<<z which users are likely
2820      to misinterpret.  */
2821   if (warn_parentheses)
2822     warn_about_parentheses (code, code1, arg1.value, code2, arg2.value);
2823
2824   if (TREE_CODE_CLASS (code1) != tcc_comparison)
2825     warn_logical_operator (code, arg1.value, arg2.value);
2826
2827   /* Warn about comparisons against string literals, with the exception
2828      of testing for equality or inequality of a string literal with NULL.  */
2829   if (code == EQ_EXPR || code == NE_EXPR)
2830     {
2831       if ((code1 == STRING_CST && !integer_zerop (arg2.value))
2832           || (code2 == STRING_CST && !integer_zerop (arg1.value)))
2833         warning (OPT_Waddress, "comparison with string literal results in unspecified behavior");
2834     }
2835   else if (TREE_CODE_CLASS (code) == tcc_comparison
2836            && (code1 == STRING_CST || code2 == STRING_CST))
2837     warning (OPT_Waddress, "comparison with string literal results in unspecified behavior");
2838
2839   if (TREE_OVERFLOW_P (result.value) 
2840       && !TREE_OVERFLOW_P (arg1.value) 
2841       && !TREE_OVERFLOW_P (arg2.value))
2842     overflow_warning (result.value);
2843
2844   return result;
2845 }
2846 \f
2847 /* Return a tree for the difference of pointers OP0 and OP1.
2848    The resulting tree has type int.  */
2849
2850 static tree
2851 pointer_diff (tree op0, tree op1)
2852 {
2853   tree restype = ptrdiff_type_node;
2854
2855   tree target_type = TREE_TYPE (TREE_TYPE (op0));
2856   tree con0, con1, lit0, lit1;
2857   tree orig_op1 = op1;
2858
2859   if (TREE_CODE (target_type) == VOID_TYPE)
2860     pedwarn (input_location, pedantic ? OPT_pedantic : OPT_Wpointer_arith, 
2861              "pointer of type %<void *%> used in subtraction");
2862   if (TREE_CODE (target_type) == FUNCTION_TYPE)
2863     pedwarn (input_location, pedantic ? OPT_pedantic : OPT_Wpointer_arith, 
2864              "pointer to a function used in subtraction");
2865
2866   /* If the conversion to ptrdiff_type does anything like widening or
2867      converting a partial to an integral mode, we get a convert_expression
2868      that is in the way to do any simplifications.
2869      (fold-const.c doesn't know that the extra bits won't be needed.
2870      split_tree uses STRIP_SIGN_NOPS, which leaves conversions to a
2871      different mode in place.)
2872      So first try to find a common term here 'by hand'; we want to cover
2873      at least the cases that occur in legal static initializers.  */
2874   if (CONVERT_EXPR_P (op0)
2875       && (TYPE_PRECISION (TREE_TYPE (op0))
2876           == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op0, 0)))))
2877     con0 = TREE_OPERAND (op0, 0);
2878   else
2879     con0 = op0;
2880   if (CONVERT_EXPR_P (op1)
2881       && (TYPE_PRECISION (TREE_TYPE (op1))
2882           == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op1, 0)))))
2883     con1 = TREE_OPERAND (op1, 0);
2884   else
2885     con1 = op1;
2886
2887   if (TREE_CODE (con0) == PLUS_EXPR)
2888     {
2889       lit0 = TREE_OPERAND (con0, 1);
2890       con0 = TREE_OPERAND (con0, 0);
2891     }
2892   else
2893     lit0 = integer_zero_node;
2894
2895   if (TREE_CODE (con1) == PLUS_EXPR)
2896     {
2897       lit1 = TREE_OPERAND (con1, 1);
2898       con1 = TREE_OPERAND (con1, 0);
2899     }
2900   else
2901     lit1 = integer_zero_node;
2902
2903   if (operand_equal_p (con0, con1, 0))
2904     {
2905       op0 = lit0;
2906       op1 = lit1;
2907     }
2908
2909
2910   /* First do the subtraction as integers;
2911      then drop through to build the divide operator.
2912      Do not do default conversions on the minus operator
2913      in case restype is a short type.  */
2914
2915   op0 = build_binary_op (input_location,
2916                          MINUS_EXPR, convert (restype, op0),
2917                          convert (restype, op1), 0);
2918   /* This generates an error if op1 is pointer to incomplete type.  */
2919   if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (orig_op1))))
2920     error ("arithmetic on pointer to an incomplete type");
2921
2922   /* This generates an error if op0 is pointer to incomplete type.  */
2923   op1 = c_size_in_bytes (target_type);
2924
2925   /* Divide by the size, in easiest possible way.  */
2926   return fold_build2 (EXACT_DIV_EXPR, restype, op0, convert (restype, op1));
2927 }
2928 \f
2929 /* Construct and perhaps optimize a tree representation
2930    for a unary operation.  CODE, a tree_code, specifies the operation
2931    and XARG is the operand.
2932    For any CODE other than ADDR_EXPR, FLAG nonzero suppresses
2933    the default promotions (such as from short to int).
2934    For ADDR_EXPR, the default promotions are not applied; FLAG nonzero
2935    allows non-lvalues; this is only used to handle conversion of non-lvalue
2936    arrays to pointers in C99.
2937
2938    LOCATION is the location of the operator.  */
2939
2940 tree
2941 build_unary_op (location_t location,
2942                 enum tree_code code, tree xarg, int flag)
2943 {
2944   /* No default_conversion here.  It causes trouble for ADDR_EXPR.  */
2945   tree arg = xarg;
2946   tree argtype = 0;
2947   enum tree_code typecode;
2948   tree val;
2949   tree ret = error_mark_node;
2950   int noconvert = flag;
2951   const char *invalid_op_diag;
2952   bool int_operands;
2953
2954   int_operands = EXPR_INT_CONST_OPERANDS (xarg);
2955
2956   if (code != ADDR_EXPR)
2957     arg = require_complete_type (arg);
2958
2959   typecode = TREE_CODE (TREE_TYPE (arg));
2960   if (typecode == ERROR_MARK)
2961     return error_mark_node;
2962   if (typecode == ENUMERAL_TYPE || typecode == BOOLEAN_TYPE)
2963     typecode = INTEGER_TYPE;
2964
2965   if ((invalid_op_diag
2966        = targetm.invalid_unary_op (code, TREE_TYPE (xarg))))
2967     {
2968       error_at (location, invalid_op_diag);
2969       return error_mark_node;
2970     }
2971
2972   switch (code)
2973     {
2974     case CONVERT_EXPR:
2975       /* This is used for unary plus, because a CONVERT_EXPR
2976          is enough to prevent anybody from looking inside for
2977          associativity, but won't generate any code.  */
2978       if (!(typecode == INTEGER_TYPE || typecode == REAL_TYPE
2979             || typecode == FIXED_POINT_TYPE || typecode == COMPLEX_TYPE
2980             || typecode == VECTOR_TYPE))
2981         {
2982           error_at (location, "wrong type argument to unary plus");
2983           return error_mark_node;
2984         }
2985       else if (!noconvert)
2986         arg = default_conversion (arg);
2987       arg = non_lvalue (arg);
2988       break;
2989
2990     case NEGATE_EXPR:
2991       if (!(typecode == INTEGER_TYPE || typecode == REAL_TYPE
2992             || typecode == FIXED_POINT_TYPE || typecode == COMPLEX_TYPE
2993             || typecode == VECTOR_TYPE))
2994         {
2995           error_at (location, "wrong type argument to unary minus");
2996           return error_mark_node;
2997         }
2998       else if (!noconvert)
2999         arg = default_conversion (arg);
3000       break;
3001
3002     case BIT_NOT_EXPR:
3003       /* ~ works on integer types and non float vectors. */
3004       if (typecode == INTEGER_TYPE
3005           || (typecode == VECTOR_TYPE
3006               && !VECTOR_FLOAT_TYPE_P (TREE_TYPE (arg))))
3007         {
3008           if (!noconvert)
3009             arg = default_conversion (arg);
3010         }
3011       else if (typecode == COMPLEX_TYPE)
3012         {
3013           code = CONJ_EXPR;
3014           pedwarn (location, OPT_pedantic, 
3015                    "ISO C does not support %<~%> for complex conjugation");
3016           if (!noconvert)
3017             arg = default_conversion (arg);
3018         }
3019       else
3020         {
3021           error_at (location, "wrong type argument to bit-complement");
3022           return error_mark_node;
3023         }
3024       break;
3025
3026     case ABS_EXPR:
3027       if (!(typecode == INTEGER_TYPE || typecode == REAL_TYPE))
3028         {
3029           error_at (location, "wrong type argument to abs");
3030           return error_mark_node;
3031         }
3032       else if (!noconvert)
3033         arg = default_conversion (arg);
3034       break;
3035
3036     case CONJ_EXPR:
3037       /* Conjugating a real value is a no-op, but allow it anyway.  */
3038       if (!(typecode == INTEGER_TYPE || typecode == REAL_TYPE
3039             || typecode == COMPLEX_TYPE))
3040         {
3041           error_at (location, "wrong type argument to conjugation");
3042           return error_mark_node;
3043         }
3044       else if (!noconvert)
3045         arg = default_conversion (arg);
3046       break;
3047
3048     case TRUTH_NOT_EXPR:
3049       if (typecode != INTEGER_TYPE && typecode != FIXED_POINT_TYPE
3050           && typecode != REAL_TYPE && typecode != POINTER_TYPE
3051           && typecode != COMPLEX_TYPE)
3052         {
3053           error_at (location,
3054                     "wrong type argument to unary exclamation mark");
3055           return error_mark_node;
3056         }
3057       arg = c_objc_common_truthvalue_conversion (location, arg);
3058       ret = invert_truthvalue (arg);
3059       goto return_build_unary_op;
3060
3061     case REALPART_EXPR:
3062       if (TREE_CODE (arg) == COMPLEX_CST)
3063         ret = TREE_REALPART (arg);
3064       else if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
3065         ret = fold_build1 (REALPART_EXPR, TREE_TYPE (TREE_TYPE (arg)), arg);
3066       else
3067         ret = arg;
3068       goto return_build_unary_op;
3069
3070     case IMAGPART_EXPR:
3071       if (TREE_CODE (arg) == COMPLEX_CST)
3072         ret = TREE_IMAGPART (arg);
3073       else if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
3074         ret = fold_build1 (IMAGPART_EXPR, TREE_TYPE (TREE_TYPE (arg)), arg);
3075       else
3076         ret = omit_one_operand (TREE_TYPE (arg), integer_zero_node, arg);
3077       goto return_build_unary_op;
3078
3079     case PREINCREMENT_EXPR:
3080     case POSTINCREMENT_EXPR:
3081     case PREDECREMENT_EXPR:
3082     case POSTDECREMENT_EXPR:
3083
3084       if (TREE_CODE (arg) == C_MAYBE_CONST_EXPR)
3085         {
3086           tree inner = build_unary_op (location, code,
3087                                        C_MAYBE_CONST_EXPR_EXPR (arg), flag);
3088           if (inner == error_mark_node)
3089             return error_mark_node;
3090           ret = build2 (C_MAYBE_CONST_EXPR, TREE_TYPE (inner),
3091                         C_MAYBE_CONST_EXPR_PRE (arg), inner);
3092           gcc_assert (!C_MAYBE_CONST_EXPR_INT_OPERANDS (arg));
3093           C_MAYBE_CONST_EXPR_NON_CONST (ret) = 1;
3094           goto return_build_unary_op;
3095         }
3096
3097       /* Complain about anything that is not a true lvalue.  */
3098       if (!lvalue_or_else (arg, ((code == PREINCREMENT_EXPR
3099                                   || code == POSTINCREMENT_EXPR)
3100                                  ? lv_increment
3101                                  : lv_decrement)))
3102         return error_mark_node;
3103
3104       /* Ensure the argument is fully folded inside any SAVE_EXPR.  */
3105       arg = c_fully_fold (arg, false, NULL);
3106
3107       /* Increment or decrement the real part of the value,
3108          and don't change the imaginary part.  */
3109       if (typecode == COMPLEX_TYPE)
3110         {
3111           tree real, imag;
3112
3113           pedwarn (location, OPT_pedantic, 
3114                    "ISO C does not support %<++%> and %<--%> on complex types");
3115
3116           arg = stabilize_reference (arg);
3117           real = build_unary_op (EXPR_LOCATION (arg), REALPART_EXPR, arg, 1);
3118           imag = build_unary_op (EXPR_LOCATION (arg), IMAGPART_EXPR, arg, 1);
3119           real = build_unary_op (EXPR_LOCATION (arg), code, real, 1);
3120           if (real == error_mark_node || imag == error_mark_node)
3121             return error_mark_node;
3122           ret = build2 (COMPLEX_EXPR, TREE_TYPE (arg),
3123                         real, imag);
3124           goto return_build_unary_op;
3125         }
3126
3127       /* Report invalid types.  */
3128
3129       if (typecode != POINTER_TYPE && typecode != FIXED_POINT_TYPE
3130           && typecode != INTEGER_TYPE && typecode != REAL_TYPE)
3131         {
3132           if (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
3133             error_at (location, "wrong type argument to increment");
3134           else
3135             error_at (location, "wrong type argument to decrement");
3136
3137           return error_mark_node;
3138         }
3139
3140       {
3141         tree inc;
3142
3143         argtype = TREE_TYPE (arg);
3144
3145         /* Compute the increment.  */
3146
3147         if (typecode == POINTER_TYPE)
3148           {
3149             /* If pointer target is an undefined struct,
3150                we just cannot know how to do the arithmetic.  */
3151             if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (argtype)))
3152               {
3153                 if (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
3154                   error_at (location,
3155                             "increment of pointer to unknown structure");
3156                 else
3157                   error_at (location,
3158                             "decrement of pointer to unknown structure");
3159               }
3160             else if (TREE_CODE (TREE_TYPE (argtype)) == FUNCTION_TYPE
3161                      || TREE_CODE (TREE_TYPE (argtype)) == VOID_TYPE)
3162               {
3163                 if (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
3164                   pedwarn (location, pedantic ? OPT_pedantic : OPT_Wpointer_arith, 
3165                            "wrong type argument to increment");
3166                 else
3167                   pedwarn (location, pedantic ? OPT_pedantic : OPT_Wpointer_arith, 
3168                            "wrong type argument to decrement");
3169               }
3170
3171             inc = c_size_in_bytes (TREE_TYPE (argtype));
3172             inc = fold_convert (sizetype, inc);
3173           }
3174         else if (FRACT_MODE_P (TYPE_MODE (argtype)))
3175           {
3176             /* For signed fract types, we invert ++ to -- or
3177                -- to ++, and change inc from 1 to -1, because
3178                it is not possible to represent 1 in signed fract constants.
3179                For unsigned fract types, the result always overflows and
3180                we get an undefined (original) or the maximum value.  */
3181             if (code == PREINCREMENT_EXPR)
3182               code = PREDECREMENT_EXPR;
3183             else if (code == PREDECREMENT_EXPR)
3184               code = PREINCREMENT_EXPR;
3185             else if (code == POSTINCREMENT_EXPR)
3186               code = POSTDECREMENT_EXPR;
3187             else /* code == POSTDECREMENT_EXPR  */
3188               code = POSTINCREMENT_EXPR;
3189
3190             inc = integer_minus_one_node;
3191             inc = convert (argtype, inc);
3192           }
3193         else
3194           {
3195             inc = integer_one_node;
3196             inc = convert (argtype, inc);
3197           }
3198
3199         /* Report a read-only lvalue.  */
3200         if (TREE_READONLY (arg))
3201           {
3202             readonly_error (arg,
3203                             ((code == PREINCREMENT_EXPR
3204                               || code == POSTINCREMENT_EXPR)
3205                              ? lv_increment : lv_decrement));
3206             return error_mark_node;
3207           }
3208
3209         if (TREE_CODE (TREE_TYPE (arg)) == BOOLEAN_TYPE)
3210           val = boolean_increment (code, arg);
3211         else
3212           val = build2 (code, TREE_TYPE (arg), arg, inc);
3213         TREE_SIDE_EFFECTS (val) = 1;
3214         if (TREE_CODE (val) != code)
3215           TREE_NO_WARNING (val) = 1;
3216         ret = val;
3217         goto return_build_unary_op;
3218       }
3219
3220     case ADDR_EXPR:
3221       /* Note that this operation never does default_conversion.  */
3222
3223       /* Let &* cancel out to simplify resulting code.  */
3224       if (TREE_CODE (arg) == INDIRECT_REF)
3225         {
3226           /* Don't let this be an lvalue.  */
3227           if (lvalue_p (TREE_OPERAND (arg, 0)))
3228             return non_lvalue (TREE_OPERAND (arg, 0));
3229           ret = TREE_OPERAND (arg, 0);
3230           goto return_build_unary_op;
3231         }
3232
3233       /* For &x[y], return x+y */
3234       if (TREE_CODE (arg) == ARRAY_REF)
3235         {
3236           tree op0 = TREE_OPERAND (arg, 0);
3237           if (!c_mark_addressable (op0))
3238             return error_mark_node;
3239           return build_binary_op (location, PLUS_EXPR,
3240                                   (TREE_CODE (TREE_TYPE (op0)) == ARRAY_TYPE
3241                                    ? array_to_pointer_conversion (op0)
3242                                    : op0),
3243                                   TREE_OPERAND (arg, 1), 1);
3244         }
3245
3246       /* Anything not already handled and not a true memory reference
3247          or a non-lvalue array is an error.  */
3248       else if (typecode != FUNCTION_TYPE && !flag
3249                && !lvalue_or_else (arg, lv_addressof))
3250         return error_mark_node;
3251
3252       /* Move address operations inside C_MAYBE_CONST_EXPR to simplify
3253          folding later.  */
3254       if (TREE_CODE (arg) == C_MAYBE_CONST_EXPR)
3255         {
3256           tree inner = build_unary_op (location, code,
3257                                        C_MAYBE_CONST_EXPR_EXPR (arg), flag);
3258           ret = build2 (C_MAYBE_CONST_EXPR, TREE_TYPE (inner),
3259                         C_MAYBE_CONST_EXPR_PRE (arg), inner);
3260           gcc_assert (!C_MAYBE_CONST_EXPR_INT_OPERANDS (arg));
3261           C_MAYBE_CONST_EXPR_NON_CONST (ret)
3262             = C_MAYBE_CONST_EXPR_NON_CONST (arg);
3263           goto return_build_unary_op;
3264         }
3265
3266       /* Ordinary case; arg is a COMPONENT_REF or a decl.  */
3267       argtype = TREE_TYPE (arg);
3268
3269       /* If the lvalue is const or volatile, merge that into the type
3270          to which the address will point.  Note that you can't get a
3271          restricted pointer by taking the address of something, so we
3272          only have to deal with `const' and `volatile' here.  */
3273       if ((DECL_P (arg) || REFERENCE_CLASS_P (arg))
3274           && (TREE_READONLY (arg) || TREE_THIS_VOLATILE (arg)))
3275           argtype = c_build_type_variant (argtype,
3276                                           TREE_READONLY (arg),
3277                                           TREE_THIS_VOLATILE (arg));
3278
3279       if (!c_mark_addressable (arg))
3280         return error_mark_node;
3281
3282       gcc_assert (TREE_CODE (arg) != COMPONENT_REF
3283                   || !DECL_C_BIT_FIELD (TREE_OPERAND (arg, 1)));
3284
3285       argtype = build_pointer_type (argtype);
3286
3287       /* ??? Cope with user tricks that amount to offsetof.  Delete this
3288          when we have proper support for integer constant expressions.  */
3289       val = get_base_address (arg);
3290       if (val && TREE_CODE (val) == INDIRECT_REF
3291           && TREE_CONSTANT (TREE_OPERAND (val, 0)))
3292         {
3293           tree op0 = fold_convert (sizetype, fold_offsetof (arg, val)), op1;
3294
3295           op1 = fold_convert (argtype, TREE_OPERAND (val, 0));
3296           ret = fold_build2 (POINTER_PLUS_EXPR, argtype, op1, op0);
3297           goto return_build_unary_op;
3298         }
3299
3300       val = build1 (ADDR_EXPR, argtype, arg);
3301
3302       ret = val;
3303       goto return_build_unary_op;
3304
3305     default:
3306       gcc_unreachable ();
3307     }
3308
3309   if (argtype == 0)
3310     argtype = TREE_TYPE (arg);
3311   if (TREE_CODE (arg) == INTEGER_CST)
3312     ret = (require_constant_value
3313            ? fold_build1_initializer (code, argtype, arg)
3314            : fold_build1 (code, argtype, arg));
3315   else
3316     ret = build1 (code, argtype, arg);
3317  return_build_unary_op:
3318   gcc_assert (ret != error_mark_node);
3319   if (TREE_CODE (ret) == INTEGER_CST && !TREE_OVERFLOW (ret)
3320       && !(TREE_CODE (xarg) == INTEGER_CST && !TREE_OVERFLOW (xarg)))
3321     ret = build1 (NOP_EXPR, TREE_TYPE (ret), ret);
3322   else if (TREE_CODE (ret) != INTEGER_CST && int_operands)
3323     ret = note_integer_operands (ret);
3324   protected_set_expr_location (ret, location);
3325   return ret;
3326 }
3327
3328 /* Return nonzero if REF is an lvalue valid for this language.
3329    Lvalues can be assigned, unless their type has TYPE_READONLY.
3330    Lvalues can have their address taken, unless they have C_DECL_REGISTER.  */
3331
3332 static int
3333 lvalue_p (const_tree ref)
3334 {
3335   const enum tree_code code = TREE_CODE (ref);
3336
3337   switch (code)
3338     {
3339     case REALPART_EXPR:
3340     case IMAGPART_EXPR:
3341     case COMPONENT_REF:
3342       return lvalue_p (TREE_OPERAND (ref, 0));
3343
3344     case C_MAYBE_CONST_EXPR:
3345       return lvalue_p (TREE_OPERAND (ref, 1));
3346
3347     case COMPOUND_LITERAL_EXPR:
3348     case STRING_CST:
3349       return 1;
3350
3351     case INDIRECT_REF:
3352     case ARRAY_REF:
3353     case VAR_DECL:
3354     case PARM_DECL:
3355     case RESULT_DECL:
3356     case ERROR_MARK:
3357       return (TREE_CODE (TREE_TYPE (ref)) != FUNCTION_TYPE
3358               && TREE_CODE (TREE_TYPE (ref)) != METHOD_TYPE);
3359
3360     case BIND_EXPR:
3361       return TREE_CODE (TREE_TYPE (ref)) == ARRAY_TYPE;
3362
3363     default:
3364       return 0;
3365     }
3366 }
3367 \f
3368 /* Give an error for storing in something that is 'const'.  */
3369
3370 static void
3371 readonly_error (tree arg, enum lvalue_use use)
3372 {
3373   gcc_assert (use == lv_assign || use == lv_increment || use == lv_decrement
3374               || use == lv_asm);
3375   /* Using this macro rather than (for example) arrays of messages
3376      ensures that all the format strings are checked at compile
3377      time.  */
3378 #define READONLY_MSG(A, I, D, AS) (use == lv_assign ? (A)               \
3379                                    : (use == lv_increment ? (I)         \
3380                                    : (use == lv_decrement ? (D) : (AS))))
3381   if (TREE_CODE (arg) == COMPONENT_REF)
3382     {
3383       if (TYPE_READONLY (TREE_TYPE (TREE_OPERAND (arg, 0))))
3384         readonly_error (TREE_OPERAND (arg, 0), use);
3385       else
3386         error (READONLY_MSG (G_("assignment of read-only member %qD"),
3387                              G_("increment of read-only member %qD"),
3388                              G_("decrement of read-only member %qD"),
3389                              G_("read-only member %qD used as %<asm%> output")),
3390                TREE_OPERAND (arg, 1));
3391     }
3392   else if (TREE_CODE (arg) == VAR_DECL)
3393     error (READONLY_MSG (G_("assignment of read-only variable %qD"),
3394                          G_("increment of read-only variable %qD"),
3395                          G_("decrement of read-only variable %qD"),
3396                          G_("read-only variable %qD used as %<asm%> output")),
3397            arg);
3398   else
3399     error (READONLY_MSG (G_("assignment of read-only location %qE"),
3400                          G_("increment of read-only location %qE"),
3401                          G_("decrement of read-only location %qE"),
3402                          G_("read-only location %qE used as %<asm%> output")),
3403            arg);
3404 }
3405
3406
3407 /* Return nonzero if REF is an lvalue valid for this language;
3408    otherwise, print an error message and return zero.  USE says
3409    how the lvalue is being used and so selects the error message.  */
3410
3411 static int
3412 lvalue_or_else (const_tree ref, enum lvalue_use use)
3413 {
3414   int win = lvalue_p (ref);
3415
3416   if (!win)
3417     lvalue_error (use);
3418
3419   return win;
3420 }
3421 \f
3422 /* Mark EXP saying that we need to be able to take the
3423    address of it; it should not be allocated in a register.
3424    Returns true if successful.  */
3425
3426 bool
3427 c_mark_addressable (tree exp)
3428 {
3429   tree x = exp;
3430
3431   while (1)
3432     switch (TREE_CODE (x))
3433       {
3434       case COMPONENT_REF:
3435         if (DECL_C_BIT_FIELD (TREE_OPERAND (x, 1)))
3436           {
3437             error
3438               ("cannot take address of bit-field %qD", TREE_OPERAND (x, 1));
3439             return false;
3440           }
3441
3442         /* ... fall through ...  */
3443
3444       case ADDR_EXPR:
3445       case ARRAY_REF:
3446       case REALPART_EXPR:
3447       case IMAGPART_EXPR:
3448         x = TREE_OPERAND (x, 0);
3449         break;
3450
3451       case COMPOUND_LITERAL_EXPR:
3452       case CONSTRUCTOR:
3453         TREE_ADDRESSABLE (x) = 1;
3454         return true;
3455
3456       case VAR_DECL:
3457       case CONST_DECL:
3458       case PARM_DECL:
3459       case RESULT_DECL:
3460         if (C_DECL_REGISTER (x)
3461             && DECL_NONLOCAL (x))
3462           {
3463             if (TREE_PUBLIC (x) || TREE_STATIC (x) || DECL_EXTERNAL (x))
3464               {
3465                 error
3466                   ("global register variable %qD used in nested function", x);
3467                 return false;
3468               }
3469             pedwarn (input_location, 0, "register variable %qD used in nested function", x);
3470           }
3471         else if (C_DECL_REGISTER (x))
3472           {
3473             if (TREE_PUBLIC (x) || TREE_STATIC (x) || DECL_EXTERNAL (x))
3474               error ("address of global register variable %qD requested", x);
3475             else
3476               error ("address of register variable %qD requested", x);
3477             return false;
3478           }
3479
3480         /* drops in */
3481       case FUNCTION_DECL:
3482         TREE_ADDRESSABLE (x) = 1;
3483         /* drops out */
3484       default:
3485         return true;
3486     }
3487 }
3488 \f
3489 /* Build and return a conditional expression IFEXP ? OP1 : OP2.  If
3490    IFEXP_BCP then the condition is a call to __builtin_constant_p, and
3491    if folded to an integer constant then the unselected half may
3492    contain arbitrary operations not normally permitted in constant
3493    expressions.  */
3494
3495 tree
3496 build_conditional_expr (tree ifexp, bool ifexp_bcp, tree op1, tree op2)
3497 {
3498   tree type1;
3499   tree type2;
3500   enum tree_code code1;
3501   enum tree_code code2;
3502   tree result_type = NULL;
3503   tree orig_op1 = op1, orig_op2 = op2;
3504   bool int_const, op1_int_operands, op2_int_operands, int_operands;
3505   tree ret;
3506   bool objc_ok;
3507
3508   /* Promote both alternatives.  */
3509
3510   if (TREE_CODE (TREE_TYPE (op1)) != VOID_TYPE)
3511     op1 = default_conversion (op1);
3512   if (TREE_CODE (TREE_TYPE (op2)) != VOID_TYPE)
3513     op2 = default_conversion (op2);
3514
3515   if (TREE_CODE (ifexp) == ERROR_MARK
3516       || TREE_CODE (TREE_TYPE (op1)) == ERROR_MARK
3517       || TREE_CODE (TREE_TYPE (op2)) == ERROR_MARK)
3518     return error_mark_node;
3519
3520   type1 = TREE_TYPE (op1);
3521   code1 = TREE_CODE (type1);
3522   type2 = TREE_TYPE (op2);
3523   code2 = TREE_CODE (type2);
3524
3525   /* C90 does not permit non-lvalue arrays in conditional expressions.
3526      In C99 they will be pointers by now.  */
3527   if (code1 == ARRAY_TYPE || code2 == ARRAY_TYPE)
3528     {
3529       error ("non-lvalue array in conditional expression");
3530       return error_mark_node;
3531     }
3532
3533   objc_ok = objc_compare_types (type1, type2, -3, NULL_TREE);
3534
3535   /* Quickly detect the usual case where op1 and op2 have the same type
3536      after promotion.  */
3537   if (TYPE_MAIN_VARIANT (type1) == TYPE_MAIN_VARIANT (type2))
3538     {
3539       if (type1 == type2)
3540         result_type = type1;
3541       else
3542         result_type = TYPE_MAIN_VARIANT (type1);
3543     }
3544   else if ((code1 == INTEGER_TYPE || code1 == REAL_TYPE
3545             || code1 == COMPLEX_TYPE)
3546            && (code2 == INTEGER_TYPE || code2 == REAL_TYPE
3547                || code2 == COMPLEX_TYPE))
3548     {
3549       result_type = c_common_type (type1, type2);
3550
3551       /* If -Wsign-compare, warn here if type1 and type2 have
3552          different signedness.  We'll promote the signed to unsigned
3553          and later code won't know it used to be different.
3554          Do this check on the original types, so that explicit casts
3555          will be considered, but default promotions won't.  */
3556       if (!skip_evaluation)
3557         {
3558           int unsigned_op1 = TYPE_UNSIGNED (TREE_TYPE (orig_op1));
3559           int unsigned_op2 = TYPE_UNSIGNED (TREE_TYPE (orig_op2));
3560
3561           if (unsigned_op1 ^ unsigned_op2)
3562             {
3563               bool ovf;
3564
3565               /* Do not warn if the result type is signed, since the
3566                  signed type will only be chosen if it can represent
3567                  all the values of the unsigned type.  */
3568               if (!TYPE_UNSIGNED (result_type))
3569                 /* OK */;
3570               else
3571                 {
3572                   bool op1_maybe_const = true;
3573                   bool op2_maybe_const = true;
3574
3575                   /* Do not warn if the signed quantity is an
3576                      unsuffixed integer literal (or some static
3577                      constant expression involving such literals) and
3578                      it is non-negative.  This warning requires the
3579                      operands to be folded for best results, so do
3580                      that folding in this case even without
3581                      warn_sign_compare to avoid warning options
3582                      possibly affecting code generation.  */
3583                   op1 = c_fully_fold (op1, require_constant_value,
3584                                       &op1_maybe_const);
3585                   op2 = c_fully_fold (op2, require_constant_value,
3586                                       &op2_maybe_const);
3587
3588                   if (warn_sign_compare)
3589                     {
3590                       if ((unsigned_op2
3591                            && tree_expr_nonnegative_warnv_p (op1, &ovf))
3592                           || (unsigned_op1
3593                               && tree_expr_nonnegative_warnv_p (op2, &ovf)))
3594                         /* OK */;
3595                       else
3596                         warning (OPT_Wsign_compare, "signed and unsigned type in conditional expression");
3597                     }
3598                   if (!op1_maybe_const || TREE_CODE (op1) != INTEGER_CST)
3599                     {
3600                       op1 = build2 (C_MAYBE_CONST_EXPR, TREE_TYPE (op1),
3601                                     NULL, op1);
3602                       C_MAYBE_CONST_EXPR_NON_CONST (op1) = !op1_maybe_const;
3603                     }
3604                   if (!op2_maybe_const || TREE_CODE (op2) != INTEGER_CST)
3605                     {
3606                       op2 = build2 (C_MAYBE_CONST_EXPR, TREE_TYPE (op2),
3607                                     NULL, op2);
3608                       C_MAYBE_CONST_EXPR_NON_CONST (op2) = !op2_maybe_const;
3609                     }
3610                 }
3611             }
3612         }
3613     }
3614   else if (code1 == VOID_TYPE || code2 == VOID_TYPE)
3615     {
3616       if (code1 != VOID_TYPE || code2 != VOID_TYPE)
3617         pedwarn (input_location, OPT_pedantic, 
3618                  "ISO C forbids conditional expr with only one void side");
3619       result_type = void_type_node;
3620     }
3621   else if (code1 == POINTER_TYPE && code2 == POINTER_TYPE)
3622     {
3623       if (comp_target_types (type1, type2))
3624         result_type = common_pointer_type (type1, type2);
3625       else if (null_pointer_constant_p (orig_op1))
3626         result_type = qualify_type (type2, type1);
3627       else if (null_pointer_constant_p (orig_op2))
3628         result_type = qualify_type (type1, type2);
3629       else if (VOID_TYPE_P (TREE_TYPE (type1)))
3630         {
3631           if (TREE_CODE (TREE_TYPE (type2)) == FUNCTION_TYPE)
3632             pedwarn (input_location, OPT_pedantic, 
3633                      "ISO C forbids conditional expr between "
3634                      "%<void *%> and function pointer");
3635           result_type = build_pointer_type (qualify_type (TREE_TYPE (type1),
3636                                                           TREE_TYPE (type2)));
3637         }
3638       else if (VOID_TYPE_P (TREE_TYPE (type2)))
3639         {
3640           if (TREE_CODE (TREE_TYPE (type1)) == FUNCTION_TYPE)
3641             pedwarn (input_location, OPT_pedantic, 
3642                      "ISO C forbids conditional expr between "
3643                      "%<void *%> and function pointer");
3644           result_type = build_pointer_type (qualify_type (TREE_TYPE (type2),
3645                                                           TREE_TYPE (type1)));
3646         }
3647       else
3648         {
3649           if (!objc_ok)
3650             pedwarn (input_location, 0, 
3651                      "pointer type mismatch in conditional expression");
3652           result_type = build_pointer_type (void_type_node);
3653         }
3654     }
3655   else if (code1 == POINTER_TYPE && code2 == INTEGER_TYPE)
3656     {
3657       if (!null_pointer_constant_p (orig_op2))
3658         pedwarn (input_location, 0, 
3659                  "pointer/integer type mismatch in conditional expression");
3660       else
3661         {
3662           op2 = null_pointer_node;
3663         }
3664       result_type = type1;
3665     }
3666   else if (code2 == POINTER_TYPE && code1 == INTEGER_TYPE)
3667     {
3668       if (!null_pointer_constant_p (orig_op1))
3669         pedwarn (input_location, 0, 
3670                  "pointer/integer type mismatch in conditional expression");
3671       else
3672         {
3673           op1 = null_pointer_node;
3674         }
3675       result_type = type2;
3676     }
3677
3678   if (!result_type)
3679     {
3680       if (flag_cond_mismatch)
3681         result_type = void_type_node;
3682       else
3683         {
3684           error ("type mismatch in conditional expression");
3685           return error_mark_node;
3686         }
3687     }
3688
3689   /* Merge const and volatile flags of the incoming types.  */
3690   result_type
3691     = build_type_variant (result_type,
3692                           TREE_READONLY (op1) || TREE_READONLY (op2),
3693                           TREE_THIS_VOLATILE (op1) || TREE_THIS_VOLATILE (op2));
3694
3695   if (result_type != TREE_TYPE (op1))
3696     op1 = convert_and_check (result_type, op1);
3697   if (result_type != TREE_TYPE (op2))
3698     op2 = convert_and_check (result_type, op2);
3699
3700   op1_int_operands = EXPR_INT_CONST_OPERANDS (orig_op1);
3701   op2_int_operands = EXPR_INT_CONST_OPERANDS (orig_op2);
3702   if (ifexp_bcp && ifexp == truthvalue_true_node)
3703     {
3704       op2_int_operands = true;
3705       op1 = c_fully_fold (op1, require_constant_value, NULL);
3706     }
3707   if (ifexp_bcp && ifexp == truthvalue_false_node)
3708     {
3709       op1_int_operands = true;
3710       op2 = c_fully_fold (op2, require_constant_value, NULL);
3711     }
3712   int_const = int_operands = (EXPR_INT_CONST_OPERANDS (ifexp)
3713                               && op1_int_operands
3714                               && op2_int_operands);
3715   if (int_operands)
3716     {
3717       int_const = ((ifexp == truthvalue_true_node
3718                     && TREE_CODE (orig_op1) == INTEGER_CST
3719                     && !TREE_OVERFLOW (orig_op1))
3720                    || (ifexp == truthvalue_false_node
3721                        && TREE_CODE (orig_op2) == INTEGER_CST
3722                        && !TREE_OVERFLOW (orig_op2)));
3723     }
3724   if (int_const || (ifexp_bcp && TREE_CODE (ifexp) == INTEGER_CST))
3725     ret = fold_build3 (COND_EXPR, result_type, ifexp, op1, op2);
3726   else
3727     {
3728       ret = build3 (COND_EXPR, result_type, ifexp, op1, op2);
3729       if (int_operands)
3730         ret = note_integer_operands (ret);
3731     }
3732
3733   return ret;
3734 }
3735 \f
3736 /* Return a compound expression that performs two expressions and
3737    returns the value of the second of them.  */
3738
3739 tree
3740 build_compound_expr (tree expr1, tree expr2)
3741 {
3742   tree ret;
3743
3744   if (!TREE_SIDE_EFFECTS (expr1))
3745     {
3746       /* The left-hand operand of a comma expression is like an expression
3747          statement: with -Wunused, we should warn if it doesn't have
3748          any side-effects, unless it was explicitly cast to (void).  */
3749       if (warn_unused_value)
3750         {
3751           if (VOID_TYPE_P (TREE_TYPE (expr1))
3752               && CONVERT_EXPR_P (expr1))
3753             ; /* (void) a, b */
3754           else if (VOID_TYPE_P (TREE_TYPE (expr1))
3755                    && TREE_CODE (expr1) == COMPOUND_EXPR
3756                    && CONVERT_EXPR_P (TREE_OPERAND (expr1, 1)))
3757             ; /* (void) a, (void) b, c */
3758           else
3759             warning (OPT_Wunused_value, 
3760                      "left-hand operand of comma expression has no effect");
3761         }
3762     }
3763
3764   /* With -Wunused, we should also warn if the left-hand operand does have
3765      side-effects, but computes a value which is not used.  For example, in
3766      `foo() + bar(), baz()' the result of the `+' operator is not used,
3767      so we should issue a warning.  */
3768   else if (warn_unused_value)
3769     warn_if_unused_value (expr1, input_location);
3770
3771   if (expr2 == error_mark_node)
3772     return error_mark_node;
3773
3774   ret = build2 (COMPOUND_EXPR, TREE_TYPE (expr2), expr1, expr2);
3775
3776   if (flag_isoc99
3777       && EXPR_INT_CONST_OPERANDS (expr1)
3778       && EXPR_INT_CONST_OPERANDS (expr2))
3779     ret = note_integer_operands (ret);
3780
3781   return ret;
3782 }
3783
3784 /* Build an expression representing a cast to type TYPE of expression EXPR.  */
3785
3786 tree
3787 build_c_cast (tree type, tree expr)
3788 {
3789   tree value = expr;
3790
3791   if (type == error_mark_node || expr == error_mark_node)
3792     return error_mark_node;
3793
3794   /* The ObjC front-end uses TYPE_MAIN_VARIANT to tie together types differing
3795      only in <protocol> qualifications.  But when constructing cast expressions,
3796      the protocols do matter and must be kept around.  */
3797   if (objc_is_object_ptr (type) && objc_is_object_ptr (TREE_TYPE (expr)))
3798     return build1 (NOP_EXPR, type, expr);
3799
3800   type = TYPE_MAIN_VARIANT (type);
3801
3802   if (TREE_CODE (type) == ARRAY_TYPE)
3803     {
3804       error ("cast specifies array type");
3805       return error_mark_node;
3806     }
3807
3808   if (TREE_CODE (type) == FUNCTION_TYPE)
3809     {
3810       error ("cast specifies function type");
3811       return error_mark_node;
3812     }
3813
3814   if (!VOID_TYPE_P (type))
3815     {
3816       value = require_complete_type (value);
3817       if (value == error_mark_node)
3818         return error_mark_node;
3819     }
3820
3821   if (type == TYPE_MAIN_VARIANT (TREE_TYPE (value)))
3822     {
3823       if (TREE_CODE (type) == RECORD_TYPE
3824           || TREE_CODE (type) == UNION_TYPE)
3825         pedwarn (input_location, OPT_pedantic, 
3826                  "ISO C forbids casting nonscalar to the same type");
3827     }
3828   else if (TREE_CODE (type) == UNION_TYPE)
3829     {
3830       tree field;
3831
3832       for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
3833         if (TREE_TYPE (field) != error_mark_node
3834             && comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (field)),
3835                           TYPE_MAIN_VARIANT (TREE_TYPE (value))))
3836           break;
3837
3838       if (field)
3839         {
3840           tree t;
3841
3842           pedwarn (input_location, OPT_pedantic,
3843                    "ISO C forbids casts to union type");
3844           t = digest_init (type,
3845                            build_constructor_single (type, field, value),
3846                            false, true, 0);
3847           TREE_CONSTANT (t) = TREE_CONSTANT (value);
3848           return t;
3849         }
3850       error ("cast to union type from type not present in union");
3851       return error_mark_node;
3852     }
3853   else
3854     {
3855       tree otype, ovalue;
3856
3857       if (type == void_type_node)
3858         return build1 (CONVERT_EXPR, type, value);
3859
3860       otype = TREE_TYPE (value);
3861
3862       /* Optionally warn about potentially worrisome casts.  */
3863
3864       if (warn_cast_qual
3865           && TREE_CODE (type) == POINTER_TYPE
3866           && TREE_CODE (otype) == POINTER_TYPE)
3867         {
3868           tree in_type = type;
3869           tree in_otype = otype;
3870           int added = 0;
3871           int discarded = 0;
3872
3873           /* Check that the qualifiers on IN_TYPE are a superset of
3874              the qualifiers of IN_OTYPE.  The outermost level of
3875              POINTER_TYPE nodes is uninteresting and we stop as soon
3876              as we hit a non-POINTER_TYPE node on either type.  */
3877           do
3878             {
3879               in_otype = TREE_TYPE (in_otype);
3880               in_type = TREE_TYPE (in_type);
3881
3882               /* GNU C allows cv-qualified function types.  'const'
3883                  means the function is very pure, 'volatile' means it
3884                  can't return.  We need to warn when such qualifiers
3885                  are added, not when they're taken away.  */
3886               if (TREE_CODE (in_otype) == FUNCTION_TYPE
3887                   && TREE_CODE (in_type) == FUNCTION_TYPE)
3888                 added |= (TYPE_QUALS (in_type) & ~TYPE_QUALS (in_otype));
3889               else
3890                 discarded |= (TYPE_QUALS (in_otype) & ~TYPE_QUALS (in_type));
3891             }
3892           while (TREE_CODE (in_type) == POINTER_TYPE
3893                  && TREE_CODE (in_otype) == POINTER_TYPE);
3894
3895           if (added)
3896             warning (OPT_Wcast_qual, "cast adds new qualifiers to function type");
3897
3898           if (discarded)
3899             /* There are qualifiers present in IN_OTYPE that are not
3900                present in IN_TYPE.  */
3901             warning (OPT_Wcast_qual, "cast discards qualifiers from pointer target type");
3902         }
3903
3904       /* Warn about possible alignment problems.  */
3905       if (STRICT_ALIGNMENT
3906           && TREE_CODE (type) == POINTER_TYPE
3907           && TREE_CODE (otype) == POINTER_TYPE
3908           && TREE_CODE (TREE_TYPE (otype)) != VOID_TYPE
3909           && TREE_CODE (TREE_TYPE (otype)) != FUNCTION_TYPE
3910           /* Don't warn about opaque types, where the actual alignment
3911              restriction is unknown.  */
3912           && !((TREE_CODE (TREE_TYPE (otype)) == UNION_TYPE
3913                 || TREE_CODE (TREE_TYPE (otype)) == RECORD_TYPE)
3914                && TYPE_MODE (TREE_TYPE (otype)) == VOIDmode)
3915           && TYPE_ALIGN (TREE_TYPE (type)) > TYPE_ALIGN (TREE_TYPE (otype)))
3916         warning (OPT_Wcast_align,
3917                  "cast increases required alignment of target type");
3918
3919       if (TREE_CODE (type) == INTEGER_TYPE
3920           && TREE_CODE (otype) == POINTER_TYPE
3921           && TYPE_PRECISION (type) != TYPE_PRECISION (otype))
3922       /* Unlike conversion of integers to pointers, where the
3923          warning is disabled for converting constants because
3924          of cases such as SIG_*, warn about converting constant
3925          pointers to integers. In some cases it may cause unwanted
3926          sign extension, and a warning is appropriate.  */
3927         warning (OPT_Wpointer_to_int_cast,
3928                  "cast from pointer to integer of different size");
3929
3930       if (TREE_CODE (value) == CALL_EXPR
3931           && TREE_CODE (type) != TREE_CODE (otype))
3932         warning (OPT_Wbad_function_cast, "cast from function call of type %qT "
3933                  "to non-matching type %qT", otype, type);
3934
3935       if (TREE_CODE (type) == POINTER_TYPE
3936           && TREE_CODE (otype) == INTEGER_TYPE
3937           && TYPE_PRECISION (type) != TYPE_PRECISION (otype)
3938           /* Don't warn about converting any constant.  */
3939           && !TREE_CONSTANT (value))
3940         warning (OPT_Wint_to_pointer_cast, "cast to pointer from integer "
3941                  "of different size");
3942
3943       if (warn_strict_aliasing <= 2)
3944         strict_aliasing_warning (otype, type, expr);
3945
3946       /* If pedantic, warn for conversions between function and object
3947          pointer types, except for converting a null pointer constant
3948          to function pointer type.  */
3949       if (pedantic
3950           && TREE_CODE (type) == POINTER_TYPE
3951           && TREE_CODE (otype) == POINTER_TYPE
3952           && TREE_CODE (TREE_TYPE (otype)) == FUNCTION_TYPE
3953           && TREE_CODE (TREE_TYPE (type)) != FUNCTION_TYPE)
3954         pedwarn (input_location, OPT_pedantic, "ISO C forbids "
3955                  "conversion of function pointer to object pointer type");
3956
3957       if (pedantic
3958           && TREE_CODE (type) == POINTER_TYPE
3959           && TREE_CODE (otype) == POINTER_TYPE
3960           && TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE
3961           && TREE_CODE (TREE_TYPE (otype)) != FUNCTION_TYPE
3962           && !null_pointer_constant_p (value))
3963         pedwarn (input_location, OPT_pedantic, "ISO C forbids "
3964                  "conversion of object pointer to function pointer type");
3965
3966       ovalue = value;
3967       value = convert (type, value);
3968
3969       /* Ignore any integer overflow caused by the cast.  */
3970       if (TREE_CODE (value) == INTEGER_CST && !FLOAT_TYPE_P (otype))
3971         {
3972           if (CONSTANT_CLASS_P (ovalue) && TREE_OVERFLOW (ovalue))
3973             {
3974               if (!TREE_OVERFLOW (value))
3975                 {
3976                   /* Avoid clobbering a shared constant.  */
3977                   value = copy_node (value);
3978                   TREE_OVERFLOW (value) = TREE_OVERFLOW (ovalue);
3979                 }
3980             }
3981           else if (TREE_OVERFLOW (value))
3982             /* Reset VALUE's overflow flags, ensuring constant sharing.  */
3983             value = build_int_cst_wide (TREE_TYPE (value),
3984                                         TREE_INT_CST_LOW (value),
3985                                         TREE_INT_CST_HIGH (value));
3986         }
3987     }
3988
3989   /* Don't let a cast be an lvalue.  */
3990   if (value == expr)
3991     value = non_lvalue (value);
3992
3993   /* Don't allow the results of casting to floating-point or complex
3994      types be confused with actual constants, or casts involving
3995      integer and pointer types other than direct integer-to-integer
3996      and integer-to-pointer be confused with integer constant
3997      expressions and null pointer constants.  */
3998   if (TREE_CODE (value) == REAL_CST
3999       || TREE_CODE (value) == COMPLEX_CST
4000       || (TREE_CODE (value) == INTEGER_CST
4001           && !((TREE_CODE (expr) == INTEGER_CST
4002                 && INTEGRAL_TYPE_P (TREE_TYPE (expr)))
4003                || TREE_CODE (expr) == REAL_CST
4004                || TREE_CODE (expr) == COMPLEX_CST)))
4005       value = build1 (NOP_EXPR, type, value);
4006
4007   return value;
4008 }
4009
4010 /* Interpret a cast of expression EXPR to type TYPE.  */
4011 tree
4012 c_cast_expr (struct c_type_name *type_name, tree expr)
4013 {
4014   tree type;
4015   tree type_expr = NULL_TREE;
4016   bool type_expr_const = true;
4017   tree ret;
4018   int saved_wsp = warn_strict_prototypes;
4019
4020   /* This avoids warnings about unprototyped casts on
4021      integers.  E.g. "#define SIG_DFL (void(*)())0".  */
4022   if (TREE_CODE (expr) == INTEGER_CST)
4023     warn_strict_prototypes = 0;
4024   type = groktypename (type_name, &type_expr, &type_expr_const);
4025   warn_strict_prototypes = saved_wsp;
4026
4027   ret = build_c_cast (type, expr);
4028   if (type_expr)
4029     {
4030       ret = build2 (C_MAYBE_CONST_EXPR, TREE_TYPE (ret), type_expr, ret);
4031       C_MAYBE_CONST_EXPR_NON_CONST (ret) = !type_expr_const;
4032     }
4033   return ret;
4034 }
4035 \f
4036 /* Build an assignment expression of lvalue LHS from value RHS.
4037    MODIFYCODE is the code for a binary operator that we use
4038    to combine the old value of LHS with RHS to get the new value.
4039    Or else MODIFYCODE is NOP_EXPR meaning do a simple assignment.
4040
4041    LOCATION is the location of the MODIFYCODE operator.  */
4042
4043 tree
4044 build_modify_expr (location_t location,
4045                    tree lhs, enum tree_code modifycode, tree rhs)
4046 {
4047   tree result;
4048   tree newrhs;
4049   tree lhstype = TREE_TYPE (lhs);
4050   tree olhstype = lhstype;
4051   bool npc;
4052
4053   /* Types that aren't fully specified cannot be used in assignments.  */
4054   lhs = require_complete_type (lhs);
4055
4056   /* Avoid duplicate error messages from operands that had errors.  */
4057   if (TREE_CODE (lhs) == ERROR_MARK || TREE_CODE (rhs) == ERROR_MARK)
4058     return error_mark_node;
4059
4060   if (!lvalue_or_else (lhs, lv_assign))
4061     return error_mark_node;
4062
4063   newrhs = rhs;
4064
4065   if (TREE_CODE (lhs) == C_MAYBE_CONST_EXPR)
4066     {
4067       tree inner = build_modify_expr (location, C_MAYBE_CONST_EXPR_EXPR (lhs),
4068                                       modifycode, rhs);
4069       if (inner == error_mark_node)
4070         return error_mark_node;
4071       result = build2 (C_MAYBE_CONST_EXPR, TREE_TYPE (inner),
4072                        C_MAYBE_CONST_EXPR_PRE (lhs), inner);
4073       gcc_assert (!C_MAYBE_CONST_EXPR_INT_OPERANDS (lhs));
4074       C_MAYBE_CONST_EXPR_NON_CONST (result) = 1;
4075       protected_set_expr_location (result, location);
4076       return result;
4077     }
4078
4079   /* If a binary op has been requested, combine the old LHS value with the RHS
4080      producing the value we should actually store into the LHS.  */
4081
4082   if (modifycode != NOP_EXPR)
4083     {
4084       lhs = c_fully_fold (lhs, false, NULL);
4085       lhs = stabilize_reference (lhs);
4086       newrhs = build_binary_op (location,
4087                                 modifycode, lhs, rhs, 1);
4088     }
4089
4090   /* Give an error for storing in something that is 'const'.  */
4091
4092   if (TREE_READONLY (lhs) || TYPE_READONLY (lhstype)
4093       || ((TREE_CODE (lhstype) == RECORD_TYPE
4094            || TREE_CODE (lhstype) == UNION_TYPE)
4095           && C_TYPE_FIELDS_READONLY (lhstype)))
4096     {
4097       readonly_error (lhs, lv_assign);
4098       return error_mark_node;
4099     }
4100
4101   /* If storing into a structure or union member,
4102      it has probably been given type `int'.
4103      Compute the type that would go with
4104      the actual amount of storage the member occupies.  */
4105
4106   if (TREE_CODE (lhs) == COMPONENT_REF
4107       && (TREE_CODE (lhstype) == INTEGER_TYPE
4108           || TREE_CODE (lhstype) == BOOLEAN_TYPE
4109           || TREE_CODE (lhstype) == REAL_TYPE
4110           || TREE_CODE (lhstype) == ENUMERAL_TYPE))
4111     lhstype = TREE_TYPE (get_unwidened (lhs, 0));
4112
4113   /* If storing in a field that is in actuality a short or narrower than one,
4114      we must store in the field in its actual type.  */
4115
4116   if (lhstype != TREE_TYPE (lhs))
4117     {
4118       lhs = copy_node (lhs);
4119       TREE_TYPE (lhs) = lhstype;
4120     }
4121
4122   /* Convert new value to destination type.  Fold it first for the
4123      sake of conversion warnings.  */
4124
4125   npc = null_pointer_constant_p (newrhs);
4126   newrhs = c_fully_fold (newrhs, false, NULL);
4127   newrhs = convert_for_assignment (lhstype, newrhs, ic_assign, npc,
4128                                    NULL_TREE, NULL_TREE, 0);
4129   if (TREE_CODE (newrhs) == ERROR_MARK)
4130     return error_mark_node;
4131
4132   /* Emit ObjC write barrier, if necessary.  */
4133   if (c_dialect_objc () && flag_objc_gc)
4134     {
4135       result = objc_generate_write_barrier (lhs, modifycode, newrhs);
4136       if (result)
4137         {
4138           protected_set_expr_location (result, location);
4139           return result;
4140         }
4141     }
4142
4143   /* Scan operands.  */
4144
4145   result = build2 (MODIFY_EXPR, lhstype, lhs, newrhs);
4146   TREE_SIDE_EFFECTS (result) = 1;
4147   protected_set_expr_location (result, location);
4148
4149   /* If we got the LHS in a different type for storing in,
4150      convert the result back to the nominal type of LHS
4151      so that the value we return always has the same type
4152      as the LHS argument.  */
4153
4154   if (olhstype == TREE_TYPE (result))
4155     return result;
4156
4157   result = convert_for_assignment (olhstype, result, ic_assign, false,
4158                                    NULL_TREE, NULL_TREE, 0);
4159   protected_set_expr_location (result, location);
4160   return result;
4161 }
4162 \f
4163 /* Convert value RHS to type TYPE as preparation for an assignment
4164    to an lvalue of type TYPE.  NULL_POINTER_CONSTANT says whether RHS
4165    was a null pointer constant before any folding.
4166    The real work of conversion is done by `convert'.
4167    The purpose of this function is to generate error messages
4168    for assignments that are not allowed in C.
4169    ERRTYPE says whether it is argument passing, assignment,
4170    initialization or return.
4171
4172    FUNCTION is a tree for the function being called.
4173    PARMNUM is the number of the argument, for printing in error messages.  */
4174
4175 static tree
4176 convert_for_assignment (tree type, tree rhs, enum impl_conv errtype,
4177                         bool null_pointer_constant,
4178                         tree fundecl, tree function, int parmnum)
4179 {
4180   enum tree_code codel = TREE_CODE (type);
4181   tree rhstype;
4182   enum tree_code coder;
4183   tree rname = NULL_TREE;
4184   bool objc_ok = false;
4185
4186   if (errtype == ic_argpass)
4187     {
4188       tree selector;
4189       /* Change pointer to function to the function itself for
4190          diagnostics.  */
4191       if (TREE_CODE (function) == ADDR_EXPR
4192           && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
4193         function = TREE_OPERAND (function, 0);
4194
4195       /* Handle an ObjC selector specially for diagnostics.  */
4196       selector = objc_message_selector ();
4197       rname = function;
4198       if (selector && parmnum > 2)
4199         {
4200           rname = selector;
4201           parmnum -= 2;
4202         }
4203     }
4204
4205   /* This macro is used to emit diagnostics to ensure that all format
4206      strings are complete sentences, visible to gettext and checked at
4207      compile time.  */
4208 #define WARN_FOR_ASSIGNMENT(LOCATION, OPT, AR, AS, IN, RE)               \
4209   do {                                                                   \
4210     switch (errtype)                                                     \
4211       {                                                                  \
4212       case ic_argpass:                                                   \
4213         if (pedwarn (LOCATION, OPT, AR, parmnum, rname))                 \
4214           inform ((fundecl && !DECL_IS_BUILTIN (fundecl))                \
4215                   ? DECL_SOURCE_LOCATION (fundecl) : LOCATION,           \
4216                   "expected %qT but argument is of type %qT",            \
4217                   type, rhstype);                                        \
4218         break;                                                           \
4219       case ic_assign:                                                    \
4220         pedwarn (LOCATION, OPT, AS);                                     \
4221         break;                                                           \
4222       case ic_init:                                                      \
4223         pedwarn (LOCATION, OPT, IN);                                     \
4224         break;                                                           \
4225       case ic_return:                                                    \
4226         pedwarn (LOCATION, OPT, RE);                                     \
4227         break;                                                           \
4228       default:                                                           \
4229         gcc_unreachable ();                                              \
4230       }                                                                  \
4231   } while (0)
4232
4233   rhstype = TREE_TYPE (rhs);
4234   coder = TREE_CODE (rhstype);
4235
4236   if (coder == ERROR_MARK)
4237     return error_mark_node;
4238
4239   if (c_dialect_objc ())
4240     {
4241       int parmno;
4242
4243       switch (errtype)
4244         {
4245         case ic_return:
4246           parmno = 0;
4247           break;
4248
4249         case ic_assign:
4250           parmno = -1;
4251           break;
4252
4253         case ic_init:
4254           parmno = -2;
4255           break;
4256
4257         default:
4258           parmno = parmnum;
4259           break;
4260         }
4261
4262       objc_ok = objc_compare_types (type, rhstype, parmno, rname);
4263     }
4264
4265   if (TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (rhstype))
4266     return rhs;
4267
4268   if (coder == VOID_TYPE)
4269     {
4270       /* Except for passing an argument to an unprototyped function,
4271          this is a constraint violation.  When passing an argument to
4272          an unprototyped function, it is compile-time undefined;
4273          making it a constraint in that case was rejected in
4274          DR#252.  */
4275       error ("void value not ignored as it ought to be");
4276       return error_mark_node;
4277     }
4278   rhs = require_complete_type (rhs);
4279   if (rhs == error_mark_node)
4280     return error_mark_node;
4281   /* A type converts to a reference to it.
4282      This code doesn't fully support references, it's just for the
4283      special case of va_start and va_copy.  */
4284   if (codel == REFERENCE_TYPE
4285       && comptypes (TREE_TYPE (type), TREE_TYPE (rhs)) == 1)
4286     {
4287       if (!lvalue_p (rhs))
4288         {
4289           error ("cannot pass rvalue to reference parameter");
4290           return error_mark_node;
4291         }
4292       if (!c_mark_addressable (rhs))
4293         return error_mark_node;
4294       rhs = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (rhs)), rhs);
4295
4296       /* We already know that these two types are compatible, but they
4297          may not be exactly identical.  In fact, `TREE_TYPE (type)' is
4298          likely to be __builtin_va_list and `TREE_TYPE (rhs)' is
4299          likely to be va_list, a typedef to __builtin_va_list, which
4300          is different enough that it will cause problems later.  */
4301       if (TREE_TYPE (TREE_TYPE (rhs)) != TREE_TYPE (type))
4302         rhs = build1 (NOP_EXPR, build_pointer_type (TREE_TYPE (type)), rhs);
4303
4304       rhs = build1 (NOP_EXPR, type, rhs);
4305       return rhs;
4306     }
4307   /* Some types can interconvert without explicit casts.  */
4308   else if (codel == VECTOR_TYPE && coder == VECTOR_TYPE
4309            && vector_types_convertible_p (type, TREE_TYPE (rhs), true))
4310     return convert (type, rhs);
4311   /* Arithmetic types all interconvert, and enum is treated like int.  */
4312   else if ((codel == INTEGER_TYPE || codel == REAL_TYPE
4313             || codel == FIXED_POINT_TYPE
4314             || codel == ENUMERAL_TYPE || codel == COMPLEX_TYPE
4315             || codel == BOOLEAN_TYPE)
4316            && (coder == INTEGER_TYPE || coder == REAL_TYPE
4317                || coder == FIXED_POINT_TYPE
4318                || coder == ENUMERAL_TYPE || coder == COMPLEX_TYPE
4319                || coder == BOOLEAN_TYPE))
4320     {
4321       tree ret;
4322       bool save = in_late_binary_op;
4323       if (codel == BOOLEAN_TYPE)
4324         in_late_binary_op = true;
4325       ret = convert_and_check (type, rhs);
4326       if (codel == BOOLEAN_TYPE)
4327         in_late_binary_op = save;
4328       return ret;
4329     }
4330
4331   /* Aggregates in different TUs might need conversion.  */
4332   if ((codel == RECORD_TYPE || codel == UNION_TYPE)
4333       && codel == coder
4334       && comptypes (type, rhstype))
4335     return convert_and_check (type, rhs);
4336
4337   /* Conversion to a transparent union from its member types.
4338      This applies only to function arguments.  */
4339   if (codel == UNION_TYPE && TYPE_TRANSPARENT_UNION (type)
4340       && errtype == ic_argpass)
4341     {
4342       tree memb, marginal_memb = NULL_TREE;
4343
4344       for (memb = TYPE_FIELDS (type); memb ; memb = TREE_CHAIN (memb))
4345         {
4346           tree memb_type = TREE_TYPE (memb);
4347
4348           if (comptypes (TYPE_MAIN_VARIANT (memb_type),
4349                          TYPE_MAIN_VARIANT (rhstype)))
4350             break;
4351
4352           if (TREE_CODE (memb_type) != POINTER_TYPE)
4353             continue;
4354
4355           if (coder == POINTER_TYPE)
4356             {
4357               tree ttl = TREE_TYPE (memb_type);
4358               tree ttr = TREE_TYPE (rhstype);
4359
4360               /* Any non-function converts to a [const][volatile] void *
4361                  and vice versa; otherwise, targets must be the same.
4362                  Meanwhile, the lhs target must have all the qualifiers of
4363                  the rhs.  */
4364               if (VOID_TYPE_P (ttl) || VOID_TYPE_P (ttr)
4365                   || comp_target_types (memb_type, rhstype))
4366                 {
4367                   /* If this type won't generate any warnings, use it.  */
4368                   if (TYPE_QUALS (ttl) == TYPE_QUALS (ttr)
4369                       || ((TREE_CODE (ttr) == FUNCTION_TYPE
4370                            && TREE_CODE (ttl) == FUNCTION_TYPE)
4371                           ? ((TYPE_QUALS (ttl) | TYPE_QUALS (ttr))
4372                              == TYPE_QUALS (ttr))
4373                           : ((TYPE_QUALS (ttl) | TYPE_QUALS (ttr))
4374                              == TYPE_QUALS (ttl))))
4375                     break;
4376
4377                   /* Keep looking for a better type, but remember this one.  */
4378                   if (!marginal_memb)
4379                     marginal_memb = memb;
4380                 }
4381             }
4382
4383           /* Can convert integer zero to any pointer type.  */
4384           if (null_pointer_constant)
4385             {
4386               rhs = null_pointer_node;
4387               break;
4388             }
4389         }
4390
4391       if (memb || marginal_memb)
4392         {
4393           if (!memb)
4394             {
4395               /* We have only a marginally acceptable member type;
4396                  it needs a warning.  */
4397               tree ttl = TREE_TYPE (TREE_TYPE (marginal_memb));
4398               tree ttr = TREE_TYPE (rhstype);
4399
4400               /* Const and volatile mean something different for function
4401                  types, so the usual warnings are not appropriate.  */
4402               if (TREE_CODE (ttr) == FUNCTION_TYPE
4403                   && TREE_CODE (ttl) == FUNCTION_TYPE)
4404                 {
4405                   /* Because const and volatile on functions are
4406                      restrictions that say the function will not do
4407                      certain things, it is okay to use a const or volatile
4408                      function where an ordinary one is wanted, but not
4409                      vice-versa.  */
4410                   if (TYPE_QUALS (ttl) & ~TYPE_QUALS (ttr))
4411                     WARN_FOR_ASSIGNMENT (input_location, 0,
4412                                          G_("passing argument %d of %qE "
4413                                             "makes qualified function "
4414                                             "pointer from unqualified"),
4415                                          G_("assignment makes qualified "
4416                                             "function pointer from "
4417                                             "unqualified"),
4418                                          G_("initialization makes qualified "
4419                                             "function pointer from "
4420                                             "unqualified"),
4421                                          G_("return makes qualified function "
4422                                             "pointer from unqualified"));
4423                 }
4424               else if (TYPE_QUALS (ttr) & ~TYPE_QUALS (ttl))
4425                 WARN_FOR_ASSIGNMENT (input_location, 0,
4426                                      G_("passing argument %d of %qE discards "
4427                                         "qualifiers from pointer target type"),
4428                                      G_("assignment discards qualifiers "
4429                                         "from pointer target type"),
4430                                      G_("initialization discards qualifiers "
4431                                         "from pointer target type"),
4432                                      G_("return discards qualifiers from "
4433                                         "pointer target type"));
4434
4435               memb = marginal_memb;
4436             }
4437
4438           if (!fundecl || !DECL_IN_SYSTEM_HEADER (fundecl))
4439             pedwarn (input_location, OPT_pedantic, 
4440                      "ISO C prohibits argument conversion to union type");
4441
4442           rhs = fold_convert (TREE_TYPE (memb), rhs);
4443           return build_constructor_single (type, memb, rhs);
4444         }
4445     }
4446
4447   /* Conversions among pointers */
4448   else if ((codel == POINTER_TYPE || codel == REFERENCE_TYPE)
4449            && (coder == codel))
4450     {
4451       tree ttl = TREE_TYPE (type);
4452       tree ttr = TREE_TYPE (rhstype);
4453       tree mvl = ttl;
4454       tree mvr = ttr;
4455       bool is_opaque_pointer;
4456       int target_cmp = 0;   /* Cache comp_target_types () result.  */
4457
4458       if (TREE_CODE (mvl) != ARRAY_TYPE)
4459         mvl = TYPE_MAIN_VARIANT (mvl);
4460       if (TREE_CODE (mvr) != ARRAY_TYPE)
4461         mvr = TYPE_MAIN_VARIANT (mvr);
4462       /* Opaque pointers are treated like void pointers.  */
4463       is_opaque_pointer = vector_targets_convertible_p (ttl, ttr);
4464
4465       /* C++ does not allow the implicit conversion void* -> T*.  However,
4466          for the purpose of reducing the number of false positives, we
4467          tolerate the special case of
4468
4469                 int *p = NULL;
4470
4471          where NULL is typically defined in C to be '(void *) 0'.  */
4472       if (VOID_TYPE_P (ttr) && rhs != null_pointer_node && !VOID_TYPE_P (ttl))
4473         warning (OPT_Wc___compat, "request for implicit conversion from "
4474                  "%qT to %qT not permitted in C++", rhstype, type);
4475
4476       /* Check if the right-hand side has a format attribute but the
4477          left-hand side doesn't.  */
4478       if (warn_missing_format_attribute
4479           && check_missing_format_attribute (type, rhstype))
4480         {
4481           switch (errtype)
4482           {
4483           case ic_argpass:
4484             warning (OPT_Wmissing_format_attribute,
4485                      "argument %d of %qE might be "
4486                      "a candidate for a format attribute",
4487                      parmnum, rname);
4488             break;
4489           case ic_assign:
4490             warning (OPT_Wmissing_format_attribute,
4491                      "assignment left-hand side might be "
4492                      "a candidate for a format attribute");
4493             break;
4494           case ic_init:
4495             warning (OPT_Wmissing_format_attribute,
4496                      "initialization left-hand side might be "
4497                      "a candidate for a format attribute");
4498             break;
4499           case ic_return:
4500             warning (OPT_Wmissing_format_attribute,
4501                      "return type might be "
4502                      "a candidate for a format attribute");
4503             break;
4504           default:
4505             gcc_unreachable ();
4506           }
4507         }
4508
4509       /* Any non-function converts to a [const][volatile] void *
4510          and vice versa; otherwise, targets must be the same.
4511          Meanwhile, the lhs target must have all the qualifiers of the rhs.  */
4512       if (VOID_TYPE_P (ttl) || VOID_TYPE_P (ttr)
4513           || (target_cmp = comp_target_types (type, rhstype))
4514           || is_opaque_pointer
4515           || (c_common_unsigned_type (mvl)
4516               == c_common_unsigned_type (mvr)))
4517         {
4518           if (pedantic
4519               && ((VOID_TYPE_P (ttl) && TREE_CODE (ttr) == FUNCTION_TYPE)
4520                   ||
4521                   (VOID_TYPE_P (ttr)
4522                    && !null_pointer_constant
4523                    && TREE_CODE (ttl) == FUNCTION_TYPE)))
4524             WARN_FOR_ASSIGNMENT (input_location, OPT_pedantic,
4525                                  G_("ISO C forbids passing argument %d of "
4526                                     "%qE between function pointer "
4527                                     "and %<void *%>"),
4528                                  G_("ISO C forbids assignment between "
4529                                     "function pointer and %<void *%>"),
4530                                  G_("ISO C forbids initialization between "
4531                                     "function pointer and %<void *%>"),
4532                                  G_("ISO C forbids return between function "
4533                                     "pointer and %<void *%>"));
4534           /* Const and volatile mean something different for function types,
4535              so the usual warnings are not appropriate.  */
4536           else if (TREE_CODE (ttr) != FUNCTION_TYPE
4537                    && TREE_CODE (ttl) != FUNCTION_TYPE)
4538             {
4539               if (TYPE_QUALS (ttr) & ~TYPE_QUALS (ttl))
4540                 {
4541                   /* Types differing only by the presence of the 'volatile'
4542                      qualifier are acceptable if the 'volatile' has been added
4543                      in by the Objective-C EH machinery.  */
4544                   if (!objc_type_quals_match (ttl, ttr))
4545                     WARN_FOR_ASSIGNMENT (input_location, 0,
4546                                          G_("passing argument %d of %qE discards "
4547                                             "qualifiers from pointer target type"),
4548                                          G_("assignment discards qualifiers "
4549                                             "from pointer target type"),
4550                                          G_("initialization discards qualifiers "
4551                                             "from pointer target type"),
4552                                          G_("return discards qualifiers from "
4553                                             "pointer target type"));
4554                 }
4555               /* If this is not a case of ignoring a mismatch in signedness,
4556                  no warning.  */
4557               else if (VOID_TYPE_P (ttl) || VOID_TYPE_P (ttr)
4558                        || target_cmp)
4559                 ;
4560               /* If there is a mismatch, do warn.  */
4561               else if (warn_pointer_sign)
4562                 WARN_FOR_ASSIGNMENT (input_location, OPT_Wpointer_sign,
4563                                      G_("pointer targets in passing argument "
4564                                         "%d of %qE differ in signedness"),
4565                                      G_("pointer targets in assignment "
4566                                         "differ in signedness"),
4567                                      G_("pointer targets in initialization "
4568                                         "differ in signedness"),
4569                                      G_("pointer targets in return differ "
4570                                         "in signedness"));
4571             }
4572           else if (TREE_CODE (ttl) == FUNCTION_TYPE
4573                    && TREE_CODE (ttr) == FUNCTION_TYPE)
4574             {
4575               /* Because const and volatile on functions are restrictions
4576                  that say the function will not do certain things,
4577                  it is okay to use a const or volatile function
4578                  where an ordinary one is wanted, but not vice-versa.  */
4579               if (TYPE_QUALS (ttl) & ~TYPE_QUALS (ttr))
4580                 WARN_FOR_ASSIGNMENT (input_location, 0,
4581                                      G_("passing argument %d of %qE makes "
4582                                         "qualified function pointer "
4583                                         "from unqualified"),
4584                                      G_("assignment makes qualified function "
4585                                         "pointer from unqualified"),
4586                                      G_("initialization makes qualified "
4587                                         "function pointer from unqualified"),
4588                                      G_("return makes qualified function "
4589                                         "pointer from unqualified"));
4590             }
4591         }
4592       else
4593         /* Avoid warning about the volatile ObjC EH puts on decls.  */
4594         if (!objc_ok)
4595           WARN_FOR_ASSIGNMENT (input_location, 0,
4596                                G_("passing argument %d of %qE from "
4597                                   "incompatible pointer type"),
4598                                G_("assignment from incompatible pointer type"),
4599                                G_("initialization from incompatible "
4600                                   "pointer type"),
4601                                G_("return from incompatible pointer type"));
4602
4603       return convert (type, rhs);
4604     }
4605   else if (codel == POINTER_TYPE && coder == ARRAY_TYPE)
4606     {
4607       /* ??? This should not be an error when inlining calls to
4608          unprototyped functions.  */
4609       error ("invalid use of non-lvalue array");
4610       return error_mark_node;
4611     }
4612   else if (codel == POINTER_TYPE && coder == INTEGER_TYPE)
4613     {
4614       /* An explicit constant 0 can convert to a pointer,
4615          or one that results from arithmetic, even including
4616          a cast to integer type.  */
4617       if (!null_pointer_constant)
4618         WARN_FOR_ASSIGNMENT (input_location, 0,
4619                              G_("passing argument %d of %qE makes "
4620                                 "pointer from integer without a cast"),
4621                              G_("assignment makes pointer from integer "
4622                                 "without a cast"),
4623                              G_("initialization makes pointer from "
4624                                 "integer without a cast"),
4625                              G_("return makes pointer from integer "
4626                                 "without a cast"));
4627
4628       return convert (type, rhs);
4629     }
4630   else if (codel == INTEGER_TYPE && coder == POINTER_TYPE)
4631     {
4632       WARN_FOR_ASSIGNMENT (input_location, 0,
4633                            G_("passing argument %d of %qE makes integer "
4634                               "from pointer without a cast"),
4635                            G_("assignment makes integer from pointer "
4636                               "without a cast"),
4637                            G_("initialization makes integer from pointer "
4638                               "without a cast"),
4639                            G_("return makes integer from pointer "
4640                               "without a cast"));
4641       return convert (type, rhs);
4642     }
4643   else if (codel == BOOLEAN_TYPE && coder == POINTER_TYPE)
4644     {
4645       tree ret;
4646       bool save = in_late_binary_op;
4647       in_late_binary_op = true;
4648       ret = convert (type, rhs);
4649       in_late_binary_op = save;
4650       return ret;
4651     }
4652
4653   switch (errtype)
4654     {
4655     case ic_argpass:
4656       error ("incompatible type for argument %d of %qE", parmnum, rname);
4657       inform ((fundecl && !DECL_IS_BUILTIN (fundecl))
4658               ? DECL_SOURCE_LOCATION (fundecl) : input_location,
4659               "expected %qT but argument is of type %qT", type, rhstype);
4660       break;
4661     case ic_assign:
4662       error ("incompatible types when assigning to type %qT from type %qT",
4663              type, rhstype);
4664       break;
4665     case ic_init:
4666       error ("incompatible types when initializing type %qT using type %qT",
4667              type, rhstype);
4668       break;
4669     case ic_return:
4670       error ("incompatible types when returning type %qT but %qT was expected",
4671              rhstype, type);
4672       break;
4673     default:
4674       gcc_unreachable ();
4675     }
4676
4677   return error_mark_node;
4678 }
4679 \f
4680 /* If VALUE is a compound expr all of whose expressions are constant, then
4681    return its value.  Otherwise, return error_mark_node.
4682
4683    This is for handling COMPOUND_EXPRs as initializer elements
4684    which is allowed with a warning when -pedantic is specified.  */
4685
4686 static tree
4687 valid_compound_expr_initializer (tree value, tree endtype)
4688 {
4689   if (TREE_CODE (value) == COMPOUND_EXPR)
4690     {
4691       if (valid_compound_expr_initializer (TREE_OPERAND (value, 0), endtype)
4692           == error_mark_node)
4693         return error_mark_node;
4694       return valid_compound_expr_initializer (TREE_OPERAND (value, 1),
4695                                               endtype);
4696     }
4697   else if (!initializer_constant_valid_p (value, endtype))
4698     return error_mark_node;
4699   else
4700     return value;
4701 }
4702 \f
4703 /* Perform appropriate conversions on the initial value of a variable,
4704    store it in the declaration DECL,
4705    and print any error messages that are appropriate.
4706    If the init is invalid, store an ERROR_MARK.  */
4707
4708 void
4709 store_init_value (tree decl, tree init)
4710 {
4711   tree value, type;
4712   bool npc = false;
4713
4714   /* If variable's type was invalidly declared, just ignore it.  */
4715
4716   type = TREE_TYPE (decl);
4717   if (TREE_CODE (type) == ERROR_MARK)
4718     return;
4719
4720   /* Digest the specified initializer into an expression.  */
4721
4722   if (init)
4723     npc = null_pointer_constant_p (init);
4724   value = digest_init (type, init, npc, true, TREE_STATIC (decl));
4725
4726   /* Store the expression if valid; else report error.  */
4727
4728   if (!in_system_header
4729       && AGGREGATE_TYPE_P (TREE_TYPE (decl)) && !TREE_STATIC (decl))
4730     warning (OPT_Wtraditional, "traditional C rejects automatic "
4731              "aggregate initialization");
4732
4733   DECL_INITIAL (decl) = value;
4734
4735   /* ANSI wants warnings about out-of-range constant initializers.  */
4736   STRIP_TYPE_NOPS (value);
4737   if (TREE_STATIC (decl)) 
4738     constant_expression_warning (value);
4739
4740   /* Check if we need to set array size from compound literal size.  */
4741   if (TREE_CODE (type) == ARRAY_TYPE
4742       && TYPE_DOMAIN (type) == 0
4743       && value != error_mark_node)
4744     {
4745       tree inside_init = init;
4746
4747       STRIP_TYPE_NOPS (inside_init);
4748       inside_init = fold (inside_init);
4749
4750       if (TREE_CODE (inside_init) == COMPOUND_LITERAL_EXPR)
4751         {
4752           tree cldecl = COMPOUND_LITERAL_EXPR_DECL (inside_init);
4753
4754           if (TYPE_DOMAIN (TREE_TYPE (cldecl)))
4755             {
4756               /* For int foo[] = (int [3]){1}; we need to set array size
4757                  now since later on array initializer will be just the
4758                  brace enclosed list of the compound literal.  */
4759               type = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
4760               TREE_TYPE (decl) = type;
4761               TYPE_DOMAIN (type) = TYPE_DOMAIN (TREE_TYPE (cldecl));
4762               layout_type (type);
4763               layout_decl (cldecl, 0);
4764             }
4765         }
4766     }
4767 }
4768 \f
4769 /* Methods for storing and printing names for error messages.  */
4770
4771 /* Implement a spelling stack that allows components of a name to be pushed
4772    and popped.  Each element on the stack is this structure.  */
4773
4774 struct spelling
4775 {
4776   int kind;
4777   union
4778     {
4779       unsigned HOST_WIDE_INT i;
4780       const char *s;
4781     } u;
4782 };
4783
4784 #define SPELLING_STRING 1
4785 #define SPELLING_MEMBER 2
4786 #define SPELLING_BOUNDS 3
4787
4788 static struct spelling *spelling;       /* Next stack element (unused).  */
4789 static struct spelling *spelling_base;  /* Spelling stack base.  */
4790 static int spelling_size;               /* Size of the spelling stack.  */
4791
4792 /* Macros to save and restore the spelling stack around push_... functions.
4793    Alternative to SAVE_SPELLING_STACK.  */
4794
4795 #define SPELLING_DEPTH() (spelling - spelling_base)
4796 #define RESTORE_SPELLING_DEPTH(DEPTH) (spelling = spelling_base + (DEPTH))
4797
4798 /* Push an element on the spelling stack with type KIND and assign VALUE
4799    to MEMBER.  */
4800
4801 #define PUSH_SPELLING(KIND, VALUE, MEMBER)                              \
4802 {                                                                       \
4803   int depth = SPELLING_DEPTH ();                                        \
4804                                                                         \
4805   if (depth >= spelling_size)                                           \
4806     {                                                                   \
4807       spelling_size += 10;                                              \
4808       spelling_base = XRESIZEVEC (struct spelling, spelling_base,       \
4809                                   spelling_size);                       \
4810       RESTORE_SPELLING_DEPTH (depth);                                   \
4811     }                                                                   \
4812                                                                         \
4813   spelling->kind = (KIND);                                              \
4814   spelling->MEMBER = (VALUE);                                           \
4815   spelling++;                                                           \
4816 }
4817
4818 /* Push STRING on the stack.  Printed literally.  */
4819
4820 static void
4821 push_string (const char *string)
4822 {
4823   PUSH_SPELLING (SPELLING_STRING, string, u.s);
4824 }
4825
4826 /* Push a member name on the stack.  Printed as '.' STRING.  */
4827
4828 static void
4829 push_member_name (tree decl)
4830 {
4831   const char *const string
4832     = DECL_NAME (decl) ? IDENTIFIER_POINTER (DECL_NAME (decl)) : "<anonymous>";
4833   PUSH_SPELLING (SPELLING_MEMBER, string, u.s);
4834 }
4835
4836 /* Push an array bounds on the stack.  Printed as [BOUNDS].  */
4837
4838 static void
4839 push_array_bounds (unsigned HOST_WIDE_INT bounds)
4840 {
4841   PUSH_SPELLING (SPELLING_BOUNDS, bounds, u.i);
4842 }
4843
4844 /* Compute the maximum size in bytes of the printed spelling.  */
4845
4846 static int
4847 spelling_length (void)
4848 {
4849   int size = 0;
4850   struct spelling *p;
4851
4852   for (p = spelling_base; p < spelling; p++)
4853     {
4854       if (p->kind == SPELLING_BOUNDS)
4855         size += 25;
4856       else
4857         size += strlen (p->u.s) + 1;
4858     }
4859
4860   return size;
4861 }
4862
4863 /* Print the spelling to BUFFER and return it.  */
4864
4865 static char *
4866 print_spelling (char *buffer)
4867 {
4868   char *d = buffer;
4869   struct spelling *p;
4870
4871   for (p = spelling_base; p < spelling; p++)
4872     if (p->kind == SPELLING_BOUNDS)
4873       {
4874         sprintf (d, "[" HOST_WIDE_INT_PRINT_UNSIGNED "]", p->u.i);
4875         d += strlen (d);
4876       }
4877     else
4878       {
4879         const char *s;
4880         if (p->kind == SPELLING_MEMBER)
4881           *d++ = '.';
4882         for (s = p->u.s; (*d = *s++); d++)
4883           ;
4884       }
4885   *d++ = '\0';
4886   return buffer;
4887 }
4888
4889 /* Issue an error message for a bad initializer component.
4890    MSGID identifies the message.
4891    The component name is taken from the spelling stack.  */
4892
4893 void
4894 error_init (const char *msgid)
4895 {
4896   char *ofwhat;
4897
4898   error ("%s", _(msgid));
4899   ofwhat = print_spelling ((char *) alloca (spelling_length () + 1));
4900   if (*ofwhat)
4901     error ("(near initialization for %qs)", ofwhat);
4902 }
4903
4904 /* Issue a pedantic warning for a bad initializer component.  OPT is
4905    the option OPT_* (from options.h) controlling this warning or 0 if
4906    it is unconditionally given.  MSGID identifies the message.  The
4907    component name is taken from the spelling stack.  */
4908
4909 void
4910 pedwarn_init (location_t location, int opt, const char *msgid)
4911 {
4912   char *ofwhat;
4913
4914   pedwarn (location, opt, "%s", _(msgid));
4915   ofwhat = print_spelling ((char *) alloca (spelling_length () + 1));
4916   if (*ofwhat)
4917     pedwarn (location, opt, "(near initialization for %qs)", ofwhat);
4918 }
4919
4920 /* Issue a warning for a bad initializer component.  
4921
4922    OPT is the OPT_W* value corresponding to the warning option that
4923    controls this warning.  MSGID identifies the message.  The
4924    component name is taken from the spelling stack.  */
4925
4926 static void
4927 warning_init (int opt, const char *msgid)
4928 {
4929   char *ofwhat;
4930
4931   warning (opt, "%s", _(msgid));
4932   ofwhat = print_spelling ((char *) alloca (spelling_length () + 1));
4933   if (*ofwhat)
4934     warning (opt, "(near initialization for %qs)", ofwhat);
4935 }
4936 \f
4937 /* If TYPE is an array type and EXPR is a parenthesized string
4938    constant, warn if pedantic that EXPR is being used to initialize an
4939    object of type TYPE.  */
4940
4941 void
4942 maybe_warn_string_init (tree type, struct c_expr expr)
4943 {
4944   if (pedantic
4945       && TREE_CODE (type) == ARRAY_TYPE
4946       && TREE_CODE (expr.value) == STRING_CST
4947       && expr.original_code != STRING_CST)
4948     pedwarn_init (input_location, OPT_pedantic, 
4949                   "array initialized from parenthesized string constant");
4950 }
4951
4952 /* Digest the parser output INIT as an initializer for type TYPE.
4953    Return a C expression of type TYPE to represent the initial value.
4954
4955    NULL_POINTER_CONSTANT is true if INIT is a null pointer constant.
4956
4957    If INIT is a string constant, STRICT_STRING is true if it is
4958    unparenthesized or we should not warn here for it being parenthesized.
4959    For other types of INIT, STRICT_STRING is not used.
4960
4961    REQUIRE_CONSTANT requests an error if non-constant initializers or
4962    elements are seen.  */
4963
4964 static tree
4965 digest_init (tree type, tree init, bool null_pointer_constant,
4966              bool strict_string, int require_constant)
4967 {
4968   enum tree_code code = TREE_CODE (type);
4969   tree inside_init = init;
4970   bool maybe_const = true;
4971
4972   if (type == error_mark_node
4973       || !init
4974       || init == error_mark_node
4975       || TREE_TYPE (init) == error_mark_node)
4976     return error_mark_node;
4977
4978   STRIP_TYPE_NOPS (inside_init);
4979
4980   inside_init = c_fully_fold (inside_init, require_constant, &maybe_const);
4981   inside_init = decl_constant_value_for_optimization (inside_init);
4982
4983   /* Initialization of an array of chars from a string constant
4984      optionally enclosed in braces.  */
4985
4986   if (code == ARRAY_TYPE && inside_init
4987       && TREE_CODE (inside_init) == STRING_CST)
4988     {
4989       tree typ1 = TYPE_MAIN_VARIANT (TREE_TYPE (type));
4990       /* Note that an array could be both an array of character type
4991          and an array of wchar_t if wchar_t is signed char or unsigned
4992          char.  */
4993       bool char_array = (typ1 == char_type_node
4994                          || typ1 == signed_char_type_node
4995                          || typ1 == unsigned_char_type_node);
4996       bool wchar_array = !!comptypes (typ1, wchar_type_node);
4997       bool char16_array = !!comptypes (typ1, char16_type_node);
4998       bool char32_array = !!comptypes (typ1, char32_type_node);
4999
5000       if (char_array || wchar_array || char16_array || char32_array)
5001         {
5002           struct c_expr expr;
5003           tree typ2 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (inside_init)));
5004           expr.value = inside_init;
5005           expr.original_code = (strict_string ? STRING_CST : ERROR_MARK);
5006           maybe_warn_string_init (type, expr);
5007
5008           if (comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (inside_init)),
5009                          TYPE_MAIN_VARIANT (type)))
5010             return inside_init;
5011
5012           if (char_array)
5013             {
5014               if (typ2 != char_type_node)
5015                 {
5016                   error_init ("char-array initialized from wide string");
5017                   return error_mark_node;
5018                 }
5019             }
5020           else
5021             {
5022               if (typ2 == char_type_node)
5023                 {
5024                   error_init ("wide character array initialized from non-wide "
5025                               "string");
5026                   return error_mark_node;
5027                 }
5028               else if (!comptypes(typ1, typ2))
5029                 {
5030                   error_init ("wide character array initialized from "
5031                               "incompatible wide string");
5032                   return error_mark_node;
5033                 }
5034             }
5035
5036           TREE_TYPE (inside_init) = type;
5037           if (TYPE_DOMAIN (type) != 0
5038               && TYPE_SIZE (type) != 0
5039               && TREE_CODE (TYPE_SIZE (type)) == INTEGER_CST
5040               /* Subtract the size of a single (possibly wide) character
5041                  because it's ok to ignore the terminating null char
5042                  that is counted in the length of the constant.  */
5043               && 0 > compare_tree_int (TYPE_SIZE_UNIT (type),
5044                                        TREE_STRING_LENGTH (inside_init)
5045                                        - (TYPE_PRECISION (typ1)
5046                                           / BITS_PER_UNIT)))
5047             pedwarn_init (input_location, 0, 
5048                           "initializer-string for array of chars is too long");
5049
5050           return inside_init;
5051         }
5052       else if (INTEGRAL_TYPE_P (typ1))
5053         {
5054           error_init ("array of inappropriate type initialized "
5055                       "from string constant");
5056           return error_mark_node;
5057         }
5058     }
5059
5060   /* Build a VECTOR_CST from a *constant* vector constructor.  If the
5061      vector constructor is not constant (e.g. {1,2,3,foo()}) then punt
5062      below and handle as a constructor.  */
5063   if (code == VECTOR_TYPE
5064       && TREE_CODE (TREE_TYPE (inside_init)) == VECTOR_TYPE
5065       && vector_types_convertible_p (TREE_TYPE (inside_init), type, true)
5066       && TREE_CONSTANT (inside_init))
5067     {
5068       if (TREE_CODE (inside_init) == VECTOR_CST
5069           && comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (inside_init)),
5070                         TYPE_MAIN_VARIANT (type)))
5071         return inside_init;
5072
5073       if (TREE_CODE (inside_init) == CONSTRUCTOR)
5074         {
5075           unsigned HOST_WIDE_INT ix;
5076           tree value;
5077           bool constant_p = true;
5078
5079           /* Iterate through elements and check if all constructor
5080              elements are *_CSTs.  */
5081           FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (inside_init), ix, value)
5082             if (!CONSTANT_CLASS_P (value))
5083               {
5084                 constant_p = false;
5085                 break;
5086               }
5087
5088           if (constant_p)
5089             return build_vector_from_ctor (type,
5090                                            CONSTRUCTOR_ELTS (inside_init));
5091         }
5092     }
5093
5094   if (warn_sequence_point)
5095     verify_sequence_points (inside_init);
5096
5097   /* Any type can be initialized
5098      from an expression of the same type, optionally with braces.  */
5099
5100   if (inside_init && TREE_TYPE (inside_init) != 0
5101       && (comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (inside_init)),
5102                      TYPE_MAIN_VARIANT (type))
5103           || (code == ARRAY_TYPE
5104               && comptypes (TREE_TYPE (inside_init), type))
5105           || (code == VECTOR_TYPE
5106               && comptypes (TREE_TYPE (inside_init), type))
5107           || (code == POINTER_TYPE
5108               && TREE_CODE (TREE_TYPE (inside_init)) == ARRAY_TYPE
5109               && comptypes (TREE_TYPE (TREE_TYPE (inside_init)),
5110                             TREE_TYPE (type)))))
5111     {
5112       if (code == POINTER_TYPE)
5113         {
5114           if (TREE_CODE (TREE_TYPE (inside_init)) == ARRAY_TYPE)
5115             {
5116               if (TREE_CODE (inside_init) == STRING_CST
5117                   || TREE_CODE (inside_init) == COMPOUND_LITERAL_EXPR)
5118                 inside_init = array_to_pointer_conversion (inside_init);
5119               else
5120                 {
5121                   error_init ("invalid use of non-lvalue array");
5122                   return error_mark_node;
5123                 }
5124             }
5125         }
5126
5127       if (code == VECTOR_TYPE)
5128         /* Although the types are compatible, we may require a
5129            conversion.  */
5130         inside_init = convert (type, inside_init);
5131
5132       if (require_constant
5133           && (code == VECTOR_TYPE || !flag_isoc99)
5134           && TREE_CODE (inside_init) == COMPOUND_LITERAL_EXPR)
5135         {
5136           /* As an extension, allow initializing objects with static storage
5137              duration with compound literals (which are then treated just as
5138              the brace enclosed list they contain).  Also allow this for
5139              vectors, as we can only assign them with compound literals.  */
5140           tree decl = COMPOUND_LITERAL_EXPR_DECL (inside_init);
5141           inside_init = DECL_INITIAL (decl);
5142         }
5143
5144       if (code == ARRAY_TYPE && TREE_CODE (inside_init) != STRING_CST
5145           && TREE_CODE (inside_init) != CONSTRUCTOR)
5146         {
5147           error_init ("array initialized from non-constant array expression");
5148           return error_mark_node;
5149         }
5150
5151       /* Compound expressions can only occur here if -pedantic or
5152          -pedantic-errors is specified.  In the later case, we always want
5153          an error.  In the former case, we simply want a warning.  */
5154       if (require_constant && pedantic
5155           && TREE_CODE (inside_init) == COMPOUND_EXPR)
5156         {
5157           inside_init
5158             = valid_compound_expr_initializer (inside_init,
5159                                                TREE_TYPE (inside_init));
5160           if (inside_init == error_mark_node)
5161             error_init ("initializer element is not constant");
5162           else
5163             pedwarn_init (input_location, OPT_pedantic,
5164                           "initializer element is not constant");
5165           if (flag_pedantic_errors)
5166             inside_init = error_mark_node;
5167         }
5168       else if (require_constant
5169                && !initializer_constant_valid_p (inside_init,
5170                                                  TREE_TYPE (inside_init)))
5171         {
5172           error_init ("initializer element is not constant");
5173           inside_init = error_mark_node;
5174         }
5175       else if (require_constant && !maybe_const)
5176         pedwarn_init (input_location, 0,
5177                       "initializer element is not a constant expression");
5178
5179       /* Added to enable additional -Wmissing-format-attribute warnings.  */
5180       if (TREE_CODE (TREE_TYPE (inside_init)) == POINTER_TYPE)
5181         inside_init = convert_for_assignment (type, inside_init, ic_init,
5182                                               null_pointer_constant,
5183                                               NULL_TREE, NULL_TREE, 0);
5184       return inside_init;
5185     }
5186
5187   /* Handle scalar types, including conversions.  */
5188
5189   if (code == INTEGER_TYPE || code == REAL_TYPE || code == FIXED_POINT_TYPE
5190       || code == POINTER_TYPE || code == ENUMERAL_TYPE || code == BOOLEAN_TYPE
5191       || code == COMPLEX_TYPE || code == VECTOR_TYPE)
5192     {
5193       if (TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE
5194           && (TREE_CODE (init) == STRING_CST
5195               || TREE_CODE (init) == COMPOUND_LITERAL_EXPR))
5196         inside_init = init = array_to_pointer_conversion (init);
5197       inside_init
5198         = convert_for_assignment (type, inside_init, ic_init,
5199                                   null_pointer_constant,
5200                                   NULL_TREE, NULL_TREE, 0);
5201
5202       /* Check to see if we have already given an error message.  */
5203       if (inside_init == error_mark_node)
5204         ;
5205       else if (require_constant && !TREE_CONSTANT (inside_init))
5206         {
5207           error_init ("initializer element is not constant");
5208           inside_init = error_mark_node;
5209         }
5210       else if (require_constant
5211                && !initializer_constant_valid_p (inside_init,
5212                                                  TREE_TYPE (inside_init)))
5213         {
5214           error_init ("initializer element is not computable at load time");
5215           inside_init = error_mark_node;
5216         }
5217       else if (require_constant && !maybe_const)
5218         pedwarn_init (input_location, 0,
5219                       "initializer element is not a constant expression");
5220
5221       return inside_init;
5222     }
5223
5224   /* Come here only for records and arrays.  */
5225
5226   if (COMPLETE_TYPE_P (type) && TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
5227     {
5228       error_init ("variable-sized object may not be initialized");
5229       return error_mark_node;
5230     }
5231
5232   error_init ("invalid initializer");
5233   return error_mark_node;
5234 }
5235 \f
5236 /* Handle initializers that use braces.  */
5237
5238 /* Type of object we are accumulating a constructor for.
5239    This type is always a RECORD_TYPE, UNION_TYPE or ARRAY_TYPE.  */
5240 static tree constructor_type;
5241
5242 /* For a RECORD_TYPE or UNION_TYPE, this is the chain of fields
5243    left to fill.  */
5244 static tree constructor_fields;
5245
5246 /* For an ARRAY_TYPE, this is the specified index
5247    at which to store the next element we get.  */
5248 static tree constructor_index;
5249
5250 /* For an ARRAY_TYPE, this is the maximum index.  */
5251 static tree constructor_max_index;
5252
5253 /* For a RECORD_TYPE, this is the first field not yet written out.  */
5254 static tree constructor_unfilled_fields;
5255
5256 /* For an ARRAY_TYPE, this is the index of the first element
5257    not yet written out.  */
5258 static tree constructor_unfilled_index;
5259
5260 /* In a RECORD_TYPE, the byte index of the next consecutive field.
5261    This is so we can generate gaps between fields, when appropriate.  */
5262 static tree constructor_bit_index;
5263
5264 /* If we are saving up the elements rather than allocating them,
5265    this is the list of elements so far (in reverse order,
5266    most recent first).  */
5267 static VEC(constructor_elt,gc) *constructor_elements;
5268
5269 /* 1 if constructor should be incrementally stored into a constructor chain,
5270    0 if all the elements should be kept in AVL tree.  */
5271 static int constructor_incremental;
5272
5273 /* 1 if so far this constructor's elements are all compile-time constants.  */
5274 static int constructor_constant;
5275
5276 /* 1 if so far this constructor's elements are all valid address constants.  */
5277 static int constructor_simple;
5278
5279 /* 1 if this constructor has an element that cannot be part of a
5280    constant expression.  */
5281 static int constructor_nonconst;
5282
5283 /* 1 if this constructor is erroneous so far.  */
5284 static int constructor_erroneous;
5285
5286 /* Structure for managing pending initializer elements, organized as an
5287    AVL tree.  */
5288
5289 struct init_node
5290 {
5291   struct init_node *left, *right;
5292   struct init_node *parent;
5293   int balance;
5294   tree purpose;
5295   tree value;
5296 };
5297
5298 /* Tree of pending elements at this constructor level.
5299    These are elements encountered out of order
5300    which belong at places we haven't reached yet in actually
5301    writing the output.
5302    Will never hold tree nodes across GC runs.  */
5303 static struct init_node *constructor_pending_elts;
5304
5305 /* The SPELLING_DEPTH of this constructor.  */
5306 static int constructor_depth;
5307
5308 /* DECL node for which an initializer is being read.
5309    0 means we are reading a constructor expression
5310    such as (struct foo) {...}.  */
5311 static tree constructor_decl;
5312
5313 /* Nonzero if this is an initializer for a top-level decl.  */
5314 static int constructor_top_level;
5315
5316 /* Nonzero if there were any member designators in this initializer.  */
5317 static int constructor_designated;
5318
5319 /* Nesting depth of designator list.  */
5320 static int designator_depth;
5321
5322 /* Nonzero if there were diagnosed errors in this designator list.  */
5323 static int designator_erroneous;
5324
5325 \f
5326 /* This stack has a level for each implicit or explicit level of
5327    structuring in the initializer, including the outermost one.  It
5328    saves the values of most of the variables above.  */
5329
5330 struct constructor_range_stack;
5331
5332 struct constructor_stack
5333 {
5334   struct constructor_stack *next;
5335   tree type;
5336   tree fields;
5337   tree index;
5338   tree max_index;
5339   tree unfilled_index;
5340   tree unfilled_fields;
5341   tree bit_index;
5342   VEC(constructor_elt,gc) *elements;
5343   struct init_node *pending_elts;
5344   int offset;
5345   int depth;
5346   /* If value nonzero, this value should replace the entire
5347      constructor at this level.  */
5348   struct c_expr replacement_value;
5349   struct constructor_range_stack *range_stack;
5350   char constant;
5351   char simple;
5352   char nonconst;
5353   char implicit;
5354   char erroneous;
5355   char outer;
5356   char incremental;
5357   char designated;
5358 };
5359
5360 static struct constructor_stack *constructor_stack;
5361
5362 /* This stack represents designators from some range designator up to
5363    the last designator in the list.  */
5364
5365 struct constructor_range_stack
5366 {
5367   struct constructor_range_stack *next, *prev;
5368   struct constructor_stack *stack;
5369   tree range_start;
5370   tree index;
5371   tree range_end;
5372   tree fields;
5373 };
5374
5375 static struct constructor_range_stack *constructor_range_stack;
5376
5377 /* This stack records separate initializers that are nested.
5378    Nested initializers can't happen in ANSI C, but GNU C allows them
5379    in cases like { ... (struct foo) { ... } ... }.  */
5380
5381 struct initializer_stack
5382 {
5383   struct initializer_stack *next;
5384   tree decl;
5385   struct constructor_stack *constructor_stack;
5386   struct constructor_range_stack *constructor_range_stack;
5387   VEC(constructor_elt,gc) *elements;
5388   struct spelling *spelling;
5389   struct spelling *spelling_base;
5390   int spelling_size;
5391   char top_level;
5392   char require_constant_value;
5393   char require_constant_elements;
5394 };
5395
5396 static struct initializer_stack *initializer_stack;
5397 \f
5398 /* Prepare to parse and output the initializer for variable DECL.  */
5399
5400 void
5401 start_init (tree decl, tree asmspec_tree ATTRIBUTE_UNUSED, int top_level)
5402 {
5403   const char *locus;
5404   struct initializer_stack *p = XNEW (struct initializer_stack);
5405
5406   p->decl = constructor_decl;
5407   p->require_constant_value = require_constant_value;
5408   p->require_constant_elements = require_constant_elements;
5409   p->constructor_stack = constructor_stack;
5410   p->constructor_range_stack = constructor_range_stack;
5411   p->elements = constructor_elements;
5412   p->spelling = spelling;
5413   p->spelling_base = spelling_base;
5414   p->spelling_size = spelling_size;
5415   p->top_level = constructor_top_level;
5416   p->next = initializer_stack;
5417   initializer_stack = p;
5418
5419   constructor_decl = decl;
5420   constructor_designated = 0;
5421   constructor_top_level = top_level;
5422
5423   if (decl != 0 && decl != error_mark_node)
5424     {
5425       require_constant_value = TREE_STATIC (decl);
5426       require_constant_elements
5427         = ((TREE_STATIC (decl) || (pedantic && !flag_isoc99))
5428            /* For a scalar, you can always use any value to initialize,
5429               even within braces.  */
5430            && (TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
5431                || TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE
5432                || TREE_CODE (TREE_TYPE (decl)) == UNION_TYPE
5433                || TREE_CODE (TREE_TYPE (decl)) == QUAL_UNION_TYPE));
5434       locus = IDENTIFIER_POINTER (DECL_NAME (decl));
5435     }
5436   else
5437     {
5438       require_constant_value = 0;
5439       require_constant_elements = 0;
5440       locus = "(anonymous)";
5441     }
5442
5443   constructor_stack = 0;
5444   constructor_range_stack = 0;
5445
5446   missing_braces_mentioned = 0;
5447
5448   spelling_base = 0;
5449   spelling_size = 0;
5450   RESTORE_SPELLING_DEPTH (0);
5451
5452   if (locus)
5453     push_string (locus);
5454 }
5455
5456 void
5457 finish_init (void)
5458 {
5459   struct initializer_stack *p = initializer_stack;
5460
5461   /* Free the whole constructor stack of this initializer.  */
5462   while (constructor_stack)
5463     {
5464       struct constructor_stack *q = constructor_stack;
5465       constructor_stack = q->next;
5466       free (q);
5467     }
5468
5469   gcc_assert (!constructor_range_stack);
5470
5471   /* Pop back to the data of the outer initializer (if any).  */
5472   free (spelling_base);
5473
5474   constructor_decl = p->decl;
5475   require_constant_value = p->require_constant_value;
5476   require_constant_elements = p->require_constant_elements;
5477   constructor_stack = p->constructor_stack;
5478   constructor_range_stack = p->constructor_range_stack;
5479   constructor_elements = p->elements;
5480   spelling = p->spelling;
5481   spelling_base = p->spelling_base;
5482   spelling_size = p->spelling_size;
5483   constructor_top_level = p->top_level;
5484   initializer_stack = p->next;
5485   free (p);
5486 }
5487 \f
5488 /* Call here when we see the initializer is surrounded by braces.
5489    This is instead of a call to push_init_level;
5490    it is matched by a call to pop_init_level.
5491
5492    TYPE is the type to initialize, for a constructor expression.
5493    For an initializer for a decl, TYPE is zero.  */
5494
5495 void
5496 really_start_incremental_init (tree type)
5497 {
5498   struct constructor_stack *p = XNEW (struct constructor_stack);
5499
5500   if (type == 0)
5501     type = TREE_TYPE (constructor_decl);
5502
5503   if (targetm.vector_opaque_p (type))
5504     error ("opaque vector types cannot be initialized");
5505
5506   p->type = constructor_type;
5507   p->fields = constructor_fields;
5508   p->index = constructor_index;
5509   p->max_index = constructor_max_index;
5510   p->unfilled_index = constructor_unfilled_index;
5511   p->unfilled_fields = constructor_unfilled_fields;
5512   p->bit_index = constructor_bit_index;
5513   p->elements = constructor_elements;
5514   p->constant = constructor_constant;
5515   p->simple = constructor_simple;
5516   p->nonconst = constructor_nonconst;
5517   p->erroneous = constructor_erroneous;
5518   p->pending_elts = constructor_pending_elts;
5519   p->depth = constructor_depth;
5520   p->replacement_value.value = 0;
5521   p->replacement_value.original_code = ERROR_MARK;
5522   p->implicit = 0;
5523   p->range_stack = 0;
5524   p->outer = 0;
5525   p->incremental = constructor_incremental;
5526   p->designated = constructor_designated;
5527   p->next = 0;
5528   constructor_stack = p;
5529
5530   constructor_constant = 1;
5531   constructor_simple = 1;
5532   constructor_nonconst = 0;
5533   constructor_depth = SPELLING_DEPTH ();
5534   constructor_elements = 0;
5535   constructor_pending_elts = 0;
5536   constructor_type = type;
5537   constructor_incremental = 1;
5538   constructor_designated = 0;
5539   designator_depth = 0;
5540   designator_erroneous = 0;
5541
5542   if (TREE_CODE (constructor_type) == RECORD_TYPE
5543       || TREE_CODE (constructor_type) == UNION_TYPE)
5544     {
5545       constructor_fields = TYPE_FIELDS (constructor_type);
5546       /* Skip any nameless bit fields at the beginning.  */
5547       while (constructor_fields != 0 && DECL_C_BIT_FIELD (constructor_fields)
5548              && DECL_NAME (constructor_fields) == 0)
5549         constructor_fields = TREE_CHAIN (constructor_fields);
5550
5551       constructor_unfilled_fields = constructor_fields;
5552       constructor_bit_index = bitsize_zero_node;
5553     }
5554   else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
5555     {
5556       if (TYPE_DOMAIN (constructor_type))
5557         {
5558           constructor_max_index
5559             = TYPE_MAX_VALUE (TYPE_DOMAIN (constructor_type));
5560
5561           /* Detect non-empty initializations of zero-length arrays.  */
5562           if (constructor_max_index == NULL_TREE
5563               && TYPE_SIZE (constructor_type))
5564             constructor_max_index = build_int_cst (NULL_TREE, -1);
5565
5566           /* constructor_max_index needs to be an INTEGER_CST.  Attempts
5567              to initialize VLAs will cause a proper error; avoid tree
5568              checking errors as well by setting a safe value.  */
5569           if (constructor_max_index
5570               && TREE_CODE (constructor_max_index) != INTEGER_CST)
5571             constructor_max_index = build_int_cst (NULL_TREE, -1);
5572
5573           constructor_index
5574             = convert (bitsizetype,
5575                        TYPE_MIN_VALUE (TYPE_DOMAIN (constructor_type)));
5576         }
5577       else
5578         {
5579           constructor_index = bitsize_zero_node;
5580           constructor_max_index = NULL_TREE;
5581         }
5582
5583       constructor_unfilled_index = constructor_index;
5584     }
5585   else if (TREE_CODE (constructor_type) == VECTOR_TYPE)
5586     {
5587       /* Vectors are like simple fixed-size arrays.  */
5588       constructor_max_index =
5589         build_int_cst (NULL_TREE, TYPE_VECTOR_SUBPARTS (constructor_type) - 1);
5590       constructor_index = bitsize_zero_node;
5591       constructor_unfilled_index = constructor_index;
5592     }
5593   else
5594     {
5595       /* Handle the case of int x = {5}; */
5596       constructor_fields = constructor_type;
5597       constructor_unfilled_fields = constructor_type;
5598     }
5599 }
5600 \f
5601 /* Push down into a subobject, for initialization.
5602    If this is for an explicit set of braces, IMPLICIT is 0.
5603    If it is because the next element belongs at a lower level,
5604    IMPLICIT is 1 (or 2 if the push is because of designator list).  */
5605
5606 void
5607 push_init_level (int implicit)
5608 {
5609   struct constructor_stack *p;
5610   tree value = NULL_TREE;
5611
5612   /* If we've exhausted any levels that didn't have braces,
5613      pop them now.  If implicit == 1, this will have been done in
5614      process_init_element; do not repeat it here because in the case
5615      of excess initializers for an empty aggregate this leads to an
5616      infinite cycle of popping a level and immediately recreating
5617      it.  */
5618   if (implicit != 1)
5619     {
5620       while (constructor_stack->implicit)
5621         {
5622           if ((TREE_CODE (constructor_type) == RECORD_TYPE
5623                || TREE_CODE (constructor_type) == UNION_TYPE)
5624               && constructor_fields == 0)
5625             process_init_element (pop_init_level (1), true);
5626           else if (TREE_CODE (constructor_type) == ARRAY_TYPE
5627                    && constructor_max_index
5628                    && tree_int_cst_lt (constructor_max_index,
5629                                        constructor_index))
5630             process_init_element (pop_init_level (1), true);
5631           else
5632             break;
5633         }
5634     }
5635
5636   /* Unless this is an explicit brace, we need to preserve previous
5637      content if any.  */
5638   if (implicit)
5639     {
5640       if ((TREE_CODE (constructor_type) == RECORD_TYPE
5641            || TREE_CODE (constructor_type) == UNION_TYPE)
5642           && constructor_fields)
5643         value = find_init_member (constructor_fields);
5644       else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
5645         value = find_init_member (constructor_index);
5646     }
5647
5648   p = XNEW (struct constructor_stack);
5649   p->type = constructor_type;
5650   p->fields = constructor_fields;
5651   p->index = constructor_index;
5652   p->max_index = constructor_max_index;
5653   p->unfilled_index = constructor_unfilled_index;
5654   p->unfilled_fields = constructor_unfilled_fields;
5655   p->bit_index = constructor_bit_index;
5656   p->elements = constructor_elements;
5657   p->constant = constructor_constant;
5658   p->simple = constructor_simple;
5659   p->nonconst = constructor_nonconst;
5660   p->erroneous = constructor_erroneous;
5661   p->pending_elts = constructor_pending_elts;
5662   p->depth = constructor_depth;
5663   p->replacement_value.value = 0;
5664   p->replacement_value.original_code = ERROR_MARK;
5665   p->implicit = implicit;
5666   p->outer = 0;
5667   p->incremental = constructor_incremental;
5668   p->designated = constructor_designated;
5669   p->next = constructor_stack;
5670   p->range_stack = 0;
5671   constructor_stack = p;
5672
5673   constructor_constant = 1;
5674   constructor_simple = 1;
5675   constructor_nonconst = 0;
5676   constructor_depth = SPELLING_DEPTH ();
5677   constructor_elements = 0;
5678   constructor_incremental = 1;
5679   constructor_designated = 0;
5680   constructor_pending_elts = 0;
5681   if (!implicit)
5682     {
5683       p->range_stack = constructor_range_stack;
5684       constructor_range_stack = 0;
5685       designator_depth = 0;
5686       designator_erroneous = 0;
5687     }
5688
5689   /* Don't die if an entire brace-pair level is superfluous
5690      in the containing level.  */
5691   if (constructor_type == 0)
5692     ;
5693   else if (TREE_CODE (constructor_type) == RECORD_TYPE
5694            || TREE_CODE (constructor_type) == UNION_TYPE)
5695     {
5696       /* Don't die if there are extra init elts at the end.  */
5697       if (constructor_fields == 0)
5698         constructor_type = 0;
5699       else
5700         {
5701           constructor_type = TREE_TYPE (constructor_fields);
5702           push_member_name (constructor_fields);
5703           constructor_depth++;
5704         }
5705     }
5706   else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
5707     {
5708       constructor_type = TREE_TYPE (constructor_type);
5709       push_array_bounds (tree_low_cst (constructor_index, 1));
5710       constructor_depth++;
5711     }
5712
5713   if (constructor_type == 0)
5714     {
5715       error_init ("extra brace group at end of initializer");
5716       constructor_fields = 0;
5717       constructor_unfilled_fields = 0;
5718       return;
5719     }
5720
5721   if (value && TREE_CODE (value) == CONSTRUCTOR)
5722     {
5723       constructor_constant = TREE_CONSTANT (value);
5724       constructor_simple = TREE_STATIC (value);
5725       constructor_nonconst = CONSTRUCTOR_NON_CONST (value);
5726       constructor_elements = CONSTRUCTOR_ELTS (value);
5727       if (!VEC_empty (constructor_elt, constructor_elements)
5728           && (TREE_CODE (constructor_type) == RECORD_TYPE
5729               || TREE_CODE (constructor_type) == ARRAY_TYPE))
5730         set_nonincremental_init ();
5731     }
5732
5733   if (implicit == 1 && warn_missing_braces && !missing_braces_mentioned)
5734     {
5735       missing_braces_mentioned = 1;
5736       warning_init (OPT_Wmissing_braces, "missing braces around initializer");
5737     }
5738
5739   if (TREE_CODE (constructor_type) == RECORD_TYPE
5740            || TREE_CODE (constructor_type) == UNION_TYPE)
5741     {
5742       constructor_fields = TYPE_FIELDS (constructor_type);
5743       /* Skip any nameless bit fields at the beginning.  */
5744       while (constructor_fields != 0 && DECL_C_BIT_FIELD (constructor_fields)
5745              && DECL_NAME (constructor_fields) == 0)
5746         constructor_fields = TREE_CHAIN (constructor_fields);
5747
5748       constructor_unfilled_fields = constructor_fields;
5749       constructor_bit_index = bitsize_zero_node;
5750     }
5751   else if (TREE_CODE (constructor_type) == VECTOR_TYPE)
5752     {
5753       /* Vectors are like simple fixed-size arrays.  */
5754       constructor_max_index =
5755         build_int_cst (NULL_TREE, TYPE_VECTOR_SUBPARTS (constructor_type) - 1);
5756       constructor_index = convert (bitsizetype, integer_zero_node);
5757       constructor_unfilled_index = constructor_index;
5758     }
5759   else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
5760     {
5761       if (TYPE_DOMAIN (constructor_type))
5762         {
5763           constructor_max_index
5764             = TYPE_MAX_VALUE (TYPE_DOMAIN (constructor_type));
5765
5766           /* Detect non-empty initializations of zero-length arrays.  */
5767           if (constructor_max_index == NULL_TREE
5768               && TYPE_SIZE (constructor_type))
5769             constructor_max_index = build_int_cst (NULL_TREE, -1);
5770
5771           /* constructor_max_index needs to be an INTEGER_CST.  Attempts
5772              to initialize VLAs will cause a proper error; avoid tree
5773              checking errors as well by setting a safe value.  */
5774           if (constructor_max_index
5775               && TREE_CODE (constructor_max_index) != INTEGER_CST)
5776             constructor_max_index = build_int_cst (NULL_TREE, -1);
5777
5778           constructor_index
5779             = convert (bitsizetype,
5780                        TYPE_MIN_VALUE (TYPE_DOMAIN (constructor_type)));
5781         }
5782       else
5783         constructor_index = bitsize_zero_node;
5784
5785       constructor_unfilled_index = constructor_index;
5786       if (value && TREE_CODE (value) == STRING_CST)
5787         {
5788           /* We need to split the char/wchar array into individual
5789              characters, so that we don't have to special case it
5790              everywhere.  */
5791           set_nonincremental_init_from_string (value);
5792         }
5793     }
5794   else
5795     {
5796       if (constructor_type != error_mark_node)
5797         warning_init (0, "braces around scalar initializer");
5798       constructor_fields = constructor_type;
5799       constructor_unfilled_fields = constructor_type;
5800     }
5801 }
5802
5803 /* At the end of an implicit or explicit brace level,
5804    finish up that level of constructor.  If a single expression
5805    with redundant braces initialized that level, return the
5806    c_expr structure for that expression.  Otherwise, the original_code
5807    element is set to ERROR_MARK.
5808    If we were outputting the elements as they are read, return 0 as the value
5809    from inner levels (process_init_element ignores that),
5810    but return error_mark_node as the value from the outermost level
5811    (that's what we want to put in DECL_INITIAL).
5812    Otherwise, return a CONSTRUCTOR expression as the value.  */
5813
5814 struct c_expr
5815 pop_init_level (int implicit)
5816 {
5817   struct constructor_stack *p;
5818   struct c_expr ret;
5819   ret.value = 0;
5820   ret.original_code = ERROR_MARK;
5821
5822   if (implicit == 0)
5823     {
5824       /* When we come to an explicit close brace,
5825          pop any inner levels that didn't have explicit braces.  */
5826       while (constructor_stack->implicit)
5827         process_init_element (pop_init_level (1), true);
5828
5829       gcc_assert (!constructor_range_stack);
5830     }
5831
5832   /* Now output all pending elements.  */
5833   constructor_incremental = 1;
5834   output_pending_init_elements (1);
5835
5836   p = constructor_stack;
5837
5838   /* Error for initializing a flexible array member, or a zero-length
5839      array member in an inappropriate context.  */
5840   if (constructor_type && constructor_fields
5841       && TREE_CODE (constructor_type) == ARRAY_TYPE
5842       && TYPE_DOMAIN (constructor_type)
5843       && !TYPE_MAX_VALUE (TYPE_DOMAIN (constructor_type)))
5844     {
5845       /* Silently discard empty initializations.  The parser will
5846          already have pedwarned for empty brackets.  */
5847       if (integer_zerop (constructor_unfilled_index))
5848         constructor_type = NULL_TREE;
5849       else
5850         {
5851           gcc_assert (!TYPE_SIZE (constructor_type));
5852
5853           if (constructor_depth > 2)
5854             error_init ("initialization of flexible array member in a nested context");
5855           else
5856             pedwarn_init (input_location, OPT_pedantic,
5857                           "initialization of a flexible array member");
5858
5859           /* We have already issued an error message for the existence
5860              of a flexible array member not at the end of the structure.
5861              Discard the initializer so that we do not die later.  */
5862           if (TREE_CHAIN (constructor_fields) != NULL_TREE)
5863             constructor_type = NULL_TREE;
5864         }
5865     }
5866
5867   /* Warn when some struct elements are implicitly initialized to zero.  */
5868   if (warn_missing_field_initializers
5869       && constructor_type
5870       && TREE_CODE (constructor_type) == RECORD_TYPE
5871       && constructor_unfilled_fields)
5872     {
5873         /* Do not warn for flexible array members or zero-length arrays.  */
5874         while (constructor_unfilled_fields
5875                && (!DECL_SIZE (constructor_unfilled_fields)
5876                    || integer_zerop (DECL_SIZE (constructor_unfilled_fields))))
5877           constructor_unfilled_fields = TREE_CHAIN (constructor_unfilled_fields);
5878
5879         /* Do not warn if this level of the initializer uses member
5880            designators; it is likely to be deliberate.  */
5881         if (constructor_unfilled_fields && !constructor_designated)
5882           {
5883             push_member_name (constructor_unfilled_fields);
5884             warning_init (OPT_Wmissing_field_initializers,
5885                           "missing initializer");
5886             RESTORE_SPELLING_DEPTH (constructor_depth);
5887           }
5888     }
5889
5890   /* Pad out the end of the structure.  */
5891   if (p->replacement_value.value)
5892     /* If this closes a superfluous brace pair,
5893        just pass out the element between them.  */
5894     ret = p->replacement_value;
5895   else if (constructor_type == 0)
5896     ;
5897   else if (TREE_CODE (constructor_type) != RECORD_TYPE
5898            && TREE_CODE (constructor_type) != UNION_TYPE
5899            && TREE_CODE (constructor_type) != ARRAY_TYPE
5900            && TREE_CODE (constructor_type) != VECTOR_TYPE)
5901     {
5902       /* A nonincremental scalar initializer--just return
5903          the element, after verifying there is just one.  */
5904       if (VEC_empty (constructor_elt,constructor_elements))
5905         {
5906           if (!constructor_erroneous)
5907             error_init ("empty scalar initializer");
5908           ret.value = error_mark_node;
5909         }
5910       else if (VEC_length (constructor_elt,constructor_elements) != 1)
5911         {
5912           error_init ("extra elements in scalar initializer");
5913           ret.value = VEC_index (constructor_elt,constructor_elements,0)->value;
5914         }
5915       else
5916         ret.value = VEC_index (constructor_elt,constructor_elements,0)->value;
5917     }
5918   else
5919     {
5920       if (constructor_erroneous)
5921         ret.value = error_mark_node;
5922       else
5923         {
5924           ret.value = build_constructor (constructor_type,
5925                                          constructor_elements);
5926           if (constructor_constant)
5927             TREE_CONSTANT (ret.value) = 1;
5928           if (constructor_constant && constructor_simple)
5929             TREE_STATIC (ret.value) = 1;
5930           if (constructor_nonconst)
5931             CONSTRUCTOR_NON_CONST (ret.value) = 1;
5932         }
5933     }
5934
5935   if (ret.value && TREE_CODE (ret.value) != CONSTRUCTOR)
5936     {
5937       if (constructor_nonconst)
5938         ret.original_code = C_MAYBE_CONST_EXPR;
5939       else if (ret.original_code == C_MAYBE_CONST_EXPR)
5940         ret.original_code = ERROR_MARK;
5941     }
5942
5943   constructor_type = p->type;
5944   constructor_fields = p->fields;
5945   constructor_index = p->index;
5946   constructor_max_index = p->max_index;
5947   constructor_unfilled_index = p->unfilled_index;
5948   constructor_unfilled_fields = p->unfilled_fields;
5949   constructor_bit_index = p->bit_index;
5950   constructor_elements = p->elements;
5951   constructor_constant = p->constant;
5952   constructor_simple = p->simple;
5953   constructor_nonconst = p->nonconst;
5954   constructor_erroneous = p->erroneous;
5955   constructor_incremental = p->incremental;
5956   constructor_designated = p->designated;
5957   constructor_pending_elts = p->pending_elts;
5958   constructor_depth = p->depth;
5959   if (!p->implicit)
5960     constructor_range_stack = p->range_stack;
5961   RESTORE_SPELLING_DEPTH (constructor_depth);
5962
5963   constructor_stack = p->next;
5964   free (p);
5965
5966   if (ret.value == 0 && constructor_stack == 0)
5967     ret.value = error_mark_node;
5968   return ret;
5969 }
5970
5971 /* Common handling for both array range and field name designators.
5972    ARRAY argument is nonzero for array ranges.  Returns zero for success.  */
5973
5974 static int
5975 set_designator (int array)
5976 {
5977   tree subtype;
5978   enum tree_code subcode;
5979
5980   /* Don't die if an entire brace-pair level is superfluous
5981      in the containing level.  */
5982   if (constructor_type == 0)
5983     return 1;
5984
5985   /* If there were errors in this designator list already, bail out
5986      silently.  */
5987   if (designator_erroneous)
5988     return 1;
5989
5990   if (!designator_depth)
5991     {
5992       gcc_assert (!constructor_range_stack);
5993
5994       /* Designator list starts at the level of closest explicit
5995          braces.  */
5996       while (constructor_stack->implicit)
5997         process_init_element (pop_init_level (1), true);
5998       constructor_designated = 1;
5999       return 0;
6000     }
6001
6002   switch (TREE_CODE (constructor_type))
6003     {
6004     case  RECORD_TYPE:
6005     case  UNION_TYPE:
6006       subtype = TREE_TYPE (constructor_fields);
6007       if (subtype != error_mark_node)
6008         subtype = TYPE_MAIN_VARIANT (subtype);
6009       break;
6010     case ARRAY_TYPE:
6011       subtype = TYPE_MAIN_VARIANT (TREE_TYPE (constructor_type));
6012       break;
6013     default:
6014       gcc_unreachable ();
6015     }
6016
6017   subcode = TREE_CODE (subtype);
6018   if (array && subcode != ARRAY_TYPE)
6019     {
6020       error_init ("array index in non-array initializer");
6021       return 1;
6022     }
6023   else if (!array && subcode != RECORD_TYPE && subcode != UNION_TYPE)
6024     {
6025       error_init ("field name not in record or union initializer");
6026       return 1;
6027     }
6028
6029   constructor_designated = 1;
6030   push_init_level (2);
6031   return 0;
6032 }
6033
6034 /* If there are range designators in designator list, push a new designator
6035    to constructor_range_stack.  RANGE_END is end of such stack range or
6036    NULL_TREE if there is no range designator at this level.  */
6037
6038 static void
6039 push_range_stack (tree range_end)
6040 {
6041   struct constructor_range_stack *p;
6042
6043   p = GGC_NEW (struct constructor_range_stack);
6044   p->prev = constructor_range_stack;
6045   p->next = 0;
6046   p->fields = constructor_fields;
6047   p->range_start = constructor_index;
6048   p->index = constructor_index;
6049   p->stack = constructor_stack;
6050   p->range_end = range_end;
6051   if (constructor_range_stack)
6052     constructor_range_stack->next = p;
6053   constructor_range_stack = p;
6054 }
6055
6056 /* Within an array initializer, specify the next index to be initialized.
6057    FIRST is that index.  If LAST is nonzero, then initialize a range
6058    of indices, running from FIRST through LAST.  */
6059
6060 void
6061 set_init_index (tree first, tree last)
6062 {
6063   if (set_designator (1))
6064     return;
6065
6066   designator_erroneous = 1;
6067
6068   if (!INTEGRAL_TYPE_P (TREE_TYPE (first))
6069       || (last && !INTEGRAL_TYPE_P (TREE_TYPE (last))))
6070     {
6071       error_init ("array index in initializer not of integer type");
6072       return;
6073     }
6074
6075   if (TREE_CODE (first) != INTEGER_CST)
6076     error_init ("nonconstant array index in initializer");
6077   else if (last != 0 && TREE_CODE (last) != INTEGER_CST)
6078     error_init ("nonconstant array index in initializer");
6079   else if (TREE_CODE (constructor_type) != ARRAY_TYPE)
6080     error_init ("array index in non-array initializer");
6081   else if (tree_int_cst_sgn (first) == -1)
6082     error_init ("array index in initializer exceeds array bounds");
6083   else if (constructor_max_index
6084            && tree_int_cst_lt (constructor_max_index, first))
6085     error_init ("array index in initializer exceeds array bounds");
6086   else
6087     {
6088       constant_expression_warning (first);
6089       if (last)
6090         constant_expression_warning (last);
6091       constructor_index = convert (bitsizetype, first);
6092
6093       if (last)
6094         {
6095           if (tree_int_cst_equal (first, last))
6096             last = 0;
6097           else if (tree_int_cst_lt (last, first))
6098             {
6099               error_init ("empty index range in initializer");
6100               last = 0;
6101             }
6102           else
6103             {
6104               last = convert (bitsizetype, last);
6105               if (constructor_max_index != 0
6106                   && tree_int_cst_lt (constructor_max_index, last))
6107                 {
6108                   error_init ("array index range in initializer exceeds array bounds");
6109                   last = 0;
6110                 }
6111             }
6112         }
6113
6114       designator_depth++;
6115       designator_erroneous = 0;
6116       if (constructor_range_stack || last)
6117         push_range_stack (last);
6118     }
6119 }
6120
6121 /* Within a struct initializer, specify the next field to be initialized.  */
6122
6123 void
6124 set_init_label (tree fieldname)
6125 {
6126   tree tail;
6127
6128   if (set_designator (0))
6129     return;
6130
6131   designator_erroneous = 1;
6132
6133   if (TREE_CODE (constructor_type) != RECORD_TYPE
6134       && TREE_CODE (constructor_type) != UNION_TYPE)
6135     {
6136       error_init ("field name not in record or union initializer");
6137       return;
6138     }
6139
6140   for (tail = TYPE_FIELDS (constructor_type); tail;
6141        tail = TREE_CHAIN (tail))
6142     {
6143       if (DECL_NAME (tail) == fieldname)
6144         break;
6145     }
6146
6147   if (tail == 0)
6148     error ("unknown field %qE specified in initializer", fieldname);
6149   else
6150     {
6151       constructor_fields = tail;
6152       designator_depth++;
6153       designator_erroneous = 0;
6154       if (constructor_range_stack)
6155         push_range_stack (NULL_TREE);
6156     }
6157 }
6158 \f
6159 /* Add a new initializer to the tree of pending initializers.  PURPOSE
6160    identifies the initializer, either array index or field in a structure.
6161    VALUE is the value of that index or field.
6162
6163    IMPLICIT is true if value comes from pop_init_level (1),
6164    the new initializer has been merged with the existing one
6165    and thus no warnings should be emitted about overriding an
6166    existing initializer.  */
6167
6168 static void
6169 add_pending_init (tree purpose, tree value, bool implicit)
6170 {
6171   struct init_node *p, **q, *r;
6172
6173   q = &constructor_pending_elts;
6174   p = 0;
6175
6176   if (TREE_CODE (constructor_type) == ARRAY_TYPE)
6177     {
6178       while (*q != 0)
6179         {
6180           p = *q;
6181           if (tree_int_cst_lt (purpose, p->purpose))
6182             q = &p->left;
6183           else if (tree_int_cst_lt (p->purpose, purpose))
6184             q = &p->right;
6185           else
6186             {
6187               if (!implicit)
6188                 {
6189                   if (TREE_SIDE_EFFECTS (p->value))
6190                     warning_init (0, "initialized field with side-effects overwritten");
6191                   else if (warn_override_init)
6192                     warning_init (OPT_Woverride_init, "initialized field overwritten");
6193                 }
6194               p->value = value;
6195               return;
6196             }
6197         }
6198     }
6199   else
6200     {
6201       tree bitpos;
6202
6203       bitpos = bit_position (purpose);
6204       while (*q != NULL)
6205         {
6206           p = *q;
6207           if (tree_int_cst_lt (bitpos, bit_position (p->purpose)))
6208             q = &p->left;
6209           else if (p->purpose != purpose)
6210             q = &p->right;
6211           else
6212             {
6213               if (!implicit)
6214                 {
6215                   if (TREE_SIDE_EFFECTS (p->value))
6216                     warning_init (0, "initialized field with side-effects overwritten");
6217                   else if (warn_override_init)
6218                     warning_init (OPT_Woverride_init, "initialized field overwritten");
6219                 }
6220               p->value = value;
6221               return;
6222             }
6223         }
6224     }
6225
6226   r = GGC_NEW (struct init_node);
6227   r->purpose = purpose;
6228   r->value = value;
6229
6230   *q = r;
6231   r->parent = p;
6232   r->left = 0;
6233   r->right = 0;
6234   r->balance = 0;
6235
6236   while (p)
6237     {
6238       struct init_node *s;
6239
6240       if (r == p->left)
6241         {
6242           if (p->balance == 0)
6243             p->balance = -1;
6244           else if (p->balance < 0)
6245             {
6246               if (r->balance < 0)
6247                 {
6248                   /* L rotation.  */
6249                   p->left = r->right;
6250                   if (p->left)
6251                     p->left->parent = p;
6252                   r->right = p;
6253
6254                   p->balance = 0;
6255                   r->balance = 0;
6256
6257                   s = p->parent;
6258                   p->parent = r;
6259                   r->parent = s;
6260                   if (s)
6261                     {
6262                       if (s->left == p)
6263                         s->left = r;
6264                       else
6265                         s->right = r;
6266                     }
6267                   else
6268                     constructor_pending_elts = r;
6269                 }
6270               else
6271                 {
6272                   /* LR rotation.  */
6273                   struct init_node *t = r->right;
6274
6275                   r->right = t->left;
6276                   if (r->right)
6277                     r->right->parent = r;
6278                   t->left = r;
6279
6280                   p->left = t->right;
6281                   if (p->left)
6282                     p->left->parent = p;
6283                   t->right = p;
6284
6285                   p->balance = t->balance < 0;
6286                   r->balance = -(t->balance > 0);
6287                   t->balance = 0;
6288
6289                   s = p->parent;
6290                   p->parent = t;
6291                   r->parent = t;
6292                   t->parent = s;
6293                   if (s)
6294                     {
6295                       if (s->left == p)
6296                         s->left = t;
6297                       else
6298                         s->right = t;
6299                     }
6300                   else
6301                     constructor_pending_elts = t;
6302                 }
6303               break;
6304             }
6305           else
6306             {
6307               /* p->balance == +1; growth of left side balances the node.  */
6308               p->balance = 0;
6309               break;
6310             }
6311         }
6312       else /* r == p->right */
6313         {
6314           if (p->balance == 0)
6315             /* Growth propagation from right side.  */
6316             p->balance++;
6317           else if (p->balance > 0)
6318             {
6319               if (r->balance > 0)
6320                 {
6321                   /* R rotation.  */
6322                   p->right = r->left;
6323                   if (p->right)
6324                     p->right->parent = p;
6325                   r->left = p;
6326
6327                   p->balance = 0;
6328                   r->balance = 0;
6329
6330                   s = p->parent;
6331                   p->parent = r;
6332                   r->parent = s;
6333                   if (s)
6334                     {
6335                       if (s->left == p)
6336                         s->left = r;
6337                       else
6338                         s->right = r;
6339                     }
6340                   else
6341                     constructor_pending_elts = r;
6342                 }
6343               else /* r->balance == -1 */
6344                 {
6345                   /* RL rotation */
6346                   struct init_node *t = r->left;
6347
6348                   r->left = t->right;
6349                   if (r->left)
6350                     r->left->parent = r;
6351                   t->right = r;
6352
6353                   p->right = t->left;
6354                   if (p->right)
6355                     p->right->parent = p;
6356                   t->left = p;
6357
6358                   r->balance = (t->balance < 0);
6359                   p->balance = -(t->balance > 0);
6360                   t->balance = 0;
6361
6362                   s = p->parent;
6363                   p->parent = t;
6364                   r->parent = t;
6365                   t->parent = s;
6366                   if (s)
6367                     {
6368                       if (s->left == p)
6369                         s->left = t;
6370                       else
6371                         s->right = t;
6372                     }
6373                   else
6374                     constructor_pending_elts = t;
6375                 }
6376               break;
6377             }
6378           else
6379             {
6380               /* p->balance == -1; growth of right side balances the node.  */
6381               p->balance = 0;
6382               break;
6383             }
6384         }
6385
6386       r = p;
6387       p = p->parent;
6388     }
6389 }
6390
6391 /* Build AVL tree from a sorted chain.  */
6392
6393 static void
6394 set_nonincremental_init (void)
6395 {
6396   unsigned HOST_WIDE_INT ix;
6397   tree index, value;
6398
6399   if (TREE_CODE (constructor_type) != RECORD_TYPE
6400       && TREE_CODE (constructor_type) != ARRAY_TYPE)
6401     return;
6402
6403   FOR_EACH_CONSTRUCTOR_ELT (constructor_elements, ix, index, value)
6404     add_pending_init (index, value, false);
6405   constructor_elements = 0;
6406   if (TREE_CODE (constructor_type) == RECORD_TYPE)
6407     {
6408       constructor_unfilled_fields = TYPE_FIELDS (constructor_type);
6409       /* Skip any nameless bit fields at the beginning.  */
6410       while (constructor_unfilled_fields != 0
6411              && DECL_C_BIT_FIELD (constructor_unfilled_fields)
6412              && DECL_NAME (constructor_unfilled_fields) == 0)
6413         constructor_unfilled_fields = TREE_CHAIN (constructor_unfilled_fields);
6414
6415     }
6416   else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
6417     {
6418       if (TYPE_DOMAIN (constructor_type))
6419         constructor_unfilled_index
6420             = convert (bitsizetype,
6421                        TYPE_MIN_VALUE (TYPE_DOMAIN (constructor_type)));
6422       else
6423         constructor_unfilled_index = bitsize_zero_node;
6424     }
6425   constructor_incremental = 0;
6426 }
6427
6428 /* Build AVL tree from a string constant.  */
6429
6430 static void
6431 set_nonincremental_init_from_string (tree str)
6432 {
6433   tree value, purpose, type;
6434   HOST_WIDE_INT val[2];
6435   const char *p, *end;
6436   int byte, wchar_bytes, charwidth, bitpos;
6437
6438   gcc_assert (TREE_CODE (constructor_type) == ARRAY_TYPE);
6439
6440   wchar_bytes = TYPE_PRECISION (TREE_TYPE (TREE_TYPE (str))) / BITS_PER_UNIT;
6441   charwidth = TYPE_PRECISION (char_type_node);
6442   type = TREE_TYPE (constructor_type);
6443   p = TREE_STRING_POINTER (str);
6444   end = p + TREE_STRING_LENGTH (str);
6445
6446   for (purpose = bitsize_zero_node;
6447        p < end && !tree_int_cst_lt (constructor_max_index, purpose);
6448        purpose = size_binop (PLUS_EXPR, purpose, bitsize_one_node))
6449     {
6450       if (wchar_bytes == 1)
6451         {
6452           val[1] = (unsigned char) *p++;
6453           val[0] = 0;
6454         }
6455       else
6456         {
6457           val[0] = 0;
6458           val[1] = 0;
6459           for (byte = 0; byte < wchar_bytes; byte++)
6460             {
6461               if (BYTES_BIG_ENDIAN)
6462                 bitpos = (wchar_bytes - byte - 1) * charwidth;
6463               else
6464                 bitpos = byte * charwidth;
6465               val[bitpos < HOST_BITS_PER_WIDE_INT]
6466                 |= ((unsigned HOST_WIDE_INT) ((unsigned char) *p++))
6467                    << (bitpos % HOST_BITS_PER_WIDE_INT);
6468             }
6469         }
6470
6471       if (!TYPE_UNSIGNED (type))
6472         {
6473           bitpos = ((wchar_bytes - 1) * charwidth) + HOST_BITS_PER_CHAR;
6474           if (bitpos < HOST_BITS_PER_WIDE_INT)
6475             {
6476               if (val[1] & (((HOST_WIDE_INT) 1) << (bitpos - 1)))
6477                 {
6478                   val[1] |= ((HOST_WIDE_INT) -1) << bitpos;
6479                   val[0] = -1;
6480                 }
6481             }
6482           else if (bitpos == HOST_BITS_PER_WIDE_INT)
6483             {
6484               if (val[1] < 0)
6485                 val[0] = -1;
6486             }
6487           else if (val[0] & (((HOST_WIDE_INT) 1)
6488                              << (bitpos - 1 - HOST_BITS_PER_WIDE_INT)))
6489             val[0] |= ((HOST_WIDE_INT) -1)
6490                       << (bitpos - HOST_BITS_PER_WIDE_INT);
6491         }
6492
6493       value = build_int_cst_wide (type, val[1], val[0]);
6494       add_pending_init (purpose, value, false);
6495     }
6496
6497   constructor_incremental = 0;
6498 }
6499
6500 /* Return value of FIELD in pending initializer or zero if the field was
6501    not initialized yet.  */
6502
6503 static tree
6504 find_init_member (tree field)
6505 {
6506   struct init_node *p;
6507
6508   if (TREE_CODE (constructor_type) == ARRAY_TYPE)
6509     {
6510       if (constructor_incremental
6511           && tree_int_cst_lt (field, constructor_unfilled_index))
6512         set_nonincremental_init ();
6513
6514       p = constructor_pending_elts;
6515       while (p)
6516         {
6517           if (tree_int_cst_lt (field, p->purpose))
6518             p = p->left;
6519           else if (tree_int_cst_lt (p->purpose, field))
6520             p = p->right;
6521           else
6522             return p->value;
6523         }
6524     }
6525   else if (TREE_CODE (constructor_type) == RECORD_TYPE)
6526     {
6527       tree bitpos = bit_position (field);
6528
6529       if (constructor_incremental
6530           && (!constructor_unfilled_fields
6531               || tree_int_cst_lt (bitpos,
6532                                   bit_position (constructor_unfilled_fields))))
6533         set_nonincremental_init ();
6534
6535       p = constructor_pending_elts;
6536       while (p)
6537         {
6538           if (field == p->purpose)
6539             return p->value;
6540           else if (tree_int_cst_lt (bitpos, bit_position (p->purpose)))
6541             p = p->left;
6542           else
6543             p = p->right;
6544         }
6545     }
6546   else if (TREE_CODE (constructor_type) == UNION_TYPE)
6547     {
6548       if (!VEC_empty (constructor_elt, constructor_elements)
6549           && (VEC_last (constructor_elt, constructor_elements)->index
6550               == field))
6551         return VEC_last (constructor_elt, constructor_elements)->value;
6552     }
6553   return 0;
6554 }
6555
6556 /* "Output" the next constructor element.
6557    At top level, really output it to assembler code now.
6558    Otherwise, collect it in a list from which we will make a CONSTRUCTOR.
6559    TYPE is the data type that the containing data type wants here.
6560    FIELD is the field (a FIELD_DECL) or the index that this element fills.
6561    If VALUE is a string constant, STRICT_STRING is true if it is
6562    unparenthesized or we should not warn here for it being parenthesized.
6563    For other types of VALUE, STRICT_STRING is not used.
6564
6565    PENDING if non-nil means output pending elements that belong
6566    right after this element.  (PENDING is normally 1;
6567    it is 0 while outputting pending elements, to avoid recursion.)
6568
6569    IMPLICIT is true if value comes from pop_init_level (1),
6570    the new initializer has been merged with the existing one
6571    and thus no warnings should be emitted about overriding an
6572    existing initializer.  */
6573
6574 static void
6575 output_init_element (tree value, bool strict_string, tree type, tree field,
6576                      int pending, bool implicit)
6577 {
6578   constructor_elt *celt;
6579   bool maybe_const = true;
6580   bool npc;
6581
6582   if (type == error_mark_node || value == error_mark_node)
6583     {
6584       constructor_erroneous = 1;
6585       return;
6586     }
6587   if (TREE_CODE (TREE_TYPE (value)) == ARRAY_TYPE
6588       && (TREE_CODE (value) == STRING_CST
6589           || TREE_CODE (value) == COMPOUND_LITERAL_EXPR)
6590       && !(TREE_CODE (value) == STRING_CST
6591            && TREE_CODE (type) == ARRAY_TYPE
6592            && INTEGRAL_TYPE_P (TREE_TYPE (type)))
6593       && !comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (value)),
6594                      TYPE_MAIN_VARIANT (type)))
6595     value = array_to_pointer_conversion (value);
6596
6597   if (TREE_CODE (value) == COMPOUND_LITERAL_EXPR
6598       && require_constant_value && !flag_isoc99 && pending)
6599     {
6600       /* As an extension, allow initializing objects with static storage
6601          duration with compound literals (which are then treated just as
6602          the brace enclosed list they contain).  */
6603       tree decl = COMPOUND_LITERAL_EXPR_DECL (value);
6604       value = DECL_INITIAL (decl);
6605     }
6606
6607   npc = null_pointer_constant_p (value);
6608   value = c_fully_fold (value, require_constant_value, &maybe_const);
6609
6610   if (value == error_mark_node)
6611     constructor_erroneous = 1;
6612   else if (!TREE_CONSTANT (value))
6613     constructor_constant = 0;
6614   else if (!initializer_constant_valid_p (value, TREE_TYPE (value))
6615            || ((TREE_CODE (constructor_type) == RECORD_TYPE
6616                 || TREE_CODE (constructor_type) == UNION_TYPE)
6617                && DECL_C_BIT_FIELD (field)
6618                && TREE_CODE (value) != INTEGER_CST))
6619     constructor_simple = 0;
6620   if (!maybe_const)
6621     constructor_nonconst = 1;
6622
6623   if (!initializer_constant_valid_p (value, TREE_TYPE (value)))
6624     {
6625       if (require_constant_value)
6626         {
6627           error_init ("initializer element is not constant");
6628           value = error_mark_node;
6629         }
6630       else if (require_constant_elements)
6631         pedwarn (input_location, 0,
6632                  "initializer element is not computable at load time");
6633     }
6634   else if (!maybe_const
6635            && (require_constant_value || require_constant_elements))
6636     pedwarn_init (input_location, 0,
6637                   "initializer element is not a constant expression");
6638
6639   /* If this field is empty (and not at the end of structure),
6640      don't do anything other than checking the initializer.  */
6641   if (field
6642       && (TREE_TYPE (field) == error_mark_node
6643           || (COMPLETE_TYPE_P (TREE_TYPE (field))
6644               && integer_zerop (TYPE_SIZE (TREE_TYPE (field)))
6645               && (TREE_CODE (constructor_type) == ARRAY_TYPE
6646                   || TREE_CHAIN (field)))))
6647     return;
6648
6649   value = digest_init (type, value, npc, strict_string,
6650                        require_constant_value);
6651   if (value == error_mark_node)
6652     {
6653       constructor_erroneous = 1;
6654       return;
6655     }
6656   if (require_constant_value || require_constant_elements)
6657     constant_expression_warning (value);
6658
6659   /* If this element doesn't come next in sequence,
6660      put it on constructor_pending_elts.  */
6661   if (TREE_CODE (constructor_type) == ARRAY_TYPE
6662       && (!constructor_incremental
6663           || !tree_int_cst_equal (field, constructor_unfilled_index)))
6664     {
6665       if (constructor_incremental
6666           && tree_int_cst_lt (field, constructor_unfilled_index))
6667         set_nonincremental_init ();
6668
6669       add_pending_init (field, value, implicit);
6670       return;
6671     }
6672   else if (TREE_CODE (constructor_type) == RECORD_TYPE
6673            && (!constructor_incremental
6674                || field != constructor_unfilled_fields))
6675     {
6676       /* We do this for records but not for unions.  In a union,
6677          no matter which field is specified, it can be initialized
6678          right away since it starts at the beginning of the union.  */
6679       if (constructor_incremental)
6680         {
6681           if (!constructor_unfilled_fields)
6682             set_nonincremental_init ();
6683           else
6684             {
6685               tree bitpos, unfillpos;
6686
6687               bitpos = bit_position (field);
6688               unfillpos = bit_position (constructor_unfilled_fields);
6689
6690               if (tree_int_cst_lt (bitpos, unfillpos))
6691                 set_nonincremental_init ();
6692             }
6693         }
6694
6695       add_pending_init (field, value, implicit);
6696       return;
6697     }
6698   else if (TREE_CODE (constructor_type) == UNION_TYPE
6699            && !VEC_empty (constructor_elt, constructor_elements))
6700     {
6701       if (!implicit)
6702         {
6703           if (TREE_SIDE_EFFECTS (VEC_last (constructor_elt,
6704                                            constructor_elements)->value))
6705             warning_init (0,
6706                           "initialized field with side-effects overwritten");
6707           else if (warn_override_init)
6708             warning_init (OPT_Woverride_init, "initialized field overwritten");
6709         }
6710
6711       /* We can have just one union field set.  */
6712       constructor_elements = 0;
6713     }
6714
6715   /* Otherwise, output this element either to
6716      constructor_elements or to the assembler file.  */
6717
6718   celt = VEC_safe_push (constructor_elt, gc, constructor_elements, NULL);
6719   celt->index = field;
6720   celt->value = value;
6721
6722   /* Advance the variable that indicates sequential elements output.  */
6723   if (TREE_CODE (constructor_type) == ARRAY_TYPE)
6724     constructor_unfilled_index
6725       = size_binop (PLUS_EXPR, constructor_unfilled_index,
6726                     bitsize_one_node);
6727   else if (TREE_CODE (constructor_type) == RECORD_TYPE)
6728     {
6729       constructor_unfilled_fields
6730         = TREE_CHAIN (constructor_unfilled_fields);
6731
6732       /* Skip any nameless bit fields.  */
6733       while (constructor_unfilled_fields != 0
6734              && DECL_C_BIT_FIELD (constructor_unfilled_fields)
6735              && DECL_NAME (constructor_unfilled_fields) == 0)
6736         constructor_unfilled_fields =
6737           TREE_CHAIN (constructor_unfilled_fields);
6738     }
6739   else if (TREE_CODE (constructor_type) == UNION_TYPE)
6740     constructor_unfilled_fields = 0;
6741
6742   /* Now output any pending elements which have become next.  */
6743   if (pending)
6744     output_pending_init_elements (0);
6745 }
6746
6747 /* Output any pending elements which have become next.
6748    As we output elements, constructor_unfilled_{fields,index}
6749    advances, which may cause other elements to become next;
6750    if so, they too are output.
6751
6752    If ALL is 0, we return when there are
6753    no more pending elements to output now.
6754
6755    If ALL is 1, we output space as necessary so that
6756    we can output all the pending elements.  */
6757
6758 static void
6759 output_pending_init_elements (int all)
6760 {
6761   struct init_node *elt = constructor_pending_elts;
6762   tree next;
6763
6764  retry:
6765
6766   /* Look through the whole pending tree.
6767      If we find an element that should be output now,
6768      output it.  Otherwise, set NEXT to the element
6769      that comes first among those still pending.  */
6770
6771   next = 0;
6772   while (elt)
6773     {
6774       if (TREE_CODE (constructor_type) == ARRAY_TYPE)
6775         {
6776           if (tree_int_cst_equal (elt->purpose,
6777                                   constructor_unfilled_index))
6778             output_init_element (elt->value, true,
6779                                  TREE_TYPE (constructor_type),
6780                                  constructor_unfilled_index, 0, false);
6781           else if (tree_int_cst_lt (constructor_unfilled_index,
6782                                     elt->purpose))
6783             {
6784               /* Advance to the next smaller node.  */
6785               if (elt->left)
6786                 elt = elt->left;
6787               else
6788                 {
6789                   /* We have reached the smallest node bigger than the
6790                      current unfilled index.  Fill the space first.  */
6791                   next = elt->purpose;
6792                   break;
6793                 }
6794             }
6795           else
6796             {
6797               /* Advance to the next bigger node.  */
6798               if (elt->right)
6799                 elt = elt->right;
6800               else
6801                 {
6802                   /* We have reached the biggest node in a subtree.  Find
6803                      the parent of it, which is the next bigger node.  */
6804                   while (elt->parent && elt->parent->right == elt)
6805                     elt = elt->parent;
6806                   elt = elt->parent;
6807                   if (elt && tree_int_cst_lt (constructor_unfilled_index,
6808                                               elt->purpose))
6809                     {
6810                       next = elt->purpose;
6811                       break;
6812                     }
6813                 }
6814             }
6815         }
6816       else if (TREE_CODE (constructor_type) == RECORD_TYPE
6817                || TREE_CODE (constructor_type) == UNION_TYPE)
6818         {
6819           tree ctor_unfilled_bitpos, elt_bitpos;
6820
6821           /* If the current record is complete we are done.  */
6822           if (constructor_unfilled_fields == 0)
6823             break;
6824
6825           ctor_unfilled_bitpos = bit_position (constructor_unfilled_fields);
6826           elt_bitpos = bit_position (elt->purpose);
6827           /* We can't compare fields here because there might be empty
6828              fields in between.  */
6829           if (tree_int_cst_equal (elt_bitpos, ctor_unfilled_bitpos))
6830             {
6831               constructor_unfilled_fields = elt->purpose;
6832               output_init_element (elt->value, true, TREE_TYPE (elt->purpose),
6833                                    elt->purpose, 0, false);
6834             }
6835           else if (tree_int_cst_lt (ctor_unfilled_bitpos, elt_bitpos))
6836             {
6837               /* Advance to the next smaller node.  */
6838               if (elt->left)
6839                 elt = elt->left;
6840               else
6841                 {
6842                   /* We have reached the smallest node bigger than the
6843                      current unfilled field.  Fill the space first.  */
6844                   next = elt->purpose;
6845                   break;
6846                 }
6847             }
6848           else
6849             {
6850               /* Advance to the next bigger node.  */
6851               if (elt->right)
6852                 elt = elt->right;
6853               else
6854                 {
6855                   /* We have reached the biggest node in a subtree.  Find
6856                      the parent of it, which is the next bigger node.  */
6857                   while (elt->parent && elt->parent->right == elt)
6858                     elt = elt->parent;
6859                   elt = elt->parent;
6860                   if (elt
6861                       && (tree_int_cst_lt (ctor_unfilled_bitpos,
6862                                            bit_position (elt->purpose))))
6863                     {
6864                       next = elt->purpose;
6865                       break;
6866                     }
6867                 }
6868             }
6869         }
6870     }
6871
6872   /* Ordinarily return, but not if we want to output all
6873      and there are elements left.  */
6874   if (!(all && next != 0))
6875     return;
6876
6877   /* If it's not incremental, just skip over the gap, so that after
6878      jumping to retry we will output the next successive element.  */
6879   if (TREE_CODE (constructor_type) == RECORD_TYPE
6880       || TREE_CODE (constructor_type) == UNION_TYPE)
6881     constructor_unfilled_fields = next;
6882   else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
6883     constructor_unfilled_index = next;
6884
6885   /* ELT now points to the node in the pending tree with the next
6886      initializer to output.  */
6887   goto retry;
6888 }
6889 \f
6890 /* Add one non-braced element to the current constructor level.
6891    This adjusts the current position within the constructor's type.
6892    This may also start or terminate implicit levels
6893    to handle a partly-braced initializer.
6894
6895    Once this has found the correct level for the new element,
6896    it calls output_init_element.
6897
6898    IMPLICIT is true if value comes from pop_init_level (1),
6899    the new initializer has been merged with the existing one
6900    and thus no warnings should be emitted about overriding an
6901    existing initializer.  */
6902
6903 void
6904 process_init_element (struct c_expr value, bool implicit)
6905 {
6906   tree orig_value = value.value;
6907   int string_flag = orig_value != 0 && TREE_CODE (orig_value) == STRING_CST;
6908   bool strict_string = value.original_code == STRING_CST;
6909
6910   designator_depth = 0;
6911   designator_erroneous = 0;
6912
6913   /* Handle superfluous braces around string cst as in
6914      char x[] = {"foo"}; */
6915   if (string_flag
6916       && constructor_type
6917       && TREE_CODE (constructor_type) == ARRAY_TYPE
6918       && INTEGRAL_TYPE_P (TREE_TYPE (constructor_type))
6919       && integer_zerop (constructor_unfilled_index))
6920     {
6921       if (constructor_stack->replacement_value.value)
6922         error_init ("excess elements in char array initializer");
6923       constructor_stack->replacement_value = value;
6924       return;
6925     }
6926
6927   if (constructor_stack->replacement_value.value != 0)
6928     {
6929       error_init ("excess elements in struct initializer");
6930       return;
6931     }
6932
6933   /* Ignore elements of a brace group if it is entirely superfluous
6934      and has already been diagnosed.  */
6935   if (constructor_type == 0)
6936     return;
6937
6938   /* If we've exhausted any levels that didn't have braces,
6939      pop them now.  */
6940   while (constructor_stack->implicit)
6941     {
6942       if ((TREE_CODE (constructor_type) == RECORD_TYPE
6943            || TREE_CODE (constructor_type) == UNION_TYPE)
6944           && constructor_fields == 0)
6945         process_init_element (pop_init_level (1), true);
6946       else if (TREE_CODE (constructor_type) == ARRAY_TYPE
6947                && (constructor_max_index == 0
6948                    || tree_int_cst_lt (constructor_max_index,
6949                                        constructor_index)))
6950         process_init_element (pop_init_level (1), true);
6951       else
6952         break;
6953     }
6954
6955   /* In the case of [LO ... HI] = VALUE, only evaluate VALUE once.  */
6956   if (constructor_range_stack)
6957     {
6958       /* If value is a compound literal and we'll be just using its
6959          content, don't put it into a SAVE_EXPR.  */
6960       if (TREE_CODE (value.value) != COMPOUND_LITERAL_EXPR
6961           || !require_constant_value
6962           || flag_isoc99)
6963         value.value = c_save_expr (value.value);
6964     }
6965
6966   while (1)
6967     {
6968       if (TREE_CODE (constructor_type) == RECORD_TYPE)
6969         {
6970           tree fieldtype;
6971           enum tree_code fieldcode;
6972
6973           if (constructor_fields == 0)
6974             {
6975               pedwarn_init (input_location, 0,
6976                             "excess elements in struct initializer");
6977               break;
6978             }
6979
6980           fieldtype = TREE_TYPE (constructor_fields);
6981           if (fieldtype != error_mark_node)
6982             fieldtype = TYPE_MAIN_VARIANT (fieldtype);
6983           fieldcode = TREE_CODE (fieldtype);
6984
6985           /* Error for non-static initialization of a flexible array member.  */
6986           if (fieldcode == ARRAY_TYPE
6987               && !require_constant_value
6988               && TYPE_SIZE (fieldtype) == NULL_TREE
6989               && TREE_CHAIN (constructor_fields) == NULL_TREE)
6990             {
6991               error_init ("non-static initialization of a flexible array member");
6992               break;
6993             }
6994
6995           /* Accept a string constant to initialize a subarray.  */
6996           if (value.value != 0
6997               && fieldcode == ARRAY_TYPE
6998               && INTEGRAL_TYPE_P (TREE_TYPE (fieldtype))
6999               && string_flag)
7000             value.value = orig_value;
7001           /* Otherwise, if we have come to a subaggregate,
7002              and we don't have an element of its type, push into it.  */
7003           else if (value.value != 0
7004                    && value.value != error_mark_node
7005                    && TYPE_MAIN_VARIANT (TREE_TYPE (value.value)) != fieldtype
7006                    && (fieldcode == RECORD_TYPE || fieldcode == ARRAY_TYPE
7007                        || fieldcode == UNION_TYPE))
7008             {
7009               push_init_level (1);
7010               continue;
7011             }
7012
7013           if (value.value)
7014             {
7015               push_member_name (constructor_fields);
7016               output_init_element (value.value, strict_string,
7017                                    fieldtype, constructor_fields, 1, implicit);
7018               RESTORE_SPELLING_DEPTH (constructor_depth);
7019             }
7020           else
7021             /* Do the bookkeeping for an element that was
7022                directly output as a constructor.  */
7023             {
7024               /* For a record, keep track of end position of last field.  */
7025               if (DECL_SIZE (constructor_fields))
7026                 constructor_bit_index
7027                   = size_binop (PLUS_EXPR,
7028                                 bit_position (constructor_fields),
7029                                 DECL_SIZE (constructor_fields));
7030
7031               /* If the current field was the first one not yet written out,
7032                  it isn't now, so update.  */
7033               if (constructor_unfilled_fields == constructor_fields)
7034                 {
7035                   constructor_unfilled_fields = TREE_CHAIN (constructor_fields);
7036                   /* Skip any nameless bit fields.  */
7037                   while (constructor_unfilled_fields != 0
7038                          && DECL_C_BIT_FIELD (constructor_unfilled_fields)
7039                          && DECL_NAME (constructor_unfilled_fields) == 0)
7040                     constructor_unfilled_fields =
7041                       TREE_CHAIN (constructor_unfilled_fields);
7042                 }
7043             }
7044
7045           constructor_fields = TREE_CHAIN (constructor_fields);
7046           /* Skip any nameless bit fields at the beginning.  */
7047           while (constructor_fields != 0
7048                  && DECL_C_BIT_FIELD (constructor_fields)
7049                  && DECL_NAME (constructor_fields) == 0)
7050             constructor_fields = TREE_CHAIN (constructor_fields);
7051         }
7052       else if (TREE_CODE (constructor_type) == UNION_TYPE)
7053         {
7054           tree fieldtype;
7055           enum tree_code fieldcode;
7056
7057           if (constructor_fields == 0)
7058             {
7059               pedwarn_init (input_location, 0,
7060                             "excess elements in union initializer");
7061               break;
7062             }
7063
7064           fieldtype = TREE_TYPE (constructor_fields);
7065           if (fieldtype != error_mark_node)
7066             fieldtype = TYPE_MAIN_VARIANT (fieldtype);
7067           fieldcode = TREE_CODE (fieldtype);
7068
7069           /* Warn that traditional C rejects initialization of unions.
7070              We skip the warning if the value is zero.  This is done
7071              under the assumption that the zero initializer in user
7072              code appears conditioned on e.g. __STDC__ to avoid
7073              "missing initializer" warnings and relies on default
7074              initialization to zero in the traditional C case.
7075              We also skip the warning if the initializer is designated,
7076              again on the assumption that this must be conditional on
7077              __STDC__ anyway (and we've already complained about the
7078              member-designator already).  */
7079           if (!in_system_header && !constructor_designated
7080               && !(value.value && (integer_zerop (value.value)
7081                                    || real_zerop (value.value))))
7082             warning (OPT_Wtraditional, "traditional C rejects initialization "
7083                      "of unions");
7084
7085           /* Accept a string constant to initialize a subarray.  */
7086           if (value.value != 0
7087               && fieldcode == ARRAY_TYPE
7088               && INTEGRAL_TYPE_P (TREE_TYPE (fieldtype))
7089               && string_flag)
7090             value.value = orig_value;
7091           /* Otherwise, if we have come to a subaggregate,
7092              and we don't have an element of its type, push into it.  */
7093           else if (value.value != 0
7094                    && value.value != error_mark_node
7095                    && TYPE_MAIN_VARIANT (TREE_TYPE (value.value)) != fieldtype
7096                    && (fieldcode == RECORD_TYPE || fieldcode == ARRAY_TYPE
7097                        || fieldcode == UNION_TYPE))
7098             {
7099               push_init_level (1);
7100               continue;
7101             }
7102
7103           if (value.value)
7104             {
7105               push_member_name (constructor_fields);
7106               output_init_element (value.value, strict_string,
7107                                    fieldtype, constructor_fields, 1, implicit);
7108               RESTORE_SPELLING_DEPTH (constructor_depth);
7109             }
7110           else
7111             /* Do the bookkeeping for an element that was
7112                directly output as a constructor.  */
7113             {
7114               constructor_bit_index = DECL_SIZE (constructor_fields);
7115               constructor_unfilled_fields = TREE_CHAIN (constructor_fields);
7116             }
7117
7118           constructor_fields = 0;
7119         }
7120       else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
7121         {
7122           tree elttype = TYPE_MAIN_VARIANT (TREE_TYPE (constructor_type));
7123           enum tree_code eltcode = TREE_CODE (elttype);
7124
7125           /* Accept a string constant to initialize a subarray.  */
7126           if (value.value != 0
7127               && eltcode == ARRAY_TYPE
7128               && INTEGRAL_TYPE_P (TREE_TYPE (elttype))
7129               && string_flag)
7130             value.value = orig_value;
7131           /* Otherwise, if we have come to a subaggregate,
7132              and we don't have an element of its type, push into it.  */
7133           else if (value.value != 0
7134                    && value.value != error_mark_node
7135                    && TYPE_MAIN_VARIANT (TREE_TYPE (value.value)) != elttype
7136                    && (eltcode == RECORD_TYPE || eltcode == ARRAY_TYPE
7137                        || eltcode == UNION_TYPE))
7138             {
7139               push_init_level (1);
7140               continue;
7141             }
7142
7143           if (constructor_max_index != 0
7144               && (tree_int_cst_lt (constructor_max_index, constructor_index)
7145                   || integer_all_onesp (constructor_max_index)))
7146             {
7147               pedwarn_init (input_location, 0,
7148                             "excess elements in array initializer");
7149               break;
7150             }
7151
7152           /* Now output the actual element.  */
7153           if (value.value)
7154             {
7155               push_array_bounds (tree_low_cst (constructor_index, 1));
7156               output_init_element (value.value, strict_string,
7157                                    elttype, constructor_index, 1, implicit);
7158               RESTORE_SPELLING_DEPTH (constructor_depth);
7159             }
7160
7161           constructor_index
7162             = size_binop (PLUS_EXPR, constructor_index, bitsize_one_node);
7163
7164           if (!value.value)
7165             /* If we are doing the bookkeeping for an element that was
7166                directly output as a constructor, we must update
7167                constructor_unfilled_index.  */
7168             constructor_unfilled_index = constructor_index;
7169         }
7170       else if (TREE_CODE (constructor_type) == VECTOR_TYPE)
7171         {
7172           tree elttype = TYPE_MAIN_VARIANT (TREE_TYPE (constructor_type));
7173
7174          /* Do a basic check of initializer size.  Note that vectors
7175             always have a fixed size derived from their type.  */
7176           if (tree_int_cst_lt (constructor_max_index, constructor_index))
7177             {
7178               pedwarn_init (input_location, 0,
7179                             "excess elements in vector initializer");
7180               break;
7181             }
7182
7183           /* Now output the actual element.  */
7184           if (value.value)
7185             output_init_element (value.value, strict_string,
7186                                  elttype, constructor_index, 1, implicit);
7187
7188           constructor_index
7189             = size_binop (PLUS_EXPR, constructor_index, bitsize_one_node);
7190
7191           if (!value.value)
7192             /* If we are doing the bookkeeping for an element that was
7193                directly output as a constructor, we must update
7194                constructor_unfilled_index.  */
7195             constructor_unfilled_index = constructor_index;
7196         }
7197
7198       /* Handle the sole element allowed in a braced initializer
7199          for a scalar variable.  */
7200       else if (constructor_type != error_mark_node
7201                && constructor_fields == 0)
7202         {
7203           pedwarn_init (input_location, 0,
7204                         "excess elements in scalar initializer");
7205           break;
7206         }
7207       else
7208         {
7209           if (value.value)
7210             output_init_element (value.value, strict_string,
7211                                  constructor_type, NULL_TREE, 1, implicit);
7212           constructor_fields = 0;
7213         }
7214
7215       /* Handle range initializers either at this level or anywhere higher
7216          in the designator stack.  */
7217       if (constructor_range_stack)
7218         {
7219           struct constructor_range_stack *p, *range_stack;
7220           int finish = 0;
7221
7222           range_stack = constructor_range_stack;
7223           constructor_range_stack = 0;
7224           while (constructor_stack != range_stack->stack)
7225             {
7226               gcc_assert (constructor_stack->implicit);
7227               process_init_element (pop_init_level (1), true);
7228             }
7229           for (p = range_stack;
7230                !p->range_end || tree_int_cst_equal (p->index, p->range_end);
7231                p = p->prev)
7232             {
7233               gcc_assert (constructor_stack->implicit);
7234               process_init_element (pop_init_level (1), true);
7235             }
7236
7237           p->index = size_binop (PLUS_EXPR, p->index, bitsize_one_node);
7238           if (tree_int_cst_equal (p->index, p->range_end) && !p->prev)
7239             finish = 1;
7240
7241           while (1)
7242             {
7243               constructor_index = p->index;
7244               constructor_fields = p->fields;
7245               if (finish && p->range_end && p->index == p->range_start)
7246                 {
7247                   finish = 0;
7248                   p->prev = 0;
7249                 }
7250               p = p->next;
7251               if (!p)
7252                 break;
7253               push_init_level (2);
7254               p->stack = constructor_stack;
7255               if (p->range_end && tree_int_cst_equal (p->index, p->range_end))
7256                 p->index = p->range_start;
7257             }
7258
7259           if (!finish)
7260             constructor_range_stack = range_stack;
7261           continue;
7262         }
7263
7264       break;
7265     }
7266
7267   constructor_range_stack = 0;
7268 }
7269 \f
7270 /* Build a complete asm-statement, whose components are a CV_QUALIFIER
7271    (guaranteed to be 'volatile' or null) and ARGS (represented using
7272    an ASM_EXPR node).  */
7273 tree
7274 build_asm_stmt (tree cv_qualifier, tree args)
7275 {
7276   if (!ASM_VOLATILE_P (args) && cv_qualifier)
7277     ASM_VOLATILE_P (args) = 1;
7278   return add_stmt (args);
7279 }
7280
7281 /* Build an asm-expr, whose components are a STRING, some OUTPUTS,
7282    some INPUTS, and some CLOBBERS.  The latter three may be NULL.
7283    SIMPLE indicates whether there was anything at all after the
7284    string in the asm expression -- asm("blah") and asm("blah" : )
7285    are subtly different.  We use a ASM_EXPR node to represent this.  */
7286 tree
7287 build_asm_expr (tree string, tree outputs, tree inputs, tree clobbers,
7288                 bool simple)
7289 {
7290   tree tail;
7291   tree args;
7292   int i;
7293   const char *constraint;
7294   const char **oconstraints;
7295   bool allows_mem, allows_reg, is_inout;
7296   int ninputs, noutputs;
7297
7298   ninputs = list_length (inputs);
7299   noutputs = list_length (outputs);
7300   oconstraints = (const char **) alloca (noutputs * sizeof (const char *));
7301
7302   string = resolve_asm_operand_names (string, outputs, inputs);
7303
7304   /* Remove output conversions that change the type but not the mode.  */
7305   for (i = 0, tail = outputs; tail; ++i, tail = TREE_CHAIN (tail))
7306     {
7307       tree output = TREE_VALUE (tail);
7308
7309       /* ??? Really, this should not be here.  Users should be using a
7310          proper lvalue, dammit.  But there's a long history of using casts
7311          in the output operands.  In cases like longlong.h, this becomes a
7312          primitive form of typechecking -- if the cast can be removed, then
7313          the output operand had a type of the proper width; otherwise we'll
7314          get an error.  Gross, but ...  */
7315       STRIP_NOPS (output);
7316
7317       if (!lvalue_or_else (output, lv_asm))
7318         output = error_mark_node;
7319
7320       if (output != error_mark_node
7321           && (TREE_READONLY (output)
7322               || TYPE_READONLY (TREE_TYPE (output))
7323               || ((TREE_CODE (TREE_TYPE (output)) == RECORD_TYPE
7324                    || TREE_CODE (TREE_TYPE (output)) == UNION_TYPE)
7325                   && C_TYPE_FIELDS_READONLY (TREE_TYPE (output)))))
7326         readonly_error (output, lv_asm);
7327
7328       constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (tail)));
7329       oconstraints[i] = constraint;
7330
7331       if (parse_output_constraint (&constraint, i, ninputs, noutputs,
7332                                    &allows_mem, &allows_reg, &is_inout))
7333         {
7334           /* If the operand is going to end up in memory,
7335              mark it addressable.  */
7336           if (!allows_reg && !c_mark_addressable (output))
7337             output = error_mark_node;
7338         }
7339       else
7340         output = error_mark_node;
7341
7342       TREE_VALUE (tail) = output;
7343     }
7344
7345   for (i = 0, tail = inputs; tail; ++i, tail = TREE_CHAIN (tail))
7346     {
7347       tree input;
7348
7349       constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (tail)));
7350       input = TREE_VALUE (tail);
7351
7352       if (parse_input_constraint (&constraint, i, ninputs, noutputs, 0,
7353                                   oconstraints, &allows_mem, &allows_reg))
7354         {
7355           /* If the operand is going to end up in memory,
7356              mark it addressable.  */
7357           if (!allows_reg && allows_mem)
7358             {
7359               /* Strip the nops as we allow this case.  FIXME, this really
7360                  should be rejected or made deprecated.  */
7361               STRIP_NOPS (input);
7362               if (!c_mark_addressable (input))
7363                 input = error_mark_node;
7364           }
7365         }
7366       else
7367         input = error_mark_node;
7368
7369       TREE_VALUE (tail) = input;
7370     }
7371
7372   args = build_stmt (ASM_EXPR, string, outputs, inputs, clobbers);
7373
7374   /* asm statements without outputs, including simple ones, are treated
7375      as volatile.  */
7376   ASM_INPUT_P (args) = simple;
7377   ASM_VOLATILE_P (args) = (noutputs == 0);
7378
7379   return args;
7380 }
7381 \f
7382 /* Generate a goto statement to LABEL.  */
7383
7384 tree
7385 c_finish_goto_label (tree label)
7386 {
7387   tree decl = lookup_label (label);
7388   if (!decl)
7389     return NULL_TREE;
7390
7391   if (C_DECL_UNJUMPABLE_STMT_EXPR (decl))
7392     {
7393       error ("jump into statement expression");
7394       return NULL_TREE;
7395     }
7396
7397   if (C_DECL_UNJUMPABLE_VM (decl))
7398     {
7399       error ("jump into scope of identifier with variably modified type");
7400       return NULL_TREE;
7401     }
7402
7403   if (!C_DECL_UNDEFINABLE_STMT_EXPR (decl))
7404     {
7405       /* No jump from outside this statement expression context, so
7406          record that there is a jump from within this context.  */
7407       struct c_label_list *nlist;
7408       nlist = XOBNEW (&parser_obstack, struct c_label_list);
7409       nlist->next = label_context_stack_se->labels_used;
7410       nlist->label = decl;
7411       label_context_stack_se->labels_used = nlist;
7412     }
7413
7414   if (!C_DECL_UNDEFINABLE_VM (decl))
7415     {
7416       /* No jump from outside this context context of identifiers with
7417          variably modified type, so record that there is a jump from
7418          within this context.  */
7419       struct c_label_list *nlist;
7420       nlist = XOBNEW (&parser_obstack, struct c_label_list);
7421       nlist->next = label_context_stack_vm->labels_used;
7422       nlist->label = decl;
7423       label_context_stack_vm->labels_used = nlist;
7424     }
7425
7426   TREE_USED (decl) = 1;
7427   return add_stmt (build1 (GOTO_EXPR, void_type_node, decl));
7428 }
7429
7430 /* Generate a computed goto statement to EXPR.  */
7431
7432 tree
7433 c_finish_goto_ptr (tree expr)
7434 {
7435   pedwarn (input_location, OPT_pedantic, "ISO C forbids %<goto *expr;%>");
7436   expr = c_fully_fold (expr, false, NULL);
7437   expr = convert (ptr_type_node, expr);
7438   return add_stmt (build1 (GOTO_EXPR, void_type_node, expr));
7439 }
7440
7441 /* Generate a C `return' statement.  RETVAL is the expression for what
7442    to return, or a null pointer for `return;' with no value.  */
7443
7444 tree
7445 c_finish_return (tree retval)
7446 {
7447   tree valtype = TREE_TYPE (TREE_TYPE (current_function_decl)), ret_stmt;
7448   bool no_warning = false;
7449   bool npc = false;
7450
7451   if (TREE_THIS_VOLATILE (current_function_decl))
7452     warning (0, "function declared %<noreturn%> has a %<return%> statement");
7453
7454   if (retval)
7455     {
7456       npc = null_pointer_constant_p (retval);
7457       retval = c_fully_fold (retval, false, NULL);
7458     }
7459
7460   if (!retval)
7461     {
7462       current_function_returns_null = 1;
7463       if ((warn_return_type || flag_isoc99)
7464           && valtype != 0 && TREE_CODE (valtype) != VOID_TYPE)
7465         {
7466           pedwarn_c99 (input_location, flag_isoc99 ? 0 : OPT_Wreturn_type, 
7467                        "%<return%> with no value, in "
7468                        "function returning non-void");
7469           no_warning = true;
7470         }
7471     }
7472   else if (valtype == 0 || TREE_CODE (valtype) == VOID_TYPE)
7473     {
7474       current_function_returns_null = 1;
7475       if (TREE_CODE (TREE_TYPE (retval)) != VOID_TYPE)
7476         pedwarn (input_location, 0, 
7477                  "%<return%> with a value, in function returning void");
7478       else 
7479         pedwarn (input_location, OPT_pedantic, "ISO C forbids "
7480                  "%<return%> with expression, in function returning void");
7481     }
7482   else
7483     {
7484       tree t = convert_for_assignment (valtype, retval, ic_return, npc,
7485                                        NULL_TREE, NULL_TREE, 0);
7486       tree res = DECL_RESULT (current_function_decl);
7487       tree inner;
7488
7489       current_function_returns_value = 1;
7490       if (t == error_mark_node)
7491         return NULL_TREE;
7492
7493       inner = t = convert (TREE_TYPE (res), t);
7494
7495       /* Strip any conversions, additions, and subtractions, and see if
7496          we are returning the address of a local variable.  Warn if so.  */
7497       while (1)
7498         {
7499           switch (TREE_CODE (inner))
7500             {
7501             CASE_CONVERT:
7502             case NON_LVALUE_EXPR:
7503             case PLUS_EXPR:
7504             case POINTER_PLUS_EXPR:
7505               inner = TREE_OPERAND (inner, 0);
7506               continue;
7507
7508             case MINUS_EXPR:
7509               /* If the second operand of the MINUS_EXPR has a pointer
7510                  type (or is converted from it), this may be valid, so
7511                  don't give a warning.  */
7512               {
7513                 tree op1 = TREE_OPERAND (inner, 1);
7514
7515                 while (!POINTER_TYPE_P (TREE_TYPE (op1))
7516                        && (CONVERT_EXPR_P (op1)
7517                            || TREE_CODE (op1) == NON_LVALUE_EXPR))
7518                   op1 = TREE_OPERAND (op1, 0);
7519
7520                 if (POINTER_TYPE_P (TREE_TYPE (op1)))
7521                   break;
7522
7523                 inner = TREE_OPERAND (inner, 0);
7524                 continue;
7525               }
7526
7527             case ADDR_EXPR:
7528               inner = TREE_OPERAND (inner, 0);
7529
7530               while (REFERENCE_CLASS_P (inner)
7531                      && TREE_CODE (inner) != INDIRECT_REF)
7532                 inner = TREE_OPERAND (inner, 0);
7533
7534               if (DECL_P (inner)
7535                   && !DECL_EXTERNAL (inner)
7536                   && !TREE_STATIC (inner)
7537                   && DECL_CONTEXT (inner) == current_function_decl)
7538                 warning (0, "function returns address of local variable");
7539               break;
7540
7541             default:
7542               break;
7543             }
7544
7545           break;
7546         }
7547
7548       retval = build2 (MODIFY_EXPR, TREE_TYPE (res), res, t);
7549
7550       if (warn_sequence_point)
7551         verify_sequence_points (retval);
7552     }
7553
7554   ret_stmt = build_stmt (RETURN_EXPR, retval);
7555   TREE_NO_WARNING (ret_stmt) |= no_warning;
7556   return add_stmt (ret_stmt);
7557 }
7558 \f
7559 struct c_switch {
7560   /* The SWITCH_EXPR being built.  */
7561   tree switch_expr;
7562
7563   /* The original type of the testing expression, i.e. before the
7564      default conversion is applied.  */
7565   tree orig_type;
7566
7567   /* A splay-tree mapping the low element of a case range to the high
7568      element, or NULL_TREE if there is no high element.  Used to
7569      determine whether or not a new case label duplicates an old case
7570      label.  We need a tree, rather than simply a hash table, because
7571      of the GNU case range extension.  */
7572   splay_tree cases;
7573
7574   /* Number of nested statement expressions within this switch
7575      statement; if nonzero, case and default labels may not
7576      appear.  */
7577   unsigned int blocked_stmt_expr;
7578
7579   /* Scope of outermost declarations of identifiers with variably
7580      modified type within this switch statement; if nonzero, case and
7581      default labels may not appear.  */
7582   unsigned int blocked_vm;
7583
7584   /* The next node on the stack.  */
7585   struct c_switch *next;
7586 };
7587
7588 /* A stack of the currently active switch statements.  The innermost
7589    switch statement is on the top of the stack.  There is no need to
7590    mark the stack for garbage collection because it is only active
7591    during the processing of the body of a function, and we never
7592    collect at that point.  */
7593
7594 struct c_switch *c_switch_stack;
7595
7596 /* Start a C switch statement, testing expression EXP.  Return the new
7597    SWITCH_EXPR.  */
7598
7599 tree
7600 c_start_case (tree exp)
7601 {
7602   tree orig_type = error_mark_node;
7603   struct c_switch *cs;
7604
7605   if (exp != error_mark_node)
7606     {
7607       orig_type = TREE_TYPE (exp);
7608
7609       if (!INTEGRAL_TYPE_P (orig_type))
7610         {
7611           if (orig_type != error_mark_node)
7612             {
7613               error ("switch quantity not an integer");
7614               orig_type = error_mark_node;
7615             }
7616           exp = integer_zero_node;
7617         }
7618       else
7619         {
7620           tree type = TYPE_MAIN_VARIANT (orig_type);
7621
7622           if (!in_system_header
7623               && (type == long_integer_type_node
7624                   || type == long_unsigned_type_node))
7625             warning (OPT_Wtraditional, "%<long%> switch expression not "
7626                      "converted to %<int%> in ISO C");
7627
7628           exp = c_fully_fold (exp, false, NULL);
7629           exp = default_conversion (exp);
7630
7631           if (warn_sequence_point)
7632             verify_sequence_points (exp);
7633         }
7634     }
7635
7636   /* Add this new SWITCH_EXPR to the stack.  */
7637   cs = XNEW (struct c_switch);
7638   cs->switch_expr = build3 (SWITCH_EXPR, orig_type, exp, NULL_TREE, NULL_TREE);
7639   cs->orig_type = orig_type;
7640   cs->cases = splay_tree_new (case_compare, NULL, NULL);
7641   cs->blocked_stmt_expr = 0;
7642   cs->blocked_vm = 0;
7643   cs->next = c_switch_stack;
7644   c_switch_stack = cs;
7645
7646   return add_stmt (cs->switch_expr);
7647 }
7648
7649 /* Process a case label.  */
7650
7651 tree
7652 do_case (tree low_value, tree high_value)
7653 {
7654   tree label = NULL_TREE;
7655
7656   if (c_switch_stack && !c_switch_stack->blocked_stmt_expr
7657       && !c_switch_stack->blocked_vm)
7658     {
7659       label = c_add_case_label (c_switch_stack->cases,
7660                                 SWITCH_COND (c_switch_stack->switch_expr),
7661                                 c_switch_stack->orig_type,
7662                                 low_value, high_value);
7663       if (label == error_mark_node)
7664         label = NULL_TREE;
7665     }
7666   else if (c_switch_stack && c_switch_stack->blocked_stmt_expr)
7667     {
7668       if (low_value)
7669         error ("case label in statement expression not containing "
7670                "enclosing switch statement");
7671       else
7672         error ("%<default%> label in statement expression not containing "
7673                "enclosing switch statement");
7674     }
7675   else if (c_switch_stack && c_switch_stack->blocked_vm)
7676     {
7677       if (low_value)
7678         error ("case label in scope of identifier with variably modified "
7679                "type not containing enclosing switch statement");
7680       else
7681         error ("%<default%> label in scope of identifier with variably "
7682                "modified type not containing enclosing switch statement");
7683     }
7684   else if (low_value)
7685     error ("case label not within a switch statement");
7686   else
7687     error ("%<default%> label not within a switch statement");
7688
7689   return label;
7690 }
7691
7692 /* Finish the switch statement.  */
7693
7694 void
7695 c_finish_case (tree body)
7696 {
7697   struct c_switch *cs = c_switch_stack;
7698   location_t switch_location;
7699
7700   SWITCH_BODY (cs->switch_expr) = body;
7701
7702   /* We must not be within a statement expression nested in the switch
7703      at this point; we might, however, be within the scope of an
7704      identifier with variably modified type nested in the switch.  */
7705   gcc_assert (!cs->blocked_stmt_expr);
7706
7707   /* Emit warnings as needed.  */
7708   if (EXPR_HAS_LOCATION (cs->switch_expr))
7709     switch_location = EXPR_LOCATION (cs->switch_expr);
7710   else
7711     switch_location = input_location;
7712   c_do_switch_warnings (cs->cases, switch_location,
7713                         TREE_TYPE (cs->switch_expr),
7714                         SWITCH_COND (cs->switch_expr));
7715
7716   /* Pop the stack.  */
7717   c_switch_stack = cs->next;
7718   splay_tree_delete (cs->cases);
7719   XDELETE (cs);
7720 }
7721 \f
7722 /* Emit an if statement.  IF_LOCUS is the location of the 'if'.  COND,
7723    THEN_BLOCK and ELSE_BLOCK are expressions to be used; ELSE_BLOCK
7724    may be null.  NESTED_IF is true if THEN_BLOCK contains another IF
7725    statement, and was not surrounded with parenthesis.  */
7726
7727 void
7728 c_finish_if_stmt (location_t if_locus, tree cond, tree then_block,
7729                   tree else_block, bool nested_if)
7730 {
7731   tree stmt;
7732
7733   /* Diagnose an ambiguous else if if-then-else is nested inside if-then.  */
7734   if (warn_parentheses && nested_if && else_block == NULL)
7735     {
7736       tree inner_if = then_block;
7737
7738       /* We know from the grammar productions that there is an IF nested
7739          within THEN_BLOCK.  Due to labels and c99 conditional declarations,
7740          it might not be exactly THEN_BLOCK, but should be the last
7741          non-container statement within.  */
7742       while (1)
7743         switch (TREE_CODE (inner_if))
7744           {
7745           case COND_EXPR:
7746             goto found;
7747           case BIND_EXPR:
7748             inner_if = BIND_EXPR_BODY (inner_if);
7749             break;
7750           case STATEMENT_LIST:
7751             inner_if = expr_last (then_block);
7752             break;
7753           case TRY_FINALLY_EXPR:
7754           case TRY_CATCH_EXPR:
7755             inner_if = TREE_OPERAND (inner_if, 0);
7756             break;
7757           default:
7758             gcc_unreachable ();
7759           }
7760     found:
7761
7762       if (COND_EXPR_ELSE (inner_if))
7763          warning (OPT_Wparentheses,
7764                   "%Hsuggest explicit braces to avoid ambiguous %<else%>",
7765                   &if_locus);
7766     }
7767
7768   stmt = build3 (COND_EXPR, void_type_node, cond, then_block, else_block);
7769   SET_EXPR_LOCATION (stmt, if_locus);
7770   add_stmt (stmt);
7771 }
7772
7773 /* Emit a general-purpose loop construct.  START_LOCUS is the location of
7774    the beginning of the loop.  COND is the loop condition.  COND_IS_FIRST
7775    is false for DO loops.  INCR is the FOR increment expression.  BODY is
7776    the statement controlled by the loop.  BLAB is the break label.  CLAB is
7777    the continue label.  Everything is allowed to be NULL.  */
7778
7779 void
7780 c_finish_loop (location_t start_locus, tree cond, tree incr, tree body,
7781                tree blab, tree clab, bool cond_is_first)
7782 {
7783   tree entry = NULL, exit = NULL, t;
7784
7785   /* If the condition is zero don't generate a loop construct.  */
7786   if (cond && integer_zerop (cond))
7787     {
7788       if (cond_is_first)
7789         {
7790           t = build_and_jump (&blab);
7791           SET_EXPR_LOCATION (t, start_locus);
7792           add_stmt (t);
7793         }
7794     }
7795   else
7796     {
7797       tree top = build1 (LABEL_EXPR, void_type_node, NULL_TREE);
7798
7799       /* If we have an exit condition, then we build an IF with gotos either
7800          out of the loop, or to the top of it.  If there's no exit condition,
7801          then we just build a jump back to the top.  */
7802       exit = build_and_jump (&LABEL_EXPR_LABEL (top));
7803
7804       if (cond && !integer_nonzerop (cond))
7805         {
7806           /* Canonicalize the loop condition to the end.  This means
7807              generating a branch to the loop condition.  Reuse the
7808              continue label, if possible.  */
7809           if (cond_is_first)
7810             {
7811               if (incr || !clab)
7812                 {
7813                   entry = build1 (LABEL_EXPR, void_type_node, NULL_TREE);
7814                   t = build_and_jump (&LABEL_EXPR_LABEL (entry));
7815                 }
7816               else
7817                 t = build1 (GOTO_EXPR, void_type_node, clab);
7818               SET_EXPR_LOCATION (t, start_locus);
7819               add_stmt (t);
7820             }
7821
7822           t = build_and_jump (&blab);
7823           exit = fold_build3 (COND_EXPR, void_type_node, cond, exit, t);
7824           if (cond_is_first)
7825             SET_EXPR_LOCATION (exit, start_locus);
7826           else
7827             SET_EXPR_LOCATION (exit, input_location);
7828         }
7829
7830       add_stmt (top);
7831     }
7832
7833   if (body)
7834     add_stmt (body);
7835   if (clab)
7836     add_stmt (build1 (LABEL_EXPR, void_type_node, clab));
7837   if (incr)
7838     add_stmt (incr);
7839   if (entry)
7840     add_stmt (entry);
7841   if (exit)
7842     add_stmt (exit);
7843   if (blab)
7844     add_stmt (build1 (LABEL_EXPR, void_type_node, blab));
7845 }
7846
7847 tree
7848 c_finish_bc_stmt (tree *label_p, bool is_break)
7849 {
7850   bool skip;
7851   tree label = *label_p;
7852
7853   /* In switch statements break is sometimes stylistically used after
7854      a return statement.  This can lead to spurious warnings about
7855      control reaching the end of a non-void function when it is
7856      inlined.  Note that we are calling block_may_fallthru with
7857      language specific tree nodes; this works because
7858      block_may_fallthru returns true when given something it does not
7859      understand.  */
7860   skip = !block_may_fallthru (cur_stmt_list);
7861
7862   if (!label)
7863     {
7864       if (!skip)
7865         *label_p = label = create_artificial_label ();
7866     }
7867   else if (TREE_CODE (label) == LABEL_DECL)
7868     ;
7869   else switch (TREE_INT_CST_LOW (label))
7870     {
7871     case 0:
7872       if (is_break)
7873         error ("break statement not within loop or switch");
7874       else
7875         error ("continue statement not within a loop");
7876       return NULL_TREE;
7877
7878     case 1:
7879       gcc_assert (is_break);
7880       error ("break statement used with OpenMP for loop");
7881       return NULL_TREE;
7882
7883     default:
7884       gcc_unreachable ();
7885     }
7886
7887   if (skip)
7888     return NULL_TREE;
7889
7890   if (!is_break)
7891     add_stmt (build_predict_expr (PRED_CONTINUE, NOT_TAKEN));
7892
7893   return add_stmt (build1 (GOTO_EXPR, void_type_node, label));
7894 }
7895
7896 /* A helper routine for c_process_expr_stmt and c_finish_stmt_expr.  */
7897
7898 static void
7899 emit_side_effect_warnings (tree expr)
7900 {
7901   if (expr == error_mark_node)
7902     ;
7903   else if (!TREE_SIDE_EFFECTS (expr))
7904     {
7905       if (!VOID_TYPE_P (TREE_TYPE (expr)) && !TREE_NO_WARNING (expr))
7906         warning (OPT_Wunused_value, "%Hstatement with no effect",
7907                  EXPR_HAS_LOCATION (expr) ? EXPR_LOCUS (expr) : &input_location);
7908     }
7909   else
7910     warn_if_unused_value (expr, input_location);
7911 }
7912
7913 /* Process an expression as if it were a complete statement.  Emit
7914    diagnostics, but do not call ADD_STMT.  */
7915
7916 tree
7917 c_process_expr_stmt (tree expr)
7918 {
7919   if (!expr)
7920     return NULL_TREE;
7921
7922   expr = c_fully_fold (expr, false, NULL);
7923
7924   if (warn_sequence_point)
7925     verify_sequence_points (expr);
7926
7927   if (TREE_TYPE (expr) != error_mark_node
7928       && !COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (expr))
7929       && TREE_CODE (TREE_TYPE (expr)) != ARRAY_TYPE)
7930     error ("expression statement has incomplete type");
7931
7932   /* If we're not processing a statement expression, warn about unused values.
7933      Warnings for statement expressions will be emitted later, once we figure
7934      out which is the result.  */
7935   if (!STATEMENT_LIST_STMT_EXPR (cur_stmt_list)
7936       && warn_unused_value)
7937     emit_side_effect_warnings (expr);
7938
7939   /* If the expression is not of a type to which we cannot assign a line
7940      number, wrap the thing in a no-op NOP_EXPR.  */
7941   if (DECL_P (expr) || CONSTANT_CLASS_P (expr))
7942     expr = build1 (NOP_EXPR, TREE_TYPE (expr), expr);
7943
7944   if (CAN_HAVE_LOCATION_P (expr))
7945     SET_EXPR_LOCATION (expr, input_location);
7946
7947   return expr;
7948 }
7949
7950 /* Emit an expression as a statement.  */
7951
7952 tree
7953 c_finish_expr_stmt (tree expr)
7954 {
7955   if (expr)
7956     return add_stmt (c_process_expr_stmt (expr));
7957   else
7958     return NULL;
7959 }
7960
7961 /* Do the opposite and emit a statement as an expression.  To begin,
7962    create a new binding level and return it.  */
7963
7964 tree
7965 c_begin_stmt_expr (void)
7966 {
7967   tree ret;
7968   struct c_label_context_se *nstack;
7969   struct c_label_list *glist;
7970
7971   /* We must force a BLOCK for this level so that, if it is not expanded
7972      later, there is a way to turn off the entire subtree of blocks that
7973      are contained in it.  */
7974   keep_next_level ();
7975   ret = c_begin_compound_stmt (true);
7976   if (c_switch_stack)
7977     {
7978       c_switch_stack->blocked_stmt_expr++;
7979       gcc_assert (c_switch_stack->blocked_stmt_expr != 0);
7980     }
7981   for (glist = label_context_stack_se->labels_used;
7982        glist != NULL;
7983        glist = glist->next)
7984     {
7985       C_DECL_UNDEFINABLE_STMT_EXPR (glist->label) = 1;
7986     }
7987   nstack = XOBNEW (&parser_obstack, struct c_label_context_se);
7988   nstack->labels_def = NULL;
7989   nstack->labels_used = NULL;
7990   nstack->next = label_context_stack_se;
7991   label_context_stack_se = nstack;
7992
7993   /* Mark the current statement list as belonging to a statement list.  */
7994   STATEMENT_LIST_STMT_EXPR (ret) = 1;
7995
7996   return ret;
7997 }
7998
7999 tree
8000 c_finish_stmt_expr (tree body)
8001 {
8002   tree last, type, tmp, val;
8003   tree *last_p;
8004   struct c_label_list *dlist, *glist, *glist_prev = NULL;
8005
8006   body = c_end_compound_stmt (body, true);
8007   if (c_switch_stack)
8008     {
8009       gcc_assert (c_switch_stack->blocked_stmt_expr != 0);
8010       c_switch_stack->blocked_stmt_expr--;
8011     }
8012   /* It is no longer possible to jump to labels defined within this
8013      statement expression.  */
8014   for (dlist = label_context_stack_se->labels_def;
8015        dlist != NULL;
8016        dlist = dlist->next)
8017     {
8018       C_DECL_UNJUMPABLE_STMT_EXPR (dlist->label) = 1;
8019     }
8020   /* It is again possible to define labels with a goto just outside
8021      this statement expression.  */
8022   for (glist = label_context_stack_se->next->labels_used;
8023        glist != NULL;
8024        glist = glist->next)
8025     {
8026       C_DECL_UNDEFINABLE_STMT_EXPR (glist->label) = 0;
8027       glist_prev = glist;
8028     }
8029   if (glist_prev != NULL)
8030     glist_prev->next = label_context_stack_se->labels_used;
8031   else
8032     label_context_stack_se->next->labels_used
8033       = label_context_stack_se->labels_used;
8034   label_context_stack_se = label_context_stack_se->next;
8035
8036   /* Locate the last statement in BODY.  See c_end_compound_stmt
8037      about always returning a BIND_EXPR.  */
8038   last_p = &BIND_EXPR_BODY (body);
8039   last = BIND_EXPR_BODY (body);
8040
8041  continue_searching:
8042   if (TREE_CODE (last) == STATEMENT_LIST)
8043     {
8044       tree_stmt_iterator i;
8045
8046       /* This can happen with degenerate cases like ({ }).  No value.  */
8047       if (!TREE_SIDE_EFFECTS (last))
8048         return body;
8049
8050       /* If we're supposed to generate side effects warnings, process
8051          all of the statements except the last.  */
8052       if (warn_unused_value)
8053         {
8054           for (i = tsi_start (last); !tsi_one_before_end_p (i); tsi_next (&i))
8055             emit_side_effect_warnings (tsi_stmt (i));
8056         }
8057       else
8058         i = tsi_last (last);
8059       last_p = tsi_stmt_ptr (i);
8060       last = *last_p;
8061     }
8062
8063   /* If the end of the list is exception related, then the list was split
8064      by a call to push_cleanup.  Continue searching.  */
8065   if (TREE_CODE (last) == TRY_FINALLY_EXPR
8066       || TREE_CODE (last) == TRY_CATCH_EXPR)
8067     {
8068       last_p = &TREE_OPERAND (last, 0);
8069       last = *last_p;
8070       goto continue_searching;
8071     }
8072
8073   /* In the case that the BIND_EXPR is not necessary, return the
8074      expression out from inside it.  */
8075   if (last == error_mark_node
8076       || (last == BIND_EXPR_BODY (body)
8077           && BIND_EXPR_VARS (body) == NULL))
8078     {
8079       /* Even if this looks constant, do not allow it in a constant
8080          expression.  */
8081       last = build2 (C_MAYBE_CONST_EXPR, TREE_TYPE (last), NULL_TREE, last);
8082       C_MAYBE_CONST_EXPR_NON_CONST (last) = 1;
8083       /* Do not warn if the return value of a statement expression is
8084          unused.  */
8085       TREE_NO_WARNING (last) = 1;
8086       return last;
8087     }
8088
8089   /* Extract the type of said expression.  */
8090   type = TREE_TYPE (last);
8091
8092   /* If we're not returning a value at all, then the BIND_EXPR that
8093      we already have is a fine expression to return.  */
8094   if (!type || VOID_TYPE_P (type))
8095     return body;
8096
8097   /* Now that we've located the expression containing the value, it seems
8098      silly to make voidify_wrapper_expr repeat the process.  Create a
8099      temporary of the appropriate type and stick it in a TARGET_EXPR.  */
8100   tmp = create_tmp_var_raw (type, NULL);
8101
8102   /* Unwrap a no-op NOP_EXPR as added by c_finish_expr_stmt.  This avoids
8103      tree_expr_nonnegative_p giving up immediately.  */
8104   val = last;
8105   if (TREE_CODE (val) == NOP_EXPR
8106       && TREE_TYPE (val) == TREE_TYPE (TREE_OPERAND (val, 0)))
8107     val = TREE_OPERAND (val, 0);
8108
8109   *last_p = build2 (MODIFY_EXPR, void_type_node, tmp, val);
8110   SET_EXPR_LOCUS (*last_p, EXPR_LOCUS (last));
8111
8112   return build4 (TARGET_EXPR, type, tmp, body, NULL_TREE, NULL_TREE);
8113 }
8114
8115 /* Begin the scope of an identifier of variably modified type, scope
8116    number SCOPE.  Jumping from outside this scope to inside it is not
8117    permitted.  */
8118
8119 void
8120 c_begin_vm_scope (unsigned int scope)
8121 {
8122   struct c_label_context_vm *nstack;
8123   struct c_label_list *glist;
8124
8125   gcc_assert (scope > 0);
8126
8127   /* At file_scope, we don't have to do any processing.  */
8128   if (label_context_stack_vm == NULL)
8129     return;
8130
8131   if (c_switch_stack && !c_switch_stack->blocked_vm)
8132     c_switch_stack->blocked_vm = scope;
8133   for (glist = label_context_stack_vm->labels_used;
8134        glist != NULL;
8135        glist = glist->next)
8136     {
8137       C_DECL_UNDEFINABLE_VM (glist->label) = 1;
8138     }
8139   nstack = XOBNEW (&parser_obstack, struct c_label_context_vm);
8140   nstack->labels_def = NULL;
8141   nstack->labels_used = NULL;
8142   nstack->scope = scope;
8143   nstack->next = label_context_stack_vm;
8144   label_context_stack_vm = nstack;
8145 }
8146
8147 /* End a scope which may contain identifiers of variably modified
8148    type, scope number SCOPE.  */
8149
8150 void
8151 c_end_vm_scope (unsigned int scope)
8152 {
8153   if (label_context_stack_vm == NULL)
8154     return;
8155   if (c_switch_stack && c_switch_stack->blocked_vm == scope)
8156     c_switch_stack->blocked_vm = 0;
8157   /* We may have a number of nested scopes of identifiers with
8158      variably modified type, all at this depth.  Pop each in turn.  */
8159   while (label_context_stack_vm->scope == scope)
8160     {
8161       struct c_label_list *dlist, *glist, *glist_prev = NULL;
8162
8163       /* It is no longer possible to jump to labels defined within this
8164          scope.  */
8165       for (dlist = label_context_stack_vm->labels_def;
8166            dlist != NULL;
8167            dlist = dlist->next)
8168         {
8169           C_DECL_UNJUMPABLE_VM (dlist->label) = 1;
8170         }
8171       /* It is again possible to define labels with a goto just outside
8172          this scope.  */
8173       for (glist = label_context_stack_vm->next->labels_used;
8174            glist != NULL;
8175            glist = glist->next)
8176         {
8177           C_DECL_UNDEFINABLE_VM (glist->label) = 0;
8178           glist_prev = glist;
8179         }
8180       if (glist_prev != NULL)
8181         glist_prev->next = label_context_stack_vm->labels_used;
8182       else
8183         label_context_stack_vm->next->labels_used
8184           = label_context_stack_vm->labels_used;
8185       label_context_stack_vm = label_context_stack_vm->next;
8186     }
8187 }
8188 \f
8189 /* Begin and end compound statements.  This is as simple as pushing
8190    and popping new statement lists from the tree.  */
8191
8192 tree
8193 c_begin_compound_stmt (bool do_scope)
8194 {
8195   tree stmt = push_stmt_list ();
8196   if (do_scope)
8197     push_scope ();
8198   return stmt;
8199 }
8200
8201 tree
8202 c_end_compound_stmt (tree stmt, bool do_scope)
8203 {
8204   tree block = NULL;
8205
8206   if (do_scope)
8207     {
8208       if (c_dialect_objc ())
8209         objc_clear_super_receiver ();
8210       block = pop_scope ();
8211     }
8212
8213   stmt = pop_stmt_list (stmt);
8214   stmt = c_build_bind_expr (block, stmt);
8215
8216   /* If this compound statement is nested immediately inside a statement
8217      expression, then force a BIND_EXPR to be created.  Otherwise we'll
8218      do the wrong thing for ({ { 1; } }) or ({ 1; { } }).  In particular,
8219      STATEMENT_LISTs merge, and thus we can lose track of what statement
8220      was really last.  */
8221   if (cur_stmt_list
8222       && STATEMENT_LIST_STMT_EXPR (cur_stmt_list)
8223       && TREE_CODE (stmt) != BIND_EXPR)
8224     {
8225       stmt = build3 (BIND_EXPR, void_type_node, NULL, stmt, NULL);
8226       TREE_SIDE_EFFECTS (stmt) = 1;
8227     }
8228
8229   return stmt;
8230 }
8231
8232 /* Queue a cleanup.  CLEANUP is an expression/statement to be executed
8233    when the current scope is exited.  EH_ONLY is true when this is not
8234    meant to apply to normal control flow transfer.  */
8235
8236 void
8237 push_cleanup (tree ARG_UNUSED (decl), tree cleanup, bool eh_only)
8238 {
8239   enum tree_code code;
8240   tree stmt, list;
8241   bool stmt_expr;
8242
8243   code = eh_only ? TRY_CATCH_EXPR : TRY_FINALLY_EXPR;
8244   stmt = build_stmt (code, NULL, cleanup);
8245   add_stmt (stmt);
8246   stmt_expr = STATEMENT_LIST_STMT_EXPR (cur_stmt_list);
8247   list = push_stmt_list ();
8248   TREE_OPERAND (stmt, 0) = list;
8249   STATEMENT_LIST_STMT_EXPR (list) = stmt_expr;
8250 }
8251 \f
8252 /* Build a binary-operation expression without default conversions.
8253    CODE is the kind of expression to build.
8254    LOCATION is the operator's location.
8255    This function differs from `build' in several ways:
8256    the data type of the result is computed and recorded in it,
8257    warnings are generated if arg data types are invalid,
8258    special handling for addition and subtraction of pointers is known,
8259    and some optimization is done (operations on narrow ints
8260    are done in the narrower type when that gives the same result).
8261    Constant folding is also done before the result is returned.
8262
8263    Note that the operands will never have enumeral types, or function
8264    or array types, because either they will have the default conversions
8265    performed or they have both just been converted to some other type in which
8266    the arithmetic is to be done.  */
8267
8268 tree
8269 build_binary_op (location_t location, enum tree_code code,
8270                  tree orig_op0, tree orig_op1, int convert_p)
8271 {
8272   tree type0, type1;
8273   enum tree_code code0, code1;
8274   tree op0, op1;
8275   tree ret = error_mark_node;
8276   const char *invalid_op_diag;
8277   bool int_const, int_const_or_overflow, int_operands;
8278
8279   /* Expression code to give to the expression when it is built.
8280      Normally this is CODE, which is what the caller asked for,
8281      but in some special cases we change it.  */
8282   enum tree_code resultcode = code;
8283
8284   /* Data type in which the computation is to be performed.
8285      In the simplest cases this is the common type of the arguments.  */
8286   tree result_type = NULL;
8287
8288   /* Nonzero means operands have already been type-converted
8289      in whatever way is necessary.
8290      Zero means they need to be converted to RESULT_TYPE.  */
8291   int converted = 0;
8292
8293   /* Nonzero means create the expression with this type, rather than
8294      RESULT_TYPE.  */
8295   tree build_type = 0;
8296
8297   /* Nonzero means after finally constructing the expression
8298      convert it to this type.  */
8299   tree final_type = 0;
8300
8301   /* Nonzero if this is an operation like MIN or MAX which can
8302      safely be computed in short if both args are promoted shorts.
8303      Also implies COMMON.
8304      -1 indicates a bitwise operation; this makes a difference
8305      in the exact conditions for when it is safe to do the operation
8306      in a narrower mode.  */
8307   int shorten = 0;
8308
8309   /* Nonzero if this is a comparison operation;
8310      if both args are promoted shorts, compare the original shorts.
8311      Also implies COMMON.  */
8312   int short_compare = 0;
8313
8314   /* Nonzero if this is a right-shift operation, which can be computed on the
8315      original short and then promoted if the operand is a promoted short.  */
8316   int short_shift = 0;
8317
8318   /* Nonzero means set RESULT_TYPE to the common type of the args.  */
8319   int common = 0;
8320
8321   /* True means types are compatible as far as ObjC is concerned.  */
8322   bool objc_ok;
8323
8324   if (location == UNKNOWN_LOCATION)
8325     location = input_location;
8326
8327   int_operands = (EXPR_INT_CONST_OPERANDS (orig_op0)
8328                   && EXPR_INT_CONST_OPERANDS (orig_op1));
8329   if (int_operands)
8330     {
8331       int_const_or_overflow = (TREE_CODE (orig_op0) == INTEGER_CST
8332                                && TREE_CODE (orig_op1) == INTEGER_CST);
8333       int_const = (int_const_or_overflow
8334                    && !TREE_OVERFLOW (orig_op0)
8335                    && !TREE_OVERFLOW (orig_op1));
8336     }
8337   else
8338     int_const = int_const_or_overflow = false;
8339
8340   if (convert_p)
8341     {
8342       op0 = default_conversion (orig_op0);
8343       op1 = default_conversion (orig_op1);
8344     }
8345   else
8346     {
8347       op0 = orig_op0;
8348       op1 = orig_op1;
8349     }
8350
8351   type0 = TREE_TYPE (op0);
8352   type1 = TREE_TYPE (op1);
8353
8354   /* The expression codes of the data types of the arguments tell us
8355      whether the arguments are integers, floating, pointers, etc.  */
8356   code0 = TREE_CODE (type0);
8357   code1 = TREE_CODE (type1);
8358
8359   /* Strip NON_LVALUE_EXPRs, etc., since we aren't using as an lvalue.  */
8360   STRIP_TYPE_NOPS (op0);
8361   STRIP_TYPE_NOPS (op1);
8362
8363   /* If an error was already reported for one of the arguments,
8364      avoid reporting another error.  */
8365
8366   if (code0 == ERROR_MARK || code1 == ERROR_MARK)
8367     return error_mark_node;
8368
8369   if ((invalid_op_diag
8370        = targetm.invalid_binary_op (code, type0, type1)))
8371     {
8372       error_at (location, invalid_op_diag);
8373       return error_mark_node;
8374     }
8375
8376   objc_ok = objc_compare_types (type0, type1, -3, NULL_TREE);
8377
8378   switch (code)
8379     {
8380     case PLUS_EXPR:
8381       /* Handle the pointer + int case.  */
8382       if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
8383         {
8384           ret = pointer_int_sum (location, PLUS_EXPR, op0, op1);
8385           goto return_build_binary_op;
8386         }
8387       else if (code1 == POINTER_TYPE && code0 == INTEGER_TYPE)
8388         {
8389           ret = pointer_int_sum (location, PLUS_EXPR, op1, op0);
8390           goto return_build_binary_op;
8391         }
8392       else
8393         common = 1;
8394       break;
8395
8396     case MINUS_EXPR:
8397       /* Subtraction of two similar pointers.
8398          We must subtract them as integers, then divide by object size.  */
8399       if (code0 == POINTER_TYPE && code1 == POINTER_TYPE
8400           && comp_target_types (type0, type1))
8401         {
8402           ret = pointer_diff (op0, op1);
8403           goto return_build_binary_op;
8404         }
8405       /* Handle pointer minus int.  Just like pointer plus int.  */
8406       else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
8407         {
8408           ret = pointer_int_sum (location, MINUS_EXPR, op0, op1);
8409           goto return_build_binary_op;
8410         }
8411       else
8412         common = 1;
8413       break;
8414
8415     case MULT_EXPR:
8416       common = 1;
8417       break;
8418
8419     case TRUNC_DIV_EXPR:
8420     case CEIL_DIV_EXPR:
8421     case FLOOR_DIV_EXPR:
8422     case ROUND_DIV_EXPR:
8423     case EXACT_DIV_EXPR:
8424       warn_for_div_by_zero (location, op1);
8425
8426       if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
8427            || code0 == FIXED_POINT_TYPE
8428            || code0 == COMPLEX_TYPE || code0 == VECTOR_TYPE)
8429           && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
8430               || code1 == FIXED_POINT_TYPE
8431               || code1 == COMPLEX_TYPE || code1 == VECTOR_TYPE))
8432         {
8433           enum tree_code tcode0 = code0, tcode1 = code1;
8434
8435           if (code0 == COMPLEX_TYPE || code0 == VECTOR_TYPE)
8436             tcode0 = TREE_CODE (TREE_TYPE (TREE_TYPE (op0)));
8437           if (code1 == COMPLEX_TYPE || code1 == VECTOR_TYPE)
8438             tcode1 = TREE_CODE (TREE_TYPE (TREE_TYPE (op1)));
8439
8440           if (!((tcode0 == INTEGER_TYPE && tcode1 == INTEGER_TYPE)
8441               || (tcode0 == FIXED_POINT_TYPE && tcode1 == FIXED_POINT_TYPE)))
8442             resultcode = RDIV_EXPR;
8443           else
8444             /* Although it would be tempting to shorten always here, that
8445                loses on some targets, since the modulo instruction is
8446                undefined if the quotient can't be represented in the
8447                computation mode.  We shorten only if unsigned or if
8448                dividing by something we know != -1.  */
8449             shorten = (TYPE_UNSIGNED (TREE_TYPE (orig_op0))
8450                        || (TREE_CODE (op1) == INTEGER_CST
8451                            && !integer_all_onesp (op1)));
8452           common = 1;
8453         }
8454       break;
8455
8456     case BIT_AND_EXPR:
8457     case BIT_IOR_EXPR:
8458     case BIT_XOR_EXPR:
8459       if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
8460         shorten = -1;
8461       /* Allow vector types which are not floating point types.   */
8462       else if (code0 == VECTOR_TYPE
8463                && code1 == VECTOR_TYPE
8464                && !VECTOR_FLOAT_TYPE_P (type0)
8465                && !VECTOR_FLOAT_TYPE_P (type1))
8466         common = 1;
8467       break;
8468
8469     case TRUNC_MOD_EXPR:
8470     case FLOOR_MOD_EXPR:
8471       warn_for_div_by_zero (location, op1);
8472
8473       if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
8474         {
8475           /* Although it would be tempting to shorten always here, that loses
8476              on some targets, since the modulo instruction is undefined if the
8477              quotient can't be represented in the computation mode.  We shorten
8478              only if unsigned or if dividing by something we know != -1.  */
8479           shorten = (TYPE_UNSIGNED (TREE_TYPE (orig_op0))
8480                      || (TREE_CODE (op1) == INTEGER_CST
8481                          && !integer_all_onesp (op1)));
8482           common = 1;
8483         }
8484       break;
8485
8486     case TRUTH_ANDIF_EXPR:
8487     case TRUTH_ORIF_EXPR:
8488     case TRUTH_AND_EXPR:
8489     case TRUTH_OR_EXPR:
8490     case TRUTH_XOR_EXPR:
8491       if ((code0 == INTEGER_TYPE || code0 == POINTER_TYPE
8492            || code0 == REAL_TYPE || code0 == COMPLEX_TYPE
8493            || code0 == FIXED_POINT_TYPE)
8494           && (code1 == INTEGER_TYPE || code1 == POINTER_TYPE
8495               || code1 == REAL_TYPE || code1 == COMPLEX_TYPE
8496               || code1 == FIXED_POINT_TYPE))
8497         {
8498           /* Result of these operations is always an int,
8499              but that does not mean the operands should be
8500              converted to ints!  */
8501           result_type = integer_type_node;
8502           op0 = c_common_truthvalue_conversion (location, op0);
8503           op1 = c_common_truthvalue_conversion (location, op1);
8504           converted = 1;
8505         }
8506       if (code == TRUTH_ANDIF_EXPR)
8507         {
8508           int_const_or_overflow = (int_operands
8509                                    && TREE_CODE (orig_op0) == INTEGER_CST
8510                                    && (op0 == truthvalue_false_node
8511                                        || TREE_CODE (orig_op1) == INTEGER_CST));
8512           int_const = (int_const_or_overflow
8513                        && !TREE_OVERFLOW (orig_op0)
8514                        && (op0 == truthvalue_false_node
8515                            || !TREE_OVERFLOW (orig_op1)));
8516         }
8517       else if (code == TRUTH_ORIF_EXPR)
8518         {
8519           int_const_or_overflow = (int_operands
8520                                    && TREE_CODE (orig_op0) == INTEGER_CST
8521                                    && (op0 == truthvalue_true_node
8522                                        || TREE_CODE (orig_op1) == INTEGER_CST));
8523           int_const = (int_const_or_overflow
8524                        && !TREE_OVERFLOW (orig_op0)
8525                        && (op0 == truthvalue_true_node
8526                            || !TREE_OVERFLOW (orig_op1)));
8527         }
8528       break;
8529
8530       /* Shift operations: result has same type as first operand;
8531          always convert second operand to int.
8532          Also set SHORT_SHIFT if shifting rightward.  */
8533
8534     case RSHIFT_EXPR:
8535       if ((code0 == INTEGER_TYPE || code0 == FIXED_POINT_TYPE)
8536           && code1 == INTEGER_TYPE)
8537         {
8538           if (TREE_CODE (op1) == INTEGER_CST)
8539             {
8540               if (tree_int_cst_sgn (op1) < 0)
8541                 {
8542                   int_const = false;
8543                   if (skip_evaluation == 0)
8544                     warning (0, "right shift count is negative");
8545                 }
8546               else
8547                 {
8548                   if (!integer_zerop (op1))
8549                     short_shift = 1;
8550
8551                   if (compare_tree_int (op1, TYPE_PRECISION (type0)) >= 0)
8552                     {
8553                       int_const = false;
8554                       if (skip_evaluation == 0)
8555                         warning (0, "right shift count >= width of type");
8556                     }
8557                 }
8558             }
8559
8560           /* Use the type of the value to be shifted.  */
8561           result_type = type0;
8562           /* Convert the shift-count to an integer, regardless of size
8563              of value being shifted.  */
8564           if (TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
8565             op1 = convert (integer_type_node, op1);
8566           /* Avoid converting op1 to result_type later.  */
8567           converted = 1;
8568         }
8569       break;
8570
8571     case LSHIFT_EXPR:
8572       if ((code0 == INTEGER_TYPE || code0 == FIXED_POINT_TYPE)
8573           && code1 == INTEGER_TYPE)
8574         {
8575           if (TREE_CODE (op1) == INTEGER_CST)
8576             {
8577               if (tree_int_cst_sgn (op1) < 0)
8578                 {
8579                   int_const = false;
8580                   if (skip_evaluation == 0)
8581                     warning (0, "left shift count is negative");
8582                 }
8583
8584               else if (compare_tree_int (op1, TYPE_PRECISION (type0)) >= 0)
8585                 {
8586                   int_const = false;
8587                   if (skip_evaluation == 0)
8588                     warning (0, "left shift count >= width of type");
8589                 }
8590             }
8591
8592           /* Use the type of the value to be shifted.  */
8593           result_type = type0;
8594           /* Convert the shift-count to an integer, regardless of size
8595              of value being shifted.  */
8596           if (TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
8597             op1 = convert (integer_type_node, op1);
8598           /* Avoid converting op1 to result_type later.  */
8599           converted = 1;
8600         }
8601       break;
8602
8603     case EQ_EXPR:
8604     case NE_EXPR:
8605       if (FLOAT_TYPE_P (type0) || FLOAT_TYPE_P (type1))
8606         warning_at (location,
8607                     OPT_Wfloat_equal,
8608                     "comparing floating point with == or != is unsafe");
8609       /* Result of comparison is always int,
8610          but don't convert the args to int!  */
8611       build_type = integer_type_node;
8612       if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
8613            || code0 == FIXED_POINT_TYPE || code0 == COMPLEX_TYPE)
8614           && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
8615               || code1 == FIXED_POINT_TYPE || code1 == COMPLEX_TYPE))
8616         short_compare = 1;
8617       else if (code0 == POINTER_TYPE && code1 == POINTER_TYPE)
8618         {
8619           tree tt0 = TREE_TYPE (type0);
8620           tree tt1 = TREE_TYPE (type1);
8621           /* Anything compares with void *.  void * compares with anything.
8622              Otherwise, the targets must be compatible
8623              and both must be object or both incomplete.  */
8624           if (comp_target_types (type0, type1))
8625             result_type = common_pointer_type (type0, type1);
8626           else if (VOID_TYPE_P (tt0))
8627             {
8628               /* op0 != orig_op0 detects the case of something
8629                  whose value is 0 but which isn't a valid null ptr const.  */
8630               if (pedantic && !null_pointer_constant_p (orig_op0)
8631                   && TREE_CODE (tt1) == FUNCTION_TYPE)
8632                 pedwarn (location, OPT_pedantic, "ISO C forbids "
8633                          "comparison of %<void *%> with function pointer");
8634             }
8635           else if (VOID_TYPE_P (tt1))
8636             {
8637               if (pedantic && !null_pointer_constant_p (orig_op1)
8638                   && TREE_CODE (tt0) == FUNCTION_TYPE)
8639                 pedwarn (location, OPT_pedantic, "ISO C forbids "
8640                          "comparison of %<void *%> with function pointer");
8641             }
8642           else
8643             /* Avoid warning about the volatile ObjC EH puts on decls.  */
8644             if (!objc_ok)
8645               pedwarn (location, 0,
8646                        "comparison of distinct pointer types lacks a cast");
8647
8648           if (result_type == NULL_TREE)
8649             result_type = ptr_type_node;
8650         }
8651       else if (code0 == POINTER_TYPE && null_pointer_constant_p (orig_op1))
8652         {
8653           if (TREE_CODE (op0) == ADDR_EXPR
8654               && decl_with_nonnull_addr_p (TREE_OPERAND (op0, 0)))
8655             warning_at (location,
8656                         OPT_Waddress, "the address of %qD will never be NULL",
8657                         TREE_OPERAND (op0, 0));
8658           result_type = type0;
8659         }
8660       else if (code1 == POINTER_TYPE && null_pointer_constant_p (orig_op0))
8661         {
8662           if (TREE_CODE (op1) == ADDR_EXPR
8663               && decl_with_nonnull_addr_p (TREE_OPERAND (op1, 0)))
8664             warning_at (location,
8665                         OPT_Waddress, "the address of %qD will never be NULL",
8666                         TREE_OPERAND (op1, 0));
8667           result_type = type1;
8668         }
8669       else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
8670         {
8671           result_type = type0;
8672           pedwarn (location, 0, "comparison between pointer and integer");
8673         }
8674       else if (code0 == INTEGER_TYPE && code1 == POINTER_TYPE)
8675         {
8676           result_type = type1;
8677           pedwarn (location, 0, "comparison between pointer and integer");
8678         }
8679       break;
8680
8681     case LE_EXPR:
8682     case GE_EXPR:
8683     case LT_EXPR:
8684     case GT_EXPR:
8685       build_type = integer_type_node;
8686       if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
8687            || code0 == FIXED_POINT_TYPE)
8688           && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
8689               || code1 == FIXED_POINT_TYPE))
8690         short_compare = 1;
8691       else if (code0 == POINTER_TYPE && code1 == POINTER_TYPE)
8692         {
8693           if (comp_target_types (type0, type1))
8694             {
8695               result_type = common_pointer_type (type0, type1);
8696               if (!COMPLETE_TYPE_P (TREE_TYPE (type0))
8697                   != !COMPLETE_TYPE_P (TREE_TYPE (type1)))
8698                 pedwarn (location, 0,
8699                          "comparison of complete and incomplete pointers");
8700               else if (TREE_CODE (TREE_TYPE (type0)) == FUNCTION_TYPE)
8701                 pedwarn (location, OPT_pedantic, "ISO C forbids "
8702                          "ordered comparisons of pointers to functions");
8703             }
8704           else
8705             {
8706               result_type = ptr_type_node;
8707               pedwarn (location, 0,
8708                        "comparison of distinct pointer types lacks a cast");
8709             }
8710         }
8711       else if (code0 == POINTER_TYPE && null_pointer_constant_p (orig_op1))
8712         {
8713           result_type = type0;
8714           if (pedantic)
8715             pedwarn (location, OPT_pedantic, 
8716                      "ordered comparison of pointer with integer zero");
8717           else if (extra_warnings)
8718             warning_at (location, OPT_Wextra,
8719                      "ordered comparison of pointer with integer zero");
8720         }
8721       else if (code1 == POINTER_TYPE && null_pointer_constant_p (orig_op0))
8722         {
8723           result_type = type1;
8724           pedwarn (location, OPT_pedantic, 
8725                    "ordered comparison of pointer with integer zero");
8726         }
8727       else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
8728         {
8729           result_type = type0;
8730           pedwarn (location, 0, "comparison between pointer and integer");
8731         }
8732       else if (code0 == INTEGER_TYPE && code1 == POINTER_TYPE)
8733         {
8734           result_type = type1;
8735           pedwarn (location, 0, "comparison between pointer and integer");
8736         }
8737       break;
8738
8739     default:
8740       gcc_unreachable ();
8741     }
8742
8743   if (code0 == ERROR_MARK || code1 == ERROR_MARK)
8744     return error_mark_node;
8745
8746   if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE
8747       && (!tree_int_cst_equal (TYPE_SIZE (type0), TYPE_SIZE (type1))
8748           || !same_scalar_type_ignoring_signedness (TREE_TYPE (type0),
8749                                                     TREE_TYPE (type1))))
8750     {
8751       binary_op_error (location, code, type0, type1);
8752       return error_mark_node;
8753     }
8754
8755   if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE || code0 == COMPLEX_TYPE
8756        || code0 == FIXED_POINT_TYPE || code0 == VECTOR_TYPE)
8757       &&
8758       (code1 == INTEGER_TYPE || code1 == REAL_TYPE || code1 == COMPLEX_TYPE
8759        || code1 == FIXED_POINT_TYPE || code1 == VECTOR_TYPE))
8760     {
8761       int none_complex = (code0 != COMPLEX_TYPE && code1 != COMPLEX_TYPE);
8762
8763       if (shorten || common || short_compare)
8764         {
8765           result_type = c_common_type (type0, type1);
8766           if (result_type == error_mark_node)
8767             return error_mark_node;
8768         }
8769
8770       /* For certain operations (which identify themselves by shorten != 0)
8771          if both args were extended from the same smaller type,
8772          do the arithmetic in that type and then extend.
8773
8774          shorten !=0 and !=1 indicates a bitwise operation.
8775          For them, this optimization is safe only if
8776          both args are zero-extended or both are sign-extended.
8777          Otherwise, we might change the result.
8778          Eg, (short)-1 | (unsigned short)-1 is (int)-1
8779          but calculated in (unsigned short) it would be (unsigned short)-1.  */
8780
8781       if (shorten && none_complex)
8782         {
8783           final_type = result_type;
8784           result_type = shorten_binary_op (result_type, op0, op1, 
8785                                            shorten == -1);
8786         }
8787
8788       /* Shifts can be shortened if shifting right.  */
8789
8790       if (short_shift)
8791         {
8792           int unsigned_arg;
8793           tree arg0 = get_narrower (op0, &unsigned_arg);
8794
8795           final_type = result_type;
8796
8797           if (arg0 == op0 && final_type == TREE_TYPE (op0))
8798             unsigned_arg = TYPE_UNSIGNED (TREE_TYPE (op0));
8799
8800           if (TYPE_PRECISION (TREE_TYPE (arg0)) < TYPE_PRECISION (result_type)
8801               /* We can shorten only if the shift count is less than the
8802                  number of bits in the smaller type size.  */
8803               && compare_tree_int (op1, TYPE_PRECISION (TREE_TYPE (arg0))) < 0
8804               /* We cannot drop an unsigned shift after sign-extension.  */
8805               && (!TYPE_UNSIGNED (final_type) || unsigned_arg))
8806             {
8807               /* Do an unsigned shift if the operand was zero-extended.  */
8808               result_type
8809                 = c_common_signed_or_unsigned_type (unsigned_arg,
8810                                                     TREE_TYPE (arg0));
8811               /* Convert value-to-be-shifted to that type.  */
8812               if (TREE_TYPE (op0) != result_type)
8813                 op0 = convert (result_type, op0);
8814               converted = 1;
8815             }
8816         }
8817
8818       /* Comparison operations are shortened too but differently.
8819          They identify themselves by setting short_compare = 1.  */
8820
8821       if (short_compare)
8822         {
8823           /* Don't write &op0, etc., because that would prevent op0
8824              from being kept in a register.
8825              Instead, make copies of the our local variables and
8826              pass the copies by reference, then copy them back afterward.  */
8827           tree xop0 = op0, xop1 = op1, xresult_type = result_type;
8828           enum tree_code xresultcode = resultcode;
8829           tree val
8830             = shorten_compare (&xop0, &xop1, &xresult_type, &xresultcode);
8831
8832           if (val != 0)
8833             {
8834               ret = val;
8835               goto return_build_binary_op;
8836             }
8837
8838           op0 = xop0, op1 = xop1;
8839           converted = 1;
8840           resultcode = xresultcode;
8841
8842           if (!skip_evaluation)
8843             {
8844               bool op0_maybe_const = true;
8845               bool op1_maybe_const = true;
8846               tree orig_op0_folded, orig_op1_folded;
8847
8848               if (in_late_binary_op)
8849                 {
8850                   orig_op0_folded = orig_op0;
8851                   orig_op1_folded = orig_op1;
8852                 }
8853               else
8854                 {
8855                   /* Fold for the sake of possible warnings, as in
8856                      build_conditional_expr.  This requires the
8857                      "original" values to be folded, not just op0 and
8858                      op1.  */
8859                   op0 = c_fully_fold (op0, require_constant_value,
8860                                       &op0_maybe_const);
8861                   op1 = c_fully_fold (op1, require_constant_value,
8862                                       &op1_maybe_const);
8863                   orig_op0_folded = c_fully_fold (orig_op0,
8864                                                   require_constant_value,
8865                                                   NULL);
8866                   orig_op1_folded = c_fully_fold (orig_op1,
8867                                                   require_constant_value,
8868                                                   NULL);
8869                 }
8870
8871               if (warn_sign_compare)
8872                 warn_for_sign_compare (location, orig_op0_folded,
8873                                        orig_op1_folded, op0, op1,
8874                                        result_type, resultcode);
8875               if (!in_late_binary_op)
8876                 {
8877                   if (!op0_maybe_const || TREE_CODE (op0) != INTEGER_CST)
8878                     {
8879                       op0 = build2 (C_MAYBE_CONST_EXPR, TREE_TYPE (op0),
8880                                     NULL, op0);
8881                       C_MAYBE_CONST_EXPR_NON_CONST (op0) = !op0_maybe_const;
8882                     }
8883                   if (!op1_maybe_const || TREE_CODE (op1) != INTEGER_CST)
8884                     {
8885                       op1 = build2 (C_MAYBE_CONST_EXPR, TREE_TYPE (op1),
8886                                     NULL, op1);
8887                       C_MAYBE_CONST_EXPR_NON_CONST (op1) = !op1_maybe_const;
8888                     }
8889                 }
8890             }
8891         }
8892     }
8893
8894   /* At this point, RESULT_TYPE must be nonzero to avoid an error message.
8895      If CONVERTED is zero, both args will be converted to type RESULT_TYPE.
8896      Then the expression will be built.
8897      It will be given type FINAL_TYPE if that is nonzero;
8898      otherwise, it will be given type RESULT_TYPE.  */
8899
8900   if (!result_type)
8901     {
8902       binary_op_error (location, code, TREE_TYPE (op0), TREE_TYPE (op1));
8903       return error_mark_node;
8904     }
8905
8906   if (!converted)
8907     {
8908       if (TREE_TYPE (op0) != result_type)
8909         op0 = convert_and_check (result_type, op0);
8910       if (TREE_TYPE (op1) != result_type)
8911         op1 = convert_and_check (result_type, op1);
8912
8913       /* This can happen if one operand has a vector type, and the other
8914          has a different type.  */
8915       if (TREE_CODE (op0) == ERROR_MARK || TREE_CODE (op1) == ERROR_MARK)
8916         return error_mark_node;
8917     }
8918
8919   if (build_type == NULL_TREE)
8920     build_type = result_type;
8921
8922   /* Treat expressions in initializers specially as they can't trap.  */
8923   if (int_const_or_overflow)
8924     ret = (require_constant_value
8925            ? fold_build2_initializer (resultcode, build_type, op0, op1)
8926            : fold_build2 (resultcode, build_type, op0, op1));
8927   else
8928     ret = build2 (resultcode, build_type, op0, op1);
8929   if (final_type != 0)
8930     ret = convert (final_type, ret);
8931
8932  return_build_binary_op:
8933   gcc_assert (ret != error_mark_node);
8934   if (TREE_CODE (ret) == INTEGER_CST && !TREE_OVERFLOW (ret) && !int_const)
8935     ret = (int_operands
8936            ? note_integer_operands (ret)
8937            : build1 (NOP_EXPR, TREE_TYPE (ret), ret));
8938   else if (TREE_CODE (ret) != INTEGER_CST && int_operands
8939            && !in_late_binary_op)
8940     ret = note_integer_operands (ret);
8941   protected_set_expr_location (ret, location);
8942   return ret;
8943 }
8944
8945
8946 /* Convert EXPR to be a truth-value, validating its type for this
8947    purpose.  LOCATION is the source location for the expression.  */
8948
8949 tree
8950 c_objc_common_truthvalue_conversion (location_t location, tree expr)
8951 {
8952   bool int_const, int_operands;
8953
8954   switch (TREE_CODE (TREE_TYPE (expr)))
8955     {
8956     case ARRAY_TYPE:
8957       error_at (location, "used array that cannot be converted to pointer where scalar is required");
8958       return error_mark_node;
8959
8960     case RECORD_TYPE:
8961       error_at (location, "used struct type value where scalar is required");
8962       return error_mark_node;
8963
8964     case UNION_TYPE:
8965       error_at (location, "used union type value where scalar is required");
8966       return error_mark_node;
8967
8968     case FUNCTION_TYPE:
8969       gcc_unreachable ();
8970
8971     default:
8972       break;
8973     }
8974
8975   int_const = (TREE_CODE (expr) == INTEGER_CST && !TREE_OVERFLOW (expr));
8976   int_operands = EXPR_INT_CONST_OPERANDS (expr);
8977
8978   /* ??? Should we also give an error for void and vectors rather than
8979      leaving those to give errors later?  */
8980   expr = c_common_truthvalue_conversion (location, expr);
8981
8982   if (TREE_CODE (expr) == INTEGER_CST && int_operands && !int_const)
8983     {
8984       if (TREE_OVERFLOW (expr))
8985         return expr;
8986       else
8987         return note_integer_operands (expr);
8988     }
8989   if (TREE_CODE (expr) == INTEGER_CST && !int_const)
8990     return build1 (NOP_EXPR, TREE_TYPE (expr), expr);
8991   return expr;
8992 }
8993 \f
8994
8995 /* Convert EXPR to a contained DECL, updating *TC, *TI and *SE as
8996    required.  */
8997
8998 tree
8999 c_expr_to_decl (tree expr, bool *tc ATTRIBUTE_UNUSED, bool *se)
9000 {
9001   if (TREE_CODE (expr) == COMPOUND_LITERAL_EXPR)
9002     {
9003       tree decl = COMPOUND_LITERAL_EXPR_DECL (expr);
9004       /* Executing a compound literal inside a function reinitializes
9005          it.  */
9006       if (!TREE_STATIC (decl))
9007         *se = true;
9008       return decl;
9009     }
9010   else
9011     return expr;
9012 }
9013 \f
9014 /* Like c_begin_compound_stmt, except force the retention of the BLOCK.  */
9015
9016 tree
9017 c_begin_omp_parallel (void)
9018 {
9019   tree block;
9020
9021   keep_next_level ();
9022   block = c_begin_compound_stmt (true);
9023
9024   return block;
9025 }
9026
9027 /* Generate OMP_PARALLEL, with CLAUSES and BLOCK as its compound statement.  */
9028
9029 tree
9030 c_finish_omp_parallel (tree clauses, tree block)
9031 {
9032   tree stmt;
9033
9034   block = c_end_compound_stmt (block, true);
9035
9036   stmt = make_node (OMP_PARALLEL);
9037   TREE_TYPE (stmt) = void_type_node;
9038   OMP_PARALLEL_CLAUSES (stmt) = clauses;
9039   OMP_PARALLEL_BODY (stmt) = block;
9040
9041   return add_stmt (stmt);
9042 }
9043
9044 /* Like c_begin_compound_stmt, except force the retention of the BLOCK.  */
9045
9046 tree
9047 c_begin_omp_task (void)
9048 {
9049   tree block;
9050
9051   keep_next_level ();
9052   block = c_begin_compound_stmt (true);
9053
9054   return block;
9055 }
9056
9057 /* Generate OMP_TASK, with CLAUSES and BLOCK as its compound statement.  */
9058
9059 tree
9060 c_finish_omp_task (tree clauses, tree block)
9061 {
9062   tree stmt;
9063
9064   block = c_end_compound_stmt (block, true);
9065
9066   stmt = make_node (OMP_TASK);
9067   TREE_TYPE (stmt) = void_type_node;
9068   OMP_TASK_CLAUSES (stmt) = clauses;
9069   OMP_TASK_BODY (stmt) = block;
9070
9071   return add_stmt (stmt);
9072 }
9073
9074 /* For all elements of CLAUSES, validate them vs OpenMP constraints.
9075    Remove any elements from the list that are invalid.  */
9076
9077 tree
9078 c_finish_omp_clauses (tree clauses)
9079 {
9080   bitmap_head generic_head, firstprivate_head, lastprivate_head;
9081   tree c, t, *pc = &clauses;
9082   const char *name;
9083
9084   bitmap_obstack_initialize (NULL);
9085   bitmap_initialize (&generic_head, &bitmap_default_obstack);
9086   bitmap_initialize (&firstprivate_head, &bitmap_default_obstack);
9087   bitmap_initialize (&lastprivate_head, &bitmap_default_obstack);
9088
9089   for (pc = &clauses, c = clauses; c ; c = *pc)
9090     {
9091       bool remove = false;
9092       bool need_complete = false;
9093       bool need_implicitly_determined = false;
9094
9095       switch (OMP_CLAUSE_CODE (c))
9096         {
9097         case OMP_CLAUSE_SHARED:
9098           name = "shared";
9099           need_implicitly_determined = true;
9100           goto check_dup_generic;
9101
9102         case OMP_CLAUSE_PRIVATE:
9103           name = "private";
9104           need_complete = true;
9105           need_implicitly_determined = true;
9106           goto check_dup_generic;
9107
9108         case OMP_CLAUSE_REDUCTION:
9109           name = "reduction";
9110           need_implicitly_determined = true;
9111           t = OMP_CLAUSE_DECL (c);
9112           if (AGGREGATE_TYPE_P (TREE_TYPE (t))
9113               || POINTER_TYPE_P (TREE_TYPE (t)))
9114             {
9115               error ("%qE has invalid type for %<reduction%>", t);
9116               remove = true;
9117             }
9118           else if (FLOAT_TYPE_P (TREE_TYPE (t)))
9119             {
9120               enum tree_code r_code = OMP_CLAUSE_REDUCTION_CODE (c);
9121               const char *r_name = NULL;
9122
9123               switch (r_code)
9124                 {
9125                 case PLUS_EXPR:
9126                 case MULT_EXPR:
9127                 case MINUS_EXPR:
9128                   break;
9129                 case BIT_AND_EXPR:
9130                   r_name = "&";
9131                   break;
9132                 case BIT_XOR_EXPR:
9133                   r_name = "^";
9134                   break;
9135                 case BIT_IOR_EXPR:
9136                   r_name = "|";
9137                   break;
9138                 case TRUTH_ANDIF_EXPR:
9139                   r_name = "&&";
9140                   break;
9141                 case TRUTH_ORIF_EXPR:
9142                   r_name = "||";
9143                   break;
9144                 default:
9145                   gcc_unreachable ();
9146                 }
9147               if (r_name)
9148                 {
9149                   error ("%qE has invalid type for %<reduction(%s)%>",
9150                          t, r_name);
9151                   remove = true;
9152                 }
9153             }
9154           goto check_dup_generic;
9155
9156         case OMP_CLAUSE_COPYPRIVATE:
9157           name = "copyprivate";
9158           goto check_dup_generic;
9159
9160         case OMP_CLAUSE_COPYIN:
9161           name = "copyin";
9162           t = OMP_CLAUSE_DECL (c);
9163           if (TREE_CODE (t) != VAR_DECL || !DECL_THREAD_LOCAL_P (t))
9164             {
9165               error ("%qE must be %<threadprivate%> for %<copyin%>", t);
9166               remove = true;
9167             }
9168           goto check_dup_generic;
9169
9170         check_dup_generic:
9171           t = OMP_CLAUSE_DECL (c);
9172           if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
9173             {
9174               error ("%qE is not a variable in clause %qs", t, name);
9175               remove = true;
9176             }
9177           else if (bitmap_bit_p (&generic_head, DECL_UID (t))
9178                    || bitmap_bit_p (&firstprivate_head, DECL_UID (t))
9179                    || bitmap_bit_p (&lastprivate_head, DECL_UID (t)))
9180             {
9181               error ("%qE appears more than once in data clauses", t);
9182               remove = true;
9183             }
9184           else
9185             bitmap_set_bit (&generic_head, DECL_UID (t));
9186           break;
9187
9188         case OMP_CLAUSE_FIRSTPRIVATE:
9189           name = "firstprivate";
9190           t = OMP_CLAUSE_DECL (c);
9191           need_complete = true;
9192           need_implicitly_determined = true;
9193           if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
9194             {
9195               error ("%qE is not a variable in clause %<firstprivate%>", t);
9196               remove = true;
9197             }
9198           else if (bitmap_bit_p (&generic_head, DECL_UID (t))
9199                    || bitmap_bit_p (&firstprivate_head, DECL_UID (t)))
9200             {
9201               error ("%qE appears more than once in data clauses", t);
9202               remove = true;
9203             }
9204           else
9205             bitmap_set_bit (&firstprivate_head, DECL_UID (t));
9206           break;
9207
9208         case OMP_CLAUSE_LASTPRIVATE:
9209           name = "lastprivate";
9210           t = OMP_CLAUSE_DECL (c);
9211           need_complete = true;
9212           need_implicitly_determined = true;
9213           if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
9214             {
9215               error ("%qE is not a variable in clause %<lastprivate%>", t);
9216               remove = true;
9217             }
9218           else if (bitmap_bit_p (&generic_head, DECL_UID (t))
9219                    || bitmap_bit_p (&lastprivate_head, DECL_UID (t)))
9220             {
9221               error ("%qE appears more than once in data clauses", t);
9222               remove = true;
9223             }
9224           else
9225             bitmap_set_bit (&lastprivate_head, DECL_UID (t));
9226           break;
9227
9228         case OMP_CLAUSE_IF:
9229         case OMP_CLAUSE_NUM_THREADS:
9230         case OMP_CLAUSE_SCHEDULE:
9231         case OMP_CLAUSE_NOWAIT:
9232         case OMP_CLAUSE_ORDERED:
9233         case OMP_CLAUSE_DEFAULT:
9234         case OMP_CLAUSE_UNTIED:
9235         case OMP_CLAUSE_COLLAPSE:
9236           pc = &OMP_CLAUSE_CHAIN (c);
9237           continue;
9238
9239         default:
9240           gcc_unreachable ();
9241         }
9242
9243       if (!remove)
9244         {
9245           t = OMP_CLAUSE_DECL (c);
9246
9247           if (need_complete)
9248             {
9249               t = require_complete_type (t);
9250               if (t == error_mark_node)
9251                 remove = true;
9252             }
9253
9254           if (need_implicitly_determined)
9255             {
9256               const char *share_name = NULL;
9257
9258               if (TREE_CODE (t) == VAR_DECL && DECL_THREAD_LOCAL_P (t))
9259                 share_name = "threadprivate";
9260               else switch (c_omp_predetermined_sharing (t))
9261                 {
9262                 case OMP_CLAUSE_DEFAULT_UNSPECIFIED:
9263                   break;
9264                 case OMP_CLAUSE_DEFAULT_SHARED:
9265                   share_name = "shared";
9266                   break;
9267                 case OMP_CLAUSE_DEFAULT_PRIVATE:
9268                   share_name = "private";
9269                   break;
9270                 default:
9271                   gcc_unreachable ();
9272                 }
9273               if (share_name)
9274                 {
9275                   error ("%qE is predetermined %qs for %qs",
9276                          t, share_name, name);
9277                   remove = true;
9278                 }
9279             }
9280         }
9281
9282       if (remove)
9283         *pc = OMP_CLAUSE_CHAIN (c);
9284       else
9285         pc = &OMP_CLAUSE_CHAIN (c);
9286     }
9287
9288   bitmap_obstack_release (NULL);
9289   return clauses;
9290 }
9291
9292 /* Make a variant type in the proper way for C/C++, propagating qualifiers
9293    down to the element type of an array.  */
9294
9295 tree
9296 c_build_qualified_type (tree type, int type_quals)
9297 {
9298   if (type == error_mark_node)
9299     return type;
9300
9301   if (TREE_CODE (type) == ARRAY_TYPE)
9302     {
9303       tree t;
9304       tree element_type = c_build_qualified_type (TREE_TYPE (type),
9305                                                   type_quals);
9306
9307       /* See if we already have an identically qualified type.  */
9308       for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
9309         {
9310           if (TYPE_QUALS (strip_array_types (t)) == type_quals
9311               && TYPE_NAME (t) == TYPE_NAME (type)
9312               && TYPE_CONTEXT (t) == TYPE_CONTEXT (type)
9313               && attribute_list_equal (TYPE_ATTRIBUTES (t),
9314                                        TYPE_ATTRIBUTES (type)))
9315             break;
9316         }
9317       if (!t)
9318         {
9319           tree domain = TYPE_DOMAIN (type);
9320
9321           t = build_variant_type_copy (type);
9322           TREE_TYPE (t) = element_type;
9323
9324           if (TYPE_STRUCTURAL_EQUALITY_P (element_type)
9325               || (domain && TYPE_STRUCTURAL_EQUALITY_P (domain)))
9326             SET_TYPE_STRUCTURAL_EQUALITY (t);
9327           else if (TYPE_CANONICAL (element_type) != element_type
9328                    || (domain && TYPE_CANONICAL (domain) != domain))
9329             {
9330               tree unqualified_canon 
9331                 = build_array_type (TYPE_CANONICAL (element_type),
9332                                     domain? TYPE_CANONICAL (domain) 
9333                                           : NULL_TREE);
9334               TYPE_CANONICAL (t) 
9335                 = c_build_qualified_type (unqualified_canon, type_quals);
9336             }
9337           else
9338             TYPE_CANONICAL (t) = t;
9339         }
9340       return t;
9341     }
9342
9343   /* A restrict-qualified pointer type must be a pointer to object or
9344      incomplete type.  Note that the use of POINTER_TYPE_P also allows
9345      REFERENCE_TYPEs, which is appropriate for C++.  */
9346   if ((type_quals & TYPE_QUAL_RESTRICT)
9347       && (!POINTER_TYPE_P (type)
9348           || !C_TYPE_OBJECT_OR_INCOMPLETE_P (TREE_TYPE (type))))
9349     {
9350       error ("invalid use of %<restrict%>");
9351       type_quals &= ~TYPE_QUAL_RESTRICT;
9352     }
9353
9354   return build_qualified_type (type, type_quals);
9355 }