home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Source / GNU / gcc / c-decl.c < prev    next >
C/C++ Source or Header  |  1996-09-03  |  235KB  |  7,271 lines

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