OSDN Git Service

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