OSDN Git Service

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