OSDN Git Service

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