OSDN Git Service

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