OSDN Git Service

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