home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 6 / FreshFish_September1994.bin / bbs / gnu / gcc-2.6.0-src.lha / GNU / src / amiga / gcc-2.6.0 / c-decl.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-13  |  214.4 KB  |  6,798 lines

  1. /* Process declarations and variables for C compiler.
  2.    Copyright (C) 1988, 1992, 1993, 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. /* Process declarations and symbol lookup for C front end.
  22.    Also constructs types; the standard scalar types at initialization,
  23.    and structure, union, array and enum types when they are declared.  */
  24.  
  25. /* ??? not all decl nodes are given the most useful possible
  26.    line numbers.  For example, the CONST_DECLs for enum values.  */
  27.  
  28. #include "config.h"
  29. #include "tree.h"
  30. #include "flags.h"
  31. #include "c-tree.h"
  32. #include "c-lex.h"
  33. #include <stdio.h>
  34.  
  35. /* In grokdeclarator, distinguish syntactic contexts of declarators.  */
  36. enum decl_context
  37. { NORMAL,            /* Ordinary declaration */
  38.   FUNCDEF,            /* Function definition */
  39.   PARM,                /* Declaration of parm before function body */
  40.   FIELD,            /* Declaration inside struct or union */
  41.   BITFIELD,            /* Likewise but with specified width */
  42.   TYPENAME};            /* Typename (inside cast or sizeof)  */
  43.  
  44. #ifndef CHAR_TYPE_SIZE
  45. #define CHAR_TYPE_SIZE BITS_PER_UNIT
  46. #endif
  47.  
  48. #ifndef SHORT_TYPE_SIZE
  49. #define SHORT_TYPE_SIZE (BITS_PER_UNIT * MIN ((UNITS_PER_WORD + 1) / 2, 2))
  50. #endif
  51.  
  52. #ifndef INT_TYPE_SIZE
  53. #define INT_TYPE_SIZE BITS_PER_WORD
  54. #endif
  55.  
  56. #ifndef LONG_TYPE_SIZE
  57. #define LONG_TYPE_SIZE BITS_PER_WORD
  58. #endif
  59.  
  60. #ifndef LONG_LONG_TYPE_SIZE
  61. #define LONG_LONG_TYPE_SIZE (BITS_PER_WORD * 2)
  62. #endif
  63.  
  64. #ifndef WCHAR_UNSIGNED
  65. #define WCHAR_UNSIGNED 0
  66. #endif
  67.  
  68. #ifndef FLOAT_TYPE_SIZE
  69. #define FLOAT_TYPE_SIZE BITS_PER_WORD
  70. #endif
  71.  
  72. #ifndef DOUBLE_TYPE_SIZE
  73. #define DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2)
  74. #endif
  75.  
  76. #ifndef LONG_DOUBLE_TYPE_SIZE
  77. #define LONG_DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2)
  78. #endif
  79.  
  80. /* We let tm.h override the types used here, to handle trivial differences
  81.    such as the choice of unsigned int or long unsigned int for size_t.
  82.    When machines start needing nontrivial differences in the size type,
  83.    it would be best to do something here to figure out automatically
  84.    from other information what type to use.  */
  85.  
  86. #ifndef SIZE_TYPE
  87. #define SIZE_TYPE "long unsigned int"
  88. #endif
  89.  
  90. #ifndef PTRDIFF_TYPE
  91. #define PTRDIFF_TYPE "long int"
  92. #endif
  93.  
  94. #ifndef WCHAR_TYPE
  95. #define WCHAR_TYPE "int"
  96. #endif
  97.  
  98. /* a node which has tree code ERROR_MARK, and whose type is itself.
  99.    All erroneous expressions are replaced with this node.  All functions
  100.    that accept nodes as arguments should avoid generating error messages
  101.    if this node is one of the arguments, since it is undesirable to get
  102.    multiple error messages from one error in the input.  */
  103.  
  104. tree error_mark_node;
  105.  
  106. /* INTEGER_TYPE and REAL_TYPE nodes for the standard data types */
  107.  
  108. tree short_integer_type_node;
  109. tree integer_type_node;
  110. tree long_integer_type_node;
  111. tree long_long_integer_type_node;
  112.  
  113. tree short_unsigned_type_node;
  114. tree unsigned_type_node;
  115. tree long_unsigned_type_node;
  116. tree long_long_unsigned_type_node;
  117.  
  118. tree ptrdiff_type_node;
  119.  
  120. tree unsigned_char_type_node;
  121. tree signed_char_type_node;
  122. tree char_type_node;
  123. tree wchar_type_node;
  124. tree signed_wchar_type_node;
  125. tree unsigned_wchar_type_node;
  126.  
  127. tree float_type_node;
  128. tree double_type_node;
  129. tree long_double_type_node;
  130.  
  131. tree complex_integer_type_node;
  132. tree complex_float_type_node;
  133. tree complex_double_type_node;
  134. tree complex_long_double_type_node;
  135.  
  136. tree intQI_type_node;
  137. tree intHI_type_node;
  138. tree intSI_type_node;
  139. tree intDI_type_node;
  140.  
  141. tree unsigned_intQI_type_node;
  142. tree unsigned_intHI_type_node;
  143. tree unsigned_intSI_type_node;
  144. tree unsigned_intDI_type_node;
  145.  
  146. /* a VOID_TYPE node.  */
  147.  
  148. tree void_type_node;
  149.  
  150. /* Nodes for types `void *' and `const void *'.  */
  151.  
  152. tree ptr_type_node, const_ptr_type_node;
  153.  
  154. /* Nodes for types `char *' and `const char *'.  */
  155.  
  156. tree string_type_node, const_string_type_node;
  157.  
  158. /* Type `char[SOMENUMBER]'.
  159.    Used when an array of char is needed and the size is irrelevant.  */
  160.  
  161. tree char_array_type_node;
  162.  
  163. /* Type `int[SOMENUMBER]' or something like it.
  164.    Used when an array of int needed and the size is irrelevant.  */
  165.  
  166. tree int_array_type_node;
  167.  
  168. /* Type `wchar_t[SOMENUMBER]' or something like it.
  169.    Used when a wide string literal is created.  */
  170.  
  171. tree wchar_array_type_node;
  172.  
  173. /* type `int ()' -- used for implicit declaration of functions.  */
  174.  
  175. tree default_function_type;
  176.  
  177. /* function types `double (double)' and `double (double, double)', etc.  */
  178.  
  179. tree double_ftype_double, double_ftype_double_double;
  180. tree int_ftype_int, long_ftype_long;
  181.  
  182. /* Function type `void (void *, void *, int)' and similar ones */
  183.  
  184. tree void_ftype_ptr_ptr_int, int_ftype_ptr_ptr_int, void_ftype_ptr_int_int;
  185.  
  186. /* Function type `char *(char *, char *)' and similar ones */
  187. tree string_ftype_ptr_ptr, int_ftype_string_string;
  188.  
  189. /* Function type `int (const void *, const void *, size_t)' */
  190. tree int_ftype_cptr_cptr_sizet;
  191.  
  192. /* Two expressions that are constants with value zero.
  193.    The first is of type `int', the second of type `void *'.  */
  194.  
  195. tree integer_zero_node;
  196. tree null_pointer_node;
  197.  
  198. /* A node for the integer constant 1.  */
  199.  
  200. tree integer_one_node;
  201.  
  202. /* Nonzero if we have seen an invalid cross reference
  203.    to a struct, union, or enum, but not yet printed the message.  */
  204.  
  205. tree pending_invalid_xref;
  206. /* File and line to appear in the eventual error message.  */
  207. char *pending_invalid_xref_file;
  208. int pending_invalid_xref_line;
  209.  
  210. /* While defining an enum type, this is 1 plus the last enumerator
  211.    constant value.  Note that will do not have to save this or `enum_overflow'
  212.    around nested function definition since such a definition could only
  213.    occur in an enum value expression and we don't use these variables in
  214.    that case.  */
  215.  
  216. static tree enum_next_value;
  217.  
  218. /* Nonzero means that there was overflow computing enum_next_value.  */
  219.  
  220. static int enum_overflow;
  221.  
  222. /* Parsing a function declarator leaves a list of parameter names
  223.    or a chain or parameter decls here.  */
  224.  
  225. static tree last_function_parms;
  226.  
  227. /* Parsing a function declarator leaves here a chain of structure
  228.    and enum types declared in the parmlist.  */
  229.  
  230. static tree last_function_parm_tags;
  231.  
  232. /* After parsing the declarator that starts a function definition,
  233.    `start_function' puts here the list of parameter names or chain of decls.
  234.    `store_parm_decls' finds it here.  */
  235.  
  236. static tree current_function_parms;
  237.  
  238. /* Similar, for last_function_parm_tags.  */
  239. static tree current_function_parm_tags;
  240.  
  241. /* Similar, for the file and line that the prototype came from if this is
  242.    an old-style definition.  */
  243. static char *current_function_prototype_file;
  244. static int current_function_prototype_line;
  245.  
  246. /* A list (chain of TREE_LIST nodes) of all LABEL_DECLs in the function
  247.    that have names.  Here so we can clear out their names' definitions
  248.    at the end of the function.  */
  249.  
  250. static tree named_labels;
  251.  
  252. /* A list of LABEL_DECLs from outer contexts that are currently shadowed.  */
  253.  
  254. static tree shadowed_labels;
  255.  
  256. /* Nonzero when store_parm_decls is called indicates a varargs function.
  257.    Value not meaningful after store_parm_decls.  */
  258.  
  259. static int c_function_varargs;
  260.  
  261. /* The FUNCTION_DECL for the function currently being compiled,
  262.    or 0 if between functions.  */
  263. tree current_function_decl;
  264.  
  265. /* Set to 0 at beginning of a function definition, set to 1 if
  266.    a return statement that specifies a return value is seen.  */
  267.  
  268. int current_function_returns_value;
  269.  
  270. /* Set to 0 at beginning of a function definition, set to 1 if
  271.    a return statement with no argument is seen.  */
  272.  
  273. int current_function_returns_null;
  274.  
  275. /* Set to nonzero by `grokdeclarator' for a function
  276.    whose return type is defaulted, if warnings for this are desired.  */
  277.  
  278. static int warn_about_return_type;
  279.  
  280. /* Nonzero when starting a function declared `extern inline'.  */
  281.  
  282. static int current_extern_inline;
  283.  
  284. /* For each binding contour we allocate a binding_level structure
  285.  * which records the names defined in that contour.
  286.  * Contours include:
  287.  *  0) the global one
  288.  *  1) one for each function definition,
  289.  *     where internal declarations of the parameters appear.
  290.  *  2) one for each compound statement,
  291.  *     to record its declarations.
  292.  *
  293.  * The current meaning of a name can be found by searching the levels from
  294.  * the current one out to the global one.
  295.  */
  296.  
  297. /* Note that the information in the `names' component of the global contour
  298.    is duplicated in the IDENTIFIER_GLOBAL_VALUEs of all identifiers.  */
  299.  
  300. struct binding_level
  301.   {
  302.     /* A chain of _DECL nodes for all variables, constants, functions,
  303.        and typedef types.  These are in the reverse of the order supplied.
  304.      */
  305.     tree names;
  306.  
  307.     /* A list of structure, union and enum definitions,
  308.      * for looking up tag names.
  309.      * It is a chain of TREE_LIST nodes, each of whose TREE_PURPOSE is a name,
  310.      * or NULL_TREE; and whose TREE_VALUE is a RECORD_TYPE, UNION_TYPE,
  311.      * or ENUMERAL_TYPE node.
  312.      */
  313.     tree tags;
  314.  
  315.     /* For each level, a list of shadowed outer-level local definitions
  316.        to be restored when this level is popped.
  317.        Each link is a TREE_LIST whose TREE_PURPOSE is an identifier and
  318.        whose TREE_VALUE is its old definition (a kind of ..._DECL node).  */
  319.     tree shadowed;
  320.  
  321.     /* For each level (except not the global one),
  322.        a chain of BLOCK nodes for all the levels
  323.        that were entered and exited one level down.  */
  324.     tree blocks;
  325.  
  326.     /* The BLOCK node for this level, if one has been preallocated.
  327.        If 0, the BLOCK is allocated (if needed) when the level is popped.  */
  328.     tree this_block;
  329.  
  330.     /* The binding level which this one is contained in (inherits from).  */
  331.     struct binding_level *level_chain;
  332.  
  333.     /* Nonzero for the level that holds the parameters of a function.  */
  334.     char parm_flag;
  335.  
  336.     /* Nonzero if this level "doesn't exist" for tags.  */
  337.     char tag_transparent;
  338.  
  339.     /* Nonzero if sublevels of this level "don't exist" for tags.
  340.        This is set in the parm level of a function definition
  341.        while reading the function body, so that the outermost block
  342.        of the function body will be tag-transparent.  */
  343.     char subblocks_tag_transparent;
  344.  
  345.     /* Nonzero means make a BLOCK for this level regardless of all else.  */
  346.     char keep;
  347.  
  348.     /* Nonzero means make a BLOCK if this level has any subblocks.  */
  349.     char keep_if_subblocks;
  350.  
  351.     /* Number of decls in `names' that have incomplete 
  352.        structure or union types.  */
  353.     int n_incomplete;
  354.  
  355.     /* A list of decls giving the (reversed) specified order of parms,
  356.        not including any forward-decls in the parmlist.
  357.        This is so we can put the parms in proper order for assign_parms.  */
  358.     tree parm_order;
  359.   };
  360.  
  361. #define NULL_BINDING_LEVEL (struct binding_level *) NULL
  362.   
  363. /* The binding level currently in effect.  */
  364.  
  365. static struct binding_level *current_binding_level;
  366.  
  367. /* A chain of binding_level structures awaiting reuse.  */
  368.  
  369. static struct binding_level *free_binding_level;
  370.  
  371. /* The outermost binding level, for names of file scope.
  372.    This is created when the compiler is started and exists
  373.    through the entire run.  */
  374.  
  375. static struct binding_level *global_binding_level;
  376.  
  377. /* Binding level structures are initialized by copying this one.  */
  378.  
  379. static struct binding_level clear_binding_level
  380.   = {NULL, NULL, NULL, NULL, NULL, NULL_BINDING_LEVEL, 0, 0, 0, 0, 0, 0,
  381.      NULL};
  382.  
  383. /* Nonzero means unconditionally make a BLOCK for the next level pushed.  */
  384.  
  385. static int keep_next_level_flag;
  386.  
  387. /* Nonzero means make a BLOCK for the next level pushed
  388.    if it has subblocks.  */
  389.  
  390. static int keep_next_if_subblocks;
  391.   
  392. /* The chain of outer levels of label scopes.
  393.    This uses the same data structure used for binding levels,
  394.    but it works differently: each link in the chain records
  395.    saved values of named_labels and shadowed_labels for
  396.    a label binding level outside the current one.  */
  397.  
  398. static struct binding_level *label_level_chain;
  399.  
  400. /* Forward declarations.  */
  401.  
  402. static tree grokparms (), grokdeclarator ();
  403. tree pushdecl ();
  404. tree builtin_function ();
  405. void shadow_tag_warned ();
  406.  
  407. static tree lookup_tag ();
  408. static tree lookup_tag_reverse ();
  409. tree lookup_name_current_level ();
  410. static char *redeclaration_error_message ();
  411. static void layout_array_type ();
  412.  
  413. /* C-specific option variables.  */
  414.  
  415. /* Nonzero means allow type mismatches in conditional expressions;
  416.    just make their values `void'.   */
  417.  
  418. int flag_cond_mismatch;
  419.  
  420. /* Nonzero means give `double' the same size as `float'.  */
  421.  
  422. int flag_short_double;
  423.  
  424. /* Nonzero means don't recognize the keyword `asm'.  */
  425.  
  426. int flag_no_asm;
  427.  
  428. /* Nonzero means don't recognize any builtin functions.  */
  429.  
  430. int flag_no_builtin;
  431.  
  432. /* Nonzero means don't recognize the non-ANSI builtin functions.
  433.    -ansi sets this.  */
  434.  
  435. int flag_no_nonansi_builtin;
  436.  
  437. /* Nonzero means do some things the same way PCC does.  */
  438.  
  439. int flag_traditional;
  440.  
  441. /* Nonzero means to allow single precision math even if we're generally
  442.    being traditional. */
  443. int flag_allow_single_precision = 0;
  444.  
  445. /* Nonzero means to treat bitfields as signed unless they say `unsigned'.  */
  446.  
  447. int flag_signed_bitfields = 1;
  448. int explicit_flag_signed_bitfields = 0;
  449.  
  450. /* Nonzero means handle `#ident' directives.  0 means ignore them.  */
  451.  
  452. int flag_no_ident = 0;
  453.  
  454. /* Nonzero means warn about implicit declarations.  */
  455.  
  456. int warn_implicit;
  457.  
  458. /* Nonzero means give string constants the type `const char *'
  459.    to get extra warnings from them.  These warnings will be too numerous
  460.    to be useful, except in thoroughly ANSIfied programs.  */
  461.  
  462. int warn_write_strings;
  463.  
  464. /* Nonzero means warn about pointer casts that can drop a type qualifier
  465.    from the pointer target type.  */
  466.  
  467. int warn_cast_qual;
  468.  
  469. /* Nonzero means warn when casting a function call to a type that does
  470.    not match the return type (e.g. (float)sqrt() or (anything*)malloc()
  471.    when there is no previous declaration of sqrt or malloc.  */
  472.  
  473. int warn_bad_function_cast;
  474.  
  475. /* Warn about traditional constructs whose meanings changed in ANSI C.  */
  476.  
  477. int warn_traditional;
  478.  
  479. /* Nonzero means warn about sizeof(function) or addition/subtraction
  480.    of function pointers.  */
  481.  
  482. int warn_pointer_arith;
  483.  
  484. /* Nonzero means warn for non-prototype function decls
  485.    or non-prototyped defs without previous prototype.  */
  486.  
  487. int warn_strict_prototypes;
  488.  
  489. /* Nonzero means warn for any global function def
  490.    without separate previous prototype decl.  */
  491.  
  492. int warn_missing_prototypes;
  493.  
  494. /* Nonzero means warn for any global function def
  495.    without separate previous decl.  */
  496.  
  497. int warn_missing_declarations;
  498.  
  499. /* Nonzero means warn about multiple (redundant) decls for the same single
  500.    variable or function.  */
  501.  
  502. int warn_redundant_decls = 0;
  503.  
  504. /* Nonzero means warn about extern declarations of objects not at
  505.    file-scope level and about *all* declarations of functions (whether
  506.    extern or static) not at file-scope level.  Note that we exclude
  507.    implicit function declarations.  To get warnings about those, use
  508.    -Wimplicit.  */
  509.  
  510. int warn_nested_externs = 0;
  511.  
  512. /* Warn about *printf or *scanf format/argument anomalies. */
  513.  
  514. int warn_format;
  515.  
  516. /* Warn about a subscript that has type char.  */
  517.  
  518. int warn_char_subscripts = 0;
  519.  
  520. /* Warn if a type conversion is done that might have confusing results.  */
  521.  
  522. int warn_conversion;
  523.  
  524. /* Warn if adding () is suggested.  */
  525.  
  526. int warn_parentheses;
  527.  
  528. /* Warn if initializer is not completely bracketed.  */
  529.  
  530. int warn_missing_braces;
  531.  
  532. /* Nonzero means `$' can be in an identifier.
  533.    See cccp.c for reasons why this breaks some obscure ANSI C programs.  */
  534.  
  535. #ifndef DOLLARS_IN_IDENTIFIERS
  536. #define DOLLARS_IN_IDENTIFIERS 1
  537. #endif
  538. int dollars_in_ident = DOLLARS_IN_IDENTIFIERS > 1;
  539.  
  540. /* Decode the string P as a language-specific option for C.
  541.    Return 1 if it is recognized (and handle it);
  542.    return 0 if not recognized.  */
  543.    
  544. int
  545. c_decode_option (p)
  546.      char *p;
  547. {
  548.   if (!strcmp (p, "-ftraditional") || !strcmp (p, "-traditional"))
  549.     {
  550.       flag_traditional = 1;
  551.       flag_writable_strings = 1;
  552. #if DOLLARS_IN_IDENTIFIERS > 0
  553.       dollars_in_ident = 1;
  554. #endif
  555.     }
  556.   else if (!strcmp (p, "-fallow-single-precision"))
  557.     flag_allow_single_precision = 1;
  558.   else if (!strcmp (p, "-fnotraditional") || !strcmp (p, "-fno-traditional"))
  559.     {
  560.       flag_traditional = 0;
  561.       flag_writable_strings = 0;
  562.       dollars_in_ident = DOLLARS_IN_IDENTIFIERS > 1;
  563.     }
  564.   else if (!strcmp (p, "-fdollars-in-identifiers"))
  565.     {
  566. #if DOLLARS_IN_IDENTIFIERS > 0
  567.       dollars_in_ident = 1;
  568. #endif
  569.     }
  570.   else if (!strcmp (p, "-fno-dollars-in-identifiers"))
  571.     dollars_in_ident = 0;
  572.   else if (!strcmp (p, "-fsigned-char"))
  573.     flag_signed_char = 1;
  574.   else if (!strcmp (p, "-funsigned-char"))
  575.     flag_signed_char = 0;
  576.   else if (!strcmp (p, "-fno-signed-char"))
  577.     flag_signed_char = 0;
  578.   else if (!strcmp (p, "-fno-unsigned-char"))
  579.     flag_signed_char = 1;
  580.   else if (!strcmp (p, "-fsigned-bitfields")
  581.        || !strcmp (p, "-fno-unsigned-bitfields"))
  582.     {
  583.       flag_signed_bitfields = 1;
  584.       explicit_flag_signed_bitfields = 1;
  585.     }
  586.   else if (!strcmp (p, "-funsigned-bitfields")
  587.        || !strcmp (p, "-fno-signed-bitfields"))
  588.     {
  589.       flag_signed_bitfields = 0;
  590.       explicit_flag_signed_bitfields = 1;
  591.     }
  592.   else if (!strcmp (p, "-fshort-enums"))
  593.     flag_short_enums = 1;
  594.   else if (!strcmp (p, "-fno-short-enums"))
  595.     flag_short_enums = 0;
  596.   else if (!strcmp (p, "-fcond-mismatch"))
  597.     flag_cond_mismatch = 1;
  598.   else if (!strcmp (p, "-fno-cond-mismatch"))
  599.     flag_cond_mismatch = 0;
  600.   else if (!strcmp (p, "-fshort-double"))
  601.     flag_short_double = 1;
  602.   else if (!strcmp (p, "-fno-short-double"))
  603.     flag_short_double = 0;
  604.   else if (!strcmp (p, "-fasm"))
  605.     flag_no_asm = 0;
  606.   else if (!strcmp (p, "-fno-asm"))
  607.     flag_no_asm = 1;
  608.   else if (!strcmp (p, "-fbuiltin"))
  609.     flag_no_builtin = 0;
  610.   else if (!strcmp (p, "-fno-builtin"))
  611.     flag_no_builtin = 1;
  612.   else if (!strcmp (p, "-fno-ident"))
  613.     flag_no_ident = 1;
  614.   else if (!strcmp (p, "-fident"))
  615.     flag_no_ident = 0;
  616.   else if (!strcmp (p, "-ansi"))
  617.     flag_no_asm = 1, flag_no_nonansi_builtin = 1, dollars_in_ident = 0;
  618.   else if (!strcmp (p, "-Wimplicit"))
  619.     warn_implicit = 1;
  620.   else if (!strcmp (p, "-Wno-implicit"))
  621.     warn_implicit = 0;
  622.   else if (!strcmp (p, "-Wwrite-strings"))
  623.     warn_write_strings = 1;
  624.   else if (!strcmp (p, "-Wno-write-strings"))
  625.     warn_write_strings = 0;
  626.   else if (!strcmp (p, "-Wcast-qual"))
  627.     warn_cast_qual = 1;
  628.   else if (!strcmp (p, "-Wno-cast-qual"))
  629.     warn_cast_qual = 0;
  630.   else if (!strcmp (p, "-Wbad-function-cast"))
  631.     warn_bad_function_cast = 1;
  632.   else if (!strcmp (p, "-Wno-bad-function-cast"))
  633.     warn_bad_function_cast = 0;
  634.   else if (!strcmp (p, "-Wpointer-arith"))
  635.     warn_pointer_arith = 1;
  636.   else if (!strcmp (p, "-Wno-pointer-arith"))
  637.     warn_pointer_arith = 0;
  638.   else if (!strcmp (p, "-Wstrict-prototypes"))
  639.     warn_strict_prototypes = 1;
  640.   else if (!strcmp (p, "-Wno-strict-prototypes"))
  641.     warn_strict_prototypes = 0;
  642.   else if (!strcmp (p, "-Wmissing-prototypes"))
  643.     warn_missing_prototypes = 1;
  644.   else if (!strcmp (p, "-Wno-missing-prototypes"))
  645.     warn_missing_prototypes = 0;
  646.   else if (!strcmp (p, "-Wmissing-declarations"))
  647.     warn_missing_declarations = 1;
  648.   else if (!strcmp (p, "-Wno-missing-declarations"))
  649.     warn_missing_declarations = 0;
  650.   else if (!strcmp (p, "-Wredundant-decls"))
  651.     warn_redundant_decls = 1;
  652.   else if (!strcmp (p, "-Wno-redundant-decls"))
  653.     warn_redundant_decls = 0;
  654.   else if (!strcmp (p, "-Wnested-externs"))
  655.     warn_nested_externs = 1;
  656.   else if (!strcmp (p, "-Wno-nested-externs"))
  657.     warn_nested_externs = 0;
  658.   else if (!strcmp (p, "-Wtraditional"))
  659.     warn_traditional = 1;
  660.   else if (!strcmp (p, "-Wno-traditional"))
  661.     warn_traditional = 0;
  662.   else if (!strcmp (p, "-Wformat"))
  663.     warn_format = 1;
  664.   else if (!strcmp (p, "-Wno-format"))
  665.     warn_format = 0;
  666.   else if (!strcmp (p, "-Wchar-subscripts"))
  667.     warn_char_subscripts = 1;
  668.   else if (!strcmp (p, "-Wno-char-subscripts"))
  669.     warn_char_subscripts = 0;
  670.   else if (!strcmp (p, "-Wconversion"))
  671.     warn_conversion = 1;
  672.   else if (!strcmp (p, "-Wno-conversion"))
  673.     warn_conversion = 0;
  674.   else if (!strcmp (p, "-Wparentheses"))
  675.     warn_parentheses = 1;
  676.   else if (!strcmp (p, "-Wno-parentheses"))
  677.     warn_parentheses = 0;
  678.   else if (!strcmp (p, "-Wreturn-type"))
  679.     warn_return_type = 1;
  680.   else if (!strcmp (p, "-Wno-return-type"))
  681.     warn_return_type = 0;
  682.   else if (!strcmp (p, "-Wcomment"))
  683.     ; /* cpp handles this one.  */
  684.   else if (!strcmp (p, "-Wno-comment"))
  685.     ; /* cpp handles this one.  */
  686.   else if (!strcmp (p, "-Wcomments"))
  687.     ; /* cpp handles this one.  */
  688.   else if (!strcmp (p, "-Wno-comments"))
  689.     ; /* cpp handles this one.  */
  690.   else if (!strcmp (p, "-Wtrigraphs"))
  691.     ; /* cpp handles this one.  */
  692.   else if (!strcmp (p, "-Wno-trigraphs"))
  693.     ; /* cpp handles this one.  */
  694.   else if (!strcmp (p, "-Wimport"))
  695.     ; /* cpp handles this one.  */
  696.   else if (!strcmp (p, "-Wno-import"))
  697.     ; /* cpp handles this one.  */
  698.   else if (!strcmp (p, "-Wmissing-braces"))
  699.     warn_missing_braces = 1;
  700.   else if (!strcmp (p, "-Wno-missing-braces"))
  701.     warn_missing_braces = 0;
  702.   else if (!strcmp (p, "-Wall"))
  703.     {
  704.       extra_warnings = 1;
  705.       /* We save the value of warn_uninitialized, since if they put
  706.      -Wuninitialized on the command line, we need to generate a
  707.      warning about not using it without also specifying -O.  */
  708.       if (warn_uninitialized != 1)
  709.     warn_uninitialized = 2;
  710.       warn_implicit = 1;
  711.       warn_return_type = 1;
  712.       warn_unused = 1;
  713.       warn_switch = 1;
  714.       warn_format = 1;
  715.       warn_char_subscripts = 1;
  716.       warn_parentheses = 1;
  717.       warn_missing_braces = 1;
  718.     }
  719.   else
  720.     return 0;
  721.  
  722.   return 1;
  723. }
  724.  
  725. /* Hooks for print_node.  */
  726.  
  727. void
  728. print_lang_decl (file, node, indent)
  729.      FILE *file;
  730.      tree node;
  731.      int indent;
  732. {
  733. }
  734.  
  735. void
  736. print_lang_type (file, node, indent)
  737.      FILE *file;
  738.      tree node;
  739.      int indent;
  740. {
  741. }
  742.  
  743. void
  744. print_lang_identifier (file, node, indent)
  745.      FILE *file;
  746.      tree node;
  747.      int indent;
  748. {
  749.   print_node (file, "global", IDENTIFIER_GLOBAL_VALUE (node), indent + 4);
  750.   print_node (file, "local", IDENTIFIER_LOCAL_VALUE (node), indent + 4);
  751.   print_node (file, "label", IDENTIFIER_LABEL_VALUE (node), indent + 4);
  752.   print_node (file, "implicit", IDENTIFIER_IMPLICIT_DECL (node), indent + 4);
  753.   print_node (file, "error locus", IDENTIFIER_ERROR_LOCUS (node), indent + 4);
  754.   print_node (file, "limbo value", IDENTIFIER_LIMBO_VALUE (node), indent + 4);
  755. }
  756.  
  757. /* Hook called at end of compilation to assume 1 elt
  758.    for a top-level array decl that wasn't complete before.  */
  759.    
  760. void
  761. finish_incomplete_decl (decl)
  762.      tree decl;
  763. {
  764.   if (TREE_CODE (decl) == VAR_DECL && TREE_TYPE (decl) != error_mark_node)
  765.     {
  766.       tree type = TREE_TYPE (decl);
  767.       if (TREE_CODE (type) == ARRAY_TYPE
  768.       && TYPE_DOMAIN (type) == 0
  769.       && TREE_CODE (decl) != TYPE_DECL)
  770.     {
  771.       complete_array_type (type, NULL_TREE, 1);
  772.  
  773.       layout_decl (decl, 0);
  774.     }
  775.     }
  776. }
  777.  
  778. /* Create a new `struct binding_level'.  */
  779.  
  780. static
  781. struct binding_level *
  782. make_binding_level ()
  783. {
  784.   /* NOSTRICT */
  785.   return (struct binding_level *) xmalloc (sizeof (struct binding_level));
  786. }
  787.  
  788. /* Nonzero if we are currently in the global binding level.  */
  789.  
  790. int
  791. global_bindings_p ()
  792. {
  793.   return current_binding_level == global_binding_level;
  794. }
  795.  
  796. void
  797. keep_next_level ()
  798. {
  799.   keep_next_level_flag = 1;
  800. }
  801.  
  802. /* Nonzero if the current level needs to have a BLOCK made.  */
  803.  
  804. int
  805. kept_level_p ()
  806. {
  807.   return ((current_binding_level->keep_if_subblocks
  808.        && current_binding_level->blocks != 0)
  809.       || current_binding_level->keep
  810.       || current_binding_level->names != 0
  811.       || (current_binding_level->tags != 0
  812.           && !current_binding_level->tag_transparent));
  813. }
  814.  
  815. /* Identify this binding level as a level of parameters.
  816.    DEFINITION_FLAG is 1 for a definition, 0 for a declaration.
  817.    But it turns out there is no way to pass the right value for
  818.    DEFINITION_FLAG, so we ignore it.  */
  819.  
  820. void
  821. declare_parm_level (definition_flag)
  822.      int definition_flag;
  823. {
  824.   current_binding_level->parm_flag = 1;
  825. }
  826.  
  827. /* Nonzero if currently making parm declarations.  */
  828.  
  829. int
  830. in_parm_level_p ()
  831. {
  832.   return current_binding_level->parm_flag;
  833. }
  834.  
  835. /* Enter a new binding level.
  836.    If TAG_TRANSPARENT is nonzero, do so only for the name space of variables,
  837.    not for that of tags.  */
  838.  
  839. void
  840. pushlevel (tag_transparent)
  841.      int tag_transparent;
  842. {
  843.   register struct binding_level *newlevel = NULL_BINDING_LEVEL;
  844.  
  845.   /* If this is the top level of a function,
  846.      just make sure that NAMED_LABELS is 0.  */
  847.  
  848.   if (current_binding_level == global_binding_level)
  849.     {
  850.       named_labels = 0;
  851.     }
  852.  
  853.   /* Reuse or create a struct for this binding level.  */
  854.  
  855.   if (free_binding_level)
  856.     {
  857.       newlevel = free_binding_level;
  858.       free_binding_level = free_binding_level->level_chain;
  859.     }
  860.   else
  861.     {
  862.       newlevel = make_binding_level ();
  863.     }
  864.  
  865.   /* Add this level to the front of the chain (stack) of levels that
  866.      are active.  */
  867.  
  868.   *newlevel = clear_binding_level;
  869.   newlevel->tag_transparent
  870.     = (tag_transparent
  871.        || (current_binding_level
  872.        ? current_binding_level->subblocks_tag_transparent
  873.        : 0));
  874.   newlevel->level_chain = current_binding_level;
  875.   current_binding_level = newlevel;
  876.   newlevel->keep = keep_next_level_flag;
  877.   keep_next_level_flag = 0;
  878.   newlevel->keep_if_subblocks = keep_next_if_subblocks;
  879.   keep_next_if_subblocks = 0;
  880. }
  881.  
  882. /* Exit a binding level.
  883.    Pop the level off, and restore the state of the identifier-decl mappings
  884.    that were in effect when this level was entered.
  885.  
  886.    If KEEP is nonzero, this level had explicit declarations, so
  887.    and create a "block" (a BLOCK node) for the level
  888.    to record its declarations and subblocks for symbol table output.
  889.  
  890.    If FUNCTIONBODY is nonzero, this level is the body of a function,
  891.    so create a block as if KEEP were set and also clear out all
  892.    label names.
  893.  
  894.    If REVERSE is nonzero, reverse the order of decls before putting
  895.    them into the BLOCK.  */
  896.  
  897. tree
  898. poplevel (keep, reverse, functionbody)
  899.      int keep;
  900.      int reverse;
  901.      int functionbody;
  902. {
  903.   register tree link;
  904.   /* The chain of decls was accumulated in reverse order.
  905.      Put it into forward order, just for cleanliness.  */
  906.   tree decls;
  907.   tree tags = current_binding_level->tags;
  908.   tree subblocks = current_binding_level->blocks;
  909.   tree block = 0;
  910.   tree decl;
  911.   int block_previously_created;
  912.  
  913.   keep |= current_binding_level->keep;
  914.  
  915.   /* This warning is turned off because it causes warnings for
  916.      declarations like `extern struct foo *x'.  */
  917. #if 0
  918.   /* Warn about incomplete structure types in this level.  */
  919.   for (link = tags; link; link = TREE_CHAIN (link))
  920.     if (TYPE_SIZE (TREE_VALUE (link)) == 0)
  921.       {
  922.     tree type = TREE_VALUE (link);
  923.     char *errmsg;
  924.     switch (TREE_CODE (type))
  925.       {
  926.       case RECORD_TYPE:
  927.         errmsg = "`struct %s' incomplete in scope ending here";
  928.         break;
  929.       case UNION_TYPE:
  930.         errmsg = "`union %s' incomplete in scope ending here";
  931.         break;
  932.       case ENUMERAL_TYPE:
  933.         errmsg = "`enum %s' incomplete in scope ending here";
  934.         break;
  935.       }
  936.     if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
  937.       error (errmsg, IDENTIFIER_POINTER (TYPE_NAME (type)));
  938.     else
  939.       /* If this type has a typedef-name, the TYPE_NAME is a TYPE_DECL.  */
  940.       error (errmsg, IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type))));
  941.       }
  942. #endif /* 0 */
  943.  
  944.   /* Get the decls in the order they were written.
  945.      Usually current_binding_level->names is in reverse order.
  946.      But parameter decls were previously put in forward order.  */
  947.  
  948.   if (reverse)
  949.     current_binding_level->names
  950.       = decls = nreverse (current_binding_level->names);
  951.   else
  952.     decls = current_binding_level->names;
  953.  
  954.   /* Output any nested inline functions within this block
  955.      if they weren't already output.  */
  956.  
  957.   for (decl = decls; decl; decl = TREE_CHAIN (decl))
  958.     if (TREE_CODE (decl) == FUNCTION_DECL
  959.     && ! TREE_ASM_WRITTEN (decl)
  960.     && DECL_INITIAL (decl) != 0
  961.     && TREE_ADDRESSABLE (decl))
  962.       {
  963.     /* If this decl was copied from a file-scope decl
  964.        on account of a block-scope extern decl,
  965.        propagate TREE_ADDRESSABLE to the file-scope decl.  */
  966.     if (DECL_ABSTRACT_ORIGIN (decl) != 0)
  967.       TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (decl)) = 1;
  968.     else
  969.       {
  970.         push_function_context ();
  971.         output_inline_function (decl);
  972.         pop_function_context ();
  973.       }
  974.       }
  975.  
  976.   /* If there were any declarations or structure tags in that level,
  977.      or if this level is a function body,
  978.      create a BLOCK to record them for the life of this function.  */
  979.  
  980.   block = 0;
  981.   block_previously_created = (current_binding_level->this_block != 0);
  982.   if (block_previously_created)
  983.     block = current_binding_level->this_block;
  984.   else if (keep || functionbody
  985.        || (current_binding_level->keep_if_subblocks && subblocks != 0))
  986.     block = make_node (BLOCK);
  987.   if (block != 0)
  988.     {
  989.       BLOCK_VARS (block) = decls;
  990.       BLOCK_TYPE_TAGS (block) = tags;
  991.       BLOCK_SUBBLOCKS (block) = subblocks;
  992.       remember_end_note (block);
  993.     }
  994.  
  995.   /* In each subblock, record that this is its superior.  */
  996.  
  997.   for (link = subblocks; link; link = TREE_CHAIN (link))
  998.     BLOCK_SUPERCONTEXT (link) = block;
  999.  
  1000.   /* Clear out the meanings of the local variables of this level.  */
  1001.  
  1002.   for (link = decls; link; link = TREE_CHAIN (link))
  1003.     {
  1004.       if (DECL_NAME (link) != 0)
  1005.     {
  1006.       /* If the ident. was used or addressed via a local extern decl,
  1007.          don't forget that fact.  */
  1008.       if (DECL_EXTERNAL (link))
  1009.         {
  1010.           if (TREE_USED (link))
  1011.         TREE_USED (DECL_NAME (link)) = 1;
  1012.           if (TREE_ADDRESSABLE (link))
  1013.         TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (link)) = 1;
  1014.         }
  1015.       IDENTIFIER_LOCAL_VALUE (DECL_NAME (link)) = 0;
  1016.     }
  1017.     }
  1018.  
  1019.   /* Restore all name-meanings of the outer levels
  1020.      that were shadowed by this level.  */
  1021.  
  1022.   for (link = current_binding_level->shadowed; link; link = TREE_CHAIN (link))
  1023.     IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
  1024.  
  1025.   /* If the level being exited is the top level of a function,
  1026.      check over all the labels, and clear out the current
  1027.      (function local) meanings of their names.  */
  1028.  
  1029.   if (functionbody)
  1030.     {
  1031.       /* If this is the top level block of a function,
  1032.      the vars are the function's parameters.
  1033.      Don't leave them in the BLOCK because they are
  1034.      found in the FUNCTION_DECL instead.  */
  1035.  
  1036.       BLOCK_VARS (block) = 0;
  1037.  
  1038.       /* Clear out the definitions of all label names,
  1039.      since their scopes end here,
  1040.      and add them to BLOCK_VARS.  */
  1041.  
  1042.       for (link = named_labels; link; link = TREE_CHAIN (link))
  1043.     {
  1044.       register tree label = TREE_VALUE (link);
  1045.  
  1046.       if (DECL_INITIAL (label) == 0)
  1047.         {
  1048.           error_with_decl (label, "label `%s' used but not defined");
  1049.           /* Avoid crashing later.  */
  1050.           define_label (input_filename, lineno,
  1051.                 DECL_NAME (label));
  1052.         }
  1053.       else if (warn_unused && !TREE_USED (label))
  1054.         warning_with_decl (label, "label `%s' defined but not used");
  1055.       IDENTIFIER_LABEL_VALUE (DECL_NAME (label)) = 0;
  1056.  
  1057.       /* Put the labels into the "variables" of the
  1058.          top-level block, so debugger can see them.  */
  1059.       TREE_CHAIN (label) = BLOCK_VARS (block);
  1060.       BLOCK_VARS (block) = label;
  1061.     }
  1062.     }
  1063.  
  1064.   /* Pop the current level, and free the structure for reuse.  */
  1065.  
  1066.   {
  1067.     register struct binding_level *level = current_binding_level;
  1068.     current_binding_level = current_binding_level->level_chain;
  1069.  
  1070.     level->level_chain = free_binding_level;
  1071.     free_binding_level = level;
  1072.   }
  1073.  
  1074.   /* Dispose of the block that we just made inside some higher level.  */
  1075.   if (functionbody)
  1076.     DECL_INITIAL (current_function_decl) = block;
  1077.   else if (block)
  1078.     {
  1079.       if (!block_previously_created)
  1080.         current_binding_level->blocks
  1081.           = chainon (current_binding_level->blocks, block);
  1082.     }
  1083.   /* If we did not make a block for the level just exited,
  1084.      any blocks made for inner levels
  1085.      (since they cannot be recorded as subblocks in that level)
  1086.      must be carried forward so they will later become subblocks
  1087.      of something else.  */
  1088.   else if (subblocks)
  1089.     current_binding_level->blocks
  1090.       = chainon (current_binding_level->blocks, subblocks);
  1091.  
  1092.   /* Set the TYPE_CONTEXTs for all of the tagged types belonging to this
  1093.      binding contour so that they point to the appropriate construct, i.e.
  1094.      either to the current FUNCTION_DECL node, or else to the BLOCK node
  1095.      we just constructed.
  1096.  
  1097.      Note that for tagged types whose scope is just the formal parameter
  1098.      list for some function type specification, we can't properly set
  1099.      their TYPE_CONTEXTs here, because we don't have a pointer to the
  1100.      appropriate FUNCTION_TYPE node readily available to us.  For those
  1101.      cases, the TYPE_CONTEXTs of the relevant tagged type nodes get set
  1102.      in `grokdeclarator' as soon as we have created the FUNCTION_TYPE
  1103.      node which will represent the "scope" for these "parameter list local"
  1104.      tagged types.
  1105.   */
  1106.  
  1107.   if (functionbody)
  1108.     for (link = tags; link; link = TREE_CHAIN (link))
  1109.       TYPE_CONTEXT (TREE_VALUE (link)) = current_function_decl;
  1110.   else if (block)
  1111.     for (link = tags; link; link = TREE_CHAIN (link))
  1112.       TYPE_CONTEXT (TREE_VALUE (link)) = block;
  1113.  
  1114.   if (block)
  1115.     TREE_USED (block) = 1;
  1116.   return block;
  1117. }
  1118.  
  1119. /* Delete the node BLOCK from the current binding level.
  1120.    This is used for the block inside a stmt expr ({...})
  1121.    so that the block can be reinserted where appropriate.  */
  1122.  
  1123. void
  1124. delete_block (block)
  1125.      tree block;
  1126. {
  1127.   tree t;
  1128.   if (current_binding_level->blocks == block)
  1129.     current_binding_level->blocks = TREE_CHAIN (block);
  1130.   for (t = current_binding_level->blocks; t;)
  1131.     {
  1132.       if (TREE_CHAIN (t) == block)
  1133.     TREE_CHAIN (t) = TREE_CHAIN (block);
  1134.       else
  1135.     t = TREE_CHAIN (t);
  1136.     }
  1137.   TREE_CHAIN (block) = NULL;
  1138.   /* Clear TREE_USED which is always set by poplevel.
  1139.      The flag is set again if insert_block is called.  */
  1140.   TREE_USED (block) = 0;
  1141. }
  1142.  
  1143. /* Insert BLOCK at the end of the list of subblocks of the
  1144.    current binding level.  This is used when a BIND_EXPR is expanded,
  1145.    to handle the BLOCK node inside the BIND_EXPR.  */
  1146.  
  1147. void
  1148. insert_block (block)
  1149.      tree block;
  1150. {
  1151.   TREE_USED (block) = 1;
  1152.   current_binding_level->blocks
  1153.     = chainon (current_binding_level->blocks, block);
  1154. }
  1155.  
  1156. /* Set the BLOCK node for the innermost scope
  1157.    (the one we are currently in).  */
  1158.  
  1159. void
  1160. set_block (block)
  1161.      register tree block;
  1162. {
  1163.   current_binding_level->this_block = block;
  1164. }
  1165.  
  1166. void
  1167. push_label_level ()
  1168. {
  1169.   register struct binding_level *newlevel;
  1170.  
  1171.   /* Reuse or create a struct for this binding level.  */
  1172.  
  1173.   if (free_binding_level)
  1174.     {
  1175.       newlevel = free_binding_level;
  1176.       free_binding_level = free_binding_level->level_chain;
  1177.     }
  1178.   else
  1179.     {
  1180.       newlevel = make_binding_level ();
  1181.     }
  1182.  
  1183.   /* Add this level to the front of the chain (stack) of label levels.  */
  1184.  
  1185.   newlevel->level_chain = label_level_chain;
  1186.   label_level_chain = newlevel;
  1187.  
  1188.   newlevel->names = named_labels;
  1189.   newlevel->shadowed = shadowed_labels;
  1190.   named_labels = 0;
  1191.   shadowed_labels = 0;
  1192. }
  1193.  
  1194. void
  1195. pop_label_level ()
  1196. {
  1197.   register struct binding_level *level = label_level_chain;
  1198.   tree link, prev;
  1199.  
  1200.   /* Clear out the definitions of the declared labels in this level.
  1201.      Leave in the list any ordinary, non-declared labels.  */
  1202.   for (link = named_labels, prev = 0; link;)
  1203.     {
  1204.       if (C_DECLARED_LABEL_FLAG (TREE_VALUE (link)))
  1205.     {
  1206.       if (DECL_SOURCE_LINE (TREE_VALUE (link)) == 0)
  1207.         {
  1208.           error_with_decl (TREE_VALUE (link),
  1209.                    "label `%s' used but not defined");
  1210.           /* Avoid crashing later.  */
  1211.           define_label (input_filename, lineno,
  1212.                 DECL_NAME (TREE_VALUE (link)));
  1213.         }
  1214.       else if (warn_unused && !TREE_USED (TREE_VALUE (link)))
  1215.         warning_with_decl (TREE_VALUE (link), 
  1216.                    "label `%s' defined but not used");
  1217.       IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link))) = 0;
  1218.  
  1219.       /* Delete this element from the list.  */
  1220.       link = TREE_CHAIN (link);
  1221.       if (prev)
  1222.         TREE_CHAIN (prev) = link;
  1223.       else
  1224.         named_labels = link;
  1225.     }
  1226.       else
  1227.     {
  1228.       prev = link;
  1229.       link = TREE_CHAIN (link);
  1230.     }
  1231.     }
  1232.  
  1233.   /* Bring back all the labels that were shadowed.  */
  1234.   for (link = shadowed_labels; link; link = TREE_CHAIN (link))
  1235.     if (DECL_NAME (TREE_VALUE (link)) != 0)
  1236.       IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
  1237.     = TREE_VALUE (link);
  1238.  
  1239.   named_labels = chainon (named_labels, level->names);
  1240.   shadowed_labels = level->shadowed;
  1241.  
  1242.   /* Pop the current level, and free the structure for reuse.  */
  1243.   label_level_chain = label_level_chain->level_chain;
  1244.   level->level_chain = free_binding_level;
  1245.   free_binding_level = level;
  1246. }
  1247.  
  1248. /* Push a definition or a declaration of struct, union or enum tag "name".
  1249.    "type" should be the type node.
  1250.    We assume that the tag "name" is not already defined.
  1251.  
  1252.    Note that the definition may really be just a forward reference.
  1253.    In that case, the TYPE_SIZE will be zero.  */
  1254.  
  1255. void
  1256. pushtag (name, type)
  1257.      tree name, type;
  1258. {
  1259.   register struct binding_level *b;
  1260.  
  1261.   /* Find the proper binding level for this type tag.  */
  1262.  
  1263.   for (b = current_binding_level; b->tag_transparent; b = b->level_chain)
  1264.     continue;
  1265.  
  1266.   if (name)
  1267.     {
  1268.       /* Record the identifier as the type's name if it has none.  */
  1269.  
  1270.       if (TYPE_NAME (type) == 0)
  1271.     TYPE_NAME (type) = name;
  1272.     }
  1273.  
  1274.   if (b == global_binding_level)
  1275.     b->tags = perm_tree_cons (name, type, b->tags);
  1276.   else
  1277.     b->tags = saveable_tree_cons (name, type, b->tags);
  1278.  
  1279.   /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
  1280.      tagged type we just added to the current binding level.  This fake
  1281.      NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
  1282.      to output a representation of a tagged type, and it also gives
  1283.      us a convenient place to record the "scope start" address for the
  1284.      tagged type.  */
  1285.  
  1286.   TYPE_STUB_DECL (type) = pushdecl (build_decl (TYPE_DECL, NULL_TREE, type));
  1287. }
  1288.  
  1289. /* Handle when a new declaration NEWDECL
  1290.    has the same name as an old one OLDDECL
  1291.    in the same binding contour.
  1292.    Prints an error message if appropriate.
  1293.  
  1294.    If safely possible, alter OLDDECL to look like NEWDECL, and return 1.
  1295.    Otherwise, return 0.  */
  1296.  
  1297. static int
  1298. duplicate_decls (newdecl, olddecl)
  1299.      register tree newdecl, olddecl;
  1300. {
  1301.   int types_match = comptypes (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
  1302.   int new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
  1303.                && DECL_INITIAL (newdecl) != 0);
  1304.   tree oldtype = TREE_TYPE (olddecl);
  1305.   tree newtype = TREE_TYPE (newdecl);
  1306.  
  1307.   if (TREE_CODE (newtype) == ERROR_MARK
  1308.       || TREE_CODE (oldtype) == ERROR_MARK)
  1309.     types_match = 0;
  1310.  
  1311.   /* New decl is completely inconsistent with the old one =>
  1312.      tell caller to replace the old one.
  1313.      This is always an error except in the case of shadowing a builtin.  */
  1314.   if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
  1315.     {
  1316.       if (TREE_CODE (olddecl) == FUNCTION_DECL
  1317.       && (DECL_BUILT_IN (olddecl)
  1318.           || DECL_BUILT_IN_NONANSI (olddecl)))
  1319.     {
  1320.       /* If you declare a built-in or predefined function name as static,
  1321.          the old definition is overridden,
  1322.          but optionally warn this was a bad choice of name.  */
  1323.       if (!TREE_PUBLIC (newdecl))
  1324.         {
  1325.           if (!warn_shadow)
  1326.         ;
  1327.           else if (DECL_BUILT_IN (olddecl))
  1328.         warning_with_decl (newdecl, "shadowing built-in function `%s'");
  1329.           else
  1330.         warning_with_decl (newdecl, "shadowing library function `%s'");
  1331.         }
  1332.       /* Likewise, if the built-in is not ansi, then programs can
  1333.          override it even globally without an error.  */
  1334.       else if (! DECL_BUILT_IN (olddecl))
  1335.         warning_with_decl (newdecl,
  1336.                    "library function `%s' declared as non-function");
  1337.  
  1338.       else if (DECL_BUILT_IN_NONANSI (olddecl))
  1339.         warning_with_decl (newdecl,
  1340.                    "built-in function `%s' declared as non-function");
  1341.       else
  1342.         warning_with_decl (newdecl,
  1343.                  "built-in function `%s' declared as non-function");
  1344.     }
  1345.       else
  1346.     {
  1347.       error_with_decl (newdecl, "`%s' redeclared as different kind of symbol");
  1348.       error_with_decl (olddecl, "previous declaration of `%s'");
  1349.     }
  1350.  
  1351.       return 0;
  1352.     }
  1353.  
  1354.   /* For real parm decl following a forward decl,
  1355.      return 1 so old decl will be reused.  */
  1356.   if (types_match && TREE_CODE (newdecl) == PARM_DECL
  1357.       && TREE_ASM_WRITTEN (olddecl) && ! TREE_ASM_WRITTEN (newdecl))
  1358.     return 1;
  1359.  
  1360.   /* The new declaration is the same kind of object as the old one.
  1361.      The declarations may partially match.  Print warnings if they don't
  1362.      match enough.  Ultimately, copy most of the information from the new
  1363.      decl to the old one, and keep using the old one.  */
  1364.  
  1365.   if (flag_traditional && TREE_CODE (newdecl) == FUNCTION_DECL
  1366.       && IDENTIFIER_IMPLICIT_DECL (DECL_NAME (newdecl)) == olddecl
  1367.       && DECL_INITIAL (olddecl) == 0)
  1368.     /* If -traditional, avoid error for redeclaring fcn
  1369.        after implicit decl.  */
  1370.     ;
  1371.   else if (TREE_CODE (olddecl) == FUNCTION_DECL
  1372.        && DECL_BUILT_IN (olddecl))
  1373.     {
  1374.       /* A function declaration for a built-in function.  */
  1375.       if (!TREE_PUBLIC (newdecl))
  1376.     {
  1377.       /* If you declare a built-in function name as static, the
  1378.          built-in definition is overridden,
  1379.          but optionally warn this was a bad choice of name.  */
  1380.       if (warn_shadow)
  1381.         warning_with_decl (newdecl, "shadowing built-in function `%s'");
  1382.       /* Discard the old built-in function.  */
  1383.       return 0;
  1384.     }
  1385.       else if (!types_match)
  1386.     {
  1387.           /* Accept the return type of the new declaration if same modes.  */
  1388.       tree oldreturntype = TREE_TYPE (TREE_TYPE (olddecl));
  1389.       tree newreturntype = TREE_TYPE (TREE_TYPE (newdecl));
  1390.           if (TYPE_MODE (oldreturntype) == TYPE_MODE (newreturntype))
  1391.             {
  1392.           /* Function types may be shared, so we can't just modify
  1393.          the return type of olddecl's function type.  */
  1394.           tree newtype
  1395.         = build_function_type (newreturntype,
  1396.                        TYPE_ARG_TYPES (TREE_TYPE (olddecl)));
  1397.           
  1398.               types_match = comptypes (TREE_TYPE (newdecl), newtype);
  1399.           if (types_match)
  1400.         TREE_TYPE (olddecl) = newtype;
  1401.         }
  1402.       /* Accept harmless mismatch in first argument type also.
  1403.          This is for ffs.  */
  1404.       if (TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != 0
  1405.           && TYPE_ARG_TYPES (TREE_TYPE (olddecl)) != 0
  1406.           && TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (newdecl))) != 0
  1407.           && TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (olddecl))) != 0
  1408.           && (TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (newdecl))))
  1409.           ==
  1410.           TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (olddecl))))))
  1411.         {
  1412.           /* Function types may be shared, so we can't just modify
  1413.          the return type of olddecl's function type.  */
  1414.           tree newtype
  1415.         = build_function_type (TREE_TYPE (TREE_TYPE (olddecl)),
  1416.                        tree_cons (NULL_TREE, 
  1417.                           TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (newdecl))),
  1418.                           TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (olddecl)))));
  1419.           
  1420.               types_match = comptypes (TREE_TYPE (newdecl), newtype);
  1421.           if (types_match)
  1422.         TREE_TYPE (olddecl) = newtype;
  1423.         }
  1424.     }
  1425.       if (!types_match)
  1426.     {
  1427.       /* If types don't match for a built-in, throw away the built-in.  */
  1428.       warning_with_decl (newdecl, "conflicting types for built-in function `%s'");
  1429.       return 0;
  1430.     }
  1431.     }
  1432.   else if (TREE_CODE (olddecl) == FUNCTION_DECL
  1433.        && DECL_SOURCE_LINE (olddecl) == 0)
  1434.     {
  1435.       /* A function declaration for a predeclared function
  1436.      that isn't actually built in.  */
  1437.       if (!TREE_PUBLIC (newdecl))
  1438.     {
  1439.       /* If you declare it as static, the
  1440.          default definition is overridden.  */
  1441.       return 0;
  1442.     }
  1443.       else if (!types_match)
  1444.     {
  1445.       /* If the types don't match, preserve volatility indication.
  1446.          Later on, we will discard everything else about the
  1447.          default declaration.  */
  1448.       TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
  1449.     }
  1450.     }
  1451.   /* Permit char *foo () to match void *foo (...) if not pedantic,
  1452.      if one of them came from a system header file.  */
  1453.   else if (!types_match
  1454.        && TREE_CODE (olddecl) == FUNCTION_DECL
  1455.        && TREE_CODE (newdecl) == FUNCTION_DECL
  1456.        && TREE_CODE (TREE_TYPE (oldtype)) == POINTER_TYPE
  1457.        && TREE_CODE (TREE_TYPE (newtype)) == POINTER_TYPE
  1458.        && (DECL_IN_SYSTEM_HEADER (olddecl)
  1459.            || DECL_IN_SYSTEM_HEADER (newdecl))
  1460.        && ((TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (newtype))) == void_type_node
  1461.         && TYPE_ARG_TYPES (oldtype) == 0
  1462.         && self_promoting_args_p (TYPE_ARG_TYPES (newtype))
  1463.         && TREE_TYPE (TREE_TYPE (oldtype)) == char_type_node)
  1464.            ||
  1465.            (TREE_TYPE (TREE_TYPE (newtype)) == char_type_node
  1466.         && TYPE_ARG_TYPES (newtype) == 0
  1467.         && self_promoting_args_p (TYPE_ARG_TYPES (oldtype))
  1468.         && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype))) == void_type_node)))
  1469.     {
  1470.       if (pedantic)
  1471.     pedwarn_with_decl (newdecl, "conflicting types for `%s'");
  1472.       /* Make sure we keep void * as ret type, not char *.  */
  1473.       if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype))) == void_type_node)
  1474.     TREE_TYPE (newdecl) = newtype = oldtype;
  1475.  
  1476.       /* Set DECL_IN_SYSTEM_HEADER, so that if we see another declaration
  1477.      we will come back here again.  */
  1478.       DECL_IN_SYSTEM_HEADER (newdecl) = 1;
  1479.     }
  1480.   else if (!types_match
  1481.        /* Permit char *foo (int, ...); followed by char *foo ();
  1482.           if not pedantic.  */
  1483.        && ! (TREE_CODE (olddecl) == FUNCTION_DECL
  1484.          && ! pedantic
  1485.          /* Return types must still match.  */
  1486.          && comptypes (TREE_TYPE (oldtype),
  1487.                    TREE_TYPE (newtype))
  1488.          && TYPE_ARG_TYPES (newtype) == 0))
  1489.     {
  1490.       error_with_decl (newdecl, "conflicting types for `%s'");
  1491.       /* Check for function type mismatch
  1492.      involving an empty arglist vs a nonempty one.  */
  1493.       if (TREE_CODE (olddecl) == FUNCTION_DECL
  1494.       && comptypes (TREE_TYPE (oldtype),
  1495.             TREE_TYPE (newtype))
  1496.       && ((TYPE_ARG_TYPES (oldtype) == 0
  1497.            && DECL_INITIAL (olddecl) == 0)
  1498.           ||
  1499.           (TYPE_ARG_TYPES (newtype) == 0
  1500.            && DECL_INITIAL (newdecl) == 0)))
  1501.     {
  1502.       /* Classify the problem further.  */
  1503.       register tree t = TYPE_ARG_TYPES (oldtype);
  1504.       if (t == 0)
  1505.         t = TYPE_ARG_TYPES (newtype);
  1506.       for (; t; t = TREE_CHAIN (t))
  1507.         {
  1508.           register tree type = TREE_VALUE (t);
  1509.  
  1510.           if (TREE_CHAIN (t) == 0
  1511.           && TYPE_MAIN_VARIANT (type) != void_type_node)
  1512.         {
  1513.           error ("A parameter list with an ellipsis can't match");
  1514.           error ("an empty parameter name list declaration.");
  1515.           break;
  1516.         }
  1517.  
  1518.           if (TYPE_MAIN_VARIANT (type) == float_type_node
  1519.           || C_PROMOTING_INTEGER_TYPE_P (type))
  1520.         {
  1521.           error ("An argument type that has a default promotion");
  1522.           error ("can't match an empty parameter name list declaration.");
  1523.           break;
  1524.         }
  1525.         }
  1526.     }
  1527.       error_with_decl (olddecl, "previous declaration of `%s'");
  1528.     }
  1529.   else
  1530.     {
  1531.       char *errmsg = redeclaration_error_message (newdecl, olddecl);
  1532.       if (errmsg)
  1533.     {
  1534.       error_with_decl (newdecl, errmsg);
  1535.       error_with_decl (olddecl,
  1536.                ((DECL_INITIAL (olddecl)
  1537.                  && current_binding_level == global_binding_level)
  1538.                 ? "`%s' previously defined here"
  1539.                 : "`%s' previously declared here"));
  1540.     }
  1541.       else if (TREE_CODE (olddecl) == FUNCTION_DECL
  1542.            && DECL_INITIAL (olddecl) != 0
  1543.            && TYPE_ARG_TYPES (oldtype) == 0
  1544.            && TYPE_ARG_TYPES (newtype) != 0)
  1545.     {
  1546.       register tree type, parm;
  1547.       register int nargs;
  1548.       /* Prototype decl follows defn w/o prototype.  */
  1549.  
  1550.       for (parm = TYPE_ACTUAL_ARG_TYPES (oldtype),
  1551.            type = TYPE_ARG_TYPES (newtype),
  1552.            nargs = 1;
  1553.            (TYPE_MAIN_VARIANT (TREE_VALUE (parm)) != void_type_node
  1554.         || TYPE_MAIN_VARIANT (TREE_VALUE (type)) != void_type_node);
  1555.            parm = TREE_CHAIN (parm), type = TREE_CHAIN (type), nargs++)
  1556.         {
  1557.           if (TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == void_type_node
  1558.           || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
  1559.         {
  1560.           errmsg = "prototype for `%s' follows and number of arguments";
  1561.           break;
  1562.         }
  1563.           /* Type for passing arg must be consistent
  1564.          with that declared for the arg.  */
  1565.           if (! comptypes (TREE_VALUE (parm), TREE_VALUE (type))
  1566.           /* If -traditional, allow `unsigned int' instead of `int'
  1567.              in the prototype.  */
  1568.           && (! (flag_traditional
  1569.              && TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == integer_type_node
  1570.              && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == unsigned_type_node)))
  1571.         {
  1572.           errmsg = "prototype for `%s' follows and argument %d";
  1573.           break;
  1574.         }
  1575.         }
  1576.       if (errmsg)
  1577.         {
  1578.           error_with_decl (newdecl, errmsg, nargs);
  1579.           error_with_decl (olddecl,
  1580.                    "doesn't match non-prototype definition here");
  1581.         }
  1582.       else
  1583.         {
  1584.           warning_with_decl (newdecl, "prototype for `%s' follows");
  1585.           warning_with_decl (olddecl, "non-prototype definition here");
  1586.         }
  1587.     }
  1588.       /* Warn about mismatches in various flags.  */
  1589.       else
  1590.     {
  1591.       /* Warn if function is now inline
  1592.          but was previously declared not inline and has been called.  */
  1593.       if (TREE_CODE (olddecl) == FUNCTION_DECL
  1594.           && ! DECL_INLINE (olddecl) && DECL_INLINE (newdecl)
  1595.           && TREE_USED (olddecl))
  1596.         warning_with_decl (newdecl,
  1597.                    "`%s' declared inline after being called");
  1598.       if (TREE_CODE (olddecl) == FUNCTION_DECL
  1599.           && ! DECL_INLINE (olddecl) && DECL_INLINE (newdecl)
  1600.           && DECL_INITIAL (olddecl) != 0)
  1601.         warning_with_decl (newdecl,
  1602.                    "`%s' declared inline after its definition");
  1603.  
  1604.       /* If pedantic, warn when static declaration follows a non-static
  1605.          declaration.  Otherwise, do so only for functions.  */
  1606.       if ((pedantic || TREE_CODE (olddecl) == FUNCTION_DECL)
  1607.           && TREE_PUBLIC (olddecl)
  1608.           && !TREE_PUBLIC (newdecl))
  1609.         warning_with_decl (newdecl, "static declaration for `%s' follows non-static");
  1610.  
  1611.       /* Warn when const declaration follows a non-const
  1612.          declaration, but not for functions.  */
  1613.       if (TREE_CODE (olddecl) != FUNCTION_DECL
  1614.           && !TREE_READONLY (olddecl)
  1615.           && TREE_READONLY (newdecl))
  1616.         warning_with_decl (newdecl, "const declaration for `%s' follows non-const");
  1617.       /* These bits are logically part of the type, for variables.
  1618.          But not for functions
  1619.          (where qualifiers are not valid ANSI anyway).  */
  1620.       else if (pedantic && TREE_CODE (olddecl) != FUNCTION_DECL
  1621.           && (TREE_READONLY (newdecl) != TREE_READONLY (olddecl)
  1622.           || TREE_THIS_VOLATILE (newdecl) != TREE_THIS_VOLATILE (olddecl)))
  1623.         pedwarn_with_decl (newdecl, "type qualifiers for `%s' conflict with previous decl");
  1624.     }
  1625.     }
  1626.  
  1627.   /* Optionally warn about more than one declaration for the same name.  */
  1628.   if (warn_redundant_decls && DECL_SOURCE_LINE (olddecl) != 0
  1629.       /* Dont warn about a function declaration
  1630.      followed by a definition.  */
  1631.       && !(TREE_CODE (newdecl) == FUNCTION_DECL && DECL_INITIAL (newdecl) != 0
  1632.        && DECL_INITIAL (olddecl) == 0)
  1633.       /* Don't warn about extern decl followed by (tentative) definition.  */
  1634.       && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl)))
  1635.     {
  1636.       warning_with_decl (newdecl, "redundant redeclaration of `%s' in same scope");
  1637.       warning_with_decl (olddecl, "previous declaration of `%s'");
  1638.     }
  1639.  
  1640.   /* Copy all the DECL_... slots specified in the new decl
  1641.      except for any that we copy here from the old type.
  1642.  
  1643.      Past this point, we don't change OLDTYPE and NEWTYPE
  1644.      even if we change the types of NEWDECL and OLDDECL.  */
  1645.  
  1646.   if (types_match)
  1647.     {
  1648.       /* Make sure we put the new type in the same obstack as the old ones.
  1649.      If the old types are not both in the same obstack, use the permanent
  1650.      one.  */
  1651.       if (TYPE_OBSTACK (oldtype) == TYPE_OBSTACK (newtype))
  1652.     push_obstacks (TYPE_OBSTACK (oldtype), TYPE_OBSTACK (oldtype));
  1653.       else
  1654.     {
  1655.       push_obstacks_nochange ();
  1656.       end_temporary_allocation ();
  1657.     }
  1658.                
  1659.       /* Merge the data types specified in the two decls.  */
  1660.       if (TREE_CODE (newdecl) != FUNCTION_DECL || !DECL_BUILT_IN (olddecl))
  1661.     TREE_TYPE (newdecl)
  1662.       = TREE_TYPE (olddecl)
  1663.         = common_type (newtype, oldtype);
  1664.  
  1665.       /* Lay the type out, unless already done.  */
  1666.       if (oldtype != TREE_TYPE (newdecl))
  1667.     {
  1668.       if (TREE_TYPE (newdecl) != error_mark_node)
  1669.         layout_type (TREE_TYPE (newdecl));
  1670.       if (TREE_CODE (newdecl) != FUNCTION_DECL
  1671.           && TREE_CODE (newdecl) != TYPE_DECL
  1672.           && TREE_CODE (newdecl) != CONST_DECL)
  1673.         layout_decl (newdecl, 0);
  1674.     }
  1675.       else
  1676.     {
  1677.       /* Since the type is OLDDECL's, make OLDDECL's size go with.  */
  1678.       DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
  1679.       if (TREE_CODE (olddecl) != FUNCTION_DECL)
  1680.         if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
  1681.           DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
  1682.     }
  1683.  
  1684.       /* Keep the old rtl since we can safely use it.  */
  1685.       DECL_RTL (newdecl) = DECL_RTL (olddecl);
  1686.  
  1687.       /* Merge the type qualifiers.  */
  1688.       if (DECL_BUILT_IN_NONANSI (olddecl) && TREE_THIS_VOLATILE (olddecl)
  1689.       && !TREE_THIS_VOLATILE (newdecl))
  1690.     TREE_THIS_VOLATILE (olddecl) = 0;
  1691.       if (TREE_READONLY (newdecl))
  1692.     TREE_READONLY (olddecl) = 1;
  1693.       if (TREE_THIS_VOLATILE (newdecl))
  1694.     {
  1695.       TREE_THIS_VOLATILE (olddecl) = 1;
  1696.       if (TREE_CODE (newdecl) == VAR_DECL)
  1697.         make_var_volatile (newdecl);
  1698.     }
  1699.  
  1700.       /* Keep source location of definition rather than declaration.  */
  1701.       if (DECL_INITIAL (newdecl) == 0 && DECL_INITIAL (olddecl) != 0)
  1702.     {
  1703.       DECL_SOURCE_LINE (newdecl) = DECL_SOURCE_LINE (olddecl);
  1704.       DECL_SOURCE_FILE (newdecl) = DECL_SOURCE_FILE (olddecl);
  1705.     }
  1706.  
  1707.       /* Merge the unused-warning information.  */
  1708.       if (DECL_IN_SYSTEM_HEADER (olddecl))
  1709.     DECL_IN_SYSTEM_HEADER (newdecl) = 1;
  1710.       else if (DECL_IN_SYSTEM_HEADER (newdecl))
  1711.     DECL_IN_SYSTEM_HEADER (olddecl) = 1;
  1712.  
  1713.       /* Merge the initialization information.  */
  1714.       if (DECL_INITIAL (newdecl) == 0)
  1715.     DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
  1716.  
  1717.       /* Merge the section attribute.
  1718.          We want to issue an error if the sections conflict but that must be
  1719.      done later in decl_attributes since we are called before attributes
  1720.      are assigned.  */
  1721.       if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
  1722.     DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
  1723.  
  1724.       pop_obstacks ();
  1725.     }
  1726.   /* If cannot merge, then use the new type and qualifiers,
  1727.      and don't preserve the old rtl.  */
  1728.   else
  1729.     {
  1730.       TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
  1731.       TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
  1732.       TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
  1733.       TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
  1734.     }
  1735.  
  1736.   /* Merge the storage class information.  */
  1737.   /* For functions, static overrides non-static.  */
  1738.   if (TREE_CODE (newdecl) == FUNCTION_DECL)
  1739.     {
  1740.       TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
  1741.       /* This is since we don't automatically
  1742.      copy the attributes of NEWDECL into OLDDECL.  */
  1743.       TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
  1744.       /* If this clears `static', clear it in the identifier too.  */
  1745.       if (! TREE_PUBLIC (olddecl))
  1746.     TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
  1747.     }
  1748.   if (DECL_EXTERNAL (newdecl))
  1749.     {
  1750.       TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
  1751.       DECL_EXTERNAL (newdecl) = DECL_EXTERNAL (olddecl);
  1752.       /* An extern decl does not override previous storage class.  */
  1753.       TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
  1754.     }
  1755.   else
  1756.     {
  1757.       TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
  1758.       TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
  1759.     }
  1760.  
  1761.   /* If either decl says `inline', this fn is inline,
  1762.      unless its definition was passed already.  */
  1763.   if (DECL_INLINE (newdecl) && DECL_INITIAL (olddecl) == 0)
  1764.     DECL_INLINE (olddecl) = 1;
  1765.   DECL_INLINE (newdecl) = DECL_INLINE (olddecl);
  1766.  
  1767.   /* Get rid of any built-in function if new arg types don't match it
  1768.      or if we have a function definition.  */
  1769.   if (TREE_CODE (newdecl) == FUNCTION_DECL
  1770.       && DECL_BUILT_IN (olddecl)
  1771.       && (!types_match || new_is_definition))
  1772.     {
  1773.       TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
  1774.       DECL_BUILT_IN (olddecl) = 0;
  1775.     }
  1776.  
  1777.   /* If redeclaring a builtin function, and not a definition,
  1778.      it stays built in.
  1779.      Also preserve various other info from the definition.  */
  1780.   if (TREE_CODE (newdecl) == FUNCTION_DECL && !new_is_definition)
  1781.     {
  1782.       if (DECL_BUILT_IN (olddecl))
  1783.     {
  1784.       DECL_BUILT_IN (newdecl) = 1;
  1785.       DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
  1786.     }
  1787.       else
  1788.     DECL_FRAME_SIZE (newdecl) = DECL_FRAME_SIZE (olddecl);
  1789.  
  1790.       DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
  1791.       DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
  1792.       DECL_SAVED_INSNS (newdecl) = DECL_SAVED_INSNS (olddecl);
  1793.       DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
  1794.     }
  1795.  
  1796.   /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
  1797.      But preserve OLDdECL's DECL_UID.  */
  1798.   {
  1799.     register unsigned olddecl_uid = DECL_UID (olddecl);
  1800.  
  1801.     bcopy ((char *) newdecl + sizeof (struct tree_common),
  1802.        (char *) olddecl + sizeof (struct tree_common),
  1803.        sizeof (struct tree_decl) - sizeof (struct tree_common));
  1804.     DECL_UID (olddecl) = olddecl_uid;
  1805.   }
  1806.  
  1807.   return 1;
  1808. }
  1809.  
  1810. /* Record a decl-node X as belonging to the current lexical scope.
  1811.    Check for errors (such as an incompatible declaration for the same
  1812.    name already seen in the same scope).
  1813.  
  1814.    Returns either X or an old decl for the same name.
  1815.    If an old decl is returned, it may have been smashed
  1816.    to agree with what X says.  */
  1817.  
  1818. tree
  1819. pushdecl (x)
  1820.      tree x;
  1821. {
  1822.   register tree t;
  1823.   register tree name = DECL_NAME (x);
  1824.   register struct binding_level *b = current_binding_level;
  1825.  
  1826.   DECL_CONTEXT (x) = current_function_decl;
  1827.   /* A local extern declaration for a function doesn't constitute nesting.
  1828.      A local auto declaration does, since it's a forward decl
  1829.      for a nested function coming later.  */
  1830.   if (TREE_CODE (x) == FUNCTION_DECL && DECL_INITIAL (x) == 0
  1831.       && DECL_EXTERNAL (x))
  1832.     DECL_CONTEXT (x) = 0;
  1833.  
  1834.   if (warn_nested_externs && DECL_EXTERNAL (x) && b != global_binding_level
  1835.       && x != IDENTIFIER_IMPLICIT_DECL (name)
  1836.       /* Don't print error messages for __FUNCTION__ and __PRETTY_FUNCTION__ */
  1837.       && !DECL_IN_SYSTEM_HEADER (x))
  1838.     warning ("nested extern declaration of `%s'", IDENTIFIER_POINTER (name));
  1839.  
  1840.   if (name)
  1841.     {
  1842.       char *file;
  1843.       int line;
  1844.  
  1845.       /* Don't type check externs here when -traditional.  This is so that
  1846.      code with conflicting declarations inside blocks will get warnings
  1847.      not errors.  X11 for instance depends on this.  */
  1848.       if (DECL_EXTERNAL (x) && TREE_PUBLIC (x) && ! flag_traditional)
  1849.     t = lookup_name_current_level_global (name);
  1850.       else
  1851.     t = lookup_name_current_level (name);
  1852.       if (t != 0 && t == error_mark_node)
  1853.     /* error_mark_node is 0 for a while during initialization!  */
  1854.     {
  1855.       t = 0;
  1856.       error_with_decl (x, "`%s' used prior to declaration");
  1857.     }
  1858.  
  1859.       if (t != 0)
  1860.     {
  1861.       file = DECL_SOURCE_FILE (t);
  1862.       line = DECL_SOURCE_LINE (t);
  1863.     }
  1864.  
  1865.       if (t != 0 && duplicate_decls (x, t))
  1866.     {
  1867.       if (TREE_CODE (t) == PARM_DECL)
  1868.         {
  1869.           /* Don't allow more than one "real" duplicate
  1870.          of a forward parm decl.  */
  1871.           TREE_ASM_WRITTEN (t) = TREE_ASM_WRITTEN (x);
  1872.           return t;
  1873.         }
  1874.       /* If this decl is `static' and an implicit decl was seen previously,
  1875.          warn.  But don't complain if -traditional,
  1876.          since traditional compilers don't complain.  */
  1877.       if (!flag_traditional && TREE_PUBLIC (name)
  1878.           && ! TREE_PUBLIC (x) && ! DECL_EXTERNAL (x)
  1879.           /* We used to warn also for explicit extern followed by static,
  1880.          but sometimes you need to do it that way.  */
  1881.           && IDENTIFIER_IMPLICIT_DECL (name) != 0)
  1882.         {
  1883.           pedwarn ("`%s' was declared implicitly `extern' and later `static'",
  1884.                IDENTIFIER_POINTER (name));
  1885.           pedwarn_with_file_and_line (file, line,
  1886.                       "previous declaration of `%s'",
  1887.                       IDENTIFIER_POINTER (name));
  1888.         }
  1889.  
  1890.       /* If this is a global decl, and there exists a conflicting local
  1891.          decl in a parent block, then we can't return as yet, because we
  1892.          need to register this decl in the current binding block.  */
  1893.       if (! DECL_EXTERNAL (x) || ! TREE_PUBLIC (x)
  1894.           || lookup_name (name) == t)
  1895.         return t;
  1896.     }
  1897.  
  1898.       /* If we are processing a typedef statement, generate a whole new
  1899.      ..._TYPE node (which will be just an variant of the existing
  1900.      ..._TYPE node with identical properties) and then install the
  1901.      TYPE_DECL node generated to represent the typedef name as the
  1902.      TYPE_NAME of this brand new (duplicate) ..._TYPE node.
  1903.  
  1904.      The whole point here is to end up with a situation where each
  1905.      and every ..._TYPE node the compiler creates will be uniquely
  1906.      associated with AT MOST one node representing a typedef name.
  1907.      This way, even though the compiler substitutes corresponding
  1908.      ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
  1909.      early on, later parts of the compiler can always do the reverse
  1910.      translation and get back the corresponding typedef name.  For
  1911.      example, given:
  1912.  
  1913.         typedef struct S MY_TYPE;
  1914.         MY_TYPE object;
  1915.  
  1916.      Later parts of the compiler might only know that `object' was of
  1917.      type `struct S' if if were not for code just below.  With this
  1918.      code however, later parts of the compiler see something like:
  1919.  
  1920.         struct S' == struct S
  1921.         typedef struct S' MY_TYPE;
  1922.         struct S' object;
  1923.  
  1924.      And they can then deduce (from the node for type struct S') that
  1925.      the original object declaration was:
  1926.  
  1927.         MY_TYPE object;
  1928.  
  1929.      Being able to do this is important for proper support of protoize,
  1930.      and also for generating precise symbolic debugging information
  1931.      which takes full account of the programmer's (typedef) vocabulary.
  1932.  
  1933.          Obviously, we don't want to generate a duplicate ..._TYPE node if
  1934.      the TYPE_DECL node that we are now processing really represents a
  1935.      standard built-in type.
  1936.  
  1937.          Since all standard types are effectively declared at line zero
  1938.          in the source file, we can easily check to see if we are working
  1939.          on a standard type by checking the current value of lineno.  */
  1940.  
  1941.       if (TREE_CODE (x) == TYPE_DECL)
  1942.         {
  1943.           if (DECL_SOURCE_LINE (x) == 0)
  1944.             {
  1945.           if (TYPE_NAME (TREE_TYPE (x)) == 0)
  1946.             TYPE_NAME (TREE_TYPE (x)) = x;
  1947.             }
  1948.           else if (TREE_TYPE (x) != error_mark_node)
  1949.             {
  1950.               tree tt = TREE_TYPE (x);
  1951.  
  1952.               tt = build_type_copy (tt);
  1953.               TYPE_NAME (tt) = x;
  1954.               TREE_TYPE (x) = tt;
  1955.             }
  1956.         }
  1957.  
  1958.       /* Multiple external decls of the same identifier ought to match.
  1959.      Check against both global declarations (when traditional) and out of
  1960.      scope (limbo) block level declarations.
  1961.  
  1962.      We get warnings about inline functions where they are defined.
  1963.      Avoid duplicate warnings where they are used.  */
  1964.       if (TREE_PUBLIC (x) && ! DECL_INLINE (x))
  1965.     {
  1966.       tree decl;
  1967.  
  1968.       if (flag_traditional && IDENTIFIER_GLOBAL_VALUE (name) != 0
  1969.           && (DECL_EXTERNAL (IDENTIFIER_GLOBAL_VALUE (name))
  1970.           || TREE_PUBLIC (IDENTIFIER_GLOBAL_VALUE (name))))
  1971.         decl = IDENTIFIER_GLOBAL_VALUE (name);
  1972.       else if (IDENTIFIER_LIMBO_VALUE (name) != 0)
  1973.         /* Decls in limbo are always extern, so no need to check that.  */
  1974.         decl = IDENTIFIER_LIMBO_VALUE (name);
  1975.       else
  1976.         decl = 0;
  1977.  
  1978.       if (decl && ! comptypes (TREE_TYPE (x), TREE_TYPE (decl))
  1979.           /* If old decl is built-in, we already warned if we should.  */
  1980.           && !DECL_BUILT_IN (decl))
  1981.         {
  1982.           pedwarn_with_decl (x,
  1983.                  "type mismatch with previous external decl");
  1984.           pedwarn_with_decl (decl, "previous external decl of `%s'");
  1985.         }
  1986.     }
  1987.  
  1988.       /* If a function has had an implicit declaration, and then is defined,
  1989.      make sure they are compatible.  */
  1990.  
  1991.       if (IDENTIFIER_IMPLICIT_DECL (name) != 0
  1992.       && IDENTIFIER_GLOBAL_VALUE (name) == 0
  1993.       && TREE_CODE (x) == FUNCTION_DECL
  1994.       && ! comptypes (TREE_TYPE (x),
  1995.               TREE_TYPE (IDENTIFIER_IMPLICIT_DECL (name))))
  1996.     {
  1997.       warning_with_decl (x, "type mismatch with previous implicit declaration");
  1998.       warning_with_decl (IDENTIFIER_IMPLICIT_DECL (name),
  1999.                  "previous implicit declaration of `%s'");
  2000.     }
  2001.  
  2002.       /* In PCC-compatibility mode, extern decls of vars with no current decl
  2003.      take effect at top level no matter where they are.  */
  2004.       if (flag_traditional && DECL_EXTERNAL (x)
  2005.       && lookup_name (name) == 0)
  2006.     {
  2007.       tree type = TREE_TYPE (x);
  2008.  
  2009.       /* But don't do this if the type contains temporary nodes.  */
  2010.       while (type)
  2011.         {
  2012.           if (type == error_mark_node)
  2013.         break;
  2014.           if (! TREE_PERMANENT (type))
  2015.         {
  2016.           warning_with_decl (x, "type of external `%s' is not global");
  2017.           /* By exiting the loop early, we leave TYPE nonzero,
  2018.              and thus prevent globalization of the decl.  */
  2019.           break;
  2020.         }
  2021.           else if (TREE_CODE (type) == FUNCTION_TYPE
  2022.                && TYPE_ARG_TYPES (type) != 0)
  2023.         /* The types might not be truly local,
  2024.            but the list of arg types certainly is temporary.
  2025.            Since prototypes are nontraditional,
  2026.            ok not to do the traditional thing.  */
  2027.         break;
  2028.           type = TREE_TYPE (type);
  2029.         }
  2030.  
  2031.       if (type == 0)
  2032.         b = global_binding_level;
  2033.     }
  2034.  
  2035.       /* This name is new in its binding level.
  2036.      Install the new declaration and return it.  */
  2037.       if (b == global_binding_level)
  2038.     {
  2039.       /* Install a global value.  */
  2040.       
  2041.       /* If the first global decl has external linkage,
  2042.          warn if we later see static one.  */
  2043.       if (IDENTIFIER_GLOBAL_VALUE (name) == 0 && TREE_PUBLIC (x))
  2044.         TREE_PUBLIC (name) = 1;
  2045.  
  2046.       IDENTIFIER_GLOBAL_VALUE (name) = x;
  2047.  
  2048.       /* We no longer care about any previous block level declarations.  */
  2049.       IDENTIFIER_LIMBO_VALUE (name) = 0;
  2050.  
  2051.       /* Don't forget if the function was used via an implicit decl.  */
  2052.       if (IDENTIFIER_IMPLICIT_DECL (name)
  2053.           && TREE_USED (IDENTIFIER_IMPLICIT_DECL (name)))
  2054.         TREE_USED (x) = 1, TREE_USED (name) = 1;
  2055.  
  2056.       /* Don't forget if its address was taken in that way.  */
  2057.       if (IDENTIFIER_IMPLICIT_DECL (name)
  2058.           && TREE_ADDRESSABLE (IDENTIFIER_IMPLICIT_DECL (name)))
  2059.         TREE_ADDRESSABLE (x) = 1;
  2060.  
  2061.       /* Warn about mismatches against previous implicit decl.  */
  2062.       if (IDENTIFIER_IMPLICIT_DECL (name) != 0
  2063.           /* If this real decl matches the implicit, don't complain.  */
  2064.           && ! (TREE_CODE (x) == FUNCTION_DECL
  2065.             && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (x)))
  2066.             == integer_type_node)))
  2067.         pedwarn ("`%s' was previously implicitly declared to return `int'",
  2068.              IDENTIFIER_POINTER (name));
  2069.  
  2070.       /* If this decl is `static' and an `extern' was seen previously,
  2071.          that is erroneous.  */
  2072.       if (TREE_PUBLIC (name)
  2073.           && ! TREE_PUBLIC (x) && ! DECL_EXTERNAL (x))
  2074.         {
  2075.           /* Okay to redeclare an ANSI built-in as static.  */
  2076.           if (t != 0 && DECL_BUILT_IN (t))
  2077.         ;
  2078.           /* Okay to declare a non-ANSI built-in as anything.  */
  2079.           else if (t != 0 && DECL_BUILT_IN_NONANSI (t))
  2080.         ;
  2081.           else if (IDENTIFIER_IMPLICIT_DECL (name))
  2082.         pedwarn ("`%s' was declared implicitly `extern' and later `static'",
  2083.              IDENTIFIER_POINTER (name));
  2084.           else
  2085.         pedwarn ("`%s' was declared `extern' and later `static'",
  2086.              IDENTIFIER_POINTER (name));
  2087.         }
  2088.     }
  2089.       else
  2090.     {
  2091.       /* Here to install a non-global value.  */
  2092.       tree oldlocal = IDENTIFIER_LOCAL_VALUE (name);
  2093.       tree oldglobal = IDENTIFIER_GLOBAL_VALUE (name);
  2094.       IDENTIFIER_LOCAL_VALUE (name) = x;
  2095.  
  2096.       /* If this is an extern function declaration, see if we
  2097.          have a global definition or declaration for the function.  */
  2098.       if (oldlocal == 0
  2099.           && DECL_EXTERNAL (x) && !DECL_INLINE (x)
  2100.           && oldglobal != 0
  2101.           && TREE_CODE (x) == FUNCTION_DECL
  2102.           && TREE_CODE (oldglobal) == FUNCTION_DECL)
  2103.         {
  2104.           /* We have one.  Their types must agree.  */
  2105.           if (! comptypes (TREE_TYPE (x),
  2106.                    TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (name))))
  2107.         pedwarn_with_decl (x, "extern declaration of `%s' doesn't match global one");
  2108.           else
  2109.         {
  2110.           /* Inner extern decl is inline if global one is.
  2111.              Copy enough to really inline it.  */
  2112.           if (DECL_INLINE (oldglobal))
  2113.             {
  2114.               DECL_INLINE (x) = DECL_INLINE (oldglobal);
  2115.               DECL_INITIAL (x) = (current_function_decl == oldglobal
  2116.                       ? 0 : DECL_INITIAL (oldglobal));
  2117.               DECL_SAVED_INSNS (x) = DECL_SAVED_INSNS (oldglobal);
  2118.               DECL_FRAME_SIZE (x) = DECL_FRAME_SIZE (oldglobal);
  2119.               DECL_ARGUMENTS (x) = DECL_ARGUMENTS (oldglobal);
  2120.               DECL_RESULT (x) = DECL_RESULT (oldglobal);
  2121.               TREE_ASM_WRITTEN (x) = TREE_ASM_WRITTEN (oldglobal);
  2122.               DECL_ABSTRACT_ORIGIN (x) = oldglobal;
  2123.             }
  2124.           /* Inner extern decl is built-in if global one is.  */
  2125.           if (DECL_BUILT_IN (oldglobal))
  2126.             {
  2127.               DECL_BUILT_IN (x) = DECL_BUILT_IN (oldglobal);
  2128.               DECL_FUNCTION_CODE (x) = DECL_FUNCTION_CODE (oldglobal);
  2129.             }
  2130.           /* Keep the arg types from a file-scope fcn defn.  */
  2131.           if (TYPE_ARG_TYPES (TREE_TYPE (oldglobal)) != 0
  2132.               && DECL_INITIAL (oldglobal)
  2133.               && TYPE_ARG_TYPES (TREE_TYPE (x)) == 0)
  2134.             TREE_TYPE (x) = TREE_TYPE (oldglobal);
  2135.         }
  2136.         }
  2137.  
  2138. #if 0 /* This case is probably sometimes the right thing to do.  */
  2139.       /* If we have a local external declaration,
  2140.          then any file-scope declaration should not
  2141.          have been static.  */
  2142.       if (oldlocal == 0 && oldglobal != 0
  2143.           && !TREE_PUBLIC (oldglobal)
  2144.           && DECL_EXTERNAL (x) && TREE_PUBLIC (x))
  2145.         warning ("`%s' locally external but globally static",
  2146.              IDENTIFIER_POINTER (name));
  2147. #endif
  2148.  
  2149.       /* If we have a local external declaration,
  2150.          and no file-scope declaration has yet been seen,
  2151.          then if we later have a file-scope decl it must not be static.  */
  2152.       if (oldlocal == 0
  2153.           && oldglobal == 0
  2154.           && DECL_EXTERNAL (x)
  2155.           && TREE_PUBLIC (x))
  2156.         {
  2157.           TREE_PUBLIC (name) = 1;
  2158.  
  2159.           /* Save this decl, so that we can do type checking against
  2160.          other decls after it falls out of scope.
  2161.  
  2162.          Only save it once.  This prevents temporary decls created in
  2163.          expand_inline_function from being used here, since this
  2164.          will have been set when the inline function was parsed.
  2165.          It also helps give slightly better warnings.  */
  2166.           if (IDENTIFIER_LIMBO_VALUE (name) == 0)
  2167.         IDENTIFIER_LIMBO_VALUE (name) = x;
  2168.         }
  2169.  
  2170.       /* Warn if shadowing an argument at the top level of the body.  */
  2171.       if (oldlocal != 0 && !DECL_EXTERNAL (x)
  2172.           /* This warning doesn't apply to the parms of a nested fcn.  */
  2173.           && ! current_binding_level->parm_flag
  2174.           /* Check that this is one level down from the parms.  */
  2175.           && current_binding_level->level_chain->parm_flag
  2176.           /* Check that the decl being shadowed
  2177.          comes from the parm level, one level up.  */
  2178.           && chain_member (oldlocal, current_binding_level->level_chain->names))
  2179.         {
  2180.           if (TREE_CODE (oldlocal) == PARM_DECL)
  2181.         pedwarn ("declaration of `%s' shadows a parameter",
  2182.              IDENTIFIER_POINTER (name));
  2183.           else
  2184.         pedwarn ("declaration of `%s' shadows a symbol from the parameter list",
  2185.              IDENTIFIER_POINTER (name));
  2186.         }
  2187.  
  2188.       /* Maybe warn if shadowing something else.  */
  2189.       else if (warn_shadow && !DECL_EXTERNAL (x)
  2190.            /* No shadow warnings for internally generated vars.  */
  2191.            && DECL_SOURCE_LINE (x) != 0
  2192.            /* No shadow warnings for vars made for inlining.  */
  2193.            && ! DECL_FROM_INLINE (x))
  2194.         {
  2195.           char *warnstring = 0;
  2196.  
  2197.           if (TREE_CODE (x) == PARM_DECL
  2198.           && current_binding_level->level_chain->parm_flag)
  2199.         /* Don't warn about the parm names in function declarator
  2200.            within a function declarator.
  2201.            It would be nice to avoid warning in any function
  2202.            declarator in a declaration, as opposed to a definition,
  2203.            but there is no way to tell it's not a definition.  */
  2204.         ;
  2205.           else if (oldlocal != 0 && TREE_CODE (oldlocal) == PARM_DECL)
  2206.         warnstring = "declaration of `%s' shadows a parameter";
  2207.           else if (oldlocal != 0)
  2208.         warnstring = "declaration of `%s' shadows previous local";
  2209.           else if (IDENTIFIER_GLOBAL_VALUE (name) != 0
  2210.                && IDENTIFIER_GLOBAL_VALUE (name) != error_mark_node)
  2211.         warnstring = "declaration of `%s' shadows global declaration";
  2212.  
  2213.           if (warnstring)
  2214.         warning (warnstring, IDENTIFIER_POINTER (name));
  2215.         }
  2216.  
  2217.       /* If storing a local value, there may already be one (inherited).
  2218.          If so, record it for restoration when this binding level ends.  */
  2219.       if (oldlocal != 0)
  2220.         b->shadowed = tree_cons (name, oldlocal, b->shadowed);
  2221.     }
  2222.  
  2223.       /* Keep count of variables in this level with incomplete type.  */
  2224.       if (TYPE_SIZE (TREE_TYPE (x)) == 0)
  2225.     ++b->n_incomplete;
  2226.     }
  2227.  
  2228.   /* Put decls on list in reverse order.
  2229.      We will reverse them later if necessary.  */
  2230.   TREE_CHAIN (x) = b->names;
  2231.   b->names = x;
  2232.  
  2233.   return x;
  2234. }
  2235.  
  2236. /* Like pushdecl, only it places X in GLOBAL_BINDING_LEVEL, if appropriate.  */
  2237.  
  2238. tree
  2239. pushdecl_top_level (x)
  2240.      tree x;
  2241. {
  2242.   register tree t;
  2243.   register struct binding_level *b = current_binding_level;
  2244.  
  2245.   current_binding_level = global_binding_level;
  2246.   t = pushdecl (x);
  2247.   current_binding_level = b;
  2248.   return t;
  2249. }
  2250.  
  2251. /* Generate an implicit declaration for identifier FUNCTIONID
  2252.    as a function of type int ().  Print a warning if appropriate.  */
  2253.  
  2254. tree
  2255. implicitly_declare (functionid)
  2256.      tree functionid;
  2257. {
  2258.   register tree decl;
  2259.   int traditional_warning = 0;
  2260.   /* Only one "implicit declaration" warning per identifier.  */
  2261.   int implicit_warning;
  2262.  
  2263.   /* Save the decl permanently so we can warn if definition follows.  */
  2264.   push_obstacks_nochange ();
  2265.   end_temporary_allocation ();
  2266.  
  2267.   /* We used to reuse an old implicit decl here,
  2268.      but this loses with inline functions because it can clobber
  2269.      the saved decl chains.  */
  2270. /*  if (IDENTIFIER_IMPLICIT_DECL (functionid) != 0)
  2271.     decl = IDENTIFIER_IMPLICIT_DECL (functionid);
  2272.   else  */
  2273.     decl = build_decl (FUNCTION_DECL, functionid, default_function_type);
  2274.  
  2275.   /* Warn of implicit decl following explicit local extern decl.
  2276.      This is probably a program designed for traditional C.  */
  2277.   if (TREE_PUBLIC (functionid) && IDENTIFIER_GLOBAL_VALUE (functionid) == 0)
  2278.     traditional_warning = 1;
  2279.  
  2280.   /* Warn once of an implicit declaration.  */
  2281.   implicit_warning = (IDENTIFIER_IMPLICIT_DECL (functionid) == 0);
  2282.  
  2283.   DECL_EXTERNAL (decl) = 1;
  2284.   TREE_PUBLIC (decl) = 1;
  2285.  
  2286.   /* Record that we have an implicit decl and this is it.  */
  2287.   IDENTIFIER_IMPLICIT_DECL (functionid) = decl;
  2288.  
  2289.   /* ANSI standard says implicit declarations are in the innermost block.
  2290.      So we record the decl in the standard fashion.
  2291.      If flag_traditional is set, pushdecl does it top-level.  */
  2292.   pushdecl (decl);
  2293.  
  2294.   /* This is a no-op in c-lang.c or something real in objc-actions.c.  */
  2295.   maybe_objc_check_decl (decl);
  2296.  
  2297.   rest_of_decl_compilation (decl, NULL_PTR, 0, 0);
  2298.  
  2299.   if (warn_implicit && implicit_warning)
  2300.     warning ("implicit declaration of function `%s'",
  2301.          IDENTIFIER_POINTER (functionid));
  2302.   else if (warn_traditional && traditional_warning)
  2303.     warning ("function `%s' was previously declared within a block",
  2304.          IDENTIFIER_POINTER (functionid));
  2305.  
  2306.   /* Write a record describing this implicit function declaration to the
  2307.      prototypes file (if requested).  */
  2308.  
  2309.   gen_aux_info_record (decl, 0, 1, 0);
  2310.  
  2311.   pop_obstacks ();
  2312.  
  2313.   return decl;
  2314. }
  2315.  
  2316. /* Return zero if the declaration NEWDECL is valid
  2317.    when the declaration OLDDECL (assumed to be for the same name)
  2318.    has already been seen.
  2319.    Otherwise return an error message format string with a %s
  2320.    where the identifier should go.  */
  2321.  
  2322. static char *
  2323. redeclaration_error_message (newdecl, olddecl)
  2324.      tree newdecl, olddecl;
  2325. {
  2326.   if (TREE_CODE (newdecl) == TYPE_DECL)
  2327.     {
  2328.       if (flag_traditional && TREE_TYPE (newdecl) == TREE_TYPE (olddecl))
  2329.     return 0;
  2330.       return "redefinition of `%s'";
  2331.     }
  2332.   else if (TREE_CODE (newdecl) == FUNCTION_DECL)
  2333.     {
  2334.       /* Declarations of functions can insist on internal linkage
  2335.      but they can't be inconsistent with internal linkage,
  2336.      so there can be no error on that account.
  2337.      However defining the same name twice is no good.  */
  2338.       if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0
  2339.       /* However, defining once as extern inline and a second
  2340.          time in another way is ok.  */
  2341.       && !(DECL_INLINE (olddecl) && DECL_EXTERNAL (olddecl)
  2342.            && !(DECL_INLINE (newdecl) && DECL_EXTERNAL (newdecl))))
  2343.     return "redefinition of `%s'";
  2344.       return 0;
  2345.     }
  2346.   else if (current_binding_level == global_binding_level)
  2347.     {
  2348.       /* Objects declared at top level:  */
  2349.       /* If at least one is a reference, it's ok.  */
  2350.       if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
  2351.     return 0;
  2352.       /* Reject two definitions.  */
  2353.       if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0)
  2354.     return "redefinition of `%s'";
  2355.       /* Now we have two tentative defs, or one tentative and one real def.  */
  2356.       /* Insist that the linkage match.  */
  2357.       if (TREE_PUBLIC (olddecl) != TREE_PUBLIC (newdecl))
  2358.     return "conflicting declarations of `%s'";
  2359.       return 0;
  2360.     }
  2361.   else if (current_binding_level->parm_flag
  2362.        && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
  2363.     return 0;
  2364.   else
  2365.     {
  2366.       /* Newdecl has block scope.  If olddecl has block scope also, then
  2367.      reject two definitions, and reject a definition together with an
  2368.      external reference.  Otherwise, it is OK, because newdecl must
  2369.      be an extern reference to olddecl.  */
  2370.       if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl))
  2371.       && DECL_CONTEXT (newdecl) == DECL_CONTEXT (olddecl))
  2372.     return "redeclaration of `%s'";
  2373.       return 0;
  2374.     }
  2375. }
  2376.  
  2377. /* Get the LABEL_DECL corresponding to identifier ID as a label.
  2378.    Create one if none exists so far for the current function.
  2379.    This function is called for both label definitions and label references.  */
  2380.  
  2381. tree
  2382. lookup_label (id)
  2383.      tree id;
  2384. {
  2385.   register tree decl = IDENTIFIER_LABEL_VALUE (id);
  2386.  
  2387.   if (current_function_decl == 0)
  2388.     {
  2389.       error ("label %s referenced outside of any function",
  2390.          IDENTIFIER_POINTER (id));
  2391.       return 0;
  2392.     }
  2393.  
  2394.   /* Use a label already defined or ref'd with this name.  */
  2395.   if (decl != 0)
  2396.     {
  2397.       /* But not if it is inherited and wasn't declared to be inheritable.  */
  2398.       if (DECL_CONTEXT (decl) != current_function_decl
  2399.       && ! C_DECLARED_LABEL_FLAG (decl))
  2400.     return shadow_label (id);
  2401.       return decl;
  2402.     }
  2403.  
  2404.   decl = build_decl (LABEL_DECL, id, void_type_node);
  2405.  
  2406.   /* Make sure every label has an rtx.  */
  2407.   label_rtx (decl);
  2408.  
  2409.   /* A label not explicitly declared must be local to where it's ref'd.  */
  2410.   DECL_CONTEXT (decl) = current_function_decl;
  2411.  
  2412.   DECL_MODE (decl) = VOIDmode;
  2413.  
  2414.   /* Say where one reference is to the label,
  2415.      for the sake of the error if it is not defined.  */
  2416.   DECL_SOURCE_LINE (decl) = lineno;
  2417.   DECL_SOURCE_FILE (decl) = input_filename;
  2418.  
  2419.   IDENTIFIER_LABEL_VALUE (id) = decl;
  2420.  
  2421.   named_labels = tree_cons (NULL_TREE, decl, named_labels);
  2422.  
  2423.   return decl;
  2424. }
  2425.  
  2426. /* Make a label named NAME in the current function,
  2427.    shadowing silently any that may be inherited from containing functions
  2428.    or containing scopes.
  2429.  
  2430.    Note that valid use, if the label being shadowed
  2431.    comes from another scope in the same function,
  2432.    requires calling declare_nonlocal_label right away.  */
  2433.  
  2434. tree
  2435. shadow_label (name)
  2436.      tree name;
  2437. {
  2438.   register tree decl = IDENTIFIER_LABEL_VALUE (name);
  2439.  
  2440.   if (decl != 0)
  2441.     {
  2442.       shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
  2443.       IDENTIFIER_LABEL_VALUE (name) = decl = 0;
  2444.     }
  2445.  
  2446.   return lookup_label (name);
  2447. }
  2448.  
  2449. /* Define a label, specifying the location in the source file.
  2450.    Return the LABEL_DECL node for the label, if the definition is valid.
  2451.    Otherwise return 0.  */
  2452.  
  2453. tree
  2454. define_label (filename, line, name)
  2455.      char *filename;
  2456.      int line;
  2457.      tree name;
  2458. {
  2459.   tree decl = lookup_label (name);
  2460.  
  2461.   /* If label with this name is known from an outer context, shadow it.  */
  2462.   if (decl != 0 && DECL_CONTEXT (decl) != current_function_decl)
  2463.     {
  2464.       shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
  2465.       IDENTIFIER_LABEL_VALUE (name) = 0;
  2466.       decl = lookup_label (name);
  2467.     }
  2468.  
  2469.   if (DECL_INITIAL (decl) != 0)
  2470.     {
  2471.       error ("duplicate label `%s'", IDENTIFIER_POINTER (name));
  2472.       return 0;
  2473.     }
  2474.   else
  2475.     {
  2476.       /* Mark label as having been defined.  */
  2477.       DECL_INITIAL (decl) = error_mark_node;
  2478.       /* Say where in the source.  */
  2479.       DECL_SOURCE_FILE (decl) = filename;
  2480.       DECL_SOURCE_LINE (decl) = line;
  2481.       return decl;
  2482.     }
  2483. }
  2484.  
  2485. /* Return the list of declarations of the current level.
  2486.    Note that this list is in reverse order unless/until
  2487.    you nreverse it; and when you do nreverse it, you must
  2488.    store the result back using `storedecls' or you will lose.  */
  2489.  
  2490. tree
  2491. getdecls ()
  2492. {
  2493.   return current_binding_level->names;
  2494. }
  2495.  
  2496. /* Return the list of type-tags (for structs, etc) of the current level.  */
  2497.  
  2498. tree
  2499. gettags ()
  2500. {
  2501.   return current_binding_level->tags;
  2502. }
  2503.  
  2504. /* Store the list of declarations of the current level.
  2505.    This is done for the parameter declarations of a function being defined,
  2506.    after they are modified in the light of any missing parameters.  */
  2507.  
  2508. static void
  2509. storedecls (decls)
  2510.      tree decls;
  2511. {
  2512.   current_binding_level->names = decls;
  2513. }
  2514.  
  2515. /* Similarly, store the list of tags of the current level.  */
  2516.  
  2517. static void
  2518. storetags (tags)
  2519.      tree tags;
  2520. {
  2521.   current_binding_level->tags = tags;
  2522. }
  2523.  
  2524. /* Given NAME, an IDENTIFIER_NODE,
  2525.    return the structure (or union or enum) definition for that name.
  2526.    Searches binding levels from BINDING_LEVEL up to the global level.
  2527.    If THISLEVEL_ONLY is nonzero, searches only the specified context
  2528.    (but skips any tag-transparent contexts to find one that is
  2529.    meaningful for tags).
  2530.    CODE says which kind of type the caller wants;
  2531.    it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
  2532.    If the wrong kind of type is found, an error is reported.  */
  2533.  
  2534. static tree
  2535. lookup_tag (code, name, binding_level, thislevel_only)
  2536.      enum tree_code code;
  2537.      struct binding_level *binding_level;
  2538.      tree name;
  2539.      int thislevel_only;
  2540. {
  2541.   register struct binding_level *level;
  2542.  
  2543.   for (level = binding_level; level; level = level->level_chain)
  2544.     {
  2545.       register tree tail;
  2546.       for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
  2547.     {
  2548.       if (TREE_PURPOSE (tail) == name)
  2549.         {
  2550.           if (TREE_CODE (TREE_VALUE (tail)) != code)
  2551.         {
  2552.           /* Definition isn't the kind we were looking for.  */
  2553.           pending_invalid_xref = name;
  2554.           pending_invalid_xref_file = input_filename;
  2555.           pending_invalid_xref_line = lineno;
  2556.         }
  2557.           return TREE_VALUE (tail);
  2558.         }
  2559.     }
  2560.       if (thislevel_only && ! level->tag_transparent)
  2561.     return NULL_TREE;
  2562.     }
  2563.   return NULL_TREE;
  2564. }
  2565.  
  2566. /* Print an error message now
  2567.    for a recent invalid struct, union or enum cross reference.
  2568.    We don't print them immediately because they are not invalid
  2569.    when used in the `struct foo;' construct for shadowing.  */
  2570.  
  2571. void
  2572. pending_xref_error ()
  2573. {
  2574.   if (pending_invalid_xref != 0)
  2575.     error_with_file_and_line (pending_invalid_xref_file,
  2576.                   pending_invalid_xref_line,
  2577.                   "`%s' defined as wrong kind of tag",
  2578.                   IDENTIFIER_POINTER (pending_invalid_xref));
  2579.   pending_invalid_xref = 0;
  2580. }
  2581.  
  2582. /* Given a type, find the tag that was defined for it and return the tag name.
  2583.    Otherwise return 0.  */
  2584.  
  2585. static tree
  2586. lookup_tag_reverse (type)
  2587.      tree type;
  2588. {
  2589.   register struct binding_level *level;
  2590.  
  2591.   for (level = current_binding_level; level; level = level->level_chain)
  2592.     {
  2593.       register tree tail;
  2594.       for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
  2595.     {
  2596.       if (TREE_VALUE (tail) == type)
  2597.         return TREE_PURPOSE (tail);
  2598.     }
  2599.     }
  2600.   return NULL_TREE;
  2601. }
  2602.  
  2603. /* Look up NAME in the current binding level and its superiors
  2604.    in the namespace of variables, functions and typedefs.
  2605.    Return a ..._DECL node of some kind representing its definition,
  2606.    or return 0 if it is undefined.  */
  2607.  
  2608. tree
  2609. lookup_name (name)
  2610.      tree name;
  2611. {
  2612.   register tree val;
  2613.   if (current_binding_level != global_binding_level
  2614.       && IDENTIFIER_LOCAL_VALUE (name))
  2615.     val = IDENTIFIER_LOCAL_VALUE (name);
  2616.   else
  2617.     val = IDENTIFIER_GLOBAL_VALUE (name);
  2618.   return val;
  2619. }
  2620.  
  2621. /* Similar to `lookup_name' but look only at current binding level.  */
  2622.  
  2623. tree
  2624. lookup_name_current_level (name)
  2625.      tree name;
  2626. {
  2627.   register tree t;
  2628.  
  2629.   if (current_binding_level == global_binding_level)
  2630.     return IDENTIFIER_GLOBAL_VALUE (name);
  2631.  
  2632.   if (IDENTIFIER_LOCAL_VALUE (name) == 0)
  2633.     return 0;
  2634.  
  2635.   for (t = current_binding_level->names; t; t = TREE_CHAIN (t))
  2636.     if (DECL_NAME (t) == name)
  2637.       break;
  2638.  
  2639.   return t;
  2640. }
  2641.  
  2642. /* Similar to `lookup_name_current_level' but also look at the global binding
  2643.    level.  */
  2644.  
  2645. tree
  2646. lookup_name_current_level_global (name)
  2647.      tree name;
  2648. {
  2649.   register tree t = 0;
  2650.  
  2651.   if (current_binding_level == global_binding_level)
  2652.     return IDENTIFIER_GLOBAL_VALUE (name);
  2653.  
  2654.   if (IDENTIFIER_LOCAL_VALUE (name) != 0)
  2655.     for (t = current_binding_level->names; t; t = TREE_CHAIN (t))
  2656.       if (DECL_NAME (t) == name)
  2657.     break;
  2658.  
  2659.   if (t == 0)
  2660.     t = IDENTIFIER_GLOBAL_VALUE (name);
  2661.  
  2662.   return t;
  2663. }
  2664.  
  2665. /* Create the predefined scalar types of C,
  2666.    and some nodes representing standard constants (0, 1, (void *)0).
  2667.    Initialize the global binding level.
  2668.    Make definitions for built-in primitive functions.  */
  2669.  
  2670. void
  2671. init_decl_processing ()
  2672. {
  2673.   register tree endlink;
  2674.   /* Either char* or void*.  */
  2675.   tree traditional_ptr_type_node;
  2676.   /* Data types of memcpy and strlen.  */
  2677.   tree memcpy_ftype, strlen_ftype;
  2678.   tree void_ftype_any;
  2679.   int wchar_type_size;
  2680.   tree temp;
  2681.   tree array_domain_type;
  2682.  
  2683.   current_function_decl = NULL;
  2684.   named_labels = NULL;
  2685.   current_binding_level = NULL_BINDING_LEVEL;
  2686.   free_binding_level = NULL_BINDING_LEVEL;
  2687.   pushlevel (0);    /* make the binding_level structure for global names */
  2688.   global_binding_level = current_binding_level;
  2689.  
  2690.   /* Define `int' and `char' first so that dbx will output them first.  */
  2691.  
  2692.   integer_type_node = make_signed_type (INT_TYPE_SIZE);
  2693.   pushdecl (build_decl (TYPE_DECL, ridpointers[(int) RID_INT],
  2694.             integer_type_node));
  2695.  
  2696.   /* Define `char', which is like either `signed char' or `unsigned char'
  2697.      but not the same as either.  */
  2698.  
  2699.   char_type_node
  2700.     = (flag_signed_char
  2701.        ? make_signed_type (CHAR_TYPE_SIZE)
  2702.        : make_unsigned_type (CHAR_TYPE_SIZE));
  2703.   pushdecl (build_decl (TYPE_DECL, get_identifier ("char"),
  2704.             char_type_node));
  2705.  
  2706.   long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
  2707.   pushdecl (build_decl (TYPE_DECL, get_identifier ("long int"),
  2708.             long_integer_type_node));
  2709.  
  2710.   unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
  2711.   pushdecl (build_decl (TYPE_DECL, get_identifier ("unsigned int"),
  2712.             unsigned_type_node));
  2713.  
  2714.   long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
  2715.   pushdecl (build_decl (TYPE_DECL, get_identifier ("long unsigned int"),
  2716.             long_unsigned_type_node));
  2717.  
  2718.   long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
  2719.   pushdecl (build_decl (TYPE_DECL, get_identifier ("long long int"),
  2720.             long_long_integer_type_node));
  2721.  
  2722.   long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
  2723.   pushdecl (build_decl (TYPE_DECL, get_identifier ("long long unsigned int"),
  2724.             long_long_unsigned_type_node));
  2725.  
  2726.   /* `unsigned long' is the standard type for sizeof.
  2727.      Traditionally, use a signed type.
  2728.      Note that stddef.h uses `unsigned long',
  2729.      and this must agree, even of long and int are the same size.  */
  2730.   sizetype
  2731.     = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (SIZE_TYPE)));
  2732.   if (flag_traditional && TREE_UNSIGNED (sizetype))
  2733.     sizetype = signed_type (sizetype);
  2734.  
  2735.   ptrdiff_type_node
  2736.     = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (PTRDIFF_TYPE)));
  2737.  
  2738.   TREE_TYPE (TYPE_SIZE (integer_type_node)) = sizetype;
  2739.   TREE_TYPE (TYPE_SIZE (char_type_node)) = sizetype;
  2740.   TREE_TYPE (TYPE_SIZE (unsigned_type_node)) = sizetype;
  2741.   TREE_TYPE (TYPE_SIZE (long_unsigned_type_node)) = sizetype;
  2742.   TREE_TYPE (TYPE_SIZE (long_integer_type_node)) = sizetype;
  2743.   TREE_TYPE (TYPE_SIZE (long_long_integer_type_node)) = sizetype;
  2744.   TREE_TYPE (TYPE_SIZE (long_long_unsigned_type_node)) = sizetype;
  2745.  
  2746.   error_mark_node = make_node (ERROR_MARK);
  2747.   TREE_TYPE (error_mark_node) = error_mark_node;
  2748.  
  2749.   short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
  2750.   pushdecl (build_decl (TYPE_DECL, get_identifier ("short int"),
  2751.             short_integer_type_node));
  2752.  
  2753.   short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
  2754.   pushdecl (build_decl (TYPE_DECL, get_identifier ("short unsigned int"),
  2755.             short_unsigned_type_node));
  2756.  
  2757.   /* Define both `signed char' and `unsigned char'.  */
  2758.   signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
  2759.   pushdecl (build_decl (TYPE_DECL, get_identifier ("signed char"),
  2760.             signed_char_type_node));
  2761.  
  2762.   unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
  2763.   pushdecl (build_decl (TYPE_DECL, get_identifier ("unsigned char"),
  2764.             unsigned_char_type_node));
  2765.  
  2766.   intQI_type_node = make_signed_type (GET_MODE_BITSIZE (QImode));
  2767.   pushdecl (build_decl (TYPE_DECL, NULL_TREE, intQI_type_node));
  2768.  
  2769.   intHI_type_node = make_signed_type (GET_MODE_BITSIZE (HImode));
  2770.   pushdecl (build_decl (TYPE_DECL, NULL_TREE, intHI_type_node));
  2771.  
  2772.   intSI_type_node = make_signed_type (GET_MODE_BITSIZE (SImode));
  2773.   pushdecl (build_decl (TYPE_DECL, NULL_TREE, intSI_type_node));
  2774.  
  2775.   intDI_type_node = make_signed_type (GET_MODE_BITSIZE (DImode));
  2776.   pushdecl (build_decl (TYPE_DECL, NULL_TREE, intDI_type_node));
  2777.  
  2778.   unsigned_intQI_type_node = make_unsigned_type (GET_MODE_BITSIZE (QImode));
  2779.   pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intQI_type_node));
  2780.  
  2781.   unsigned_intHI_type_node = make_unsigned_type (GET_MODE_BITSIZE (HImode));
  2782.   pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intHI_type_node));
  2783.  
  2784.   unsigned_intSI_type_node = make_unsigned_type (GET_MODE_BITSIZE (SImode));
  2785.   pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intSI_type_node));
  2786.  
  2787.   unsigned_intDI_type_node = make_unsigned_type (GET_MODE_BITSIZE (DImode));
  2788.   pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intDI_type_node));
  2789.  
  2790.   float_type_node = make_node (REAL_TYPE);
  2791.   TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
  2792.   pushdecl (build_decl (TYPE_DECL, ridpointers[(int) RID_FLOAT],
  2793.             float_type_node));
  2794.   layout_type (float_type_node);
  2795.  
  2796.   double_type_node = make_node (REAL_TYPE);
  2797.   if (flag_short_double)
  2798.     TYPE_PRECISION (double_type_node) = FLOAT_TYPE_SIZE;
  2799.   else
  2800.     TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
  2801.   pushdecl (build_decl (TYPE_DECL, ridpointers[(int) RID_DOUBLE],
  2802.             double_type_node));
  2803.   layout_type (double_type_node);
  2804.  
  2805.   long_double_type_node = make_node (REAL_TYPE);
  2806.   TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
  2807.   pushdecl (build_decl (TYPE_DECL, get_identifier ("long double"),
  2808.             long_double_type_node));
  2809.   layout_type (long_double_type_node);
  2810.  
  2811.   complex_integer_type_node = make_node (COMPLEX_TYPE);
  2812.   pushdecl (build_decl (TYPE_DECL, get_identifier ("complex int"),
  2813.             complex_integer_type_node));
  2814.   TREE_TYPE (complex_integer_type_node) = integer_type_node;
  2815.   layout_type (complex_integer_type_node);
  2816.  
  2817.   complex_float_type_node = make_node (COMPLEX_TYPE);
  2818.   pushdecl (build_decl (TYPE_DECL, get_identifier ("complex float"),
  2819.             complex_float_type_node));
  2820.   TREE_TYPE (complex_float_type_node) = float_type_node;
  2821.   layout_type (complex_float_type_node);
  2822.  
  2823.   complex_double_type_node = make_node (COMPLEX_TYPE);
  2824.   pushdecl (build_decl (TYPE_DECL, get_identifier ("complex double"),
  2825.             complex_double_type_node));
  2826.   TREE_TYPE (complex_double_type_node) = double_type_node;
  2827.   layout_type (complex_double_type_node);
  2828.  
  2829.   complex_long_double_type_node = make_node (COMPLEX_TYPE);
  2830.   pushdecl (build_decl (TYPE_DECL, get_identifier ("complex long double"),
  2831.             complex_long_double_type_node));
  2832.   TREE_TYPE (complex_long_double_type_node) = long_double_type_node;
  2833.   layout_type (complex_long_double_type_node);
  2834.  
  2835.   wchar_type_node
  2836.     = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (WCHAR_TYPE)));
  2837.   wchar_type_size = TYPE_PRECISION (wchar_type_node);
  2838.   signed_wchar_type_node = signed_type (wchar_type_node);
  2839.   unsigned_wchar_type_node = unsigned_type (wchar_type_node);
  2840.  
  2841.   integer_zero_node = build_int_2 (0, 0);
  2842.   TREE_TYPE (integer_zero_node) = integer_type_node;
  2843.   integer_one_node = build_int_2 (1, 0);
  2844.   TREE_TYPE (integer_one_node) = integer_type_node;
  2845.  
  2846.   size_zero_node = build_int_2 (0, 0);
  2847.   TREE_TYPE (size_zero_node) = sizetype;
  2848.   size_one_node = build_int_2 (1, 0);
  2849.   TREE_TYPE (size_one_node) = sizetype;
  2850.  
  2851.   void_type_node = make_node (VOID_TYPE);
  2852.   pushdecl (build_decl (TYPE_DECL,
  2853.             ridpointers[(int) RID_VOID], void_type_node));
  2854.   layout_type (void_type_node);    /* Uses integer_zero_node */
  2855.   /* We are not going to have real types in C with less than byte alignment,
  2856.      so we might as well not have any types that claim to have it.  */
  2857.   TYPE_ALIGN (void_type_node) = BITS_PER_UNIT;
  2858.  
  2859.   null_pointer_node = build_int_2 (0, 0);
  2860.   TREE_TYPE (null_pointer_node) = build_pointer_type (void_type_node);
  2861.   layout_type (TREE_TYPE (null_pointer_node));
  2862.  
  2863.   string_type_node = build_pointer_type (char_type_node);
  2864.   const_string_type_node
  2865.     = build_pointer_type (build_type_variant (char_type_node, 1, 0));
  2866.  
  2867.   /* Make a type to be the domain of a few array types
  2868.      whose domains don't really matter.
  2869.      200 is small enough that it always fits in size_t
  2870.      and large enough that it can hold most function names for the
  2871.      initializations of __FUNCTION__ and __PRETTY_FUNCTION__.  */
  2872.   array_domain_type = build_index_type (build_int_2 (200, 0));
  2873.  
  2874.   /* make a type for arrays of characters.
  2875.      With luck nothing will ever really depend on the length of this
  2876.      array type.  */
  2877.   char_array_type_node
  2878.     = build_array_type (char_type_node, array_domain_type);
  2879.   /* Likewise for arrays of ints.  */
  2880.   int_array_type_node
  2881.     = build_array_type (integer_type_node, array_domain_type);
  2882.   /* This is for wide string constants.  */
  2883.   wchar_array_type_node
  2884.     = build_array_type (wchar_type_node, array_domain_type);
  2885.  
  2886.   default_function_type
  2887.     = build_function_type (integer_type_node, NULL_TREE);
  2888.  
  2889.   ptr_type_node = build_pointer_type (void_type_node);
  2890.   const_ptr_type_node
  2891.     = build_pointer_type (build_type_variant (void_type_node, 1, 0));
  2892.  
  2893.   endlink = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
  2894.  
  2895.   void_ftype_any
  2896.     = build_function_type (void_type_node, NULL_TREE);
  2897.  
  2898.   double_ftype_double
  2899.     = build_function_type (double_type_node,
  2900.                tree_cons (NULL_TREE, double_type_node, endlink));
  2901.  
  2902.   double_ftype_double_double
  2903.     = build_function_type (double_type_node,
  2904.                tree_cons (NULL_TREE, double_type_node,
  2905.                       tree_cons (NULL_TREE,
  2906.                          double_type_node, endlink)));
  2907.  
  2908.   int_ftype_int
  2909.     = build_function_type (integer_type_node,
  2910.                tree_cons (NULL_TREE, integer_type_node, endlink));
  2911.  
  2912.   long_ftype_long
  2913.     = build_function_type (long_integer_type_node,
  2914.                tree_cons (NULL_TREE,
  2915.                       long_integer_type_node, endlink));
  2916.  
  2917.   void_ftype_ptr_ptr_int
  2918.     = build_function_type (void_type_node,
  2919.                tree_cons (NULL_TREE, ptr_type_node,
  2920.                       tree_cons (NULL_TREE, ptr_type_node,
  2921.                          tree_cons (NULL_TREE,
  2922.                                 integer_type_node,
  2923.                                 endlink))));
  2924.  
  2925.   int_ftype_cptr_cptr_sizet
  2926.     = build_function_type (integer_type_node,
  2927.                tree_cons (NULL_TREE, const_ptr_type_node,
  2928.                       tree_cons (NULL_TREE, const_ptr_type_node,
  2929.                          tree_cons (NULL_TREE,
  2930.                                 sizetype,
  2931.                                 endlink))));
  2932.  
  2933.   void_ftype_ptr_int_int
  2934.     = build_function_type (void_type_node,
  2935.                tree_cons (NULL_TREE, ptr_type_node,
  2936.                       tree_cons (NULL_TREE, integer_type_node,
  2937.                          tree_cons (NULL_TREE,
  2938.                                 integer_type_node,
  2939.                                 endlink))));
  2940.  
  2941.   string_ftype_ptr_ptr        /* strcpy prototype */
  2942.     = build_function_type (string_type_node,
  2943.                tree_cons (NULL_TREE, string_type_node,
  2944.                       tree_cons (NULL_TREE,
  2945.                          const_string_type_node,
  2946.                          endlink)));
  2947.  
  2948.   int_ftype_string_string    /* strcmp prototype */
  2949.     = build_function_type (integer_type_node,
  2950.                tree_cons (NULL_TREE, const_string_type_node,
  2951.                       tree_cons (NULL_TREE,
  2952.                          const_string_type_node,
  2953.                          endlink)));
  2954.  
  2955.   strlen_ftype        /* strlen prototype */
  2956.     = build_function_type (flag_traditional ? integer_type_node : sizetype,
  2957.                tree_cons (NULL_TREE, const_string_type_node,
  2958.                       endlink));
  2959.  
  2960.   traditional_ptr_type_node
  2961.     = (flag_traditional ? string_type_node : ptr_type_node);
  2962.  
  2963.   memcpy_ftype    /* memcpy prototype */
  2964.     = build_function_type (traditional_ptr_type_node,
  2965.                tree_cons (NULL_TREE, ptr_type_node,
  2966.                       tree_cons (NULL_TREE, const_ptr_type_node,
  2967.                          tree_cons (NULL_TREE,
  2968.                                 sizetype,
  2969.                                 endlink))));
  2970.  
  2971.   builtin_function ("__builtin_constant_p", int_ftype_int,
  2972.             BUILT_IN_CONSTANT_P, NULL_PTR);
  2973.  
  2974.   builtin_function ("__builtin_return_address",
  2975.             build_function_type (ptr_type_node, 
  2976.                      tree_cons (NULL_TREE,
  2977.                             unsigned_type_node,
  2978.                             endlink)),
  2979.             BUILT_IN_RETURN_ADDRESS, NULL_PTR);
  2980.  
  2981.   builtin_function ("__builtin_frame_address",
  2982.             build_function_type (ptr_type_node, 
  2983.                      tree_cons (NULL_TREE,
  2984.                             unsigned_type_node,
  2985.                             endlink)),
  2986.             BUILT_IN_FRAME_ADDRESS, NULL_PTR);
  2987.  
  2988.   builtin_function ("__builtin_alloca",
  2989.             build_function_type (ptr_type_node,
  2990.                      tree_cons (NULL_TREE,
  2991.                             sizetype,
  2992.                             endlink)),
  2993.             BUILT_IN_ALLOCA, "alloca");
  2994.   builtin_function ("__builtin_ffs", int_ftype_int, BUILT_IN_FFS, NULL_PTR);
  2995.   /* Define alloca, ffs as builtins.
  2996.      Declare _exit just to mark it as volatile.  */
  2997.   if (! flag_no_builtin && !flag_no_nonansi_builtin)
  2998.     {
  2999.       temp = builtin_function ("alloca",
  3000.                    build_function_type (ptr_type_node,
  3001.                             tree_cons (NULL_TREE,
  3002.                                    sizetype,
  3003.                                    endlink)),
  3004.                    BUILT_IN_ALLOCA, NULL_PTR);
  3005.       /* Suppress error if redefined as a non-function.  */
  3006.       DECL_BUILT_IN_NONANSI (temp) = 1;
  3007.       temp = builtin_function ("ffs", int_ftype_int, BUILT_IN_FFS, NULL_PTR);
  3008.       /* Suppress error if redefined as a non-function.  */
  3009.       DECL_BUILT_IN_NONANSI (temp) = 1;
  3010.       temp = builtin_function ("_exit", void_ftype_any, NOT_BUILT_IN,
  3011.                    NULL_PTR);
  3012.       TREE_THIS_VOLATILE (temp) = 1;
  3013.       TREE_SIDE_EFFECTS (temp) = 1;
  3014.       /* Suppress error if redefined as a non-function.  */
  3015.       DECL_BUILT_IN_NONANSI (temp) = 1;
  3016.     }
  3017.  
  3018.   builtin_function ("__builtin_abs", int_ftype_int, BUILT_IN_ABS, NULL_PTR);
  3019.   builtin_function ("__builtin_fabs", double_ftype_double, BUILT_IN_FABS,
  3020.             NULL_PTR);
  3021.   builtin_function ("__builtin_labs", long_ftype_long, BUILT_IN_LABS,
  3022.             NULL_PTR);
  3023.   builtin_function ("__builtin_saveregs",
  3024.             build_function_type (ptr_type_node, NULL_TREE),
  3025.             BUILT_IN_SAVEREGS, NULL_PTR);
  3026. /* EXPAND_BUILTIN_VARARGS is obsolete.  */
  3027. #if 0
  3028.   builtin_function ("__builtin_varargs",
  3029.             build_function_type (ptr_type_node,
  3030.                      tree_cons (NULL_TREE,
  3031.                             integer_type_node,
  3032.                             endlink)),
  3033.             BUILT_IN_VARARGS, NULL_PTR);
  3034. #endif
  3035.   builtin_function ("__builtin_classify_type", default_function_type,
  3036.             BUILT_IN_CLASSIFY_TYPE, NULL_PTR);
  3037.   builtin_function ("__builtin_next_arg",
  3038.             build_function_type (ptr_type_node, NULL_TREE),
  3039.             BUILT_IN_NEXT_ARG, NULL_PTR);
  3040.   builtin_function ("__builtin_args_info",
  3041.             build_function_type (integer_type_node,
  3042.                      tree_cons (NULL_TREE,
  3043.                             integer_type_node,
  3044.                             endlink)),
  3045.             BUILT_IN_ARGS_INFO, NULL_PTR);
  3046.  
  3047.   /* Untyped call and return.  */
  3048.   builtin_function ("__builtin_apply_args",
  3049.             build_function_type (ptr_type_node, NULL_TREE),
  3050.             BUILT_IN_APPLY_ARGS, NULL_PTR);
  3051.  
  3052.   temp = tree_cons (NULL_TREE,
  3053.             build_pointer_type (build_function_type (void_type_node,
  3054.                                  NULL_TREE)),
  3055.             tree_cons (NULL_TREE,
  3056.                    ptr_type_node,
  3057.                    tree_cons (NULL_TREE,
  3058.                       sizetype,
  3059.                       endlink)));
  3060.   builtin_function ("__builtin_apply",
  3061.             build_function_type (ptr_type_node, temp),
  3062.             BUILT_IN_APPLY, NULL_PTR);
  3063.   builtin_function ("__builtin_return",
  3064.             build_function_type (void_type_node,
  3065.                      tree_cons (NULL_TREE,
  3066.                             ptr_type_node,
  3067.                             endlink)),
  3068.             BUILT_IN_RETURN, NULL_PTR);
  3069.  
  3070.   /* Currently under experimentation.  */
  3071.   builtin_function ("__builtin_memcpy", memcpy_ftype,
  3072.             BUILT_IN_MEMCPY, "memcpy");
  3073.   builtin_function ("__builtin_memcmp", int_ftype_cptr_cptr_sizet,
  3074.             BUILT_IN_MEMCMP, "memcmp");
  3075.   builtin_function ("__builtin_strcmp", int_ftype_string_string,
  3076.             BUILT_IN_STRCMP, "strcmp");
  3077.   builtin_function ("__builtin_strcpy", string_ftype_ptr_ptr,
  3078.             BUILT_IN_STRCPY, "strcpy");
  3079.   builtin_function ("__builtin_strlen", strlen_ftype,
  3080.             BUILT_IN_STRLEN, "strlen");
  3081.   builtin_function ("__builtin_fsqrt", double_ftype_double, 
  3082.             BUILT_IN_FSQRT, "sqrt");
  3083.   builtin_function ("__builtin_sin", double_ftype_double, 
  3084.             BUILT_IN_SIN, "sin");
  3085.   builtin_function ("__builtin_cos", double_ftype_double, 
  3086.             BUILT_IN_COS, "cos");
  3087.  
  3088.   /* In an ANSI C program, it is okay to supply built-in meanings
  3089.      for these functions, since applications cannot validly use them
  3090.      with any other meaning.
  3091.      However, honor the -fno-builtin option.  */
  3092.   if (!flag_no_builtin)
  3093.     {
  3094.       builtin_function ("abs", int_ftype_int, BUILT_IN_ABS, NULL_PTR);
  3095.       builtin_function ("fabs", double_ftype_double, BUILT_IN_FABS, NULL_PTR);
  3096.       builtin_function ("labs", long_ftype_long, BUILT_IN_LABS, NULL_PTR);
  3097.       builtin_function ("memcpy", memcpy_ftype, BUILT_IN_MEMCPY, NULL_PTR);
  3098.       builtin_function ("memcmp", int_ftype_cptr_cptr_sizet, BUILT_IN_MEMCMP,
  3099.             NULL_PTR);
  3100.       builtin_function ("strcmp", int_ftype_string_string, BUILT_IN_STRCMP,
  3101.             NULL_PTR);
  3102.       builtin_function ("strcpy", string_ftype_ptr_ptr, BUILT_IN_STRCPY,
  3103.             NULL_PTR);
  3104.       builtin_function ("strlen", strlen_ftype, BUILT_IN_STRLEN, NULL_PTR);
  3105.       builtin_function ("sqrt", double_ftype_double, BUILT_IN_FSQRT, NULL_PTR);
  3106.       builtin_function ("sin", double_ftype_double, BUILT_IN_SIN, NULL_PTR);
  3107.       builtin_function ("cos", double_ftype_double, BUILT_IN_COS, NULL_PTR);
  3108.  
  3109.       /* Declare these functions volatile
  3110.      to avoid spurious "control drops through" warnings.  */
  3111.       /* Don't specify the argument types, to avoid errors
  3112.      from certain code which isn't valid in ANSI but which exists.  */
  3113.       temp = builtin_function ("abort", void_ftype_any, NOT_BUILT_IN,
  3114.                    NULL_PTR);
  3115.       TREE_THIS_VOLATILE (temp) = 1;
  3116.       TREE_SIDE_EFFECTS (temp) = 1;
  3117.       temp = builtin_function ("exit", void_ftype_any, NOT_BUILT_IN, NULL_PTR);
  3118.       TREE_THIS_VOLATILE (temp) = 1;
  3119.       TREE_SIDE_EFFECTS (temp) = 1;
  3120.     }
  3121.  
  3122. #if 0
  3123.   /* Support for these has not been written in either expand_builtin
  3124.      or build_function_call.  */
  3125.   builtin_function ("__builtin_div", default_ftype, BUILT_IN_DIV, NULL_PTR);
  3126.   builtin_function ("__builtin_ldiv", default_ftype, BUILT_IN_LDIV, NULL_PTR);
  3127.   builtin_function ("__builtin_ffloor", double_ftype_double, BUILT_IN_FFLOOR,
  3128.             NULL_PTR);
  3129.   builtin_function ("__builtin_fceil", double_ftype_double, BUILT_IN_FCEIL,
  3130.             NULL_PTR);
  3131.   builtin_function ("__builtin_fmod", double_ftype_double_double,
  3132.             BUILT_IN_FMOD, NULL_PTR);
  3133.   builtin_function ("__builtin_frem", double_ftype_double_double,
  3134.             BUILT_IN_FREM, NULL_PTR);
  3135.   builtin_function ("__builtin_memset", ptr_ftype_ptr_int_int,
  3136.             BUILT_IN_MEMSET, NULL_PTR);
  3137.   builtin_function ("__builtin_getexp", double_ftype_double, BUILT_IN_GETEXP,
  3138.             NULL_PTR);
  3139.   builtin_function ("__builtin_getman", double_ftype_double, BUILT_IN_GETMAN,
  3140.             NULL_PTR);
  3141. #endif
  3142.  
  3143.   /* Create the global bindings for __FUNCTION__ and __PRETTY_FUNCTION__.  */
  3144.   declare_function_name ();
  3145.  
  3146.   start_identifier_warnings ();
  3147.  
  3148.   /* Prepare to check format strings against argument lists.  */
  3149.   init_function_format_info ();
  3150.  
  3151.   init_iterators ();
  3152.  
  3153.   incomplete_decl_finalize_hook = finish_incomplete_decl;
  3154. }
  3155.  
  3156. /* Return a definition for a builtin function named NAME and whose data type
  3157.    is TYPE.  TYPE should be a function type with argument types.
  3158.    FUNCTION_CODE tells later passes how to compile calls to this function.
  3159.    See tree.h for its possible values.
  3160.  
  3161.    If LIBRARY_NAME is nonzero, use that for DECL_ASSEMBLER_NAME,
  3162.    the name to be called if we can't opencode the function.  */
  3163.  
  3164. tree
  3165. builtin_function (name, type, function_code, library_name)
  3166.      char *name;
  3167.      tree type;
  3168.      enum built_in_function function_code;
  3169.      char *library_name;
  3170. {
  3171.   tree decl = build_decl (FUNCTION_DECL, get_identifier (name), type);
  3172.   DECL_EXTERNAL (decl) = 1;
  3173.   TREE_PUBLIC (decl) = 1;
  3174.   /* If -traditional, permit redefining a builtin function any way you like.
  3175.      (Though really, if the program redefines these functions,
  3176.      it probably won't work right unless compiled with -fno-builtin.)  */
  3177.   if (flag_traditional && name[0] != '_')
  3178.     DECL_BUILT_IN_NONANSI (decl) = 1;
  3179.   if (library_name)
  3180.     DECL_ASSEMBLER_NAME (decl) = get_identifier (library_name);
  3181.   make_decl_rtl (decl, NULL_PTR, 1);
  3182.   pushdecl (decl);
  3183.   if (function_code != NOT_BUILT_IN)
  3184.     {
  3185.       DECL_BUILT_IN (decl) = 1;
  3186.       DECL_FUNCTION_CODE (decl) = function_code;
  3187.     }
  3188.   /* Warn if a function in the namespace for users
  3189.      is used without an occasion to consider it declared.  */
  3190.   if (name[0] != '_' || name[1] != '_')
  3191.     C_DECL_ANTICIPATED (decl) = 1;
  3192.  
  3193.   return decl;
  3194. }
  3195.  
  3196. /* Called when a declaration is seen that contains no names to declare.
  3197.    If its type is a reference to a structure, union or enum inherited
  3198.    from a containing scope, shadow that tag name for the current scope
  3199.    with a forward reference.
  3200.    If its type defines a new named structure or union
  3201.    or defines an enum, it is valid but we need not do anything here.
  3202.    Otherwise, it is an error.  */
  3203.  
  3204. void
  3205. shadow_tag (declspecs)
  3206.      tree declspecs;
  3207. {
  3208.   shadow_tag_warned (declspecs, 0);
  3209. }
  3210.  
  3211. void
  3212. shadow_tag_warned (declspecs, warned)
  3213.      tree declspecs;
  3214.      int warned;
  3215.      /* 1 => we have done a pedwarn.  2 => we have done a warning, but
  3216.     no pedwarn.  */
  3217. {
  3218.   int found_tag = 0;
  3219.   register tree link;
  3220.  
  3221.   pending_invalid_xref = 0;
  3222.  
  3223.   for (link = declspecs; link; link = TREE_CHAIN (link))
  3224.     {
  3225.       register tree value = TREE_VALUE (link);
  3226.       register enum tree_code code = TREE_CODE (value);
  3227.  
  3228.       if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
  3229.     /* Used to test also that TYPE_SIZE (value) != 0.
  3230.        That caused warning for `struct foo;' at top level in the file.  */
  3231.     {
  3232.       register tree name = lookup_tag_reverse (value);
  3233.       register tree t;
  3234.  
  3235.       found_tag++;
  3236.  
  3237.       if (name == 0)
  3238.         {
  3239.           if (warned != 1 && code != ENUMERAL_TYPE)
  3240.         /* Empty unnamed enum OK */
  3241.         {
  3242.           pedwarn ("unnamed struct/union that defines no instances");
  3243.           warned = 1;
  3244.         }
  3245.         }
  3246.       else
  3247.         {
  3248.           t = lookup_tag (code, name, current_binding_level, 1);
  3249.  
  3250.           if (t == 0)
  3251.         {
  3252.           t = make_node (code);
  3253.           pushtag (name, t);
  3254.         }
  3255.         }
  3256.     }
  3257.       else
  3258.     {
  3259.       if (!warned)
  3260.         {
  3261.           warning ("useless keyword or type name in empty declaration");
  3262.           warned = 2;
  3263.         }
  3264.     }
  3265.     }
  3266.  
  3267.   if (found_tag > 1)
  3268.     error ("two types specified in one empty declaration");
  3269.  
  3270.   if (warned != 1)
  3271.     {
  3272.       if (found_tag == 0)
  3273.     pedwarn ("empty declaration");
  3274.     }
  3275. }
  3276.  
  3277. /* Decode a "typename", such as "int **", returning a ..._TYPE node.  */
  3278.  
  3279. tree
  3280. groktypename (typename)
  3281.      tree typename;
  3282. {
  3283.   if (TREE_CODE (typename) != TREE_LIST)
  3284.     return typename;
  3285.   return grokdeclarator (TREE_VALUE (typename),
  3286.              TREE_PURPOSE (typename),
  3287.              TYPENAME, 0);
  3288. }
  3289.  
  3290. /* Return a PARM_DECL node for a given pair of specs and declarator.  */
  3291.  
  3292. tree
  3293. groktypename_in_parm_context (typename)
  3294.      tree typename;
  3295. {
  3296.   if (TREE_CODE (typename) != TREE_LIST)
  3297.     return typename;
  3298.   return grokdeclarator (TREE_VALUE (typename),
  3299.              TREE_PURPOSE (typename),
  3300.              PARM, 0);
  3301. }
  3302.  
  3303. /* Decode a declarator in an ordinary declaration or data definition.
  3304.    This is called as soon as the type information and variable name
  3305.    have been parsed, before parsing the initializer if any.
  3306.    Here we create the ..._DECL node, fill in its type,
  3307.    and put it on the list of decls for the current context.
  3308.    The ..._DECL node is returned as the value.
  3309.  
  3310.    Exception: for arrays where the length is not specified,
  3311.    the type is left null, to be filled in by `finish_decl'.
  3312.  
  3313.    Function definitions do not come here; they go to start_function
  3314.    instead.  However, external and forward declarations of functions
  3315.    do go through here.  Structure field declarations are done by
  3316.    grokfield and not through here.  */
  3317.  
  3318. /* Set this to zero to debug not using the temporary obstack
  3319.    to parse initializers.  */
  3320. int debug_temp_inits = 1;
  3321.  
  3322. tree
  3323. start_decl (declarator, declspecs, initialized)
  3324.      tree declarator, declspecs;
  3325.      int initialized;
  3326. {
  3327.   register tree decl = grokdeclarator (declarator, declspecs,
  3328.                        NORMAL, initialized);
  3329.   register tree tem;
  3330.   int init_written = initialized;
  3331.  
  3332.   /* The corresponding pop_obstacks is in finish_decl.  */
  3333.   push_obstacks_nochange ();
  3334.  
  3335.   if (initialized)
  3336.     /* Is it valid for this decl to have an initializer at all?
  3337.        If not, set INITIALIZED to zero, which will indirectly
  3338.        tell `finish_decl' to ignore the initializer once it is parsed.  */
  3339.     switch (TREE_CODE (decl))
  3340.       {
  3341.       case TYPE_DECL:
  3342.     /* typedef foo = bar  means give foo the same type as bar.
  3343.        We haven't parsed bar yet, so `finish_decl' will fix that up.
  3344.        Any other case of an initialization in a TYPE_DECL is an error.  */
  3345.     if (pedantic || list_length (declspecs) > 1)
  3346.       {
  3347.         error ("typedef `%s' is initialized",
  3348.            IDENTIFIER_POINTER (DECL_NAME (decl)));
  3349.         initialized = 0;
  3350.       }
  3351.     break;
  3352.  
  3353.       case FUNCTION_DECL:
  3354.     error ("function `%s' is initialized like a variable",
  3355.            IDENTIFIER_POINTER (DECL_NAME (decl)));
  3356.     initialized = 0;
  3357.     break;
  3358.  
  3359.       case PARM_DECL:
  3360.     /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE.  */
  3361.     error ("parameter `%s' is initialized",
  3362.            IDENTIFIER_POINTER (DECL_NAME (decl)));
  3363.     initialized = 0;
  3364.     break;
  3365.  
  3366.       default:
  3367.     /* Don't allow initializations for incomplete types
  3368.        except for arrays which might be completed by the initialization.  */
  3369.     if (TYPE_SIZE (TREE_TYPE (decl)) != 0)
  3370.       {
  3371.         /* A complete type is ok if size is fixed.  */
  3372.  
  3373.         if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
  3374.         || C_DECL_VARIABLE_SIZE (decl))
  3375.           {
  3376.         error ("variable-sized object may not be initialized");
  3377.         initialized = 0;
  3378.           }
  3379.       }
  3380.     else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
  3381.       {
  3382.         error ("variable `%s' has initializer but incomplete type",
  3383.            IDENTIFIER_POINTER (DECL_NAME (decl)));
  3384.         initialized = 0;
  3385.       }
  3386.     else if (TYPE_SIZE (TREE_TYPE (TREE_TYPE (decl))) == 0)
  3387.       {
  3388.         error ("elements of array `%s' have incomplete type",
  3389.            IDENTIFIER_POINTER (DECL_NAME (decl)));
  3390.         initialized = 0;
  3391.       }
  3392.       }
  3393.  
  3394.   if (initialized)
  3395.     {
  3396. #if 0  /* Seems redundant with grokdeclarator.  */
  3397.       if (current_binding_level != global_binding_level
  3398.       && DECL_EXTERNAL (decl)
  3399.       && TREE_CODE (decl) != FUNCTION_DECL)
  3400.     warning ("declaration of `%s' has `extern' and is initialized",
  3401.          IDENTIFIER_POINTER (DECL_NAME (decl)));
  3402. #endif
  3403.       DECL_EXTERNAL (decl) = 0;
  3404.       if (current_binding_level == global_binding_level)
  3405.     TREE_STATIC (decl) = 1;
  3406.  
  3407.       /* Tell `pushdecl' this is an initialized decl
  3408.      even though we don't yet have the initializer expression.
  3409.      Also tell `finish_decl' it may store the real initializer.  */
  3410.       DECL_INITIAL (decl) = error_mark_node;
  3411.     }
  3412.  
  3413.   /* If this is a function declaration, write a record describing it to the
  3414.      prototypes file (if requested).  */
  3415.  
  3416.   if (TREE_CODE (decl) == FUNCTION_DECL)
  3417.     gen_aux_info_record (decl, 0, 0, TYPE_ARG_TYPES (TREE_TYPE (decl)) != 0);
  3418.  
  3419.   /* Add this decl to the current binding level.
  3420.      TEM may equal DECL or it may be a previous decl of the same name.  */
  3421.   tem = pushdecl (decl);
  3422.  
  3423.   /* For C and Obective-C, we by default put things in .common when
  3424.      possible.  */
  3425.   DECL_COMMON (tem) = 1;
  3426.  
  3427.   /* For a local variable, define the RTL now.  */
  3428.   if (current_binding_level != global_binding_level
  3429.       /* But not if this is a duplicate decl
  3430.      and we preserved the rtl from the previous one
  3431.      (which may or may not happen).  */
  3432.       && DECL_RTL (tem) == 0)
  3433.     {
  3434.       if (TYPE_SIZE (TREE_TYPE (tem)) != 0)
  3435.     expand_decl (tem);
  3436.       else if (TREE_CODE (TREE_TYPE (tem)) == ARRAY_TYPE
  3437.            && DECL_INITIAL (tem) != 0)
  3438.     expand_decl (tem);
  3439.     }
  3440.  
  3441.   if (init_written)
  3442.     {
  3443.       /* When parsing and digesting the initializer,
  3444.      use temporary storage.  Do this even if we will ignore the value.  */
  3445.       if (current_binding_level == global_binding_level && debug_temp_inits)
  3446.     temporary_allocation ();
  3447.     }
  3448.  
  3449.   return tem;
  3450. }
  3451.  
  3452. /* Finish processing of a declaration;
  3453.    install its initial value.
  3454.    If the length of an array type is not known before,
  3455.    it must be determined now, from the initial value, or it is an error.  */
  3456.  
  3457. void
  3458. finish_decl (decl, init, asmspec_tree)
  3459.      tree decl, init;
  3460.      tree asmspec_tree;
  3461. {
  3462.   register tree type = TREE_TYPE (decl);
  3463.   int was_incomplete = (DECL_SIZE (decl) == 0);
  3464.   int temporary = allocation_temporary_p ();
  3465.   char *asmspec = 0;
  3466.  
  3467.   /* If a name was specified, get the string.   */
  3468.   if (asmspec_tree)
  3469.     asmspec = TREE_STRING_POINTER (asmspec_tree);
  3470.  
  3471.   /* If `start_decl' didn't like having an initialization, ignore it now.  */
  3472.  
  3473.   if (init != 0 && DECL_INITIAL (decl) == 0)
  3474.     init = 0;
  3475.   /* Don't crash if parm is initialized.  */
  3476.   if (TREE_CODE (decl) == PARM_DECL)
  3477.     init = 0;
  3478.  
  3479.   if (ITERATOR_P (decl))
  3480.     {
  3481.       if (init == 0)
  3482.     error_with_decl (decl, "iterator has no initial value");
  3483.       else
  3484.     init = save_expr (init);
  3485.     }
  3486.  
  3487.   if (init)
  3488.     {
  3489.       if (TREE_CODE (decl) != TYPE_DECL)
  3490.     store_init_value (decl, init);
  3491.       else
  3492.     {
  3493.       /* typedef foo = bar; store the type of bar as the type of foo.  */
  3494.       TREE_TYPE (decl) = TREE_TYPE (init);
  3495.       DECL_INITIAL (decl) = init = 0;
  3496.     }
  3497.     }
  3498.  
  3499.   /* Pop back to the obstack that is current for this binding level.
  3500.      This is because MAXINDEX, rtl, etc. to be made below
  3501.      must go in the permanent obstack.  But don't discard the
  3502.      temporary data yet.  */
  3503.   pop_obstacks ();
  3504. #if 0 /* pop_obstacks was near the end; this is what was here.  */
  3505.   if (current_binding_level == global_binding_level && temporary)
  3506.     end_temporary_allocation ();
  3507. #endif
  3508.  
  3509.   /* Deduce size of array from initialization, if not already known */
  3510.  
  3511.   if (TREE_CODE (type) == ARRAY_TYPE
  3512.       && TYPE_DOMAIN (type) == 0
  3513.       && TREE_CODE (decl) != TYPE_DECL)
  3514.     {
  3515.       int do_default
  3516.     = (TREE_STATIC (decl)
  3517.        /* Even if pedantic, an external linkage array
  3518.           may have incomplete type at first.  */
  3519.        ? pedantic && !TREE_PUBLIC (decl)
  3520.        : !DECL_EXTERNAL (decl));
  3521.       int failure
  3522.     = complete_array_type (type, DECL_INITIAL (decl), do_default);
  3523.  
  3524.       /* Get the completed type made by complete_array_type.  */
  3525.       type = TREE_TYPE (decl);
  3526.  
  3527.       if (failure == 1)
  3528.     error_with_decl (decl, "initializer fails to determine size of `%s'");
  3529.  
  3530.       if (failure == 2)
  3531.     {
  3532.       if (do_default)
  3533.         error_with_decl (decl, "array size missing in `%s'");
  3534.       /* If a `static' var's size isn't known,
  3535.          make it extern as well as static, so it does not get
  3536.          allocated.
  3537.          If it is not `static', then do not mark extern;
  3538.          finish_incomplete_decl will give it a default size
  3539.          and it will get allocated.  */
  3540.       else if (!pedantic && TREE_STATIC (decl) && ! TREE_PUBLIC (decl))
  3541.         DECL_EXTERNAL (decl) = 1;
  3542.     }
  3543.  
  3544.       /* TYPE_MAX_VALUE is always one less than the number of elements
  3545.      in the array, because we start counting at zero.  Therefore,
  3546.      warn only if the value is less than zero.  */
  3547.       if (pedantic && TYPE_DOMAIN (type) != 0
  3548.       && tree_int_cst_sgn (TYPE_MAX_VALUE (TYPE_DOMAIN (type))) < 0)
  3549.     error_with_decl (decl, "zero or negative size array `%s'");
  3550.  
  3551.       layout_decl (decl, 0);
  3552.     }
  3553.  
  3554.   if (TREE_CODE (decl) == VAR_DECL)
  3555.     {
  3556.       if (DECL_SIZE (decl) == 0
  3557.       && TYPE_SIZE (TREE_TYPE (decl)) != 0)
  3558.     layout_decl (decl, 0);
  3559.  
  3560.       if (DECL_SIZE (decl) == 0
  3561.       && (TREE_STATIC (decl)
  3562.           ?
  3563.         /* A static variable with an incomplete type
  3564.            is an error if it is initialized.
  3565.            Also if it is not file scope.
  3566.            Otherwise, let it through, but if it is not `extern'
  3567.            then it may cause an error message later.  */
  3568.         (DECL_INITIAL (decl) != 0
  3569.          || current_binding_level != global_binding_level)
  3570.           :
  3571.         /* An automatic variable with an incomplete type
  3572.            is an error.  */
  3573.         !DECL_EXTERNAL (decl)))
  3574.     {
  3575.       error_with_decl (decl, "storage size of `%s' isn't known");
  3576.       TREE_TYPE (decl) = error_mark_node;
  3577.     }
  3578.  
  3579.       if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
  3580.       && DECL_SIZE (decl) != 0)
  3581.     {
  3582.       if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
  3583.         constant_expression_warning (DECL_SIZE (decl));
  3584.       else
  3585.         error_with_decl (decl, "storage size of `%s' isn't constant");
  3586.     }
  3587.     }
  3588.  
  3589.   /* If this is a function and an assembler name is specified, it isn't
  3590.      builtin any more.  Also reset DECL_RTL so we can give it its new
  3591.      name.  */
  3592.   if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
  3593.       {
  3594.     DECL_BUILT_IN (decl) = 0;
  3595.     DECL_RTL (decl) = 0;
  3596.       }
  3597.  
  3598.   /* Output the assembler code and/or RTL code for variables and functions,
  3599.      unless the type is an undefined structure or union.
  3600.      If not, it will get done when the type is completed.  */
  3601.  
  3602.   if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
  3603.     {
  3604.       if ((flag_traditional || TREE_PERMANENT (decl))
  3605.       && allocation_temporary_p ())
  3606.     {
  3607.       push_obstacks_nochange ();
  3608.       end_temporary_allocation ();
  3609.       /* This is a no-op in c-lang.c or something real in objc-actions.c.  */
  3610.       maybe_objc_check_decl (decl);
  3611.       rest_of_decl_compilation (decl, asmspec,
  3612.                     current_binding_level == global_binding_level,
  3613.                     0);
  3614.       pop_obstacks ();
  3615.     }
  3616.       else
  3617.     {
  3618.       /* This is a no-op in c-lang.c or something real in objc-actions.c.  */
  3619.       maybe_objc_check_decl (decl);
  3620.       rest_of_decl_compilation (decl, asmspec,
  3621.                     current_binding_level == global_binding_level,
  3622.                     0);
  3623.     }
  3624.       if (current_binding_level != global_binding_level)
  3625.     {
  3626.       /* Recompute the RTL of a local array now
  3627.          if it used to be an incomplete type.  */
  3628.       if (was_incomplete
  3629.           && ! TREE_STATIC (decl) && ! DECL_EXTERNAL (decl))
  3630.         {
  3631.           /* If we used it already as memory, it must stay in memory.  */
  3632.           TREE_ADDRESSABLE (decl) = TREE_USED (decl);
  3633.           /* If it's still incomplete now, no init will save it.  */
  3634.           if (DECL_SIZE (decl) == 0)
  3635.         DECL_INITIAL (decl) = 0;
  3636.           expand_decl (decl);
  3637.         }
  3638.       /* Compute and store the initial value.  */
  3639.       if (TREE_CODE (decl) != FUNCTION_DECL)
  3640.         expand_decl_init (decl);
  3641.     }
  3642.     }
  3643.  
  3644.   if (TREE_CODE (decl) == TYPE_DECL)
  3645.     {
  3646.       /* This is a no-op in c-lang.c or something real in objc-actions.c.  */
  3647.       maybe_objc_check_decl (decl);
  3648.       rest_of_decl_compilation (decl, NULL_PTR,
  3649.                 current_binding_level == global_binding_level,
  3650.                 0);
  3651.     }
  3652.  
  3653.   /* ??? After 2.3, test (init != 0) instead of TREE_CODE.  */
  3654.   /* This test used to include TREE_PERMANENT, however, we have the same
  3655.      problem with initializers at the function level.  Such initializers get
  3656.      saved until the end of the function on the momentary_obstack.  */
  3657.   if (!(TREE_CODE (decl) == FUNCTION_DECL && DECL_INLINE (decl))
  3658.       && temporary
  3659.       /* DECL_INITIAL is not defined in PARM_DECLs, since it shares
  3660.      space with DECL_ARG_TYPE.  */
  3661.       && TREE_CODE (decl) != PARM_DECL)
  3662.     {
  3663.       /* We need to remember that this array HAD an initialization,
  3664.      but discard the actual temporary nodes,
  3665.      since we can't have a permanent node keep pointing to them.  */
  3666.       /* We make an exception for inline functions, since it's
  3667.      normal for a local extern redeclaration of an inline function
  3668.      to have a copy of the top-level decl's DECL_INLINE.  */
  3669.       if (DECL_INITIAL (decl) != 0 && DECL_INITIAL (decl) != error_mark_node)
  3670.     {
  3671.       /* If this is a const variable, then preserve the
  3672.          initializer instead of discarding it so that we can optimize
  3673.          references to it.  */
  3674.       /* This test used to include TREE_STATIC, but this won't be set
  3675.          for function level initializers.  */
  3676.       if (TREE_READONLY (decl))
  3677.         {
  3678.           preserve_initializer ();
  3679.           /* Hack?  Set the permanent bit for something that is permanent,
  3680.          but not on the permenent obstack, so as to convince
  3681.          output_constant_def to make its rtl on the permanent
  3682.          obstack.  */
  3683.           TREE_PERMANENT (DECL_INITIAL (decl)) = 1;
  3684.  
  3685.           /* The initializer and DECL must have the same (or equivalent
  3686.          types), but if the initializer is a STRING_CST, its type
  3687.          might not be on the right obstack, so copy the type
  3688.          of DECL.  */
  3689.           TREE_TYPE (DECL_INITIAL (decl)) = type;
  3690.         }
  3691.       else
  3692.         DECL_INITIAL (decl) = error_mark_node;
  3693.     }
  3694.     }
  3695.  
  3696.   /* If requested, warn about definitions of large data objects.  */
  3697.  
  3698.   if (warn_larger_than
  3699.       && (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL)
  3700.       && !DECL_EXTERNAL (decl))
  3701.     {
  3702.       register tree decl_size = DECL_SIZE (decl);
  3703.  
  3704.       if (decl_size && TREE_CODE (decl_size) == INTEGER_CST)
  3705.     {
  3706.        unsigned units = TREE_INT_CST_LOW(decl_size) / BITS_PER_UNIT;
  3707.  
  3708.       if (units > larger_than_size)
  3709.         warning_with_decl (decl, "size of `%s' is %u bytes", units);
  3710.     }
  3711.     }
  3712.  
  3713. #if 0
  3714.   /* Resume permanent allocation, if not within a function.  */
  3715.   /* The corresponding push_obstacks_nochange is in start_decl,
  3716.      and in push_parm_decl and in grokfield.  */
  3717.   pop_obstacks ();
  3718. #endif
  3719.  
  3720.   /* If we have gone back from temporary to permanent allocation,
  3721.      actually free the temporary space that we no longer need.  */
  3722.   if (temporary && !allocation_temporary_p ())
  3723.     permanent_allocation (0);
  3724.  
  3725.   /* At the end of a declaration, throw away any variable type sizes
  3726.      of types defined inside that declaration.  There is no use
  3727.      computing them in the following function definition.  */
  3728.   if (current_binding_level == global_binding_level)
  3729.     get_pending_sizes ();
  3730. }
  3731.  
  3732. /* If DECL has a cleanup, build and return that cleanup here.
  3733.    This is a callback called by expand_expr.  */
  3734.  
  3735. tree
  3736. maybe_build_cleanup (decl)
  3737.      tree decl;
  3738. {
  3739.   /* There are no cleanups in C.  */
  3740.   return NULL_TREE;
  3741. }
  3742.  
  3743. /* Given a parsed parameter declaration,
  3744.    decode it into a PARM_DECL and push that on the current binding level.
  3745.    Also, for the sake of forward parm decls,
  3746.    record the given order of parms in `parm_order'.  */
  3747.  
  3748. void
  3749. push_parm_decl (parm)
  3750.      tree parm;
  3751. {
  3752.   tree decl;
  3753.   int old_immediate_size_expand = immediate_size_expand;
  3754.   /* Don't try computing parm sizes now -- wait till fn is called.  */
  3755.   immediate_size_expand = 0;
  3756.  
  3757.   /* The corresponding pop_obstacks is in finish_decl.  */
  3758.   push_obstacks_nochange ();
  3759.  
  3760.   decl = grokdeclarator (TREE_VALUE (parm), TREE_PURPOSE (parm), PARM, 0);
  3761.  
  3762. #if 0
  3763.   if (DECL_NAME (decl))
  3764.     {
  3765.       tree olddecl;
  3766.       olddecl = lookup_name (DECL_NAME (decl));
  3767.       if (pedantic && olddecl != 0 && TREE_CODE (olddecl) == TYPE_DECL)
  3768.     pedwarn_with_decl (decl, "ANSI C forbids parameter `%s' shadowing typedef");
  3769.     }
  3770. #endif
  3771.  
  3772.   decl = pushdecl (decl);
  3773.  
  3774.   immediate_size_expand = old_immediate_size_expand;
  3775.  
  3776.   current_binding_level->parm_order
  3777.     = tree_cons (NULL_TREE, decl, current_binding_level->parm_order);
  3778.  
  3779.   /* Add this decl to the current binding level.  */
  3780.   finish_decl (decl, NULL_TREE, NULL_TREE);
  3781. }
  3782.  
  3783. /* Clear the given order of parms in `parm_order'.
  3784.    Used at start of parm list,
  3785.    and also at semicolon terminating forward decls.  */
  3786.  
  3787. void
  3788. clear_parm_order ()
  3789. {
  3790.   current_binding_level->parm_order = NULL_TREE;
  3791. }
  3792.  
  3793. /* Make TYPE a complete type based on INITIAL_VALUE.
  3794.    Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
  3795.    2 if there was no information (in which case assume 1 if DO_DEFAULT).  */
  3796.  
  3797. int
  3798. complete_array_type (type, initial_value, do_default)
  3799.      tree type;
  3800.      tree initial_value;
  3801.      int do_default;
  3802. {
  3803.   register tree maxindex = NULL_TREE;
  3804.   int value = 0;
  3805.  
  3806.   if (initial_value)
  3807.     {
  3808.       /* Note MAXINDEX  is really the maximum index,
  3809.      one less than the size.  */
  3810.       if (TREE_CODE (initial_value) == STRING_CST)
  3811.     {
  3812.       int eltsize
  3813.         = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value)));
  3814.       maxindex = build_int_2 ((TREE_STRING_LENGTH (initial_value)
  3815.                    / eltsize) - 1, 0);
  3816.     }
  3817.       else if (TREE_CODE (initial_value) == CONSTRUCTOR)
  3818.     {
  3819.       tree elts = CONSTRUCTOR_ELTS (initial_value);
  3820.       maxindex = size_binop (MINUS_EXPR, integer_zero_node, size_one_node);
  3821.       for (; elts; elts = TREE_CHAIN (elts))
  3822.         {
  3823.           if (TREE_PURPOSE (elts))
  3824.         maxindex = TREE_PURPOSE (elts);
  3825.           else
  3826.         maxindex = size_binop (PLUS_EXPR, maxindex, size_one_node);
  3827.         }
  3828.       maxindex = copy_node (maxindex);
  3829.     }
  3830.       else
  3831.     {
  3832.       /* Make an error message unless that happened already.  */
  3833.       if (initial_value != error_mark_node)
  3834.         value = 1;
  3835.  
  3836.       /* Prevent further error messages.  */
  3837.       maxindex = build_int_2 (0, 0);
  3838.     }
  3839.     }
  3840.  
  3841.   if (!maxindex)
  3842.     {
  3843.       if (do_default)
  3844.     maxindex = build_int_2 (0, 0);
  3845.       value = 2;
  3846.     }
  3847.  
  3848.   if (maxindex)
  3849.     {
  3850.       TYPE_DOMAIN (type) = build_index_type (maxindex);
  3851.       if (!TREE_TYPE (maxindex))
  3852.     TREE_TYPE (maxindex) = TYPE_DOMAIN (type);
  3853. #if 0 /* I took out this change
  3854.      together with the change in build_array_type. --rms  */
  3855.       change_main_variant (type,
  3856.                build_array_type (TREE_TYPE (type),
  3857.                          TYPE_DOMAIN (type)));
  3858. #endif
  3859.     }
  3860.  
  3861.   /* Lay out the type now that we can get the real answer.  */
  3862.  
  3863.   layout_type (type);
  3864.  
  3865.   return value;
  3866. }
  3867.  
  3868. /* Given declspecs and a declarator,
  3869.    determine the name and type of the object declared
  3870.    and construct a ..._DECL node for it.
  3871.    (In one case we can return a ..._TYPE node instead.
  3872.     For invalid input we sometimes return 0.)
  3873.  
  3874.    DECLSPECS is a chain of tree_list nodes whose value fields
  3875.     are the storage classes and type specifiers.
  3876.  
  3877.    DECL_CONTEXT says which syntactic context this declaration is in:
  3878.      NORMAL for most contexts.  Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
  3879.      FUNCDEF for a function definition.  Like NORMAL but a few different
  3880.       error messages in each case.  Return value may be zero meaning
  3881.       this definition is too screwy to try to parse.
  3882.      PARM for a parameter declaration (either within a function prototype
  3883.       or before a function body).  Make a PARM_DECL, or return void_type_node.
  3884.      TYPENAME if for a typename (in a cast or sizeof).
  3885.       Don't make a DECL node; just return the ..._TYPE node.
  3886.      FIELD for a struct or union field; make a FIELD_DECL.
  3887.      BITFIELD for a field with specified width.
  3888.    INITIALIZED is 1 if the decl has an initializer.
  3889.  
  3890.    In the TYPENAME case, DECLARATOR is really an absolute declarator.
  3891.    It may also be so in the PARM case, for a prototype where the
  3892.    argument type is specified but not the name.
  3893.  
  3894.    This function is where the complicated C meanings of `static'
  3895.    and `extern' are interpreted.  */
  3896.  
  3897. static tree
  3898. grokdeclarator (declarator, declspecs, decl_context, initialized)
  3899.      tree declspecs;
  3900.      tree declarator;
  3901.      enum decl_context decl_context;
  3902.      int initialized;
  3903. {
  3904.   int specbits = 0;
  3905.   tree spec;
  3906.   tree type = NULL_TREE;
  3907.   int longlong = 0;
  3908.   int constp;
  3909.   int volatilep;
  3910.   int inlinep;
  3911.   int explicit_int = 0;
  3912.   int explicit_char = 0;
  3913.   int defaulted_int = 0;
  3914.   tree typedef_decl = 0;
  3915.   char *name;
  3916.   tree typedef_type = 0;
  3917.   int funcdef_flag = 0;
  3918.   enum tree_code innermost_code = ERROR_MARK;
  3919.   int bitfield = 0;
  3920.   int size_varies = 0;
  3921.  
  3922.   if (decl_context == BITFIELD)
  3923.     bitfield = 1, decl_context = FIELD;
  3924.  
  3925.   if (decl_context == FUNCDEF)
  3926.     funcdef_flag = 1, decl_context = NORMAL;
  3927.  
  3928.   push_obstacks_nochange ();
  3929.  
  3930.   if (flag_traditional && allocation_temporary_p ())
  3931.     end_temporary_allocation ();
  3932.  
  3933.   /* Look inside a declarator for the name being declared
  3934.      and get it as a string, for an error message.  */
  3935.   {
  3936.     register tree decl = declarator;
  3937.     name = 0;
  3938.  
  3939.     while (decl)
  3940.       switch (TREE_CODE (decl))
  3941.     {
  3942.     case ARRAY_REF:
  3943.     case INDIRECT_REF:
  3944.     case CALL_EXPR:
  3945.       innermost_code = TREE_CODE (decl);
  3946.       decl = TREE_OPERAND (decl, 0);
  3947.       break;
  3948.  
  3949.     case IDENTIFIER_NODE:
  3950.       name = IDENTIFIER_POINTER (decl);
  3951.       decl = 0;
  3952.       break;
  3953.  
  3954.     default:
  3955.       abort ();
  3956.     }
  3957.     if (name == 0)
  3958.       name = "type name";
  3959.   }
  3960.  
  3961.   /* A function definition's declarator must have the form of
  3962.      a function declarator.  */
  3963.  
  3964.   if (funcdef_flag && innermost_code != CALL_EXPR)
  3965.     return 0;
  3966.  
  3967.   /* Anything declared one level down from the top level
  3968.      must be one of the parameters of a function
  3969.      (because the body is at least two levels down).  */
  3970.  
  3971.   /* If this looks like a function definition, make it one,
  3972.      even if it occurs where parms are expected.
  3973.      Then store_parm_decls will reject it and not use it as a parm.  */
  3974.   if (decl_context == NORMAL && !funcdef_flag
  3975.       && current_binding_level->level_chain == global_binding_level)
  3976.     decl_context = PARM;
  3977.  
  3978.   /* Look through the decl specs and record which ones appear.
  3979.      Some typespecs are defined as built-in typenames.
  3980.      Others, the ones that are modifiers of other types,
  3981.      are represented by bits in SPECBITS: set the bits for
  3982.      the modifiers that appear.  Storage class keywords are also in SPECBITS.
  3983.  
  3984.      If there is a typedef name or a type, store the type in TYPE.
  3985.      This includes builtin typedefs such as `int'.
  3986.  
  3987.      Set EXPLICIT_INT or EXPLICIT_CHAR if the type is `int' or `char'
  3988.      and did not come from a user typedef.
  3989.  
  3990.      Set LONGLONG if `long' is mentioned twice.  */
  3991.  
  3992.   for (spec = declspecs; spec; spec = TREE_CHAIN (spec))
  3993.     {
  3994.       register int i;
  3995.       register tree id = TREE_VALUE (spec);
  3996.  
  3997.       if (id == ridpointers[(int) RID_INT])
  3998.     explicit_int = 1;
  3999.       if (id == ridpointers[(int) RID_CHAR])
  4000.     explicit_char = 1;
  4001.  
  4002.       if (TREE_CODE (id) == IDENTIFIER_NODE)
  4003.     for (i = (int) RID_FIRST_MODIFIER; i < (int) RID_MAX; i++)
  4004.       {
  4005.         if (ridpointers[i] == id)
  4006.           {
  4007.         if (i == (int) RID_LONG && specbits & (1<<i))
  4008.           {
  4009.             if (longlong)
  4010.               error ("`long long long' is too long for GCC");
  4011.             else
  4012.               {
  4013.             if (pedantic && ! in_system_header)
  4014.               pedwarn ("ANSI C does not support `long long'");
  4015.             longlong = 1;
  4016.               }
  4017.           }
  4018.         else if (specbits & (1 << i))
  4019.           pedwarn ("duplicate `%s'", IDENTIFIER_POINTER (id));
  4020.         specbits |= 1 << i;
  4021.         goto found;
  4022.           }
  4023.       }
  4024.       if (type)
  4025.     error ("two or more data types in declaration of `%s'", name);
  4026.       /* Actual typedefs come to us as TYPE_DECL nodes.  */
  4027.       else if (TREE_CODE (id) == TYPE_DECL)
  4028.     {
  4029.       type = TREE_TYPE (id);
  4030.       typedef_decl = id;
  4031.     }
  4032.       /* Built-in types come as identifiers.  */
  4033.       else if (TREE_CODE (id) == IDENTIFIER_NODE)
  4034.     {
  4035.       register tree t = lookup_name (id);
  4036.       if (TREE_TYPE (t) == error_mark_node)
  4037.         ;
  4038.       else if (!t || TREE_CODE (t) != TYPE_DECL)
  4039.         error ("`%s' fails to be a typedef or built in type",
  4040.            IDENTIFIER_POINTER (id));
  4041.       else
  4042.         {
  4043.           type = TREE_TYPE (t);
  4044.           typedef_decl = t;
  4045.         }
  4046.     }
  4047.       else if (TREE_CODE (id) != ERROR_MARK)
  4048.     type = id;
  4049.  
  4050.     found: {}
  4051.     }
  4052.  
  4053.   typedef_type = type;
  4054.   if (type)
  4055.     size_varies = C_TYPE_VARIABLE_SIZE (type);
  4056.  
  4057.   /* No type at all: default to `int', and set DEFAULTED_INT
  4058.      because it was not a user-defined typedef.  */
  4059.  
  4060.   if (type == 0)
  4061.     {
  4062.       if (funcdef_flag && warn_return_type
  4063.       && ! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
  4064.                 | (1 << (int) RID_SIGNED) | (1 << (int) RID_UNSIGNED))))
  4065.     warn_about_return_type = 1;
  4066.       defaulted_int = 1;
  4067.       type = integer_type_node;
  4068.     }
  4069.  
  4070.   /* Now process the modifiers that were specified
  4071.      and check for invalid combinations.  */
  4072.  
  4073.   /* Long double is a special combination.  */
  4074.  
  4075.   if ((specbits & 1 << (int) RID_LONG)
  4076.       && TYPE_MAIN_VARIANT (type) == double_type_node)
  4077.     {
  4078.       specbits &= ~ (1 << (int) RID_LONG);
  4079.       type = long_double_type_node;
  4080.     }
  4081.  
  4082.   /* Check all other uses of type modifiers.  */
  4083.  
  4084.   if (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
  4085.           | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED)))
  4086.     {
  4087.       int ok = 0;
  4088.  
  4089.       if (TREE_CODE (type) != INTEGER_TYPE)
  4090.     error ("long, short, signed or unsigned invalid for `%s'", name);
  4091.       else if ((specbits & 1 << (int) RID_LONG)
  4092.            && (specbits & 1 << (int) RID_SHORT))
  4093.     error ("long and short specified together for `%s'", name);
  4094.       else if (((specbits & 1 << (int) RID_LONG)
  4095.         || (specbits & 1 << (int) RID_SHORT))
  4096.            && explicit_char)
  4097.     error ("long or short specified with char for `%s'", name);
  4098.       else if (((specbits & 1 << (int) RID_LONG)
  4099.         || (specbits & 1 << (int) RID_SHORT))
  4100.            && TREE_CODE (type) == REAL_TYPE)
  4101.     error ("long or short specified with floating type for `%s'", name);
  4102.       else if ((specbits & 1 << (int) RID_SIGNED)
  4103.            && (specbits & 1 << (int) RID_UNSIGNED))
  4104.     error ("signed and unsigned given together for `%s'", name);
  4105.       else
  4106.     {
  4107.       ok = 1;
  4108.       if (!explicit_int && !defaulted_int && !explicit_char && pedantic)
  4109.         {
  4110.           pedwarn ("long, short, signed or unsigned used invalidly for `%s'",
  4111.                name);
  4112.           if (flag_pedantic_errors)
  4113.         ok = 0;
  4114.         }
  4115.     }
  4116.  
  4117.       /* Discard the type modifiers if they are invalid.  */
  4118.       if (! ok)
  4119.     {
  4120.       specbits &= ~((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
  4121.             | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED));
  4122.       longlong = 0;
  4123.     }
  4124.     }
  4125.  
  4126.   if ((specbits & (1 << (int) RID_COMPLEX))
  4127.       && TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
  4128.     {
  4129.       error ("complex invalid for `%s'", name);
  4130.       specbits &= ~ (1 << (int) RID_COMPLEX);
  4131.     }
  4132.  
  4133.   /* Decide whether an integer type is signed or not.
  4134.      Optionally treat bitfields as signed by default.  */
  4135.   if (specbits & 1 << (int) RID_UNSIGNED
  4136.       /* Traditionally, all bitfields are unsigned.  */
  4137.       || (bitfield && flag_traditional
  4138.       && (! explicit_flag_signed_bitfields || !flag_signed_bitfields))
  4139.       || (bitfield && ! flag_signed_bitfields
  4140.       && (explicit_int || defaulted_int || explicit_char
  4141.           /* A typedef for plain `int' without `signed'
  4142.          can be controlled just like plain `int'.  */
  4143.           || ! (typedef_decl != 0
  4144.             && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
  4145.       && TREE_CODE (type) != ENUMERAL_TYPE
  4146.       && !(specbits & 1 << (int) RID_SIGNED)))
  4147.     {
  4148.       if (longlong)
  4149.     type = long_long_unsigned_type_node;
  4150.       else if (specbits & 1 << (int) RID_LONG)
  4151.     type = long_unsigned_type_node;
  4152.       else if (specbits & 1 << (int) RID_SHORT)
  4153.     type = short_unsigned_type_node;
  4154.       else if (type == char_type_node)
  4155.     type = unsigned_char_type_node;
  4156.       else if (typedef_decl)
  4157.     type = unsigned_type (type);
  4158.       else
  4159.     type = unsigned_type_node;
  4160.     }
  4161.   else if ((specbits & 1 << (int) RID_SIGNED)
  4162.        && type == char_type_node)
  4163.     type = signed_char_type_node;
  4164.   else if (longlong)
  4165.     type = long_long_integer_type_node;
  4166.   else if (specbits & 1 << (int) RID_LONG)
  4167.     type = long_integer_type_node;
  4168.   else if (specbits & 1 << (int) RID_SHORT)
  4169.     type = short_integer_type_node;
  4170.  
  4171.   if (specbits & 1 << (int) RID_COMPLEX)
  4172.     {
  4173.       /* If we just have "complex", it is equivalent to
  4174.      "complex double", but if any modifiers at all are specified it is
  4175.      the complex form of TYPE.  E.g, "complex short" is
  4176.      "complex short int".  */
  4177.  
  4178.       if (defaulted_int && ! longlong
  4179.       && ! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
  4180.                 | (1 << (int) RID_SIGNED)
  4181.                 | (1 << (int) RID_UNSIGNED))))
  4182.     type = complex_double_type_node;
  4183.       else if (type == integer_type_node)
  4184.     type = complex_integer_type_node;
  4185.       else if (type == float_type_node)
  4186.     type = complex_float_type_node;
  4187.       else if (type == double_type_node)
  4188.     type = complex_double_type_node;
  4189.       else if (type == long_double_type_node)
  4190.     type = complex_long_double_type_node;
  4191.       else
  4192.     type = build_complex_type (type);
  4193.     }
  4194.  
  4195.   /* Set CONSTP if this declaration is `const', whether by
  4196.      explicit specification or via a typedef.
  4197.      Likewise for VOLATILEP.  */
  4198.  
  4199.   constp = !! (specbits & 1 << (int) RID_CONST) + TYPE_READONLY (type);
  4200.   volatilep = !! (specbits & 1 << (int) RID_VOLATILE) + TYPE_VOLATILE (type);
  4201.   inlinep = !! (specbits & (1 << (int) RID_INLINE));
  4202.   if (constp > 1)
  4203.     pedwarn ("duplicate `const'");
  4204.   if (volatilep > 1)
  4205.     pedwarn ("duplicate `volatile'");
  4206.   if (! flag_gen_aux_info && (TYPE_READONLY (type) || TYPE_VOLATILE (type)))
  4207.     type = TYPE_MAIN_VARIANT (type);
  4208.  
  4209.   /* Warn if two storage classes are given. Default to `auto'.  */
  4210.  
  4211.   {
  4212.     int nclasses = 0;
  4213.  
  4214.     if (specbits & 1 << (int) RID_AUTO) nclasses++;
  4215.     if (specbits & 1 << (int) RID_STATIC) nclasses++;
  4216.     if (specbits & 1 << (int) RID_EXTERN) nclasses++;
  4217.     if (specbits & 1 << (int) RID_REGISTER) nclasses++;
  4218.     if (specbits & 1 << (int) RID_TYPEDEF) nclasses++;
  4219.     if (specbits & 1 << (int) RID_ITERATOR) nclasses++;
  4220.  
  4221.     /* Warn about storage classes that are invalid for certain
  4222.        kinds of declarations (parameters, typenames, etc.).  */
  4223.  
  4224.     if (nclasses > 1)
  4225.       error ("multiple storage classes in declaration of `%s'", name);
  4226.     else if (funcdef_flag
  4227.          && (specbits
  4228.          & ((1 << (int) RID_REGISTER)
  4229.             | (1 << (int) RID_AUTO)
  4230.             | (1 << (int) RID_TYPEDEF))))
  4231.       {
  4232.     if (specbits & 1 << (int) RID_AUTO
  4233.         && (pedantic || current_binding_level == global_binding_level))
  4234.       pedwarn ("function definition declared `auto'");
  4235.     if (specbits & 1 << (int) RID_REGISTER)
  4236.       error ("function definition declared `register'");
  4237.     if (specbits & 1 << (int) RID_TYPEDEF)
  4238.       error ("function definition declared `typedef'");
  4239.     specbits &= ~ ((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
  4240.                | (1 << (int) RID_AUTO));
  4241.       }
  4242.     else if (decl_context != NORMAL && nclasses > 0)
  4243.       {
  4244.     if (decl_context == PARM && specbits & 1 << (int) RID_REGISTER)
  4245.       ;
  4246.     else
  4247.       {
  4248.         error ((decl_context == FIELD
  4249.             ? "storage class specified for structure field `%s'"
  4250.             : (decl_context == PARM
  4251.                ? "storage class specified for parameter `%s'"
  4252.                : "storage class specified for typename")),
  4253.            name);
  4254.         specbits &= ~ ((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
  4255.                | (1 << (int) RID_AUTO) | (1 << (int) RID_STATIC)
  4256.                | (1 << (int) RID_EXTERN));
  4257.       }
  4258.       }
  4259.     else if (specbits & 1 << (int) RID_EXTERN && initialized && ! funcdef_flag)
  4260.       {
  4261.     /* `extern' with initialization is invalid if not at top level.  */
  4262.     if (current_binding_level == global_binding_level)
  4263.       warning ("`%s' initialized and declared `extern'", name);
  4264.     else
  4265.       error ("`%s' has both `extern' and initializer", name);
  4266.       }
  4267.     else if (specbits & 1 << (int) RID_EXTERN && funcdef_flag
  4268.          && current_binding_level != global_binding_level)
  4269.       error ("nested function `%s' declared `extern'", name);
  4270.     else if (current_binding_level == global_binding_level
  4271.          && specbits & (1 << (int) RID_AUTO))
  4272.       error ("top-level declaration of `%s' specifies `auto'", name);
  4273.     else if ((specbits & 1 << (int) RID_ITERATOR)
  4274.          && TREE_CODE (declarator) != IDENTIFIER_NODE)
  4275.       {
  4276.     error ("iterator `%s' has derived type", name);
  4277.     type = error_mark_node;
  4278.       }
  4279.     else if ((specbits & 1 << (int) RID_ITERATOR)
  4280.          && TREE_CODE (type) != INTEGER_TYPE)
  4281.       {
  4282.     error ("iterator `%s' has noninteger type", name);
  4283.     type = error_mark_node;
  4284.       }
  4285.   }
  4286.  
  4287.   /* Now figure out the structure of the declarator proper.
  4288.      Descend through it, creating more complex types, until we reach
  4289.      the declared identifier (or NULL_TREE, in an absolute declarator).  */
  4290.  
  4291.   while (declarator && TREE_CODE (declarator) != IDENTIFIER_NODE)
  4292.     {
  4293.       if (type == error_mark_node)
  4294.     {
  4295.       declarator = TREE_OPERAND (declarator, 0);
  4296.       continue;
  4297.     }
  4298.  
  4299.       /* Each level of DECLARATOR is either an ARRAY_REF (for ...[..]),
  4300.      an INDIRECT_REF (for *...),
  4301.      a CALL_EXPR (for ...(...)),
  4302.      an identifier (for the name being declared)
  4303.      or a null pointer (for the place in an absolute declarator
  4304.      where the name was omitted).
  4305.      For the last two cases, we have just exited the loop.
  4306.  
  4307.      At this point, TYPE is the type of elements of an array,
  4308.      or for a function to return, or for a pointer to point to.
  4309.      After this sequence of ifs, TYPE is the type of the
  4310.      array or function or pointer, and DECLARATOR has had its
  4311.      outermost layer removed.  */
  4312.  
  4313.       if (TREE_CODE (declarator) == ARRAY_REF)
  4314.     {
  4315.       register tree itype = NULL_TREE;
  4316.       register tree size = TREE_OPERAND (declarator, 1);
  4317.       /* An uninitialized decl with `extern' is a reference.  */
  4318.       int extern_ref = !initialized && (specbits & (1 << (int) RID_EXTERN));
  4319.       /* The index is a signed object `sizetype' bits wide.  */
  4320.       tree index_type = signed_type (sizetype);
  4321.  
  4322.       declarator = TREE_OPERAND (declarator, 0);
  4323.  
  4324.       /* Check for some types that there cannot be arrays of.  */
  4325.  
  4326.       if (TYPE_MAIN_VARIANT (type) == void_type_node)
  4327.         {
  4328.           error ("declaration of `%s' as array of voids", name);
  4329.           type = error_mark_node;
  4330.         }
  4331.  
  4332.       if (TREE_CODE (type) == FUNCTION_TYPE)
  4333.         {
  4334.           error ("declaration of `%s' as array of functions", name);
  4335.           type = error_mark_node;
  4336.         }
  4337.  
  4338.       if (size == error_mark_node)
  4339.         type = error_mark_node;
  4340.  
  4341.       if (type == error_mark_node)
  4342.         continue;
  4343.  
  4344.       /* If this is a block level extern, it must live past the end
  4345.          of the function so that we can check it against other extern
  4346.          declarations (IDENTIFIER_LIMBO_VALUE).  */
  4347.       if (extern_ref && allocation_temporary_p ())
  4348.         end_temporary_allocation ();
  4349.  
  4350.       /* If size was specified, set ITYPE to a range-type for that size.
  4351.          Otherwise, ITYPE remains null.  finish_decl may figure it out
  4352.          from an initial value.  */
  4353.  
  4354.       if (size)
  4355.         {
  4356.           /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue.  */
  4357.           STRIP_TYPE_NOPS (size);
  4358.  
  4359.           if (TREE_CODE (TREE_TYPE (size)) != INTEGER_TYPE
  4360.           && TREE_CODE (TREE_TYPE (size)) != ENUMERAL_TYPE)
  4361.         {
  4362.           error ("size of array `%s' has non-integer type", name);
  4363.           size = integer_one_node;
  4364.         }
  4365.  
  4366.           if (pedantic && integer_zerop (size))
  4367.         pedwarn ("ANSI C forbids zero-size array `%s'", name);
  4368.  
  4369.           if (TREE_CODE (size) == INTEGER_CST)
  4370.         {
  4371.           constant_expression_warning (size);
  4372.           if (tree_int_cst_sgn (size) < 0)
  4373.             {
  4374.               error ("size of array `%s' is negative", name);
  4375.               size = integer_one_node;
  4376.             }
  4377.         }
  4378.           else
  4379.         {
  4380.           /* Make sure the array size remains visibly nonconstant
  4381.              even if it is (eg) a const variable with known value.  */
  4382.           size_varies = 1;
  4383.  
  4384.           if (pedantic)
  4385.             {
  4386.               if (TREE_CONSTANT (size))
  4387.             pedwarn ("ANSI C forbids array `%s' whose size can't be evaluated", name);
  4388.               else
  4389.             pedwarn ("ANSI C forbids variable-size array `%s'", name);
  4390.             }
  4391.         }
  4392.  
  4393.           /* Convert size to index_type, so that if it is a variable
  4394.          the computations will be done in the proper mode.  */
  4395.           itype = fold (build (MINUS_EXPR, index_type,
  4396.                    convert (index_type, size),
  4397.                    convert (index_type, size_one_node)));
  4398.  
  4399.           if (size_varies)
  4400.         itype = variable_size (itype);
  4401.           itype = build_index_type (itype);
  4402.         }
  4403.  
  4404. #if 0 /* This had bad results for pointers to arrays, as in
  4405.      union incomplete (*foo)[4];  */
  4406.       /* Complain about arrays of incomplete types, except in typedefs.  */
  4407.  
  4408.       if (TYPE_SIZE (type) == 0
  4409.           /* Avoid multiple warnings for nested array types.  */
  4410.           && TREE_CODE (type) != ARRAY_TYPE
  4411.           && !(specbits & (1 << (int) RID_TYPEDEF))
  4412.           && !C_TYPE_BEING_DEFINED (type))
  4413.         warning ("array type has incomplete element type");
  4414. #endif
  4415.  
  4416. #if 0  /* We shouldn't have a function type here at all!
  4417.       Functions aren't allowed as array elements.  */
  4418.       if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
  4419.           && (constp || volatilep))
  4420.         pedwarn ("ANSI C forbids const or volatile function types");
  4421. #endif
  4422.  
  4423.       /* Build the array type itself, then merge any constancy or
  4424.          volatility into the target type.  We must do it in this order
  4425.          to ensure that the TYPE_MAIN_VARIANT field of the array type
  4426.          is set correctly.  */
  4427.  
  4428.       type = build_array_type (type, itype);
  4429.       if (constp || volatilep)
  4430.         type = c_build_type_variant (type, constp, volatilep);
  4431.  
  4432. #if 0    /* don't clear these; leave them set so that the array type
  4433.        or the variable is itself const or volatile.  */
  4434.       constp = 0;
  4435.       volatilep = 0;
  4436. #endif
  4437.  
  4438.       if (size_varies)
  4439.         C_TYPE_VARIABLE_SIZE (type) = 1;
  4440.     }
  4441.       else if (TREE_CODE (declarator) == CALL_EXPR)
  4442.     {
  4443.       int extern_ref = (!(specbits & (1 << (int) RID_AUTO))
  4444.                 || current_binding_level == global_binding_level);
  4445.       tree arg_types;
  4446.  
  4447.       /* Declaring a function type.
  4448.          Make sure we have a valid type for the function to return.  */
  4449.       if (type == error_mark_node)
  4450.         continue;
  4451.  
  4452.       size_varies = 0;
  4453.  
  4454.       /* Warn about some types functions can't return.  */
  4455.  
  4456.       if (TREE_CODE (type) == FUNCTION_TYPE)
  4457.         {
  4458.           error ("`%s' declared as function returning a function", name);
  4459.           type = integer_type_node;
  4460.         }
  4461.       if (TREE_CODE (type) == ARRAY_TYPE)
  4462.         {
  4463.           error ("`%s' declared as function returning an array", name);
  4464.           type = integer_type_node;
  4465.         }
  4466.  
  4467. #ifndef TRADITIONAL_RETURN_FLOAT
  4468.       /* Traditionally, declaring return type float means double.  */
  4469.  
  4470.       if (flag_traditional && TYPE_MAIN_VARIANT (type) == float_type_node)
  4471.         type = double_type_node;
  4472. #endif /* TRADITIONAL_RETURN_FLOAT */
  4473.  
  4474.       /* If this is a block level extern, it must live past the end
  4475.          of the function so that we can check it against other extern
  4476.          declarations (IDENTIFIER_LIMBO_VALUE).  */
  4477.       if (extern_ref && allocation_temporary_p ())
  4478.         end_temporary_allocation ();
  4479.  
  4480.       /* Construct the function type and go to the next
  4481.          inner layer of declarator.  */
  4482.  
  4483.       arg_types = grokparms (TREE_OPERAND (declarator, 1),
  4484.                  funcdef_flag
  4485.                  /* Say it's a definition
  4486.                     only for the CALL_EXPR
  4487.                     closest to the identifier.  */
  4488.                  && TREE_CODE (TREE_OPERAND (declarator, 0)) == IDENTIFIER_NODE);
  4489. #if 0 /* This seems to be false.  We turn off temporary allocation
  4490.      above in this function if -traditional.
  4491.      And this code caused inconsistent results with prototypes:
  4492.      callers would ignore them, and pass arguments wrong.  */
  4493.  
  4494.       /* Omit the arg types if -traditional, since the arg types
  4495.          and the list links might not be permanent.  */
  4496.       type = build_function_type (type,
  4497.                       flag_traditional 
  4498.                       ? NULL_TREE : arg_types);
  4499. #endif
  4500.       /* ANSI seems to say that `const int foo ();'
  4501.          does not make the function foo const.  */
  4502.       if (constp || volatilep)
  4503.         type = c_build_type_variant (type, constp, volatilep);
  4504.       constp = 0;
  4505.       volatilep = 0;
  4506.  
  4507.       type = build_function_type (type, arg_types);
  4508.       declarator = TREE_OPERAND (declarator, 0);
  4509.  
  4510.       /* Set the TYPE_CONTEXTs for each tagged type which is local to
  4511.          the formal parameter list of this FUNCTION_TYPE to point to
  4512.          the FUNCTION_TYPE node itself.  */
  4513.  
  4514.       {
  4515.         register tree link;
  4516.  
  4517.         for (link = current_function_parm_tags;
  4518.          link;
  4519.          link = TREE_CHAIN (link))
  4520.           TYPE_CONTEXT (TREE_VALUE (link)) = type;
  4521.       }
  4522.     }
  4523.       else if (TREE_CODE (declarator) == INDIRECT_REF)
  4524.     {
  4525.       /* Merge any constancy or volatility into the target type
  4526.          for the pointer.  */
  4527.  
  4528.       if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
  4529.           && (constp || volatilep))
  4530.         pedwarn ("ANSI C forbids const or volatile function types");
  4531.       if (constp || volatilep)
  4532.         type = c_build_type_variant (type, constp, volatilep);
  4533.       constp = 0;
  4534.       volatilep = 0;
  4535.       size_varies = 0;
  4536.  
  4537.       type = build_pointer_type (type);
  4538.  
  4539.       /* Process a list of type modifier keywords
  4540.          (such as const or volatile) that were given inside the `*'.  */
  4541.  
  4542.       if (TREE_TYPE (declarator))
  4543.         {
  4544.           register tree typemodlist;
  4545.           int erred = 0;
  4546.           for (typemodlist = TREE_TYPE (declarator); typemodlist;
  4547.            typemodlist = TREE_CHAIN (typemodlist))
  4548.         {
  4549.           if (TREE_VALUE (typemodlist) == ridpointers[(int) RID_CONST])
  4550.             constp++;
  4551.           else if (TREE_VALUE (typemodlist) == ridpointers[(int) RID_VOLATILE])
  4552.             volatilep++;
  4553.           else if (!erred)
  4554.             {
  4555.               erred = 1;
  4556.               error ("invalid type modifier within pointer declarator");
  4557.             }
  4558.         }
  4559.           if (constp > 1)
  4560.         pedwarn ("duplicate `const'");
  4561.           if (volatilep > 1)
  4562.         pedwarn ("duplicate `volatile'");
  4563.         }
  4564.  
  4565.       declarator = TREE_OPERAND (declarator, 0);
  4566.     }
  4567.       else
  4568.     abort ();
  4569.  
  4570.     }
  4571.  
  4572.   /* Now TYPE has the actual type.  */
  4573.  
  4574.   /* If this is declaring a typedef name, return a TYPE_DECL.  */
  4575.  
  4576.   if (specbits & (1 << (int) RID_TYPEDEF))
  4577.     {
  4578.       tree decl;
  4579.       /* Note that the grammar rejects storage classes
  4580.      in typenames, fields or parameters */
  4581.       if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
  4582.       && (constp || volatilep))
  4583.     pedwarn ("ANSI C forbids const or volatile function types");
  4584.       if (constp || volatilep)
  4585.     type = c_build_type_variant (type, constp, volatilep);
  4586.       pop_obstacks ();
  4587.       decl = build_decl (TYPE_DECL, declarator, type);
  4588.       if ((specbits & (1 << (int) RID_SIGNED))
  4589.       || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
  4590.     C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
  4591.       return decl;
  4592.     }
  4593.  
  4594.   /* Detect the case of an array type of unspecified size
  4595.      which came, as such, direct from a typedef name.
  4596.      We must copy the type, so that each identifier gets
  4597.      a distinct type, so that each identifier's size can be
  4598.      controlled separately by its own initializer.  */
  4599.  
  4600.   if (type != 0 && typedef_type != 0
  4601.       && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type)
  4602.       && TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type) == 0)
  4603.     {
  4604.       type = build_array_type (TREE_TYPE (type), 0);
  4605.       if (size_varies)
  4606.     C_TYPE_VARIABLE_SIZE (type) = 1;
  4607.     }
  4608.  
  4609.   /* If this is a type name (such as, in a cast or sizeof),
  4610.      compute the type and return it now.  */
  4611.  
  4612.   if (decl_context == TYPENAME)
  4613.     {
  4614.       /* Note that the grammar rejects storage classes
  4615.      in typenames, fields or parameters */
  4616.       if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
  4617.       && (constp || volatilep))
  4618.     pedwarn ("ANSI C forbids const or volatile function types");
  4619.       if (constp || volatilep)
  4620.     type = c_build_type_variant (type, constp, volatilep);
  4621.       pop_obstacks ();
  4622.       return type;
  4623.     }
  4624.  
  4625.   /* Aside from typedefs and type names (handle above),
  4626.      `void' at top level (not within pointer)
  4627.      is allowed only in public variables.
  4628.      We don't complain about parms either, but that is because
  4629.      a better error message can be made later.  */
  4630.  
  4631.   if (TYPE_MAIN_VARIANT (type) == void_type_node && decl_context != PARM
  4632.       && ! ((decl_context != FIELD && TREE_CODE (type) != FUNCTION_TYPE)
  4633.         && ((specbits & (1 << (int) RID_EXTERN))
  4634.         || (current_binding_level == global_binding_level
  4635.             && !(specbits
  4636.              & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)))))))
  4637.     {
  4638.       error ("variable or field `%s' declared void",
  4639.          IDENTIFIER_POINTER (declarator));
  4640.       type = integer_type_node;
  4641.     }
  4642.  
  4643.   /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
  4644.      or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE.  */
  4645.  
  4646.   {
  4647.     register tree decl;
  4648.  
  4649.     if (decl_context == PARM)
  4650.       {
  4651.     tree type_as_written = type;
  4652.     tree main_type;
  4653.  
  4654.     /* A parameter declared as an array of T is really a pointer to T.
  4655.        One declared as a function is really a pointer to a function.  */
  4656.  
  4657.     if (TREE_CODE (type) == ARRAY_TYPE)
  4658.       {
  4659.         /* Transfer const-ness of array into that of type pointed to.  */
  4660.         type = TREE_TYPE (type);
  4661.         if (constp || volatilep)
  4662.           type = c_build_type_variant (type, constp, volatilep);
  4663.         type = build_pointer_type (type);
  4664.         volatilep = constp = 0;
  4665.         size_varies = 0;
  4666.       }
  4667.     else if (TREE_CODE (type) == FUNCTION_TYPE)
  4668.       {
  4669.         if (pedantic && (constp || volatilep))
  4670.           pedwarn ("ANSI C forbids const or volatile function types");
  4671.         if (constp || volatilep)
  4672.           type = c_build_type_variant (type, constp, volatilep);
  4673.         type = build_pointer_type (type);
  4674.         volatilep = constp = 0;
  4675.       }
  4676.  
  4677.     decl = build_decl (PARM_DECL, declarator, type);
  4678.     if (size_varies)
  4679.       C_DECL_VARIABLE_SIZE (decl) = 1;
  4680.  
  4681.     /* Compute the type actually passed in the parmlist,
  4682.        for the case where there is no prototype.
  4683.        (For example, shorts and chars are passed as ints.)
  4684.        When there is a prototype, this is overridden later.  */
  4685.  
  4686.     DECL_ARG_TYPE (decl) = type;
  4687.     main_type = (type == error_mark_node
  4688.              ? error_mark_node
  4689.              : TYPE_MAIN_VARIANT (type));
  4690.     if (main_type == float_type_node)
  4691.       DECL_ARG_TYPE (decl) = double_type_node;
  4692.     /* Don't use TYPE_PRECISION to decide whether to promote,
  4693.        because we should convert short if it's the same size as int,
  4694.        but we should not convert long if it's the same size as int.  */
  4695.     else if (TREE_CODE (main_type) != ERROR_MARK
  4696.          && C_PROMOTING_INTEGER_TYPE_P (main_type))
  4697.       {
  4698.         if (TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node)
  4699.         && TREE_UNSIGNED (type))
  4700.           DECL_ARG_TYPE (decl) = unsigned_type_node;
  4701.         else
  4702.           DECL_ARG_TYPE (decl) = integer_type_node;
  4703.       }
  4704.  
  4705.     DECL_ARG_TYPE_AS_WRITTEN (decl) = type_as_written;
  4706.       }
  4707.     else if (decl_context == FIELD)
  4708.       {
  4709.     /* Structure field.  It may not be a function.  */
  4710.  
  4711.     if (TREE_CODE (type) == FUNCTION_TYPE)
  4712.       {
  4713.         error ("field `%s' declared as a function",
  4714.            IDENTIFIER_POINTER (declarator));
  4715.         type = build_pointer_type (type);
  4716.       }
  4717.     else if (TREE_CODE (type) != ERROR_MARK && TYPE_SIZE (type) == 0)
  4718.       {
  4719.         error ("field `%s' has incomplete type",
  4720.            IDENTIFIER_POINTER (declarator));
  4721.         type = error_mark_node;
  4722.       }
  4723.     /* Move type qualifiers down to element of an array.  */
  4724.     if (TREE_CODE (type) == ARRAY_TYPE && (constp || volatilep))
  4725.       {
  4726.         type = build_array_type (c_build_type_variant (TREE_TYPE (type),
  4727.                                constp, volatilep),
  4728.                      TYPE_DOMAIN (type));
  4729. #if 0 /* Leave the field const or volatile as well.  */
  4730.         constp = volatilep = 0;
  4731. #endif
  4732.       }
  4733.     decl = build_decl (FIELD_DECL, declarator, type);
  4734.     if (size_varies)
  4735.       C_DECL_VARIABLE_SIZE (decl) = 1;
  4736.       }
  4737.     else if (TREE_CODE (type) == FUNCTION_TYPE)
  4738.       {
  4739.     /* Every function declaration is "external"
  4740.        except for those which are inside a function body
  4741.        in which `auto' is used.
  4742.        That is a case not specified by ANSI C,
  4743.        and we use it for forward declarations for nested functions.  */
  4744.     int extern_ref = (!(specbits & (1 << (int) RID_AUTO))
  4745.               || current_binding_level == global_binding_level);
  4746.  
  4747.     if (specbits & (1 << (int) RID_AUTO)
  4748.         && (pedantic || current_binding_level == global_binding_level))
  4749.       pedwarn ("invalid storage class for function `%s'",
  4750.          IDENTIFIER_POINTER (declarator));
  4751.     if (specbits & (1 << (int) RID_REGISTER))
  4752.       error ("invalid storage class for function `%s'",
  4753.          IDENTIFIER_POINTER (declarator));
  4754.     /* Function declaration not at top level.
  4755.        Storage classes other than `extern' are not allowed
  4756.        and `extern' makes no difference.  */
  4757.     if (current_binding_level != global_binding_level
  4758.         && (specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_INLINE)))
  4759.         && pedantic)
  4760.       pedwarn ("invalid storage class for function `%s'",
  4761.            IDENTIFIER_POINTER (declarator));
  4762.  
  4763.     /* If this is a block level extern, it must live past the end
  4764.        of the function so that we can check it against other
  4765.        extern declarations (IDENTIFIER_LIMBO_VALUE).  */
  4766.     if (extern_ref && allocation_temporary_p ())
  4767.       end_temporary_allocation ();
  4768.  
  4769.     decl = build_decl (FUNCTION_DECL, declarator, type);
  4770.  
  4771.     if (pedantic && (constp || volatilep)
  4772.         && ! DECL_IN_SYSTEM_HEADER (decl))
  4773.       pedwarn ("ANSI C forbids const or volatile functions");
  4774.  
  4775.     if (volatilep
  4776.         && TREE_TYPE (TREE_TYPE (decl)) != void_type_node)
  4777.       warning ("`noreturn' function returns non-void value");
  4778.  
  4779.     if (extern_ref)
  4780.       DECL_EXTERNAL (decl) = 1;
  4781.     /* Record absence of global scope for `static' or `auto'.  */
  4782.     TREE_PUBLIC (decl)
  4783.       = !(specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_AUTO)));
  4784.     /* Record presence of `inline', if it is reasonable.  */
  4785.     if (inlinep)
  4786.       {
  4787.         tree last = tree_last (TYPE_ARG_TYPES (type));
  4788.  
  4789.         if (! strcmp (IDENTIFIER_POINTER (declarator), "main"))
  4790.           warning ("cannot inline function `main'");
  4791.         else if (last && (TYPE_MAIN_VARIANT (TREE_VALUE (last))
  4792.                   != void_type_node))
  4793.           warning ("inline declaration ignored for function with `...'");
  4794.         else
  4795.           /* Assume that otherwise the function can be inlined.  */
  4796.           DECL_INLINE (decl) = 1;
  4797.  
  4798.         if (specbits & (1 << (int) RID_EXTERN))
  4799.           current_extern_inline = 1;
  4800.       }
  4801.       }
  4802.     else
  4803.       {
  4804.     /* It's a variable.  */
  4805.     /* An uninitialized decl with `extern' is a reference.  */
  4806.     int extern_ref = !initialized && (specbits & (1 << (int) RID_EXTERN));
  4807.  
  4808.     /* Move type qualifiers down to element of an array.  */
  4809.     if (TREE_CODE (type) == ARRAY_TYPE && (constp || volatilep))
  4810.       {
  4811.         type = build_array_type (c_build_type_variant (TREE_TYPE (type),
  4812.                                constp, volatilep),
  4813.                      TYPE_DOMAIN (type));
  4814. #if 0 /* Leave the variable const or volatile as well.  */
  4815.         constp = volatilep = 0;
  4816. #endif
  4817.       }
  4818.  
  4819.     /* If this is a block level extern, it must live past the end
  4820.        of the function so that we can check it against other
  4821.        extern declarations (IDENTIFIER_LIMBO_VALUE).  */
  4822.     if (extern_ref && allocation_temporary_p ())
  4823.       end_temporary_allocation ();
  4824.  
  4825.     decl = build_decl (VAR_DECL, declarator, type);
  4826.     if (size_varies)
  4827.       C_DECL_VARIABLE_SIZE (decl) = 1;
  4828.  
  4829.     if (inlinep)
  4830.       pedwarn_with_decl (decl, "variable `%s' declared `inline'");
  4831.  
  4832.     DECL_EXTERNAL (decl) = extern_ref;
  4833.     /* At top level, the presence of a `static' or `register' storage
  4834.        class specifier, or the absence of all storage class specifiers
  4835.        makes this declaration a definition (perhaps tentative).  Also,
  4836.        the absence of both `static' and `register' makes it public.  */
  4837.     if (current_binding_level == global_binding_level)
  4838.       {
  4839.         TREE_PUBLIC (decl)
  4840.           = !(specbits
  4841.           & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)));
  4842.         TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
  4843.       }
  4844.     /* Not at top level, only `static' makes a static definition.  */
  4845.     else
  4846.       {
  4847.         TREE_STATIC (decl) = (specbits & (1 << (int) RID_STATIC)) != 0;
  4848.         TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
  4849.       }
  4850.  
  4851.     if (specbits & 1 << (int) RID_ITERATOR)
  4852.       ITERATOR_P (decl) = 1;
  4853.       }
  4854.  
  4855.     /* Record `register' declaration for warnings on &
  4856.        and in case doing stupid register allocation.  */
  4857.  
  4858.     if (specbits & (1 << (int) RID_REGISTER))
  4859.       DECL_REGISTER (decl) = 1;
  4860.  
  4861.     /* Record constancy and volatility.  */
  4862.  
  4863.     if (constp)
  4864.       TREE_READONLY (decl) = 1;
  4865.     if (volatilep)
  4866.       {
  4867.     TREE_SIDE_EFFECTS (decl) = 1;
  4868.     TREE_THIS_VOLATILE (decl) = 1;
  4869.       }
  4870.     /* If a type has volatile components, it should be stored in memory.
  4871.        Otherwise, the fact that those components are volatile
  4872.        will be ignored, and would even crash the compiler.  */
  4873.     if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl)))
  4874.       mark_addressable (decl);
  4875.  
  4876.     pop_obstacks ();
  4877.  
  4878.     return decl;
  4879.   }
  4880. }
  4881.  
  4882. /* Decode the parameter-list info for a function type or function definition.
  4883.    The argument is the value returned by `get_parm_info' (or made in parse.y
  4884.    if there is an identifier list instead of a parameter decl list).
  4885.    These two functions are separate because when a function returns
  4886.    or receives functions then each is called multiple times but the order
  4887.    of calls is different.  The last call to `grokparms' is always the one
  4888.    that contains the formal parameter names of a function definition.
  4889.  
  4890.    Store in `last_function_parms' a chain of the decls of parms.
  4891.    Also store in `last_function_parm_tags' a chain of the struct, union,
  4892.    and enum tags declared among the parms.
  4893.  
  4894.    Return a list of arg types to use in the FUNCTION_TYPE for this function.
  4895.  
  4896.    FUNCDEF_FLAG is nonzero for a function definition, 0 for
  4897.    a mere declaration.  A nonempty identifier-list gets an error message
  4898.    when FUNCDEF_FLAG is zero.  */
  4899.  
  4900. static tree
  4901. grokparms (parms_info, funcdef_flag)
  4902.      tree parms_info;
  4903.      int funcdef_flag;
  4904. {
  4905.   tree first_parm = TREE_CHAIN (parms_info);
  4906.  
  4907.   last_function_parms = TREE_PURPOSE (parms_info);
  4908.   last_function_parm_tags = TREE_VALUE (parms_info);
  4909.  
  4910.   if (warn_strict_prototypes && first_parm == 0 && !funcdef_flag
  4911.       && !in_system_header)
  4912.     warning ("function declaration isn't a prototype");
  4913.  
  4914.   if (first_parm != 0
  4915.       && TREE_CODE (TREE_VALUE (first_parm)) == IDENTIFIER_NODE)
  4916.     {
  4917.       if (! funcdef_flag)
  4918.     pedwarn ("parameter names (without types) in function declaration");
  4919.  
  4920.       last_function_parms = first_parm;
  4921.       return 0;
  4922.     }
  4923.   else
  4924.     {
  4925.       tree parm;
  4926.       tree typelt;
  4927.       /* We no longer test FUNCDEF_FLAG.
  4928.      If the arg types are incomplete in a declaration,
  4929.      they must include undefined tags.
  4930.      These tags can never be defined in the scope of the declaration,
  4931.      so the types can never be completed,
  4932.      and no call can be compiled successfully.  */
  4933. #if 0
  4934.       /* In a fcn definition, arg types must be complete.  */
  4935.       if (funcdef_flag)
  4936. #endif
  4937.     for (parm = last_function_parms, typelt = first_parm;
  4938.          parm;
  4939.          parm = TREE_CHAIN (parm))
  4940.       /* Skip over any enumeration constants declared here.  */
  4941.       if (TREE_CODE (parm) == PARM_DECL)
  4942.         {
  4943.           /* Barf if the parameter itself has an incomplete type.  */
  4944.           tree type = TREE_VALUE (typelt);
  4945.           if (TYPE_SIZE (type) == 0)
  4946.         {
  4947.           if (funcdef_flag && DECL_NAME (parm) != 0)
  4948.             error ("parameter `%s' has incomplete type",
  4949.                IDENTIFIER_POINTER (DECL_NAME (parm)));
  4950.           else
  4951.             warning ("parameter has incomplete type");
  4952.           if (funcdef_flag)
  4953.             {
  4954.               TREE_VALUE (typelt) = error_mark_node;
  4955.               TREE_TYPE (parm) = error_mark_node;
  4956.             }
  4957.         }
  4958. #if 0  /* This has been replaced by parm_tags_warning
  4959.       which uses a more accurate criterion for what to warn about.  */
  4960.           else
  4961.         {
  4962.           /* Now warn if is a pointer to an incomplete type.  */
  4963.           while (TREE_CODE (type) == POINTER_TYPE
  4964.              || TREE_CODE (type) == REFERENCE_TYPE)
  4965.             type = TREE_TYPE (type);
  4966.           type = TYPE_MAIN_VARIANT (type);
  4967.           if (TYPE_SIZE (type) == 0)
  4968.             {
  4969.               if (DECL_NAME (parm) != 0)
  4970.             warning ("parameter `%s' points to incomplete type",
  4971.                  IDENTIFIER_POINTER (DECL_NAME (parm)));
  4972.               else
  4973.             warning ("parameter points to incomplete type");
  4974.             }
  4975.         }
  4976. #endif
  4977.           typelt = TREE_CHAIN (typelt);
  4978.         }
  4979.  
  4980.       /* Allocate the list of types the way we allocate a type.  */
  4981.       if (first_parm && ! TREE_PERMANENT (first_parm))
  4982.     {
  4983.       /* Construct a copy of the list of types
  4984.          on the saveable obstack.  */
  4985.       tree result = NULL;
  4986.       for (typelt = first_parm; typelt; typelt = TREE_CHAIN (typelt))
  4987.         result = saveable_tree_cons (NULL_TREE, TREE_VALUE (typelt),
  4988.                      result);
  4989.       return nreverse (result);
  4990.     }
  4991.       else
  4992.     /* The list we have is permanent already.  */
  4993.     return first_parm;
  4994.     }
  4995. }
  4996.  
  4997.  
  4998. /* Return a tree_list node with info on a parameter list just parsed.
  4999.    The TREE_PURPOSE is a chain of decls of those parms.
  5000.    The TREE_VALUE is a list of structure, union and enum tags defined.
  5001.    The TREE_CHAIN is a list of argument types to go in the FUNCTION_TYPE.
  5002.    This tree_list node is later fed to `grokparms'.
  5003.  
  5004.    VOID_AT_END nonzero means append `void' to the end of the type-list.
  5005.    Zero means the parmlist ended with an ellipsis so don't append `void'.  */
  5006.  
  5007. tree
  5008. get_parm_info (void_at_end)
  5009.      int void_at_end;
  5010. {
  5011.   register tree decl, t;
  5012.   register tree types = 0;
  5013.   int erred = 0;
  5014.   tree tags = gettags ();
  5015.   tree parms = getdecls ();
  5016.   tree new_parms = 0;
  5017.   tree order = current_binding_level->parm_order;
  5018.  
  5019.   /* Just `void' (and no ellipsis) is special.  There are really no parms.  */
  5020.   if (void_at_end && parms != 0
  5021.       && TREE_CHAIN (parms) == 0
  5022.       && TYPE_MAIN_VARIANT (TREE_TYPE (parms)) == void_type_node
  5023.       && DECL_NAME (parms) == 0)
  5024.     {
  5025.       parms = NULL_TREE;
  5026.       storedecls (NULL_TREE);
  5027.       return saveable_tree_cons (NULL_TREE, NULL_TREE,
  5028.                  saveable_tree_cons (NULL_TREE, void_type_node, NULL_TREE));
  5029.     }
  5030.  
  5031.   /* Extract enumerator values and other non-parms declared with the parms.
  5032.      Likewise any forward parm decls that didn't have real parm decls.  */
  5033.   for (decl = parms; decl; )
  5034.     {
  5035.       tree next = TREE_CHAIN (decl);
  5036.  
  5037.       if (TREE_CODE (decl) != PARM_DECL)
  5038.     {
  5039.       TREE_CHAIN (decl) = new_parms;
  5040.       new_parms = decl;
  5041.     }
  5042.       else if (TREE_ASM_WRITTEN (decl))
  5043.     {
  5044.       error_with_decl (decl, "parameter `%s' has just a forward declaration");
  5045.       TREE_CHAIN (decl) = new_parms;
  5046.       new_parms = decl;
  5047.     }
  5048.       decl = next;
  5049.     }
  5050.  
  5051.   /* Put the parm decls back in the order they were in in the parm list.  */
  5052.   for (t = order; t; t = TREE_CHAIN (t))
  5053.     {
  5054.       if (TREE_CHAIN (t))
  5055.     TREE_CHAIN (TREE_VALUE (t)) = TREE_VALUE (TREE_CHAIN (t));
  5056.       else
  5057.     TREE_CHAIN (TREE_VALUE (t)) = 0;
  5058.     }
  5059.  
  5060.   new_parms = chainon (order ? nreverse (TREE_VALUE (order)) : 0,
  5061.                new_parms);
  5062.  
  5063.   /* Store the parmlist in the binding level since the old one
  5064.      is no longer a valid list.  (We have changed the chain pointers.)  */
  5065.   storedecls (new_parms);
  5066.  
  5067.   for (decl = new_parms; decl; decl = TREE_CHAIN (decl))
  5068.     /* There may also be declarations for enumerators if an enumeration
  5069.        type is declared among the parms.  Ignore them here.  */
  5070.     if (TREE_CODE (decl) == PARM_DECL)
  5071.       {
  5072.     /* Since there is a prototype,
  5073.        args are passed in their declared types.  */
  5074.     tree type = TREE_TYPE (decl);
  5075.     DECL_ARG_TYPE (decl) = type;
  5076. #ifdef PROMOTE_PROTOTYPES
  5077.     if ((TREE_CODE (type) == INTEGER_TYPE
  5078.          || TREE_CODE (type) == ENUMERAL_TYPE)
  5079.         && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
  5080.       DECL_ARG_TYPE (decl) = integer_type_node;
  5081. #endif
  5082.  
  5083.     types = saveable_tree_cons (NULL_TREE, TREE_TYPE (decl), types);
  5084.     if (TYPE_MAIN_VARIANT (TREE_VALUE (types)) == void_type_node && ! erred
  5085.         && DECL_NAME (decl) == 0)
  5086.       {
  5087.         error ("`void' in parameter list must be the entire list");
  5088.         erred = 1;
  5089.       }
  5090.       }
  5091.  
  5092.   if (void_at_end)
  5093.     return saveable_tree_cons (new_parms, tags,
  5094.                    nreverse (saveable_tree_cons (NULL_TREE, void_type_node, types)));
  5095.  
  5096.   return saveable_tree_cons (new_parms, tags, nreverse (types));
  5097. }
  5098.  
  5099. /* At end of parameter list, warn about any struct, union or enum tags
  5100.    defined within.  Do so because these types cannot ever become complete.  */
  5101.  
  5102. void
  5103. parmlist_tags_warning ()
  5104. {
  5105.   tree elt;
  5106.   static int already;
  5107.  
  5108.   for (elt = current_binding_level->tags; elt; elt = TREE_CHAIN (elt))
  5109.     {
  5110.       enum tree_code code = TREE_CODE (TREE_VALUE (elt));
  5111.       /* An anonymous union parm type is meaningful as a GNU extension.
  5112.      So don't warn for that.  */
  5113.       if (code == UNION_TYPE && !pedantic)
  5114.     continue;
  5115.       if (TREE_PURPOSE (elt) != 0)
  5116.     warning ("`%s %s' declared inside parameter list",
  5117.          (code == RECORD_TYPE ? "struct"
  5118.           : code == UNION_TYPE ? "union"
  5119.           : "enum"),
  5120.          IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
  5121.       else
  5122.     warning ("anonymous %s declared inside parameter list",
  5123.          (code == RECORD_TYPE ? "struct"
  5124.           : code == UNION_TYPE ? "union"
  5125.           : "enum"));
  5126.  
  5127.       if (! already)
  5128.     {
  5129.       warning ("its scope is only this definition or declaration,");
  5130.       warning ("which is probably not what you want.");
  5131.       already = 1;
  5132.     }
  5133.     }
  5134. }
  5135.  
  5136. /* Get the struct, enum or union (CODE says which) with tag NAME.
  5137.    Define the tag as a forward-reference if it is not defined.  */
  5138.  
  5139. tree
  5140. xref_tag (code, name)
  5141.      enum tree_code code;
  5142.      tree name;
  5143. {
  5144.   int temporary = allocation_temporary_p ();
  5145.  
  5146.   /* If a cross reference is requested, look up the type
  5147.      already defined for this tag and return it.  */
  5148.  
  5149.   register tree ref = lookup_tag (code, name, current_binding_level, 0);
  5150.   /* Even if this is the wrong type of tag, return what we found.
  5151.      There will be an error message anyway, from pending_xref_error.
  5152.      If we create an empty xref just for an invalid use of the type,
  5153.      the main result is to create lots of superfluous error messages.  */
  5154.   if (ref)
  5155.     return ref;
  5156.  
  5157.   push_obstacks_nochange ();
  5158.  
  5159.   if (current_binding_level == global_binding_level && temporary)
  5160.     end_temporary_allocation ();
  5161.  
  5162.   /* If no such tag is yet defined, create a forward-reference node
  5163.      and record it as the "definition".
  5164.      When a real declaration of this type is found,
  5165.      the forward-reference will be altered into a real type.  */
  5166.  
  5167.   ref = make_node (code);
  5168.   if (code == ENUMERAL_TYPE)
  5169.     {
  5170.       /* (In ANSI, Enums can be referred to only if already defined.)  */
  5171.       if (pedantic)
  5172.     pedwarn ("ANSI C forbids forward references to `enum' types");
  5173.       /* Give the type a default layout like unsigned int
  5174.      to avoid crashing if it does not get defined.  */
  5175.       TYPE_MODE (ref) = TYPE_MODE (unsigned_type_node);
  5176.       TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
  5177.       TREE_UNSIGNED (ref) = 1;
  5178.       TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
  5179.       TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
  5180.       TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
  5181.     }
  5182.  
  5183.   pushtag (name, ref);
  5184.  
  5185.   pop_obstacks ();
  5186.  
  5187.   return ref;
  5188. }
  5189.  
  5190. /* Make sure that the tag NAME is defined *in the current binding level*
  5191.    at least as a forward reference.
  5192.    CODE says which kind of tag NAME ought to be.
  5193.  
  5194.    We also do a push_obstacks_nochange
  5195.    whose matching pop is in finish_struct.  */
  5196.  
  5197. tree
  5198. start_struct (code, name)
  5199.      enum tree_code code;
  5200.      tree name;
  5201. {
  5202.   /* If there is already a tag defined at this binding level
  5203.      (as a forward reference), just return it.  */
  5204.  
  5205.   register tree ref = 0;
  5206.  
  5207.   push_obstacks_nochange ();
  5208.   if (current_binding_level == global_binding_level)
  5209.     end_temporary_allocation ();
  5210.  
  5211.   if (name != 0)
  5212.     ref = lookup_tag (code, name, current_binding_level, 1);
  5213.   if (ref && TREE_CODE (ref) == code)
  5214.     {
  5215.       C_TYPE_BEING_DEFINED (ref) = 1;
  5216.       if (TYPE_FIELDS (ref))
  5217.     error ((code == UNION_TYPE ? "redefinition of `union %s'"
  5218.         : "redefinition of `struct %s'"),
  5219.            IDENTIFIER_POINTER (name));
  5220.  
  5221.       return ref;
  5222.     }
  5223.  
  5224.   /* Otherwise create a forward-reference just so the tag is in scope.  */
  5225.  
  5226.   ref = make_node (code);
  5227.   pushtag (name, ref);
  5228.   C_TYPE_BEING_DEFINED (ref) = 1;
  5229.   return ref;
  5230. }
  5231.  
  5232. /* Process the specs, declarator (NULL if omitted) and width (NULL if omitted)
  5233.    of a structure component, returning a FIELD_DECL node.
  5234.    WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node.
  5235.  
  5236.    This is done during the parsing of the struct declaration.
  5237.    The FIELD_DECL nodes are chained together and the lot of them
  5238.    are ultimately passed to `build_struct' to make the RECORD_TYPE node.  */
  5239.  
  5240. tree
  5241. grokfield (filename, line, declarator, declspecs, width)
  5242.      char *filename;
  5243.      int line;
  5244.      tree declarator, declspecs, width;
  5245. {
  5246.   tree value;
  5247.  
  5248.   /* The corresponding pop_obstacks is in finish_decl.  */
  5249.   push_obstacks_nochange ();
  5250.  
  5251.   value = grokdeclarator (declarator, declspecs, width ? BITFIELD : FIELD, 0);
  5252.  
  5253.   finish_decl (value, NULL_TREE, NULL_TREE);
  5254.   DECL_INITIAL (value) = width;
  5255.  
  5256.   maybe_objc_check_decl (value);
  5257.   return value;
  5258. }
  5259.  
  5260. /* Function to help qsort sort FIELD_DECLs by name order.  */
  5261.  
  5262. static int
  5263. field_decl_cmp (x, y)
  5264.      tree *x, *y;
  5265. {
  5266.   return (long)DECL_NAME (*x) - (long)DECL_NAME (*y);
  5267. }
  5268.  
  5269. /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
  5270.    FIELDLIST is a chain of FIELD_DECL nodes for the fields.
  5271.  
  5272.    We also do a pop_obstacks to match the push in start_struct.  */
  5273.  
  5274. tree
  5275. finish_struct (t, fieldlist)
  5276.      register tree t, fieldlist;
  5277. {
  5278.   register tree x;
  5279.   int old_momentary;
  5280.   int toplevel = global_binding_level == current_binding_level;
  5281.  
  5282.   /* If this type was previously laid out as a forward reference,
  5283.      make sure we lay it out again.  */
  5284.  
  5285.   TYPE_SIZE (t) = 0;
  5286.  
  5287.   /* Nameless union parm types are useful as GCC extension.  */
  5288.   if (! (TREE_CODE (t) == UNION_TYPE && TYPE_NAME (t) == 0) && !pedantic)
  5289.     /* Otherwise, warn about any struct or union def. in parmlist.  */
  5290.     if (in_parm_level_p ())
  5291.       {
  5292.     if (pedantic)
  5293.       pedwarn ((TREE_CODE (t) == UNION_TYPE ? "union defined inside parms"
  5294.             : "structure defined inside parms"));
  5295.     else if (! flag_traditional)
  5296.       warning ((TREE_CODE (t) == UNION_TYPE ? "union defined inside parms"
  5297.             : "structure defined inside parms"));
  5298.       }
  5299.  
  5300.   old_momentary = suspend_momentary ();
  5301.  
  5302.   if (fieldlist == 0 && pedantic)
  5303.     pedwarn ((TREE_CODE (t) == UNION_TYPE ? "union has no members"
  5304.           : "structure has no members"));
  5305.  
  5306.   /* Install struct as DECL_CONTEXT of each field decl.
  5307.      Also process specified field sizes.
  5308.      Set DECL_FIELD_SIZE to the specified size, or 0 if none specified.
  5309.      The specified size is found in the DECL_INITIAL.
  5310.      Store 0 there, except for ": 0" fields (so we can find them
  5311.      and delete them, below).  */
  5312.  
  5313.   for (x = fieldlist; x; x = TREE_CHAIN (x))
  5314.     {
  5315.       DECL_CONTEXT (x) = t;
  5316.       DECL_FIELD_SIZE (x) = 0;
  5317.  
  5318.       /* If any field is const, the structure type is pseudo-const.  */
  5319.       if (TREE_READONLY (x))
  5320.     C_TYPE_FIELDS_READONLY (t) = 1;
  5321.       else
  5322.     {
  5323.       /* A field that is pseudo-const makes the structure likewise.  */
  5324.       tree t1 = TREE_TYPE (x);
  5325.       while (TREE_CODE (t1) == ARRAY_TYPE)
  5326.         t1 = TREE_TYPE (t1);
  5327.       if ((TREE_CODE (t1) == RECORD_TYPE || TREE_CODE (t1) == UNION_TYPE)
  5328.           && C_TYPE_FIELDS_READONLY (t1))
  5329.         C_TYPE_FIELDS_READONLY (t) = 1;
  5330.     }
  5331.  
  5332.       /* Any field that is volatile means variables of this type must be
  5333.      treated in some ways as volatile.  */
  5334.       if (TREE_THIS_VOLATILE (x))
  5335.     C_TYPE_FIELDS_VOLATILE (t) = 1;
  5336.  
  5337.       /* Any field of nominal variable size implies structure is too.  */
  5338.       if (C_DECL_VARIABLE_SIZE (x))
  5339.     C_TYPE_VARIABLE_SIZE (t) = 1;
  5340.  
  5341.       /* Detect invalid nested redefinition.  */
  5342.       if (TREE_TYPE (x) == t)
  5343.     error ("nested redefinition of `%s'",
  5344.            IDENTIFIER_POINTER (TYPE_NAME (t)));
  5345.  
  5346.       /* Detect invalid bit-field size.  */
  5347.       if (DECL_INITIAL (x))
  5348.     STRIP_NOPS (DECL_INITIAL (x));
  5349.       if (DECL_INITIAL (x))
  5350.     {
  5351.       if (TREE_CODE (DECL_INITIAL (x)) == INTEGER_CST)
  5352.         constant_expression_warning (DECL_INITIAL (x));
  5353.       else
  5354.         {
  5355.           error_with_decl (x, "bit-field `%s' width not an integer constant");
  5356.           DECL_INITIAL (x) = NULL;
  5357.         }
  5358.     }
  5359.  
  5360.       /* Detect invalid bit-field type.  */
  5361.       if (DECL_INITIAL (x)
  5362.       && TREE_CODE (TREE_TYPE (x)) != INTEGER_TYPE
  5363.       && TREE_CODE (TREE_TYPE (x)) != ENUMERAL_TYPE)
  5364.     {
  5365.       error_with_decl (x, "bit-field `%s' has invalid type");
  5366.       DECL_INITIAL (x) = NULL;
  5367.     }
  5368.       if (DECL_INITIAL (x) && pedantic
  5369.       && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != integer_type_node
  5370.       && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != unsigned_type_node
  5371.       /* Accept an enum that's equivalent to int or unsigned int.  */
  5372.       && !(TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
  5373.            && (TYPE_PRECISION (TREE_TYPE (x))
  5374.            == TYPE_PRECISION (integer_type_node))))
  5375.     pedwarn_with_decl (x, "bit-field `%s' type invalid in ANSI C");
  5376.  
  5377.       /* Detect and ignore out of range field width.  */
  5378.       if (DECL_INITIAL (x))
  5379.     {
  5380.       unsigned HOST_WIDE_INT width = TREE_INT_CST_LOW (DECL_INITIAL (x));
  5381.  
  5382.       if (tree_int_cst_sgn (DECL_INITIAL (x)) < 0)
  5383.         {
  5384.           DECL_INITIAL (x) = NULL;
  5385.           error_with_decl (x, "negative width in bit-field `%s'");
  5386.         }
  5387.       else if (TREE_INT_CST_HIGH (DECL_INITIAL (x)) != 0
  5388.            || width > TYPE_PRECISION (TREE_TYPE (x)))
  5389.         {
  5390.           DECL_INITIAL (x) = NULL;
  5391.           pedwarn_with_decl (x, "width of `%s' exceeds its type");
  5392.         }
  5393.       else if (width == 0 && DECL_NAME (x) != 0)
  5394.         {
  5395.           error_with_decl (x, "zero width for bit-field `%s'");
  5396.           DECL_INITIAL (x) = NULL;
  5397.         }
  5398.     }
  5399.  
  5400.       /* Process valid field width.  */
  5401.       if (DECL_INITIAL (x))
  5402.     {
  5403.       register int width = TREE_INT_CST_LOW (DECL_INITIAL (x));
  5404.  
  5405.       DECL_FIELD_SIZE (x) = width;
  5406.       DECL_BIT_FIELD (x) = 1;
  5407.       DECL_INITIAL (x) = NULL;
  5408.  
  5409.       if (width == 0)
  5410.         {
  5411.           /* field size 0 => force desired amount of alignment.  */
  5412. #ifdef EMPTY_FIELD_BOUNDARY
  5413.           DECL_ALIGN (x) = MAX (DECL_ALIGN (x), EMPTY_FIELD_BOUNDARY);
  5414. #endif
  5415. #ifdef PCC_BITFIELD_TYPE_MATTERS
  5416.           DECL_ALIGN (x) = MAX (DECL_ALIGN (x),
  5417.                     TYPE_ALIGN (TREE_TYPE (x)));
  5418. #endif
  5419.         }
  5420.     }
  5421.       else
  5422.     {
  5423.       int min_align = (DECL_PACKED (x) ? BITS_PER_UNIT
  5424.                : TYPE_ALIGN (TREE_TYPE (x)));
  5425.       /* Non-bit-fields are aligned for their type, except packed
  5426.          fields which require only BITS_PER_UNIT alignment.  */
  5427.       DECL_ALIGN (x) = MAX (DECL_ALIGN (x), min_align);
  5428.     }
  5429.     }
  5430.  
  5431.   /* Now DECL_INITIAL is null on all members.  */
  5432.  
  5433.   /* Delete all duplicate fields from the fieldlist */
  5434.   for (x = fieldlist; x && TREE_CHAIN (x);)
  5435.     /* Anonymous fields aren't duplicates.  */
  5436.     if (DECL_NAME (TREE_CHAIN (x)) == 0)
  5437.       x = TREE_CHAIN (x);
  5438.     else
  5439.       {
  5440.     register tree y = fieldlist;
  5441.       
  5442.     while (1)
  5443.       {
  5444.         if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
  5445.           break;
  5446.         if (y == x)
  5447.           break;
  5448.         y = TREE_CHAIN (y);
  5449.       }
  5450.     if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
  5451.       {
  5452.         error_with_decl (TREE_CHAIN (x), "duplicate member `%s'");
  5453.         TREE_CHAIN (x) = TREE_CHAIN (TREE_CHAIN (x));
  5454.       }
  5455.     else x = TREE_CHAIN (x);
  5456.       }
  5457.  
  5458.   /* Now we have the nearly final fieldlist.  Record it,
  5459.      then lay out the structure or union (including the fields).  */
  5460.  
  5461.   TYPE_FIELDS (t) = fieldlist;
  5462.  
  5463.   layout_type (t);
  5464.  
  5465.   /* Delete all zero-width bit-fields from the front of the fieldlist */
  5466.   while (fieldlist
  5467.      && DECL_INITIAL (fieldlist))
  5468.     fieldlist = TREE_CHAIN (fieldlist);
  5469.   /* Delete all such members from the rest of the fieldlist */
  5470.   for (x = fieldlist; x;)
  5471.     {
  5472.       if (TREE_CHAIN (x) && DECL_INITIAL (TREE_CHAIN (x)))
  5473.     TREE_CHAIN (x) = TREE_CHAIN (TREE_CHAIN (x));
  5474.       else x = TREE_CHAIN (x);
  5475.     }
  5476.  
  5477.   /*  Now we have the truly final field list.
  5478.       Store it in this type and in the variants.  */
  5479.  
  5480.   TYPE_FIELDS (t) = fieldlist;
  5481.  
  5482.   /* If there are lots of fields, sort so we can look through them fast.
  5483.      We arbitrarily consider 16 or more elts to be "a lot".  */
  5484.   {
  5485.     int len = 0;
  5486.  
  5487.     for (x = fieldlist; x; x = TREE_CHAIN (x))
  5488.       {
  5489.     if (len > 15)
  5490.       break;
  5491.     len += 1;
  5492.       }
  5493.     if (len > 15)
  5494.       {
  5495.     tree *field_array;
  5496.     char *space;
  5497.  
  5498.     len += list_length (x);
  5499.     /* Use the same allocation policy here that make_node uses, to
  5500.        ensure that this lives as long as the rest of the struct decl.
  5501.        All decls in an inline function need to be saved.  */
  5502.     if (allocation_temporary_p ())
  5503.       space = savealloc (sizeof (struct lang_type) + len * sizeof (tree));
  5504.     else
  5505.       space = oballoc (sizeof (struct lang_type) + len * sizeof (tree));
  5506.  
  5507.     TYPE_LANG_SPECIFIC (t) = (struct lang_type *) space;
  5508.     TYPE_LANG_SPECIFIC (t)->len = len;
  5509.  
  5510.     field_array = &TYPE_LANG_SPECIFIC (t)->elts[0];
  5511.     len = 0;
  5512.     for (x = fieldlist; x; x = TREE_CHAIN (x))
  5513.       field_array[len++] = x;
  5514.  
  5515.     qsort (field_array, len, sizeof (tree), field_decl_cmp);
  5516.       }
  5517.   }
  5518.  
  5519.   for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
  5520.     {
  5521.       TYPE_FIELDS (x) = TYPE_FIELDS (t);
  5522.       TYPE_LANG_SPECIFIC (x) = TYPE_LANG_SPECIFIC (t);
  5523.       TYPE_ALIGN (x) = TYPE_ALIGN (t);
  5524.     }
  5525.  
  5526.   /* Promote each bit-field's type to int if it is narrower than that.  */
  5527.   for (x = fieldlist; x; x = TREE_CHAIN (x))
  5528.     if (DECL_BIT_FIELD (x)
  5529.     && (C_PROMOTING_INTEGER_TYPE_P (TREE_TYPE (x))
  5530.         || DECL_FIELD_SIZE (x) < TYPE_PRECISION (integer_type_node)))
  5531.       {
  5532.     tree type = TREE_TYPE (x);
  5533.  
  5534.     /* Preserve unsignedness if traditional
  5535.        or if not really getting any wider.  */
  5536.     if (TREE_UNSIGNED (type)
  5537.         && (flag_traditional
  5538.         ||
  5539.         (TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node)
  5540.          &&
  5541.          DECL_FIELD_SIZE (x) == TYPE_PRECISION (integer_type_node))))
  5542.       TREE_TYPE (x) = unsigned_type_node;
  5543.     else
  5544.       TREE_TYPE (x) = integer_type_node;
  5545.       }
  5546.  
  5547.   /* If this structure or union completes the type of any previous
  5548.      variable declaration, lay it out and output its rtl.  */
  5549.  
  5550.   if (current_binding_level->n_incomplete != 0)
  5551.     {
  5552.       tree decl;
  5553.       for (decl = current_binding_level->names; decl; decl = TREE_CHAIN (decl))
  5554.     {
  5555.       if (TREE_TYPE (decl) == t
  5556.           && TREE_CODE (decl) != TYPE_DECL)
  5557.         {
  5558.           layout_decl (decl, 0);
  5559.           /* This is a no-op in c-lang.c or something real in objc-actions.c.  */
  5560.           maybe_objc_check_decl (decl);
  5561.           rest_of_decl_compilation (decl, NULL_PTR, toplevel, 0);
  5562.           if (! toplevel)
  5563.         expand_decl (decl);
  5564.           --current_binding_level->n_incomplete;
  5565.         }
  5566.       else if (TYPE_SIZE (TREE_TYPE (decl)) == 0
  5567.            && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
  5568.         {
  5569.           tree element = TREE_TYPE (decl);
  5570.           while (TREE_CODE (element) == ARRAY_TYPE)
  5571.         element = TREE_TYPE (element);
  5572.           if (element == t)
  5573.         layout_array_type (TREE_TYPE (decl));
  5574.         }
  5575.     }
  5576.     }
  5577.  
  5578.   resume_momentary (old_momentary);
  5579.  
  5580.   /* Finish debugging output for this type.  */
  5581.   rest_of_type_compilation (t, toplevel);
  5582.  
  5583.   /* The matching push is in start_struct.  */
  5584.   pop_obstacks ();
  5585.  
  5586.   return t;
  5587. }
  5588.  
  5589. /* Lay out the type T, and its element type, and so on.  */
  5590.  
  5591. static void
  5592. layout_array_type (t)
  5593.      tree t;
  5594. {
  5595.   if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
  5596.     layout_array_type (TREE_TYPE (t));
  5597.   layout_type (t);
  5598. }
  5599.  
  5600. /* Begin compiling the definition of an enumeration type.
  5601.    NAME is its name (or null if anonymous).
  5602.    Returns the type object, as yet incomplete.
  5603.    Also records info about it so that build_enumerator
  5604.    may be used to declare the individual values as they are read.  */
  5605.  
  5606. tree
  5607. start_enum (name)
  5608.      tree name;
  5609. {
  5610.   register tree enumtype = 0;
  5611.  
  5612.   /* If this is the real definition for a previous forward reference,
  5613.      fill in the contents in the same object that used to be the
  5614.      forward reference.  */
  5615.  
  5616.   if (name != 0)
  5617.     enumtype = lookup_tag (ENUMERAL_TYPE, name, current_binding_level, 1);
  5618.  
  5619.   /* The corresponding pop_obstacks is in finish_enum.  */
  5620.   push_obstacks_nochange ();
  5621.   /* If these symbols and types are global, make them permanent.  */
  5622.   if (current_binding_level == global_binding_level)
  5623.     end_temporary_allocation ();
  5624.  
  5625.   if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
  5626.     {
  5627.       enumtype = make_node (ENUMERAL_TYPE);
  5628.       pushtag (name, enumtype);
  5629.     }
  5630.  
  5631.   C_TYPE_BEING_DEFINED (enumtype) = 1;
  5632.  
  5633.   if (TYPE_VALUES (enumtype) != 0)
  5634.     {
  5635.       /* This enum is a named one that has been declared already.  */
  5636.       error ("redeclaration of `enum %s'", IDENTIFIER_POINTER (name));
  5637.  
  5638.       /* Completely replace its old definition.
  5639.      The old enumerators remain defined, however.  */
  5640.       TYPE_VALUES (enumtype) = 0;
  5641.     }
  5642.  
  5643.   enum_next_value = integer_zero_node;
  5644.   enum_overflow = 0;
  5645.  
  5646.   return enumtype;
  5647. }
  5648.  
  5649. /* Return the minimum number of bits needed to represent VALUE in a
  5650.    signed or unsigned type, UNSIGNEDP says which.  */
  5651.  
  5652. static int
  5653. min_precision (value, unsignedp)
  5654.      tree value;
  5655.      int unsignedp;
  5656. {
  5657.   int log;
  5658.  
  5659.   /* If the value is negative, compute its negative minus 1.  The latter
  5660.      adjustment is because the absolute value of the largest negative value
  5661.      is one larger than the largest positive value.  This is equivalent to
  5662.      a bit-wise negation, so use that operation instead.  */
  5663.  
  5664.   if (tree_int_cst_sgn (value) < 0)
  5665.     value = fold (build1 (BIT_NOT_EXPR, TREE_TYPE (value), value));
  5666.  
  5667.   /* Return the number of bits needed, taking into account the fact
  5668.      that we need one more bit for a signed than unsigned type.  */
  5669.  
  5670.   if (integer_zerop (value))
  5671.     log = 0;
  5672.   else if (TREE_INT_CST_HIGH (value) != 0)
  5673.     log = HOST_BITS_PER_WIDE_INT + floor_log2 (TREE_INT_CST_HIGH (value));
  5674.   else
  5675.     log = floor_log2 (TREE_INT_CST_LOW (value));
  5676.  
  5677.   return log + 1 + ! unsignedp;
  5678. }
  5679.  
  5680. /* After processing and defining all the values of an enumeration type,
  5681.    install their decls in the enumeration type and finish it off.
  5682.    ENUMTYPE is the type object and VALUES a list of decl-value pairs.
  5683.    Returns ENUMTYPE.  */
  5684.  
  5685. tree
  5686. finish_enum (enumtype, values)
  5687.      register tree enumtype, values;
  5688. {
  5689.   register tree pair, tem;
  5690.   tree minnode = 0, maxnode = 0;
  5691.   int lowprec, highprec, precision;
  5692.   int toplevel = global_binding_level == current_binding_level;
  5693.  
  5694.   if (in_parm_level_p ())
  5695.     warning ("enum defined inside parms");
  5696.  
  5697.   /* Calculate the maximum value of any enumerator in this type.  */
  5698.  
  5699.   if (values == error_mark_node)
  5700.     minnode = maxnode = integer_zero_node;
  5701.   else
  5702.     for (pair = values; pair; pair = TREE_CHAIN (pair))
  5703.       {
  5704.     tree value = TREE_VALUE (pair);
  5705.     if (pair == values)
  5706.       minnode = maxnode = TREE_VALUE (pair);
  5707.     else
  5708.       {
  5709.         if (tree_int_cst_lt (maxnode, value))
  5710.           maxnode = value;
  5711.         if (tree_int_cst_lt (value, minnode))
  5712.           minnode = value;
  5713.       }
  5714.       }
  5715.  
  5716.   TYPE_MIN_VALUE (enumtype) = minnode;
  5717.   TYPE_MAX_VALUE (enumtype) = maxnode;
  5718.  
  5719.   /* An enum can have some negative values; then it is signed.  */
  5720.   TREE_UNSIGNED (enumtype) = tree_int_cst_sgn (minnode) >= 0;
  5721.  
  5722.   /* Determine the precision this type needs.  */
  5723.  
  5724.   lowprec = min_precision (minnode, TREE_UNSIGNED (enumtype));
  5725.   highprec = min_precision (maxnode, TREE_UNSIGNED (enumtype));
  5726.   precision = MAX (lowprec, highprec);
  5727.  
  5728.   if (flag_short_enums || precision > TYPE_PRECISION (integer_type_node))
  5729.     /* Use the width of the narrowest normal C type which is wide enough.  */
  5730.     TYPE_PRECISION (enumtype) = TYPE_PRECISION (type_for_size (precision, 1));
  5731.   else
  5732.     TYPE_PRECISION (enumtype) = TYPE_PRECISION (integer_type_node);
  5733.  
  5734.   TYPE_SIZE (enumtype) = 0;
  5735.   layout_type (enumtype);
  5736.  
  5737.   if (values != error_mark_node)
  5738.     {
  5739.       /* Change the type of the enumerators to be the enum type.
  5740.      Formerly this was done only for enums that fit in an int,
  5741.      but the comment said it was done only for enums wider than int.
  5742.      It seems necessary to do this for wide enums,
  5743.      and best not to change what's done for ordinary narrower ones.  */
  5744.       for (pair = values; pair; pair = TREE_CHAIN (pair))
  5745.     {
  5746.       TREE_TYPE (TREE_PURPOSE (pair)) = enumtype;
  5747.       DECL_SIZE (TREE_PURPOSE (pair)) = TYPE_SIZE (enumtype);
  5748.       if (TREE_CODE (TREE_PURPOSE (pair)) != FUNCTION_DECL)
  5749.         DECL_ALIGN (TREE_PURPOSE (pair)) = TYPE_ALIGN (enumtype);
  5750.     }
  5751.  
  5752.       /* Replace the decl nodes in VALUES with their names.  */
  5753.       for (pair = values; pair; pair = TREE_CHAIN (pair))
  5754.     TREE_PURPOSE (pair) = DECL_NAME (TREE_PURPOSE (pair));
  5755.  
  5756.       TYPE_VALUES (enumtype) = values;
  5757.     }
  5758.  
  5759.   /* Fix up all variant types of this enum type.  */
  5760.   for (tem = TYPE_MAIN_VARIANT (enumtype); tem; tem = TYPE_NEXT_VARIANT (tem))
  5761.     {
  5762.       TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
  5763.       TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
  5764.       TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
  5765.       TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
  5766.       TYPE_MODE (tem) = TYPE_MODE (enumtype);
  5767.       TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
  5768.       TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
  5769.       TREE_UNSIGNED (tem) = TREE_UNSIGNED (enumtype);
  5770.     }
  5771.  
  5772.   /* Finish debugging output for this type.  */
  5773.   rest_of_type_compilation (enumtype, toplevel);
  5774.  
  5775.   /* This matches a push in start_enum.  */
  5776.   pop_obstacks ();
  5777.  
  5778.   return enumtype;
  5779. }
  5780.  
  5781. /* Build and install a CONST_DECL for one value of the
  5782.    current enumeration type (one that was begun with start_enum).
  5783.    Return a tree-list containing the CONST_DECL and its value.
  5784.    Assignment of sequential values by default is handled here.  */
  5785.  
  5786. tree
  5787. build_enumerator (name, value)
  5788.      tree name, value;
  5789. {
  5790.   register tree decl, type;
  5791.  
  5792.   /* Validate and default VALUE.  */
  5793.  
  5794.   /* Remove no-op casts from the value.  */
  5795.   if (value)
  5796.     STRIP_TYPE_NOPS (value);
  5797.  
  5798.   if (value != 0)
  5799.     {
  5800.       if (TREE_CODE (value) == INTEGER_CST)
  5801.     {
  5802.       value = default_conversion (value);
  5803.       constant_expression_warning (value);
  5804.     }
  5805.       else
  5806.     {
  5807.       error ("enumerator value for `%s' not integer constant",
  5808.          IDENTIFIER_POINTER (name));
  5809.       value = 0;
  5810.     }
  5811.     }
  5812.  
  5813.   /* Default based on previous value.  */
  5814.   /* It should no longer be possible to have NON_LVALUE_EXPR
  5815.      in the default.  */
  5816.   if (value == 0)
  5817.     {
  5818.       value = enum_next_value;
  5819.       if (enum_overflow)
  5820.     error ("overflow in enumeration values");
  5821.     }
  5822.  
  5823.   if (pedantic && ! int_fits_type_p (value, integer_type_node))
  5824.     {
  5825.       pedwarn ("ANSI C restricts enumerator values to range of `int'");
  5826.       value = integer_zero_node;
  5827.     }
  5828.  
  5829.   /* Set basis for default for next value.  */
  5830.   enum_next_value = build_binary_op (PLUS_EXPR, value, integer_one_node, 0);
  5831.   enum_overflow = tree_int_cst_lt (enum_next_value, value);
  5832.  
  5833.   /* Now create a declaration for the enum value name.  */
  5834.  
  5835.   type = TREE_TYPE (value);
  5836.   type = type_for_size (MAX (TYPE_PRECISION (type),
  5837.                  TYPE_PRECISION (integer_type_node)),
  5838.             ((flag_traditional
  5839.               || TYPE_PRECISION (type) >= TYPE_PRECISION (integer_type_node))
  5840.              && TREE_UNSIGNED (type)));
  5841.  
  5842.   decl = build_decl (CONST_DECL, name, type);
  5843.   DECL_INITIAL (decl) = value;
  5844.   TREE_TYPE (value) = type;
  5845.   pushdecl (decl);
  5846.  
  5847.   return saveable_tree_cons (decl, value, NULL_TREE);
  5848. }
  5849.  
  5850. /* Create the FUNCTION_DECL for a function definition.
  5851.    DECLSPECS and DECLARATOR are the parts of the declaration;
  5852.    they describe the function's name and the type it returns,
  5853.    but twisted together in a fashion that parallels the syntax of C.
  5854.  
  5855.    This function creates a binding context for the function body
  5856.    as well as setting up the FUNCTION_DECL in current_function_decl.
  5857.  
  5858.    Returns 1 on success.  If the DECLARATOR is not suitable for a function
  5859.    (it defines a datum instead), we return 0, which tells
  5860.    yyparse to report a parse error.
  5861.  
  5862.    NESTED is nonzero for a function nested within another function.  */
  5863.  
  5864. int
  5865. start_function (declspecs, declarator, nested)
  5866.      tree declarator, declspecs;
  5867.      int nested;
  5868. {
  5869.   tree decl1, old_decl;
  5870.   tree restype;
  5871.  
  5872.   current_function_returns_value = 0;  /* Assume, until we see it does. */
  5873.   current_function_returns_null = 0;
  5874.   warn_about_return_type = 0;
  5875.   current_extern_inline = 0;
  5876.   c_function_varargs = 0;
  5877.   named_labels = 0;
  5878.   shadowed_labels = 0;
  5879.  
  5880.   decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1);
  5881.  
  5882.   /* If the declarator is not suitable for a function definition,
  5883.      cause a syntax error.  */
  5884.   if (decl1 == 0)
  5885.     return 0;
  5886.  
  5887.   announce_function (decl1);
  5888.  
  5889.   if (TYPE_SIZE (TREE_TYPE (TREE_TYPE (decl1))) == 0)
  5890.     {
  5891.       error ("return-type is an incomplete type");
  5892.       /* Make it return void instead.  */
  5893.       TREE_TYPE (decl1)
  5894.     = build_function_type (void_type_node,
  5895.                    TYPE_ARG_TYPES (TREE_TYPE (decl1)));
  5896.     }
  5897.  
  5898.   if (warn_about_return_type)
  5899.     warning ("return-type defaults to `int'");
  5900.  
  5901.   /* Save the parm names or decls from this function's declarator
  5902.      where store_parm_decls will find them.  */
  5903.   current_function_parms = last_function_parms;
  5904.   current_function_parm_tags = last_function_parm_tags;
  5905.  
  5906.   /* Make the init_value nonzero so pushdecl knows this is not tentative.
  5907.      error_mark_node is replaced below (in poplevel) with the BLOCK.  */
  5908.   DECL_INITIAL (decl1) = error_mark_node;
  5909.  
  5910.   /* If this definition isn't a prototype and we had a prototype declaration
  5911.      before, copy the arg type info from that prototype.
  5912.      But not if what we had before was a builtin function.  */
  5913.   old_decl = lookup_name_current_level (DECL_NAME (decl1));
  5914.   if (old_decl != 0 && TREE_CODE (TREE_TYPE (old_decl)) == FUNCTION_TYPE
  5915.       && !DECL_BUILT_IN (old_decl)
  5916.       && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
  5917.       == TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (old_decl))))
  5918.       && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0)
  5919.     {
  5920.       TREE_TYPE (decl1) = TREE_TYPE (old_decl);
  5921.       current_function_prototype_file = DECL_SOURCE_FILE (old_decl);
  5922.       current_function_prototype_line = DECL_SOURCE_LINE (old_decl);
  5923.     }
  5924.  
  5925.   /* Optionally warn of old-fashioned def with no previous prototype.  */
  5926.   if (warn_strict_prototypes
  5927.       && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0
  5928.       && !(old_decl != 0 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0))
  5929.     warning ("function declaration isn't a prototype");
  5930.   /* Optionally warn of any global def with no previous prototype.  */
  5931.   else if (warn_missing_prototypes
  5932.        && TREE_PUBLIC (decl1)
  5933.        && !(old_decl != 0 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0)
  5934.        && strcmp ("main", IDENTIFIER_POINTER (DECL_NAME (decl1))))
  5935.     warning_with_decl (decl1, "no previous prototype for `%s'");
  5936.   /* Optionally warn of any def with no previous prototype
  5937.      if the function has already been used.  */
  5938.   else if (warn_missing_prototypes
  5939.        && old_decl != 0 && TREE_USED (old_decl)
  5940.        && !(old_decl != 0 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0))
  5941.     warning_with_decl (decl1,
  5942.               "`%s' was used with no prototype before its definition");
  5943.   /* Optionally warn of any global def with no previous declaration.  */
  5944.   else if (warn_missing_declarations
  5945.        && TREE_PUBLIC (decl1)
  5946.        && old_decl == 0
  5947.        && strcmp ("main", IDENTIFIER_POINTER (DECL_NAME (decl1))))
  5948.     warning_with_decl (decl1, "no previous declaration for `%s'");
  5949.   /* Optionally warn of any def with no previous declaration
  5950.      if the function has already been used.  */
  5951.   else if (warn_missing_declarations
  5952.        && old_decl != 0 && TREE_USED (old_decl))
  5953.     warning_with_decl (decl1,
  5954.             "`%s' was used with no declaration before its definition");
  5955.  
  5956.   /* This is a definition, not a reference.
  5957.      So normally clear DECL_EXTERNAL.
  5958.      However, `extern inline' acts like a declaration
  5959.      except for defining how to inline.  So set DECL_EXTERNAL in that case.  */
  5960.   DECL_EXTERNAL (decl1) = current_extern_inline;
  5961.  
  5962.   /* This function exists in static storage.
  5963.      (This does not mean `static' in the C sense!)  */
  5964.   TREE_STATIC (decl1) = 1;
  5965.  
  5966.   /* A nested function is not global.  */
  5967.   if (current_function_decl != 0)
  5968.     TREE_PUBLIC (decl1) = 0;
  5969.  
  5970.   /* Record the decl so that the function name is defined.
  5971.      If we already have a decl for this name, and it is a FUNCTION_DECL,
  5972.      use the old decl.  */
  5973.  
  5974.   current_function_decl = pushdecl (decl1);
  5975.  
  5976.   pushlevel (0);
  5977.   declare_parm_level (1);
  5978.   current_binding_level->subblocks_tag_transparent = 1;
  5979.  
  5980.   make_function_rtl (current_function_decl);
  5981.  
  5982.   restype = TREE_TYPE (TREE_TYPE (current_function_decl));
  5983.   /* Promote the value to int before returning it.  */
  5984.   if (C_PROMOTING_INTEGER_TYPE_P (restype))
  5985.     {
  5986.       /* It retains unsignedness if traditional
  5987.      or if not really getting wider.  */
  5988.       if (TREE_UNSIGNED (restype)
  5989.       && (flag_traditional
  5990.           || (TYPE_PRECISION (restype)
  5991.           == TYPE_PRECISION (integer_type_node))))
  5992.     restype = unsigned_type_node;
  5993.       else
  5994.     restype = integer_type_node;
  5995.     }
  5996.   DECL_RESULT (current_function_decl)
  5997.     = build_decl (RESULT_DECL, NULL_TREE, restype);
  5998.  
  5999.   if (!nested)
  6000.     /* Allocate further tree nodes temporarily during compilation
  6001.        of this function only.  */
  6002.     temporary_allocation ();
  6003.  
  6004.   /* If this fcn was already referenced via a block-scope `extern' decl
  6005.      (or an implicit decl), propagate certain information about the usage.  */
  6006.   if (TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (current_function_decl)))
  6007.     TREE_ADDRESSABLE (current_function_decl) = 1;
  6008.  
  6009.   return 1;
  6010. }
  6011.  
  6012. /* Record that this function is going to be a varargs function.
  6013.    This is called before store_parm_decls, which is too early
  6014.    to call mark_varargs directly.  */
  6015.  
  6016. void
  6017. c_mark_varargs ()
  6018. {
  6019.   c_function_varargs = 1;
  6020. }
  6021.  
  6022. /* Store the parameter declarations into the current function declaration.
  6023.    This is called after parsing the parameter declarations, before
  6024.    digesting the body of the function.
  6025.  
  6026.    For an old-style definition, modify the function's type
  6027.    to specify at least the number of arguments.  */
  6028.  
  6029. void
  6030. store_parm_decls ()
  6031. {
  6032.   register tree fndecl = current_function_decl;
  6033.   register tree parm;
  6034.  
  6035.   /* This is either a chain of PARM_DECLs (if a prototype was used)
  6036.      or a list of IDENTIFIER_NODEs (for an old-fashioned C definition).  */
  6037.   tree specparms = current_function_parms;
  6038.  
  6039.   /* This is a list of types declared among parms in a prototype.  */
  6040.   tree parmtags = current_function_parm_tags;
  6041.  
  6042.   /* This is a chain of PARM_DECLs from old-style parm declarations.  */
  6043.   register tree parmdecls = getdecls ();
  6044.  
  6045.   /* This is a chain of any other decls that came in among the parm
  6046.      declarations.  If a parm is declared with  enum {foo, bar} x;
  6047.      then CONST_DECLs for foo and bar are put here.  */
  6048.   tree nonparms = 0;
  6049.  
  6050.   /* Nonzero if this definition is written with a prototype.  */
  6051.   int prototype = 0;
  6052.  
  6053.   if (specparms != 0 && TREE_CODE (specparms) != TREE_LIST)
  6054.     {
  6055.       /* This case is when the function was defined with an ANSI prototype.
  6056.      The parms already have decls, so we need not do anything here
  6057.      except record them as in effect
  6058.      and complain if any redundant old-style parm decls were written.  */
  6059.  
  6060.       register tree next;
  6061.       tree others = 0;
  6062.  
  6063.       prototype = 1;
  6064.  
  6065.       if (parmdecls != 0)
  6066.     {
  6067.       tree decl, link;
  6068.  
  6069.       error_with_decl (fndecl,
  6070.                "parm types given both in parmlist and separately");
  6071.       /* Get rid of the erroneous decls; don't keep them on
  6072.          the list of parms, since they might not be PARM_DECLs.  */
  6073.       for (decl = current_binding_level->names;
  6074.            decl; decl = TREE_CHAIN (decl))
  6075.         if (DECL_NAME (decl))
  6076.           IDENTIFIER_LOCAL_VALUE (DECL_NAME (decl)) = 0;
  6077.       for (link = current_binding_level->shadowed;
  6078.            link; link = TREE_CHAIN (link))
  6079.         IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
  6080.       current_binding_level->names = 0;
  6081.       current_binding_level->shadowed = 0;
  6082.     }
  6083.  
  6084.       specparms = nreverse (specparms);
  6085.       for (parm = specparms; parm; parm = next)
  6086.     {
  6087.       next = TREE_CHAIN (parm);
  6088.       if (TREE_CODE (parm) == PARM_DECL)
  6089.         {
  6090.           if (DECL_NAME (parm) == 0)
  6091.         error_with_decl (parm, "parameter name omitted");
  6092.           else if (TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == void_type_node)
  6093.         {
  6094.           error_with_decl (parm, "parameter `%s' declared void");
  6095.           /* Change the type to error_mark_node so this parameter
  6096.              will be ignored by assign_parms.  */
  6097.           TREE_TYPE (parm) = error_mark_node;
  6098.         }
  6099.           pushdecl (parm);
  6100.         }
  6101.       else
  6102.         {
  6103.           /* If we find an enum constant or a type tag,
  6104.          put it aside for the moment.  */
  6105.           TREE_CHAIN (parm) = 0;
  6106.           others = chainon (others, parm);
  6107.         }
  6108.     }
  6109.  
  6110.       /* Get the decls in their original chain order
  6111.      and record in the function.  */
  6112.       DECL_ARGUMENTS (fndecl) = getdecls ();
  6113.  
  6114. #if 0
  6115.       /* If this function takes a variable number of arguments,
  6116.      add a phony parameter to the end of the parm list,
  6117.      to represent the position of the first unnamed argument.  */
  6118.       if (TREE_VALUE (tree_last (TYPE_ARG_TYPES (TREE_TYPE (fndecl))))
  6119.       != void_type_node)
  6120.     {
  6121.       tree dummy = build_decl (PARM_DECL, NULL_TREE, void_type_node);
  6122.       /* Let's hope the address of the unnamed parm
  6123.          won't depend on its type.  */
  6124.       TREE_TYPE (dummy) = integer_type_node;
  6125.       DECL_ARG_TYPE (dummy) = integer_type_node;
  6126.       DECL_ARGUMENTS (fndecl)
  6127.         = chainon (DECL_ARGUMENTS (fndecl), dummy);
  6128.     }
  6129. #endif
  6130.  
  6131.       /* Now pushdecl the enum constants.  */
  6132.       for (parm = others; parm; parm = next)
  6133.     {
  6134.       next = TREE_CHAIN (parm);
  6135.       if (DECL_NAME (parm) == 0)
  6136.         ;
  6137.       else if (TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == void_type_node)
  6138.         ;
  6139.       else if (TREE_CODE (parm) != PARM_DECL)
  6140.         pushdecl (parm);
  6141.     }
  6142.  
  6143.       storetags (chainon (parmtags, gettags ()));
  6144.     }
  6145.   else
  6146.     {
  6147.       /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
  6148.      each with a parm name as the TREE_VALUE.
  6149.  
  6150.      PARMDECLS is a chain of declarations for parameters.
  6151.      Warning! It can also contain CONST_DECLs which are not parameters
  6152.      but are names of enumerators of any enum types
  6153.      declared among the parameters.
  6154.  
  6155.      First match each formal parameter name with its declaration.
  6156.      Associate decls with the names and store the decls
  6157.      into the TREE_PURPOSE slots.  */
  6158.  
  6159.       for (parm = parmdecls; parm; parm = TREE_CHAIN (parm))
  6160.     DECL_RESULT (parm) = 0;
  6161.  
  6162.       for (parm = specparms; parm; parm = TREE_CHAIN (parm))
  6163.     {
  6164.       register tree tail, found = NULL;
  6165.  
  6166.       if (TREE_VALUE (parm) == 0)
  6167.         {
  6168.           error_with_decl (fndecl, "parameter name missing from parameter list");
  6169.           TREE_PURPOSE (parm) = 0;
  6170.           continue;
  6171.         }
  6172.  
  6173.       /* See if any of the parmdecls specifies this parm by name.
  6174.          Ignore any enumerator decls.  */
  6175.       for (tail = parmdecls; tail; tail = TREE_CHAIN (tail))
  6176.         if (DECL_NAME (tail) == TREE_VALUE (parm)
  6177.         && TREE_CODE (tail) == PARM_DECL)
  6178.           {
  6179.         found = tail;
  6180.         break;
  6181.           }
  6182.  
  6183.       /* If declaration already marked, we have a duplicate name.
  6184.          Complain, and don't use this decl twice.   */
  6185.       if (found && DECL_RESULT (found) != 0)
  6186.         {
  6187.           error_with_decl (found, "multiple parameters named `%s'");
  6188.           found = 0;
  6189.         }
  6190.  
  6191.       /* If the declaration says "void", complain and ignore it.  */
  6192.       if (found && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == void_type_node)
  6193.         {
  6194.           error_with_decl (found, "parameter `%s' declared void");
  6195.           TREE_TYPE (found) = integer_type_node;
  6196.           DECL_ARG_TYPE (found) = integer_type_node;
  6197.           layout_decl (found, 0);
  6198.         }
  6199.  
  6200.       /* Traditionally, a parm declared float is actually a double.  */
  6201.       if (found && flag_traditional
  6202.           && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == float_type_node)
  6203.         {
  6204.           TREE_TYPE (found) = double_type_node;
  6205.           DECL_ARG_TYPE (found) = double_type_node;
  6206.           layout_decl (found, 0);
  6207.         }
  6208.  
  6209.       /* If no declaration found, default to int.  */
  6210.       if (!found)
  6211.         {
  6212.           found = build_decl (PARM_DECL, TREE_VALUE (parm),
  6213.                   integer_type_node);
  6214.           DECL_ARG_TYPE (found) = TREE_TYPE (found);
  6215.           DECL_SOURCE_LINE (found) = DECL_SOURCE_LINE (fndecl);
  6216.           DECL_SOURCE_FILE (found) = DECL_SOURCE_FILE (fndecl);
  6217.           if (extra_warnings)
  6218.         warning_with_decl (found, "type of `%s' defaults to `int'");
  6219.           pushdecl (found);
  6220.         }
  6221.  
  6222.       TREE_PURPOSE (parm) = found;
  6223.  
  6224.       /* Mark this decl as "already found" -- see test, above.
  6225.          It is safe to use DECL_RESULT for this
  6226.          since it is not used in PARM_DECLs or CONST_DECLs.  */
  6227.       DECL_RESULT (found) = error_mark_node;
  6228.     }
  6229.  
  6230.       /* Put anything which is on the parmdecls chain and which is
  6231.      not a PARM_DECL onto the list NONPARMS.  (The types of
  6232.      non-parm things which might appear on the list include
  6233.      enumerators and NULL-named TYPE_DECL nodes.) Complain about
  6234.      any actual PARM_DECLs not matched with any names.  */
  6235.  
  6236.       nonparms = 0;
  6237.       for (parm = parmdecls; parm; )
  6238.     {
  6239.       tree next = TREE_CHAIN (parm);
  6240.       TREE_CHAIN (parm) = 0;
  6241.  
  6242.       if (TREE_CODE (parm) != PARM_DECL)
  6243.         nonparms = chainon (nonparms, parm);
  6244.       else
  6245.         {
  6246.           /* Complain about args with incomplete types.  */
  6247.           if (TYPE_SIZE (TREE_TYPE (parm)) == 0)
  6248.             {
  6249.               error_with_decl (parm, "parameter `%s' has incomplete type");
  6250.               TREE_TYPE (parm) = error_mark_node;
  6251.             }
  6252.  
  6253.           if (DECL_RESULT (parm) == 0)
  6254.             {
  6255.               error_with_decl (parm,
  6256.                        "declaration for parameter `%s' but no such parameter");
  6257.               /* Pretend the parameter was not missing.
  6258.              This gets us to a standard state and minimizes
  6259.              further error messages.  */
  6260.               specparms
  6261.             = chainon (specparms,
  6262.                    tree_cons (parm, NULL_TREE, NULL_TREE));
  6263.         }
  6264.         }
  6265.  
  6266.       parm = next;
  6267.     }
  6268.  
  6269.       /* Chain the declarations together in the order of the list of names.  */
  6270.       /* Store that chain in the function decl, replacing the list of names.  */
  6271.       parm = specparms;
  6272.       DECL_ARGUMENTS (fndecl) = 0;
  6273.       {
  6274.     register tree last;
  6275.     for (last = 0; parm; parm = TREE_CHAIN (parm))
  6276.       if (TREE_PURPOSE (parm))
  6277.         {
  6278.           if (last == 0)
  6279.         DECL_ARGUMENTS (fndecl) = TREE_PURPOSE (parm);
  6280.           else
  6281.         TREE_CHAIN (last) = TREE_PURPOSE (parm);
  6282.           last = TREE_PURPOSE (parm);
  6283.           TREE_CHAIN (last) = 0;
  6284.         }
  6285.       }
  6286.  
  6287.       /* If there was a previous prototype,
  6288.      set the DECL_ARG_TYPE of each argument according to
  6289.      the type previously specified, and report any mismatches.  */
  6290.  
  6291.       if (TYPE_ARG_TYPES (TREE_TYPE (fndecl)))
  6292.     {
  6293.       register tree type;
  6294.       for (parm = DECL_ARGUMENTS (fndecl),
  6295.            type = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
  6296.            parm || (type && (TYPE_MAIN_VARIANT (TREE_VALUE (type))
  6297.                  != void_type_node));
  6298.            parm = TREE_CHAIN (parm), type = TREE_CHAIN (type))
  6299.         {
  6300.           if (parm == 0 || type == 0
  6301.           || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
  6302.         {
  6303.           error ("number of arguments doesn't match prototype");
  6304.           error_with_file_and_line (current_function_prototype_file,
  6305.                         current_function_prototype_line,
  6306.                         "prototype declaration");
  6307.           break;
  6308.         }
  6309.           /* Type for passing arg must be consistent
  6310.          with that declared for the arg.  */
  6311.           if (! comptypes (DECL_ARG_TYPE (parm), TREE_VALUE (type)))
  6312.         {
  6313.           if (TYPE_MAIN_VARIANT (TREE_TYPE (parm))
  6314.               == TYPE_MAIN_VARIANT (TREE_VALUE (type)))
  6315.             {
  6316.               /* Adjust argument to match prototype.  E.g. a previous
  6317.              `int foo(float);' prototype causes
  6318.              `int foo(x) float x; {...}' to be treated like
  6319.              `int foo(float x) {...}'.  This is particularly
  6320.              useful for argument types like uid_t.  */
  6321.               DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
  6322. #ifdef PROMOTE_PROTOTYPES
  6323.               if ((TREE_CODE (TREE_TYPE (parm)) == INTEGER_TYPE
  6324.                || TREE_CODE (TREE_TYPE (parm)) == ENUMERAL_TYPE)
  6325.               && TYPE_PRECISION (TREE_TYPE (parm))
  6326.               < TYPE_PRECISION (integer_type_node))
  6327.             DECL_ARG_TYPE (parm) = integer_type_node;
  6328. #endif
  6329.               if (pedantic)
  6330.             {
  6331.               pedwarn ("promoted argument `%s' doesn't match prototype",
  6332.                    IDENTIFIER_POINTER (DECL_NAME (parm)));
  6333.               warning_with_file_and_line
  6334.                 (current_function_prototype_file,
  6335.                  current_function_prototype_line,
  6336.                  "prototype declaration");
  6337.             }
  6338.             }
  6339.           /* If -traditional, allow `int' argument to match
  6340.              `unsigned' prototype.  */
  6341.           else if (! (flag_traditional
  6342.                   && TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == integer_type_node
  6343.                   && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == unsigned_type_node))
  6344.             {
  6345.               error ("argument `%s' doesn't match prototype",
  6346.                  IDENTIFIER_POINTER (DECL_NAME (parm)));
  6347.               error_with_file_and_line (current_function_prototype_file,
  6348.                         current_function_prototype_line,
  6349.                         "prototype declaration");
  6350.             }
  6351.         }
  6352.         }
  6353.       TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = 0;
  6354.     }
  6355.  
  6356.       /* Otherwise, create a prototype that would match.  */
  6357.  
  6358.       else
  6359.     {
  6360.       tree actual = 0, last = 0, type;
  6361.  
  6362.       for (parm = DECL_ARGUMENTS (fndecl); parm; parm = TREE_CHAIN (parm))
  6363.         {
  6364.           type = perm_tree_cons (NULL_TREE, DECL_ARG_TYPE (parm),
  6365.                      NULL_TREE);
  6366.           if (last)
  6367.         TREE_CHAIN (last) = type;
  6368.           else
  6369.         actual = type;
  6370.           last = type;
  6371.         }
  6372.       type = perm_tree_cons (NULL_TREE, void_type_node, NULL_TREE);
  6373.       if (last)
  6374.         TREE_CHAIN (last) = type;
  6375.       else
  6376.         actual = type;
  6377.  
  6378.       /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
  6379.          of the type of this function, but we need to avoid having this
  6380.          affect the types of other similarly-typed functions, so we must
  6381.          first force the generation of an identical (but separate) type
  6382.          node for the relevant function type.  The new node we create
  6383.          will be a variant of the main variant of the original function
  6384.          type.  */
  6385.  
  6386.       TREE_TYPE (fndecl) = build_type_copy (TREE_TYPE (fndecl));
  6387.  
  6388.       TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = actual;
  6389.     }
  6390.  
  6391.       /* Now store the final chain of decls for the arguments
  6392.      as the decl-chain of the current lexical scope.
  6393.      Put the enumerators in as well, at the front so that
  6394.      DECL_ARGUMENTS is not modified.  */
  6395.  
  6396.       storedecls (chainon (nonparms, DECL_ARGUMENTS (fndecl)));
  6397.     }
  6398.  
  6399.   /* Make sure the binding level for the top of the function body
  6400.      gets a BLOCK if there are any in the function.
  6401.      Otherwise, the dbx output is wrong.  */
  6402.  
  6403.   keep_next_if_subblocks = 1;
  6404.  
  6405.   /* ??? This might be an improvement,
  6406.      but needs to be thought about some more.  */
  6407. #if 0
  6408.   keep_next_level_flag = 1;
  6409. #endif
  6410.  
  6411.   /* Write a record describing this function definition to the prototypes
  6412.      file (if requested).  */
  6413.  
  6414.   gen_aux_info_record (fndecl, 1, 0, prototype);
  6415.  
  6416.   /* Initialize the RTL code for the function.  */
  6417.  
  6418.   init_function_start (fndecl, input_filename, lineno);
  6419.  
  6420.   /* If this is a varargs function, inform function.c.  */
  6421.  
  6422.   if (c_function_varargs)
  6423.     mark_varargs ();
  6424.  
  6425.   /* Declare __FUNCTION__ and __PRETTY_FUNCTION__ for this function.  */
  6426.  
  6427.   declare_function_name ();
  6428.  
  6429.   /* Set up parameters and prepare for return, for the function.  */
  6430.  
  6431.   expand_function_start (fndecl, 0);
  6432.  
  6433.   /* If this function is `main', emit a call to `__main'
  6434.      to run global initializers, etc.  */
  6435.   if (DECL_NAME (fndecl)
  6436.       && strcmp (IDENTIFIER_POINTER (DECL_NAME (fndecl)), "main") == 0
  6437.       && DECL_CONTEXT (fndecl) == NULL_TREE)
  6438.     expand_main_function ();
  6439. }
  6440.  
  6441. /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
  6442.    each with a parm name as the TREE_VALUE.  A null pointer as TREE_VALUE
  6443.    stands for an ellipsis in the identifier list.
  6444.  
  6445.    PARMLIST is the data returned by get_parm_info for the
  6446.    parmlist that follows the semicolon.
  6447.  
  6448.    We return a value of the same sort that get_parm_info returns,
  6449.    except that it describes the combination of identifiers and parmlist.  */
  6450.  
  6451. tree
  6452. combine_parm_decls (specparms, parmlist, void_at_end)
  6453.      tree specparms, parmlist;
  6454.      int void_at_end;
  6455. {
  6456.   register tree fndecl = current_function_decl;
  6457.   register tree parm;
  6458.  
  6459.   tree parmdecls = TREE_PURPOSE (parmlist);
  6460.  
  6461.   /* This is a chain of any other decls that came in among the parm
  6462.      declarations.  They were separated already by get_parm_info,
  6463.      so we just need to keep them separate.  */
  6464.   tree nonparms = TREE_VALUE (parmlist);
  6465.  
  6466.   tree types = 0;
  6467.  
  6468.   for (parm = parmdecls; parm; parm = TREE_CHAIN (parm))
  6469.     DECL_RESULT (parm) = 0;
  6470.  
  6471.   for (parm = specparms; parm; parm = TREE_CHAIN (parm))
  6472.     {
  6473.       register tree tail, found = NULL;
  6474.  
  6475.       /* See if any of the parmdecls specifies this parm by name.  */
  6476.       for (tail = parmdecls; tail; tail = TREE_CHAIN (tail))
  6477.     if (DECL_NAME (tail) == TREE_VALUE (parm))
  6478.       {
  6479.         found = tail;
  6480.         break;
  6481.       }
  6482.  
  6483.       /* If declaration already marked, we have a duplicate name.
  6484.      Complain, and don't use this decl twice.   */
  6485.       if (found && DECL_RESULT (found) != 0)
  6486.     {
  6487.       error_with_decl (found, "multiple parameters named `%s'");
  6488.       found = 0;
  6489.     }
  6490.  
  6491.       /* If the declaration says "void", complain and ignore it.  */
  6492.       if (found && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == void_type_node)
  6493.     {
  6494.       error_with_decl (found, "parameter `%s' declared void");
  6495.       TREE_TYPE (found) = integer_type_node;
  6496.       DECL_ARG_TYPE (found) = integer_type_node;
  6497.       layout_decl (found, 0);
  6498.     }
  6499.  
  6500.       /* Traditionally, a parm declared float is actually a double.  */
  6501.       if (found && flag_traditional
  6502.       && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == float_type_node)
  6503.     {
  6504.       TREE_TYPE (found) = double_type_node;
  6505.       DECL_ARG_TYPE (found) = double_type_node;
  6506.       layout_decl (found, 0);
  6507.     }
  6508.  
  6509.       /* If no declaration found, default to int.  */
  6510.       if (!found)
  6511.     {
  6512.       found = build_decl (PARM_DECL, TREE_VALUE (parm),
  6513.                   integer_type_node);
  6514.       DECL_ARG_TYPE (found) = TREE_TYPE (found);
  6515.       DECL_SOURCE_LINE (found) = DECL_SOURCE_LINE (fndecl);
  6516.       DECL_SOURCE_FILE (found) = DECL_SOURCE_FILE (fndecl);
  6517.       error_with_decl (found, "type of parameter `%s' is not declared");
  6518.       pushdecl (found);
  6519.     }
  6520.  
  6521.       TREE_PURPOSE (parm) = found;
  6522.  
  6523.       /* Mark this decl as "already found" -- see test, above.
  6524.      It is safe to use DECL_RESULT for this
  6525.      since it is not used in PARM_DECLs or CONST_DECLs.  */
  6526.       DECL_RESULT (found) = error_mark_node;
  6527.     }
  6528.  
  6529.   /* Complain about any actual PARM_DECLs not matched with any names.  */
  6530.  
  6531.   for (parm = parmdecls; parm; )
  6532.     {
  6533.       tree next = TREE_CHAIN (parm);
  6534.       TREE_CHAIN (parm) = 0;
  6535.  
  6536.       /* Complain about args with incomplete types.  */
  6537.       if (TYPE_SIZE (TREE_TYPE (parm)) == 0)
  6538.     {
  6539.       error_with_decl (parm, "parameter `%s' has incomplete type");
  6540.       TREE_TYPE (parm) = error_mark_node;
  6541.     }
  6542.  
  6543.       if (DECL_RESULT (parm) == 0)
  6544.     {
  6545.       error_with_decl (parm,
  6546.                "declaration for parameter `%s' but no such parameter");
  6547.       /* Pretend the parameter was not missing.
  6548.          This gets us to a standard state and minimizes
  6549.          further error messages.  */
  6550.       specparms
  6551.         = chainon (specparms,
  6552.                tree_cons (parm, NULL_TREE, NULL_TREE));
  6553.     }
  6554.  
  6555.       parm = next;
  6556.     }
  6557.  
  6558.   /* Chain the declarations together in the order of the list of names.
  6559.      At the same time, build up a list of their types, in reverse order.  */
  6560.  
  6561.   parm = specparms;
  6562.   parmdecls = 0;
  6563.   {
  6564.     register tree last;
  6565.     for (last = 0; parm; parm = TREE_CHAIN (parm))
  6566.       if (TREE_PURPOSE (parm))
  6567.     {
  6568.       if (last == 0)
  6569.         parmdecls = TREE_PURPOSE (parm);
  6570.       else
  6571.         TREE_CHAIN (last) = TREE_PURPOSE (parm);
  6572.       last = TREE_PURPOSE (parm);
  6573.       TREE_CHAIN (last) = 0;
  6574.  
  6575.       types = saveable_tree_cons (NULL_TREE, TREE_TYPE (parm), types);
  6576.     }
  6577.   }
  6578.   
  6579.   if (void_at_end)
  6580.     return saveable_tree_cons (parmdecls, nonparms,
  6581.                    nreverse (saveable_tree_cons (NULL_TREE, void_type_node, types)));
  6582.  
  6583.   return saveable_tree_cons (parmdecls, nonparms, nreverse (types));
  6584. }
  6585.  
  6586. /* Finish up a function declaration and compile that function
  6587.    all the way to assembler language output.  The free the storage
  6588.    for the function definition.
  6589.  
  6590.    This is called after parsing the body of the function definition.
  6591.  
  6592.    NESTED is nonzero if the function being finished is nested in another.  */
  6593.  
  6594. void
  6595. finish_function (nested)
  6596.      int nested;
  6597. {
  6598.   register tree fndecl = current_function_decl;
  6599.  
  6600. /*  TREE_READONLY (fndecl) = 1;
  6601.     This caused &foo to be of type ptr-to-const-function
  6602.     which then got a warning when stored in a ptr-to-function variable.  */
  6603.  
  6604.   poplevel (1, 0, 1);
  6605.   BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
  6606.  
  6607.   /* Must mark the RESULT_DECL as being in this function.  */
  6608.  
  6609.   DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
  6610.  
  6611.   /* Obey `register' declarations if `setjmp' is called in this fn.  */
  6612.   if (flag_traditional && current_function_calls_setjmp)
  6613.     {
  6614.       setjmp_protect (DECL_INITIAL (fndecl));
  6615.       setjmp_protect_args ();
  6616.     }
  6617.  
  6618. #ifdef DEFAULT_MAIN_RETURN
  6619.   if (! strcmp (IDENTIFIER_POINTER (DECL_NAME (fndecl)), "main"))
  6620.     {
  6621.       if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl)))
  6622.       != integer_type_node)
  6623.     warning_with_decl (fndecl, "return type of `%s' is not `int'");
  6624.       else
  6625.     {
  6626.       /* Make it so that `main' always returns success by default.  */
  6627.       DEFAULT_MAIN_RETURN;
  6628.     }
  6629.     }
  6630. #endif
  6631.  
  6632.   /* Generate rtl for function exit.  */
  6633.   expand_function_end (input_filename, lineno, 0);
  6634.  
  6635.   /* So we can tell if jump_optimize sets it to 1.  */
  6636.   can_reach_end = 0;
  6637.  
  6638.   /* Run the optimizers and output the assembler code for this function.  */
  6639.   rest_of_compilation (fndecl);
  6640.  
  6641.   current_function_returns_null |= can_reach_end;
  6642.  
  6643.   if (TREE_THIS_VOLATILE (fndecl) && current_function_returns_null)
  6644.     warning ("`noreturn' function does return");
  6645.   else if (warn_return_type && can_reach_end
  6646.        && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl))) != void_type_node)
  6647.     /* If this function returns non-void and control can drop through,
  6648.        complain.  */
  6649.     warning ("control reaches end of non-void function");
  6650.   /* With just -W, complain only if function returns both with
  6651.      and without a value.  */
  6652.   else if (extra_warnings
  6653.        && current_function_returns_value && current_function_returns_null)
  6654.     warning ("this function may return with or without a value");
  6655.  
  6656.   /* If requested, warn about function definitions where the function will
  6657.      return a value (usually of some struct or union type) which itself will
  6658.      take up a lot of stack space.  */
  6659.  
  6660.   if (warn_larger_than && !DECL_EXTERNAL (fndecl) && TREE_TYPE (fndecl))
  6661.     {
  6662.       register tree ret_type = TREE_TYPE (TREE_TYPE (fndecl));
  6663.  
  6664.       if (ret_type)
  6665.     {
  6666.       register tree ret_type_size = TYPE_SIZE (ret_type);
  6667.  
  6668.       if (TREE_CODE (ret_type_size) == INTEGER_CST)
  6669.         {
  6670.           unsigned units
  6671.         = TREE_INT_CST_LOW (ret_type_size) / BITS_PER_UNIT;
  6672.  
  6673.           if (units > larger_than_size)
  6674.         warning_with_decl (fndecl,
  6675.                    "size of return value of `%s' is %u bytes",
  6676.                    units);
  6677.         }
  6678.     }
  6679.     }
  6680.  
  6681.   /* Free all the tree nodes making up this function.  */
  6682.   /* Switch back to allocating nodes permanently
  6683.      until we start another function.  */
  6684.   if (! nested)
  6685.     permanent_allocation (1);
  6686.  
  6687.   if (DECL_SAVED_INSNS (fndecl) == 0 && ! nested)
  6688.     {
  6689.       /* Stop pointing to the local nodes about to be freed.  */
  6690.       /* But DECL_INITIAL must remain nonzero so we know this
  6691.      was an actual function definition.  */
  6692.       /* For a nested function, this is done in pop_c_function_context.  */
  6693.       /* If rest_of_compilation set this to 0, leave it 0.  */
  6694.       if (DECL_INITIAL (fndecl) != 0)
  6695.     DECL_INITIAL (fndecl) = error_mark_node;
  6696.       DECL_ARGUMENTS (fndecl) = 0;
  6697.     }
  6698.  
  6699.   if (! nested)
  6700.     {
  6701.       /* Let the error reporting routines know that we're outside a
  6702.      function.  For a nested function, this value is used in
  6703.      pop_c_function_context and then reset via pop_function_context.  */
  6704.       current_function_decl = NULL;
  6705.     }
  6706. }
  6707.  
  6708. /* Save and restore the variables in this file and elsewhere
  6709.    that keep track of the progress of compilation of the current function.
  6710.    Used for nested functions.  */
  6711.  
  6712. struct c_function
  6713. {
  6714.   struct c_function *next;
  6715.   tree named_labels;
  6716.   tree shadowed_labels;
  6717.   int returns_value;
  6718.   int returns_null;
  6719.   int warn_about_return_type;
  6720.   int extern_inline;
  6721.   struct binding_level *binding_level;
  6722. };
  6723.  
  6724. struct c_function *c_function_chain;
  6725.  
  6726. /* Save and reinitialize the variables
  6727.    used during compilation of a C function.  */
  6728.  
  6729. void
  6730. push_c_function_context ()
  6731. {
  6732.   struct c_function *p
  6733.     = (struct c_function *) xmalloc (sizeof (struct c_function));
  6734.  
  6735.   if (pedantic)
  6736.     pedwarn ("ANSI C forbids nested functions");
  6737.  
  6738.   push_function_context ();
  6739.  
  6740.   p->next = c_function_chain;
  6741.   c_function_chain = p;
  6742.  
  6743.   p->named_labels = named_labels;
  6744.   p->shadowed_labels = shadowed_labels;
  6745.   p->returns_value = current_function_returns_value;
  6746.   p->returns_null = current_function_returns_null;
  6747.   p->warn_about_return_type = warn_about_return_type;
  6748.   p->extern_inline = current_extern_inline;
  6749.   p->binding_level = current_binding_level;
  6750. }
  6751.  
  6752. /* Restore the variables used during compilation of a C function.  */
  6753.  
  6754. void
  6755. pop_c_function_context ()
  6756. {
  6757.   struct c_function *p = c_function_chain;
  6758.   tree link;
  6759.  
  6760.   /* Bring back all the labels that were shadowed.  */
  6761.   for (link = shadowed_labels; link; link = TREE_CHAIN (link))
  6762.     if (DECL_NAME (TREE_VALUE (link)) != 0)
  6763.       IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
  6764.     = TREE_VALUE (link);
  6765.  
  6766.   if (DECL_SAVED_INSNS (current_function_decl) == 0)
  6767.     {
  6768.       /* Stop pointing to the local nodes about to be freed.  */
  6769.       /* But DECL_INITIAL must remain nonzero so we know this
  6770.      was an actual function definition.  */
  6771.       DECL_INITIAL (current_function_decl) = error_mark_node;
  6772.       DECL_ARGUMENTS (current_function_decl) = 0;
  6773.     }
  6774.  
  6775.   pop_function_context ();
  6776.  
  6777.   c_function_chain = p->next;
  6778.  
  6779.   named_labels = p->named_labels;
  6780.   shadowed_labels = p->shadowed_labels;
  6781.   current_function_returns_value = p->returns_value;
  6782.   current_function_returns_null = p->returns_null;
  6783.   warn_about_return_type = p->warn_about_return_type;
  6784.   current_extern_inline = p->extern_inline;
  6785.   current_binding_level = p->binding_level;
  6786.  
  6787.   free (p);
  6788. }
  6789.  
  6790. /* integrate_decl_tree calls this function, but since we don't use the
  6791.    DECL_LANG_SPECIFIC field, this is a no-op.  */
  6792.  
  6793. void
  6794. copy_lang_decl (node)
  6795.      tree node;
  6796. {
  6797. }
  6798.