home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / NeXT / GnuSource / cc-61.0.1 / cc / c-decl.c < prev    next >
C/C++ Source or Header  |  1992-03-17  |  157KB  |  4,990 lines

  1. /* Process declarations and variables for C compiler.
  2.    Copyright (C) 1988, 1990 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-parse.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. #undef NULL
  45. #define NULL 0
  46. #define MIN(X,Y) ((X) < (Y) ? (X) : (Y))
  47. #define MAX(X,Y) ((X) > (Y) ? (X) : (Y))
  48.  
  49. #ifndef CHAR_TYPE_SIZE
  50. #define CHAR_TYPE_SIZE BITS_PER_UNIT
  51. #endif
  52.  
  53. #ifndef SHORT_TYPE_SIZE
  54. #define SHORT_TYPE_SIZE (BITS_PER_UNIT * MIN ((UNITS_PER_WORD + 1) / 2, 2))
  55. #endif
  56.  
  57. #ifndef INT_TYPE_SIZE
  58. #define INT_TYPE_SIZE BITS_PER_WORD
  59. #endif
  60.  
  61. #ifndef LONG_TYPE_SIZE
  62. #define LONG_TYPE_SIZE BITS_PER_WORD
  63. #endif
  64.  
  65. #ifndef LONG_LONG_TYPE_SIZE
  66. #define LONG_LONG_TYPE_SIZE (BITS_PER_WORD * 2)
  67. #endif
  68.  
  69. #ifndef WCHAR_TYPE_SIZE
  70. #define WCHAR_TYPE_SIZE INT_TYPE_SIZE
  71. #endif
  72.  
  73. #ifndef WCHAR_UNSIGNED
  74. #define WCHAR_UNSIGNED 0
  75. #endif
  76.  
  77. #ifndef FLOAT_TYPE_SIZE
  78. #define FLOAT_TYPE_SIZE BITS_PER_WORD
  79. #endif
  80.  
  81. #ifndef DOUBLE_TYPE_SIZE
  82. #define DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2)
  83. #endif
  84.  
  85. #ifndef LONG_DOUBLE_TYPE_SIZE
  86. #define LONG_DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2)
  87. #endif
  88.  
  89. /* We let tm.h override the types used here, to handle trivial differences
  90.    such as the choice of unsigned int or long unsigned int for size_t.
  91.    When machines start needing nontrivial differences in the size type,
  92.    it would be best to do something here to figure out automatically
  93.    from other information what type to use.  */
  94.  
  95. #ifndef SIZE_TYPE
  96. #define SIZE_TYPE "long unsigned int"
  97. #endif
  98.  
  99. #ifndef PTRDIFF_TYPE
  100. #define PTRDIFF_TYPE "long int"
  101. #endif
  102.  
  103. #ifndef WCHAR_TYPE
  104. #define WCHAR_TYPE "int"
  105. #endif
  106.  
  107. /* a node which has tree code ERROR_MARK, and whose type is itself.
  108.    All erroneous expressions are replaced with this node.  All functions
  109.    that accept nodes as arguments should avoid generating error messages
  110.    if this node is one of the arguments, since it is undesirable to get
  111.    multiple error messages from one error in the input.  */
  112.  
  113. tree error_mark_node;
  114.  
  115. /* INTEGER_TYPE and REAL_TYPE nodes for the standard data types */
  116.  
  117. tree short_integer_type_node;
  118. tree integer_type_node;
  119. tree long_integer_type_node;
  120. tree long_long_integer_type_node;
  121.  
  122. tree short_unsigned_type_node;
  123. tree unsigned_type_node;
  124. tree long_unsigned_type_node;
  125. tree long_long_unsigned_type_node;
  126.  
  127. tree ptrdiff_type_node;
  128.  
  129. tree unsigned_char_type_node;
  130. tree signed_char_type_node;
  131. tree char_type_node;
  132. tree wchar_type_node;
  133. tree signed_wchar_type_node;
  134. tree unsigned_wchar_type_node;
  135.  
  136. tree float_type_node;
  137. tree double_type_node;
  138. tree long_double_type_node;
  139.  
  140. /* a VOID_TYPE node.  */
  141.  
  142. tree void_type_node;
  143.  
  144. /* Nodes for types `void *' and `const void *'.  */
  145.  
  146. tree ptr_type_node, const_ptr_type_node;
  147.  
  148. /* Nodes for types `char *' and `const char *'.  */
  149.  
  150. tree string_type_node, const_string_type_node;
  151.  
  152. /* Type `char[256]' or something like it.
  153.    Used when an array of char is needed and the size is irrelevant.  */
  154.  
  155. tree char_array_type_node;
  156.  
  157. /* Type `int[256]' or something like it.
  158.    Used when an array of int needed and the size is irrelevant.  */
  159.  
  160. tree int_array_type_node;
  161.  
  162. /* Type `wchar_t[256]' or something like it.
  163.    Used when a wide string literal is created.  */
  164.  
  165. tree wchar_array_type_node;
  166.  
  167. /* type `int ()' -- used for implicit declaration of functions.  */
  168.  
  169. tree default_function_type;
  170.  
  171. /* function types `double (double)' and `double (double, double)', etc.  */
  172.  
  173. tree double_ftype_double, double_ftype_double_double;
  174. tree int_ftype_int, long_ftype_long;
  175.  
  176. /* Function type `void (void *, void *, int)' and similar ones */
  177.  
  178. tree void_ftype_ptr_ptr_int, int_ftype_ptr_ptr_int, void_ftype_ptr_int_int;
  179.  
  180. /* Function type `char *(char *, char *)' and similar ones */
  181. tree string_ftype_ptr_ptr, int_ftype_string_string;
  182.  
  183. /* Function type `int (const void *, const void *, size_t)' */
  184. tree int_ftype_cptr_cptr_sizet;
  185.  
  186. /* Two expressions that are constants with value zero.
  187.    The first is of type `int', the second of type `void *'.  */
  188.  
  189. tree integer_zero_node;
  190. tree null_pointer_node;
  191.  
  192. /* A node for the integer constant 1.  */
  193.  
  194. tree integer_one_node;
  195.  
  196. /* Nonzero if we have seen an invalid cross reference
  197.    to a struct, union, or enum, but not yet printed the message.  */
  198.  
  199. tree pending_invalid_xref;
  200. /* File and line to appear in the eventual error message.  */
  201. char *pending_invalid_xref_file;
  202. int pending_invalid_xref_line;
  203.  
  204. /* While defining an enum type, this is 1 plus the last enumerator
  205.    constant value.  */
  206.  
  207. static tree enum_next_value;
  208.  
  209. /* Parsing a function declarator leaves a list of parameter names
  210.    or a chain or parameter decls here.  */
  211.  
  212. static tree last_function_parms;
  213.  
  214. /* Parsing a function declarator leaves here a chain of structure
  215.    and enum types declared in the parmlist.  */
  216.  
  217. static tree last_function_parm_tags;
  218.  
  219. /* After parsing the declarator that starts a function definition,
  220.    `start_function' puts here the list of parameter names or chain of decls.
  221.    `store_parm_decls' finds it here.  */
  222.  
  223. static tree current_function_parms;
  224.  
  225. /* Similar, for last_function_parm_tags.  */
  226. static tree current_function_parm_tags;
  227.  
  228. /* A list (chain of TREE_LIST nodes) of all LABEL_DECLs in the function
  229.    that have names.  Here so we can clear out their names' definitions
  230.    at the end of the function.  */
  231.  
  232. tree named_labels;
  233.  
  234. /* A list of LABEL_DECLs from outer contexts that are currently shadowed.  */
  235.  
  236. static tree shadowed_labels;
  237.  
  238. /* Nonzero when store_parm_decls is called indicates a varargs function.
  239.    Value not meaningful after store_parm_decls.  */
  240.  
  241. static int c_function_varargs;
  242.  
  243. /* The FUNCTION_DECL for the function currently being compiled,
  244.    or 0 if between functions.  */
  245. tree current_function_decl;
  246.  
  247. /* Set to 0 at beginning of a function definition, set to 1 if
  248.    a return statement that specifies a return value is seen.  */
  249.  
  250. int current_function_returns_value;
  251.  
  252. /* Set to 0 at beginning of a function definition, set to 1 if
  253.    a return statement with no argument is seen.  */
  254.  
  255. int current_function_returns_null;
  256.  
  257. /* Set to nonzero by `grokdeclarator' for a function
  258.    whose return type is defaulted, if warnings for this are desired.  */
  259.  
  260. static int warn_about_return_type;
  261.  
  262. /* Nonzero when starting a function delcared `extern inline'.  */
  263.  
  264. static int current_extern_inline;
  265.  
  266. /* For each binding contour we allocate a binding_level structure
  267.  * which records the names defined in that contour.
  268.  * Contours include:
  269.  *  0) the global one
  270.  *  1) one for each function definition,
  271.  *     where internal declarations of the parameters appear.
  272.  *  2) one for each compound statement,
  273.  *     to record its declarations.
  274.  *
  275.  * The current meaning of a name can be found by searching the levels from
  276.  * the current one out to the global one.
  277.  */
  278.  
  279. /* Note that the information in the `names' component of the global contour
  280.    is duplicated in the IDENTIFIER_GLOBAL_VALUEs of all identifiers.  */
  281.  
  282. struct binding_level
  283.   {
  284.     /* A chain of _DECL nodes for all variables, constants, functions,
  285.        and typedef types.  These are in the reverse of the order supplied.
  286.      */
  287.     tree names;
  288.  
  289.     /* A list of structure, union and enum definitions,
  290.      * for looking up tag names.
  291.      * It is a chain of TREE_LIST nodes, each of whose TREE_PURPOSE is a name,
  292.      * or NULL_TREE; and whose TREE_VALUE is a RECORD_TYPE, UNION_TYPE,
  293.      * or ENUMERAL_TYPE node.
  294.      */
  295.     tree tags;
  296.  
  297.     /* For each level, a list of shadowed outer-level local definitions
  298.        to be restored when this level is popped.
  299.        Each link is a TREE_LIST whose TREE_PURPOSE is an identifier and
  300.        whose TREE_VALUE is its old definition (a kind of ..._DECL node).  */
  301.     tree shadowed;
  302.  
  303.     /* For each level (except not the global one),
  304.        a chain of BLOCK nodes for all the levels
  305.        that were entered and exited one level down.  */
  306.     tree blocks;
  307.  
  308.     /* The binding level which this one is contained in (inherits from).  */
  309.     struct binding_level *level_chain;
  310.  
  311.     /* Nonzero for the level that holds the parameters of a function.  */
  312.     /* 2 for a definition, 1 for a declaration.  */
  313.     char parm_flag;
  314.  
  315.     /* Nonzero if this level "doesn't exist" for tags.  */
  316.     char tag_transparent;
  317.  
  318.     /* Nonzero means make a BLOCK for this level regardless of all else.  */
  319.     char keep;
  320.  
  321.     /* Nonzero means make a BLOCK if this level has any subblocks.  */
  322.     char keep_if_subblocks;
  323.  
  324.     /* Number of decls in `names' that have incomplete 
  325.        structure or union types.  */
  326.     int n_incomplete;
  327.   };
  328.  
  329. #define NULL_BINDING_LEVEL (struct binding_level *) NULL
  330.   
  331. /* The binding level currently in effect.  */
  332.  
  333. static struct binding_level *current_binding_level;
  334.  
  335. /* A chain of binding_level structures awaiting reuse.  */
  336.  
  337. static struct binding_level *free_binding_level;
  338.  
  339. /* The outermost binding level, for names of file scope.
  340.    This is created when the compiler is started and exists
  341.    through the entire run.  */
  342.  
  343. static struct binding_level *global_binding_level;
  344.  
  345. /* Binding level structures are initialized by copying this one.  */
  346.  
  347. static struct binding_level clear_binding_level
  348.   = {NULL, NULL, NULL, NULL, NULL, 0, 0, 0};
  349.  
  350. /* Nonzero means unconditionally make a BLOCK for the next level pushed.  */
  351.  
  352. static int keep_next_level_flag;
  353.  
  354. /* Nonzero means make a BLOCK for the next level pushed
  355.    if it has subblocks.  */
  356.  
  357. static int keep_next_if_subblocks;
  358.   
  359. /* The chain of outer levels of label scopes.
  360.    This uses the same data structure used for binding levels,
  361.    but it works differently: each link in the chain records
  362.    saved values of named_labels and shadowed_labels for
  363.    a label binding level outside the current one.  */
  364.  
  365. static struct binding_level *label_level_chain;
  366.  
  367. /* Forward declarations.  */
  368.  
  369. static tree grokparms (), grokdeclarator ();
  370. tree pushdecl ();
  371. static tree builtin_function ();
  372.  
  373. static tree lookup_tag ();
  374. static tree lookup_tag_reverse ();
  375. static tree lookup_name_current_level ();
  376. static char *redeclaration_error_message ();
  377. static void layout_array_type ();
  378.  
  379. /* C-specific option variables.  */
  380.  
  381. /* Nonzero means allow type mismatches in conditional expressions;
  382.    just make their values `void'.   */
  383.  
  384. int flag_cond_mismatch;
  385.  
  386. /* Nonzero means give `double' the same size as `float'.  */
  387.  
  388. int flag_short_double;
  389.  
  390. /* Nonzero means don't recognize the keyword `asm'.  */
  391.  
  392. int flag_no_asm;
  393.  
  394. /* Nonzero means do some things the same way PCC does.  */
  395.  
  396. int flag_traditional;
  397.  
  398. /* Nonzero means to treat bitfields as unsigned unless they say `signed'.  */
  399.  
  400. int flag_signed_bitfields = 1;
  401.  
  402. /* Nonzero means warn about implicit declarations.  */
  403.  
  404. int warn_implicit;
  405.  
  406. /* Nonzero means give string constants the type `const char *'
  407.    to get extra warnings from them.  These warnings will be too numerous
  408.    to be useful, except in thoroughly ANSIfied programs.  */
  409.  
  410. int warn_write_strings;
  411.  
  412. /* Nonzero means warn about pointer casts that can drop a type qualifier
  413.    from the pointer target type.  */
  414.  
  415. int warn_cast_qual;
  416.  
  417. /* Warn about traditional constructs whose meanings changed in ANSI C.  */
  418.  
  419. int warn_traditional;
  420.  
  421. /* Nonzero means warn about sizeof(function) or addition/subtraction
  422.    of function pointers.  */
  423.  
  424. int warn_pointer_arith;
  425.  
  426. /* Nonzero means warn for non-prototype function decls
  427.    or non-prototyped defs without previous prototype.  */
  428.  
  429. int warn_strict_prototypes;
  430.  
  431. /* Nonzero means warn for any function def without prototype decl.  */
  432.  
  433. int warn_missing_prototypes;
  434.  
  435. /* Warn about *printf or *scanf format/argument anomalies. */
  436.  
  437. int warn_format;
  438.  
  439. /* Warn if a type conversion is done that might have confusing results.  */
  440.  
  441. int warn_conversion;
  442.  
  443. /* Nonzero means `$' can be in an identifier.
  444.    See cccp.c for reasons why this breaks some obscure ANSI C programs.  */
  445.  
  446. #ifndef DOLLARS_IN_IDENTIFIERS
  447. #define DOLLARS_IN_IDENTIFIERS 1
  448. #endif
  449. int dollars_in_ident = DOLLARS_IN_IDENTIFIERS > 1;
  450.  
  451. char *language_string = "GNU C";
  452.  
  453. /* Decode the string P as a language-specific option for C.
  454.    Return 1 if it is recognized (and handle it);
  455.    return 0 if not recognized.  */
  456.    
  457. int
  458. c_decode_option (p)
  459.      char *p;
  460. {
  461.   if (!strcmp (p, "-ftraditional") || !strcmp (p, "-traditional"))
  462.     {
  463.       flag_traditional = 1;
  464.       flag_writable_strings = 1;
  465. #if DOLLARS_IN_IDENTIFIERS > 0
  466.       dollars_in_ident = 1;
  467. #endif
  468.     }
  469.   else if (!strcmp (p, "-fnotraditional"))
  470.     ;
  471.   else if (!strcmp (p, "-fsigned-char"))
  472.     flag_signed_char = 1;
  473.   else if (!strcmp (p, "-funsigned-char"))
  474.     flag_signed_char = 0;
  475.   else if (!strcmp (p, "-fno-signed-char"))
  476.     flag_signed_char = 0;
  477.   else if (!strcmp (p, "-fno-unsigned-char"))
  478.     flag_signed_char = 1;
  479.   else if (!strcmp (p, "-fsigned-bitfields"))
  480.     flag_signed_bitfields = 1;
  481.   else if (!strcmp (p, "-funsigned-bitfields"))
  482.     flag_signed_bitfields = 0;
  483.   else if (!strcmp (p, "-fno-signed-bitfields"))
  484.     flag_signed_bitfields = 0;
  485.   else if (!strcmp (p, "-fno-unsigned-bitfields"))
  486.     flag_signed_bitfields = 1;
  487.   else if (!strcmp (p, "-fshort-enums"))
  488.     flag_short_enums = 1;
  489.   else if (!strcmp (p, "-fno-short-enums"))
  490.     flag_short_enums = 0;
  491.   else if (!strcmp (p, "-fcond-mismatch"))
  492.     flag_cond_mismatch = 1;
  493.   else if (!strcmp (p, "-fno-cond-mismatch"))
  494.     flag_cond_mismatch = 0;
  495.   else if (!strcmp (p, "-fshort-double"))
  496.     flag_short_double = 1;
  497.   else if (!strcmp (p, "-fno-short-double"))
  498.     flag_short_double = 0;
  499.   else if (!strcmp (p, "-fasm"))
  500.     flag_no_asm = 0;
  501.   else if (!strcmp (p, "-fno-asm"))
  502.     flag_no_asm = 1;
  503.   else if (!strcmp (p, "-ansi"))
  504.     flag_no_asm = 1, dollars_in_ident = 0;
  505.   else if (!strcmp (p, "-Wimplicit"))
  506.     warn_implicit = 1;
  507.   else if (!strcmp (p, "-Wnoimplicit"))
  508.     warn_implicit = 0;
  509.   else if (!strcmp (p, "-Wwrite-strings"))
  510.     warn_write_strings = 1;
  511.   else if (!strcmp (p, "-Wnowrite-strings"))
  512.     warn_write_strings = 0;
  513.   else if (!strcmp (p, "-Wcast-qual"))
  514.     warn_cast_qual = 1;
  515.   else if (!strcmp (p, "-Wnocast-qual"))
  516.     warn_cast_qual = 0;
  517.   else if (!strcmp (p, "-Wpointer-arith"))
  518.     warn_pointer_arith = 1;
  519.   else if (!strcmp (p, "-Wnopointer-arith"))
  520.     warn_pointer_arith = 0;
  521.   else if (!strcmp (p, "-Wstrict-prototypes"))
  522.     warn_strict_prototypes = 1;
  523.   else if (!strcmp (p, "-Wnostrict-prototypes"))
  524.     warn_strict_prototypes = 0;
  525.   else if (!strcmp (p, "-Wmissing-prototypes"))
  526.     warn_missing_prototypes = 1;
  527.   else if (!strcmp (p, "-Wnomissing-prototypes"))
  528.     warn_missing_prototypes = 0;
  529.   else if (!strcmp (p, "-Wtraditional"))
  530.     warn_traditional = 1;
  531.   else if (!strcmp (p, "-Wnotraditional"))
  532.     warn_traditional = 0;
  533.   else if (!strcmp (p, "-Wformat"))
  534.     warn_format = 1;
  535.   else if (!strcmp (p, "-Wnoformat"))
  536.     warn_format = 0;
  537.   else if (!strcmp (p, "-Wconversion"))
  538.     warn_conversion = 1;
  539.   else if (!strcmp (p, "-Wnoconversion"))
  540.     warn_conversion = 0;
  541.   else if (!strcmp (p, "-Wcomment"))
  542.     ; /* cpp handles this one.  */
  543.   else if (!strcmp (p, "-Wnocomment"))
  544.     ; /* cpp handles this one.  */
  545.   else if (!strcmp (p, "-Wcomments"))
  546.     ; /* cpp handles this one.  */
  547.   else if (!strcmp (p, "-Wnocomments"))
  548.     ; /* cpp handles this one.  */
  549.   else if (!strcmp (p, "-Wtrigraphs"))
  550.     ; /* cpp handles this one.  */
  551.   else if (!strcmp (p, "-Wnotrigraphs"))
  552.     ; /* cpp handles this one.  */
  553.   else if (!strcmp (p, "-Wall"))
  554.     {
  555.       extra_warnings = 1;
  556.       warn_uninitialized = 1;
  557.       warn_implicit = 1;
  558.       warn_return_type = 1;
  559.       warn_unused = 1;
  560.       warn_switch = 1;
  561.       warn_format = 1;
  562.     }
  563.   else
  564.     return 0;
  565.  
  566.   return 1;
  567. }
  568.  
  569. /* Hooks for print_node.  */
  570.  
  571. void
  572. print_lang_decl ()
  573. {
  574. }
  575.  
  576. void
  577. print_lang_type ()
  578. {
  579. }
  580.  
  581. void
  582. print_lang_identifier (file, node, indent)
  583.      FILE *file;
  584.      tree node;
  585.      int indent;
  586. {
  587.   print_node (file, "global", IDENTIFIER_GLOBAL_VALUE (node), indent + 4);
  588.   print_node (file, "local", IDENTIFIER_LOCAL_VALUE (node), indent + 4);
  589.   print_node (file, "label", IDENTIFIER_LABEL_VALUE (node), indent + 4);
  590.   print_node (file, "implicit", IDENTIFIER_IMPLICIT_DECL (node), indent + 4);
  591.   print_node (file, "error locus", IDENTIFIER_ERROR_LOCUS (node), indent + 4);
  592. }
  593.  
  594. /* Create a new `struct binding_level'.  */
  595.  
  596. static
  597. struct binding_level *
  598. make_binding_level ()
  599. {
  600.   /* NOSTRICT */
  601.   return (struct binding_level *) xmalloc (sizeof (struct binding_level));
  602. }
  603.  
  604. /* Nonzero if we are currently in the global binding level.  */
  605.  
  606. int
  607. global_bindings_p ()
  608. {
  609.   return current_binding_level == global_binding_level;
  610. }
  611.  
  612. void
  613. keep_next_level ()
  614. {
  615.   keep_next_level_flag = 1;
  616. }
  617.  
  618. /* Nonzero if the current level needs to have a BLOCK made.  */
  619.  
  620. int
  621. kept_level_p ()
  622. {
  623.   return ((current_binding_level->keep_if_subblocks
  624.        && current_binding_level->blocks != 0)
  625.       || current_binding_level->keep
  626.       || current_binding_level->names != 0);
  627. }
  628.  
  629. /* Identify this binding level as a level of parameters.
  630.    DEFINITION_FLAG is 1 for a definition, 0 for a declaration.  */
  631.  
  632. void
  633. declare_parm_level (definition_flag)
  634.      int definition_flag;
  635. {
  636.   current_binding_level->parm_flag = 1 + definition_flag;
  637. }
  638.  
  639. /* Nonzero if currently making parm declarations.  */
  640.  
  641. int
  642. in_parm_level_p ()
  643. {
  644.   return current_binding_level->parm_flag;
  645. }
  646.  
  647. /* Enter a new binding level.
  648.    If TAG_TRANSPARENT is nonzero, do so only for the name space of variables,
  649.    not for that of tags.  */
  650.  
  651. void
  652. pushlevel (tag_transparent)
  653.      int tag_transparent;
  654. {
  655.   register struct binding_level *newlevel = NULL_BINDING_LEVEL;
  656.  
  657.   /* If this is the top level of a function,
  658.      just make sure that NAMED_LABELS is 0.  */
  659.  
  660.   if (current_binding_level == global_binding_level)
  661.     {
  662.       named_labels = 0;
  663.     }
  664.  
  665.   /* Reuse or create a struct for this binding level.  */
  666.  
  667.   if (free_binding_level)
  668.     {
  669.       newlevel = free_binding_level;
  670.       free_binding_level = free_binding_level->level_chain;
  671.     }
  672.   else
  673.     {
  674.       newlevel = make_binding_level ();
  675.     }
  676.  
  677.   /* Add this level to the front of the chain (stack) of levels that
  678.      are active.  */
  679.  
  680.   *newlevel = clear_binding_level;
  681.   newlevel->level_chain = current_binding_level;
  682.   current_binding_level = newlevel;
  683.   newlevel->tag_transparent = tag_transparent;
  684.   newlevel->keep = keep_next_level_flag;
  685.   keep_next_level_flag = 0;
  686.   newlevel->keep_if_subblocks = keep_next_if_subblocks;
  687.   keep_next_if_subblocks = 0;
  688. }
  689.  
  690. /* Exit a binding level.
  691.    Pop the level off, and restore the state of the identifier-decl mappings
  692.    that were in effect when this level was entered.
  693.  
  694.    If KEEP is nonzero, this level had explicit declarations, so
  695.    and create a "block" (a BLOCK node) for the level
  696.    to record its declarations and subblocks for symbol table output.
  697.  
  698.    If FUNCTIONBODY is nonzero, this level is the body of a function,
  699.    so create a block as if KEEP were set and also clear out all
  700.    label names.
  701.  
  702.    If REVERSE is nonzero, reverse the order of decls before putting
  703.    them into the BLOCK.  */
  704.  
  705. tree
  706. poplevel (keep, reverse, functionbody)
  707.      int keep;
  708.      int reverse;
  709.      int functionbody;
  710. {
  711.   register tree link;
  712.   /* The chain of decls was accumulated in reverse order.
  713.      Put it into forward order, just for cleanliness.  */
  714.   tree decls;
  715.   tree tags = current_binding_level->tags;
  716.   tree subblocks = current_binding_level->blocks;
  717.   tree block = 0;
  718.   tree decl;
  719.  
  720.   keep |= current_binding_level->keep;
  721.  
  722.   /* This warning is turned off because it causes warnings for
  723.      declarations like `extern struct foo *x'.  */
  724. #if 0
  725.   /* Warn about incomplete structure types in this level.  */
  726.   for (link = tags; link; link = TREE_CHAIN (link))
  727.     if (TYPE_SIZE (TREE_VALUE (link)) == 0)
  728.       {
  729.     tree type = TREE_VALUE (link);
  730.     char *errmsg;
  731.     switch (TREE_CODE (type))
  732.       {
  733.       case RECORD_TYPE:
  734.         errmsg = "`struct %s' incomplete in scope ending here";
  735.         break;
  736.       case UNION_TYPE:
  737.         errmsg = "`union %s' incomplete in scope ending here";
  738.         break;
  739.       case ENUMERAL_TYPE:
  740.         errmsg = "`enum %s' incomplete in scope ending here";
  741.         break;
  742.       }
  743.     if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
  744.       error (errmsg, IDENTIFIER_POINTER (TYPE_NAME (type)));
  745.     else
  746.       /* If this type has a typedef-name, the TYPE_NAME is a TYPE_DECL.  */
  747.       error (errmsg, IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type))));
  748.       }
  749. #endif /* 0 */
  750.  
  751.   /* Get the decls in the order they were written.
  752.      Usually current_binding_level->names is in reverse order.
  753.      But parameter decls were previously put in forward order.  */
  754.  
  755.   if (reverse)
  756.     current_binding_level->names
  757.       = decls = nreverse (current_binding_level->names);
  758.   else
  759.     decls = current_binding_level->names;
  760.  
  761.   /* Output any nested inline functions within this block
  762.      if they weren't already output.  */
  763.  
  764.   for (decl = decls; decl; decl = TREE_CHAIN (decl))
  765.     if (TREE_CODE (decl) == FUNCTION_DECL
  766.     && ! TREE_ASM_WRITTEN (decl)
  767.     && DECL_INITIAL (decl) != 0
  768.     && TREE_ADDRESSABLE (decl))
  769.       output_inline_function (decl);
  770.  
  771.   /* If there were any declarations or structure tags in that level,
  772.      or if this level is a function body,
  773.      create a BLOCK to record them for the life of this function.  */
  774.  
  775.   if (keep || functionbody
  776.       || (current_binding_level->keep_if_subblocks && subblocks != 0))
  777.     block = build_block (keep ? decls : 0, keep ? tags : 0,
  778.              subblocks, 0, 0);
  779.  
  780.   /* In each subblock, record that this is its superior.  */
  781.  
  782.   for (link = subblocks; link; link = TREE_CHAIN (link))
  783.     BLOCK_SUPERCONTEXT (link) = block;
  784.  
  785.   /* Clear out the meanings of the local variables of this level.  */
  786.  
  787.   for (link = decls; link; link = TREE_CHAIN (link))
  788.     {
  789.       if (DECL_NAME (link) != 0)
  790.     {
  791.       /* If the ident. was used or addressed via a local extern decl,
  792.          don't forget that fact.  */
  793.       if (TREE_EXTERNAL (link))
  794.         {
  795.           if (TREE_USED (link))
  796.         TREE_USED (DECL_NAME (link)) = 1;
  797.           if (TREE_ADDRESSABLE (link))
  798.         TREE_ADDRESSABLE (DECL_NAME (link)) = 1;
  799.         }
  800.       IDENTIFIER_LOCAL_VALUE (DECL_NAME (link)) = 0;
  801.     }
  802.     }
  803.  
  804.   /* Restore all name-meanings of the outer levels
  805.      that were shadowed by this level.  */
  806.  
  807.   for (link = current_binding_level->shadowed; link; link = TREE_CHAIN (link))
  808.     IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
  809.  
  810.   /* If the level being exited is the top level of a function,
  811.      check over all the labels.  */
  812.  
  813.   if (functionbody)
  814.     {
  815.       /* Clear out the definitions of all label names,
  816.      since their scopes end here.  */
  817.  
  818.       for (link = named_labels; link; link = TREE_CHAIN (link))
  819.     {
  820.       if (DECL_INITIAL (TREE_VALUE (link)) == 0)
  821.         {
  822.           error_with_decl (TREE_VALUE (link),
  823.                    "label `%s' used but not defined");
  824.           /* Avoid crashing later.  */
  825.           define_label (input_filename, lineno,
  826.                 DECL_NAME (TREE_VALUE (link)));
  827.         }
  828.       else if (warn_unused && !TREE_USED (TREE_VALUE (link)))
  829.         warning_with_decl (TREE_VALUE (link), 
  830.                    "label `%s' defined but not used");
  831.       IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link))) = 0;
  832.     }
  833.     }
  834.  
  835.   /* Pop the current level, and free the structure for reuse.  */
  836.  
  837.   {
  838.     register struct binding_level *level = current_binding_level;
  839.     current_binding_level = current_binding_level->level_chain;
  840.  
  841.     level->level_chain = free_binding_level;
  842.     free_binding_level = level;
  843.   }
  844.  
  845.   if (functionbody)
  846.     {
  847.       DECL_INITIAL (current_function_decl) = block;
  848.       /* If this is the top level block of a function,
  849.      the vars are the function's parameters.
  850.      Don't leave them in the BLOCK because they are
  851.      found in the FUNCTION_DECL instead.  */
  852.       BLOCK_VARS (block) = 0;
  853.     }
  854.   else if (block)
  855.     current_binding_level->blocks
  856.       = chainon (current_binding_level->blocks, block);
  857.   /* If we did not make a block for the level just exited,
  858.      any blocks made for inner levels
  859.      (since they cannot be recorded as subblocks in that level)
  860.      must be carried forward so they will later become subblocks
  861.      of something else.  */
  862.   else if (subblocks)
  863.     current_binding_level->blocks
  864.       = chainon (current_binding_level->blocks, subblocks);
  865.  
  866.   if (block)
  867.     TREE_USED (block) = 1;
  868.   return block;
  869. }
  870.  
  871. void
  872. push_label_level ()
  873. {
  874.   register struct binding_level *newlevel;
  875.  
  876.   /* Reuse or create a struct for this binding level.  */
  877.  
  878.   if (free_binding_level)
  879.     {
  880.       newlevel = free_binding_level;
  881.       free_binding_level = free_binding_level->level_chain;
  882.     }
  883.   else
  884.     {
  885.       newlevel = make_binding_level ();
  886.     }
  887.  
  888.   /* Add this level to the front of the chain (stack) of label levels.  */
  889.  
  890.   newlevel->level_chain = label_level_chain;
  891.   label_level_chain = newlevel;
  892.  
  893.   newlevel->names = named_labels;
  894.   newlevel->shadowed = shadowed_labels;
  895.   named_labels = 0;
  896.   shadowed_labels = 0;
  897. }
  898.  
  899. void
  900. pop_label_level ()
  901. {
  902.   register struct binding_level *level = label_level_chain;
  903.   tree link, prev;
  904.  
  905.   /* Clear out the definitions of the declared labels in this level.
  906.      Leave in the list any ordinary, non-declared labels.  */
  907.   for (link = named_labels, prev = 0; link;)
  908.     {
  909.       if (C_DECLARED_LABEL_FLAG (TREE_VALUE (link)))
  910.     {
  911.       if (DECL_SOURCE_LINE (TREE_VALUE (link)) == 0)
  912.         {
  913.           error_with_decl ("label `%s' used but not defined",
  914.                    TREE_VALUE (link));
  915.           /* Avoid crashing later.  */
  916.           define_label (input_filename, lineno,
  917.                 DECL_NAME (TREE_VALUE (link)));
  918.         }
  919.       else if (warn_unused && !TREE_USED (TREE_VALUE (link)))
  920.         warning_with_decl (TREE_VALUE (link), 
  921.                    "label `%s' defined but not used");
  922.       IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link))) = 0;
  923.  
  924.       /* Delete this element from the list.  */
  925.       link = TREE_CHAIN (link);
  926.       if (prev)
  927.         TREE_CHAIN (prev) = link;
  928.       else
  929.         named_labels = link;
  930.     }
  931.       else
  932.     {
  933.       prev = link;
  934.       link = TREE_CHAIN (link);
  935.     }
  936.     }
  937.  
  938.   /* Bring back all the labels that were shadowed.  */
  939.   for (link = shadowed_labels; link; link = TREE_CHAIN (link))
  940.     if (DECL_NAME (TREE_VALUE (link)) != 0)
  941.       IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
  942.     = TREE_VALUE (link);
  943.  
  944.   named_labels = chainon (named_labels, level->names);
  945.   shadowed_labels = level->shadowed;
  946.  
  947.   /* Pop the current level, and free the structure for reuse.  */
  948.   label_level_chain = label_level_chain->level_chain;
  949.   level->level_chain = free_binding_level;
  950.   free_binding_level = level;
  951. }
  952.  
  953. /* Push a definition of struct, union or enum tag "name".
  954.    "type" should be the type node.
  955.    We assume that the tag "name" is not already defined.
  956.  
  957.    Note that the definition may really be just a forward reference.
  958.    In that case, the TYPE_SIZE will be zero.  */
  959.  
  960. void
  961. pushtag (name, type)
  962.      tree name, type;
  963. {
  964.   register struct binding_level *b = current_binding_level;
  965.   while (b->tag_transparent) b = b->level_chain;
  966.  
  967.   if (name)
  968.     {
  969.       /* Record the identifier as the type's name if it has none.  */
  970.  
  971.       if (TYPE_NAME (type) == 0)
  972.     TYPE_NAME (type) = name;
  973.  
  974.       if (b == global_binding_level)
  975.     b->tags = perm_tree_cons (name, type, b->tags);
  976.       else
  977.     b->tags = saveable_tree_cons (name, type, b->tags);
  978.     }
  979. }
  980.  
  981. /* Handle when a new declaration NEWDECL
  982.    has the same name as an old one OLDDECL
  983.    in the same binding contour.
  984.    Prints an error message if appropriate.
  985.  
  986.    If safely possible, alter OLDDECL to look like NEWDECL, and return 1.
  987.    Otherwise, return 0.  */
  988.  
  989. static int
  990. duplicate_decls (newdecl, olddecl)
  991.      register tree newdecl, olddecl;
  992. {
  993.   int types_match = comptypes (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
  994.  
  995.   if (TREE_CODE (TREE_TYPE (newdecl)) == ERROR_MARK
  996.       || TREE_CODE (TREE_TYPE (olddecl)) == ERROR_MARK)
  997.     types_match = 0;
  998.  
  999.   /* If this decl has linkage, and the old one does too, maybe no error.  */
  1000.   if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
  1001.     {
  1002.       error_with_decl (newdecl, "`%s' redeclared as different kind of symbol");
  1003.       error_with_decl (olddecl, "previous declaration of `%s'");
  1004.     }
  1005.   else
  1006.     {
  1007.       if (flag_traditional && TREE_CODE (newdecl) == FUNCTION_DECL
  1008.       && IDENTIFIER_IMPLICIT_DECL (DECL_NAME (newdecl)) == olddecl
  1009.       && DECL_INITIAL (olddecl) == 0)
  1010.     /* If -traditional, avoid error for redeclaring fcn
  1011.        after implicit decl.  */
  1012.     ;
  1013.       else if (TREE_CODE (olddecl) == FUNCTION_DECL
  1014.            && DECL_BUILT_IN (olddecl))
  1015.      {
  1016.       if (!TREE_PUBLIC (newdecl))
  1017.         {
  1018.           /* If you declare a built-in function name as static, the
  1019.          built-in definition is overridden,
  1020.          but optionally warn this was a bad choice of name.  */
  1021.           if (warn_shadow)
  1022.         warning_with_decl (newdecl, "shadowing built-in function `%s'");
  1023.         }
  1024.        else if (!types_match)
  1025.          warning_with_decl (newdecl, "conflicting types for built-in function `%s'");
  1026.      }
  1027.       else if (!types_match
  1028.            /* Permit char *foo (int, ...); followed by char *foo ();
  1029.           if not pedantic.  */
  1030.            && ! (TREE_CODE (olddecl) == FUNCTION_DECL
  1031.              && ! pedantic
  1032.              /* Return types must still match.  */
  1033.              && comptypes (TREE_TYPE (TREE_TYPE (olddecl)),
  1034.                    TREE_TYPE (TREE_TYPE (newdecl)))
  1035.              && TYPE_ARG_TYPES (TREE_TYPE (newdecl)) == 0))
  1036.     {
  1037.       error_with_decl (newdecl, "conflicting types for `%s'");
  1038.       /* Check for function type mismatch
  1039.          involving an empty arglist vs a nonempty one.  */
  1040.       if (TREE_CODE (olddecl) == FUNCTION_DECL
  1041.           && comptypes (TREE_TYPE (TREE_TYPE (olddecl)),
  1042.                 TREE_TYPE (TREE_TYPE (newdecl)))
  1043.           && ((TYPE_ARG_TYPES (TREE_TYPE (olddecl)) == 0
  1044.            && DECL_INITIAL (olddecl) == 0)
  1045.           ||
  1046.           (TYPE_ARG_TYPES (TREE_TYPE (newdecl)) == 0
  1047.            && DECL_INITIAL (newdecl) == 0)))
  1048.         {
  1049.           /* Classify the problem further.  */
  1050.           register tree t = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
  1051.           if (t == 0)
  1052.         t = TYPE_ARG_TYPES (TREE_TYPE (newdecl));
  1053.           for (; t; t = TREE_CHAIN (t))
  1054.         {
  1055.           register tree type = TREE_VALUE (t);
  1056.  
  1057.           if (TREE_CHAIN (t) == 0 && type != void_type_node)
  1058.             {
  1059.               error ("A parameter list with an ellipsis can't match");
  1060.               error ("an empty parameter name list declaration.");
  1061.               break;
  1062.             }
  1063.  
  1064.           if (type == float_type_node
  1065.               || (TREE_CODE (type) == INTEGER_TYPE
  1066.               && (TYPE_PRECISION (type)
  1067.                   < TYPE_PRECISION (integer_type_node))))
  1068.             {
  1069.               error ("An argument type that has a default promotion");
  1070.               error ("can't match an empty parameter name list declaration.");
  1071.               break;
  1072.             }
  1073.         }
  1074.         }
  1075.       error_with_decl (olddecl, "previous declaration of `%s'");
  1076.     }
  1077.       else
  1078.     {
  1079.       char *errmsg = redeclaration_error_message (newdecl, olddecl);
  1080.       if (errmsg)
  1081.         {
  1082.           error_with_decl (newdecl, errmsg);
  1083.           error_with_decl (olddecl,
  1084.                    "`%s' previously declared here");
  1085.         }
  1086.       else if (TREE_CODE (olddecl) == FUNCTION_DECL
  1087.            && DECL_INITIAL (olddecl) != 0
  1088.            && TYPE_ARG_TYPES (TREE_TYPE (olddecl)) == 0
  1089.            && TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != 0)
  1090.         {
  1091.           /* Prototype decl follows defn w/o prototype.  */
  1092.           warning_with_decl (newdecl, "prototype for `%s'");
  1093.           warning_with_decl (olddecl,
  1094.                  "follows non-prototype definition here");
  1095.         }
  1096.       /* Warn if function is now inline
  1097.          but was previously declared not inline and has been called.  */
  1098.       else
  1099.         {
  1100.           if (TREE_CODE (olddecl) == FUNCTION_DECL
  1101.           && !TREE_INLINE (olddecl) && TREE_INLINE (newdecl)
  1102.           && TREE_USED (olddecl))
  1103.         warning_with_decl (newdecl,
  1104.                    "`%s' declared inline after being called");
  1105.           /* It is nice to warn when a function is declared
  1106.          global first and then static.  */
  1107.           if (TREE_CODE (olddecl) == FUNCTION_DECL
  1108.           && TREE_PUBLIC (olddecl)
  1109.           && !TREE_PUBLIC (newdecl))
  1110.         warning_with_decl (newdecl, "static declaration for `%s' follows non-static");
  1111.  
  1112.           /* These bits are logically part of the type.  */
  1113.           if (pedantic
  1114.           && (TREE_READONLY (newdecl) != TREE_READONLY (olddecl)
  1115.               || TREE_THIS_VOLATILE (newdecl) != TREE_THIS_VOLATILE (olddecl)))
  1116.         pedwarn_with_decl (newdecl, "type qualifiers for `%s' conflict with previous decl");
  1117.         }
  1118.     }
  1119.     }
  1120.  
  1121.   if (TREE_CODE (olddecl) == TREE_CODE (newdecl))
  1122.     {
  1123.       int new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
  1124.                    && DECL_INITIAL (newdecl) != 0);
  1125.  
  1126.       /* Copy all the DECL_... slots specified in the new decl
  1127.      except for any that we copy here from the old type.  */
  1128.  
  1129.       if (types_match)
  1130.     {
  1131.       tree oldtype = TREE_TYPE (olddecl);
  1132.       /* Merge the data types specified in the two decls.  */
  1133.       TREE_TYPE (newdecl)
  1134.         = TREE_TYPE (olddecl)
  1135.           = common_type (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
  1136.  
  1137.       /* Lay the type out, unless already done.  */
  1138.       if (oldtype != TREE_TYPE (newdecl))
  1139.         {
  1140.           if (TREE_TYPE (newdecl) != error_mark_node)
  1141.         layout_type (TREE_TYPE (newdecl));
  1142.           if (TREE_CODE (newdecl) != FUNCTION_DECL
  1143.           && TREE_CODE (newdecl) != TYPE_DECL
  1144.           && TREE_CODE (newdecl) != CONST_DECL)
  1145.         layout_decl (newdecl, 0);
  1146.         }
  1147.       else
  1148.         {
  1149.           /* Since the type is OLDDECL's, make OLDDECL's size go with.  */
  1150.           DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
  1151.           if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
  1152.         DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
  1153.         }
  1154.  
  1155.       /* Merge the type qualifiers.  */
  1156.       if (TREE_READONLY (newdecl))
  1157.         TREE_READONLY (olddecl) = 1;
  1158.       if (TREE_THIS_VOLATILE (newdecl))
  1159.         TREE_THIS_VOLATILE (olddecl) = 1;
  1160.  
  1161.       /* Keep source location of definition rather than declaration.  */
  1162.       if (DECL_INITIAL (newdecl) == 0 && DECL_INITIAL (olddecl) != 0)
  1163.         {
  1164.           DECL_SOURCE_LINE (newdecl) = DECL_SOURCE_LINE (olddecl);
  1165.           DECL_SOURCE_FILE (newdecl) = DECL_SOURCE_FILE (olddecl);
  1166.         }
  1167.  
  1168.       /* Merge the initialization information.  */
  1169.       if (DECL_INITIAL (newdecl) == 0)
  1170.         DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
  1171.       /* Keep the old rtl since we can safely use it.  */
  1172.       DECL_RTL (newdecl) = DECL_RTL (olddecl);
  1173.     }
  1174.       /* If cannot merge, then use the new type and qualifiers,
  1175.      and don't preserve the old rtl.  */
  1176.       else
  1177.     {
  1178.       TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
  1179.       TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
  1180.       TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
  1181.       TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
  1182.     }
  1183.  
  1184.       /* Merge the storage class information.  */
  1185.       /* For functions, static overrides non-static.  */
  1186.       if (TREE_CODE (newdecl) == FUNCTION_DECL)
  1187.     {
  1188.       TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
  1189.       /* This is since we don't automatically
  1190.          copy the attributes of NEWDECL into OLDDECL.  */
  1191.       TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
  1192.       /* If this clears `static', clear it in the identifier too.  */
  1193.       if (! TREE_PUBLIC (olddecl))
  1194.         TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
  1195.     }
  1196.       if (TREE_EXTERNAL (newdecl))
  1197.     {
  1198.       TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
  1199.       TREE_EXTERNAL (newdecl) = TREE_EXTERNAL (olddecl);
  1200.       /* An extern decl does not override previous storage class.  */
  1201.       TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
  1202.     }
  1203.       else
  1204.     {
  1205.       TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
  1206.       TREE_EXTERNAL (olddecl) = 0;
  1207.       TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
  1208.     }
  1209.       /* If either decl says `inline', this fn is inline,
  1210.      unless its definition was passed already.  */
  1211.       if (TREE_INLINE (newdecl) && DECL_INITIAL (olddecl) == 0)
  1212.     TREE_INLINE (olddecl) = 1;
  1213.  
  1214.       /* If redeclaring a builtin function, and not a definition,
  1215.      it stays built in.
  1216.      Also preserve various other info from the definition.  */
  1217.       if (TREE_CODE (newdecl) == FUNCTION_DECL && !new_is_definition)
  1218.     {
  1219.       if (DECL_BUILT_IN (olddecl))
  1220.         {
  1221.           DECL_BUILT_IN (newdecl) = 1;
  1222.           DECL_SET_FUNCTION_CODE (newdecl, DECL_FUNCTION_CODE (olddecl));
  1223.         }
  1224.       else
  1225.         DECL_FRAME_SIZE (newdecl) = DECL_FRAME_SIZE (olddecl);
  1226.  
  1227.       DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
  1228.       DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
  1229.       DECL_SAVED_INSNS (newdecl) = DECL_SAVED_INSNS (olddecl);
  1230.       DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
  1231.     }
  1232.  
  1233.       /* Don't lose track of having output OLDDECL as GDB symbol.  */
  1234.       DECL_BLOCK_SYMTAB_ADDRESS (newdecl)
  1235.     = DECL_BLOCK_SYMTAB_ADDRESS (olddecl);
  1236.  
  1237.       bcopy ((char *) newdecl + sizeof (struct tree_common),
  1238.          (char *) olddecl + sizeof (struct tree_common),
  1239.          sizeof (struct tree_decl) - sizeof (struct tree_common));
  1240.  
  1241.       return 1;
  1242.     }
  1243.  
  1244.   /* New decl is completely inconsistent with the old one =>
  1245.      tell caller to replace the old one.  */
  1246.   return 0;
  1247. }
  1248.  
  1249. /* Record a decl-node X as belonging to the current lexical scope.
  1250.    Check for errors (such as an incompatible declaration for the same
  1251.    name already seen in the same scope).
  1252.  
  1253.    Returns either X or an old decl for the same name.
  1254.    If an old decl is returned, it may have been smashed
  1255.    to agree with what X says.  */
  1256.  
  1257. tree
  1258. pushdecl (x)
  1259.      tree x;
  1260. {
  1261.   register tree t;
  1262.   register tree name = DECL_NAME (x);
  1263.   register struct binding_level *b = current_binding_level;
  1264.  
  1265.   DECL_CONTEXT (x) = current_function_decl;
  1266.   /* A local declaration for a function doesn't constitute nesting.  */
  1267.   if (TREE_CODE (x) == FUNCTION_DECL && DECL_INITIAL (x) == 0)
  1268.     DECL_CONTEXT (x) = 0;
  1269.  
  1270.   if (name)
  1271.     {
  1272.       char *file;
  1273.       int line;
  1274.  
  1275.       t = lookup_name_current_level (name);
  1276.       if (t != 0 && t == error_mark_node)
  1277.     /* error_mark_node is 0 for a while during initialization!  */
  1278.     {
  1279.       t = 0;
  1280.       error_with_decl (x, "`%s' used prior to declaration");
  1281.     }
  1282.  
  1283.       if (t != 0)
  1284.     {
  1285.       file = DECL_SOURCE_FILE (t);
  1286.       line = DECL_SOURCE_LINE (t);
  1287.     }
  1288.  
  1289.       if (t != 0 && duplicate_decls (x, t))
  1290.     {
  1291.       /* If this decl is `static' and an implicit decl was seen previously,
  1292.          warn.  But don't complain if -traditional,
  1293.          since traditional compilers don't complain.  */
  1294.       if (!flag_traditional && TREE_PUBLIC (name)
  1295.           && ! TREE_PUBLIC (x) && ! TREE_EXTERNAL (x)
  1296.           /* We used to warn also for explicit extern followed by static,
  1297.          but sometimes you need to do it that way.  */
  1298.           && IDENTIFIER_IMPLICIT_DECL (name) != 0)
  1299.         {
  1300.           pedwarn ("`%s' was declared implicitly `extern' and later `static'",
  1301.                IDENTIFIER_POINTER (name));
  1302.           pedwarn_with_file_and_line (file, line,
  1303.                       "previous declaration of `%s'",
  1304.                       IDENTIFIER_POINTER (name));
  1305.         }
  1306.       return t;
  1307.     }
  1308.  
  1309.       /* If declaring a type as a typedef, and the type has no known
  1310.      typedef name, install this TYPE_DECL as its typedef name.  If
  1311.          generating prototypes, *don't* assign the current name to the
  1312.          existing type node, but rather give the name its own associated
  1313.          type node.  This new type node is created as a type variant of
  1314.          the existing type node, but it is essentially identical to the
  1315.          existing one.  Obviously, we don't generate these type variants
  1316.          if the node that we are working on is a standard type and it has
  1317.          not yet been assigned a name.  In that case we must allow the
  1318.          standard type to given its standard name (by the compiler).
  1319.          Since all standard types are effectively declared at line zero
  1320.          in the source file, we can easily check to see if we are working
  1321.          on a standard type by checking the current value of lineno.  */
  1322.  
  1323.       if (TREE_CODE (x) == TYPE_DECL)
  1324.         {
  1325.           if (DECL_SOURCE_LINE (x) == 0 || !flag_gen_aux_info)
  1326.             {
  1327.           if (TYPE_NAME (TREE_TYPE (x)) == 0)
  1328.             TYPE_NAME (TREE_TYPE (x)) = x;
  1329.             }
  1330.           else
  1331.             {
  1332.               tree tt = TREE_TYPE (x);
  1333.  
  1334.               tt = c_build_type_variant (tt,
  1335.                      TYPE_READONLY (tt), TYPE_VOLATILE (tt));
  1336.               TYPE_NAME (tt) = x;
  1337.               TREE_TYPE (x) = tt;
  1338.             }
  1339.         }
  1340.  
  1341.       /* Multiple external decls of the same identifier ought to match.  */
  1342.  
  1343.       if (TREE_EXTERNAL (x) && IDENTIFIER_GLOBAL_VALUE (name) != 0
  1344.       && (TREE_EXTERNAL (IDENTIFIER_GLOBAL_VALUE (name))
  1345.           || TREE_PUBLIC (IDENTIFIER_GLOBAL_VALUE (name))))
  1346.     {
  1347.       if (! comptypes (TREE_TYPE (x),
  1348.                TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (name))))
  1349.         {
  1350.           pedwarn_with_decl (x,
  1351.                  "type mismatch with previous external decl");
  1352.           pedwarn_with_decl (IDENTIFIER_GLOBAL_VALUE (name),
  1353.                  "previous external decl of `%s'");
  1354.         }
  1355.     }
  1356.  
  1357.       /* If a function has had an implicit declaration, and then is defined,
  1358.      make sure they are compatible.  */
  1359.  
  1360.       if (IDENTIFIER_IMPLICIT_DECL (name) != 0
  1361.       && IDENTIFIER_GLOBAL_VALUE (name) == 0
  1362.       && TREE_CODE (x) == FUNCTION_DECL
  1363.       && ! comptypes (TREE_TYPE (x),
  1364.               TREE_TYPE (IDENTIFIER_IMPLICIT_DECL (name))))
  1365.     {
  1366.       warning_with_decl (x, "type mismatch with previous implicit declaration");
  1367.       warning_with_decl (IDENTIFIER_IMPLICIT_DECL (name),
  1368.                  "previous implicit declaration of `%s'");
  1369.     }
  1370.  
  1371.       /* In PCC-compatibility mode, extern decls of vars with no current decl
  1372.      take effect at top level no matter where they are.  */
  1373.       if (flag_traditional && TREE_EXTERNAL (x)
  1374.       && lookup_name (name) == 0)
  1375.     {
  1376.       tree type = TREE_TYPE (x);
  1377.  
  1378.       /* But don't do this if the type contains temporary nodes.  */
  1379.       while (type)
  1380.         {
  1381.           if (type == error_mark_node)
  1382.         break;
  1383.           if (! TREE_PERMANENT (type))
  1384.         {
  1385.           error_with_decl (x, "Type of external `%s' is not global");
  1386.           break;
  1387.         }
  1388.           else if (TREE_CODE (type) == FUNCTION_TYPE
  1389.                && TYPE_ARG_TYPES (type) != 0)
  1390.         /* The types might not be truly local,
  1391.            but the list of arg types certainly is temporary.
  1392.            Since prototypes are nontraditional,
  1393.            ok not to do the traditional thing.  */
  1394.         break;
  1395.           type = TREE_TYPE (type);
  1396.         }
  1397.  
  1398.       if (type == 0)
  1399.         b = global_binding_level;
  1400.     }
  1401.  
  1402.       /* This name is new in its binding level.
  1403.      Install the new declaration and return it.  */
  1404.       if (b == global_binding_level)
  1405.     {
  1406.       /* Install a global value.  */
  1407.       
  1408.       /* If the first global decl has external linkage,
  1409.          warn if we later see static one.  */
  1410.       if (IDENTIFIER_GLOBAL_VALUE (name) == 0 && TREE_PUBLIC (x))
  1411.         TREE_PUBLIC (name) = 1;
  1412.  
  1413.       IDENTIFIER_GLOBAL_VALUE (name) = x;
  1414.  
  1415.       /* Don't forget if the function was used via an implicit decl.  */
  1416.       if (IDENTIFIER_IMPLICIT_DECL (name)
  1417.           && TREE_USED (IDENTIFIER_IMPLICIT_DECL (name)))
  1418.         TREE_USED (x) = 1, TREE_USED (name) = 1;
  1419.  
  1420.       /* Don't forget if its address was taken in that way.  */
  1421.       if (IDENTIFIER_IMPLICIT_DECL (name)
  1422.           && TREE_ADDRESSABLE (IDENTIFIER_IMPLICIT_DECL (name)))
  1423.         TREE_ADDRESSABLE (x) = 1;
  1424.  
  1425.       /* Warn about mismatches against previous implicit decl.  */
  1426.       if (IDENTIFIER_IMPLICIT_DECL (name) != 0
  1427.           /* If this real decl matches the implicit, don't complain.  */
  1428.           && ! (TREE_CODE (x) == FUNCTION_DECL
  1429.             && TREE_TYPE (TREE_TYPE (x)) == integer_type_node))
  1430.         pedwarn ("`%s' was previously implicitly declared to return `int'",
  1431.              IDENTIFIER_POINTER (name));
  1432.  
  1433.       /* If this decl is `static' and an `extern' was seen previously,
  1434.          that is erroneous.  */
  1435.       if (TREE_PUBLIC (name)
  1436.           && ! TREE_PUBLIC (x) && ! TREE_EXTERNAL (x))
  1437.         {
  1438.           if (IDENTIFIER_IMPLICIT_DECL (name))
  1439.         pedwarn ("`%s' was declared implicitly `extern' and later `static'",
  1440.              IDENTIFIER_POINTER (name));
  1441.           else
  1442.         pedwarn ("`%s' was declared `extern' and later `static'",
  1443.              IDENTIFIER_POINTER (name));
  1444.         }
  1445.     }
  1446.       else
  1447.     {
  1448.       /* Here to install a non-global value.  */
  1449.       tree oldlocal = IDENTIFIER_LOCAL_VALUE (name);
  1450.       tree oldglobal = IDENTIFIER_GLOBAL_VALUE (name);
  1451.       IDENTIFIER_LOCAL_VALUE (name) = x;
  1452.  
  1453.       /* If this is an extern function declaration, see if we
  1454.          have a global definition for the function.  */
  1455.       if (oldlocal == 0
  1456.           && oldglobal != 0
  1457.           && TREE_CODE (x) == FUNCTION_DECL
  1458.           && TREE_CODE (oldglobal) == FUNCTION_DECL)
  1459.         {
  1460.           /* We have one.  Their types must agree.  */
  1461.           if (! comptypes (TREE_TYPE (x),
  1462.                    TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (name))))
  1463.         pedwarn_with_decl (x, "local declaration of `%s' doesn't match global one");
  1464.           /* If the global one is inline, make the local one inline.  */
  1465.           else if (TREE_INLINE (oldglobal)
  1466.                || DECL_BUILT_IN (oldglobal)
  1467.                || (TYPE_ARG_TYPES (TREE_TYPE (oldglobal)) != 0
  1468.                && TYPE_ARG_TYPES (TREE_TYPE (x)) == 0))
  1469.         IDENTIFIER_LOCAL_VALUE (name) = oldglobal;
  1470.         }
  1471.  
  1472. #if 0 /* This case is probably sometimes the right thing to do.  */
  1473.       /* If we have a local external declaration,
  1474.          then any file-scope declaration should not
  1475.          have been static.  */
  1476.       if (oldlocal == 0 && oldglobal != 0
  1477.           && !TREE_PUBLIC (oldglobal)
  1478.           && TREE_EXTERNAL (x) && TREE_PUBLIC (x))
  1479.         warning ("`%s' locally external but globally static",
  1480.              IDENTIFIER_POINTER (name));
  1481. #endif
  1482.  
  1483.       /* If we have a local external declaration,
  1484.          and no file-scope declaration has yet been seen,
  1485.          then if we later have a file-scope decl it must not be static.  */
  1486.       if (oldlocal == 0
  1487.           && oldglobal == 0
  1488.           && TREE_EXTERNAL (x)
  1489.           && TREE_PUBLIC (x))
  1490.         {
  1491.           TREE_PUBLIC (name) = 1;
  1492.         }
  1493.  
  1494.       /* Warn if shadowing an argument at the top level of the body.  */
  1495.       if (oldlocal != 0 && !TREE_EXTERNAL (x)
  1496.           && TREE_CODE (oldlocal) == PARM_DECL
  1497.           && TREE_CODE (x) != PARM_DECL
  1498.           && current_binding_level->level_chain->parm_flag)
  1499.         warning ("declaration of `%s' shadows a parameter",
  1500.              IDENTIFIER_POINTER (name));
  1501.  
  1502.       /* Maybe warn if shadowing something else.  */
  1503.       else if (warn_shadow && !TREE_EXTERNAL (x)
  1504.            /* No shadow warnings for vars made for inlining.  */
  1505.            && !TREE_INLINE (x))
  1506.         {
  1507.           char *warnstring = 0;
  1508.  
  1509.           if (TREE_CODE (x) == PARM_DECL
  1510.           && current_binding_level->parm_flag == 1)
  1511.         /* Don't warn about the parm names in a declaration.  */
  1512.         ;
  1513.           else if (oldlocal != 0 && TREE_CODE (oldlocal) == PARM_DECL)
  1514.         warnstring = "declaration of `%s' shadows a parameter";
  1515.           else if (oldlocal != 0)
  1516.         warnstring = "declaration of `%s' shadows previous local";
  1517.           else if (IDENTIFIER_GLOBAL_VALUE (name) != 0
  1518.                && IDENTIFIER_GLOBAL_VALUE (name) != error_mark_node)
  1519.         warnstring = "declaration of `%s' shadows global declaration";
  1520.  
  1521.           if (warnstring)
  1522.         warning (warnstring, IDENTIFIER_POINTER (name));
  1523.         }
  1524.  
  1525.       /* If storing a local value, there may already be one (inherited).
  1526.          If so, record it for restoration when this binding level ends.  */
  1527.       if (oldlocal != 0)
  1528.         b->shadowed = tree_cons (name, oldlocal, b->shadowed);
  1529.     }
  1530.  
  1531.       /* Keep count of variables in this level with incomplete type.  */
  1532.       if (TYPE_SIZE (TREE_TYPE (x)) == 0)
  1533.     ++b->n_incomplete;
  1534.     }
  1535.  
  1536.   /* Put decls on list in reverse order.
  1537.      We will reverse them later if necessary.  */
  1538.   TREE_CHAIN (x) = b->names;
  1539.   b->names = x;
  1540.  
  1541.   return x;
  1542. }
  1543.  
  1544. /* Like pushdecl, only it places X in GLOBAL_BINDING_LEVEL, if appropriate.  */
  1545.  
  1546. tree
  1547. pushdecl_top_level (x)
  1548.      tree x;
  1549. {
  1550.   register tree t;
  1551.   register struct binding_level *b = current_binding_level;
  1552.  
  1553.   current_binding_level = global_binding_level;
  1554.   t = pushdecl (x);
  1555.   current_binding_level = b;
  1556.   return t;
  1557. }
  1558.  
  1559. /* Generate an implicit declaration for identifier FUNCTIONID
  1560.    as a function of type int ().  Print a warning if appropriate.  */
  1561.  
  1562. tree
  1563. implicitly_declare (functionid)
  1564.      tree functionid;
  1565. {
  1566.   register tree decl;
  1567.   int traditional_warning = 0;
  1568.  
  1569.   /* Save the decl permanently so we can warn if definition follows.  */
  1570. #if 0  /* Since warn_implicit is normally 0, this is normally true.
  1571.       There's no point in doing anything special to save space
  1572.       only when warn_implicit is set.
  1573.       Perhaps this really should test for a condition that is
  1574.       usually false; however, some other uses of
  1575.       IDENTIFIER_IMPLICIT_DECL in this file will crash unless changed.
  1576.  
  1577.       If this is changed, the similar conditional at the end of this
  1578.       function must be changed as well.  */
  1579.   if (flag_traditional || !warn_implicit
  1580.       || current_binding_level == global_binding_level)
  1581. #endif
  1582.     end_temporary_allocation ();
  1583.  
  1584.   /* We used to reuse an old implicit decl here,
  1585.      but this loses with inline functions because it can clobber
  1586.      the saved decl chains.  */
  1587. /*  if (IDENTIFIER_IMPLICIT_DECL (functionid) != 0)
  1588.     decl = IDENTIFIER_IMPLICIT_DECL (functionid);
  1589.   else  */
  1590.     decl = build_decl (FUNCTION_DECL, functionid, default_function_type);
  1591.  
  1592.   /* Warn of implicit decl following explicit local extern decl.
  1593.      This is probably a program designed for traditional C.  */
  1594.   if (TREE_PUBLIC (functionid) && IDENTIFIER_GLOBAL_VALUE (functionid) == 0)
  1595.     traditional_warning = 1;
  1596.  
  1597.   TREE_EXTERNAL (decl) = 1;
  1598.   TREE_PUBLIC (decl) = 1;
  1599.  
  1600.   /* ANSI standard says implicit declarations are in the innermost block.
  1601.      So we record the decl in the standard fashion.
  1602.      If flag_traditional is set, pushdecl does it top-level.  */
  1603.   pushdecl (decl);
  1604.  
  1605.   /* This is a no-op in c-lang.c or something real in objc-actions.c.  */
  1606.   maybe_objc_check_decl (decl);
  1607.  
  1608.   rest_of_decl_compilation (decl, 0, 0, 0);
  1609.  
  1610.   if (warn_implicit
  1611.       /* Only one warning per identifier.  */
  1612.       && IDENTIFIER_IMPLICIT_DECL (functionid) == 0)
  1613.     warning ("implicit declaration of function `%s'",
  1614.          IDENTIFIER_POINTER (functionid));
  1615.   else if (warn_traditional && traditional_warning)
  1616.     warning ("function `%s' was previously declared within a block",
  1617.          IDENTIFIER_POINTER (functionid));
  1618.  
  1619.   IDENTIFIER_IMPLICIT_DECL (functionid) = decl;
  1620.  
  1621.   /* Write a record describing this implicit function declaration to the
  1622.      prototypes file (if requested).  */
  1623.  
  1624.   gen_aux_info_record (decl, 0, 1, 0);
  1625.  
  1626. #if 0
  1627.   if (flag_traditional || ! warn_implicit
  1628.       || current_binding_level == global_binding_level)
  1629. #endif
  1630.     resume_temporary_allocation ();
  1631.  
  1632.   return decl;
  1633. }
  1634.  
  1635. /* Return zero if the declaration NEWDECL is valid
  1636.    when the declaration OLDDECL (assumed to be for the same name)
  1637.    has already been seen.
  1638.    Otherwise return an error message format string with a %s
  1639.    where the identifier should go.  */
  1640.  
  1641. static char *
  1642. redeclaration_error_message (newdecl, olddecl)
  1643.      tree newdecl, olddecl;
  1644. {
  1645.   if (TREE_CODE (newdecl) == TYPE_DECL)
  1646.     {
  1647.       if (flag_traditional && TREE_TYPE (newdecl) == TREE_TYPE (olddecl))
  1648.     return 0;
  1649.       return "redefinition of `%s'";
  1650.     }
  1651.   else if (TREE_CODE (newdecl) == FUNCTION_DECL)
  1652.     {
  1653.       /* Declarations of functions can insist on internal linkage
  1654.      but they can't be inconsistent with internal linkage,
  1655.      so there can be no error on that account.
  1656.      However defining the same name twice is no good.  */
  1657.       if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0
  1658.       /* However, defining once as extern inline and a second
  1659.          time in another way is ok.  */
  1660.       && !(TREE_INLINE (olddecl) && TREE_EXTERNAL (olddecl)
  1661.            && !(TREE_INLINE (newdecl) && TREE_EXTERNAL (newdecl))))
  1662.     return "redefinition of `%s'";
  1663.       return 0;
  1664.     }
  1665.   else if (current_binding_level == global_binding_level)
  1666.     {
  1667.       /* Objects declared at top level:  */
  1668.       /* If at least one is a reference, it's ok.  */
  1669.       if (TREE_EXTERNAL (newdecl) || TREE_EXTERNAL (olddecl))
  1670.     return 0;
  1671.       /* Reject two definitions.  */
  1672.       if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0)
  1673.     return "redefinition of `%s'";
  1674.       /* Now we have two tentative defs, or one tentative and one real def.  */
  1675.       /* Insist that the linkage match.  */
  1676.       if (TREE_PUBLIC (olddecl) != TREE_PUBLIC (newdecl))
  1677.     return "conflicting declarations of `%s'";
  1678.       return 0;
  1679.     }
  1680.   else
  1681.     {
  1682.       /* Objects declared with block scope:  */
  1683.       /* Reject two definitions, and reject a definition
  1684.      together with an external reference.  */
  1685.        if (!(TREE_EXTERNAL (newdecl) && TREE_EXTERNAL (olddecl)))
  1686.     return "redeclaration of `%s'";
  1687.       return 0;
  1688.     }
  1689. }
  1690.  
  1691. /* Get the LABEL_DECL corresponding to identifier ID as a label.
  1692.    Create one if none exists so far for the current function.
  1693.    This function is called for both label definitions and label references.  */
  1694.  
  1695. tree
  1696. lookup_label (id)
  1697.      tree id;
  1698. {
  1699.   register tree decl = IDENTIFIER_LABEL_VALUE (id);
  1700.  
  1701.   /* Use a label already defined or ref'd with this name.  */
  1702.   if (decl != 0)
  1703.     {
  1704.       /* But not if it is inherited and wasn't declared to be inheritable.  */
  1705.       if (DECL_CONTEXT (decl) != current_function_decl
  1706.       && ! C_DECLARED_LABEL_FLAG (decl))
  1707.     return shadow_label (id);
  1708.       return decl;
  1709.     }
  1710.  
  1711.   decl = build_decl (LABEL_DECL, id, void_type_node);
  1712.  
  1713.   /* A label not explicitly declared must be local to where it's ref'd.  */
  1714.   DECL_CONTEXT (decl) = current_function_decl;
  1715.  
  1716.   DECL_MODE (decl) = VOIDmode;
  1717.  
  1718.   /* Say where one reference is to the label,
  1719.      for the sake of the error if it is not defined.  */
  1720.   DECL_SOURCE_LINE (decl) = lineno;
  1721.   DECL_SOURCE_FILE (decl) = input_filename;
  1722.  
  1723.   IDENTIFIER_LABEL_VALUE (id) = decl;
  1724.  
  1725.   named_labels
  1726.     = tree_cons (NULL_TREE, decl, named_labels);
  1727.  
  1728.   return decl;
  1729. }
  1730.  
  1731. /* Make a label named NAME in the current function,
  1732.    shadowing silently any that may be inherited from containing functions
  1733.    or containing scopes.
  1734.  
  1735.    Note that valid use, if the label being shadowed
  1736.    comes from another scope in the same function,
  1737.    requires calling declare_nonlocal_label right away.  */
  1738.  
  1739. tree
  1740. shadow_label (name)
  1741.      tree name;
  1742. {
  1743.   register tree decl = IDENTIFIER_LABEL_VALUE (name);
  1744.  
  1745.   if (decl != 0)
  1746.     {
  1747.       shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
  1748.       IDENTIFIER_LABEL_VALUE (name) = decl = 0;
  1749.     }
  1750.  
  1751.   return lookup_label (name);
  1752. }
  1753.  
  1754. /* Define a label, specifying the location in the source file.
  1755.    Return the LABEL_DECL node for the label, if the definition is valid.
  1756.    Otherwise return 0.  */
  1757.  
  1758. tree
  1759. define_label (filename, line, name)
  1760.      char *filename;
  1761.      int line;
  1762.      tree name;
  1763. {
  1764.   tree decl = lookup_label (name);
  1765.  
  1766.   /* If label with this name is known from an outer context, shadow it.  */
  1767.   if (decl != 0 && DECL_CONTEXT (decl) != current_function_decl)
  1768.     {
  1769.       shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
  1770.       IDENTIFIER_LABEL_VALUE (name) = 0;
  1771.       decl = lookup_label (name);
  1772.     }
  1773.  
  1774.   if (DECL_INITIAL (decl) != 0)
  1775.     {
  1776.       error_with_decl (decl, "duplicate label `%s'");
  1777.       return 0;
  1778.     }
  1779.   else
  1780.     {
  1781.       /* Mark label as having been defined.  */
  1782.       DECL_INITIAL (decl) = error_mark_node;
  1783.       /* Say where in the source.  */
  1784.       DECL_SOURCE_FILE (decl) = filename;
  1785.       DECL_SOURCE_LINE (decl) = line;
  1786.       return decl;
  1787.     }
  1788. }
  1789.  
  1790. /* Return the list of declarations of the current level.
  1791.    Note that this list is in reverse order unless/until
  1792.    you nreverse it; and when you do nreverse it, you must
  1793.    store the result back using `storedecls' or you will lose.  */
  1794.  
  1795. tree
  1796. getdecls ()
  1797. {
  1798.   return current_binding_level->names;
  1799. }
  1800.  
  1801. /* Return the list of type-tags (for structs, etc) of the current level.  */
  1802.  
  1803. tree
  1804. gettags ()
  1805. {
  1806.   return current_binding_level->tags;
  1807. }
  1808.  
  1809. /* Store the list of declarations of the current level.
  1810.    This is done for the parameter declarations of a function being defined,
  1811.    after they are modified in the light of any missing parameters.  */
  1812.  
  1813. static void
  1814. storedecls (decls)
  1815.      tree decls;
  1816. {
  1817.   current_binding_level->names = decls;
  1818. }
  1819.  
  1820. /* Similarly, store the list of tags of the current level.  */
  1821.  
  1822. static void
  1823. storetags (tags)
  1824.      tree tags;
  1825. {
  1826.   current_binding_level->tags = tags;
  1827. }
  1828.  
  1829. /* Given NAME, an IDENTIFIER_NODE,
  1830.    return the structure (or union or enum) definition for that name.
  1831.    Searches binding levels from BINDING_LEVEL up to the global level.
  1832.    If THISLEVEL_ONLY is nonzero, searches only the specified context
  1833.    (but skips any tag-transparent contexts to find one that is
  1834.    meaningful for tags).
  1835.    CODE says which kind of type the caller wants;
  1836.    it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
  1837.    If the wrong kind of type is found, an error is reported.  */
  1838.  
  1839. static tree
  1840. lookup_tag (code, name, binding_level, thislevel_only)
  1841.      enum tree_code code;
  1842.      struct binding_level *binding_level;
  1843.      tree name;
  1844.      int thislevel_only;
  1845. {
  1846.   register struct binding_level *level;
  1847.  
  1848.   for (level = binding_level; level; level = level->level_chain)
  1849.     {
  1850.       register tree tail;
  1851.       for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
  1852.     {
  1853.       if (TREE_PURPOSE (tail) == name)
  1854.         {
  1855.           if (TREE_CODE (TREE_VALUE (tail)) != code)
  1856.         {
  1857.           /* Definition isn't the kind we were looking for.  */
  1858.           pending_invalid_xref = name;
  1859.         }
  1860.           return TREE_VALUE (tail);
  1861.         }
  1862.     }
  1863.       if (thislevel_only && ! level->tag_transparent)
  1864.     return NULL_TREE;
  1865.     }
  1866.   return NULL_TREE;
  1867. }
  1868.  
  1869. /* Print an error message now
  1870.    for a recent invalid struct, union or enum cross reference.
  1871.    We don't print them immediately because they are not invalid
  1872.    when used in the `struct foo;' construct for shadowing.  */
  1873.  
  1874. pending_xref_error ()
  1875. {
  1876.   if (pending_invalid_xref != 0)
  1877.     error_with_file_and_line (pending_invalid_xref_file,
  1878.                   pending_invalid_xref_line,
  1879.                   "`%s' defined as wrong kind of tag",
  1880.                   IDENTIFIER_POINTER (pending_invalid_xref));
  1881.   pending_invalid_xref = 0;
  1882. }
  1883.  
  1884. /* Given a type, find the tag that was defined for it and return the tag name.
  1885.    Otherwise return 0.  */
  1886.  
  1887. static tree
  1888. lookup_tag_reverse (type)
  1889.      tree type;
  1890. {
  1891.   register struct binding_level *level;
  1892.  
  1893.   for (level = current_binding_level; level; level = level->level_chain)
  1894.     {
  1895.       register tree tail;
  1896.       for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
  1897.     {
  1898.       if (TREE_VALUE (tail) == type)
  1899.         return TREE_PURPOSE (tail);
  1900.     }
  1901.     }
  1902.   return NULL_TREE;
  1903. }
  1904.  
  1905. /* Look up NAME in the current binding level and its superiors
  1906.    in the namespace of variables, functions and typedefs.
  1907.    Return a ..._DECL node of some kind representing its definition,
  1908.    or return 0 if it is undefined.  */
  1909.  
  1910. tree
  1911. lookup_name (name)
  1912.      tree name;
  1913. {
  1914.   register tree val;
  1915.   if (current_binding_level != global_binding_level
  1916.       && IDENTIFIER_LOCAL_VALUE (name))
  1917.     val = IDENTIFIER_LOCAL_VALUE (name);
  1918.   else
  1919.     val = IDENTIFIER_GLOBAL_VALUE (name);
  1920.   if (val && TREE_TYPE (val) == error_mark_node)
  1921.     return error_mark_node;
  1922.   return val;
  1923. }
  1924.  
  1925. /* Similar to `lookup_name' but look only at current binding level.  */
  1926.  
  1927. static tree
  1928. lookup_name_current_level (name)
  1929.      tree name;
  1930. {
  1931.   register tree t;
  1932.  
  1933.   if (current_binding_level == global_binding_level)
  1934.     return IDENTIFIER_GLOBAL_VALUE (name);
  1935.  
  1936.   if (IDENTIFIER_LOCAL_VALUE (name) == 0)
  1937.     return 0;
  1938.  
  1939.   for (t = current_binding_level->names; t; t = TREE_CHAIN (t))
  1940.     if (DECL_NAME (t) == name)
  1941.       break;
  1942.  
  1943.   return t;
  1944. }
  1945.  
  1946. /* Create the predefined scalar types of C,
  1947.    and some nodes representing standard constants (0, 1, (void *)0).
  1948.    Initialize the global binding level.
  1949.    Make definitions for built-in primitive functions.  */
  1950.  
  1951. void
  1952. init_decl_processing ()
  1953. {
  1954.   register tree endlink;
  1955.   tree decl;
  1956.   /* Either char* or void*.  */
  1957.   tree traditional_ptr_type_node;
  1958.   /* Data type of memcpy.  */
  1959.   tree memcpy_ftype;
  1960.   int wchar_type_size;
  1961.  
  1962.   current_function_decl = NULL;
  1963.   named_labels = NULL;
  1964.   current_binding_level = NULL_BINDING_LEVEL;
  1965.   free_binding_level = NULL_BINDING_LEVEL;
  1966.   pushlevel (0);    /* make the binding_level structure for global names */
  1967.   global_binding_level = current_binding_level;
  1968.  
  1969.   /* Define `int' and `char' first so that dbx will output them first.  */
  1970.  
  1971.   integer_type_node = make_signed_type (INT_TYPE_SIZE);
  1972.   pushdecl (build_decl (TYPE_DECL, ridpointers[(int) RID_INT],
  1973.             integer_type_node));
  1974.  
  1975.   /* Define `char', which is like either `signed char' or `unsigned char'
  1976.      but not the same as either.  */
  1977.  
  1978.   char_type_node =
  1979.     (flag_signed_char
  1980.      ? make_signed_type (CHAR_TYPE_SIZE)
  1981.      : make_unsigned_type (CHAR_TYPE_SIZE));
  1982.   pushdecl (build_decl (TYPE_DECL, get_identifier ("char"),
  1983.             char_type_node));
  1984.  
  1985.   long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
  1986.   pushdecl (build_decl (TYPE_DECL, get_identifier ("long int"),
  1987.             long_integer_type_node));
  1988.  
  1989.   unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
  1990.   pushdecl (build_decl (TYPE_DECL, get_identifier ("unsigned int"),
  1991.             unsigned_type_node));
  1992.  
  1993.   long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
  1994.   pushdecl (build_decl (TYPE_DECL, get_identifier ("long unsigned int"),
  1995.             long_unsigned_type_node));
  1996.  
  1997.   /* `unsigned long' is the standard type for sizeof.
  1998.      Traditionally, use a signed type.
  1999.      Note that stddef.h uses `unsigned long',
  2000.      and this must agree, even of long and int are the same size.  */
  2001.   if (flag_traditional)
  2002.     sizetype = long_integer_type_node;
  2003.   else
  2004.     sizetype
  2005.       = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (SIZE_TYPE)));
  2006.  
  2007.   ptrdiff_type_node
  2008.     = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (PTRDIFF_TYPE)));
  2009.  
  2010.   TREE_TYPE (TYPE_SIZE (integer_type_node)) = sizetype;
  2011.   TREE_TYPE (TYPE_SIZE (char_type_node)) = sizetype;
  2012.   TREE_TYPE (TYPE_SIZE (unsigned_type_node)) = sizetype;
  2013.   TREE_TYPE (TYPE_SIZE (long_unsigned_type_node)) = sizetype;
  2014.   TREE_TYPE (TYPE_SIZE (long_integer_type_node)) = sizetype;
  2015.  
  2016.   error_mark_node = make_node (ERROR_MARK);
  2017.   TREE_TYPE (error_mark_node) = error_mark_node;
  2018.  
  2019.   short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
  2020.   pushdecl (build_decl (TYPE_DECL, get_identifier ("short int"),
  2021.             short_integer_type_node));
  2022.  
  2023.   long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
  2024.   pushdecl (build_decl (TYPE_DECL, get_identifier ("long long int"),
  2025.             long_long_integer_type_node));
  2026.  
  2027.   short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
  2028.   pushdecl (build_decl (TYPE_DECL, get_identifier ("short unsigned int"),
  2029.             short_unsigned_type_node));
  2030.  
  2031.   long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
  2032.   pushdecl (build_decl (TYPE_DECL, get_identifier ("long long unsigned int"),
  2033.             long_long_unsigned_type_node));
  2034.  
  2035.   /* Define both `signed char' and `unsigned char'.  */
  2036.   signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
  2037.   pushdecl (build_decl (TYPE_DECL, get_identifier ("signed char"),
  2038.             signed_char_type_node));
  2039.  
  2040.   unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
  2041.   pushdecl (build_decl (TYPE_DECL, get_identifier ("unsigned char"),
  2042.             unsigned_char_type_node));
  2043.  
  2044.   float_type_node = make_node (REAL_TYPE);
  2045.   TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
  2046.   pushdecl (build_decl (TYPE_DECL, ridpointers[(int) RID_FLOAT],
  2047.             float_type_node));
  2048.   layout_type (float_type_node);
  2049.  
  2050.   double_type_node = make_node (REAL_TYPE);
  2051.   if (flag_short_double)
  2052.     TYPE_PRECISION (double_type_node) = FLOAT_TYPE_SIZE;
  2053.   else
  2054.     TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
  2055.   pushdecl (build_decl (TYPE_DECL, ridpointers[(int) RID_DOUBLE],
  2056.             double_type_node));
  2057.   layout_type (double_type_node);
  2058.  
  2059.   long_double_type_node = make_node (REAL_TYPE);
  2060.   TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
  2061.   pushdecl (build_decl (TYPE_DECL, get_identifier ("long double"),
  2062.             long_double_type_node));
  2063.   layout_type (long_double_type_node);
  2064.  
  2065.   wchar_type_node
  2066.     = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (WCHAR_TYPE)));
  2067.   wchar_type_size = TYPE_PRECISION (wchar_type_node);
  2068.   signed_wchar_type_node = type_for_size (wchar_type_size, 0);
  2069.   unsigned_wchar_type_node = type_for_size (wchar_type_size, 1);
  2070.  
  2071.   integer_zero_node = build_int_2 (0, 0);
  2072.   TREE_TYPE (integer_zero_node) = integer_type_node;
  2073.   integer_one_node = build_int_2 (1, 0);
  2074.   TREE_TYPE (integer_one_node) = integer_type_node;
  2075.  
  2076.   size_zero_node = build_int_2 (0, 0);
  2077.   TREE_TYPE (size_zero_node) = sizetype;
  2078.   size_one_node = build_int_2 (1, 0);
  2079.   TREE_TYPE (size_one_node) = sizetype;
  2080.  
  2081.   void_type_node = make_node (VOID_TYPE);
  2082.   pushdecl (build_decl (TYPE_DECL,
  2083.             ridpointers[(int) RID_VOID], void_type_node));
  2084.   layout_type (void_type_node);    /* Uses integer_zero_node */
  2085.   /* We are not going to have real types in C with less than byte alignment,
  2086.      so we might as well not have any types that claim to have it.  */
  2087.   TYPE_ALIGN (void_type_node) = BITS_PER_UNIT;
  2088.  
  2089.   null_pointer_node = build_int_2 (0, 0);
  2090.   TREE_TYPE (null_pointer_node) = build_pointer_type (void_type_node);
  2091.   layout_type (TREE_TYPE (null_pointer_node));
  2092.  
  2093.   string_type_node = build_pointer_type (char_type_node);
  2094.   const_string_type_node
  2095.     = build_pointer_type (build_type_variant (char_type_node, 1, 0));
  2096.  
  2097.   /* make a type for arrays of 256 characters.
  2098.      256 is picked randomly because we have a type for integers from 0 to 255.
  2099.      With luck nothing will ever really depend on the length of this
  2100.      array type.  */
  2101.   char_array_type_node
  2102.     = build_array_type (char_type_node, unsigned_char_type_node);
  2103.   /* Likewise for arrays of ints.  */
  2104.   int_array_type_node
  2105.     = build_array_type (integer_type_node, unsigned_char_type_node);
  2106.   /* This is for wide string constants.  */
  2107.   wchar_array_type_node
  2108.     = build_array_type (wchar_type_node, unsigned_char_type_node);
  2109.  
  2110.   default_function_type
  2111.     = build_function_type (integer_type_node, NULL_TREE);
  2112.  
  2113.   ptr_type_node = build_pointer_type (void_type_node);
  2114.   const_ptr_type_node
  2115.     = build_pointer_type (build_type_variant (void_type_node, 1, 0));
  2116.  
  2117.   endlink = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
  2118.  
  2119.   double_ftype_double
  2120.     = build_function_type (double_type_node,
  2121.                tree_cons (NULL_TREE, double_type_node, endlink));
  2122.  
  2123.   double_ftype_double_double
  2124.     = build_function_type (double_type_node,
  2125.                tree_cons (NULL_TREE, double_type_node,
  2126.                       tree_cons (NULL_TREE,
  2127.                          double_type_node, endlink)));
  2128.  
  2129.   int_ftype_int
  2130.     = build_function_type (integer_type_node,
  2131.                tree_cons (NULL_TREE, integer_type_node, endlink));
  2132.  
  2133.   long_ftype_long
  2134.     = build_function_type (long_integer_type_node,
  2135.                tree_cons (NULL_TREE,
  2136.                       long_integer_type_node, endlink));
  2137.  
  2138.   void_ftype_ptr_ptr_int
  2139.     = build_function_type (void_type_node,
  2140.                tree_cons (NULL_TREE, ptr_type_node,
  2141.                       tree_cons (NULL_TREE, ptr_type_node,
  2142.                          tree_cons (NULL_TREE,
  2143.                                 integer_type_node,
  2144.                                 endlink))));
  2145.  
  2146.   int_ftype_cptr_cptr_sizet
  2147.     = build_function_type (integer_type_node,
  2148.                tree_cons (NULL_TREE, const_ptr_type_node,
  2149.                       tree_cons (NULL_TREE, const_ptr_type_node,
  2150.                          tree_cons (NULL_TREE,
  2151.                                 sizetype,
  2152.                                 endlink))));
  2153.  
  2154.   void_ftype_ptr_int_int
  2155.     = build_function_type (void_type_node,
  2156.                tree_cons (NULL_TREE, ptr_type_node,
  2157.                       tree_cons (NULL_TREE, integer_type_node,
  2158.                          tree_cons (NULL_TREE,
  2159.                                 integer_type_node,
  2160.                                 endlink))));
  2161.  
  2162.   string_ftype_ptr_ptr        /* strcpy prototype */
  2163.     = build_function_type (string_type_node,
  2164.                tree_cons (NULL_TREE, string_type_node,
  2165.                       tree_cons (NULL_TREE,
  2166.                          const_string_type_node,
  2167.                          endlink)));
  2168.  
  2169.   int_ftype_string_string    /* strcmp prototype */
  2170.     = build_function_type (integer_type_node,
  2171.                tree_cons (NULL_TREE, const_string_type_node,
  2172.                       tree_cons (NULL_TREE,
  2173.                          const_string_type_node,
  2174.                          endlink)));
  2175.  
  2176.   traditional_ptr_type_node
  2177.     = (flag_traditional ? string_type_node : ptr_type_node);
  2178.  
  2179.   memcpy_ftype    /* memcpy prototype */
  2180.     = build_function_type (traditional_ptr_type_node,
  2181.                tree_cons (NULL_TREE, ptr_type_node,
  2182.                       tree_cons (NULL_TREE, const_ptr_type_node,
  2183.                          tree_cons (NULL_TREE,
  2184.                                 sizetype,
  2185.                                 endlink))));
  2186.  
  2187.   /* ``integer_tpe_node'' mispelling corrected: North-Keys 30 Mar 91 */
  2188.   builtin_function ("__builtin_constant_p",
  2189.             build_function_type (integer_type_node, endlink),
  2190.             BUILT_IN_CONSTANT_P, 0);
  2191.  
  2192.   builtin_function ("__builtin_alloca",
  2193.             build_function_type (ptr_type_node,
  2194.                      tree_cons (NULL_TREE,
  2195.                             sizetype,
  2196.                             endlink)),
  2197.             BUILT_IN_ALLOCA, "alloca");
  2198.   builtin_function ("alloca",
  2199.             build_function_type (ptr_type_node,
  2200.                      tree_cons (NULL_TREE,
  2201.                             sizetype,
  2202.                             endlink)),
  2203.             BUILT_IN_ALLOCA, 0);
  2204.  
  2205.   builtin_function ("__builtin_abs", int_ftype_int, BUILT_IN_ABS, 0);
  2206.   builtin_function ("__builtin_fabs", double_ftype_double, BUILT_IN_FABS, 0);
  2207.   builtin_function ("__builtin_labs", long_ftype_long, BUILT_IN_LABS, 0);
  2208.   builtin_function ("__builtin_ffs", int_ftype_int, BUILT_IN_FFS, 0);
  2209. #ifdef NeXT
  2210.   if (flag_builtin_ansi_functions)
  2211. #endif /* NeXT */
  2212.     {
  2213.       builtin_function ("abs", int_ftype_int, BUILT_IN_ABS, 0);
  2214.       builtin_function ("fabs", double_ftype_double, BUILT_IN_FABS, 0);
  2215.       builtin_function ("labs", long_ftype_long, BUILT_IN_LABS, 0);
  2216.     }
  2217.   builtin_function ("__builtin_saveregs", default_function_type,
  2218.             BUILT_IN_SAVEREGS, 0);
  2219. #ifdef EXPAND_BUILTIN_VARARGS
  2220.   builtin_function ("__builtin_varargs",
  2221.             build_function_type (ptr_type_node,
  2222.                      tree_cons (NULL_TREE,
  2223.                             integer_type_node,
  2224.                             endlink)),
  2225.             BUILT_IN_VARARGS, 0);
  2226. #endif
  2227.   builtin_function ("__builtin_classify_type", default_function_type,
  2228.             BUILT_IN_CLASSIFY_TYPE, 0);
  2229.   builtin_function ("__builtin_next_arg",
  2230.             build_function_type (ptr_type_node, endlink),
  2231.             BUILT_IN_NEXT_ARG, 0);
  2232.  
  2233.   /* Currently under experimentation.  */
  2234.   decl = builtin_function ("__builtin_memcpy", memcpy_ftype,
  2235.                BUILT_IN_MEMCPY, "memcpy");
  2236.   decl = builtin_function ("__builtin_memcmp", int_ftype_cptr_cptr_sizet,
  2237.                BUILT_IN_MEMCMP, "memcmp");
  2238.   decl = builtin_function ("__builtin_strcmp", int_ftype_string_string,
  2239.                BUILT_IN_STRCMP, "strcmp");
  2240.   decl = builtin_function ("__builtin_strcpy", string_ftype_ptr_ptr,
  2241.                BUILT_IN_STRCPY, "strcpy");
  2242. #ifdef NeXT
  2243.   if (flag_builtin_ansi_functions)
  2244. #endif /* NeXT */
  2245.     {
  2246.       builtin_function ("memcpy", memcpy_ftype, BUILT_IN_MEMCPY, 0);
  2247.       builtin_function ("memcmp", int_ftype_cptr_cptr_sizet, BUILT_IN_MEMCMP, 0);
  2248.       builtin_function ("strcmp", int_ftype_string_string, BUILT_IN_STRCMP, 0);
  2249.       builtin_function ("strcpy", string_ftype_ptr_ptr, BUILT_IN_STRCPY, 0);
  2250.     }
  2251. #if 0
  2252.   /* Support for these has not been written in either expand_builtin
  2253.      or build_function_call.  */
  2254.   builtin_function ("__builtin_div", default_ftype, BUILT_IN_DIV, 0);
  2255.   builtin_function ("__builtin_ldiv", default_ftype, BUILT_IN_LDIV, 0);
  2256.   builtin_function ("__builtin_ffloor", double_ftype_double, BUILT_IN_FFLOOR, 0);
  2257.   builtin_function ("__builtin_fceil", double_ftype_double, BUILT_IN_FCEIL, 0);
  2258.   builtin_function ("__builtin_fmod", double_ftype_double_double, BUILT_IN_FMOD, 0);
  2259.   builtin_function ("__builtin_frem", double_ftype_double_double, BUILT_IN_FREM, 0);
  2260.   builtin_function ("__builtin_memset", ptr_ftype_ptr_int_int, BUILT_IN_MEMSET, 0);
  2261.   builtin_function ("__builtin_fsqrt", double_ftype_double, BUILT_IN_FSQRT, 0);
  2262.   builtin_function ("__builtin_getexp", double_ftype_double, BUILT_IN_GETEXP, 0);
  2263.   builtin_function ("__builtin_getman", double_ftype_double, BUILT_IN_GETMAN, 0);
  2264. #endif
  2265.  
  2266.   start_identifier_warnings ();
  2267.  
  2268.   init_format_info_table ();
  2269. }
  2270.  
  2271. /* Return a definition for a builtin function named NAME and whose data type
  2272.    is TYPE.  TYPE should be a function type with argument types.
  2273.    FUNCTION_CODE tells later passes how to compile calls to this function.
  2274.    See tree.h for its possible values.
  2275.  
  2276.    If LIBRARY_NAME is nonzero, use that for DECL_ASSEMBLER_NAME,
  2277.    the name to be called if we can't opencode the function.  */
  2278.  
  2279. static tree
  2280. builtin_function (name, type, function_code, library_name)
  2281.      char *name;
  2282.      tree type;
  2283.      enum built_in_function function_code;
  2284.      char *library_name;
  2285. {
  2286.   tree decl = build_decl (FUNCTION_DECL, get_identifier (name), type);
  2287.   TREE_EXTERNAL (decl) = 1;
  2288.   TREE_PUBLIC (decl) = 1;
  2289.   if (library_name)
  2290.     DECL_ASSEMBLER_NAME (decl) = library_name;
  2291.   make_decl_rtl (decl, 0, 1);
  2292.   pushdecl (decl);
  2293.   DECL_BUILT_IN (decl) = 1;
  2294.   DECL_SET_FUNCTION_CODE (decl, function_code);
  2295.  
  2296.   return decl;
  2297. }
  2298.  
  2299. /* Called when a declaration is seen that contains no names to declare.
  2300.    If its type is a reference to a structure, union or enum inherited
  2301.    from a containing scope, shadow that tag name for the current scope
  2302.    with a forward reference.
  2303.    If its type defines a new named structure or union
  2304.    or defines an enum, it is valid but we need not do anything here.
  2305.    Otherwise, it is an error.  */
  2306.  
  2307. void
  2308. shadow_tag (declspecs)
  2309.      tree declspecs;
  2310. {
  2311.   int found_tag = 0;
  2312.   int warned = 0;
  2313.   register tree link;
  2314.  
  2315.   pending_invalid_xref = 0;
  2316.  
  2317.   for (link = declspecs; link; link = TREE_CHAIN (link))
  2318.     {
  2319.       register tree value = TREE_VALUE (link);
  2320.       register enum tree_code code = TREE_CODE (value);
  2321.  
  2322.       if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
  2323.     /* Used to test also that TYPE_SIZE (value) != 0.
  2324.        That caused warning for `struct foo;' at top level in the file.  */
  2325.     {
  2326.       register tree name = lookup_tag_reverse (value);
  2327.       register tree t;
  2328.  
  2329.       found_tag++;
  2330.  
  2331.       if (name == 0)
  2332.         {
  2333.           if (code != ENUMERAL_TYPE)    /* Empty unnamed enum OK */
  2334.         {
  2335.           warning ("unnamed struct/union that defines no instances");
  2336.           warned = 1;
  2337.         }
  2338.         }
  2339.       else
  2340.         {
  2341.           t = lookup_tag (code, name, current_binding_level, 1);
  2342.  
  2343.           if (t == 0)
  2344.         {
  2345.           t = make_node (code);
  2346.           pushtag (name, t);
  2347.         }
  2348.         }
  2349.     }
  2350.       else
  2351.     {
  2352.       if (!warned)
  2353.         warning ("useless keyword or type name in empty declaration");
  2354.       warned = 1;
  2355.     }
  2356.     }
  2357.  
  2358.   if (!warned)
  2359.     {
  2360.       if (found_tag > 1)
  2361.     warning ("two types specified in one empty declaration");
  2362.       if (found_tag == 0)
  2363.     warning ("empty declaration");
  2364.     }
  2365. }
  2366.  
  2367. /* Decode a "typename", such as "int **", returning a ..._TYPE node.  */
  2368.  
  2369. tree
  2370. groktypename (typename)
  2371.      tree typename;
  2372. {
  2373.   if (TREE_CODE (typename) != TREE_LIST)
  2374.     return typename;
  2375.   return grokdeclarator (TREE_VALUE (typename),
  2376.              TREE_PURPOSE (typename),
  2377.              TYPENAME, 0);
  2378. }
  2379.  
  2380. /* Return a PARM_DECL node for a given pair of specs and declarator.  */
  2381.  
  2382. tree
  2383. groktypename_in_parm_context (typename)
  2384.      tree typename;
  2385. {
  2386.   if (TREE_CODE (typename) != TREE_LIST)
  2387.     return typename;
  2388.   return grokdeclarator (TREE_VALUE (typename),
  2389.              TREE_PURPOSE (typename),
  2390.              PARM, 0);
  2391. }
  2392.  
  2393. /* Decode a declarator in an ordinary declaration or data definition.
  2394.    This is called as soon as the type information and variable name
  2395.    have been parsed, before parsing the initializer if any.
  2396.    Here we create the ..._DECL node, fill in its type,
  2397.    and put it on the list of decls for the current context.
  2398.    The ..._DECL node is returned as the value.
  2399.  
  2400.    Exception: for arrays where the length is not specified,
  2401.    the type is left null, to be filled in by `finish_decl'.
  2402.  
  2403.    Function definitions do not come here; they go to start_function
  2404.    instead.  However, external and forward declarations of functions
  2405.    do go through here.  Structure field declarations are done by
  2406.    grokfield and not through here.  */
  2407.  
  2408. /* Set this to zero to debug not using the temporary obstack
  2409.    to parse initializers.  */
  2410. int debug_temp_inits = 1;
  2411.  
  2412. tree
  2413. start_decl (declarator, declspecs, initialized)
  2414.      tree declspecs, declarator;
  2415.      int initialized;
  2416. {
  2417.   register tree decl = grokdeclarator (declarator, declspecs,
  2418.                        NORMAL, initialized);
  2419.   register tree tem;
  2420.   int init_written = initialized;
  2421.  
  2422.   if (initialized)
  2423.     /* Is it valid for this decl to have an initializer at all?
  2424.        If not, set INITIALIZED to zero, which will indirectly
  2425.        tell `finish_decl' to ignore the initializer once it is parsed.  */
  2426.     switch (TREE_CODE (decl))
  2427.       {
  2428.       case TYPE_DECL:
  2429.     /* typedef foo = bar  means give foo the same type as bar.
  2430.        We haven't parsed bar yet, so `finish_decl' will fix that up.
  2431.        Any other case of an initialization in a TYPE_DECL is an error.  */
  2432.     if (pedantic || list_length (declspecs) > 1)
  2433.       {
  2434.         error ("typedef `%s' is initialized",
  2435.            IDENTIFIER_POINTER (DECL_NAME (decl)));
  2436.         initialized = 0;
  2437.       }
  2438.     break;
  2439.  
  2440.       case FUNCTION_DECL:
  2441.     error ("function `%s' is initialized like a variable",
  2442.            IDENTIFIER_POINTER (DECL_NAME (decl)));
  2443.     initialized = 0;
  2444.     break;
  2445.  
  2446.       case PARM_DECL:
  2447.     /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE.  */
  2448.     error ("parameter `%s' is initialized",
  2449.            IDENTIFIER_POINTER (DECL_NAME (decl)));
  2450.     initialized = 0;
  2451.     break;
  2452.  
  2453.       default:
  2454.     /* Don't allow initializations for incomplete types
  2455.        except for arrays which might be completed by the initialization.  */
  2456.     if (TYPE_SIZE (TREE_TYPE (decl)) != 0)
  2457.       {
  2458.         /* A complete type is ok if size is fixed.  */
  2459.  
  2460.         if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
  2461.         || C_DECL_VARIABLE_SIZE (decl))
  2462.           {
  2463.         error ("variable-sized object may not be initialized");
  2464.         initialized = 0;
  2465.           }
  2466.       }
  2467.     else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
  2468.       {
  2469.         error ("variable `%s' has initializer but incomplete type",
  2470.            IDENTIFIER_POINTER (DECL_NAME (decl)));
  2471.         initialized = 0;
  2472.       }
  2473.     else if (TYPE_SIZE (TREE_TYPE (TREE_TYPE (decl))) == 0)
  2474.       {
  2475.         error ("elements of array `%s' have incomplete type",
  2476.            IDENTIFIER_POINTER (DECL_NAME (decl)));
  2477.         initialized = 0;
  2478.       }
  2479.       }
  2480.  
  2481.   if (initialized)
  2482.     {
  2483. #if 0  /* Seems redundant with grokdeclarator.  */
  2484.       if (current_binding_level != global_binding_level
  2485.       && TREE_EXTERNAL (decl)
  2486.       && TREE_CODE (decl) != FUNCTION_DECL)
  2487.     warning ("declaration of `%s' has `extern' and is initialized",
  2488.          IDENTIFIER_POINTER (DECL_NAME (decl)));
  2489. #endif
  2490.       TREE_EXTERNAL (decl) = 0;
  2491.       if (current_binding_level == global_binding_level)
  2492.     TREE_STATIC (decl) = 1;
  2493.  
  2494.       /* Tell `pushdecl' this is an initialized decl
  2495.      even though we don't yet have the initializer expression.
  2496.      Also tell `finish_decl' it may store the real initializer.  */
  2497.       DECL_INITIAL (decl) = error_mark_node;
  2498.     }
  2499.  
  2500.   /* If this is a function declaration, write a record describing it to the
  2501.      prototypes file (if requested).  */
  2502.  
  2503.   if (TREE_CODE (decl) == FUNCTION_DECL)
  2504.     gen_aux_info_record (decl, 0, 0, TYPE_ARG_TYPES (TREE_TYPE (decl)) != 0);
  2505.  
  2506.   /* Add this decl to the current binding level.
  2507.      TEM may equal DECL or it may be a previous decl of the same name.  */
  2508.   tem = pushdecl (decl);
  2509.  
  2510.   /* For a local variable, define the RTL now.  */
  2511.   if (current_binding_level != global_binding_level
  2512.       /* But not if this is a duplicate decl
  2513.      and we preserved the rtl from the previous one
  2514.      (which may or may not happen).  */
  2515.       && DECL_RTL (tem) == 0)
  2516.     {
  2517.       if (TYPE_SIZE (TREE_TYPE (tem)) != 0)
  2518.     expand_decl (tem);
  2519.       else if (TREE_CODE (TREE_TYPE (tem)) == ARRAY_TYPE
  2520.            && DECL_INITIAL (tem) != 0)
  2521.     expand_decl (tem);
  2522.     }
  2523.  
  2524.   if (init_written)
  2525.     {
  2526.       /* When parsing and digesting the initializer,
  2527.      use temporary storage.  Do this even if we will ignore the value.  */
  2528.       if (current_binding_level == global_binding_level && debug_temp_inits)
  2529.     temporary_allocation ();
  2530.     }
  2531.  
  2532.   return tem;
  2533. }
  2534.  
  2535. /* Finish processing of a declaration;
  2536.    install its line number and initial value.
  2537.    If the length of an array type is not known before,
  2538.    it must be determined now, from the initial value, or it is an error.  */
  2539.  
  2540. void
  2541. finish_decl (decl, init, asmspec_tree)
  2542.      tree decl, init;
  2543.      tree asmspec_tree;
  2544. {
  2545.   register tree type = TREE_TYPE (decl);
  2546.   int was_incomplete = (DECL_SIZE (decl) == 0);
  2547.   int temporary = allocation_temporary_p ();
  2548.   char *asmspec = 0;
  2549.  
  2550.   if (asmspec_tree)
  2551.     asmspec = TREE_STRING_POINTER (asmspec_tree);
  2552.  
  2553.   /* If `start_decl' didn't like having an initialization, ignore it now.  */
  2554.  
  2555.   if (init != 0 && DECL_INITIAL (decl) == 0)
  2556.     init = 0;
  2557.   /* Don't crash if parm is initialized.  */
  2558.   if (TREE_CODE (decl) == PARM_DECL)
  2559.     init = 0;
  2560.  
  2561.   if (init)
  2562.     {
  2563.       if (TREE_CODE (decl) != TYPE_DECL)
  2564.     store_init_value (decl, init);
  2565.       else
  2566.     {
  2567.       /* typedef foo = bar; store the type of bar as the type of foo.  */
  2568.       TREE_TYPE (decl) = TREE_TYPE (init);
  2569.       DECL_INITIAL (decl) = init = 0;
  2570.     }
  2571.     }
  2572.  
  2573.   /* For top-level declaration, the initial value was read in
  2574.      the temporary obstack.  MAXINDEX, rtl, etc. to be made below
  2575.      must go in the permanent obstack; but don't discard the
  2576.      temporary data yet.  */
  2577.  
  2578.   if (current_binding_level == global_binding_level && temporary)
  2579.     end_temporary_allocation ();
  2580.  
  2581.   /* Deduce size of array from initialization, if not already known */
  2582.  
  2583.   if (TREE_CODE (type) == ARRAY_TYPE
  2584.       && TYPE_DOMAIN (type) == 0
  2585.       && TREE_CODE (decl) != TYPE_DECL)
  2586.     {
  2587.       int do_default
  2588.     = (TREE_STATIC (decl)
  2589.        /* Even if pedantic, an external linkage array
  2590.           may have incomplete type at first.  */
  2591.        ? pedantic && !TREE_PUBLIC (decl)
  2592.        : !TREE_EXTERNAL (decl));
  2593.       int failure
  2594.     = complete_array_type (type, DECL_INITIAL (decl), do_default);
  2595.  
  2596.       /* Get the completed type made by complete_array_type.  */
  2597.       type = TREE_TYPE (decl);
  2598.  
  2599.       if (failure == 1)
  2600.     error_with_decl (decl, "initializer fails to determine size of `%s'");
  2601.  
  2602.       if (failure == 2)
  2603.     {
  2604.       if (do_default)
  2605.         error_with_decl (decl, "array size missing in `%s'");
  2606.       else if (!pedantic && TREE_STATIC (decl))
  2607.         TREE_EXTERNAL (decl) = 1;
  2608.     }
  2609.  
  2610.       if (pedantic && TYPE_DOMAIN (type) != 0
  2611.       && tree_int_cst_lt (TYPE_MAX_VALUE (TYPE_DOMAIN (type)),
  2612.                   integer_zero_node))
  2613.     error_with_decl (decl, "zero-size array `%s'");
  2614.  
  2615.       layout_decl (decl, 0);
  2616.     }
  2617.  
  2618.   if (TREE_CODE (decl) == VAR_DECL)
  2619.     {
  2620.       if (TREE_STATIC (decl) && DECL_SIZE (decl) == 0)
  2621.     {
  2622.       /* A static variable with an incomplete type:
  2623.          that is an error if it is initialized or `static'.
  2624.          Otherwise, let it through, but if it is not `extern'
  2625.          then it may cause an error message later.  */
  2626.       if (! (TREE_PUBLIC (decl) && DECL_INITIAL (decl) == 0))
  2627.         error_with_decl (decl, "storage size of `%s' isn't known");
  2628.     }
  2629.       else if (!TREE_EXTERNAL (decl) && DECL_SIZE (decl) == 0)
  2630.     {
  2631.       /* An automatic variable with an incomplete type:
  2632.          that is an error.  */
  2633.       error_with_decl (decl, "storage size of `%s' isn't known");
  2634.       TREE_TYPE (decl) = error_mark_node;
  2635.     }
  2636.  
  2637.       if ((TREE_EXTERNAL (decl) || TREE_STATIC (decl))
  2638.       && DECL_SIZE (decl) != 0
  2639.       && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
  2640.     error_with_decl (decl, "storage size of `%s' isn't constant");
  2641.     }
  2642.  
  2643.   /* Output the assembler code and/or RTL code for variables and functions,
  2644.      unless the type is an undefined structure or union.
  2645.      If not, it will get done when the type is completed.  */
  2646.  
  2647.   if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
  2648.     {
  2649.       if (flag_traditional && allocation_temporary_p ())
  2650.     {
  2651.       end_temporary_allocation ();
  2652.       /* This is a no-op in c-lang.c or something real in objc-actions.c.  */
  2653.       maybe_objc_check_decl (decl);
  2654.       rest_of_decl_compilation (decl, asmspec,
  2655.                     current_binding_level == global_binding_level,
  2656.                     0);
  2657.       resume_temporary_allocation ();
  2658.     }
  2659.       else
  2660.     {
  2661.       /* This is a no-op in c-lang.c or something real in objc-actions.c.  */
  2662.       maybe_objc_check_decl (decl);
  2663.       rest_of_decl_compilation (decl, asmspec,
  2664.                     current_binding_level == global_binding_level,
  2665.                     0);
  2666.     }
  2667.       if (current_binding_level != global_binding_level)
  2668.     {
  2669.       /* Recompute the RTL of a local array now
  2670.          if it used to be an incomplete type.  */
  2671.       if (was_incomplete
  2672.           && ! TREE_STATIC (decl) && ! TREE_EXTERNAL (decl))
  2673.         {
  2674.           /* If we used it already as memory, it must stay in memory.  */
  2675.           TREE_ADDRESSABLE (decl) = TREE_USED (decl);
  2676.           /* If it's still incomplete now, no init will save it.  */
  2677.           if (DECL_SIZE (decl) == 0)
  2678.         DECL_INITIAL (decl) = 0;
  2679.           expand_decl (decl);
  2680.         }
  2681.       /* Compute and store the initial value.  */
  2682.       expand_decl_init (decl);
  2683.     }
  2684.     }
  2685.  
  2686.   if (TREE_CODE (decl) == TYPE_DECL)
  2687.     {
  2688.       /* This is a no-op in c-lang.c or something real in objc-actions.c.  */
  2689.       maybe_objc_check_decl (decl);
  2690.       rest_of_decl_compilation (decl, 0,
  2691.                 current_binding_level == global_binding_level,
  2692.                 0);
  2693.     }
  2694.  
  2695.   /* Resume permanent allocation, if not within a function.  */
  2696.   if (temporary && current_binding_level == global_binding_level)
  2697.     {
  2698.       permanent_allocation ();
  2699.       /* We need to remember that this array HAD an initialization,
  2700.      but discard the actual nodes, since they are temporary anyway.  */
  2701.       if (DECL_INITIAL (decl) != 0)
  2702.     DECL_INITIAL (decl) = error_mark_node;
  2703.     }
  2704.  
  2705.   /* At the end of a declaration, throw away any variable type sizes
  2706.      of types defined inside that declaration.  There is no use
  2707.      computing them in the following function definition.  */
  2708.   if (current_binding_level == global_binding_level)
  2709.     get_pending_sizes ();
  2710. }
  2711.  
  2712. /* If DECL has a cleanup, build and return that cleanup here.
  2713.    This is a callback called by expand_expr.  */
  2714.  
  2715. tree
  2716. maybe_build_cleanup (decl)
  2717.      tree decl;
  2718. {
  2719.   /* There are no cleanups in C.  */
  2720.   return NULL_TREE;
  2721. }
  2722.  
  2723. /* Given a parsed parameter declaration,
  2724.    decode it into a PARM_DECL and push that on the current binding level.  */
  2725.  
  2726. void
  2727. push_parm_decl (parm)
  2728.      tree parm;
  2729. {
  2730.   register tree decl = grokdeclarator (TREE_VALUE (parm), TREE_PURPOSE (parm),
  2731.                        PARM, 0);
  2732.  
  2733.   /* Add this decl to the current binding level.  */
  2734.   finish_decl (pushdecl (decl), NULL_TREE, NULL_TREE);
  2735. }
  2736.  
  2737. /* Make TYPE a complete type based on INITIAL_VALUE.
  2738.    Return 0 if successful, 1 if INITIAL_VALUE can't be decyphered,
  2739.    2 if there was no information (in which case assume 1 if DO_DEFAULT).  */
  2740.  
  2741. int
  2742. complete_array_type (type, initial_value, do_default)
  2743.      tree type;
  2744.      tree initial_value;
  2745.      int do_default;
  2746. {
  2747.   register tree maxindex = NULL_TREE;
  2748.   int value = 0;
  2749.  
  2750.   if (initial_value)
  2751.     {
  2752.       /* Note MAXINDEX  is really the maximum index,
  2753.      one less than the size.  */
  2754.       if (TREE_CODE (initial_value) == STRING_CST)
  2755.     {
  2756.       int eltsize
  2757.         = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value)));
  2758.       maxindex = build_int_2 (TREE_STRING_LENGTH (initial_value) / eltsize - 1, 0);
  2759.     }
  2760.       else if (TREE_CODE (initial_value) == CONSTRUCTOR)
  2761.     {
  2762.       register int nelts
  2763.         = list_length (CONSTRUCTOR_ELTS (initial_value));
  2764.       maxindex = build_int_2 (nelts - 1, 0);
  2765.     }
  2766.       else
  2767.     {
  2768.       /* Make an error message unless that happened already.  */
  2769.       if (initial_value != error_mark_node)
  2770.         value = 1;
  2771.  
  2772.       /* Prevent further error messages.  */
  2773.       maxindex = build_int_2 (1, 0);
  2774.     }
  2775.     }
  2776.  
  2777.   if (!maxindex)
  2778.     {
  2779.       if (do_default)
  2780.     maxindex = build_int_2 (1, 0);
  2781.       value = 2;
  2782.     }
  2783.  
  2784.   if (maxindex)
  2785.     {
  2786.       TYPE_DOMAIN (type) = build_index_type (maxindex);
  2787.       if (!TREE_TYPE (maxindex))
  2788.     TREE_TYPE (maxindex) = TYPE_DOMAIN (type);
  2789.     }
  2790.  
  2791.   /* Lay out the type now that we can get the real answer.  */
  2792.  
  2793.   layout_type (type);
  2794.  
  2795.   return value;
  2796. }
  2797.  
  2798. /* Given declspecs and a declarator,
  2799.    determine the name and type of the object declared
  2800.    and construct a ..._DECL node for it.
  2801.    (In one case we can return a ..._TYPE node instead.
  2802.     For invalid input we sometimes return 0.)
  2803.  
  2804.    DECLSPECS is a chain of tree_list nodes whose value fields
  2805.     are the storage classes and type specifiers.
  2806.  
  2807.    DECL_CONTEXT says which syntactic context this declaration is in:
  2808.      NORMAL for most contexts.  Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
  2809.      FUNCDEF for a function definition.  Like NORMAL but a few different
  2810.       error messages in each case.  Return value may be zero meaning
  2811.       this definition is too screwy to try to parse.
  2812.      PARM for a parameter declaration (either within a function prototype
  2813.       or before a function body).  Make a PARM_DECL, or return void_type_node.
  2814.      TYPENAME if for a typename (in a cast or sizeof).
  2815.       Don't make a DECL node; just return the ..._TYPE node.
  2816.      FIELD for a struct or union field; make a FIELD_DECL.
  2817.      BITFIELD for a field with specified width.
  2818.    INITIALIZED is 1 if the decl has an initializer.
  2819.  
  2820.    In the TYPENAME case, DECLARATOR is really an absolute declarator.
  2821.    It may also be so in the PARM case, for a prototype where the
  2822.    argument type is specified but not the name.
  2823.  
  2824.    This function is where the complicated C meanings of `static'
  2825.    and `extern' are intrepreted.  */
  2826.  
  2827. static tree
  2828. grokdeclarator (declarator, declspecs, decl_context, initialized)
  2829.      tree declspecs;
  2830.      tree declarator;
  2831.      enum decl_context decl_context;
  2832.      int initialized;
  2833. {
  2834.   int specbits = 0;
  2835.   tree spec;
  2836.   tree type = NULL_TREE;
  2837.   int longlong = 0;
  2838.   int constp;
  2839.   int volatilep;
  2840.   int inlinep;
  2841.   int explicit_int = 0;
  2842.   int explicit_char = 0;
  2843.   tree typedef_decl = 0;
  2844.   char *name;
  2845.   tree typedef_type = 0;
  2846.   int funcdef_flag = 0;
  2847.   int resume_temporary = 0;
  2848.   enum tree_code innermost_code = ERROR_MARK;
  2849.   int bitfield = 0;
  2850.   int variable_size = 0;
  2851.  
  2852.   if (decl_context == BITFIELD)
  2853.     bitfield = 1, decl_context = FIELD;
  2854.  
  2855.   if (decl_context == FUNCDEF)
  2856.     funcdef_flag = 1, decl_context = NORMAL;
  2857.  
  2858.   if (flag_traditional && allocation_temporary_p ())
  2859.     {
  2860.       resume_temporary = 1;
  2861.       end_temporary_allocation ();
  2862.     }
  2863.  
  2864.   /* Look inside a declarator for the name being declared
  2865.      and get it as a string, for an error message.  */
  2866.   {
  2867.     register tree decl = declarator;
  2868.     name = 0;
  2869.  
  2870.     while (decl)
  2871.       switch (TREE_CODE (decl))
  2872.     {
  2873.     case ARRAY_REF:
  2874.     case INDIRECT_REF:
  2875.     case CALL_EXPR:
  2876.       innermost_code = TREE_CODE (decl);
  2877.       decl = TREE_OPERAND (decl, 0);
  2878.       break;
  2879.  
  2880.     case IDENTIFIER_NODE:
  2881.       name = IDENTIFIER_POINTER (decl);
  2882.       decl = 0;
  2883.       break;
  2884.  
  2885.     default:
  2886.       abort ();
  2887.     }
  2888.     if (name == 0)
  2889.       name = "type name";
  2890.   }
  2891.  
  2892.   /* A function definition's declarator must have the form of
  2893.      a function declarator.  */
  2894.  
  2895.   if (funcdef_flag && innermost_code != CALL_EXPR)
  2896.     return 0;
  2897.  
  2898.   /* Anything declared one level down from the top level
  2899.      must be one of the parameters of a function
  2900.      (because the body is at least two levels down).  */
  2901.  
  2902.   if (decl_context == NORMAL
  2903.       && current_binding_level->level_chain == global_binding_level)
  2904.     decl_context = PARM;
  2905.  
  2906.   /* Look through the decl specs and record which ones appear.
  2907.      Some typespecs are defined as built-in typenames.
  2908.      Others, the ones that are modifiers of other types,
  2909.      are represented by bits in SPECBITS: set the bits for
  2910.      the modifiers that appear.  Storage class keywords are also in SPECBITS.
  2911.  
  2912.      If there is a typedef name or a type, store the type in TYPE.
  2913.      This includes builtin typedefs such as `int'.
  2914.  
  2915.      Set EXPLICIT_INT or EXPLICIT_CHAR if the type is `int' or `char'
  2916.      and did not come from a user typedef.
  2917.  
  2918.      Set LONGLONG if `long' is mentioned twice.  */
  2919.  
  2920.   for (spec = declspecs; spec; spec = TREE_CHAIN (spec))
  2921.     {
  2922.       register int i;
  2923.       register tree id = TREE_VALUE (spec);
  2924.  
  2925.       if (id == ridpointers[(int) RID_INT])
  2926.     explicit_int = 1;
  2927.       if (id == ridpointers[(int) RID_CHAR])
  2928.     explicit_char = 1;
  2929.  
  2930.       if (TREE_CODE (id) == IDENTIFIER_NODE)
  2931.     for (i = (int) RID_FIRST_MODIFIER; i < (int) RID_MAX; i++)
  2932.       {
  2933.         if (ridpointers[i] == id)
  2934.           {
  2935.         if (i == (int) RID_LONG && specbits & (1<<i))
  2936.           {
  2937.             if (pedantic)
  2938.               warning ("duplicate `%s'", IDENTIFIER_POINTER (id));
  2939.             else if (longlong)
  2940.               warning ("`long long long' is too long for GCC");
  2941.             else
  2942.               longlong = 1;
  2943.           }
  2944.         else if (specbits & (1 << i))
  2945.           warning ("duplicate `%s'", IDENTIFIER_POINTER (id));
  2946.         specbits |= 1 << i;
  2947.         goto found;
  2948.           }
  2949.       }
  2950.       if (type)
  2951.     error ("two or more data types in declaration of `%s'", name);
  2952.       /* Actual typedefs come to us as TYPE_DECL nodes.  */
  2953.       else if (TREE_CODE (id) == TYPE_DECL)
  2954.     {
  2955.       type = TREE_TYPE (id);
  2956.       typedef_decl = id;
  2957.     }
  2958.       /* Built-in types come as identifiers.  */
  2959.       else if (TREE_CODE (id) == IDENTIFIER_NODE)
  2960.     {
  2961.       register tree t = lookup_name (id);
  2962.       if (!t || TREE_CODE (t) != TYPE_DECL)
  2963.         error ("`%s' fails to be a typedef or built in type",
  2964.            IDENTIFIER_POINTER (id));
  2965.       else
  2966.         {
  2967.           type = TREE_TYPE (t);
  2968.           typedef_decl = t;
  2969.         }
  2970.     }
  2971.       else if (TREE_CODE (id) != ERROR_MARK)
  2972.     type = id;
  2973.  
  2974.     found: {}
  2975.     }
  2976.  
  2977.   typedef_type = type;
  2978.   if (type)
  2979.     variable_size = C_TYPE_VARIABLE_SIZE (type);
  2980.  
  2981.   /* No type at all: default to `int', and set EXPLICIT_INT
  2982.      because it was not a user-defined typedef.  */
  2983.  
  2984.   if (type == 0)
  2985.     {
  2986.       if (funcdef_flag && warn_return_type
  2987.       && ! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
  2988.                 | (1 << (int) RID_SIGNED) | (1 << (int) RID_UNSIGNED))))
  2989.     warn_about_return_type = 1;
  2990.       explicit_int = 1;
  2991.       type = integer_type_node;
  2992.     }
  2993.  
  2994.   /* Now process the modifiers that were specified
  2995.      and check for invalid combinations.  */
  2996.  
  2997.   /* Long double is a special combination.  */
  2998.  
  2999.   if ((specbits & 1 << (int) RID_LONG) && type == double_type_node)
  3000.     {
  3001.       specbits &= ~ (1 << (int) RID_LONG);
  3002.       type = long_double_type_node;
  3003.     }
  3004.  
  3005.   /* Check all other uses of type modifiers.  */
  3006.  
  3007.   if (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
  3008.           | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED)))
  3009.     {
  3010.       int ok = 0;
  3011.  
  3012.       if (TREE_CODE (type) == REAL_TYPE)
  3013.     error ("short, signed or unsigned invalid for `%s'", name);
  3014.       else if (TREE_CODE (type) != INTEGER_TYPE)
  3015.     error ("long, short, signed or unsigned invalid for `%s'", name);
  3016.       else if ((specbits & 1 << (int) RID_LONG)
  3017.            && (specbits & 1 << (int) RID_SHORT))
  3018.     error ("long and short specified together for `%s'", name);
  3019.       else if (((specbits & 1 << (int) RID_LONG)
  3020.         || (specbits & 1 << (int) RID_SHORT))
  3021.            && explicit_char)
  3022.     error ("long or short specified with char for `%s'", name);
  3023.       else if (((specbits & 1 << (int) RID_LONG)
  3024.         || (specbits & 1 << (int) RID_SHORT))
  3025.            && TREE_CODE (type) == REAL_TYPE)
  3026.     error ("long or short specified with floating type for `%s'", name);
  3027.       else if ((specbits & 1 << (int) RID_SIGNED)
  3028.            && (specbits & 1 << (int) RID_UNSIGNED))
  3029.     error ("signed and unsigned given together for `%s'", name);
  3030.       else
  3031.     {
  3032.       ok = 1;
  3033.       if (!explicit_int && !explicit_char && pedantic)
  3034.         {
  3035.           pedwarn ("long, short, signed or unsigned used invalidly for `%s'",
  3036.                name);
  3037.           if (flag_pedantic_errors)
  3038.         ok = 0;
  3039.         }
  3040.     }
  3041.  
  3042.       /* Discard the type modifiers if they are invalid.  */
  3043.       if (! ok)
  3044.     {
  3045.       specbits &= ~((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
  3046.             | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED));
  3047.       longlong = 0;
  3048.     }
  3049.     }
  3050.  
  3051.   /* Decide whether an integer type is signed or not.
  3052.      Optionally treat bitfields as signed by default.  */
  3053.   if (specbits & 1 << (int) RID_UNSIGNED
  3054.       /* Traditionally, all bitfields are unsigned.  */
  3055.       || (bitfield && flag_traditional)
  3056.       || (bitfield && ! flag_signed_bitfields
  3057.       && (explicit_int || explicit_char
  3058.           /* A typedef for plain `int' without `signed'
  3059.          can be controlled just like plain `int'.  */
  3060.           || ! (typedef_decl != 0
  3061.             && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
  3062.       && TREE_CODE (type) != ENUMERAL_TYPE
  3063.       && !(specbits & 1 << (int) RID_SIGNED)))
  3064.     {
  3065.       if (longlong)
  3066.     type = long_long_unsigned_type_node;
  3067.       else if (specbits & 1 << (int) RID_LONG)
  3068.     type = long_unsigned_type_node;
  3069.       else if (specbits & 1 << (int) RID_SHORT)
  3070.     type = short_unsigned_type_node;
  3071.       else if (type == char_type_node)
  3072.     type = unsigned_char_type_node;
  3073.       else
  3074.     type = unsigned_type_node;
  3075.     }
  3076.   else if ((specbits & 1 << (int) RID_SIGNED)
  3077.        && type == char_type_node)
  3078.     type = signed_char_type_node;
  3079.   else if (longlong)
  3080.     type = long_long_integer_type_node;
  3081.   else if (specbits & 1 << (int) RID_LONG)
  3082.     type = long_integer_type_node;
  3083.   else if (specbits & 1 << (int) RID_SHORT)
  3084.     type = short_integer_type_node;
  3085.  
  3086.   /* Set CONSTP if this declaration is `const', whether by
  3087.      explicit specification or via a typedef.
  3088.      Likewise for VOLATILEP.  */
  3089.  
  3090.   constp = !! (specbits & 1 << (int) RID_CONST) + TYPE_READONLY (type);
  3091.   volatilep = !! (specbits & 1 << (int) RID_VOLATILE) + TYPE_VOLATILE (type);
  3092.   inlinep = !! (specbits & (1 << (int) RID_INLINE));
  3093.   if (constp > 1)
  3094.     warning ("duplicate `const'");
  3095.   if (volatilep > 1)
  3096.     warning ("duplicate `volatile'");
  3097.   if (! flag_gen_aux_info && (TYPE_READONLY (type) || TYPE_VOLATILE (type)))
  3098.     type = TYPE_MAIN_VARIANT (type);
  3099.  
  3100.   /* Warn if two storage classes are given. Default to `auto'.  */
  3101.  
  3102.   {
  3103.     int nclasses = 0;
  3104.  
  3105.     if (specbits & 1 << (int) RID_AUTO) nclasses++;
  3106.     if (specbits & 1 << (int) RID_STATIC) nclasses++;
  3107.     if (specbits & 1 << (int) RID_EXTERN) nclasses++;
  3108.     if (specbits & 1 << (int) RID_REGISTER) nclasses++;
  3109.     if (specbits & 1 << (int) RID_TYPEDEF) nclasses++;
  3110.  
  3111.     /* Warn about storage classes that are invalid for certain
  3112.        kinds of declarations (parameters, typenames, etc.).  */
  3113.  
  3114.     if (nclasses > 1)
  3115.       error ("multiple storage classes in declaration of `%s'", name);
  3116.     else if (funcdef_flag
  3117.          && (specbits
  3118.          & ((1 << (int) RID_REGISTER)
  3119.             | (1 << (int) RID_AUTO)
  3120.             | (1 << (int) RID_TYPEDEF))))
  3121.       {
  3122.     if (specbits & 1 << (int) RID_AUTO)
  3123.       error ("function definition declared `auto'");
  3124.     if (specbits & 1 << (int) RID_REGISTER)
  3125.       error ("function definition declared `auto'");
  3126.     if (specbits & 1 << (int) RID_TYPEDEF)
  3127.       error ("function definition declared `typedef'");
  3128.     specbits &= ~ ((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
  3129.                | (1 << (int) RID_AUTO));
  3130.       }
  3131.     else if (decl_context != NORMAL && nclasses > 0)
  3132.       {
  3133.     if (decl_context == PARM && specbits & 1 << (int) RID_REGISTER)
  3134.       ;
  3135.     else
  3136.       {
  3137.         error ((decl_context == FIELD
  3138.             ? "storage class specified for structure field `%s'"
  3139.             : (decl_context == PARM
  3140.                ? "storage class specified for parameter `%s'"
  3141.                : "storage class specified for typename")),
  3142.            name);
  3143.         specbits &= ~ ((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
  3144.                | (1 << (int) RID_AUTO) | (1 << (int) RID_STATIC)
  3145.                | (1 << (int) RID_EXTERN));
  3146.       }
  3147.       }
  3148.     else if (specbits & 1 << (int) RID_EXTERN && initialized && ! funcdef_flag)
  3149.       {
  3150.     /* `extern' with initialization is invalid if not at top level.  */
  3151.     if (current_binding_level == global_binding_level)
  3152.       warning ("`%s' initialized and declared `extern'", name);
  3153.     else
  3154.       error ("`%s' has both `extern' and initializer", name);
  3155.       }
  3156.     else if (current_binding_level == global_binding_level
  3157.          && specbits & (1 << (int) RID_AUTO))
  3158.       error ("top-level declaration of `%s' specifies `auto'", name);
  3159.   }
  3160.  
  3161.   /* Now figure out the structure of the declarator proper.
  3162.      Descend through it, creating more complex types, until we reach
  3163.      the declared identifier (or NULL_TREE, in an absolute declarator).  */
  3164.  
  3165.   while (declarator && TREE_CODE (declarator) != IDENTIFIER_NODE)
  3166.     {
  3167.       if (type == error_mark_node)
  3168.     {
  3169.       declarator = TREE_OPERAND (declarator, 0);
  3170.       continue;
  3171.     }
  3172.  
  3173.       /* Each level of DECLARATOR is either an ARRAY_REF (for ...[..]),
  3174.      an INDIRECT_REF (for *...),
  3175.      a CALL_EXPR (for ...(...)),
  3176.      an identifier (for the name being declared)
  3177.      or a null pointer (for the place in an absolute declarator
  3178.      where the name was omitted).
  3179.      For the last two cases, we have just exited the loop.
  3180.  
  3181.      At this point, TYPE is the type of elements of an array,
  3182.      or for a function to return, or for a pointer to point to.
  3183.      After this sequence of ifs, TYPE is the type of the
  3184.      array or function or pointer, and DECLARATOR has had its
  3185.      outermost layer removed.  */
  3186.  
  3187.       if (TREE_CODE (declarator) == ARRAY_REF)
  3188.     {
  3189.       register tree itype = NULL_TREE;
  3190.       register tree size = TREE_OPERAND (declarator, 1);
  3191.  
  3192.       declarator = TREE_OPERAND (declarator, 0);
  3193.  
  3194.       /* Check for some types that there cannot be arrays of.  */
  3195.  
  3196.       if (type == void_type_node)
  3197.         {
  3198.           error ("declaration of `%s' as array of voids", name);
  3199.           type = error_mark_node;
  3200.         }
  3201.  
  3202.       if (TREE_CODE (type) == FUNCTION_TYPE)
  3203.         {
  3204.           error ("declaration of `%s' as array of functions", name);
  3205.           type = error_mark_node;
  3206.         }
  3207.  
  3208.       if (size == error_mark_node)
  3209.         type = error_mark_node;
  3210.  
  3211.       if (type == error_mark_node)
  3212.         continue;
  3213.  
  3214.       /* If size was specified, set ITYPE to a range-type for that size.
  3215.          Otherwise, ITYPE remains null.  finish_decl may figure it out
  3216.          from an initial value.  */
  3217.  
  3218.       if (size)
  3219.         {
  3220.           /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue.  */
  3221.           while (TREE_CODE (size) == NON_LVALUE_EXPR)
  3222.         size = TREE_OPERAND (size, 0);
  3223.  
  3224.           if (TREE_CODE (TREE_TYPE (size)) != INTEGER_TYPE
  3225.           && TREE_CODE (TREE_TYPE (size)) != ENUMERAL_TYPE)
  3226.         {
  3227.           error ("size of array `%s' has non-integer type", name);
  3228.           size = integer_one_node;
  3229.         }
  3230.           if (pedantic && integer_zerop (size))
  3231.         pedwarn ("ANSI C forbids zero-size array `%s'", name);
  3232.           if (TREE_CODE (size) == INTEGER_CST)
  3233.         {
  3234.           if (INT_CST_LT (size, integer_zero_node))
  3235.             {
  3236.               error ("size of array `%s' is negative", name);
  3237.               size = integer_one_node;
  3238.             }
  3239.           itype = build_index_type (build_int_2 (TREE_INT_CST_LOW (size) - 1, 0));
  3240.         }
  3241.           else
  3242.         {
  3243.           if (pedantic)
  3244.             pedwarn ("ANSI C forbids variable-size array `%s'", name);
  3245.           itype = build_binary_op (MINUS_EXPR, size, integer_one_node);
  3246.           /* Make sure the array size remains visibly nonconstant
  3247.              even if it is (eg) a const variable with known value.  */
  3248.           variable_size = 1;
  3249.           itype = build_index_type (save_expr (itype));
  3250.         }
  3251.         }
  3252.  
  3253.       /* Complain about arrays of incomplete types, except in typedefs.  */
  3254.  
  3255.       if (TYPE_SIZE (type) == 0
  3256.           /* Avoid multiple warnings for nested array types.  */
  3257.           && TREE_CODE (type) != ARRAY_TYPE
  3258.           && !(specbits & (1 << (int) RID_TYPEDEF))
  3259.           && !C_TYPE_BEING_DEFINED (type))
  3260.         warning ("array type has incomplete element type");
  3261.  
  3262.       /* Build the array type itself.
  3263.          Merge any constancy or volatility into the target type.  */
  3264.  
  3265. #if 0  /* We shouldn't have a function type here at all!
  3266.       Functions aren't allowed as array elements.  */
  3267.       if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
  3268.           && (constp || volatilep))
  3269.         pedwarn ("ANSI C forbids const or volatile function types");
  3270. #endif
  3271.       if (constp || volatilep)
  3272.         type = c_build_type_variant (type, constp, volatilep);
  3273.  
  3274. #if 0    /* don't clear these; leave them set so that the array type
  3275.        or the variable is itself const or volatile.  */
  3276.       constp = 0;
  3277.       volatilep = 0;
  3278. #endif
  3279.  
  3280.       type = build_array_type (type, itype);
  3281.       if (variable_size)
  3282.         C_TYPE_VARIABLE_SIZE (type) = 1;
  3283.     }
  3284.       else if (TREE_CODE (declarator) == CALL_EXPR)
  3285.     {
  3286.       tree arg_types;
  3287.  
  3288.       /* Declaring a function type.
  3289.          Make sure we have a valid type for the function to return.  */
  3290.       if (type == error_mark_node)
  3291.         continue;
  3292.  
  3293.       variable_size = 0;
  3294.  
  3295.       /* Warn about some types functions can't return.  */
  3296.  
  3297.       if (TREE_CODE (type) == FUNCTION_TYPE)
  3298.         {
  3299.           error ("`%s' declared as function returning a function", name);
  3300.           type = integer_type_node;
  3301.         }
  3302.       if (TREE_CODE (type) == ARRAY_TYPE)
  3303.         {
  3304.           error ("`%s' declared as function returning an array", name);
  3305.           type = integer_type_node;
  3306.         }
  3307.  
  3308. #ifndef TRADITIONAL_RETURN_FLOAT
  3309.       /* Traditionally, declaring return type float means double.  */
  3310.  
  3311.       if (flag_traditional && type == float_type_node)
  3312.         type = double_type_node;
  3313. #endif /* TRADITIONAL_RETURN_FLOAT */
  3314.  
  3315.       /* Construct the function type and go to the next
  3316.          inner layer of declarator.  */
  3317.  
  3318.       arg_types = grokparms (TREE_OPERAND (declarator, 1),
  3319.                  funcdef_flag
  3320.                  /* Say it's a definition
  3321.                     only for the CALL_EXPR
  3322.                     closest to the identifier.  */
  3323.                  && TREE_CODE (TREE_OPERAND (declarator, 0)) == IDENTIFIER_NODE);
  3324. #if 0 /* This seems to be false.  We turn off temporary allocation
  3325.      above in this function if -traditional.
  3326.      And this code caused inconsistent results with prototypes:
  3327.      callers would ignore them, and pass arguments wrong.  */
  3328.  
  3329.       /* Omit the arg types if -traditional, since the arg types
  3330.          and the list links might not be permanent.  */
  3331.       type = build_function_type (type, flag_traditional ? 0 : arg_types);
  3332. #endif
  3333.       type = build_function_type (type, arg_types);
  3334.       declarator = TREE_OPERAND (declarator, 0);
  3335.     }
  3336.       else if (TREE_CODE (declarator) == INDIRECT_REF)
  3337.     {
  3338.       /* Merge any constancy or volatility into the target type
  3339.          for the pointer.  */
  3340.  
  3341.       if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
  3342.           && (constp || volatilep))
  3343.         pedwarn ("ANSI C forbids const or volatile function types");
  3344.       if (constp || volatilep)
  3345.         type = c_build_type_variant (type, constp, volatilep);
  3346.       constp = 0;
  3347.       volatilep = 0;
  3348.       variable_size = 0;
  3349.  
  3350.       type = build_pointer_type (type);
  3351.  
  3352.       /* Process a list of type modifier keywords
  3353.          (such as const or volatile) that were given inside the `*'.  */
  3354.  
  3355.       if (TREE_TYPE (declarator))
  3356.         {
  3357.           register tree typemodlist;
  3358.           int erred = 0;
  3359.           for (typemodlist = TREE_TYPE (declarator); typemodlist;
  3360.            typemodlist = TREE_CHAIN (typemodlist))
  3361.         {
  3362.           if (TREE_VALUE (typemodlist) == ridpointers[(int) RID_CONST])
  3363.             constp++;
  3364.           else if (TREE_VALUE (typemodlist) == ridpointers[(int) RID_VOLATILE])
  3365.             volatilep++;
  3366.           else if (!erred)
  3367.             {
  3368.               erred = 1;
  3369.               error ("invalid type modifier within pointer declarator");
  3370.             }
  3371.         }
  3372.           if (constp > 1)
  3373.         warning ("duplicate `const'");
  3374.           if (volatilep > 1)
  3375.         warning ("duplicate `volatile'");
  3376.         }
  3377.  
  3378.       declarator = TREE_OPERAND (declarator, 0);
  3379.     }
  3380.       else
  3381.     abort ();
  3382.  
  3383.     }
  3384.  
  3385.   /* Now TYPE has the actual type.  */
  3386.  
  3387.   /* If this is declaring a typedef name, return a TYPE_DECL.  */
  3388.  
  3389.   if (specbits & (1 << (int) RID_TYPEDEF))
  3390.     {
  3391.       tree decl;
  3392.       /* Note that the grammar rejects storage classes
  3393.      in typenames, fields or parameters */
  3394.       if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
  3395.       && (constp || volatilep))
  3396.     pedwarn ("ANSI C forbids const or volatile function types");
  3397.       if (constp || volatilep)
  3398.     type = c_build_type_variant (type, constp, volatilep);
  3399.       if (resume_temporary)
  3400.     resume_temporary_allocation ();
  3401.       decl = build_decl (TYPE_DECL, declarator, type);
  3402.       if (specbits & (1 << (int) RID_SIGNED))
  3403.     C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
  3404.       return decl;
  3405.     }
  3406.  
  3407.   /* Detect the case of an array type of unspecified size
  3408.      which came, as such, direct from a typedef name.
  3409.      We must copy the type, so that each identifier gets
  3410.      a distinct type, so that each identifier's size can be
  3411.      controlled separately by its own initializer.  */
  3412.  
  3413.   if (type != 0 && typedef_type != 0
  3414.       && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type)
  3415.       && TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type) == 0)
  3416.     {
  3417.       type = build_array_type (TREE_TYPE (type), 0);
  3418.       if (variable_size)
  3419.     C_TYPE_VARIABLE_SIZE (type) = 1;
  3420.     }
  3421.  
  3422.   /* If this is a type name (such as, in a cast or sizeof),
  3423.      compute the type and return it now.  */
  3424.  
  3425.   if (decl_context == TYPENAME)
  3426.     {
  3427.       /* Note that the grammar rejects storage classes
  3428.      in typenames, fields or parameters */
  3429.       if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
  3430.       && (constp || volatilep))
  3431.     pedwarn ("ANSI C forbids const or volatile function types");
  3432.       if (constp || volatilep)
  3433.     type = c_build_type_variant (type, constp, volatilep);
  3434.       if (resume_temporary)
  3435.     resume_temporary_allocation ();
  3436.       return type;
  3437.     }
  3438.  
  3439.   /* `void' at top level (not within pointer)
  3440.      is allowed only in typedefs or type names.
  3441.      We don't complain about parms either, but that is because
  3442.      a better error message can be made later.  */
  3443.  
  3444.   if (type == void_type_node && decl_context != PARM)
  3445.     {
  3446.       error ("variable or field `%s' declared void",
  3447.          IDENTIFIER_POINTER (declarator));
  3448.       type = integer_type_node;
  3449.     }
  3450.  
  3451.   /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
  3452.      or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE.  */
  3453.  
  3454.   {
  3455.     register tree decl;
  3456.  
  3457.     if (decl_context == PARM)
  3458.       {
  3459.     /* A parameter declared as an array of T is really a pointer to T.
  3460.        One declared as a function is really a pointer to a function.  */
  3461.  
  3462.     if (TREE_CODE (type) == ARRAY_TYPE)
  3463.       {
  3464.         /* Transfer const-ness of array into that of type pointed to.  */
  3465.         type = build_pointer_type
  3466.             (c_build_type_variant (TREE_TYPE (type), constp, volatilep));
  3467.         volatilep = constp = 0;
  3468.         variable_size = 0;
  3469.       }
  3470.     else if (TREE_CODE (type) == FUNCTION_TYPE)
  3471.       {
  3472.         if (pedantic && (constp || volatilep))
  3473.           pedwarn ("ANSI C forbids const or volatile function types");
  3474.         type = build_pointer_type (c_build_type_variant (type, constp, volatilep));
  3475.         volatilep = constp = 0;
  3476.       }
  3477.  
  3478.     if (initialized)
  3479.       error ("parameter `%s' is initialized", name);
  3480.  
  3481.     decl = build_decl (PARM_DECL, declarator, type);
  3482.     if (variable_size)
  3483.       C_DECL_VARIABLE_SIZE (decl) = 1;
  3484.  
  3485.     /* Compute the type actually passed in the parmlist,
  3486.        for the case where there is no prototype.
  3487.        (For example, shorts and chars are passed as ints.)
  3488.        When there is a prototype, this is overridden later.  */
  3489.  
  3490.     DECL_ARG_TYPE (decl) = type;
  3491.     if (type == float_type_node)
  3492.       DECL_ARG_TYPE (decl) = double_type_node;
  3493.     else if (TREE_CODE (type) == INTEGER_TYPE
  3494.          && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
  3495.       DECL_ARG_TYPE (decl) = integer_type_node;
  3496.       }
  3497.     else if (decl_context == FIELD)
  3498.       {
  3499.     /* Structure field.  It may not be a function.  */
  3500.  
  3501.     if (TREE_CODE (type) == FUNCTION_TYPE)
  3502.       {
  3503.         error ("field `%s' declared as a function",
  3504.            IDENTIFIER_POINTER (declarator));
  3505.         type = build_pointer_type (type);
  3506.       }
  3507.     else if (TREE_CODE (type) != ERROR_MARK && TYPE_SIZE (type) == 0)
  3508.       {
  3509.         error ("field `%s' has incomplete type",
  3510.            IDENTIFIER_POINTER (declarator));
  3511.         type = error_mark_node;
  3512.       }
  3513.     /* Move type qualifiers down to element of an array.  */
  3514.     if (TREE_CODE (type) == ARRAY_TYPE && (constp || volatilep))
  3515.       {
  3516.         type = build_array_type (c_build_type_variant (TREE_TYPE (type),
  3517.                                constp, volatilep),
  3518.                      TYPE_DOMAIN (type));
  3519. #if 0 /* Leave the field const or volatile as well.  */
  3520.         constp = volatilep = 0;
  3521. #endif
  3522.       }
  3523.     decl = build_decl (FIELD_DECL, declarator, type);
  3524.     if (variable_size)
  3525.       C_DECL_VARIABLE_SIZE (decl) = 1;
  3526.       }
  3527.     else if (TREE_CODE (type) == FUNCTION_TYPE)
  3528.       {
  3529.     if (specbits & ((1 << (int) RID_AUTO) | (1 << (int) RID_REGISTER)))
  3530.       error ("invalid storage class for function `%s'",
  3531.          IDENTIFIER_POINTER (declarator));
  3532.     /* Function declaration not at top level.
  3533.        Storage classes other than `extern' are not allowed
  3534.        and `extern' makes no difference.  */
  3535.     if (current_binding_level != global_binding_level
  3536.         && (specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_INLINE)))
  3537.         && pedantic)
  3538.       pedwarn ("invalid storage class for function `%s'",
  3539.            IDENTIFIER_POINTER (declarator));
  3540.     decl = build_decl (FUNCTION_DECL, declarator, type);
  3541.  
  3542.     if (pedantic && (constp || volatilep))
  3543.       pedwarn ("ANSI C forbids const or volatile functions");
  3544.  
  3545.     TREE_EXTERNAL (decl) = 1;
  3546.     /* Record presence of `static'.  */
  3547.     TREE_PUBLIC (decl) = !(specbits & (1 << (int) RID_STATIC));
  3548.     /* Record presence of `inline', if it is reasonable.  */
  3549.     if (inlinep)
  3550.       {
  3551.         tree last = tree_last (TYPE_ARG_TYPES (type));
  3552.  
  3553.         if (! strcmp (IDENTIFIER_POINTER (declarator), "main"))
  3554.           warning ("cannot inline function `main'");
  3555.         else if (last && TREE_VALUE (last) != void_type_node)
  3556.           warning ("inline declaration ignored for function with `...'");
  3557.         else
  3558.           /* Assume that otherwise the function can be inlined.  */
  3559.           TREE_INLINE (decl) = 1;
  3560.  
  3561.         if (specbits & (1 << (int) RID_EXTERN))
  3562.           current_extern_inline = 1;
  3563.       }
  3564.       }
  3565.     else
  3566.       {
  3567.     /* It's a variable.  */
  3568.  
  3569.     /* Move type qualifiers down to element of an array.  */
  3570.     if (TREE_CODE (type) == ARRAY_TYPE && (constp || volatilep))
  3571.       {
  3572.         type = build_array_type (c_build_type_variant (TREE_TYPE (type),
  3573.                                constp, volatilep),
  3574.                      TYPE_DOMAIN (type));
  3575. #if 0 /* Leave the variable const or volatile as well.  */
  3576.         constp = volatilep = 0;
  3577. #endif
  3578.       }
  3579.  
  3580.     decl = build_decl (VAR_DECL, declarator, type);
  3581.     if (variable_size)
  3582.       C_DECL_VARIABLE_SIZE (decl) = 1;
  3583.  
  3584.     if (inlinep)
  3585.       pedwarn_with_decl (decl, "variable `%s' declared `inline'");
  3586.  
  3587.     /* An uninitialized decl with `extern' is a reference.  */
  3588.     TREE_EXTERNAL (decl)
  3589.       = !initialized && (specbits & (1 << (int) RID_EXTERN));
  3590.     /* At top level, either `static' or no s.c. makes a definition
  3591.        (perhaps tentative), and absence of `static' makes it public.  */
  3592.     if (current_binding_level == global_binding_level)
  3593.       {
  3594.         TREE_PUBLIC (decl) = !(specbits & (1 << (int) RID_STATIC));
  3595.         TREE_STATIC (decl) = ! TREE_EXTERNAL (decl);
  3596.       }
  3597.     /* Not at top level, only `static' makes a static definition.  */
  3598.     else
  3599.       {
  3600.         TREE_STATIC (decl) = (specbits & (1 << (int) RID_STATIC)) != 0;
  3601.         TREE_PUBLIC (decl) = TREE_EXTERNAL (decl);
  3602.       }
  3603.       }
  3604.  
  3605.     /* Record `register' declaration for warnings on &
  3606.        and in case doing stupid register allocation.  */
  3607.  
  3608.     if (specbits & (1 << (int) RID_REGISTER))
  3609.       TREE_REGDECL (decl) = 1;
  3610.  
  3611.     /* Record constancy and volatility.  */
  3612.  
  3613.     if (constp)
  3614.       TREE_READONLY (decl) = 1;
  3615.     if (volatilep)
  3616.       {
  3617.     TREE_SIDE_EFFECTS (decl) = 1;
  3618.     TREE_THIS_VOLATILE (decl) = 1;
  3619.       }
  3620.     /* If a type has volatile components, it should be stored in memory.
  3621.        Otherwise, the fact that those components are volatile
  3622.        will be ignored, and would even crash the compiler.  */
  3623.     if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl)))
  3624.       mark_addressable (decl);
  3625.  
  3626.     if (resume_temporary)
  3627.       resume_temporary_allocation ();
  3628.  
  3629.     return decl;
  3630.   }
  3631. }
  3632.  
  3633. /* Make a variant type in the proper way for C, propagating qualifiers
  3634.    down to the element type of an array.  */
  3635.  
  3636. tree
  3637. c_build_type_variant (type, constp, volatilep)
  3638.      tree type;
  3639.      int constp, volatilep;
  3640. {
  3641.   if (TREE_CODE (type) == ARRAY_TYPE)
  3642.     type = build_array_type (c_build_type_variant (TREE_TYPE (type),
  3643.                            constp, volatilep),
  3644.                  TYPE_DOMAIN (type));
  3645.   return build_type_variant (type, constp, volatilep);
  3646. }
  3647.  
  3648. /* Decode the parameter-list info for a function type or function definition.
  3649.    The argument is the value returned by `get_parm_info' (or made in parse.y
  3650.    if there is an identifier list instead of a parameter decl list).
  3651.    These two functions are separate because when a function returns
  3652.    or receives functions then each is called multiple times but the order
  3653.    of calls is different.  The last call to `grokparms' is always the one
  3654.    that contains the formal parameter names of a function definition.
  3655.  
  3656.    Store in `last_function_parms' a chain of the decls of parms.
  3657.    Also store in `last_function_parm_tags' a chain of the struct and union
  3658.    tags declared among the parms.
  3659.  
  3660.    Return a list of arg types to use in the FUNCTION_TYPE for this function.
  3661.  
  3662.    FUNCDEF_FLAG is nonzero for a function definition, 0 for
  3663.    a mere declaration.  A nonempty identifier-list gets an error message
  3664.    when FUNCDEF_FLAG is zero.  */
  3665.  
  3666. static tree
  3667. grokparms (parms_info, funcdef_flag)
  3668.      tree parms_info;
  3669.      int funcdef_flag;
  3670. {
  3671.   tree first_parm = TREE_CHAIN (parms_info);
  3672.  
  3673.   last_function_parms = TREE_PURPOSE (parms_info);
  3674.   last_function_parm_tags = TREE_VALUE (parms_info);
  3675.  
  3676.   if (warn_strict_prototypes && first_parm == 0 && !funcdef_flag)
  3677.     warning ("function declaration isn't a prototype");
  3678.  
  3679.   if (first_parm != 0
  3680.       && TREE_CODE (TREE_VALUE (first_parm)) == IDENTIFIER_NODE)
  3681.     {
  3682.       if (! funcdef_flag)
  3683.     pedwarn ("parameter names (without types) in function declaration");
  3684.  
  3685.       last_function_parms = first_parm;
  3686.       return 0;
  3687.     }
  3688.   else
  3689.     {
  3690.       tree parm;
  3691.       tree typelt;
  3692.       /* We no longer test FUNCDEF_FLAG.
  3693.      If the arg types are incomplete in a declaration,
  3694.      they must include undefined tags.
  3695.      These tags can never be defined in the scope of the declaration,
  3696.      so the types can never be completed,
  3697.      and no call can be compiled successfully.  */
  3698. #if 0
  3699.       /* In a fcn definition, arg types must be complete.  */
  3700.       if (funcdef_flag)
  3701. #endif
  3702.     for (parm = last_function_parms, typelt = first_parm;
  3703.          parm;
  3704.          parm = TREE_CHAIN (parm))
  3705.       /* Skip over any enumeration constants declared here.  */
  3706.       if (TREE_CODE (parm) == PARM_DECL)
  3707.         {
  3708.           /* Barf if the parameter itself has an incomplete type.  */
  3709.           tree type = TREE_VALUE (typelt);
  3710.           if (TYPE_SIZE (type) == 0)
  3711.         {
  3712.           if (funcdef_flag && DECL_NAME (parm) != 0)
  3713.             error ("parameter `%s' has incomplete type",
  3714.                IDENTIFIER_POINTER (DECL_NAME (parm)));
  3715.           else
  3716.             warning ("parameter has incomplete type");
  3717.           if (funcdef_flag)
  3718.             {
  3719.               TREE_VALUE (typelt) = error_mark_node;
  3720.               TREE_TYPE (parm) = error_mark_node;
  3721.             }
  3722.         }
  3723. #if 0  /* This has been replaced by parm_tags_warning
  3724.       which uses a more accurate criterion for what to warn about.  */
  3725.           else
  3726.         {
  3727.           /* Now warn if is a pointer to an incomplete type.  */
  3728.           while (TREE_CODE (type) == POINTER_TYPE
  3729.              || TREE_CODE (type) == REFERENCE_TYPE)
  3730.             type = TREE_TYPE (type);
  3731.           type = TYPE_MAIN_VARIANT (type);
  3732.           if (TYPE_SIZE (type) == 0)
  3733.             {
  3734.               if (DECL_NAME (parm) != 0)
  3735.             warning ("parameter `%s' points to incomplete type",
  3736.                  IDENTIFIER_POINTER (DECL_NAME (parm)));
  3737.               else
  3738.             warning ("parameter points to incomplete type");
  3739.             }
  3740.         }
  3741. #endif
  3742.           typelt = TREE_CHAIN (typelt);
  3743.         }
  3744.  
  3745.       return first_parm;
  3746.     }
  3747. }
  3748.  
  3749.  
  3750. /* Return a tree_list node with info on a parameter list just parsed.
  3751.    The TREE_PURPOSE is a chain of decls of those parms.
  3752.    The TREE_VALUE is a list of structure, union and enum tags defined.
  3753.    The TREE_CHAIN is a list of argument types to go in the FUNCTION_TYPE.
  3754.    This tree_list node is later fed to `grokparms'.
  3755.  
  3756.    VOID_AT_END nonzero means append `void' to the end of the type-list.
  3757.    Zero means the parmlist ended with an ellipsis so don't append `void'.  */
  3758.  
  3759. tree
  3760. get_parm_info (void_at_end)
  3761.      int void_at_end;
  3762. {
  3763.   register tree decl;
  3764.   register tree types = 0;
  3765.   int erred = 0;
  3766.   tree tags = gettags ();
  3767.   tree parms = nreverse (getdecls ());
  3768.  
  3769.   /* Just `void' (and no ellipsis) is special.  There are really no parms.  */
  3770.   if (void_at_end && parms != 0
  3771.       && TREE_CHAIN (parms) == 0
  3772.       && TREE_TYPE (parms) == void_type_node
  3773.       && DECL_NAME (parms) == 0)
  3774.     {
  3775.       parms = NULL_TREE;
  3776.       storedecls (NULL_TREE);
  3777.       return saveable_tree_cons (NULL_TREE, NULL_TREE,
  3778.                  saveable_tree_cons (NULL_TREE, void_type_node, NULL_TREE));
  3779.     }
  3780.  
  3781.   storedecls (parms);
  3782.  
  3783.   for (decl = parms; decl; decl = TREE_CHAIN (decl))
  3784.     /* There may also be declarations for enumerators if an enumeration
  3785.        type is declared among the parms.  Ignore them here.  */
  3786.     if (TREE_CODE (decl) == PARM_DECL)
  3787.       {
  3788.     /* Since there is a prototype,
  3789.        args are passed in their declared types.  */
  3790.     tree type = TREE_TYPE (decl);
  3791.     DECL_ARG_TYPE (decl) = type;
  3792. #ifdef PROMOTE_PROTOTYPES
  3793.     if (TREE_CODE (type) == INTEGER_TYPE
  3794.         && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
  3795.       DECL_ARG_TYPE (decl) = integer_type_node;
  3796. #endif
  3797.  
  3798.     types = saveable_tree_cons (NULL_TREE, TREE_TYPE (decl), types);
  3799.     if (TREE_VALUE (types) == void_type_node && ! erred
  3800.         && DECL_NAME (decl) == 0)
  3801.       {
  3802.         error ("`void' in parameter list must be the entire list");
  3803.         erred = 1;
  3804.       }
  3805.       }
  3806.  
  3807.   if (void_at_end)
  3808.     return saveable_tree_cons (parms, tags,
  3809.                    nreverse (saveable_tree_cons (NULL_TREE, void_type_node, types)));
  3810.  
  3811.   return saveable_tree_cons (parms, tags, nreverse (types));
  3812. }
  3813.  
  3814. /* At end of parameter list, warn about any struct, union or enum tags
  3815.    defined within.  Do so because these types cannot ever become complete.  */
  3816.  
  3817. void
  3818. parmlist_tags_warning ()
  3819. {
  3820.   tree elt;
  3821.   static int already;
  3822.  
  3823.   for (elt = current_binding_level->tags; elt; elt = TREE_CHAIN (elt))
  3824.     {
  3825.       enum tree_code code = TREE_CODE (TREE_VALUE (elt));
  3826.       warning ("`%s %s' declared inside parameter list",
  3827.            (code == RECORD_TYPE ? "struct"
  3828.         : code == UNION_TYPE ? "union"
  3829.         : "enum"),
  3830.            IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
  3831.       if (! already)
  3832.     {
  3833.       warning ("its scope is only this definition or declaration,");
  3834.       warning ("which is probably not what you want.");
  3835.       already = 1;
  3836.     }
  3837.     }
  3838. }
  3839.  
  3840. /* Get the struct, enum or union (CODE says which) with tag NAME.
  3841.    Define the tag as a forward-reference if it is not defined.  */
  3842.  
  3843. tree
  3844. xref_tag (code, name)
  3845.      enum tree_code code;
  3846.      tree name;
  3847. {
  3848.   int temporary = allocation_temporary_p ();
  3849.  
  3850.   /* If a cross reference is requested, look up the type
  3851.      already defined for this tag and return it.  */
  3852.  
  3853.   register tree ref = lookup_tag (code, name, current_binding_level, 0);
  3854.   if (ref && TREE_CODE (ref) == code)
  3855.     return ref;
  3856.  
  3857.   if (current_binding_level == global_binding_level && temporary)
  3858.     end_temporary_allocation ();
  3859.  
  3860.   /* If no such tag is yet defined, create a forward-reference node
  3861.      and record it as the "definition".
  3862.      When a real declaration of this type is found,
  3863.      the forward-reference will be altered into a real type.  */
  3864.  
  3865.   ref = make_node (code);
  3866.   if (code == ENUMERAL_TYPE)
  3867.     {
  3868.       /* (In ANSI, Enums can be referred to only if already defined.)  */
  3869.       if (pedantic)
  3870.     pedwarn ("ANSI C forbids forward references to `enum' types");
  3871.       /* Give the type a default layout like unsigned int
  3872.      to avoid crashing if it does not get defined.  */
  3873.       TYPE_MODE (ref) = SImode;
  3874.       TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
  3875.       TREE_UNSIGNED (ref) = 1;
  3876.       TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
  3877.       TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
  3878.       TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
  3879.     }
  3880.  
  3881.   pushtag (name, ref);
  3882.  
  3883.   if (current_binding_level == global_binding_level && temporary)
  3884.     resume_temporary_allocation ();
  3885.  
  3886.   return ref;
  3887. }
  3888.  
  3889. /* Make sure that the tag NAME is defined *in the current binding level*
  3890.    at least as a forward reference.
  3891.    CODE says which kind of tag NAME ought to be.  */
  3892.  
  3893. tree
  3894. start_struct (code, name)
  3895.      enum tree_code code;
  3896.      tree name;
  3897. {
  3898.   /* If there is already a tag defined at this binding level
  3899.      (as a forward reference), just return it.  */
  3900.  
  3901.   register tree ref = 0;
  3902.  
  3903.   if (name != 0)
  3904.     ref = lookup_tag (code, name, current_binding_level, 1);
  3905.   if (ref && TREE_CODE (ref) == code)
  3906.     {
  3907.       C_TYPE_BEING_DEFINED (ref) = 1;
  3908.       if (TYPE_FIELDS (ref))
  3909.     error ((code == UNION_TYPE ? "redefinition of `union %s'"
  3910.         : "redefinition of `struct %s'"),
  3911.            IDENTIFIER_POINTER (name));
  3912.  
  3913.       return ref;
  3914.     }
  3915.  
  3916.   /* Otherwise create a forward-reference just so the tag is in scope.  */
  3917.  
  3918.   ref = make_node (code);
  3919.   pushtag (name, ref);
  3920.   C_TYPE_BEING_DEFINED (ref) = 1;
  3921.   return ref;
  3922. }
  3923.  
  3924. /* Process the specs, declarator (NULL if omitted) and width (NULL if omitted)
  3925.    of a structure component, returning a FIELD_DECL node.
  3926.    WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node.
  3927.  
  3928.    This is done during the parsing of the struct declaration.
  3929.    The FIELD_DECL nodes are chained together and the lot of them
  3930.    are ultimately passed to `build_struct' to make the RECORD_TYPE node.  */
  3931.  
  3932. tree
  3933. grokfield (filename, line, declarator, declspecs, width)
  3934.      char *filename;
  3935.      int line;
  3936.      tree declarator, declspecs, width;
  3937. {
  3938.   register tree value = grokdeclarator (declarator, declspecs,
  3939.                     width ? BITFIELD : FIELD, 0);
  3940.  
  3941.   finish_decl (value, NULL, NULL);
  3942.   DECL_INITIAL (value) = width;
  3943.  
  3944.   return value;
  3945. }
  3946.  
  3947. /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
  3948.    FIELDLIST is a chain of FIELD_DECL nodes for the fields.  */
  3949.  
  3950. tree
  3951. finish_struct (t, fieldlist)
  3952.      register tree t, fieldlist;
  3953. {
  3954.   register tree x;
  3955.   int old_momentary;
  3956.  
  3957.   /* If this type was previously laid out as a forward reference,
  3958.      make sure we lay it out again.  */
  3959.  
  3960.   TYPE_SIZE (t) = 0;
  3961.  
  3962.   /* Nameless union parm types are useful as GCC extension.  */
  3963.   if (! (TREE_CODE (t) == UNION_TYPE && TYPE_NAME (t) == 0 && !pedantic))
  3964.     /* Otherwise, warn about any struct or union def. in parmlist.  */
  3965.     if (in_parm_level_p ())
  3966.       warning ((TREE_CODE (t) == UNION_TYPE ? "union defined inside parms"
  3967.         : "structure defined inside parms"));
  3968.  
  3969.   old_momentary = suspend_momentary ();
  3970.  
  3971.   if (fieldlist == 0 && pedantic)
  3972.     pedwarn ((TREE_CODE (t) == UNION_TYPE ? "union has no members"
  3973.           : "structure has no members"));
  3974.  
  3975.   /* Install struct as DECL_CONTEXT of each field decl.
  3976.      Also process specified field sizes.
  3977.      Set DECL_FRAME_SIZE to the specified size, or 0 if none specified.
  3978.      The specified size is found in the DECL_INITIAL.
  3979.      Store 0 there, except for ": 0" fields (so we can find them
  3980.      and delete them, below).  */
  3981.  
  3982.   for (x = fieldlist; x; x = TREE_CHAIN (x))
  3983.     {
  3984.       DECL_CONTEXT (x) = t;
  3985.       DECL_FRAME_SIZE (x) = 0;
  3986.  
  3987.       /* If any field is const, the structure type is pseudo-const.  */
  3988.       if (TREE_READONLY (x))
  3989.     C_TYPE_FIELDS_READONLY (t) = 1;
  3990.       else
  3991.     {
  3992.       /* A field that is pseudo-const makes the structure likewise.  */
  3993.       tree t1 = TREE_TYPE (x);
  3994.       while (TREE_CODE (t1) == ARRAY_TYPE)
  3995.         t1 = TREE_TYPE (t1);
  3996.       if ((TREE_CODE (t1) == RECORD_TYPE || TREE_CODE (t1) == UNION_TYPE)
  3997.           && C_TYPE_FIELDS_READONLY (t1))
  3998.         C_TYPE_FIELDS_READONLY (t) = 1;
  3999.     }
  4000.  
  4001.       /* Any field that is volatile means variables of this type must be
  4002.      treated in some ways as volatile.  */
  4003.       if (TREE_THIS_VOLATILE (x))
  4004.     C_TYPE_FIELDS_VOLATILE (t) = 1;
  4005.  
  4006.       /* Any field of nominal variable size implies structure is too.  */
  4007.       if (C_DECL_VARIABLE_SIZE (x))
  4008.     C_TYPE_VARIABLE_SIZE (t) = 1;
  4009.  
  4010.       /* Detect invalid bit-field size.  */
  4011.       while (DECL_INITIAL (x)
  4012.          && TREE_CODE (DECL_INITIAL (x)) == NON_LVALUE_EXPR)
  4013.     DECL_INITIAL (x) = TREE_OPERAND (DECL_INITIAL (x), 0);
  4014.       if (DECL_INITIAL (x) && TREE_CODE (DECL_INITIAL (x)) != INTEGER_CST)
  4015.     {
  4016.       error_with_decl (x, "bit-field `%s' width not an integer constant");
  4017.       DECL_INITIAL (x) = NULL;
  4018.     }
  4019.  
  4020.       /* Detect invalid bit-field type.  */
  4021.       if (DECL_INITIAL (x)
  4022.       && TREE_CODE (TREE_TYPE (x)) != INTEGER_TYPE
  4023.       && TREE_CODE (TREE_TYPE (x)) != ENUMERAL_TYPE)
  4024.     {
  4025.       error_with_decl (x, "bit-field `%s' has invalid type");
  4026.       DECL_INITIAL (x) = NULL;
  4027.     }
  4028.       if (DECL_INITIAL (x) && pedantic
  4029.       && TREE_TYPE (x) != integer_type_node
  4030.       && TREE_TYPE (x) != unsigned_type_node)
  4031.     pedwarn_with_decl (x, "bit-field `%s' type invalid in ANSI C");
  4032.  
  4033.       /* Detect and ignore out of range field width.  */
  4034.       if (DECL_INITIAL (x))
  4035.     {
  4036.       register int width = TREE_INT_CST_LOW (DECL_INITIAL (x));
  4037.  
  4038.       if (width < 0)
  4039.         {
  4040.           DECL_INITIAL (x) = NULL;
  4041.           error_with_decl (x, "negative width in bit-field `%s'");
  4042.         }
  4043.       else if (width == 0 && DECL_NAME (x) != 0)
  4044.         {
  4045.           error_with_decl (x, "zero width for bit-field `%s'");
  4046.           DECL_INITIAL (x) = NULL;
  4047.         }
  4048.       else if (width > TYPE_PRECISION (TREE_TYPE (x)))
  4049.         {
  4050.           DECL_INITIAL (x) = NULL;
  4051.           pedwarn_with_decl (x, "width of `%s' exceeds its type");
  4052.         }
  4053.     }
  4054.  
  4055.       /* Process valid field width.  */
  4056.       if (DECL_INITIAL (x))
  4057.     {
  4058.       register int width = TREE_INT_CST_LOW (DECL_INITIAL (x));
  4059.  
  4060.       DECL_FRAME_SIZE (x) = width;
  4061.       DECL_BIT_FIELD (x) = 1;
  4062.       DECL_INITIAL (x) = NULL;
  4063.  
  4064.       if (width == 0)
  4065.         {
  4066.           /* field size 0 => force desired amount of alignment.  */
  4067. #ifdef EMPTY_FIELD_BOUNDARY
  4068.           DECL_ALIGN (x) = MAX (DECL_ALIGN (x), EMPTY_FIELD_BOUNDARY);
  4069. #endif
  4070. #ifdef PCC_BITFIELD_TYPE_MATTERS
  4071.           DECL_ALIGN (x) = MAX (DECL_ALIGN (x),
  4072.                     TYPE_ALIGN (TREE_TYPE (x)));
  4073. #endif
  4074.         }
  4075.     }
  4076.       else
  4077.     /* Non-bit-fields are aligned for their type.  */
  4078.     DECL_ALIGN (x) = MAX (DECL_ALIGN (x), TYPE_ALIGN (TREE_TYPE (x)));
  4079.     }
  4080.  
  4081.   /* Now DECL_INITIAL is null on all members.  */
  4082.  
  4083.   /* Delete all duplicate fields from the fieldlist */
  4084.   for (x = fieldlist; x && TREE_CHAIN (x);)
  4085.     /* Anonymous fields aren't duplicates.  */
  4086.     if (DECL_NAME (TREE_CHAIN (x)) == 0)
  4087.       x = TREE_CHAIN (x);
  4088.     else
  4089.       {
  4090.     register tree y = fieldlist;
  4091.       
  4092.     while (1)
  4093.       {
  4094.         if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
  4095.           break;
  4096.         if (y == x)
  4097.           break;
  4098.         y = TREE_CHAIN (y);
  4099.       }
  4100.     if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
  4101.       {
  4102.         error_with_decl (TREE_CHAIN (x), "duplicate member `%s'");
  4103.         TREE_CHAIN (x) = TREE_CHAIN (TREE_CHAIN (x));
  4104.       }
  4105.     else x = TREE_CHAIN (x);
  4106.       }
  4107.  
  4108.   /* Now we have the nearly final fieldlist.  Record it,
  4109.      then lay out the structure or union (including the fields).  */
  4110.  
  4111.   TYPE_FIELDS (t) = fieldlist;
  4112.  
  4113.   layout_type (t);
  4114.  
  4115.   /* Delete all zero-width bit-fields from the front of the fieldlist */
  4116.   while (fieldlist
  4117.      && DECL_INITIAL (fieldlist))
  4118.     fieldlist = TREE_CHAIN (fieldlist);
  4119.   /* Delete all such members from the rest of the fieldlist */
  4120.   for (x = fieldlist; x;)
  4121.     {
  4122.       if (TREE_CHAIN (x) && DECL_INITIAL (TREE_CHAIN (x)))
  4123.     TREE_CHAIN (x) = TREE_CHAIN (TREE_CHAIN (x));
  4124.       else x = TREE_CHAIN (x);
  4125.     }
  4126.  
  4127.   /*  Now we have the truly final field list.
  4128.       Store it in this type and in the variants.  */
  4129.  
  4130.   TYPE_FIELDS (t) = fieldlist;
  4131.  
  4132.   for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
  4133.     {
  4134.       TYPE_FIELDS (x) = TYPE_FIELDS (t);
  4135.       TYPE_ALIGN (x) = TYPE_ALIGN (t);
  4136.     }
  4137.  
  4138.   /* Promote each bit-field's type to int if it is narrower than that.  */
  4139.   for (x = fieldlist; x; x = TREE_CHAIN (x))
  4140.     if (DECL_BIT_FIELD (x)
  4141.     && TREE_CODE (TREE_TYPE (x)) == INTEGER_TYPE
  4142.     && (TREE_INT_CST_LOW (DECL_SIZE (x))
  4143.         < TYPE_PRECISION (integer_type_node)))
  4144.       TREE_TYPE (x) = integer_type_node;
  4145.  
  4146.   /* If this structure or union completes the type of any previous
  4147.      variable declaration, lay it out and output its rtl.  */
  4148.  
  4149.   if (current_binding_level->n_incomplete != 0)
  4150.     {
  4151.       tree decl;
  4152.       for (decl = current_binding_level->names; decl; decl = TREE_CHAIN (decl))
  4153.     {
  4154.       if (TREE_TYPE (decl) == t
  4155.           && TREE_CODE (decl) != TYPE_DECL)
  4156.         {
  4157.           int toplevel = global_binding_level == current_binding_level;
  4158.           layout_decl (decl, 0);
  4159.           /* This is a no-op in c-lang.c or something real in objc-actions.c.  */
  4160.           maybe_objc_check_decl (decl);
  4161.           rest_of_decl_compilation (decl, 0, toplevel, 0);
  4162.           if (! toplevel)
  4163.         expand_decl (decl);
  4164.           --current_binding_level->n_incomplete;
  4165.         }
  4166.       else if (TYPE_SIZE (TREE_TYPE (decl)) == 0
  4167.            && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
  4168.         {
  4169.           tree element = TREE_TYPE (decl);
  4170.           while (TREE_CODE (element) == ARRAY_TYPE)
  4171.         element = TREE_TYPE (element);
  4172.           if (element == t)
  4173.         layout_array_type (TREE_TYPE (decl));
  4174.         }
  4175.     }
  4176.     }
  4177.  
  4178.   resume_momentary (old_momentary);
  4179.  
  4180.   return t;
  4181. }
  4182.  
  4183. /* Lay out the type T, and its element type, and so on.  */
  4184.  
  4185. static void
  4186. layout_array_type (t)
  4187.      tree t;
  4188. {
  4189.   if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
  4190.     layout_array_type (TREE_TYPE (t));
  4191.   layout_type (t);
  4192. }
  4193.  
  4194. /* Begin compiling the definition of an enumeration type.
  4195.    NAME is its name (or null if anonymous).
  4196.    Returns the type object, as yet incomplete.
  4197.    Also records info about it so that build_enumerator
  4198.    may be used to declare the individual values as they are read.  */
  4199.  
  4200. tree
  4201. start_enum (name)
  4202.      tree name;
  4203. {
  4204.   register tree enumtype = 0;
  4205.  
  4206.   /* If this is the real definition for a previous forward reference,
  4207.      fill in the contents in the same object that used to be the
  4208.      forward reference.  */
  4209.  
  4210.   if (name != 0)
  4211.     enumtype = lookup_tag (ENUMERAL_TYPE, name, current_binding_level, 1);
  4212.  
  4213.   if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
  4214.     {
  4215.       enumtype = make_node (ENUMERAL_TYPE);
  4216.       pushtag (name, enumtype);
  4217.     }
  4218.  
  4219.   C_TYPE_BEING_DEFINED (enumtype) = 1;
  4220.  
  4221.   if (TYPE_VALUES (enumtype) != 0)
  4222.     {
  4223.       /* This enum is a named one that has been declared already.  */
  4224.       error ("redeclaration of `enum %s'", IDENTIFIER_POINTER (name));
  4225.  
  4226.       /* Completely replace its old definition.
  4227.      The old enumerators remain defined, however.  */
  4228.       TYPE_VALUES (enumtype) = 0;
  4229.     }
  4230.  
  4231.   enum_next_value = integer_zero_node;
  4232.  
  4233.   return enumtype;
  4234. }
  4235.  
  4236. /* After processing and defining all the values of an enumeration type,
  4237.    install their decls in the enumeration type and finish it off.
  4238.    ENUMTYPE is the type object and VALUES a list of decl-value pairs.
  4239.    Returns ENUMTYPE.  */
  4240.  
  4241. tree
  4242. finish_enum (enumtype, values)
  4243.      register tree enumtype, values;
  4244. {
  4245.   register tree pair;
  4246.   tree minnode = 0, maxnode = 0;
  4247.   register long maxvalue = 0;
  4248.   register long minvalue = 0;
  4249.   register int i;
  4250.   int precision = 0;
  4251.  
  4252.   if (in_parm_level_p ())
  4253.     warning ("enum defined inside parms");
  4254.  
  4255.   /* Calculate the maximum value of any enumerator in this type.  */
  4256.  
  4257.   for (pair = values; pair; pair = TREE_CHAIN (pair))
  4258.     {
  4259.       tree value = TREE_VALUE (pair);
  4260.       if (pair == values)
  4261.     minnode = maxnode = TREE_VALUE (pair);
  4262.       else
  4263.     {
  4264.       if (tree_int_cst_lt (maxnode, value))
  4265.         maxnode = value;
  4266.       if (tree_int_cst_lt (value, minnode))
  4267.         minnode = value;
  4268.     }
  4269.     }
  4270.  
  4271.   TYPE_MIN_VALUE (enumtype) = minnode;
  4272.   TYPE_MAX_VALUE (enumtype) = maxnode;
  4273.  
  4274.   /* Determine the precision this type needs.  */
  4275.  
  4276.   if (!(TREE_INT_CST_HIGH (maxnode) == 0
  4277.     && (TREE_INT_CST_HIGH (minnode) == 0
  4278.         || (TREE_INT_CST_HIGH (minnode) == -1
  4279.         && TREE_INT_CST_LOW (minnode) < 0
  4280.         && TREE_INT_CST_LOW (maxnode) >= 0))))
  4281.     precision = 2 * HOST_BITS_PER_INT;
  4282.   else
  4283.     {
  4284.       int maxvalue = TREE_INT_CST_LOW (maxnode);
  4285.       int minvalue = TREE_INT_CST_LOW (minnode);
  4286.  
  4287.       precision = floor_log2 (maxvalue) + 1;
  4288.       if (minvalue < 0)
  4289.     {
  4290.       /* Compute number of bits to represent magnitude of a negative value.
  4291.          Add one to MINVALUE since range of negative numbers
  4292.          includes the power of two.  */
  4293.       int negprecision = floor_log2 (-minvalue - 1) + 1;
  4294.       if (negprecision > precision)
  4295.         precision = negprecision;
  4296.       precision += 1;    /* room for sign bit */
  4297.     }
  4298.  
  4299.       if (!precision)
  4300.     precision = 1;
  4301.     }
  4302.  
  4303.   if (flag_short_enums || precision > TYPE_PRECISION (integer_type_node))
  4304.     /* Use the width of the narrowest normal C type which is wide enough.  */
  4305.     TYPE_PRECISION (enumtype) = TYPE_PRECISION (type_for_size (precision, 1));
  4306.   else
  4307.     TYPE_PRECISION (enumtype) = TYPE_PRECISION (integer_type_node);
  4308.  
  4309.   TYPE_SIZE (enumtype) = 0;
  4310.   layout_type (enumtype);
  4311.  
  4312.   /* An enum can have some negative values; then it is signed.  */
  4313.   TREE_UNSIGNED (enumtype) = ! tree_int_cst_lt (minnode, integer_zero_node);
  4314.  
  4315.   /* If the enumerators might not fit in an int, change their type now.  */
  4316.   /* It seems more useful in the debugger to leave these as int
  4317.      unless the enumerator is wider than int.  */
  4318.   if (TYPE_PRECISION (enumtype) <= TYPE_PRECISION (integer_type_node))
  4319.     for (pair = values; pair; pair = TREE_CHAIN (pair))
  4320.       {
  4321.     TREE_TYPE (TREE_PURPOSE (pair)) = enumtype;
  4322.     DECL_SIZE (TREE_PURPOSE (pair)) = TYPE_SIZE (enumtype);
  4323.     DECL_ALIGN (TREE_PURPOSE (pair)) = TYPE_ALIGN (enumtype);
  4324.       }
  4325.  
  4326.   /* Replace the decl nodes in VALUES with their names.  */
  4327.   for (pair = values; pair; pair = TREE_CHAIN (pair))
  4328.     TREE_PURPOSE (pair) = DECL_NAME (TREE_PURPOSE (pair));
  4329.  
  4330.   TYPE_VALUES (enumtype) = values;
  4331.  
  4332.   return enumtype;
  4333. }
  4334.  
  4335. /* Build and install a CONST_DECL for one value of the
  4336.    current enumeration type (one that was begun with start_enum).
  4337.    Return a tree-list containing the CONST_DECL and its value.
  4338.    Assignment of sequential values by default is handled here.  */
  4339.  
  4340. tree
  4341. build_enumerator (name, value)
  4342.      tree name, value;
  4343. {
  4344.   register tree decl;
  4345.  
  4346.   /* Validate and default VALUE.  */
  4347.  
  4348.   /* Remove no-op casts from the value.  */
  4349.   while (value != 0
  4350.      && (TREE_CODE (value) == NOP_EXPR
  4351.          || TREE_CODE (value) == NON_LVALUE_EXPR))
  4352.     value = TREE_OPERAND (value, 0);
  4353.  
  4354.   if (value != 0 && TREE_CODE (value) != INTEGER_CST)
  4355.     {
  4356.       error ("enumerator value for `%s' not integer constant",
  4357.          IDENTIFIER_POINTER (name));
  4358.       value = 0;
  4359.     }
  4360.  
  4361.   /* Default based on previous value.  */
  4362.   /* It should no longer be possible to have NON_LVALUE_EXPR
  4363.      in the default.  */
  4364.   if (value == 0)
  4365.     value = enum_next_value;
  4366.  
  4367.   if (pedantic && ! int_fits_type_p (value, integer_type_node))
  4368.     {
  4369.       pedwarn ("ANSI C restricts enumerator values to range of `int'");
  4370.       value = integer_zero_node;
  4371.     }
  4372.  
  4373.   /* Set basis for default for next value.  */
  4374.   enum_next_value = build_binary_op_nodefault (PLUS_EXPR, value,
  4375.                            integer_one_node, PLUS_EXPR);
  4376.  
  4377.   /* Now create a declaration for the enum value name.  */
  4378.  
  4379.   decl = build_decl (CONST_DECL, name, integer_type_node);
  4380.   DECL_INITIAL (decl) = value;
  4381.   TREE_TYPE (value) = integer_type_node;
  4382.   pushdecl (decl);
  4383.  
  4384.   return saveable_tree_cons (decl, value, NULL);
  4385. }
  4386.  
  4387. /* Create the FUNCTION_DECL for a function definition.
  4388.    DECLSPECS and DECLARATOR are the parts of the declaration;
  4389.    they describe the function's name and the type it returns,
  4390.    but twisted together in a fashion that parallels the syntax of C.
  4391.  
  4392.    This function creates a binding context for the function body
  4393.    as well as setting up the FUNCTION_DECL in current_function_decl.
  4394.  
  4395.    Returns 1 on success.  If the DECLARATOR is not suitable for a function
  4396.    (it defines a datum instead), we return 0, which tells
  4397.    yyparse to report a parse error.
  4398.  
  4399.    NESTED is nonzero for a function nested within another function.  */
  4400.  
  4401. int
  4402. start_function (declspecs, declarator, nested)
  4403.      tree declarator, declspecs;
  4404.      int nested;
  4405. {
  4406.   tree decl1, old_decl;
  4407.   tree restype;
  4408.  
  4409.   current_function_returns_value = 0;  /* Assume, until we see it does. */
  4410.   current_function_returns_null = 0;
  4411.   warn_about_return_type = 0;
  4412.   current_extern_inline = 0;
  4413.   c_function_varargs = 0;
  4414.   named_labels = 0;
  4415.   shadowed_labels = 0;
  4416.  
  4417.   decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1);
  4418.  
  4419.   /* If the declarator is not suitable for a function definition,
  4420.      cause a syntax error.  */
  4421.   if (decl1 == 0)
  4422.     return 0;
  4423.  
  4424.   announce_function (decl1);
  4425.  
  4426.   if (TYPE_SIZE (TREE_TYPE (TREE_TYPE (decl1))) == 0)
  4427.     {
  4428.       error ("return-type is an incomplete type");
  4429.       /* Make it return void instead.  */
  4430.       TREE_TYPE (decl1)
  4431.     = build_function_type (void_type_node,
  4432.                    TYPE_ARG_TYPES (TREE_TYPE (decl1)));
  4433.     }
  4434.  
  4435.   if (warn_about_return_type)
  4436.     warning ("return-type defaults to `int'");
  4437.  
  4438.   /* Save the parm names or decls from this function's declarator
  4439.      where store_parm_decls will find them.  */
  4440.   current_function_parms = last_function_parms;
  4441.   current_function_parm_tags = last_function_parm_tags;
  4442.  
  4443.   /* Make the init_value nonzero so pushdecl knows this is not tentative.
  4444.      error_mark_node is replaced below (in poplevel) with the BLOCK.  */
  4445.   DECL_INITIAL (decl1) = error_mark_node;
  4446.  
  4447.   /* If this definition isn't a prototype and we had a prototype declaration
  4448.      before, copy the arg type info from that prototype.  */
  4449.   old_decl = lookup_name_current_level (DECL_NAME (decl1));
  4450.   if (old_decl != 0
  4451.       && TREE_TYPE (TREE_TYPE (decl1)) == TREE_TYPE (TREE_TYPE (old_decl))
  4452.       && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0)
  4453.     TREE_TYPE (decl1) = TREE_TYPE (old_decl);
  4454.  
  4455.   /* Optionally warn of old-fashioned def with no previous prototype.  */
  4456.   if (warn_strict_prototypes
  4457.       && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0
  4458.       && !(old_decl != 0 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) == 0))
  4459.     warning ("function declaration isn't a prototype");
  4460.   /* Optionally warn of any def with no previous prototype.  */
  4461.   else if (warn_missing_prototypes
  4462.        && !TREE_STATIC (decl1)
  4463.        && !(old_decl != 0 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) == 0))
  4464.     warning ("no prototype in scope for global function definition");
  4465.  
  4466.   /* This is a definition, not a reference.
  4467.      So normally clear TREE_EXTERNAL.
  4468.      However, `extern inline' acts like a declaration
  4469.      except for defining how to inline.  So set TREE_EXTERNAL in that case.  */
  4470.   TREE_EXTERNAL (decl1) = current_extern_inline;
  4471.  
  4472.   /* This function exists in static storage.
  4473.      (This does not mean `static' in the C sense!)  */
  4474.   TREE_STATIC (decl1) = 1;
  4475.  
  4476.   /* A nested function is not global.  */
  4477.   if (current_function_decl != 0)
  4478.     TREE_PUBLIC (decl1) = 0;
  4479.  
  4480.   /* Record the decl so that the function name is defined.
  4481.      If we already have a decl for this name, and it is a FUNCTION_DECL,
  4482.      use the old decl.  */
  4483.  
  4484.   current_function_decl = pushdecl (decl1);
  4485.  
  4486.   pushlevel (0);
  4487.   declare_parm_level (1);
  4488.  
  4489.   make_function_rtl (current_function_decl);
  4490.  
  4491.   restype = TREE_TYPE (TREE_TYPE (current_function_decl));
  4492.   /* Promote the value to int before returning it.  */
  4493.   if (TREE_CODE (restype) == INTEGER_TYPE
  4494.       && TYPE_PRECISION (restype) < TYPE_PRECISION (integer_type_node))
  4495.     restype = integer_type_node;
  4496.   DECL_RESULT (current_function_decl) = build_decl (RESULT_DECL, 0, restype);
  4497.  
  4498.   if (!nested)
  4499.     /* Allocate further tree nodes temporarily during compilation
  4500.        of this function only.  */
  4501.     temporary_allocation ();
  4502.  
  4503.   /* If this fcn was already referenced via a block-scope `extern' decl
  4504.      (or an implicit decl), propagate certain information about the usage.  */
  4505.   if (TREE_ADDRESSABLE (DECL_NAME (current_function_decl)))
  4506.     TREE_ADDRESSABLE (current_function_decl) = 1;
  4507.  
  4508.   return 1;
  4509. }
  4510.  
  4511. /* Record that this function is going to be a varargs function.
  4512.    This is called before store_parm_decls, which is too early
  4513.    to call mark_varargs directly.  */
  4514.  
  4515. c_mark_varargs ()
  4516. {
  4517.   c_function_varargs = 1;
  4518. }
  4519.  
  4520. /* Store the parameter declarations into the current function declaration.
  4521.    This is called after parsing the parameter declarations, before
  4522.    digesting the body of the function.  */
  4523.  
  4524. void
  4525. store_parm_decls ()
  4526. {
  4527.   register tree fndecl = current_function_decl;
  4528.   register tree parm;
  4529.  
  4530.   /* This is either a chain of PARM_DECLs (if a prototype was used)
  4531.      or a list of IDENTIFIER_NODEs (for an old-fashioned C definition).  */
  4532.   tree specparms = current_function_parms;
  4533.  
  4534.   /* This is a list of types declared among parms in a prototype.  */
  4535.   tree parmtags = current_function_parm_tags;
  4536.  
  4537.   /* This is a chain of PARM_DECLs from old-style parm declarations.  */
  4538.   register tree parmdecls = getdecls ();
  4539.  
  4540.   /* This is a chain of any other decls that came in among the parm
  4541.      declarations.  If a parm is declared with  enum {foo, bar} x;
  4542.      then CONST_DECLs for foo and bar are put here.  */
  4543.   tree nonparms = 0;
  4544.  
  4545.   /* Nonzero if this definition is written with a prototype.  */
  4546.   int prototype = 0;
  4547.  
  4548.   if (specparms != 0 && TREE_CODE (specparms) != TREE_LIST)
  4549.     {
  4550.       /* This case is when the function was defined with an ANSI prototype.
  4551.      The parms already have decls, so we need not do anything here
  4552.      except record them as in effect
  4553.      and complain if any redundant old-style parm decls were written.  */
  4554.  
  4555.       register tree next;
  4556.       tree others = 0;
  4557.  
  4558.       prototype = 1;
  4559.  
  4560.       if (parmdecls != 0)
  4561.     error_with_decl (fndecl,
  4562.              "parm types given both in parmlist and separately");
  4563.  
  4564.       specparms = nreverse (specparms);
  4565.       for (parm = specparms; parm; parm = next)
  4566.     {
  4567.       next = TREE_CHAIN (parm);
  4568.       if (DECL_NAME (parm) == 0)
  4569.         error_with_decl (parm, "parameter name omitted");
  4570.       else if (TREE_TYPE (parm) == void_type_node)
  4571.         error_with_decl (parm, "parameter `%s' declared void");
  4572.       else if (TREE_CODE (parm) == PARM_DECL)
  4573.         pushdecl (parm);
  4574.       else
  4575.         {
  4576.           /* If we find an enum constant, put it aside for the moment.  */
  4577.           TREE_CHAIN (parm) = 0;
  4578.           others = chainon (others, parm);
  4579.         }
  4580.     }
  4581.  
  4582.       /* Get the decls in their original chain order
  4583.      and record in the function.  */
  4584.       DECL_ARGUMENTS (fndecl) = getdecls ();
  4585.  
  4586. #if 0
  4587.       /* If this function takes a variable number of arguments,
  4588.      add a phony parameter to the end of the parm list,
  4589.      to represent the position of the first unnamed argument.  */
  4590.       if (TREE_VALUE (tree_last (TYPE_ARG_TYPES (TREE_TYPE (fndecl))))
  4591.       != void_type_node)
  4592.     {
  4593.       tree dummy = build_decl (PARM_DECL, NULL_TREE, void_type_node);
  4594.       /* Let's hope the address of the unnamed parm
  4595.          won't depend on its type.  */
  4596.       TREE_TYPE (dummy) = integer_type_node;
  4597.       DECL_ARG_TYPE (dummy) = integer_type_node;
  4598.       DECL_ARGUMENTS (fndecl)
  4599.         = chainon (DECL_ARGUMENTS (fndecl), dummy);
  4600.     }
  4601. #endif
  4602.  
  4603.       /* Now pushdecl the enum constants.  */
  4604.       for (parm = others; parm; parm = next)
  4605.     {
  4606.       next = TREE_CHAIN (parm);
  4607.       if (DECL_NAME (parm) == 0)
  4608.         ;
  4609.       else if (TREE_TYPE (parm) == void_type_node)
  4610.         ;
  4611.       else if (TREE_CODE (parm) != PARM_DECL)
  4612.         pushdecl (parm);
  4613.     }
  4614.  
  4615.       storetags (chainon (parmtags, gettags ()));
  4616.     }
  4617.   else
  4618.     {
  4619.       /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
  4620.      each with a parm name as the TREE_VALUE.
  4621.  
  4622.      PARMDECLS is a chain of declarations for parameters.
  4623.      Warning! It can also contain CONST_DECLs which are not parameters
  4624.      but are names of enumerators of any enum types
  4625.      declared among the parameters.
  4626.  
  4627.      First match each formal parameter name with its declaration.
  4628.      Associate decls with the names and store the decls
  4629.      into the TREE_PURPOSE slots.  */
  4630.  
  4631.       for (parm = parmdecls; parm; parm = TREE_CHAIN (parm))
  4632.     DECL_RESULT (parm) = 0;
  4633.  
  4634.       for (parm = specparms; parm; parm = TREE_CHAIN (parm))
  4635.     {
  4636.       register tree tail, found = NULL;
  4637.  
  4638.       if (TREE_VALUE (parm) == 0)
  4639.         {
  4640.           error_with_decl (fndecl, "parameter name missing from parameter list");
  4641.           TREE_PURPOSE (parm) = 0;
  4642.           continue;
  4643.         }
  4644.  
  4645.       /* See if any of the parmdecls specifies this parm by name.
  4646.          Ignore any enumerator decls.  */
  4647.       for (tail = parmdecls; tail; tail = TREE_CHAIN (tail))
  4648.         if (DECL_NAME (tail) == TREE_VALUE (parm)
  4649.         && TREE_CODE (tail) == PARM_DECL)
  4650.           {
  4651.         found = tail;
  4652.         break;
  4653.           }
  4654.  
  4655.       /* If declaration already marked, we have a duplicate name.
  4656.          Complain, and don't use this decl twice.   */
  4657.       if (found && DECL_RESULT (found) != 0)
  4658.         {
  4659.           error_with_decl (found, "multiple parameters named `%s'");
  4660.           found = 0;
  4661.         }
  4662.  
  4663.       /* If the declaration says "void", complain and ignore it.  */
  4664.       if (found && TREE_TYPE (found) == void_type_node)
  4665.         {
  4666.           error_with_decl (found, "parameter `%s' declared void");
  4667.           TREE_TYPE (found) = integer_type_node;
  4668.           DECL_ARG_TYPE (found) = integer_type_node;
  4669.           layout_decl (found, 0);
  4670.         }
  4671.  
  4672.       /* Traditionally, a parm declared float is actually a double.  */
  4673.       if (found && flag_traditional
  4674.           && TREE_TYPE (found) == float_type_node)
  4675.         TREE_TYPE (found) = double_type_node;
  4676.  
  4677.       /* If no declaration found, default to int.  */
  4678.       if (!found)
  4679.         {
  4680.           found = build_decl (PARM_DECL, TREE_VALUE (parm),
  4681.                   integer_type_node);
  4682.           DECL_ARG_TYPE (found) = TREE_TYPE (found);
  4683.           DECL_SOURCE_LINE (found) = DECL_SOURCE_LINE (fndecl);
  4684.           DECL_SOURCE_FILE (found) = DECL_SOURCE_FILE (fndecl);
  4685.           if (extra_warnings)
  4686.         warning_with_decl (found, "type of `%s' defaults to `int'");
  4687.           pushdecl (found);
  4688.         }
  4689.  
  4690.       TREE_PURPOSE (parm) = found;
  4691.  
  4692.       /* Mark this decl as "already found" -- see test, above.
  4693.          It is safe to use DECL_RESULT for this
  4694.          since it is not used in PARM_DECLs or CONST_DECLs.  */
  4695.       DECL_RESULT (found) = error_mark_node;
  4696.     }
  4697.  
  4698.       /* Complain about declarations not matched with any names.
  4699.      Put any enumerator constants onto the list NONPARMS.  */
  4700.  
  4701.       nonparms = 0;
  4702.       for (parm = parmdecls; parm; )
  4703.     {
  4704.       tree next = TREE_CHAIN (parm);
  4705.       TREE_CHAIN (parm) = 0;
  4706.  
  4707.       /* Complain about args with incomplete types.  */
  4708.       if (TYPE_SIZE (TREE_TYPE (parm)) == 0)
  4709.         {
  4710.           error_with_decl (parm, "parameter `%s' has incomplete type");
  4711.           TREE_TYPE (parm) = error_mark_node;
  4712.         }
  4713.  
  4714.       if (TREE_CODE (parm) != PARM_DECL)
  4715.         nonparms = chainon (nonparms, parm);
  4716.  
  4717.       else if (DECL_RESULT (parm) == 0)
  4718.         {
  4719.           error_with_decl (parm,
  4720.                    "declaration for parameter `%s' but no such parameter");
  4721.           /* Pretend the parameter was not missing.
  4722.          This gets us to a standard state and minimizes
  4723.          further error messages.  */
  4724.           specparms
  4725.         = chainon (specparms,
  4726.                tree_cons (parm, NULL_TREE, NULL_TREE));
  4727.         }
  4728.  
  4729.       parm = next;
  4730.     }
  4731.  
  4732.       /* Chain the declarations together in the order of the list of names.  */
  4733.       /* Store that chain in the function decl, replacing the list of names.  */
  4734.       parm = specparms;
  4735.       DECL_ARGUMENTS (fndecl) = 0;
  4736.       {
  4737.     register tree last;
  4738.     for (last = 0; parm; parm = TREE_CHAIN (parm))
  4739.       if (TREE_PURPOSE (parm))
  4740.         {
  4741.           if (last == 0)
  4742.         DECL_ARGUMENTS (fndecl) = TREE_PURPOSE (parm);
  4743.           else
  4744.         TREE_CHAIN (last) = TREE_PURPOSE (parm);
  4745.           last = TREE_PURPOSE (parm);
  4746.           TREE_CHAIN (last) = 0;
  4747.         }
  4748.       }
  4749.  
  4750.       /* If there was a previous prototype,
  4751.      set the DECL_ARG_TYPE of each argument according to
  4752.      the type previously specified, and report any mismatches.  */
  4753.  
  4754.       if (TYPE_ARG_TYPES (TREE_TYPE (fndecl)))
  4755.     {
  4756.       register tree type;
  4757.       for (parm = DECL_ARGUMENTS (fndecl),
  4758.            type = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
  4759.            parm || (type && TREE_VALUE (type) != void_type_node);
  4760.            parm = TREE_CHAIN (parm), type = TREE_CHAIN (type))
  4761.         {
  4762.           if (parm == 0 || type == 0
  4763.           || TREE_VALUE (type) == void_type_node)
  4764.         {
  4765.           error ("number of arguments doesn't match prototype");
  4766.           break;
  4767.         }
  4768.           /* Type for passing arg must be consistent
  4769.          with that declared for the arg.  */
  4770.           if (! comptypes (DECL_ARG_TYPE (parm), TREE_VALUE (type))
  4771.           /* If -traditional, allow `unsigned int' instead of `int'
  4772.              in the prototype.  */
  4773.           && (! (flag_traditional
  4774.              && DECL_ARG_TYPE (parm) == integer_type_node
  4775.              && TREE_VALUE (type) == unsigned_type_node)))
  4776.         {
  4777.           error ("argument `%s' doesn't match function prototype",
  4778.              IDENTIFIER_POINTER (DECL_NAME (parm)));
  4779.           if (DECL_ARG_TYPE (parm) == integer_type_node
  4780.               && TREE_VALUE (type) == TREE_TYPE (parm))
  4781.             {
  4782.               error ("a formal parameter type that promotes to `int'");
  4783.               error ("can match only `int' in the prototype");
  4784.             }
  4785.           if (DECL_ARG_TYPE (parm) == double_type_node
  4786.               && TREE_VALUE (type) == TREE_TYPE (parm))
  4787.             {
  4788.               error ("a formal parameter type that promotes to `double'");
  4789.               error ("can match only `double' in the prototype");
  4790.             }
  4791.         }
  4792.         }
  4793.     }
  4794.  
  4795.       /* Now store the final chain of decls for the arguments
  4796.      as the decl-chain of the current lexical scope.
  4797.      Put the enumerators in as well, at the front so that
  4798.      DECL_ARGUMENTS is not modified.  */
  4799.  
  4800.       storedecls (chainon (nonparms, DECL_ARGUMENTS (fndecl)));
  4801.     }
  4802.  
  4803.   /* Make sure the binding level for the top of the function body
  4804.      gets a BLOCK if there are any in the function.
  4805.      Otherwise, the dbx output is wrong.  */
  4806.  
  4807.   keep_next_if_subblocks = 1;
  4808.  
  4809.   /* ??? This might be an improvement,
  4810.      but needs to be thought about some more.  */
  4811. #if 0
  4812.   keep_next_level_flag = 1;
  4813. #endif
  4814.  
  4815.   /* Write a record describing this function definition to the prototypes
  4816.      file (if requested).  */
  4817.  
  4818.   gen_aux_info_record (fndecl, 1, 0, prototype);
  4819.  
  4820.   /* Initialize the RTL code for the function.  */
  4821.  
  4822.   init_function_start (fndecl, input_filename, lineno);
  4823.  
  4824.   /* If this is a varargs function, inform function.c.  */
  4825.  
  4826.   if (c_function_varargs)
  4827.     mark_varargs ();
  4828.  
  4829.   /* Set up parameters and prepare for return, for the function.  */
  4830.  
  4831.   expand_function_start (fndecl, 0);
  4832. }
  4833.  
  4834. /* Finish up a function declaration and compile that function
  4835.    all the way to assembler language output.  The free the storage
  4836.    for the function definition.
  4837.  
  4838.    This is called after parsing the body of the function definition.
  4839.  
  4840.    NESTED is nonzero if the function being finished is nested in another.  */
  4841.  
  4842. void
  4843. finish_function (nested)
  4844.      int nested;
  4845. {
  4846.   register tree fndecl = current_function_decl;
  4847.  
  4848. /*  TREE_READONLY (fndecl) = 1;
  4849.     This caused &foo to be of type ptr-to-const-function
  4850.     which then got a warning when stored in a ptr-to-function variable.  */
  4851.  
  4852.   poplevel (1, 0, 1);
  4853.  
  4854.   /* Must mark the RESULT_DECL as being in this function.  */
  4855.  
  4856.   DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
  4857.  
  4858.   /* Obey `register' declarations if `setjmp' is called in this fn.  */
  4859. #ifdef NeXT
  4860.   if (current_function_calls_setjmp)
  4861. #else /* NeXT */
  4862.   if (flag_traditional && current_function_calls_setjmp)
  4863. #endif /* NeXT */
  4864.     {
  4865.       setjmp_protect (DECL_INITIAL (fndecl));
  4866.       setjmp_protect_args ();
  4867.     }
  4868.  
  4869. #ifdef DEFAULT_MAIN_RETURN
  4870.   if (! strcmp (IDENTIFIER_POINTER (DECL_NAME (fndecl)), "main"))
  4871.     {
  4872.       /* Make it so that `main' always returns success by default.  */
  4873.       DEFAULT_MAIN_RETURN;
  4874.     }
  4875. #endif
  4876.  
  4877.   /* Generate rtl for function exit.  */
  4878.   expand_function_end (input_filename, lineno);
  4879.  
  4880.   /* So we can tell if jump_optimize sets it to 1.  */
  4881.   current_function_returns_null = 0;
  4882.  
  4883.   /* Run the optimizers and output the assembler code for this function.  */
  4884.   rest_of_compilation (fndecl);
  4885.  
  4886.   if (TREE_THIS_VOLATILE (fndecl) && current_function_returns_null)
  4887.     warning ("`volatile' function does return");
  4888.   else if (warn_return_type && current_function_returns_null
  4889.        && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl))) != void_type_node)
  4890.     /* If this function returns non-void and control can drop through,
  4891.        complain.  */
  4892.     warning ("control reaches end of non-void function");
  4893.   /* With just -W, complain only if function returns both with
  4894.      and without a value.  */
  4895.   else if (extra_warnings
  4896.        && current_function_returns_value && current_function_returns_null)
  4897.     warning ("this function may return with or without a value");
  4898.  
  4899.   /* Free all the tree nodes making up this function.  */
  4900.   /* Switch back to allocating nodes permanently
  4901.      until we start another function.  */
  4902.   if (!nested)
  4903.     permanent_allocation ();
  4904.  
  4905.   if (DECL_SAVED_INSNS (fndecl) == 0)
  4906.     {
  4907.       /* Stop pointing to the local nodes about to be freed.  */
  4908.       /* But DECL_INITIAL must remain nonzero so we know this
  4909.      was an actual function definition.  */
  4910.       DECL_INITIAL (fndecl) = error_mark_node;
  4911.       DECL_ARGUMENTS (fndecl) = 0;
  4912.     }
  4913.  
  4914.   /* Let the error reporting routines know that we're outside a function.  */
  4915.   current_function_decl = NULL;
  4916. }
  4917.  
  4918. /* Save and restore the variables in this file and elsewhere
  4919.    that keep track of the progress of compilation of the current function.
  4920.    Used for nested functions.  */
  4921.  
  4922. struct c_function
  4923. {
  4924.   struct c_function *next;
  4925.   tree enum_next_value;
  4926.   tree named_labels;
  4927.   tree shadowed_labels;
  4928.   int returns_value;
  4929.   int returns_null;
  4930.   int warn_about_return_type;
  4931.   int extern_inline;
  4932.   struct binding_level *binding_level;
  4933. };
  4934.  
  4935. struct c_function *c_function_chain;
  4936.  
  4937. /* Save and reinitialize the variables
  4938.    used during compilation of a C function.  */
  4939.  
  4940. void
  4941. push_c_function_context ()
  4942. {
  4943.   struct c_function *p
  4944.     = (struct c_function *) xmalloc (sizeof (struct c_function));
  4945.  
  4946.   push_function_context ();
  4947.  
  4948.   p->next = c_function_chain;
  4949.   c_function_chain = p;
  4950.  
  4951.   p->enum_next_value = enum_next_value;
  4952.   p->named_labels = named_labels;
  4953.   p->shadowed_labels = shadowed_labels;
  4954.   p->returns_value = current_function_returns_value;
  4955.   p->returns_null = current_function_returns_null;
  4956.   p->warn_about_return_type = warn_about_return_type;
  4957.   p->extern_inline = current_extern_inline;
  4958.   p->binding_level = current_binding_level;
  4959. }
  4960.  
  4961. /* Restore the variables used during compilation of a C function.  */
  4962.  
  4963. void
  4964. pop_c_function_context ()
  4965. {
  4966.   struct c_function *p = c_function_chain;
  4967.   tree link;
  4968.  
  4969.   /* Bring back all the labels that were shadowed.  */
  4970.   for (link = shadowed_labels; link; link = TREE_CHAIN (link))
  4971.     if (DECL_NAME (TREE_VALUE (link)) != 0)
  4972.       IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
  4973.     = TREE_VALUE (link);
  4974.  
  4975.   pop_function_context ();
  4976.  
  4977.   c_function_chain = p->next;
  4978.  
  4979.   enum_next_value = p->enum_next_value;
  4980.   named_labels = p->named_labels;
  4981.   shadowed_labels = p->shadowed_labels;
  4982.   current_function_returns_value = p->returns_value;
  4983.   current_function_returns_null = p->returns_null;
  4984.   warn_about_return_type = p->warn_about_return_type;
  4985.   current_extern_inline = p->extern_inline;
  4986.   current_binding_level = p->binding_level;
  4987.  
  4988.   free (p);
  4989. }
  4990.