home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 9 / FreshFishVol9-CD2.bin / bbs / gnu / gcc-2.6.3-src.lha / gcc-2.6.3 / c-typeck.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-29  |  196.3 KB  |  6,415 lines

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