home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / NeXT / GnuSource / cplusplus-8 / cplus-decl.c < prev    next >
C/C++ Source or Header  |  1992-06-29  |  282KB  |  8,926 lines

  1. /* Process declarations and variables for C compiler.
  2.    Copyright (C) 1988 Free Software Foundation, Inc.
  3.    Hacked by Michael Tiemann (tiemann@mcc.com)
  4.  
  5. This file is part of GNU CC.
  6.  
  7. GNU CC is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 1, or (at your option)
  10. any later version.
  11.  
  12. GNU CC is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with GNU CC; see the file COPYING.  If not, write to
  19. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, 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 "cplus-tree.h"
  33. #include "cplus-parse.h"
  34. #include <signal.h>
  35. #include "assert.h"
  36. #include "obstack.h"
  37. #include "rtl.h"
  38. #include "insn-flags.h"
  39.  
  40. #define obstack_chunk_alloc xmalloc
  41. #define obstack_chunk_free free
  42.  
  43. extern int xmalloc ();
  44. extern void free ();
  45.  
  46. /* Define this if C structs should have gratuitous typedefing
  47.    done just like C++ structs do.  */
  48. #ifndef OBJCPLUS
  49. #define BREAK_C_TAGS
  50. #endif /* not OBJCPLUS */
  51.  
  52. /* Stack of places to restore the search obstack back to.  */
  53.    
  54. /* Obstack used for remembering local class declarations (like
  55.    enums and static (const) members.  */
  56. #include "stack.h"
  57. static struct obstack decl_obstack;
  58. static struct stack_level *decl_stack;
  59.  
  60. #include "cplus-decl.h"
  61.  
  62. #define NULL 0
  63. #define MIN(X,Y) ((X) < (Y) ? (X) : (Y))
  64. #define MAX(X,Y) ((X) > (Y) ? (X) : (Y))
  65.  
  66. #ifndef CHAR_TYPE_SIZE
  67. #define CHAR_TYPE_SIZE BITS_PER_UNIT
  68. #endif
  69.  
  70. #ifndef SHORT_TYPE_SIZE
  71. #define SHORT_TYPE_SIZE (BITS_PER_UNIT * MIN ((UNITS_PER_WORD + 1) / 2, 2))
  72. #endif
  73.  
  74. #ifndef INT_TYPE_SIZE
  75. #define INT_TYPE_SIZE BITS_PER_WORD
  76. #endif
  77.  
  78. #ifndef LONG_TYPE_SIZE
  79. #define LONG_TYPE_SIZE BITS_PER_WORD
  80. #endif
  81.  
  82. #ifndef LONG_LONG_TYPE_SIZE
  83. #define LONG_LONG_TYPE_SIZE (BITS_PER_WORD * 2)
  84. #endif
  85.  
  86. #ifndef FLOAT_TYPE_SIZE
  87. #define FLOAT_TYPE_SIZE BITS_PER_WORD
  88. #endif
  89.  
  90. #ifndef DOUBLE_TYPE_SIZE
  91. #define DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2)
  92. #endif
  93.  
  94. #ifndef LONG_DOUBLE_TYPE_SIZE
  95. #define LONG_DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2)
  96. #endif
  97.  
  98. #ifdef OBJCPLUS
  99. tree grokparms ();
  100. #else /* OBJCPLUS */
  101. static tree grokparms ();
  102. #endif /* OBJCPLUS */
  103. tree grokdeclarator ();
  104. tree pushdecl ();
  105. void push_overloaded_decl ();
  106. void pop_implicit_try_blocks ();
  107.  
  108. #define builtin_function(NAME, TYPE, CODE) \
  109.   define_function (NAME, TYPE, CODE, (void (*)())&pushdecl)
  110. #define auto_function(NAME, TYPE, CODE) \
  111.   define_function (NAME, TYPE, CODE, (void (*)())&push_overloaded_decl)
  112.  
  113. /* static */ void grokclassfn ();
  114. /* static */ tree grokopexpr (), grokoptypename ();
  115.  
  116. static tree lookup_tag ();
  117. static tree lookup_tag_reverse ();
  118. static tree lookup_name_current_level ();
  119. static char *redeclaration_error_message ();
  120. static int parmlist_is_exprlist ();
  121. static int parmlist_is_random ();
  122. static void grok_ctor_properties ();
  123. static void grok_op_properties ();
  124. static void expand_static_init ();
  125. static void deactivate_exception_cleanups ();
  126.  
  127. tree finish_table ();
  128. #ifdef FIELD_XREF
  129. static void FIELD_end_scope();
  130. #endif
  131.  
  132. /* a node which has tree code ERROR_MARK, and whose type is itself.
  133.    All erroneous expressions are replaced with this node.  All functions
  134.    that accept nodes as arguments should avoid generating error messages
  135.    if this node is one of the arguments, since it is undesirable to get
  136.    multiple error messages from one error in the input.  */
  137.  
  138. #undef error_mark_node
  139. tree error_mark_node;
  140. #define error_mark_node (&ERROR_MARK_NODE)
  141.  
  142. /* Erroneous argument lists can use this *IFF* they do not modify it.  */
  143. tree error_mark_list;
  144.  
  145. /* INTEGER_TYPE and REAL_TYPE nodes for the standard data types */
  146.  
  147. tree short_integer_type_node;
  148. tree integer_type_node;
  149. tree long_integer_type_node;
  150. tree long_long_integer_type_node;
  151.  
  152. tree short_unsigned_type_node;
  153. tree unsigned_type_node;
  154. tree long_unsigned_type_node;
  155. tree long_long_unsigned_type_node;
  156.  
  157. tree unsigned_char_type_node;
  158. tree signed_char_type_node;
  159. tree char_type_node;
  160.  
  161. tree float_type_node;
  162. tree double_type_node;
  163. tree long_double_type_node;
  164.  
  165. /* a VOID_TYPE node, and the same, packaged in a TREE_LIST.  */
  166.  
  167. tree void_type_node, void_list_node;
  168.  
  169. /* A node for type `void *'.  */
  170.  
  171. tree ptr_type_node;
  172.  
  173. /* A node for type `char *'.  */
  174.  
  175. tree string_type_node;
  176.  
  177. /* Type `char[256]' or something like it.
  178.    Used when an array of char is needed and the size is irrelevant.  */
  179.  
  180. tree char_array_type_node;
  181.  
  182. /* Type `int[256]' or something like it.
  183.    Used when an array of int needed and the size is irrelevant.  */
  184.  
  185. tree int_array_type_node;
  186.  
  187. /* type `int ()' -- used for implicit declaration of functions.  */
  188.  
  189. tree default_function_type;
  190.  
  191. /* function types `double (double)' and `double (double, double)', etc.  */
  192.  
  193. tree double_ftype_double, double_ftype_double_double;
  194. tree int_ftype_int, long_ftype_long;
  195.  
  196. /* Function type `void (void *, void *, int)' and similar ones.  */
  197.  
  198. tree void_ftype_ptr_ptr_int, int_ftype_ptr_ptr_int, void_ftype_ptr_int_int;
  199.  
  200. /* C++ extensions */
  201. tree vtable_entry_type;
  202. tree class_type_node, record_type_node, union_type_node, enum_type_node;
  203. tree exception_type_node, unknown_type_node;
  204.  
  205. /* Function type `void * (long)', 'void (void *)' */
  206. tree ptr_ftype_long, void_ftype_ptr;
  207. tree ptr_ftype_ptr_int_int_ptr, void_ftype_ptr_int_int_ptr_int_int;
  208.  
  209. /* Used for virtual function tables.  */
  210. tree vtbl_mask;
  211.  
  212. /* Array type `(void *)[]' */
  213. tree vtbl_type_node;
  214.  
  215. #ifdef SOS
  216. /* SOS extensions.  */
  217. tree zlink_type, zret_type;
  218. tree zlink, zret;
  219. #endif
  220.  
  221. /* Static decls which do not have static initializers have no
  222.    initializers as far as GNU C is concerned.  EMPTY_INIT_NODE
  223.    is a static initializer which makes varasm code place the decl
  224.    in data rather than in bss space.  Such gymnastics are necessary
  225.    to avoid the problem that the linker will not include a library
  226.    file if all the library appears to contribute are bss variables.  */
  227.  
  228. tree empty_init_node;
  229.  
  230. /* In a destructor, the point at which all derived class destroying
  231.    has been done, just before any base class destroying will be done.  */
  232.  
  233. tree dtor_label;
  234.  
  235. /* In a constructor, the point at which we are ready to return
  236.    the pointer to the initialized object.  */
  237.  
  238. tree ctor_label;
  239.  
  240. /* A FUNCTION_DECL which can call `unhandled_exception'.
  241.    Not neccessarily the one that the user will declare,
  242.    but sufficient to be called by routines that want to abort the program.  */
  243.  
  244. tree unhandled_exception_fndecl;
  245.  
  246. /* A FUNCTION_DECL which can call `abort'.  Not neccessarily the
  247.    one that the user will declare, but sufficient to be called
  248.    by routines that want to abort the program.  */
  249.  
  250. tree abort_fndecl;
  251.  
  252. /* -- end of C++ */
  253.  
  254. /* Two expressions that are constants with value zero.
  255.    The first is of type `int', the second of type `void *'.  */
  256.  
  257. tree integer_zero_node;
  258. tree null_pointer_node;
  259.  
  260. /* A node for the integer constants 1, 2, and 3.  */
  261.  
  262. tree integer_one_node, integer_two_node, integer_three_node;
  263.  
  264. /* An identifier whose name is <value>.  This is used as the "name"
  265.    of the RESULT_DECLs for values of functions.  */
  266.  
  267. tree value_identifier;
  268.  
  269. /* If original DECL_RESULT of current function was a register,
  270.    but due to being an addressable named return value, would up
  271.    on the stack, this variable holds the named return value's
  272.    original location.  */
  273. struct rtx_def *original_result_rtx;
  274.  
  275. /* Sequence of insns which represents base initialization.  */
  276. struct rtx_def *base_init_insns;
  277.  
  278. /* C++: Keep these around to reduce calls to `get_identifier'.
  279.    Identifiers for `this' in member functions and the auto-delete
  280.    parameter for destructors.  */
  281. tree this_identifier, in_charge_identifier;
  282.  
  283. /* While defining an enum type, this is 1 plus the last enumerator
  284.    constant value.  */
  285.  
  286. static tree enum_next_value;
  287.  
  288. /* Parsing a function declarator leaves a list of parameter names
  289.    or a chain or parameter decls here.  */
  290.  
  291. tree last_function_parms;
  292.  
  293. /* Parsing a function declarator leaves here a chain of structure
  294.    and enum types declared in the parmlist.  */
  295.  
  296. static tree last_function_parm_tags;
  297.  
  298. /* After parsing the declarator that starts a function definition,
  299.    `start_function' puts here the list of parameter names or chain of decls.
  300.    `store_parm_decls' finds it here.  */
  301.  
  302. static tree current_function_parms;
  303.  
  304. /* Similar, for last_function_parm_tags.  */
  305. static tree current_function_parm_tags;
  306.  
  307. /* A list (chain of TREE_LIST nodes) of all LABEL_STMTs in the function
  308.    that have names.  Here so we can clear out their names' definitions
  309.    at the end of the function.  */
  310.  
  311. static tree named_labels;
  312.  
  313. /* A list (chain of TREE_LIST nodes) of named label uses.
  314.    The TREE_PURPOSE field is the list of variables defined
  315.    the the label's scope defined at the point of use.
  316.    The TREE_VALUE field is the LABEL_DECL used.
  317.    The TREE_TYPE field holds `current_binding_level' at the
  318.    point of the label's use.
  319.  
  320.    Used only for jumps to as-yet undefined labels, since
  321.    jumps to defined labels can have their validity checked
  322.    by stmt.c.  */
  323.  
  324. static tree named_label_uses;
  325.  
  326. /* A list of objects which have constructors or destructors
  327.    which reside in the global scope.  The decl is stored in
  328.    the TREE_VALUE slot and the initializer is stored
  329.    in the TREE_PURPOSE slot.  */
  330. tree static_aggregates;
  331.  
  332. /* A list of functions which were declared inline, but later had their
  333.    address taken.  Used only for non-virtual member functions, since we can
  334.    find other functions easily enough.  */
  335. tree pending_addressable_inlines;
  336.  
  337. /* A list of overloaded functions which we should forget ever
  338.    existed, such as functions declared in a function's scope,
  339.    once we leave that function's scope.  */
  340. static tree overloads_to_forget;
  341.  
  342. /* The FUNCTION_DECL for the function currently being compiled,
  343.    or 0 if between functions.  */
  344. tree current_function_decl;
  345.  
  346. /* Set to 0 at beginning of a function definition, set to 1 if
  347.    a return statement that specifies a return value is seen.  */
  348.  
  349. int current_function_returns_value;
  350.  
  351. /* Set to 0 at beginning of a function definition, set to 1 if
  352.    a return statement with no argument is seen.  */
  353.  
  354. int current_function_returns_null;
  355.  
  356. /* Set to nonzero by `grokdeclarator' for a function
  357.    whose return type is defaulted, if warnings for this are desired.  */
  358.  
  359. static int warn_about_return_type;
  360.  
  361. /* Nonzero when starting a function delcared `extern inline'.  */
  362.  
  363. static int current_extern_inline;
  364.  
  365. char *language_string = "GNU C++";
  366.  
  367. /* Set to 0 at beginning of a constructor, set to 1
  368.    if that function does an allocation before referencing its
  369.    instance variable.  */
  370. int current_function_assigns_this;
  371. int current_function_just_assigned_this;
  372.  
  373. /* Set to 0 at beginning of a function.  Set non-zero when
  374.    store_parm_decls is called.  Don't call store_parm_decls
  375.    if this flag is non-zero!  */
  376. int current_function_parms_stored;
  377.  
  378. /* Allocate a level of searching.  */
  379. struct stack_level *
  380. push_decl_level (stack, obstack)
  381.      struct stack_level *stack;
  382.      struct obstack *obstack;
  383. {
  384.   struct stack_level tem;
  385.   tem.prev = stack;
  386.  
  387.   return push_stack_level (obstack, &tem, sizeof (tem));
  388. }
  389.  
  390. /* Discard a level of decl allocation.  */
  391.  
  392. static struct stack_level *
  393. pop_decl_level (stack)
  394.      struct stack_level *stack;
  395. {
  396.   tree *bp, *tp;
  397.   struct obstack *obstack = stack->obstack;
  398.   bp = stack->first;
  399.   tp = (tree *)obstack_next_free (obstack);
  400.   while (tp != bp)
  401.     {
  402.       --tp;
  403.       IDENTIFIER_CLASS_VALUE (DECL_NAME (*tp)) = NULL_TREE;
  404.     }
  405.   return pop_stack_level (stack);
  406. }
  407.  
  408. /* For each binding contour we allocate a binding_level structure
  409.  * which records the names defined in that contour.
  410.  * Contours include:
  411.  *  0) the global one
  412.  *  1) one for each function definition,
  413.  *     where internal declarations of the parameters appear.
  414.  *  2) one for each compound statement,
  415.  *     to record its declarations.
  416.  *
  417.  * The current meaning of a name can be found by searching the levels from
  418.  * the current one out to the global one.
  419.  *
  420.  * Off to the side, may be the class_binding_level.  This exists
  421.  * only to catch class-local declarations.  It is otherwise
  422.  * nonexistent.
  423.  * 
  424.  * Also there may be binding levels that catch cleanups that
  425.  * must be run when exceptions occur.
  426.  */
  427.  
  428. /* Note that the information in the `names' component of the global contour
  429.    is duplicated in the IDENTIFIER_GLOBAL_VALUEs of all identifiers.  */
  430.  
  431. struct binding_level
  432.   {
  433.     /* A chain of _DECL nodes for all variables, constants, functions,
  434.      * and typedef types.  These are in the reverse of the order supplied.
  435.      */
  436.     tree names;
  437.  
  438.     /* A list of structure, union and enum definitions,
  439.      * for looking up tag names.
  440.      * It is a chain of TREE_LIST nodes, each of whose TREE_PURPOSE is a name,
  441.      * or NULL_TREE; and whose TREE_VALUE is a RECORD_TYPE, UNION_TYPE,
  442.      * or ENUMERAL_TYPE node.
  443.      *
  444.      * C++: the TREE_VALUE nodes can be simple types for component_bindings.
  445.      *
  446.      */
  447.     tree tags;
  448.  
  449.     /* For each level, a list of shadowed outer-level local definitions
  450.        to be restored when this level is popped.
  451.        Each link is a TREE_LIST whose TREE_PURPOSE is an identifier and
  452.        whose TREE_VALUE is its old definition (a kind of ..._DECL node).  */
  453.     tree shadowed;
  454.  
  455.     /* Same, for IDENTIFIER_CLASS_VALUE.  */
  456.     tree class_shadowed;
  457.  
  458.     /* For each level (except not the global one),
  459.        a chain of LET_STMT nodes for all the levels
  460.        that were entered and exited one level down.  */
  461.     tree blocks;
  462.  
  463.     /* The binding level which this one is contained in (inherits from).  */
  464.     struct binding_level *level_chain;
  465.  
  466.     /* Number of decls in `names' that have incomplete 
  467.        structure or union types.  */
  468.     unsigned short n_incomplete;
  469.  
  470.     /* 1 for the level that holds the parameters of a function.
  471.        2 for the level that holds a class declaration.
  472.        3 for levels that hold parameter declarations.  */
  473.     unsigned parm_flag : 4;
  474.  
  475.     /* 1 means make a LET_STMT for this level regardless of all else.
  476.        2 for temporary binding contours created by the compiler.  */
  477.     unsigned keep : 3;
  478.  
  479.     /* Nonzero if this level "doesn't exist" for tags.  */
  480.     unsigned tag_transparent : 1;
  481.  
  482.     /* Nonzero if this level can safely have additional
  483.        cleanup-needing variables added to it.  */
  484.     unsigned more_cleanups_ok : 1;
  485.     unsigned have_cleanups : 1;
  486.  
  487.     /* Nonzero if this level can safely have additional
  488.        exception-raising statements added to it.  */
  489.     unsigned more_exceptions_ok : 1;
  490.     unsigned have_exceptions : 1;
  491.  
  492.     /* Four bits left for this word.  */
  493.   };
  494.  
  495. #define NULL_BINDING_LEVEL (struct binding_level *) NULL
  496.   
  497. /* The binding level currently in effect.  */
  498.  
  499. static struct binding_level *current_binding_level;
  500.  
  501. /* The binding level of the current class, if any.  */
  502.  
  503. static struct binding_level *class_binding_level;
  504.  
  505. /* A chain of binding_level structures awaiting reuse.  */
  506.  
  507. static struct binding_level *free_binding_level;
  508.  
  509. /* The outermost binding level, for names of file scope.
  510.    This is created when the compiler is started and exists
  511.    through the entire run.  */
  512.  
  513. static struct binding_level *global_binding_level;
  514.  
  515. /* Binding level structures are initialized by copying this one.  */
  516.  
  517. static struct binding_level clear_binding_level;
  518.  
  519. /* Nonzero means unconditionally make a LET_STMT for the next level pushed.  */
  520.  
  521. static int keep_next_level_flag;
  522.  
  523. #define PUSH_BINDING_LEVEL(NEWLEVEL, TAG_TRANSPARENT, KEEP) \
  524. do {                                    \
  525.   /* Add this level to the front of the chain (stack) of levels that    \
  526.      are active.  */                            \
  527.   *NEWLEVEL = clear_binding_level;                    \
  528.   if (class_binding_level)                        \
  529.     {                                    \
  530.       NEWLEVEL->level_chain = class_binding_level;            \
  531.       class_binding_level = 0;                        \
  532.     }                                    \
  533.   else                                    \
  534.     {                                    \
  535.       NEWLEVEL->level_chain = current_binding_level;            \
  536.     }                                    \
  537.   current_binding_level = NEWLEVEL;                    \
  538.   NEWLEVEL->tag_transparent = TAG_TRANSPARENT;                \
  539.   NEWLEVEL->more_cleanups_ok = 1;                    \
  540.   NEWLEVEL->more_exceptions_ok = 1;                    \
  541.   NEWLEVEL->keep = KEEP;                        \
  542. } while (0)
  543.  
  544. #define POP_BINDING_LEVEL \
  545. do {                                    \
  546.   /* Pop the current level, and free the structure for reuse.  */    \
  547.   {                                    \
  548.     register struct binding_level *level = current_binding_level;    \
  549.     current_binding_level = current_binding_level->level_chain;        \
  550.     level->level_chain = free_binding_level;                \
  551.     free_binding_level = level;                        \
  552.     if (current_binding_level->parm_flag == 2)                \
  553.       {                                    \
  554.     class_binding_level = current_binding_level;            \
  555.     do                                \
  556.       {                                \
  557.         current_binding_level = current_binding_level->level_chain;    \
  558.       }                                \
  559.     while (current_binding_level->parm_flag == 2);            \
  560.       }                                    \
  561.   }                                    \
  562. } while (0)
  563.  
  564. /* Create a new `struct binding_level'.  */
  565.  
  566. static
  567. struct binding_level *
  568. make_binding_level ()
  569. {
  570.   /* NOSTRICT */
  571.   return (struct binding_level *) xmalloc (sizeof (struct binding_level));
  572. }
  573.  
  574. /* Nonzero if we are currently in the global binding level.  */
  575.  
  576. int
  577. global_bindings_p ()
  578. {
  579.   return current_binding_level == global_binding_level;
  580. }
  581.  
  582. void
  583. keep_next_level ()
  584. {
  585.   keep_next_level_flag = 1;
  586. }
  587.  
  588. /* Identify this binding level as a level of parameters.  */
  589.  
  590. void
  591. declare_parm_level ()
  592. {
  593.   current_binding_level->parm_flag = 1;
  594. }
  595.  
  596. /* Identify this binding level as a level of a default exception handler.  */
  597.  
  598. void
  599. declare_implicit_exception ()
  600. {
  601.   current_binding_level->parm_flag = 3;
  602. }
  603.  
  604. /* Nonzero if current binding contour contains expressions
  605.    that might raise exceptions.  */
  606.  
  607. int
  608. have_exceptions_p ()
  609. {
  610.   return current_binding_level->have_exceptions;
  611. }
  612.  
  613. /* Enter a new binding level.
  614.    If TAG_TRANSPARENT is nonzero, do so only for the name space of variables,
  615.    not for that of tags.  */
  616.  
  617. void
  618. pushlevel (tag_transparent)
  619.      int tag_transparent;
  620. {
  621.   register struct binding_level *newlevel = NULL_BINDING_LEVEL;
  622.  
  623.   /* If this is the top level of a function,
  624.      just make sure that NAMED_LABELS is 0.
  625.      They should have been set to 0 at the end of the previous function.  */
  626.  
  627.   if (current_binding_level == global_binding_level)
  628.     assert (named_labels == NULL_TREE);
  629.  
  630.   /* Reuse or create a struct for this binding level.  */
  631.  
  632.   if (free_binding_level)
  633.     {
  634.       newlevel = free_binding_level;
  635.       free_binding_level = free_binding_level->level_chain;
  636.     }
  637.   else
  638.     {
  639.       newlevel = make_binding_level ();
  640.     }
  641.   PUSH_BINDING_LEVEL (newlevel, tag_transparent, keep_next_level_flag);
  642. #ifdef FIELD_XREF
  643.   FIELD_xref_start_scope(newlevel);
  644. #endif
  645.   keep_next_level_flag = 0;
  646. }
  647.  
  648. void
  649. pushlevel_temporary (tag_transparent)
  650.      int tag_transparent;
  651. {
  652.   pushlevel (tag_transparent);
  653.   current_binding_level->keep = 2;
  654.   clear_last_expr ();
  655. #if 0
  656.   /* Don't call push_momentary here!  It will cause cleanups
  657.      to be allocated on the momentary obstack, and they
  658.      will be overwritten by the next statement.  */
  659.   push_momentary ();
  660. #endif
  661.   expand_start_bindings (0);
  662. }
  663.  
  664. /* Exit a binding level.
  665.    Pop the level off, and restore the state of the identifier-decl mappings
  666.    that were in effect when this level was entered.
  667.  
  668.    If KEEP == 1, this level had explicit declarations, so
  669.    and create a "block" (a LET_STMT node) for the level
  670.    to record its declarations and subblocks for symbol table output.
  671.  
  672.    If KEEP == 2, this level's subblocks go to the front,
  673.    not the back of the current binding level.  This happens,
  674.    for instance, when code for constructors and destructors
  675.    need to generate code at the end of a function which must
  676.    be moved up to the front of the function.
  677.  
  678.    If FUNCTIONBODY is nonzero, this level is the body of a function,
  679.    so create a block as if KEEP were set and also clear out all
  680.    label names.
  681.  
  682.    If REVERSE is nonzero, reverse the order of decls before putting
  683.    them into the LET_STMT.  */
  684.  
  685. tree
  686. poplevel (keep, reverse, functionbody)
  687.      int keep;
  688.      int reverse;
  689.      int functionbody;
  690. {
  691.   register tree link;
  692.   /* The chain of decls was accumulated in reverse order.
  693.      Put it into forward order, just for cleanliness.  */
  694.   tree decls;
  695.   int tmp = functionbody;
  696.   int implicit_try_block = current_binding_level->parm_flag == 3;
  697.   int real_functionbody = current_binding_level->keep == 2
  698.     ? ((functionbody = 0), tmp) : functionbody;
  699.   tree tags = functionbody >= 0 ? current_binding_level->tags : 0;
  700.   tree subblocks = functionbody >= 0 ? current_binding_level->blocks : 0;
  701.   tree block = 0;
  702.  
  703. #ifdef FIELD_XREF
  704.   FIELD_xref_end_scope(current_binding_level,
  705.                current_binding_level->level_chain,
  706.                current_binding_level->parm_flag,
  707.                current_binding_level->keep,
  708.                current_binding_level->tag_transparent);
  709. #endif
  710.  
  711.   if (current_binding_level->keep == 1)
  712.     keep = 1;
  713.  
  714.   /* This warning is turned off because it causes warnings for
  715.      declarations like `extern struct foo *x'.  */
  716. #if 0
  717.   /* Warn about incomplete structure types in this level.  */
  718.   for (link = tags; link; link = TREE_CHAIN (link))
  719.     if (TYPE_SIZE (TREE_VALUE (link)) == 0)
  720.       {
  721.     tree type = TREE_VALUE (link);
  722.     char *errmsg;
  723.     switch (TREE_CODE (type))
  724.       {
  725.       case RECORD_TYPE:
  726.         errmsg = "`struct %s' incomplete in scope ending here";
  727.         break;
  728.       case UNION_TYPE:
  729.         errmsg = "`union %s' incomplete in scope ending here";
  730.         break;
  731.       case ENUMERAL_TYPE:
  732.         errmsg = "`enum %s' incomplete in scope ending here";
  733.         break;
  734.       }
  735.     if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
  736.       error (errmsg, IDENTIFIER_POINTER (TYPE_NAME (type)));
  737.     else
  738.       /* If this type has a typedef-name, the TYPE_NAME is a TYPE_DECL.  */
  739.       error (errmsg, IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type))));
  740.       }
  741. #endif /* 0 */
  742.  
  743.   /* Get the decls in the order they were written.
  744.      Usually current_binding_level->names is in reverse order.
  745.      But parameter decls were previously put in forward order.  */
  746.  
  747.   if (reverse)
  748.     current_binding_level->names
  749.       = decls = nreverse (current_binding_level->names);
  750.   else
  751.     decls = current_binding_level->names;
  752.  
  753.   /* If there were any declarations or structure tags in that level,
  754.      or if this level is a function body,
  755.      create a LET_STMT to record them for the life of this function.  */
  756.  
  757.   if (keep == 1 || functionbody > 0)
  758.     block = build_let (0, 0, keep ? decls : 0,
  759.                subblocks, 0, keep ? tags : 0);
  760.  
  761.   /* In each subblock, record that this is its superior.  */
  762.  
  763.   if (keep >= 0)
  764.     for (link = subblocks; link; link = TREE_CHAIN (link))
  765.       STMT_SUPERCONTEXT (link) = block;
  766.  
  767.   /* Clear out the meanings of the local variables of this level;
  768.      also record in each decl which block it belongs to.  */
  769.  
  770.   for (link = decls; link; link = TREE_CHAIN (link))
  771.     {
  772.       if (DECL_NAME (link) != 0)
  773.     IDENTIFIER_LOCAL_VALUE (DECL_NAME (link)) = 0;
  774.       DECL_CONTEXT (link) = block;
  775.     }
  776.  
  777.   /* Restore all name-meanings of the outer levels
  778.      that were shadowed by this level.  */
  779.  
  780.   for (link = current_binding_level->shadowed; link; link = TREE_CHAIN (link))
  781.     IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
  782.   for (link = current_binding_level->class_shadowed;
  783.        link;
  784.        link = TREE_CHAIN (link))
  785.     IDENTIFIER_CLASS_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
  786.  
  787.   /* If the level being exited is the top level of a function,
  788.      check over all the labels.  */
  789.  
  790.   if (functionbody)
  791.     {
  792.       /* Clear out the definitions of all label names,
  793.      since their scopes end here.  */
  794.  
  795.       for (link = named_labels; link; link = TREE_CHAIN (link))
  796.     {
  797.       if (DECL_SOURCE_LINE (TREE_VALUE (link)) == 0)
  798.         {
  799.           error ("label `%s' used somewhere above but not defined",
  800.              IDENTIFIER_POINTER (DECL_NAME (TREE_VALUE (link))));
  801.           /* Avoid crashing later.  */
  802.           define_label (input_filename, 1, DECL_NAME (TREE_VALUE (link)));
  803.         }
  804.       else if (warn_unused && !TREE_USED (TREE_VALUE (link)))
  805.         warning_with_decl (TREE_VALUE (link), 
  806.                    "label `%s' defined but not used");
  807.       SET_IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)), 0);
  808.     }
  809.  
  810.       named_labels = 0;
  811.     }
  812.  
  813.   /* Any uses of undefined labels now operate under constraints
  814.      of next binding contour.  */
  815.   {
  816.     struct binding_level *level_chain;
  817.     level_chain = current_binding_level->level_chain;
  818.     if (level_chain)
  819.       {
  820.     tree labels;
  821.     for (labels = named_label_uses; labels; labels = TREE_CHAIN (labels))
  822.       if (TREE_TYPE (labels) == (tree)current_binding_level)
  823.         {
  824.           TREE_TYPE (labels) = (tree)level_chain;
  825.           TREE_PURPOSE (labels) = level_chain->names;
  826.         }
  827.       }
  828.   }
  829.  
  830.   tmp = current_binding_level->keep;
  831.  
  832.   POP_BINDING_LEVEL;
  833.   if (functionbody > 0)
  834.     {
  835.       DECL_INITIAL (current_function_decl) = block;
  836.       /* If this is the top level block of a function,
  837.      the vars are the function's parameters.
  838.      Don't leave them in the LET_STMT because they are
  839.      found in the FUNCTION_DECL instead.  */
  840.       STMT_VARS (block) = 0;
  841.     }
  842.   else if (block)
  843.     current_binding_level->blocks
  844.       = chainon (current_binding_level->blocks, block);
  845.   /* If we did not make a block for the level just exited,
  846.      any blocks made for inner levels
  847.      (since they cannot be recorded as subblocks in that level)
  848.      must be carried forward so they will later become subblocks
  849.      of something else.  */
  850.   else if (subblocks)
  851.     if (keep == 2)
  852.       current_binding_level->blocks = chainon (subblocks, current_binding_level->blocks);
  853.     else
  854.       current_binding_level->blocks
  855.         = chainon (current_binding_level->blocks, subblocks);
  856.  
  857.   /* Take care of compiler's internal binding structures.  */
  858.   if (tmp == 2 && !implicit_try_block)
  859.     {
  860. #if 0
  861.       /* We did not call push_momentary for this
  862.      binding contour, so there is nothing to pop.  */
  863.       pop_momentary ();
  864. #endif
  865.       expand_end_bindings (getdecls (), keep, 1);
  866.       block = poplevel (keep, reverse, real_functionbody);
  867.     }
  868.   if (block)
  869.     TREE_USED (block) = 1;
  870.   return block;
  871. }
  872.  
  873. /* Add BLOCK to the current list of blocks for this binding contour.  */
  874. void
  875. add_block_current_level (block)
  876.      tree block;
  877. {
  878.   current_binding_level->blocks
  879.     = chainon (current_binding_level->blocks, block);
  880. }
  881.  
  882. /* Do a pushlevel for class declarations.  */
  883. void
  884. pushlevel_class ()
  885. {
  886.   pushlevel (0);
  887.   decl_stack = push_decl_level (decl_stack, &decl_obstack);
  888.   class_binding_level = current_binding_level;
  889.   class_binding_level->parm_flag = 2;
  890.   do
  891.     {
  892.       current_binding_level = current_binding_level->level_chain;
  893.     }
  894.   while (current_binding_level->parm_flag == 2);
  895. }
  896.  
  897. /* ...and a poplevel for class declarations.  */
  898. tree
  899. poplevel_class ()
  900. {
  901.   register struct binding_level *level = class_binding_level;
  902.   tree block = 0;
  903.   tree shadowed;
  904.  
  905.   if (level == 0)
  906.     {
  907.       while (current_binding_level && class_binding_level == 0)
  908.     block = poplevel (0, 0, 0);
  909.       if (current_binding_level == 0)
  910.     fatal ("syntax error too serious");
  911.       level = class_binding_level;
  912.     }
  913.   decl_stack = pop_decl_level (decl_stack);
  914.   for (shadowed = level->class_shadowed; shadowed; shadowed = TREE_CHAIN (shadowed))
  915.     IDENTIFIER_CLASS_VALUE (TREE_PURPOSE (shadowed)) = TREE_VALUE (shadowed);
  916.  
  917. #ifdef FIELD_XREF
  918.   FIELD_xref_end_scope(class_binding_level,
  919.                class_binding_level->level_chain,
  920.                class_binding_level->parm_flag,
  921.                class_binding_level->keep,
  922.                class_binding_level->tag_transparent);
  923. #endif
  924.  
  925.   class_binding_level = level->level_chain;
  926.  
  927.   level->level_chain = free_binding_level;
  928.   free_binding_level = level;
  929.   if (class_binding_level->parm_flag != 2)
  930.     class_binding_level = 0;
  931.   return block;
  932. }
  933.  
  934. /* Push a definition of struct, union or enum tag "name".
  935.    "type" should be the type node.
  936.    We assume that the tag "name" is not already defined.
  937.  
  938.    Note that the definition may really be just a forward reference.
  939.    In that case, the TYPE_SIZE will be zero.
  940.  
  941.    C++ gratuitously puts all these tags in the name space. */
  942.  
  943. void
  944. pushtag (name, type)
  945.      tree name, type;
  946. {
  947.   register struct binding_level *b;
  948.  
  949.   if (class_binding_level)
  950.     b = class_binding_level;
  951.   else
  952.     {
  953.       b = current_binding_level;
  954.       while (b->tag_transparent) b = b->level_chain;
  955.     }
  956.  
  957.   if (name)
  958.     {
  959.       /* Record the identifier as the type's name if it has none.  */
  960.  
  961.       if (TYPE_NAME (type) == 0)
  962.         TYPE_NAME (type) = name;
  963.  
  964.       if (b == global_binding_level)
  965.     b->tags = perm_tree_cons (name, type, b->tags);
  966.       else
  967.     b->tags = saveable_tree_cons (name, type, b->tags);
  968.  
  969.       /* Do C++ gratuitous typedefing.  Note that we put the
  970.          TYPE_DECL in the TREE_TYPE of the IDENTIFIER_NODE.  */
  971.       if (TREE_TYPE (name) != TYPE_NAME (type)
  972. #ifndef BREAK_C_TAGS
  973.       /* This *should* only happen in C++ language scope.
  974.          But everybody else seems to think otherwise.  */
  975.       && current_lang_name == lang_name_cplusplus
  976. #endif
  977.       && (TREE_CODE (type) != RECORD_TYPE
  978.           || class_binding_level == 0
  979.           || !CLASSTYPE_DECLARED_EXCEPTION (type)))
  980.         {
  981.           register tree t = build_decl (TYPE_DECL, name, type);
  982.       if (!TREE_NONLOCAL (type))
  983.         t = pushdecl (t);
  984.           TYPE_NAME (type) = t;
  985.           TREE_TYPE (name) = t;
  986.         }
  987.       if (b->parm_flag == 2)
  988.     {
  989.       TREE_NONLOCAL (type) = 1;
  990.       IDENTIFIER_CLASS_VALUE (name) = TYPE_NAME (type);
  991.       CLASSTYPE_TAGS (current_class_type) = b->tags;
  992.     }
  993.     }
  994. }
  995.  
  996. /* Subroutine of duplicate_decls: return truthvalue of whether
  997.    or not types of these decls match.  */
  998. static int
  999. decls_match (newdecl, olddecl)
  1000.      tree newdecl, olddecl;
  1001. {
  1002.   int types_match;
  1003.  
  1004.   if (TREE_CODE (newdecl) == FUNCTION_DECL && TREE_CODE (olddecl) == FUNCTION_DECL)
  1005.     {
  1006.       tree f1 = TREE_TYPE (newdecl);
  1007.       tree f2 = TREE_TYPE (olddecl);
  1008.       tree p1 = TYPE_ARG_TYPES (f1);
  1009.       tree p2 = TYPE_ARG_TYPES (f2);
  1010.  
  1011.       /* When we parse a static member function definition,
  1012.      we put together a FUNCTION_DECL which thinks its type
  1013.      is METHOD_TYPE.  Change that to FUNCTION_TYPE, and
  1014.      proceed.  */
  1015.       if (TREE_CODE (f1) == METHOD_TYPE
  1016.       && DECL_STATIC_FUNCTION_P (olddecl))
  1017.     {
  1018.       tree n1;
  1019.       p1 = TREE_CHAIN (p1);
  1020.       n1 = build_function_type (TREE_TYPE (f1), p1);
  1021.       n1 = build_type_variant (n1, TREE_READONLY (f1), TREE_VOLATILE (f1));
  1022.       n1 = build_exception_variant (TYPE_METHOD_BASETYPE (f1), n1, TYPE_RAISES_EXCEPTIONS (f1));
  1023.       TREE_TYPE (newdecl) = n1;
  1024.       f1 = n1;
  1025.       DECL_STATIC_FUNCTION_P (newdecl) = 1;
  1026.     }
  1027.       /* Here we must take care of the case where new default
  1028.      parameters are specified.  Also, warn if an old
  1029.      declaration becomes ambiguous because default
  1030.      parameters may cause the two to be ambiguous.  */
  1031.       if (TREE_CODE (f1) != TREE_CODE (f2))
  1032.     {
  1033.       if (TREE_CODE (f1) == OFFSET_TYPE)
  1034.         compiler_error_with_decl (newdecl, "`%s' redeclared as member function");
  1035.       else
  1036.         compiler_error_with_decl (newdecl, "`%s' redeclared as non-member function");
  1037.       return 0;
  1038.     }
  1039.  
  1040.       if (comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (f1)),
  1041.              TYPE_MAIN_VARIANT (TREE_TYPE (f2)), 1))
  1042.     {
  1043.       types_match = compparms (p1, p2, 1);
  1044. #ifndef MERGED
  1045.       /* C++: copy friendlist *before* we get smooshed.  */
  1046.       if (DECL_FRIENDLIST (olddecl) && !DECL_FRIENDLIST (newdecl))
  1047.         DECL_FRIENDLIST (newdecl) = DECL_FRIENDLIST (olddecl);
  1048. #endif
  1049.     }
  1050.       else types_match = 0;
  1051.     }
  1052.   else
  1053.     {
  1054.       if (TREE_TYPE (newdecl) == error_mark_node)
  1055.     types_match = TREE_TYPE (olddecl) == error_mark_node;
  1056.       else
  1057.     types_match = comptypes (TREE_TYPE (newdecl), TREE_TYPE (olddecl), 1);
  1058.     }
  1059.  
  1060.   return types_match;
  1061. }
  1062.  
  1063. /* Handle when a new declaration NEWDECL has the same name as an old
  1064.    one OLDDECL in the same binding contour.  Prints an error message
  1065.    if appropriate.
  1066.  
  1067.    If safely possible, alter OLDDECL to look like NEWDECL, and return 1.
  1068.    Otherwise, return 0.  */
  1069.  
  1070. static int
  1071. duplicate_decls (newdecl, olddecl)
  1072.      register tree newdecl, olddecl;
  1073. {
  1074.   extern struct obstack permanent_obstack;
  1075.   int types_match;
  1076.   int new_is_definition;
  1077.  
  1078.   if (TREE_CODE (olddecl) == TREE_LIST
  1079.       && TREE_CODE (newdecl) == FUNCTION_DECL)
  1080.     {
  1081.       /* If a new decl finds a list of old decls, then
  1082.      we assume that the new decl has C linkage, and
  1083.      that the old decls have C++ linkage.  In this case,
  1084.      we must look through the list to see whether
  1085.      there is an ambiguity or not.  */
  1086.       tree olddecls = olddecl;
  1087.  
  1088.       /* If the overload list is empty, just install the decl.  */
  1089.       if (TREE_VALUE (olddecls) == NULL_TREE)
  1090.     {
  1091.       TREE_VALUE (olddecls) = newdecl;
  1092.       return 1;
  1093.     }
  1094.  
  1095.       while (olddecls)
  1096.     {
  1097.       if (decls_match (newdecl, TREE_VALUE (olddecls)))
  1098.         {
  1099.           if (TREE_CODE (newdecl) == VAR_DECL)
  1100.         ;
  1101.           else if (DECL_LANGUAGE (newdecl)
  1102.                != DECL_LANGUAGE (TREE_VALUE (olddecls)))
  1103.         {
  1104.           error_with_decl (newdecl, "declaration of `%s' with different language linkage");
  1105.           error_with_decl (TREE_VALUE (olddecls), "previous declaration here");
  1106.         }
  1107.           types_match = 1;
  1108.           break;
  1109.         }
  1110.       olddecls = TREE_CHAIN (olddecls);
  1111.     }
  1112.       if (olddecls)
  1113.     olddecl = TREE_VALUE (olddecl);
  1114.       else
  1115.     return 1;
  1116.     }
  1117.   else
  1118.     types_match = decls_match (newdecl, olddecl);
  1119.  
  1120.   if (TREE_CODE (TREE_TYPE (newdecl)) == ERROR_MARK
  1121.       || TREE_CODE (TREE_TYPE (olddecl)) == ERROR_MARK)
  1122.     types_match = 0;
  1123.  
  1124.   /* If this decl has linkage, and the old one does too, maybe no error.  */
  1125.   if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
  1126.     {
  1127.       error_with_decl (newdecl, "`%s' redeclared as different kind of symbol");
  1128.       if (TREE_CODE (olddecl) == TREE_LIST)
  1129.     olddecl = TREE_VALUE (olddecl);
  1130.       error_with_decl (olddecl, "previous declaration of `%s'");
  1131.  
  1132.       /* New decl is completely inconsistent with the old one =>
  1133.      tell caller to replace the old one.  */
  1134.  
  1135.       return 0;
  1136.     }
  1137.  
  1138.   if (TREE_CODE (newdecl) == FUNCTION_DECL)
  1139.     {
  1140.       /* Now that functions must hold information normally held
  1141.      by field decls, there is extra work to do so that
  1142.      declaration information does not get destroyed during
  1143.      definition.  */
  1144.       if (DECL_VINDEX (olddecl) && ! DECL_VINDEX (newdecl))
  1145.     DECL_VINDEX (newdecl) = DECL_VINDEX (olddecl);
  1146.       if (DECL_VCONTEXT (olddecl) && ! DECL_VCONTEXT (newdecl))
  1147.     DECL_VCONTEXT (newdecl) = DECL_VCONTEXT (olddecl);
  1148.       if (DECL_FIELD_CONTEXT (olddecl) && ! DECL_FIELD_CONTEXT (newdecl))
  1149.     DECL_FIELD_CONTEXT (newdecl) = DECL_FIELD_CONTEXT (olddecl);
  1150. #ifdef SOS
  1151.       if (DECL_DINDEX (olddecl) && ! DECL_DINDEX (newdecl))
  1152.     DECL_DINDEX (newdecl) = DECL_DINDEX (newdecl);
  1153. #endif
  1154.       if (DECL_PENDING_INLINE_INFO (newdecl) == 0)
  1155.     DECL_PENDING_INLINE_INFO (newdecl) = DECL_PENDING_INLINE_INFO (olddecl);
  1156.     }
  1157.  
  1158.   if (flag_traditional && TREE_CODE (newdecl) == FUNCTION_DECL
  1159.       && IDENTIFIER_IMPLICIT_DECL (DECL_NAME (newdecl)) == olddecl)
  1160.     /* If -traditional, avoid error for redeclaring fcn
  1161.        after implicit decl.  */
  1162.     ;
  1163.   else if (TREE_CODE (olddecl) == FUNCTION_DECL
  1164.        && DECL_FUNCTION_CODE (olddecl) != NOT_BUILT_IN)
  1165.     {
  1166.       if (!types_match)
  1167.     error_with_decl (newdecl, "conflicting types for built-in function `%s'");
  1168.       else if (extra_warnings)
  1169.     warning_with_decl (newdecl, "built-in function `%s' redeclared");
  1170.     }
  1171.   else if (!types_match)
  1172.     {
  1173.       tree oldtype = TREE_TYPE (olddecl);
  1174.       tree newtype = TREE_TYPE (newdecl);
  1175.       int give_error = 0;
  1176.  
  1177.       /* Already complained about this, so don't do so again.  */
  1178.       if (current_class_type == NULL_TREE
  1179.       || IDENTIFIER_ERROR_LOCUS (DECL_NAME (newdecl)) != current_class_type)
  1180.     {
  1181.       give_error = 1;
  1182.       error_with_decl (newdecl, "conflicting types for `%s'");
  1183.     }
  1184.  
  1185.       /* Check for function type mismatch
  1186.      involving an empty arglist vs a nonempty one.  */
  1187.       if (TREE_CODE (olddecl) == FUNCTION_DECL
  1188.       && comptypes (TREE_TYPE (oldtype),
  1189.             TREE_TYPE (newtype), 1)
  1190.       && ((TYPE_ARG_TYPES (oldtype) == 0
  1191.            && DECL_INITIAL (olddecl) == 0)
  1192.           || (TYPE_ARG_TYPES (newtype) == 0
  1193.           && DECL_INITIAL (newdecl) == 0)))
  1194.     {
  1195.       /* Classify the problem further.  */
  1196.       register tree t = TYPE_ARG_TYPES (oldtype);
  1197.       if (t == 0)
  1198.         t = TYPE_ARG_TYPES (newtype);
  1199.       for (; t; t = TREE_CHAIN (t))
  1200.         {
  1201.           register tree type = TREE_VALUE (t);
  1202.  
  1203.           if (TREE_CHAIN (t) == 0 && type != void_type_node)
  1204.         {
  1205.           error ("A parameter list with an ellipsis can't match");
  1206.           error ("an empty parameter name list declaration.");
  1207.           break;
  1208.         }
  1209.  
  1210.           if (type == float_type_node
  1211.           || (TREE_CODE (type) == INTEGER_TYPE
  1212.               && (TYPE_PRECISION (type)
  1213.               < TYPE_PRECISION (integer_type_node))))
  1214.         {
  1215.           error ("An argument type that has a default promotion");
  1216.           error ("can't match an empty parameter name list declaration.");
  1217.           break;
  1218.         }
  1219.         }
  1220.     }
  1221.       if (give_error)
  1222.     error_with_decl (olddecl, "previous declaration of `%s'");
  1223.  
  1224.       /* There is one thing GNU C++ cannot tolerate: a constructor
  1225.      which takes the type of object being constructed.
  1226.      Farm that case out here.  */
  1227.       if (TREE_CODE (newdecl) == FUNCTION_DECL
  1228.       && DECL_CONSTRUCTOR_P (newdecl))
  1229.     {
  1230.       tree tmp = TREE_CHAIN (TYPE_ARG_TYPES (newtype));
  1231.  
  1232.       if (tmp != NULL_TREE
  1233.           && (TYPE_MAIN_VARIANT (TREE_VALUE (tmp))
  1234.           == TYPE_METHOD_BASETYPE (newtype)))
  1235.         {
  1236.           tree parm = TREE_CHAIN (DECL_ARGUMENTS (newdecl));
  1237.           tree argtypes
  1238.         = hash_tree_chain (build_reference_type (TREE_VALUE (tmp)),
  1239.                    TREE_CHAIN (tmp));
  1240.  
  1241.           DECL_ARG_TYPE (parm)
  1242.         = TREE_TYPE (parm)
  1243.           = TYPE_REFERENCE_TO (TREE_VALUE (tmp));
  1244.  
  1245.           TREE_TYPE (newdecl) = newtype
  1246.         = build_cplus_method_type (TYPE_METHOD_BASETYPE (newtype),
  1247.                        TREE_TYPE (newtype), argtypes);
  1248.           error ("constructor cannot take as argument the type being constructed");
  1249.           SET_IDENTIFIER_ERROR_LOCUS (DECL_NAME (newdecl), current_class_type);
  1250.         }
  1251.     }
  1252.     }
  1253.   else
  1254.     {
  1255.       char *errmsg = redeclaration_error_message (newdecl, olddecl);
  1256.       if (errmsg)
  1257.     {
  1258.       error_with_decl (newdecl, errmsg);
  1259.       if (DECL_LANG_SPECIFIC (olddecl)
  1260.           && DECL_COMPILER_GENERATED_P (olddecl))
  1261.         DECL_COMPILER_GENERATED_P (olddecl) = 0;
  1262.       else
  1263.         error_with_decl (olddecl,
  1264.                  "here is the previous declaration of `%s'");
  1265.     }
  1266.       else if (TREE_CODE (olddecl) == FUNCTION_DECL
  1267.            && DECL_INITIAL (olddecl) != 0
  1268.            && TYPE_ARG_TYPES (TREE_TYPE (olddecl)) == 0
  1269.            && TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != 0)
  1270.     {
  1271.       /* Prototype decl follows defn w/o prototype.  */
  1272.       warning_with_decl (newdecl, "prototype for `%s'");
  1273.       warning_with_decl (olddecl,
  1274.                  "follows non-prototype definition here");
  1275.     }
  1276.  
  1277.       /* These bits are logically part of the type.  */
  1278.       if (pedantic
  1279.       && (TREE_READONLY (newdecl) != TREE_READONLY (olddecl)
  1280.           || TREE_THIS_VOLATILE (newdecl) != TREE_THIS_VOLATILE (olddecl)))
  1281.     error_with_decl (newdecl, "type qualifiers for `%s' conflict with previous decl");
  1282.     }
  1283.  
  1284.   /* Deal with C++: must preserve virtual function table size.  */
  1285.   if (TREE_CODE (olddecl) == TYPE_DECL)
  1286.     {
  1287.       if (TYPE_LANG_SPECIFIC (TREE_TYPE (newdecl))
  1288.           && TYPE_LANG_SPECIFIC (TREE_TYPE (olddecl)))
  1289.     {
  1290.       CLASSTYPE_VSIZE (TREE_TYPE (newdecl))
  1291.         = CLASSTYPE_VSIZE (TREE_TYPE (olddecl));
  1292.       CLASSTYPE_FRIEND_CLASSES (TREE_TYPE (newdecl))
  1293.         = CLASSTYPE_FRIEND_CLASSES (TREE_TYPE (olddecl));
  1294.     }
  1295.     }
  1296.  
  1297.   new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
  1298.                && DECL_INITIAL (newdecl) != 0);
  1299.  
  1300.   /* Copy all the DECL_... slots specified in the new decl
  1301.      except for any that we copy here from the old type.  */
  1302.  
  1303.   if (types_match)
  1304.     {
  1305.       /* Automatically handles default parameters.  */
  1306.       tree oldtype = TREE_TYPE (olddecl);
  1307.       /* Merge the data types specified in the two decls.  */
  1308.       tree newtype = commontype (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
  1309.  
  1310.       if (TREE_CODE (newdecl) == VAR_DECL)
  1311.     DECL_EXTERNAL (newdecl) |= DECL_EXTERNAL (olddecl);
  1312.       /* Do this after calling `commontype' so that default
  1313.      parameters don't confuse us.  */
  1314.       else if (TREE_CODE (newdecl) == FUNCTION_DECL
  1315.       && (TYPE_RAISES_EXCEPTIONS (TREE_TYPE (newdecl))
  1316.           != TYPE_RAISES_EXCEPTIONS (TREE_TYPE (olddecl))))
  1317.     {
  1318.       tree ctype = NULL_TREE;
  1319.       if (TREE_CODE (newtype) == METHOD_TYPE)
  1320.         ctype = TYPE_METHOD_BASETYPE (newtype);
  1321.       else if (DECL_STATIC_FUNCTION_P (newdecl))
  1322.         ctype = DECL_STATIC_CONTEXT (newdecl);
  1323.       TREE_TYPE (newdecl) = build_exception_variant (ctype, newtype,
  1324.                              TYPE_RAISES_EXCEPTIONS (TREE_TYPE (newdecl)));
  1325.       TREE_TYPE (olddecl) = build_exception_variant (ctype, newtype,
  1326.                              TYPE_RAISES_EXCEPTIONS (oldtype));
  1327.  
  1328.       if (! compexcepttypes (TREE_TYPE (newdecl), TREE_TYPE (olddecl)))
  1329.         {
  1330.           error_with_decl (newdecl, "declaration of `%s' raises different exceptions...");
  1331.           error_with_decl (olddecl, "...from previous declaration here");
  1332.         }
  1333.     }
  1334.       TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = newtype;
  1335.  
  1336.       /* Lay the type out, unless already done.  */
  1337.       if (oldtype != TREE_TYPE (newdecl))
  1338.     {
  1339.       if (TREE_TYPE (newdecl) != error_mark_node)
  1340.         layout_type (TREE_TYPE (newdecl));
  1341.       if (TREE_CODE (newdecl) != FUNCTION_DECL
  1342.           && TREE_CODE (newdecl) != TYPE_DECL
  1343.           && TREE_CODE (newdecl) != CONST_DECL)
  1344.         layout_decl (newdecl, 0);
  1345.     }
  1346.       else
  1347.     {
  1348.       /* Since the type is OLDDECL's, make OLDDECL's size go with.  */
  1349.       DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
  1350.       DECL_SIZE_UNIT (newdecl) = DECL_SIZE_UNIT (olddecl);
  1351.       if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
  1352.         DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
  1353.     }
  1354.  
  1355.       /* Merge the type qualifiers.  */
  1356.       if (TREE_READONLY (newdecl))
  1357.     TREE_READONLY (olddecl) = 1;
  1358.       if (TREE_THIS_VOLATILE (newdecl))
  1359.     TREE_THIS_VOLATILE (olddecl) = 1;
  1360.  
  1361.       /* Merge the initialization information.  */
  1362.       if (DECL_INITIAL (newdecl) == 0)
  1363.     DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
  1364.       /* Keep the old rtl since we can safely use it.  */
  1365.       DECL_RTL (newdecl) = DECL_RTL (olddecl);
  1366.     }
  1367.   /* If cannot merge, then use the new type and qualifiers,
  1368.      and don't preserve the old rtl.  */
  1369.   else
  1370.     {
  1371.       /* Clean out any memory we had of the old declaration.  */
  1372.       tree oldstatic = value_member (olddecl, static_aggregates);
  1373.       if (oldstatic)
  1374.     TREE_VALUE (oldstatic) = error_mark_node;
  1375.  
  1376.       TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
  1377.       TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
  1378.       TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
  1379.       TREE_VOLATILE (olddecl) = TREE_VOLATILE (newdecl);
  1380.     }
  1381.  
  1382.   /* Merge the storage class information.  */
  1383.   if (TREE_EXTERNAL (newdecl))
  1384.     {
  1385.       TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
  1386.       TREE_EXTERNAL (newdecl) = TREE_EXTERNAL (olddecl);
  1387.  
  1388.       /* For functions, static overrides non-static.  */
  1389.       if (TREE_CODE (newdecl) == FUNCTION_DECL)
  1390.     {
  1391.       TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
  1392.       /* This is since we don't automatically
  1393.          copy the attributes of NEWDECL into OLDDECL.  */
  1394.       TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
  1395.       /* If this clears `static', clear it in the identifier too.  */
  1396.       if (! TREE_PUBLIC (olddecl))
  1397.         TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
  1398.     }
  1399.       else
  1400.     TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
  1401.     }
  1402.   else
  1403.     {
  1404.       TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
  1405.       TREE_EXTERNAL (olddecl) = 0;
  1406.       /* A `const' which was not declared `extern' and is
  1407.      in static storage is invisible.  */
  1408.       if (TREE_CODE (newdecl) == VAR_DECL
  1409.       && TREE_READONLY (newdecl) && TREE_STATIC (newdecl)
  1410.       && ! DECL_EXTERNAL (newdecl))
  1411.     TREE_PUBLIC (newdecl) = 0;
  1412.       TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
  1413.     }
  1414.   /* If either decl says `inline', this fn is inline,
  1415.      unless its definition was passed already.  */
  1416.   TREE_INLINE (olddecl) |= TREE_INLINE (newdecl);
  1417.  
  1418.   if (TREE_CODE (newdecl) == FUNCTION_DECL)
  1419.     {
  1420.       if (new_is_definition)
  1421.     /* If defining a function declared with other language
  1422.        linkage, use the previously declared language linkage.  */
  1423.     DECL_LANGUAGE (newdecl) = DECL_LANGUAGE (olddecl);
  1424.       else
  1425.     {
  1426.       /* If redeclaring a builtin function, and not a definition,
  1427.          it stays built in.  */
  1428.       DECL_SET_FUNCTION_CODE (newdecl, DECL_FUNCTION_CODE (olddecl));
  1429.       DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
  1430.       if (DECL_SAVED_INSNS (newdecl) = DECL_SAVED_INSNS (olddecl))
  1431.         /* Previously saved insns go together with
  1432.            the function's previous definition.  */
  1433.         DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
  1434.       DECL_RESULT_TYPE (newdecl) = DECL_RESULT_TYPE (olddecl);
  1435.       DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
  1436.     }
  1437.     }
  1438.  
  1439.   /* Now preserve various other info from the definition.  */
  1440.   TREE_ADDRESSABLE (newdecl) = TREE_ADDRESSABLE (olddecl);
  1441.   TREE_ASM_WRITTEN (newdecl) = TREE_ASM_WRITTEN (olddecl);
  1442.  
  1443.   /* Don't really know how much of the language-specific
  1444.      values we should copy from old to new.  */
  1445. #if 1
  1446.   if (DECL_LANG_SPECIFIC (olddecl))
  1447.     DECL_IN_AGGR_P (newdecl) = DECL_IN_AGGR_P (olddecl);
  1448. #endif
  1449.  
  1450.   if (TREE_CODE (newdecl) == FUNCTION_DECL)
  1451.     {
  1452.       int function_size;
  1453.       struct lang_decl *ol = DECL_LANG_SPECIFIC (olddecl);
  1454.       struct lang_decl *nl = DECL_LANG_SPECIFIC (newdecl);
  1455.  
  1456. #ifdef MERGED
  1457.       function_size = sizeof (struct tree_decl);
  1458. #else
  1459.       function_size = sizeof (struct tree_function_decl);
  1460. #endif
  1461.  
  1462.       /* Don't lose track of having output OLDDECL as GDB symbol.  */
  1463.       DECL_BLOCK_SYMTAB_ADDRESS (newdecl)
  1464.     = DECL_BLOCK_SYMTAB_ADDRESS (olddecl);
  1465.  
  1466.       bcopy ((char *) newdecl + sizeof (struct tree_common),
  1467.          (char *) olddecl + sizeof (struct tree_common),
  1468.          function_size - sizeof (struct tree_common));
  1469.  
  1470.       if ((char *)newdecl == obstack_next_free (&permanent_obstack)
  1471.       - (function_size + sizeof (struct lang_decl)))
  1472.     {
  1473.       DECL_MAIN_VARIANT (newdecl) = olddecl;
  1474.       DECL_LANG_SPECIFIC (olddecl) = ol;
  1475.       bcopy (nl, ol, sizeof (struct lang_decl));
  1476.  
  1477.       obstack_free (&permanent_obstack, newdecl);
  1478.     }
  1479. #ifdef LANG_DECL_PERMANENT
  1480.       else if (LANG_DECL_PERMANENT (ol))
  1481.     {
  1482.       if (DECL_MAIN_VARIANT (olddecl) == olddecl)
  1483.         {
  1484.           /* Save these lang_decls that would otherwise be lost.  */
  1485.           extern tree free_lang_decl_chain;
  1486.           tree free_lang_decl = (tree) ol;
  1487.           TREE_CHAIN (free_lang_decl) = free_lang_decl_chain;
  1488.           free_lang_decl_chain = free_lang_decl;
  1489.         }
  1490.       else
  1491.         {
  1492.           /* Storage leak.  */
  1493.         }
  1494.     }
  1495. #else
  1496.       /* Storage leak.  */
  1497. #endif
  1498.     }
  1499.   else
  1500.     {
  1501.       bcopy ((char *) newdecl + sizeof (struct tree_common),
  1502.          (char *) olddecl + sizeof (struct tree_common),
  1503.          sizeof (struct tree_decl) - sizeof (struct tree_common)
  1504.          + tree_code_length [(int)TREE_CODE (newdecl)] * sizeof (char *));
  1505.     }
  1506.  
  1507.   return 1;
  1508. }
  1509.  
  1510. /* Record a decl-node X as belonging to the current lexical scope.
  1511.    Check for errors (such as an incompatible declaration for the same
  1512.    name already seen in the same scope).
  1513.  
  1514.    Returns either X or an old decl for the same name.
  1515.    If an old decl is returned, it may have been smashed
  1516.    to agree with what X says.  */
  1517.  
  1518. tree
  1519. pushdecl (x)
  1520.      tree x;
  1521. {
  1522.   register tree t;
  1523.   register tree name = DECL_NAME (x);
  1524.   register struct binding_level *b = current_binding_level;
  1525.  
  1526.   if (name)
  1527.     {
  1528.       char *file;
  1529.       int line;
  1530.  
  1531.       t = lookup_name_current_level (name);
  1532.       if (t != 0 && t == error_mark_node)
  1533.     /* error_mark_node is 0 for a while during initialization!  */
  1534.     {
  1535.       t = 0;
  1536.       error_with_decl (x, "`%s' used prior to declaration");
  1537.     }
  1538.  
  1539.       if (t != 0)
  1540.     {
  1541.       tree cntxt = t;
  1542.       if (TREE_CODE (t) == PARM_DECL)
  1543.         {
  1544.           if (DECL_CONTEXT (t) == NULL_TREE)
  1545.         fatal ("parse errors have confused me too much");
  1546.           cntxt = DECL_CONTEXT (t);
  1547.         }
  1548.       file = DECL_SOURCE_FILE (t);
  1549.       line = DECL_SOURCE_LINE (t);
  1550.     }
  1551.  
  1552.       if (t != 0 && TREE_CODE (t) != TREE_CODE (x))
  1553.     {
  1554.       if (TREE_CODE (t) == TYPE_DECL)
  1555.         {
  1556. #ifdef BREAK_C_TAGS
  1557.           ;
  1558. #else
  1559.           warning ("type declaration of %s shadowed",
  1560.                IDENTIFIER_POINTER (name));
  1561. #endif
  1562.         }
  1563.       else if (TREE_CODE (x) == TYPE_DECL)
  1564.         {
  1565. #ifdef BREAK_C_TAGS
  1566.           ;
  1567. #else
  1568.           warning ("type declaration of %s shadows previous declaration",
  1569.                IDENTIFIER_POINTER (name));
  1570. #endif
  1571.         }
  1572.       else if (duplicate_decls (x, t))
  1573.         return t;
  1574.     }
  1575.       else if (t != 0 && duplicate_decls (x, t))
  1576.     {
  1577.       /* If this decl is `static' and an `extern' was seen previously,
  1578.          that is erroneous.  But don't complain if -traditional,
  1579.          since traditional compilers don't complain.
  1580.  
  1581.          Note that this does not apply to the C++ case of declaring
  1582.          a variable `extern const' and then later `const'.  */
  1583.       if (!flag_traditional && TREE_PUBLIC (name)
  1584.           && ! TREE_PUBLIC (x) && ! TREE_EXTERNAL (x) && ! TREE_INLINE (x))
  1585.         {
  1586.           /* Due to interference in memory reclamation (X may be
  1587.          obstack-deallocated at this point, we must guard against
  1588.          one really special case).  */
  1589.           if (current_function_decl == x)
  1590.         current_function_decl = t;
  1591.  
  1592. #ifdef NeXT
  1593.           /* We used to warn also for explicit extern followed by static,
  1594.          but sometimes you need to do it that way.  */
  1595.           if (IDENTIFIER_IMPLICIT_DECL (name))
  1596.             {
  1597.           warning ("`%s' was declared implicitly `extern' and later `static'",
  1598.                 lang_printable_name (t));
  1599.           warning_with_file_and_line (file, line,
  1600.                           "previous declaration of `%s'",
  1601.                           lang_printable_name (t));
  1602.         }
  1603. #else /* NeXT */
  1604.           if (IDENTIFIER_IMPLICIT_DECL (name))
  1605.         warning ("`%s' was declared implicitly `extern' and later `static'",
  1606.              lang_printable_name (t));
  1607.           else
  1608.         warning ("`%s' was declared `extern' and later `static'",
  1609.              lang_printable_name (t));
  1610.           warning_with_file_and_line (file, line,
  1611.                       "previous declaration of `%s'",
  1612.                       lang_printable_name (t));
  1613. #endif /* NeXT */
  1614.         }
  1615.       return t;
  1616.     }
  1617.  
  1618.       /* If declaring a type as a typedef, and the type has no known
  1619.      typedef name, install this TYPE_DECL as its typedef name.
  1620.  
  1621.      C++: If it had an anonymous aggregate or enum name,
  1622.      give it a `better' one.  */
  1623.       if (TREE_CODE (x) == TYPE_DECL)
  1624.     {
  1625.       tree name = TYPE_NAME (TREE_TYPE (x));
  1626.  
  1627.       if (name == NULL_TREE
  1628.           || (TREE_CODE (name) != TYPE_DECL
  1629. #ifndef BREAK_C_TAGS
  1630.           && current_lang_name == lang_name_cplusplus
  1631. #endif
  1632.           ))
  1633.         {
  1634.           /* If these are different names, make two equivalent
  1635.          definitions.  */
  1636.           TYPE_NAME (TREE_TYPE (x)) = x;
  1637.         }
  1638.       else
  1639.         {
  1640.           if (TREE_CODE (name) == TYPE_DECL)
  1641.         name = DECL_NAME (name);
  1642.           if (ANON_AGGRNAME_P (name))
  1643.         {
  1644.           /* do gratuitous C++ typedefing, and make sure that
  1645.              we access this type either through TREE_TYPE field
  1646.              or via the tags list.  */
  1647.           TYPE_NAME (TREE_TYPE (x)) = x;
  1648.           pushtag (name, TREE_TYPE (x));
  1649.         }
  1650.         }
  1651.     }
  1652.  
  1653.       /* Multiple external decls of the same identifier ought to match.  */
  1654.  
  1655.       if (TREE_EXTERNAL (x) && IDENTIFIER_GLOBAL_VALUE (name) != 0
  1656.       && (TREE_EXTERNAL (IDENTIFIER_GLOBAL_VALUE (name))
  1657.           || TREE_PUBLIC (IDENTIFIER_GLOBAL_VALUE (name))))
  1658.     {
  1659.       if (! comptypes (TREE_TYPE (x),
  1660.                TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (name)), 1))
  1661.         {
  1662.           warning_with_decl (x,
  1663.                  "type mismatch with previous external decl");
  1664.           warning_with_decl (IDENTIFIER_GLOBAL_VALUE (name),
  1665.                  "previous external decl of `%s'");
  1666.         }
  1667.     }
  1668.  
  1669.       /* In PCC-compatibility mode, extern decls of vars with no current decl
  1670.      take effect at top level no matter where they are.  */
  1671.       if (flag_traditional && TREE_EXTERNAL (x)
  1672.       && lookup_name (name) == 0)
  1673.     b = global_binding_level;
  1674.  
  1675.       /* This name is new in its binding level.
  1676.      Install the new declaration and return it.  */
  1677.       if (b == global_binding_level)
  1678.     {
  1679.       /* Install a global value.  */
  1680.  
  1681.       /* Rule for VAR_DECLs, but not for other kinds of _DECLs:
  1682.          A `const' which was not declared `extern' is invisible.  */
  1683.       if (TREE_CODE (x) == VAR_DECL
  1684.           && TREE_READONLY (x) && ! DECL_EXTERNAL (x))
  1685.         TREE_PUBLIC (x) = 0;
  1686.  
  1687.       /* If the first global decl has external linkage,
  1688.          warn if we later see static one.  */
  1689.       if (IDENTIFIER_GLOBAL_VALUE (name) == 0 && TREE_PUBLIC (x))
  1690.         TREE_PUBLIC (name) = 1;
  1691.  
  1692.       IDENTIFIER_GLOBAL_VALUE (name) = x;
  1693.  
  1694.       /* Don't forget if the function was used via an implicit decl.  */
  1695.       if (IDENTIFIER_IMPLICIT_DECL (name)
  1696.           && TREE_USED (IDENTIFIER_IMPLICIT_DECL (name)))
  1697.         TREE_USED (x) = 1;
  1698.  
  1699.       /* Don't forget if its address was taken in that way.  */
  1700.       if (IDENTIFIER_IMPLICIT_DECL (name)
  1701.           && TREE_ADDRESSABLE (IDENTIFIER_IMPLICIT_DECL (name)))
  1702.         TREE_ADDRESSABLE (x) = 1;
  1703.  
  1704.       /* Warn about mismatches against previous implicit decl.  */
  1705.       if (IDENTIFIER_IMPLICIT_DECL (name) != 0
  1706.           /* If this real decl matches the implicit, don't complain.  */
  1707.           && ! (TREE_CODE (x) == FUNCTION_DECL
  1708.             && TREE_TYPE (TREE_TYPE (x)) == integer_type_node))
  1709.         warning ("`%s' was previously implicitly declared to return `int'",
  1710.              lang_printable_name (x));
  1711.  
  1712.       /* If this decl is `static' and an `extern' was seen previously,
  1713.          that is erroneous.  */
  1714.       if (TREE_PUBLIC (name)
  1715.           && ! TREE_PUBLIC (x) && ! TREE_EXTERNAL (x))
  1716.         {
  1717.           if (IDENTIFIER_IMPLICIT_DECL (name))
  1718.         warning ("`%s' was declared implicitly `extern' and later `static'",
  1719.              lang_printable_name (x));
  1720.           else
  1721.         warning ("`%s' was declared `extern' and later `static'",
  1722.              lang_printable_name (x));
  1723.         }
  1724.     }
  1725.       else
  1726.     {
  1727.       /* Here to install a non-global value.  */
  1728.       tree oldlocal = IDENTIFIER_LOCAL_VALUE (name);
  1729.       tree oldglobal = IDENTIFIER_GLOBAL_VALUE (name);
  1730.       IDENTIFIER_LOCAL_VALUE (name) = x;
  1731.  
  1732.       /* If this is an extern function declaration, see if we
  1733.          have a global definition for the function.  */
  1734.       if (oldlocal == 0
  1735.           && oldglobal != 0
  1736.           && TREE_CODE (x) == FUNCTION_DECL
  1737.           && TREE_CODE (oldglobal) == FUNCTION_DECL)
  1738.         {
  1739.           /* We have one.  Their types must agree.  */
  1740.           if (! comptypes (TREE_TYPE (x), TREE_TYPE (oldglobal), 1))
  1741.         warning_with_decl (x, "local declaration of `%s' doesn't match global one");
  1742.           /* If the global one is inline, make the local one inline.  */
  1743.           else if (TREE_INLINE (oldglobal)
  1744.                || DECL_FUNCTION_CODE (oldglobal) != NOT_BUILT_IN
  1745.                || (TYPE_ARG_TYPES (TREE_TYPE (oldglobal)) != 0
  1746.                && TYPE_ARG_TYPES (TREE_TYPE (x)) == 0))
  1747.         IDENTIFIER_LOCAL_VALUE (name) = oldglobal;
  1748.         }
  1749.       /* If we have a local external declaration,
  1750.          and no file-scope declaration has yet been seen,
  1751.          then if we later have a file-scope decl it must not be static.  */
  1752.       if (oldlocal == 0
  1753.           && oldglobal == 0
  1754.           && TREE_EXTERNAL (x)
  1755.           && TREE_PUBLIC (x))
  1756.         {
  1757.           TREE_PUBLIC (name) = 1;
  1758.         }
  1759.  
  1760.       if (TREE_INLINE (x))
  1761.         /* Inline decls shadow nothing.  */;
  1762.  
  1763.       /* Warn if shadowing an argument at the top level of the body.  */
  1764.       else if (oldlocal != 0 && !TREE_EXTERNAL (x)
  1765.           && TREE_CODE (oldlocal) == PARM_DECL
  1766.           && TREE_CODE (x) != PARM_DECL
  1767.           /* The parm level is two levels above the first user-visible
  1768.          level.  One level was created for parm cleanups, the
  1769.          other declared by the user.  */
  1770.           && current_binding_level->level_chain->level_chain->parm_flag == 1)
  1771.         warning ("declaration of `%s' shadows a parameter",
  1772.              IDENTIFIER_POINTER (name));
  1773.  
  1774.       /* Maybe warn if shadowing something else.  */
  1775.       else if (warn_shadow && !TREE_EXTERNAL (x))
  1776.         {
  1777.           char *warnstring = 0;
  1778.  
  1779.           if (oldlocal != 0 && TREE_CODE (oldlocal) == PARM_DECL)
  1780.         warnstring = "declaration of `%s' shadows a parameter";
  1781.           else if (IDENTIFIER_CLASS_VALUE (name) != 0)
  1782.         warnstring = "declaration of `%s' shadows a member of `this'";
  1783.           else if (oldlocal != 0)
  1784.         warnstring = "declaration of `%s' shadows previous local";
  1785.           else if (oldglobal != 0)
  1786.         warnstring = "declaration of `%s' shadows global declaration";
  1787.  
  1788.           if (warnstring)
  1789.         warning (warnstring, IDENTIFIER_POINTER (name));
  1790.         }
  1791.  
  1792.       /* If storing a local value, there may already be one (inherited).
  1793.          If so, record it for restoration when this binding level ends.  */
  1794.       if (oldlocal != 0)
  1795.         b->shadowed = tree_cons (name, oldlocal, b->shadowed);
  1796.     }
  1797.  
  1798.       /* Keep count of variables in this level with incomplete type.  */
  1799.       if (TYPE_SIZE (TREE_TYPE (x)) == 0
  1800.       && (IS_AGGR_TYPE (TREE_TYPE (x))
  1801.           || (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
  1802.           && IS_AGGR_TYPE (TREE_TYPE (TREE_TYPE (x))))))
  1803.     {
  1804.       if (++b->n_incomplete == 0)
  1805.         error ("too many incomplete variables at this point");
  1806.     }
  1807.     }
  1808.  
  1809.   /* Put decls on list in reverse order.
  1810.      We will reverse them later if necessary.  */
  1811.   TREE_CHAIN (x) = b->names;
  1812.   b->names = x;
  1813.  
  1814.   return x;
  1815. }
  1816.  
  1817. /* Like pushdecl, only it places X in GLOBAL_BINDING_LEVEL,
  1818.    if appropriate.  */
  1819. tree
  1820. pushdecl_top_level (x)
  1821.      tree x;
  1822. {
  1823.   register tree t;
  1824.   register struct binding_level *b = current_binding_level;
  1825.  
  1826.   current_binding_level = global_binding_level;
  1827.   t = pushdecl (x);
  1828.   current_binding_level = b;
  1829.   return t;
  1830. }
  1831.  
  1832. /* Make the declaration of X appear in CLASS scope.  */
  1833. tree
  1834. pushdecl_class_level (x)
  1835.      tree x;
  1836. {
  1837.   register tree name = DECL_NAME (x);
  1838.  
  1839.   if (name)
  1840.     {
  1841.       tree oldclass = IDENTIFIER_CLASS_VALUE (name);
  1842.       if (oldclass)
  1843.     class_binding_level->class_shadowed
  1844.       = tree_cons (name, oldclass, class_binding_level->class_shadowed);
  1845.       IDENTIFIER_CLASS_VALUE (name) = x;
  1846.       obstack_ptr_grow (&decl_obstack, x);
  1847.     }      
  1848.   return x;
  1849. }
  1850.  
  1851. /* Tell caller how to interpret a TREE_LIST which contains
  1852.    chains of FUNCTION_DECLS.  */
  1853. int
  1854. overloaded_globals_p (list)
  1855.      tree list;
  1856. {
  1857.   assert (TREE_CODE (list) == TREE_LIST);
  1858.  
  1859.   /* Don't commit caller to seeing them as globals.  */
  1860.   if (TREE_NONLOCAL (list))
  1861.     return -1;
  1862.   /* Do commit caller to seeing them as globals.  */
  1863.   if (TREE_CODE (TREE_PURPOSE (list)) == IDENTIFIER_NODE)
  1864.     return 1;
  1865.   /* Do commit caller to not seeing them as globals.  */
  1866.   return 0;
  1867. }
  1868.  
  1869. /* DECL is a FUNCTION_DECL which may have other definitions already in place.
  1870.    We get around this by making IDENTIFIER_GLOBAL_VALUE (DECL_ORIGINAL_NAME (DECL))
  1871.    point to a list of all the things that want to be referenced by that name.
  1872.    It is then up to the users of that name to decide what to do with that
  1873.    list.  */
  1874. void
  1875. push_overloaded_decl (decl)
  1876.      tree decl;
  1877. {
  1878.   tree orig_name = DECL_ORIGINAL_NAME (decl);
  1879.   tree glob = IDENTIFIER_GLOBAL_VALUE (orig_name);
  1880.  
  1881.   DECL_OVERLOADED (decl) = 1;
  1882.   if (glob && TREE_CODE (glob) != TREE_LIST)
  1883.     {
  1884.       if (DECL_LANGUAGE (decl) == lang_c)
  1885.     {
  1886.       if (TREE_CODE (glob) == FUNCTION_DECL)
  1887.         {
  1888.           if (DECL_LANGUAGE (glob) == lang_c)
  1889.         {
  1890.           error_with_decl (decl, "C-language function `%s' overloaded here");
  1891.           error_with_decl (glob, "Previous C-language version of this function was `%s'");
  1892.         }
  1893.         }
  1894.       else abort ();
  1895.     }
  1896.       if (! flag_traditional
  1897.       && TREE_PERMANENT (glob) == 1
  1898.       && current_binding_level != global_binding_level)
  1899.     overloads_to_forget = tree_cons (orig_name, glob, overloads_to_forget);
  1900.       if (TREE_CODE (glob) == FUNCTION_DECL
  1901.       && DECL_LANGUAGE (glob) != DECL_LANGUAGE (decl)
  1902.       && comptypes (TREE_TYPE (glob), TREE_TYPE (decl), 1))
  1903.     {
  1904.       error_with_decl (decl, "conflicting language contexts for declaration of `%s';");
  1905.       error_with_decl (glob, "conflicts with previous declaration here");
  1906.     }
  1907.       glob = tree_cons (DECL_NAME (glob), glob, NULL_TREE);
  1908.       glob = tree_cons (TREE_PURPOSE (glob), decl, glob);
  1909.       IDENTIFIER_GLOBAL_VALUE (orig_name) = glob;
  1910.       TREE_TYPE (glob) = unknown_type_node;
  1911.       return;
  1912.     }
  1913.   if (glob)
  1914.     {
  1915.       tree tmp, name;
  1916.  
  1917.       if (TREE_VALUE (glob) == NULL_TREE)
  1918.     {
  1919.       TREE_VALUE (glob) = decl;
  1920.       return;
  1921.     }
  1922.       name = DECL_NAME (decl);
  1923.       for (tmp = glob; tmp; tmp = TREE_CHAIN (tmp))
  1924.     {
  1925.       if (TREE_CODE (TREE_VALUE (tmp)) == FUNCTION_DECL
  1926.           && DECL_LANGUAGE (TREE_VALUE (tmp)) != DECL_LANGUAGE (decl)
  1927.           && comptypes (TREE_TYPE (TREE_VALUE (tmp)), TREE_TYPE (decl), 1))
  1928.         {
  1929.           error_with_decl (decl, "conflicting language contexts for declaration of `%s';");
  1930.           error_with_decl (TREE_VALUE (tmp), "conflicts with previous declaration here");
  1931.         }
  1932.       if (DECL_NAME (TREE_VALUE (tmp)) == name)
  1933.         return;
  1934.     }
  1935.     }
  1936.  
  1937.   if (DECL_LANGUAGE (decl) == lang_c)
  1938.     {
  1939.       tree decls = glob;
  1940.       while (decls && DECL_LANGUAGE (TREE_VALUE (decls)) == lang_cplusplus)
  1941.     decls = TREE_CHAIN (decls);
  1942.       if (decls)
  1943.     {
  1944.       error_with_decl (decl, "C-language function `%s' overloaded here");
  1945.       error_with_decl (TREE_VALUE (decls), "Previous C-language version of this function was `%s'");
  1946.     }
  1947.     }
  1948.  
  1949.   if (! flag_traditional
  1950.       && (glob == 0 || TREE_PERMANENT (glob) == 1)
  1951.       && current_binding_level != global_binding_level)
  1952.     overloads_to_forget = tree_cons (orig_name, glob, overloads_to_forget);
  1953.   glob = tree_cons (orig_name, decl, glob);
  1954.   IDENTIFIER_GLOBAL_VALUE (orig_name) = glob;
  1955.   TREE_TYPE (glob) = unknown_type_node;
  1956. }
  1957.  
  1958. /* Generate an implicit declaration for identifier FUNCTIONID
  1959.    as a function of type int ().  Print a warning if appropriate.  */
  1960.  
  1961. tree
  1962. implicitly_declare (functionid)
  1963.      tree functionid;
  1964. {
  1965.   register tree decl;
  1966.   int temp = allocation_temporary_p ();
  1967.  
  1968.   /* Save the decl permanently so we can warn if definition follows.  */
  1969.   if (temp && (flag_traditional || !warn_implicit))
  1970.     end_temporary_allocation ();
  1971.  
  1972.   /* We used to reuse an old implicit decl here,
  1973.      but this loses with inline functions because it can clobber
  1974.      the saved decl chains.  */
  1975. /*  if (IDENTIFIER_IMPLICIT_DECL (functionid) != 0)
  1976.     decl = IDENTIFIER_IMPLICIT_DECL (functionid);
  1977.   else  */
  1978.     decl = build_lang_decl (FUNCTION_DECL, functionid, default_function_type);
  1979.  
  1980.   TREE_EXTERNAL (decl) = 1;
  1981.   TREE_PUBLIC (decl) = 1;
  1982.  
  1983.   /* ANSI standard says implicit declarations are in the innermost block.
  1984.      So we record the decl in the standard fashion.
  1985.      If flag_traditional is set, pushdecl does it top-level.  */
  1986.   pushdecl (decl);
  1987.   rest_of_decl_compilation (decl, 0, 0, 0);
  1988.  
  1989.   if (warn_implicit
  1990.       /* Only one warning per identifier.  */
  1991.       && IDENTIFIER_IMPLICIT_DECL (functionid) == 0)
  1992.     warning ("implicit declaration of function `%s'",
  1993.          IDENTIFIER_POINTER (functionid));
  1994.  
  1995.   SET_IDENTIFIER_IMPLICIT_DECL (functionid, decl);
  1996.  
  1997.   if (temp && (flag_traditional || ! warn_implicit))
  1998.     resume_temporary_allocation ();
  1999.  
  2000.   return decl;
  2001. }
  2002.  
  2003. /* Return zero if the declaration NEWDECL is valid
  2004.    when the declaration OLDDECL (assumed to be for the same name)
  2005.    has already been seen.
  2006.    Otherwise return an error message format string with a %s
  2007.    where the identifier should go.  */
  2008.  
  2009. static char *
  2010. redeclaration_error_message (newdecl, olddecl)
  2011.      tree newdecl, olddecl;
  2012. {
  2013.   if (TREE_CODE (newdecl) == TYPE_DECL)
  2014.     {
  2015.       /* Because C++ can put things into name space for free,
  2016.      constructs like "typedef struct foo { ... } foo"
  2017.      would look like an erroneous redeclaration.  */
  2018.       if (TREE_TYPE (olddecl) == TREE_TYPE (newdecl))
  2019.     return 0;
  2020.       else
  2021.     return "redefinition of `%s'";
  2022.     }
  2023.   else if (TREE_CODE (newdecl) == FUNCTION_DECL)
  2024.     {
  2025.       /* Declarations of functions can insist on internal linkage
  2026.      but they can't be inconsistent with internal linkage,
  2027.      so there can be no error on that account.
  2028.      However defining the same name twice is no good.  */
  2029.       if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0
  2030.       /* However, defining once as extern inline and a second
  2031.          time in another way is ok.  */
  2032.       && !(TREE_INLINE (olddecl) && TREE_EXTERNAL (olddecl)
  2033.            && !(TREE_INLINE (newdecl) && TREE_EXTERNAL (newdecl))))
  2034.     {
  2035.       if (DECL_LANG_SPECIFIC (olddecl)
  2036.           && DECL_COMPILER_GENERATED_P (olddecl))
  2037.         return "`%s' not declared in class";
  2038.       else
  2039.         return "redefinition of `%s'";
  2040.     }
  2041.       return 0;
  2042.     }
  2043.   else if (current_binding_level == global_binding_level)
  2044.     {
  2045.       /* Objects declared at top level:  */
  2046.       /* If at least one is a reference, it's ok.  */
  2047.       if (TREE_EXTERNAL (newdecl) || TREE_EXTERNAL (olddecl))
  2048.     return 0;
  2049.       /* Reject two definitions.  */
  2050.       if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0)
  2051.     return "redefinition of `%s'";
  2052.       /* Now we have two tentative defs, or one tentative and one real def.  */
  2053.       /* Insist that the linkage match.  */
  2054.       if (TREE_PUBLIC (olddecl) != TREE_PUBLIC (newdecl))
  2055.     return "conflicting declarations of `%s'";
  2056.       return 0;
  2057.     }
  2058.   else
  2059.     {
  2060.       /* Objects declared with block scope:  */
  2061.       /* Reject two definitions, and reject a definition
  2062.      together with an external reference.  */
  2063.       if (!(TREE_EXTERNAL (newdecl) && TREE_EXTERNAL (olddecl)))
  2064.     return "redeclaration of `%s'";
  2065.       return 0;
  2066.     }
  2067. }
  2068.  
  2069. /* Get the LABEL_DECL corresponding to identifier ID as a label.
  2070.    Create one if none exists so far for the current function.
  2071.    This function is called for both label definitions and label references.  */
  2072.  
  2073. tree
  2074. lookup_label (id)
  2075.      tree id;
  2076. {
  2077.   register tree decl = IDENTIFIER_LABEL_VALUE (id);
  2078.  
  2079.   if ((decl == 0
  2080.       || DECL_SOURCE_LINE (decl) == 0)
  2081.       && (named_label_uses == 0
  2082.       || TREE_PURPOSE (named_label_uses) != current_binding_level->names
  2083.       || TREE_VALUE (named_label_uses) != decl))
  2084.     {
  2085.       named_label_uses
  2086.     = tree_cons (current_binding_level->names, decl, named_label_uses);
  2087.       TREE_TYPE (named_label_uses) = (tree)current_binding_level;
  2088.     }
  2089.  
  2090.   if (decl != 0)
  2091.     return decl;
  2092.  
  2093.   /* By giving the label type `void *', we can use it as a value.  */
  2094.   decl = build_decl (LABEL_DECL, id, ptr_type_node);
  2095.   DECL_MODE (decl) = VOIDmode;
  2096.   /* Mark that the label's definition has not been seen.  */
  2097.   DECL_SOURCE_LINE (decl) = 0;
  2098.  
  2099.   SET_IDENTIFIER_LABEL_VALUE (id, decl);
  2100.  
  2101.   named_labels = tree_cons (NULL_TREE, decl, named_labels);
  2102.   TREE_VALUE (named_label_uses) = decl;
  2103.  
  2104.   return decl;
  2105. }
  2106.  
  2107. /* Define a label, specifying the location in the source file.
  2108.    Return the LABEL_DECL node for the label, if the definition is valid.
  2109.    Otherwise return 0.  */
  2110.  
  2111. tree
  2112. define_label (filename, line, name)
  2113.      char *filename;
  2114.      int line;
  2115.      tree name;
  2116. {
  2117.   tree decl = lookup_label (name);
  2118.  
  2119.   /* After labels, make any new cleanups go into their
  2120.      own new (temporary) binding contour.  */
  2121.   current_binding_level->more_cleanups_ok = 0;
  2122.  
  2123.   if (DECL_SOURCE_LINE (decl) != 0)
  2124.     {
  2125.       error_with_decl (decl, "duplicate label `%s'");
  2126.       return 0;
  2127.     }
  2128.   else
  2129.     {
  2130.       tree uses, prev;
  2131.  
  2132.       /* Mark label as having been defined.  */
  2133.       DECL_SOURCE_FILE (decl) = filename;
  2134.       DECL_SOURCE_LINE (decl) = line;
  2135.  
  2136.       for (prev = 0, uses = named_label_uses;
  2137.        uses;
  2138.        prev = uses, uses = TREE_CHAIN (uses))
  2139.     if (TREE_VALUE (uses) == decl)
  2140.       {
  2141.         struct binding_level *b = current_binding_level;
  2142.         while (1)
  2143.           {
  2144.         tree new_decls = b->names;
  2145.         tree old_decls = ((tree)b == TREE_TYPE (uses)
  2146.                   ? TREE_PURPOSE (uses) : NULL_TREE);
  2147.         while (new_decls != old_decls)
  2148.           {
  2149.             if (TREE_CODE (new_decls) == VAR_DECL
  2150.             /* Don't complain about crossing initialization
  2151.                of temporaries.  They can't be accessed,
  2152.                and they should be cleaned up
  2153.                by the time we get to the label.  */
  2154.             && ! TEMP_NAME_P (DECL_NAME (new_decls))
  2155.             && ((DECL_INITIAL (new_decls) != NULL_TREE
  2156.                  && DECL_INITIAL (new_decls) != error_mark_node)
  2157.                 || TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (new_decls))))
  2158.               {
  2159.             if (IDENTIFIER_ERROR_LOCUS (decl) == NULL_TREE)
  2160.               error_with_decl (decl, "invalid jump to label `%s'");
  2161.             SET_IDENTIFIER_ERROR_LOCUS (decl, current_function_decl);
  2162.             error_with_decl (new_decls, "crosses initialization of `%s'");
  2163.               }
  2164.             new_decls = TREE_CHAIN (new_decls);
  2165.           }
  2166.         if ((tree)b == TREE_TYPE (uses))
  2167.           break;
  2168.         b = b->level_chain;
  2169.           }
  2170.  
  2171.         if (prev)
  2172.           TREE_CHAIN (prev) = TREE_CHAIN (uses);
  2173.         else
  2174.           named_label_uses = TREE_CHAIN (uses);
  2175.       }
  2176.       return decl;
  2177.     }
  2178. }
  2179.  
  2180. /* Same, but for CASE labels.  */
  2181. void
  2182. define_case_label (decl)
  2183.      tree decl;
  2184. {
  2185.   /* After labels, make any new cleanups go into their
  2186.      own new (temporary) binding contour.  */
  2187.  
  2188.   current_binding_level->more_cleanups_ok = 0;
  2189. }
  2190.  
  2191. /* Return the list of declarations of the current level.
  2192.    Note that this list is in reverse order unless/until
  2193.    you nreverse it; and when you do nreverse it, you must
  2194.    store the result back using `storedecls' or you will lose.  */
  2195.  
  2196. tree
  2197. getdecls ()
  2198. {
  2199.   return current_binding_level->names;
  2200. }
  2201.  
  2202. /* Return the list of type-tags (for structs, etc) of the current level.  */
  2203.  
  2204. tree
  2205. gettags ()
  2206. {
  2207.   return current_binding_level->tags;
  2208. }
  2209.  
  2210. /* Store the list of declarations of the current level.
  2211.    This is done for the parameter declarations of a function being defined,
  2212.    after they are modified in the light of any missing parameters.  */
  2213.  
  2214. static void
  2215. storedecls (decls)
  2216.      tree decls;
  2217. {
  2218.   current_binding_level->names = decls;
  2219. }
  2220.  
  2221. /* Similarly, store the list of tags of the current level.  */
  2222.  
  2223. static void
  2224. storetags (tags)
  2225.      tree tags;
  2226. {
  2227.   current_binding_level->tags = tags;
  2228. }
  2229.  
  2230. /* Given NAME, an IDENTIFIER_NODE,
  2231.    return the structure (or union or enum) definition for that name.
  2232.    Searches binding levels from BINDING_LEVEL up to the global level.
  2233.    If THISLEVEL_ONLY is nonzero, searches only the specified context
  2234.    (but skips any tag-transparent contexts to find one that is
  2235.    meaningful for tags).
  2236.    FORM says which kind of type the caller wants;
  2237.    it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
  2238.    If the wrong kind of type is found, an error is reported.  */
  2239.  
  2240. static tree
  2241. lookup_tag (form, name, binding_level, thislevel_only)
  2242.      enum tree_code form;
  2243.      struct binding_level *binding_level;
  2244.      tree name;
  2245.      int thislevel_only;
  2246. {
  2247.   register struct binding_level *level;
  2248.  
  2249.   for (level = binding_level; level; level = level->level_chain)
  2250.     {
  2251.       register tree tail;
  2252.       for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
  2253.     {
  2254.       if (TREE_PURPOSE (tail) == name)
  2255.         {
  2256.           if (TREE_CODE (TREE_VALUE (tail)) != form)
  2257.         {
  2258.           /* Definition isn't the kind we were looking for.  */
  2259.           error ("`%s' defined as wrong kind of tag",
  2260.              IDENTIFIER_POINTER (name));
  2261.         }
  2262.           return TREE_VALUE (tail);
  2263.         }
  2264.     }
  2265.       if (thislevel_only && ! level->tag_transparent)
  2266.     return NULL_TREE;
  2267.       if (current_class_type && level->level_chain == global_binding_level)
  2268.     {
  2269.       /* Try looking in this class's tags before heading into
  2270.          global binding level.  */
  2271.       tree these_tags = CLASSTYPE_TAGS (current_class_type);
  2272.       while (these_tags)
  2273.         {
  2274.           if (TREE_PURPOSE (these_tags) == name)
  2275.         {
  2276.           if (TREE_CODE (TREE_VALUE (these_tags)) != form)
  2277.             {
  2278.               error ("`%s' defined as wrong kind of tag in class scope",
  2279.                  IDENTIFIER_POINTER (name));
  2280.             }
  2281.           return TREE_VALUE (tail);
  2282.         }
  2283.           these_tags = TREE_CHAIN (these_tags);
  2284.         }
  2285.     }
  2286.     }
  2287.   return NULL_TREE;
  2288. }
  2289.  
  2290. /* Given a type, find the tag that was defined for it and return the tag name.
  2291.    Otherwise return 0.  However, the value can never be 0
  2292.    in the cases in which this is used.
  2293.  
  2294.    C++: If NAME is non-zero, this is the new name to install.  This is
  2295.    done when replacing anonymous tags with real tag names.  */
  2296.  
  2297. static tree
  2298. lookup_tag_reverse (type, name)
  2299.      tree type;
  2300.      tree name;
  2301. {
  2302.   register struct binding_level *level;
  2303.  
  2304.   for (level = current_binding_level; level; level = level->level_chain)
  2305.     {
  2306.       register tree tail;
  2307.       for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
  2308.     {
  2309.       if (TREE_VALUE (tail) == type)
  2310.         {
  2311.           if (name)
  2312.         TREE_PURPOSE (tail) = name;
  2313.           return TREE_PURPOSE (tail);
  2314.         }
  2315.     }
  2316.     }
  2317.   return NULL_TREE;
  2318. }
  2319.  
  2320. /* Given type TYPE which was not declared in C++ language context,
  2321.    attempt to find a name by which it is refered.  */
  2322. tree
  2323. typedecl_for_tag (tag)
  2324.      tree tag;
  2325. {
  2326.   struct binding_level *b = current_binding_level;
  2327.  
  2328.   if (TREE_CODE (TYPE_NAME (tag)) == TYPE_DECL)
  2329.     return TYPE_NAME (tag);
  2330.  
  2331.   while (b)
  2332.     {
  2333.       tree decls = b->names;
  2334.       while (decls)
  2335.     {
  2336.       if (TREE_CODE (decls) == TYPE_DECL && TREE_TYPE (decls) == tag)
  2337.         break;
  2338.       decls = TREE_CHAIN (decls);
  2339.     }
  2340.       if (decls)
  2341.     return decls;
  2342.       b = b->level_chain;
  2343.     }
  2344.   return NULL_TREE;
  2345. }
  2346.  
  2347. /* Look up NAME in the current binding level and its superiors
  2348.    in the namespace of variables, functions and typedefs.
  2349.    Return a ..._DECL node of some kind representing its definition,
  2350.    or return 0 if it is undefined.  */
  2351.  
  2352. tree
  2353. lookup_name (name)
  2354.      tree name;
  2355. {
  2356.   register tree val;
  2357.   if (current_binding_level != global_binding_level
  2358.       && IDENTIFIER_LOCAL_VALUE (name))
  2359.     val = IDENTIFIER_LOCAL_VALUE (name);
  2360.   /* In C++ class fields are between local and global scope,
  2361.      just before the global scope.  */
  2362.   else if (current_class_type)
  2363.     {
  2364.       if (IDENTIFIER_CLASS_VALUE (name))
  2365.     val = IDENTIFIER_CLASS_VALUE (name);
  2366.       else if (TYPE_SIZE (current_class_type) == 0
  2367.            && CLASSTYPE_LOCAL_TYPEDECLS (current_class_type))
  2368.     {
  2369.       /* Try to find values from base classes
  2370.          if we are presently defining a type.
  2371.          We are presently only interested in TYPE_DECLs.  */
  2372.       val = lookup_field (current_class_type, name, 0);
  2373.       if (val == error_mark_node)
  2374.         return val;
  2375.       if (val && TREE_CODE (val) != TYPE_DECL)
  2376.         val = NULL_TREE;
  2377.       else if (val == NULL_TREE)
  2378.         val = IDENTIFIER_GLOBAL_VALUE (name);
  2379.     }
  2380.       else
  2381.     val = IDENTIFIER_GLOBAL_VALUE (name);
  2382.     }
  2383.   else
  2384.     val = IDENTIFIER_GLOBAL_VALUE (name);
  2385.   if (val && TREE_TYPE (val) == error_mark_node)
  2386.     return error_mark_node;
  2387.   return val;
  2388. }
  2389.  
  2390. /* Similar to `lookup_name' but look only at current binding level.  */
  2391.  
  2392. static tree
  2393. lookup_name_current_level (name)
  2394.      tree name;
  2395. {
  2396.   register tree t;
  2397.  
  2398.   if (current_binding_level == global_binding_level)
  2399.     return IDENTIFIER_GLOBAL_VALUE (name);
  2400.  
  2401.   if (IDENTIFIER_LOCAL_VALUE (name) == 0)
  2402.     return 0;
  2403.  
  2404.   for (t = current_binding_level->names; t; t = TREE_CHAIN (t))
  2405.     if (DECL_NAME (t) == name)
  2406.       break;
  2407.  
  2408.   return t;
  2409. }
  2410.  
  2411. static int sigsegv ()
  2412. {
  2413.   error ("Segmentation violation");
  2414.   signal (SIGSEGV, SIG_DFL);
  2415. }
  2416.  
  2417. /* Create the predefined scalar types of C,
  2418.    and some nodes representing standard constants (0, 1, (void *)0).
  2419.    Initialize the global binding level.
  2420.    Make definitions for built-in primitive functions.  */
  2421.  
  2422. union tree_node ERROR_MARK_NODE;
  2423.  
  2424. void
  2425. init_decl_processing ()
  2426. {
  2427.   register tree endlink, int_endlink, double_endlink, ptr_endlink;
  2428.  
  2429.   /* Have to make these distinct before we try using them.  */
  2430.   lang_name_cplusplus = get_identifier ("C++");
  2431.   lang_name_c = get_identifier ("C");
  2432. #ifdef OBJCPLUS
  2433.   lang_name_objc = get_identifier ("Objective-C");
  2434. #endif /* OBJCPLUS */
  2435.  
  2436.   /* Initially, C.  */
  2437.   current_lang_name = lang_name_c;
  2438.  
  2439.   current_function_decl = NULL_TREE;
  2440.   named_labels = NULL_TREE;
  2441.   named_label_uses = NULL_TREE;
  2442.   current_binding_level = NULL_BINDING_LEVEL;
  2443.   free_binding_level = NULL_BINDING_LEVEL;
  2444.  
  2445.   if (write_symbols == GDB_DEBUG)
  2446.     fatal ("GNU C++ does not support GDB symbol info yet, use -g");
  2447.  
  2448.   /* Handle signals.  */
  2449.   signal (SIGSEGV, sigsegv);
  2450.  
  2451.   obstack_init (&decl_obstack);
  2452.  
  2453.   /* Must lay these out before anything else gets laid out.  */
  2454. #if 0
  2455.   error_mark_node = make_node (ERROR_MARK);
  2456. #else
  2457. #undef error_mark_node
  2458.   error_mark_node = &ERROR_MARK_NODE;
  2459. #define error_mark_node (&ERROR_MARK_NODE)
  2460.   TREE_PERMANENT (error_mark_node) = 1;
  2461. #endif
  2462.   TREE_TYPE (error_mark_node) = error_mark_node;
  2463.   error_mark_list = build_tree_list (error_mark_node, error_mark_node);
  2464.   TREE_TYPE (error_mark_list) = error_mark_node;
  2465.  
  2466.   pushlevel (0);    /* make the binding_level structure for global names.  */
  2467.   global_binding_level = current_binding_level;
  2468.  
  2469.   value_identifier = get_identifier ("<value>");
  2470.   this_identifier = get_identifier (THIS_NAME);
  2471.   in_charge_identifier = get_identifier (IN_CHARGE_NAME);
  2472.  
  2473.   /* Define `int' and `char' first so that dbx will output them first.  */
  2474.  
  2475.   integer_type_node = make_signed_type (INT_TYPE_SIZE);
  2476.   IDENTIFIER_GLOBAL_VALUE (ridpointers[(int) RID_INT])
  2477.     = pushdecl (build_decl (TYPE_DECL, ridpointers[(int) RID_INT],
  2478.                 integer_type_node));
  2479.  
  2480.   /* Define `char', which is like either `signed char' or `unsigned char'
  2481.      but not the same as either.  */
  2482.  
  2483.   char_type_node =
  2484.     (flag_signed_char
  2485.      ? make_signed_type (CHAR_TYPE_SIZE)
  2486.      : make_unsigned_type (CHAR_TYPE_SIZE));
  2487.  
  2488.   IDENTIFIER_GLOBAL_VALUE (ridpointers[(int) RID_CHAR])
  2489.     = pushdecl (build_decl (TYPE_DECL, get_identifier ("char"),
  2490.                 char_type_node));
  2491.  
  2492.   long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
  2493.   IDENTIFIER_GLOBAL_VALUE (ridpointers[(int) RID_LONG])
  2494.     = pushdecl (build_decl (TYPE_DECL, get_identifier ("long int"),
  2495.                 long_integer_type_node));
  2496.  
  2497.   unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
  2498.   IDENTIFIER_GLOBAL_VALUE (ridpointers[(int) RID_UNSIGNED])
  2499.     = pushdecl (build_decl (TYPE_DECL, get_identifier ("unsigned int"),
  2500.                 unsigned_type_node));
  2501.  
  2502.   long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
  2503.   pushdecl (build_decl (TYPE_DECL, get_identifier ("long unsigned int"),
  2504.             long_unsigned_type_node));
  2505.  
  2506.   /* `unsigned long' or `unsigned int' is the standard type for sizeof.
  2507.      Traditionally, use a signed type.  */
  2508.   if (INT_TYPE_SIZE != BITS_PER_WORD)
  2509.     sizetype = flag_traditional ? long_integer_type_node : long_unsigned_type_node;
  2510.   else
  2511.     sizetype = flag_traditional ? integer_type_node : unsigned_type_node;
  2512.  
  2513.   TREE_TYPE (TYPE_SIZE (integer_type_node)) = sizetype;
  2514.   TREE_TYPE (TYPE_SIZE (char_type_node)) = sizetype;
  2515.   TREE_TYPE (TYPE_SIZE (unsigned_type_node)) = sizetype;
  2516.   TREE_TYPE (TYPE_SIZE (long_unsigned_type_node)) = sizetype;
  2517.   TREE_TYPE (TYPE_SIZE (long_integer_type_node)) = sizetype;
  2518.  
  2519.   short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
  2520.   IDENTIFIER_GLOBAL_VALUE (ridpointers[(int) RID_SHORT])
  2521.     = pushdecl (build_decl (TYPE_DECL, get_identifier ("short int"),
  2522.                 short_integer_type_node));
  2523.  
  2524.   long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
  2525.   pushdecl (build_decl (TYPE_DECL, get_identifier ("long long int"),
  2526.             long_long_integer_type_node));
  2527.   short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
  2528.   pushdecl (build_decl (TYPE_DECL, get_identifier ("unsigned short int"),
  2529.             short_unsigned_type_node));
  2530.   long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
  2531.   pushdecl (build_decl (TYPE_DECL, get_identifier ("long long unsigned int"),
  2532.             long_long_unsigned_type_node));
  2533.  
  2534.   /* Define both `signed char' and `unsigned char'.  */
  2535.   signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
  2536.   pushdecl (build_decl (TYPE_DECL, get_identifier ("signed char"),
  2537.             signed_char_type_node));
  2538.   unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
  2539.   pushdecl (build_decl (TYPE_DECL, get_identifier ("unsigned char"),
  2540.             unsigned_char_type_node));
  2541.  
  2542.   float_type_node = make_node (REAL_TYPE);
  2543.   TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
  2544.   IDENTIFIER_GLOBAL_VALUE (ridpointers[(int) RID_FLOAT])
  2545.     = pushdecl (build_decl (TYPE_DECL, ridpointers[(int) RID_FLOAT],
  2546.                 float_type_node));
  2547.   layout_type (float_type_node);
  2548.  
  2549.   double_type_node = make_node (REAL_TYPE);
  2550.   TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
  2551.   IDENTIFIER_GLOBAL_VALUE (ridpointers[(int) RID_DOUBLE])
  2552.     = pushdecl (build_decl (TYPE_DECL, ridpointers[(int) RID_DOUBLE],
  2553.                 double_type_node));
  2554.   layout_type (double_type_node);
  2555.  
  2556.   long_double_type_node = make_node (REAL_TYPE);
  2557.   TYPE_PRECISION (long_double_type_node) = DOUBLE_TYPE_SIZE;
  2558.   pushdecl (build_decl (TYPE_DECL, get_identifier ("long double"),
  2559.             long_double_type_node));
  2560.   layout_type (long_double_type_node);
  2561.  
  2562.   integer_zero_node = build_int_2 (0, 0);
  2563.   TREE_TYPE (integer_zero_node) = integer_type_node;
  2564.   integer_one_node = build_int_2 (1, 0);
  2565.   TREE_TYPE (integer_one_node) = integer_type_node;
  2566.   integer_two_node = build_int_2 (2, 0);
  2567.   TREE_TYPE (integer_two_node) = integer_type_node;
  2568.   integer_three_node = build_int_2 (3, 0);
  2569.   TREE_TYPE (integer_three_node) = integer_type_node;
  2570.   empty_init_node = build_nt (CONSTRUCTOR, NULL_TREE, NULL_TREE);
  2571.  
  2572.   size_zero_node = build_int_2 (0, 0);
  2573.   TREE_TYPE (size_zero_node) = sizetype;
  2574.   size_one_node = build_int_2 (1, 0);
  2575.   TREE_TYPE (size_one_node) = sizetype;
  2576.  
  2577.   void_type_node = make_node (VOID_TYPE);
  2578.   IDENTIFIER_GLOBAL_VALUE (ridpointers[(int) RID_VOID])
  2579.     = pushdecl (build_decl (TYPE_DECL,
  2580.                 ridpointers[(int) RID_VOID], void_type_node));
  2581.   layout_type (void_type_node); /* Uses integer_zero_node.  */
  2582.   void_list_node = build_tree_list (NULL_TREE, void_type_node);
  2583.   TREE_PARMLIST (void_list_node) = 1;
  2584.  
  2585.   null_pointer_node = build_int_2 (0, 0);
  2586.   TREE_TYPE (null_pointer_node) = build_pointer_type (void_type_node);
  2587.   layout_type (TREE_TYPE (null_pointer_node));
  2588.  
  2589.   string_type_node = build_pointer_type (char_type_node);
  2590.  
  2591.   /* make a type for arrays of 256 characters.
  2592.      256 is picked randomly because we have a type for integers from 0 to 255.
  2593.      With luck nothing will ever really depend on the length of this
  2594.      array type.  */
  2595.   char_array_type_node
  2596.     = build_array_type (char_type_node, unsigned_char_type_node);
  2597.   /* Likewise for arrays of ints.  */
  2598.   int_array_type_node
  2599.     = build_array_type (integer_type_node, unsigned_char_type_node);
  2600.  
  2601.   default_function_type
  2602.     = build_function_type (integer_type_node, NULL_TREE);
  2603.   build_pointer_type (default_function_type);
  2604.  
  2605.   ptr_type_node = build_pointer_type (void_type_node);
  2606.   endlink = void_list_node;
  2607.   int_endlink = tree_cons (NULL_TREE, integer_type_node, endlink);
  2608.   double_endlink = tree_cons (NULL_TREE, double_type_node, endlink);
  2609.   ptr_endlink = tree_cons (NULL_TREE, ptr_type_node, endlink);
  2610.  
  2611.   double_ftype_double
  2612.     = build_function_type (double_type_node, double_endlink);
  2613.  
  2614.   double_ftype_double_double
  2615.     = build_function_type (double_type_node,
  2616.                tree_cons (NULL_TREE, double_type_node, double_endlink));
  2617.  
  2618.   int_ftype_int
  2619.     = build_function_type (integer_type_node, int_endlink);
  2620.  
  2621.   long_ftype_long
  2622.     = build_function_type (long_integer_type_node,
  2623.                tree_cons (NULL_TREE, long_integer_type_node, endlink));
  2624.  
  2625.   void_ftype_ptr_ptr_int
  2626.     = build_function_type (void_type_node,
  2627.                tree_cons (NULL_TREE, ptr_type_node,
  2628.                       tree_cons (NULL_TREE, ptr_type_node,
  2629.                          int_endlink)));
  2630.  
  2631.   int_ftype_ptr_ptr_int
  2632.     = build_function_type (integer_type_node, TYPE_ARG_TYPES (void_ftype_ptr_ptr_int));
  2633.  
  2634.   void_ftype_ptr_int_int
  2635.     = build_function_type (void_type_node,
  2636.                tree_cons (NULL_TREE, ptr_type_node,
  2637.                       tree_cons (NULL_TREE, integer_type_node,
  2638.                          int_endlink)));
  2639.  
  2640.   ptr_ftype_long
  2641.     = build_function_type (ptr_type_node, TYPE_ARG_TYPES (long_ftype_long));
  2642.  
  2643.   ptr_ftype_ptr_int_int_ptr
  2644.     = build_function_type (ptr_type_node,
  2645.                tree_cons (NULL_TREE, ptr_type_node,
  2646.                       tree_cons (NULL_TREE, integer_type_node,
  2647.                          tree_cons (NULL_TREE, integer_type_node,
  2648.                                 ptr_endlink))));
  2649.  
  2650.   void_ftype_ptr
  2651.     = build_function_type (void_type_node, ptr_endlink);
  2652.  
  2653.   void_ftype_ptr_int_int_ptr_int_int
  2654.     = build_function_type (void_type_node,
  2655.        tree_cons (NULL_TREE, ptr_type_node,
  2656.           tree_cons (NULL_TREE, integer_type_node,
  2657.          tree_cons (NULL_TREE, integer_type_node,
  2658.                 TYPE_ARG_TYPES (void_ftype_ptr_int_int)))));
  2659.  
  2660. #ifdef VTABLE_USES_MASK
  2661.   /* This is primarily for virtual function definition.  We
  2662.      declare an array of `void *', which can later be
  2663.      converted to the appropriate function pointer type.
  2664.      To do pointers to members, we need a mask which can
  2665.      distinguish an index value into a virtual function table
  2666.      from an address.  */
  2667.   vtbl_mask = build_int_2 (~(VINDEX_MAX - 1), -1);
  2668. #endif
  2669.  
  2670.   vtbl_type_node
  2671.     = build_array_type (ptr_type_node, NULL_TREE);
  2672.   layout_type (vtbl_type_node);
  2673.   vtbl_type_node = build_type_variant (vtbl_type_node, 1, 0);
  2674.  
  2675. #ifdef NeXT
  2676.   builtin_function ("__builtin_alloca",
  2677.                     build_function_type (ptr_type_node,
  2678.                                          tree_cons (NULL_TREE,
  2679.                                                     long_unsigned_type_node,
  2680.                                                     endlink)),
  2681.                     BUILT_IN_ALLOCA);
  2682. #else  /* NeXT */
  2683.   builtin_function ("__builtin_alloca",
  2684.                     build_function_type (ptr_type_node, int_endlink),
  2685.                     BUILT_IN_ALLOCA);
  2686. #endif  /* NeXT */
  2687.  
  2688.   builtin_function ("__builtin_abs", int_ftype_int, BUILT_IN_ABS);
  2689.   builtin_function ("__builtin_fabs", double_ftype_double, BUILT_IN_FABS);
  2690.   builtin_function ("__builtin_labs", long_ftype_long, BUILT_IN_LABS);
  2691.   builtin_function ("__builtin_ffs", int_ftype_int, BUILT_IN_FFS);
  2692. #if 0
  2693.   /* Support for these has not been written in either expand_builtin
  2694.      or build_function_call.  */
  2695.   builtin_function ("__builtin_div", default_ftype, BUILT_IN_DIV);
  2696.   builtin_function ("__builtin_ldiv", default_ftype, BUILT_IN_LDIV);
  2697.   builtin_function ("__builtin_ffloor", double_ftype_double, BUILT_IN_FFLOOR);
  2698.   builtin_function ("__builtin_fceil", double_ftype_double, BUILT_IN_FCEIL);
  2699.   builtin_function ("__builtin_fmod", double_ftype_double_double, BUILT_IN_FMOD);
  2700.   builtin_function ("__builtin_frem", double_ftype_double_double, BUILT_IN_FREM);
  2701.   builtin_function ("__builtin_memcpy", void_ftype_ptr_ptr_int, BUILT_IN_MEMCPY);
  2702.   builtin_function ("__builtin_memcmp", int_ftype_ptr_ptr_int, BUILT_IN_MEMCMP);
  2703.   builtin_function ("__builtin_memset", void_ftype_ptr_int_int, BUILT_IN_MEMSET);
  2704.   builtin_function ("__builtin_fsqrt", double_ftype_double, BUILT_IN_FSQRT);
  2705.   builtin_function ("__builtin_getexp", double_ftype_double, BUILT_IN_GETEXP);
  2706.   builtin_function ("__builtin_getman", double_ftype_double, BUILT_IN_GETMAN);
  2707. #endif
  2708.  
  2709.   /* C++ extensions */
  2710.  
  2711.   unknown_type_node = make_node (UNKNOWN_TYPE);
  2712.   pushdecl (build_decl (TYPE_DECL,
  2713.             get_identifier ("unknown type"),
  2714.             unknown_type_node));
  2715.   TYPE_SIZE (unknown_type_node) = TYPE_SIZE (void_type_node);
  2716.   TYPE_SIZE_UNIT (unknown_type_node) = TYPE_SIZE_UNIT (void_type_node);
  2717.   TYPE_ALIGN (unknown_type_node) = 1;
  2718.   TYPE_MODE (unknown_type_node) = TYPE_MODE (void_type_node);
  2719.   /* Indirecting an UNKNOWN_TYPE node yields an UNKNOWN_TYPE node.  */
  2720.   TREE_TYPE (unknown_type_node) = unknown_type_node;
  2721.   /* Looking up TYPE_POINTER_TO and TYPE_REFERENCE_TO yield the same result.  */
  2722.   TYPE_POINTER_TO (unknown_type_node) = unknown_type_node;
  2723.   TYPE_REFERENCE_TO (unknown_type_node) = unknown_type_node;
  2724.  
  2725.   /* Define these now, but use 0 as their DECL_FUNCTION_CODE.  This
  2726.      will install them in the global binding level, but cause them
  2727.      to be expanded normally.  */
  2728. #ifndef NeXT
  2729.   builtin_function ("__main", default_function_type, NOT_BUILT_IN);
  2730.   pushdecl (lookup_name (get_identifier ("__main")));
  2731. #endif /* not NeXT */
  2732.  
  2733.   builtin_function ("__builtin_saveregs", default_function_type,
  2734.             BUILT_IN_SAVEREGS);
  2735.   builtin_function ("__builtin_classify_type", default_function_type,
  2736.             BUILT_IN_CLASSIFY_TYPE);
  2737. #ifdef NeXT
  2738.   builtin_function ("__builtin_next_arg",
  2739.                     build_function_type (ptr_type_node, endlink),
  2740.                     BUILT_IN_NEXT_ARG);
  2741. #endif  /* NeXT */
  2742.  
  2743.   {
  2744.     /* Simplify life by making a "vtable_entry_type".  Give its
  2745.        fields names so that the debugger can use them.  */
  2746.     tree fields[4];
  2747.     int i;
  2748.  
  2749.     vtable_entry_type = make_lang_type (RECORD_TYPE);
  2750.     CLASSTYPE_OFFSET (vtable_entry_type) = integer_zero_node;
  2751.     fields[0] = build_lang_field_decl (FIELD_DECL, get_identifier (VTABLE_DELTA_NAME), short_integer_type_node);
  2752.     fields[1] = build_lang_field_decl (FIELD_DECL, get_identifier (VTABLE_INDEX_NAME), short_integer_type_node);
  2753.     fields[2] = build_lang_field_decl (FIELD_DECL, get_identifier (VTABLE_PFN_NAME), ptr_type_node);
  2754.     TYPE_FIELDS (vtable_entry_type) = fields[0];
  2755.     for (i = 0; i < 2; i++)
  2756.       {
  2757.         DECL_FIELD_CONTEXT (fields[i]) = vtable_entry_type;
  2758.         TREE_CHAIN (fields[i]) = fields[i+1];
  2759.       }
  2760.     DECL_FIELD_CONTEXT (fields[i]) = vtable_entry_type;
  2761.     TYPE_ALIGN (vtable_entry_type) = TYPE_ALIGN (double_type_node);
  2762.     layout_type (vtable_entry_type);
  2763.     CLASSTYPE_VBASE_SIZE (vtable_entry_type) = integer_zero_node;
  2764.     TYPE_NAME (vtable_entry_type) = build_decl (TYPE_DECL,
  2765.                         get_identifier (VTBL_PTR_TYPE),
  2766.                         vtable_entry_type);
  2767.     layout_decl (TYPE_NAME (vtable_entry_type));
  2768.  
  2769.     /* Make this part of an invisible union.  */
  2770.     fields[3] = copy_node (fields[2]);
  2771.     TREE_TYPE (fields[3]) = short_integer_type_node;
  2772.     DECL_NAME (fields[3]) = get_identifier (VTABLE_DELTA2_NAME);
  2773.     DECL_MODE (fields[3]) = TYPE_MODE (short_integer_type_node);
  2774.     DECL_SIZE (fields[3]) = TYPE_SIZE (short_integer_type_node);
  2775.     DECL_SIZE_UNIT (fields[3]) = TYPE_SIZE_UNIT (short_integer_type_node);
  2776.     TREE_UNSIGNED (fields[3]) = 0;
  2777.     TREE_CHAIN (fields[2]) = fields[3];
  2778.  
  2779.     vtable_entry_type = build_type_variant (vtable_entry_type, 1, 0);
  2780.   }
  2781.  
  2782. #ifdef SOS
  2783.   if (flag_all_virtual == 2)
  2784.     {
  2785.       tree fields[5];
  2786.       tree ptr_ftype_default
  2787.         = build_function_type (ptr_type_node, NULL_TREE);
  2788.       int i;
  2789.  
  2790.       builtin_function ("sosFindCode", ptr_ftype_default, NOT_BUILT_IN);
  2791.       builtin_function ("sosLookup", ptr_ftype_default, NOT_BUILT_IN);
  2792.       builtin_function ("sosImport", ptr_ftype_default, NOT_BUILT_IN);
  2793.       builtin_function ("sosDynError", ptr_ftype_default, NOT_BUILT_IN);
  2794.  
  2795.       zlink_type = make_lang_type (RECORD_TYPE);
  2796.       CLASSTYPE_OFFSET (zlink_type) = integer_zero_node;
  2797.       fields[0] = build_lang_field_decl (FIELD_DECL, get_identifier ("n"), string_type_node);
  2798.       fields[1] = build_lang_field_decl (FIELD_DECL, get_identifier ("t"), char_type_node);
  2799.       fields[2] = build_lang_field_decl (FIELD_DECL, get_identifier ("ptr"), TYPE_POINTER_TO (default_function_type));
  2800.  
  2801.       TYPE_FIELDS (zlink_type) = fields[0];
  2802.       for (i = 0; i < 2; i++)
  2803.         {
  2804.       DECL_FIELD_CONTEXT (fields[i]) = zlink_type;
  2805.       TREE_CHAIN (fields[i]) = fields[i+1];
  2806.         }
  2807.       DECL_FIELD_CONTEXT (fields[i]) = zlink_type;
  2808.       TYPE_ALIGN (zlink_type) = 1;
  2809.       layout_type (zlink_type);
  2810.       CLASSTYPE_VBASE_SIZE (zlink_type) = integer_zero_node;
  2811.  
  2812.       zret_type = make_lang_type (RECORD_TYPE);
  2813.       CLASSTYPE_OFFSET (zret_type) = integer_zero_node;
  2814.       fields[0] = build_lang_field_decl (FIELD_DECL, get_identifier ("cn"), string_type_node);
  2815.       fields[1] = build_lang_field_decl (FIELD_DECL, get_identifier ("ptr"), build_pointer_type (TYPE_POINTER_TO (default_function_type)));
  2816.       fields[2] = build_lang_field_decl (FIELD_DECL, get_identifier ("n"), integer_type_node);
  2817.       fields[3] = build_lang_field_decl (FIELD_DECL, get_identifier ("bcl"), string_type_node);
  2818.       fields[4] = build_lang_field_decl (FIELD_DECL, get_identifier ("f"), char_type_node);
  2819.  
  2820.       TYPE_FIELDS (zret_type) = fields[0];
  2821.       for (i = 0; i < 4; i++)
  2822.         {
  2823.       TREE_CHAIN (fields[i]) = fields[i+1];
  2824.       DECL_FIELD_CONTEXT (fields[i]) = zret_type;
  2825.         }
  2826.       DECL_FIELD_CONTEXT (fields[i]) = zret_type;
  2827.       TYPE_ALIGN (zret_type) = 1;
  2828.       layout_type (zret_type);
  2829.       CLASSTYPE_VBASE_SIZE (zret_type) = integer_zero_node;
  2830.     }
  2831. #endif
  2832.  
  2833.   /* Now, C++.  */
  2834.   current_lang_name = lang_name_cplusplus;
  2835.  
  2836.   auto_function ("__builtin_new", ptr_ftype_long, NOT_BUILT_IN);
  2837.   auto_function ("__builtin_vec_new", ptr_ftype_ptr_int_int_ptr, NOT_BUILT_IN);
  2838.   auto_function ("__builtin_delete", void_ftype_ptr, NOT_BUILT_IN);
  2839.   auto_function ("__builtin_vec_delete", void_ftype_ptr_int_int_ptr_int_int, NOT_BUILT_IN);
  2840.  
  2841.   abort_fndecl
  2842.     = define_function ("abort",
  2843.                build_function_type (void_type_node, void_list_node),
  2844.                NOT_BUILT_IN, 0);
  2845.  
  2846.   unhandled_exception_fndecl
  2847.     = define_function ("__unhandled_exception",
  2848.                build_function_type (void_type_node, NULL_TREE),
  2849.                NOT_BUILT_IN, 0);
  2850.  
  2851.   /* Perform other language dependent initializations.  */
  2852.   init_class_processing ();
  2853.   init_init_processing ();
  2854.   init_search_processing ();
  2855.   if (flag_handle_exceptions)
  2856.     {
  2857.       init_exception_processing ();
  2858.       if (flag_handle_exceptions == 2)
  2859.     /* Too much trouble to inline all the trys needed for this.  */
  2860.     flag_this_is_variable = 2;
  2861.     }
  2862.   if (flag_no_inline)
  2863.     flag_inline_functions = 0;
  2864.   if (flag_cadillac)
  2865.     init_cadillac ();
  2866. }
  2867.  
  2868. /* Make a definition for a builtin function named NAME and whose data type
  2869.    is TYPE.  TYPE should be a function type with argument types.
  2870.    FUNCTION_CODE tells later passes how to compile calls to this function.
  2871.    See tree.h for its possible values.  */
  2872.  
  2873. tree
  2874. define_function (name, type, function_code, pfn)
  2875.      char *name;
  2876.      tree type;
  2877.      enum built_in_function function_code;
  2878.      void (*pfn)();
  2879. {
  2880.   tree decl = build_lang_decl (FUNCTION_DECL, get_identifier (name), type);
  2881.   TREE_EXTERNAL (decl) = 1;
  2882.   TREE_PUBLIC (decl) = 1;
  2883.   make_function_rtl (decl);
  2884.   if (pfn) pfn (decl);
  2885.   DECL_SET_FUNCTION_CODE (decl, function_code);
  2886.   return decl;
  2887. }
  2888.  
  2889. /* Called when a declaration is seen that contains no names to declare.
  2890.    If its type is a reference to a structure, union or enum inherited
  2891.    from a containing scope, shadow that tag name for the current scope
  2892.    with a forward reference.
  2893.    If its type defines a new named structure or union
  2894.    or defines an enum, it is valid but we need not do anything here.
  2895.    Otherwise, it is an error.
  2896.  
  2897.    C++: may have to grok the declspecs to learn about static,
  2898.    complain for anonymous unions.  */
  2899.  
  2900. void
  2901. shadow_tag (declspecs)
  2902.      tree declspecs;
  2903. {
  2904.   int found_tag = 0;
  2905.   int warned = 0;
  2906.   register tree link;
  2907.   register enum tree_code code, ok_code = ERROR_MARK;
  2908.   register tree t = NULL_TREE;
  2909.  
  2910.   for (link = declspecs; link; link = TREE_CHAIN (link))
  2911.     {
  2912.       register tree value = TREE_VALUE (link);
  2913.  
  2914.       code = TREE_CODE (value);
  2915.       if (IS_AGGR_TYPE_CODE (code) || code == ENUMERAL_TYPE)
  2916.     /* Used to test also that TYPE_SIZE (value) != 0.
  2917.        That caused warning for `struct foo;' at top level in the file.  */
  2918.     {
  2919.       register tree name = TYPE_NAME (value);
  2920.  
  2921.       if (name == NULL_TREE)
  2922.         name = lookup_tag_reverse (value, NULL_TREE);
  2923.  
  2924.       if (name && TREE_CODE (name) == TYPE_DECL)
  2925.         name = DECL_NAME (name);
  2926.  
  2927.       if (class_binding_level)
  2928.         t = lookup_tag (code, name, class_binding_level, 1);
  2929.       else
  2930.         t = lookup_tag (code, name, current_binding_level, 1);
  2931.  
  2932.       if (t == 0)
  2933.         {
  2934.           int temp = allocation_temporary_p ();
  2935.           if (temp)
  2936.         end_temporary_allocation ();
  2937.           if (IS_AGGR_TYPE_CODE (code))
  2938.         t = make_lang_type (code);
  2939.           else
  2940.         t = make_node (code);
  2941.           pushtag (name, t);
  2942.           if (temp)
  2943.         resume_temporary_allocation ();
  2944.           ok_code = code;
  2945.           break;
  2946.         }
  2947.       else if (name != 0 || code == ENUMERAL_TYPE)
  2948.         ok_code = code;
  2949.  
  2950.       if (ok_code != ERROR_MARK)
  2951.         found_tag++;
  2952.       else
  2953.         {
  2954.           if (!warned)
  2955.         warning ("useless keyword or type name in declaration");
  2956.           warned = 1;
  2957.         }
  2958.     }
  2959.     }
  2960.  
  2961.   /* This is where the variables in an anonymous union are
  2962.      declared.  An anonymous union declaration looks like:
  2963.      union { ... } ;
  2964.      because there is no declarator after the union, the parser
  2965.      sends that declaration here.  */
  2966.   if (ok_code == UNION_TYPE
  2967.       && t != NULL_TREE
  2968.       && ((TREE_CODE (TYPE_NAME (t)) == IDENTIFIER_NODE
  2969.        && ANON_AGGRNAME_P (TYPE_NAME (t)))
  2970.       || (TREE_CODE (TYPE_NAME (t)) == TYPE_DECL
  2971.           && ANON_AGGRNAME_P (DECL_NAME (TYPE_NAME (t)))))
  2972.       && TYPE_FIELDS (t))
  2973.     {
  2974.       tree decl = grokdeclarator (NULL_TREE, declspecs, NORMAL, 0, NULL_TREE);
  2975.       finish_anon_union (decl);
  2976.     }
  2977.   else if (ok_code == RECORD_TYPE
  2978.        && found_tag == 1
  2979.        && TYPE_LANG_SPECIFIC (t)
  2980.        && CLASSTYPE_DECLARED_EXCEPTION (t))
  2981.     {
  2982.       if (TYPE_SIZE (t))
  2983.     error_with_aggr_type (t, "redeclaration of exception `%s'");
  2984.       else
  2985.     {
  2986.       tree ename, decl;
  2987.       int temp = allocation_temporary_p ();
  2988.       int momentary = suspend_momentary ();
  2989.       if (temp)
  2990.         end_temporary_allocation ();
  2991.  
  2992.       pushclass (t, 0);
  2993.       finish_exception (t, NULL_TREE);
  2994.  
  2995.       ename = TYPE_NAME (t);
  2996.       if (TREE_CODE (ename) == TYPE_DECL)
  2997.         ename = DECL_NAME (ename);
  2998.       decl = build_lang_field_decl (VAR_DECL, ename, t);
  2999.       finish_exception_decl (current_class_name, decl);
  3000.       end_exception_decls ();
  3001.  
  3002.       if (temp)
  3003.         resume_temporary_allocation ();
  3004.       if (momentary)
  3005.         resume_momentary ();
  3006.     }
  3007.     }
  3008.   else if (!warned)
  3009.     {
  3010.       if (found_tag > 1)
  3011.     warning ("multiple types in one declaration");
  3012.       if (found_tag == 0)
  3013.     warning ("empty declaration");
  3014.     }
  3015. }
  3016.  
  3017. /* Decode a "typename", such as "int **", returning a ..._TYPE node.  */
  3018.  
  3019. tree
  3020. groktypename (typename)
  3021.      tree typename;
  3022. {
  3023.   if (TREE_CODE (typename) != TREE_LIST)
  3024.     return typename;
  3025.   return grokdeclarator (TREE_VALUE (typename),
  3026.              TREE_PURPOSE (typename),
  3027.              TYPENAME, 0, NULL_TREE);
  3028. }
  3029.  
  3030. #ifdef OBJCPLUS
  3031. /* Return a PARM_DECL node for a given pair of specs and declarator.  */
  3032.  
  3033. tree
  3034. groktypename_in_parm_context (typename)
  3035.      tree typename;
  3036. {
  3037.   if (TREE_CODE (typename) != TREE_LIST)
  3038.     return typename;
  3039.   return grokdeclarator (TREE_VALUE (typename),
  3040.              TREE_PURPOSE (typename),
  3041.              PARM, 0, NULL_TREE);
  3042. }
  3043. #endif /* OBJCPLUS */
  3044.  
  3045. /* Decode a declarator in an ordinary declaration or data definition.
  3046.    This is called as soon as the type information and variable name
  3047.    have been parsed, before parsing the initializer if any.
  3048.    Here we create the ..._DECL node, fill in its type,
  3049.    and put it on the list of decls for the current context.
  3050.    The ..._DECL node is returned as the value.
  3051.  
  3052.    Exception: for arrays where the length is not specified,
  3053.    the type is left null, to be filled in by `finish_decl'.
  3054.  
  3055.    Function definitions do not come here; they go to start_function
  3056.    instead.  However, external and forward declarations of functions
  3057.    do go through here.  Structure field declarations are done by
  3058.    grokfield and not through here.  */
  3059.  
  3060. /* Set this to zero to debug not using the temporary obstack
  3061.    to parse initializers.  */
  3062. int debug_temp_inits = 1;
  3063.  
  3064. tree
  3065. start_decl (declarator, declspecs, initialized, raises)
  3066.      tree declspecs, declarator;
  3067.      int initialized;
  3068.      tree raises;
  3069. {
  3070.   register tree decl = grokdeclarator (declarator, declspecs,
  3071.                        NORMAL, initialized, raises);
  3072.   register tree type, tem;
  3073.   int init_written = initialized;
  3074.  
  3075.   if (decl == NULL_TREE) return decl;
  3076.  
  3077.   type = TREE_TYPE (decl);
  3078.  
  3079.   /* Don't lose if destructors must be executed at file-level.  */
  3080.   if (TREE_STATIC (decl)
  3081.       && TYPE_NEEDS_DESTRUCTOR (type)
  3082.       && TREE_PERMANENT (decl) == 0)
  3083.     {
  3084.       end_temporary_allocation ();
  3085.       decl = copy_node (decl);
  3086.       if (TREE_CODE (type) == ARRAY_TYPE)
  3087.     {
  3088.       tree itype = TYPE_DOMAIN (type);
  3089.       if (itype && ! TREE_PERMANENT (itype))
  3090.         {
  3091.           itype = build_index_type (copy_to_permanent (TYPE_MAX_VALUE (itype)));
  3092.           type = build_cplus_array_type (TREE_TYPE (type), itype);
  3093.           TREE_TYPE (decl) = type;
  3094.         }
  3095.     }
  3096.       resume_temporary_allocation ();
  3097.     }
  3098.  
  3099.   /* Interesting work for this is done in `finish_exception_decl'.  */
  3100.   if (TREE_CODE (type) == RECORD_TYPE
  3101.       && CLASSTYPE_DECLARED_EXCEPTION (type))
  3102.     return decl;
  3103.  
  3104.   if (DECL_CONTEXT (decl))
  3105.     {
  3106.       /* If it was not explicitly declared `extern',
  3107.      revoke any previous claims of TREE_EXTERNAL.  */
  3108.       if (DECL_EXTERNAL (decl) == 0)
  3109.     TREE_EXTERNAL (decl) = 0;
  3110.       if (DECL_LANG_SPECIFIC (decl))
  3111.     DECL_IN_AGGR_P (decl) = 0;
  3112.       pushclass (DECL_CONTEXT (decl), 2);
  3113.     }
  3114.  
  3115.   /* If this type of object needs a cleanup, and control may
  3116.      jump past it, make a new binding level so that it is cleaned
  3117.      up only when it is initialized first.  */
  3118.   if (TYPE_NEEDS_DESTRUCTOR (type)
  3119.       && current_binding_level->more_cleanups_ok == 0)
  3120.     pushlevel_temporary (1);
  3121.  
  3122.   if (initialized)
  3123.     /* Is it valid for this decl to have an initializer at all?
  3124.        If not, set INITIALIZED to zero, which will indirectly
  3125.        tell `finish_decl' to ignore the initializer once it is parsed.  */
  3126.     switch (TREE_CODE (decl))
  3127.       {
  3128.       case TYPE_DECL:
  3129.     /* typedef foo = bar  means give foo the same type as bar.
  3130.        We haven't parsed bar yet, so `finish_decl' will fix that up.
  3131.        Any other case of an initialization in a TYPE_DECL is an error.  */
  3132.     if (pedantic || list_length (declspecs) > 1)
  3133.       {
  3134.         error ("typedef `%s' is initialized",
  3135.            IDENTIFIER_POINTER (DECL_NAME (decl)));
  3136.         initialized = 0;
  3137.       }
  3138.     break;
  3139.  
  3140.       case FUNCTION_DECL:
  3141.     error ("function `%s' is initialized like a variable",
  3142.            IDENTIFIER_POINTER (DECL_NAME (decl)));
  3143.     initialized = 0;
  3144.     break;
  3145.  
  3146.       default:
  3147.     /* Don't allow initializations for incomplete types
  3148.        except for arrays which might be completed by the initialization.  */
  3149.     if (TYPE_SIZE (type) != 0)
  3150.       ;                     /* A complete type is ok.  */
  3151.     else if (TREE_CODE (type) != ARRAY_TYPE)
  3152.       {
  3153.         error ("variable `%s' has initializer but incomplete type",
  3154.            IDENTIFIER_POINTER (DECL_NAME (decl)));
  3155.         initialized = 0;
  3156.       }
  3157.     else if (TYPE_SIZE (TREE_TYPE (type)) == 0)
  3158.       {
  3159.         error ("elements of array `%s' have incomplete type",
  3160.            IDENTIFIER_POINTER (DECL_NAME (decl)));
  3161.         initialized = 0;
  3162.       }
  3163.       }
  3164.  
  3165.   if (!initialized && TREE_CODE (decl) != TYPE_DECL
  3166.       && IS_AGGR_TYPE (type) && ! TREE_EXTERNAL (decl))
  3167.     {
  3168.       if (TYPE_SIZE (type) == 0)
  3169.     {
  3170.       error ("aggregate `%s' has incomplete type and cannot be initialized",
  3171.          IDENTIFIER_POINTER (DECL_NAME (decl)));
  3172.       /* Change the type so that assemble_variable will give
  3173.          DECL an rtl we can live with: (mem (const_int 0)).  */
  3174.       TREE_TYPE (decl) = error_mark_node;
  3175.       type = error_mark_node;
  3176.     }
  3177.       else
  3178.     {
  3179.       /* If any base type in the hierarchy of TYPE needs a constructor,
  3180.          then we set initialized to 1.  This way any nodes which are
  3181.          created for the purposes of initializing this aggregate
  3182.          will live as long as it does.  This is necessary for global
  3183.          aggregates which do not have their initializers processed until
  3184.          the end of the file.  */
  3185.       initialized = TYPE_NEEDS_CONSTRUCTING (type);
  3186.     }
  3187.     }
  3188.  
  3189.   if (initialized)
  3190.     {
  3191.       if (current_binding_level != global_binding_level
  3192.       && TREE_EXTERNAL (decl))
  3193.     warning ("declaration of `%s' has `extern' and is initialized",
  3194.          IDENTIFIER_POINTER (DECL_NAME (decl)));
  3195.       TREE_EXTERNAL (decl) = 0;
  3196.       if (current_binding_level == global_binding_level)
  3197.     TREE_STATIC (decl) = 1;
  3198.  
  3199.       /* Tell `pushdecl' this is an initialized decl
  3200.      even though we don't yet have the initializer expression.
  3201.      Also tell `finish_decl' it may store the real initializer.  */
  3202.       DECL_INITIAL (decl) = error_mark_node;
  3203.     }
  3204.  
  3205.   /* Add this decl to the current binding level, but not if it
  3206.      comes from another scope, e.g. a static member variable.
  3207.      TEM may equal DECL or it may be a previous decl of the same name.  */
  3208.   if ((TREE_CODE (decl) != PARM_DECL && DECL_CONTEXT (decl) != NULL_TREE)
  3209.       || TREE_CODE (type) == LANG_TYPE)
  3210.     tem = decl;
  3211.   else
  3212.     {
  3213.       tem = pushdecl (decl);
  3214.       if (TREE_CODE (tem) == TREE_LIST)
  3215.     {
  3216.       tree tem2 = value_member (decl, tem);
  3217.       if (tem2 != NULL_TREE)
  3218.         tem = TREE_VALUE (tem2);
  3219.       else
  3220.         {
  3221.           while (tem && ! decls_match (decl, TREE_VALUE (tem)))
  3222.         tem = TREE_CHAIN (tem);
  3223.           if (tem == NULL_TREE)
  3224.         tem = decl;
  3225.           else
  3226.         tem = TREE_VALUE (tem);
  3227.         }
  3228.     }
  3229.     }
  3230.  
  3231. #if 0
  3232.   /* We don't do this yet for GNU C++.  */
  3233.   /* For a local variable, define the RTL now.  */
  3234.   if (current_binding_level != global_binding_level
  3235.       /* But not if this is a duplicate decl
  3236.      and we preserved the rtl from the previous one
  3237.      (which may or may not happen).  */
  3238.       && DECL_RTL (tem) == 0)
  3239.     {
  3240.       if (TYPE_SIZE (TREE_TYPE (tem)) != 0)
  3241.     expand_decl (tem);
  3242.       else if (TREE_CODE (TREE_TYPE (tem)) == ARRAY_TYPE
  3243.            && DECL_INITIAL (tem) != 0)
  3244.     expand_decl (tem);
  3245.     }
  3246. #endif
  3247.  
  3248.     if (TREE_CODE (decl) == FUNCTION_DECL && DECL_OVERLOADED (decl))
  3249.       /* @@ Also done in start_function.  */
  3250.       push_overloaded_decl (tem);
  3251.  
  3252.   if (init_written
  3253.       && ! (TREE_CODE (tem) == PARM_DECL
  3254.         || (TREE_READONLY (tem)
  3255.         && (TREE_CODE (tem) == VAR_DECL
  3256.             || TREE_CODE (tem) == FIELD_DECL))))
  3257.     {
  3258.       /* When parsing and digesting the initializer,
  3259.      use temporary storage.  Do this even if we will ignore the value.  */
  3260.       if (current_binding_level == global_binding_level && debug_temp_inits)
  3261.     {
  3262.       if (TYPE_NEEDS_CONSTRUCTING (type))
  3263.         /* In this case, the initializer must lay down in permanent
  3264.            storage, since it will be saved until `finish_file' is run.   */
  3265.         ;
  3266.       else
  3267.         temporary_allocation ();
  3268.     }
  3269.     }
  3270.  
  3271.   if (flag_cadillac)
  3272.     cadillac_start_decl (tem);
  3273.  
  3274.   return tem;
  3275. }
  3276.  
  3277. /* Handle initialization of references.
  3278.    These three arguments from from `finish_decl', and have the
  3279.    same meaning here that they do there.  */
  3280. static void
  3281. grok_reference_init (decl, type, init, cleanupp)
  3282.      tree decl, type, init;
  3283.      tree *cleanupp;
  3284. {
  3285.   char *errstr = 0;
  3286.   int is_reference;
  3287.   tree tmp;
  3288.   tree this_ptr_type, actual_init;
  3289.  
  3290.   if (init == NULL_TREE)
  3291.     {
  3292.       if (DECL_LANG_SPECIFIC (decl) == 0 || DECL_IN_AGGR_P (decl) == 0)
  3293.     {
  3294.       error ("variable declared as reference not initialized");
  3295.       if (TREE_CODE (decl) == VAR_DECL)
  3296.         SET_DECL_REFERENCE_SLOT (decl, error_mark_node);
  3297.     }
  3298.       return;
  3299.     }
  3300.  
  3301.   if (TREE_CODE (init) == TREE_LIST)
  3302.     init = build_compound_expr (init);
  3303.   is_reference = TREE_CODE (TREE_TYPE (init)) == REFERENCE_TYPE;
  3304.   tmp = is_reference ? convert_from_reference (init) : init;
  3305.  
  3306.   if (is_reference)
  3307.     {
  3308.       if (! comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (type)),
  3309.                TYPE_MAIN_VARIANT (TREE_TYPE (tmp)), 0))
  3310.     errstr = "initialization of `%s' from dissimilar reference type";
  3311.       else if (TREE_READONLY (TREE_TYPE (type))
  3312.            >= TREE_READONLY (TREE_TYPE (TREE_TYPE (init))))
  3313.     {
  3314.       is_reference = 0;
  3315.       init = tmp;
  3316.     }
  3317.     }
  3318.   else
  3319.     {
  3320.       if (TREE_CODE (TREE_TYPE (type)) != ARRAY_TYPE
  3321.       && TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE)
  3322.     {
  3323.       /* Note: default conversion is only called in very
  3324.          special cases.  */
  3325.       init = default_conversion (init);
  3326.     }
  3327. #ifdef NeXT    /* Bug fix from 1.96 */
  3328.  
  3329. #define IS_AGGR_TYPE_2(TYPE1,TYPE2) \
  3330.   (TREE_CODE (TYPE1) == TREE_CODE (TYPE2)       \
  3331.    && IS_AGGR_TYPE (TYPE1)&IS_AGGR_TYPE (TYPE2))
  3332.  
  3333.       if (IS_AGGR_TYPE_2 (TREE_TYPE (type), TREE_TYPE (init))
  3334.       && comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (type)),
  3335.             TYPE_MAIN_VARIANT (TREE_TYPE (init)), 0))
  3336.     {
  3337.       /* Nothing happens.  */
  3338.     }
  3339.       else
  3340. #endif /* NeXT */
  3341.       if (TREE_CODE (TREE_TYPE (type)) == TREE_CODE (TREE_TYPE (init)))
  3342.     {
  3343.       init = convert (TREE_TYPE (type), init);
  3344.     }
  3345.       else if (init != error_mark_node
  3346.            && ! comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (type)),
  3347.                    TYPE_MAIN_VARIANT (TREE_TYPE (init)), 0))
  3348.     errstr = "invalid type conversion for reference";
  3349.     }
  3350.  
  3351.   if (errstr)
  3352.     {
  3353.       /* Things did not go smoothly; look for type conversion.  */
  3354.       if (IS_AGGR_TYPE (TREE_TYPE (tmp)))
  3355.     {
  3356.       tmp = build_type_conversion (CONVERT_EXPR, type, init, 0);
  3357.       if (tmp != NULL_TREE)
  3358.         {
  3359.           init = tmp;
  3360.           if (tmp == error_mark_node)
  3361.         errstr = "ambiguous pointer conversion";
  3362.           else
  3363.         errstr = 0;
  3364.           is_reference = 1;
  3365.         }
  3366.       else
  3367.         {
  3368.           tmp = build_type_conversion (CONVERT_EXPR, TREE_TYPE (type), init, 0);
  3369.           if (tmp != NULL_TREE)
  3370.         {
  3371.           init = tmp;
  3372.           if (tmp == error_mark_node)
  3373.             errstr = "ambiguous pointer conversion";
  3374.           else
  3375.             errstr = 0;
  3376.           is_reference = 0;
  3377.         }
  3378.         }
  3379.     }
  3380.     }
  3381.  
  3382.   if (errstr)
  3383.     {
  3384.       error_with_decl (decl, errstr);
  3385.       if (TREE_CODE (decl) == VAR_DECL)
  3386.     SET_DECL_REFERENCE_SLOT (decl, error_mark_node);
  3387.       return;
  3388.     }
  3389.  
  3390.   /* In the case of initialization, it is permissable
  3391.      to assign one reference to another.  */
  3392.   this_ptr_type = build_pointer_type (TREE_TYPE (type));
  3393.  
  3394.   if (is_reference)
  3395.     {
  3396.       if (TREE_VOLATILE (init))
  3397.     DECL_INITIAL (decl) = save_expr (init);
  3398.       else
  3399.     DECL_INITIAL (decl) = init;
  3400.     }
  3401.   else if (lvalue_p (init))
  3402.     {
  3403.       DECL_INITIAL (decl) = convert_pointer_to (TREE_TYPE (this_ptr_type), build_unary_op (ADDR_EXPR, init, 0));
  3404.       DECL_INITIAL (decl) = save_expr (DECL_INITIAL (decl));
  3405.       if (DECL_INITIAL (decl) == current_class_decl)
  3406.     DECL_INITIAL (decl) = copy_node (current_class_decl);
  3407.       TREE_TYPE (DECL_INITIAL (decl)) = type;
  3408.     }
  3409.   else if ((actual_init = unary_complex_lvalue (ADDR_EXPR, init)))
  3410.     {
  3411.       /* The initializer for this decl goes into its
  3412.      DECL_REFERENCE_SLOT.  Make sure that we can handle
  3413.      multiple evaluations without ill effect.  */
  3414.       if (TREE_CODE (actual_init) == ADDR_EXPR
  3415.       && TREE_CODE (TREE_OPERAND (actual_init, 0)) == NEW_EXPR)
  3416.     actual_init = save_expr (actual_init);
  3417.       DECL_INITIAL (decl) = convert_pointer_to (TREE_TYPE (this_ptr_type), actual_init);
  3418.       DECL_INITIAL (decl) = save_expr (DECL_INITIAL (decl));
  3419.       TREE_TYPE (DECL_INITIAL (decl)) = type;
  3420.     }
  3421.   else if (TREE_READONLY (TREE_TYPE (type)))
  3422.     /* Section 8.4.3 allows us to make a temporary for
  3423.        the initialization of const&.  */
  3424.     {
  3425.       tree target_type = TREE_TYPE (type);
  3426.       tree tmp_addr;
  3427.       tmp = get_temp_name (target_type,
  3428.                current_binding_level == global_binding_level);
  3429.       tmp_addr = build_unary_op (ADDR_EXPR, tmp, 0);
  3430.       TREE_TYPE (tmp_addr) = build_pointer_type (target_type);
  3431.       DECL_INITIAL (decl) = convert_pointer_to (TREE_TYPE (this_ptr_type), tmp_addr);
  3432.       TREE_TYPE (DECL_INITIAL (decl)) = type;
  3433.       if (TYPE_NEEDS_CONSTRUCTING (target_type))
  3434.     {
  3435.       if (current_binding_level == global_binding_level)
  3436.         {
  3437.           /* lay this variable out now.  Otherwise `output_addressed_constants'
  3438.          gets confused by its initializer.  */
  3439.           make_decl_rtl (tmp, 0, 1);
  3440.           static_aggregates = perm_tree_cons (init, tmp, static_aggregates);
  3441.         }
  3442.       else
  3443.         {
  3444.           init = build_method_call (tmp, DECL_NAME (TYPE_NAME (target_type)), build_tree_list (NULL_TREE, init), NULL_TREE, LOOKUP_NORMAL);
  3445.           DECL_INITIAL (decl) = build (COMPOUND_EXPR, type, init, DECL_INITIAL (decl));
  3446.           *cleanupp = maybe_build_cleanup (tmp);
  3447.         }
  3448.     }
  3449.       else
  3450.     {
  3451.       DECL_INITIAL (tmp) = init;
  3452.       TREE_STATIC (tmp) = current_binding_level == global_binding_level;
  3453.       finish_decl (tmp, init, 0);
  3454.     }
  3455.     }
  3456.   else
  3457.     {
  3458.       error_with_decl (decl, "type mismatch in initialization of `%s' (use `const')");
  3459.       DECL_INITIAL (decl) = error_mark_node;
  3460.     }
  3461.  
  3462.   /* ?? Can this be optimized in some cases to
  3463.      hand back the DECL_INITIAL slot??  */
  3464.   if (TYPE_SIZE (TREE_TYPE (type)))
  3465.     SET_DECL_REFERENCE_SLOT (decl, convert_from_reference (decl));
  3466.  
  3467.   if (TREE_STATIC (decl) && ! TREE_LITERAL (DECL_INITIAL (decl)))
  3468.     {
  3469.       expand_static_init (decl, DECL_INITIAL (decl));
  3470.       DECL_INITIAL (decl) = 0;
  3471.     }
  3472. }
  3473.  
  3474. /* Finish processing of a declaration;
  3475.    install its line number and initial value.
  3476.    If the length of an array type is not known before,
  3477.    it must be determined now, from the initial value, or it is an error.
  3478.  
  3479.    For C++, `finish_decl' must be fairly evasive:  it must keep initializers
  3480.    for aggregates that have constructors alive on the permanent obstack,
  3481.    so that the global initializing functions can be written at the end.
  3482.  
  3483.    INIT0 holds the value of an initializer that should be allowed to escape
  3484.    the normal rules.
  3485.  
  3486.    For functions that take defualt parameters, DECL points to its
  3487.    "maximal" instantiation.  finish_decl must then also declared its
  3488.    subsequently lower and lower forms of instantiation, checking for
  3489.    ambiguity as it goes.  This can be sped up later.  */
  3490.  
  3491. void
  3492. finish_decl (decl, init, asmspec_tree)
  3493.      tree decl, init;
  3494.      tree asmspec_tree;
  3495. {
  3496.   register tree type;
  3497.   tree cleanup = NULL_TREE, ttype;
  3498.   int was_incomplete;
  3499.   int temporary = allocation_temporary_p ();
  3500.   char *asmspec = 0;
  3501.   int was_readonly = 0;
  3502.  
  3503.   /* If this is 0, then we did not change obstacks.  */
  3504.   if (! decl)
  3505.     {
  3506.       if (init)
  3507.     error ("assignment (not initialization) in declaration");
  3508.       return;
  3509.     }
  3510.  
  3511.   if (asmspec_tree)
  3512.     {
  3513.       asmspec = TREE_STRING_POINTER (asmspec_tree);
  3514.       /* Zero out old RTL, since we will rewrite it.  */
  3515.       DECL_RTL (decl) = 0;
  3516.     }
  3517.  
  3518.   /* If the type of the thing we are declaring either has
  3519.      a constructor, or has a virtual function table pointer,
  3520.      AND its initialization was accepted by `start_decl',
  3521.      then we stayed on the permanent obstack through the
  3522.      declaration, otherwise, changed obstacks as GCC would.  */
  3523.  
  3524.   type = TREE_TYPE (decl);
  3525.  
  3526.   was_incomplete = (DECL_SIZE (decl) == 0);
  3527.  
  3528.   /* Take care of TYPE_DECLs up front.  */
  3529.   if (TREE_CODE (decl) == TYPE_DECL)
  3530.     {
  3531.       if (init && DECL_INITIAL (decl))
  3532.     {
  3533.       /* typedef foo = bar; store the type of bar as the type of foo.  */
  3534.       TREE_TYPE (decl) = type = TREE_TYPE (init);
  3535.       DECL_INITIAL (decl) = init = 0;
  3536.     }
  3537.       if (IS_AGGR_TYPE (type))
  3538.     {
  3539. #ifndef BREAK_C_TAGS
  3540.       if (current_lang_name == lang_name_cplusplus)
  3541. #endif
  3542.         {
  3543.           if (TREE_TYPE (DECL_NAME (decl)) && TREE_TYPE (decl) != type)
  3544.         warning ("shadowing previous type declaration of `%s'",
  3545.              IDENTIFIER_POINTER (DECL_NAME (decl)));
  3546.           TREE_TYPE (DECL_NAME (decl)) = decl;
  3547.         }
  3548.       CLASSTYPE_GOT_SEMICOLON (type) = 1;
  3549.     }
  3550.  
  3551. #ifdef FIELD_XREF
  3552.       FIELD_xref_decl(current_function_decl,decl);
  3553. #endif
  3554.  
  3555.       rest_of_decl_compilation (decl, 0,
  3556.                 current_binding_level == global_binding_level, 0);
  3557.       goto finish_end;
  3558.     }
  3559.   if (IS_AGGR_TYPE (type) && CLASSTYPE_DECLARED_EXCEPTION (type))
  3560.     {
  3561.       finish_exception_decl (NULL_TREE, decl);
  3562.       CLASSTYPE_GOT_SEMICOLON (type) = 1;
  3563.       goto finish_end;
  3564.     }
  3565.   if (TREE_CODE (decl) != FUNCTION_DECL)
  3566.     {
  3567.       ttype = target_type (type);
  3568.       if (TYPE_NAME (ttype)
  3569.       && TREE_CODE (TYPE_NAME (ttype)) == TYPE_DECL
  3570.       && ANON_AGGRNAME_P (DECL_NAME (TYPE_NAME (ttype))))
  3571.     {
  3572.       tree old_id = DECL_NAME (TYPE_NAME (ttype));
  3573.       char *newname = (char *)alloca (IDENTIFIER_LENGTH (old_id) + 2);
  3574.       newname[0] = '_';
  3575.       bcopy (IDENTIFIER_POINTER (old_id), newname + 1,
  3576.          IDENTIFIER_LENGTH (old_id) + 1);
  3577.       old_id = get_identifier (newname);
  3578.       lookup_tag_reverse (ttype, old_id);
  3579.       DECL_NAME (TYPE_NAME (ttype)) = old_id;
  3580.     }
  3581.     }
  3582.  
  3583.   if (! TREE_EXTERNAL (decl) && TREE_READONLY (decl)
  3584.       && TYPE_NEEDS_CONSTRUCTING (type))
  3585.     {
  3586.  
  3587.       /* Currently, GNU C++ puts constants in text space, making them
  3588.      impossible to initialize.  In the future, one would hope for
  3589.      an operating system which understood the difference between
  3590.      initialization and the running of a program.  */
  3591.       was_readonly = 1;
  3592.       TREE_READONLY (decl) = 0;
  3593.     }
  3594.  
  3595.   if (TREE_CODE (decl) == FIELD_DECL)
  3596.     {
  3597.       if (init && init != error_mark_node)
  3598.     assert (TREE_PERMANENT (init));
  3599.  
  3600.       if (asmspec)
  3601.     {
  3602.       /* This must override the asm specifier which was placed
  3603.          by grokclassfn.  Lay this out fresh.
  3604.          
  3605.          @@ Should emit an error if this redefines an asm-specified
  3606.          @@ name, or if we have already used the function's name.  */
  3607.       DECL_RTL (TREE_TYPE (decl)) = 0;
  3608.       DECL_ASSEMBLER_NAME (decl) = asmspec;
  3609.       make_decl_rtl (decl, asmspec, 0);
  3610.     }
  3611.     }
  3612.   /* If `start_decl' didn't like having an initialization, ignore it now.  */
  3613.   else if (init != 0 && DECL_INITIAL (decl) == 0)
  3614.     init = 0;
  3615.   else if (TREE_EXTERNAL (decl))
  3616.     ;
  3617.   else if (TREE_CODE (type) == REFERENCE_TYPE)
  3618.     {
  3619.       grok_reference_init (decl, type, init, &cleanup);
  3620.       init = 0;
  3621.     }
  3622.  
  3623. #ifdef FIELD_XREF
  3624.   FIELD_xref_decl(current_function_decl,decl);
  3625. #endif
  3626.  
  3627.   if (TREE_CODE (decl) == FIELD_DECL || TREE_EXTERNAL (decl))
  3628.     ;
  3629.   else if (TREE_CODE (decl) == CONST_DECL)
  3630.     {
  3631.       assert (TREE_CODE (decl) != REFERENCE_TYPE);
  3632.  
  3633.       DECL_INITIAL (decl) = init;
  3634.  
  3635.       /* This will keep us from needing to worry about our obstacks.  */
  3636.       assert (init != 0);
  3637.       init = 0;
  3638.     }
  3639.   else if (init)
  3640.     {
  3641.       if (TYPE_NEEDS_CONSTRUCTING (type))
  3642.     {
  3643.       if (TREE_CODE (type) == ARRAY_TYPE)
  3644.         init = digest_init (type, init, 0);
  3645.       else if (TREE_CODE (init) == CONSTRUCTOR
  3646.            && CONSTRUCTOR_ELTS (init) != NULL_TREE)
  3647.         {
  3648.           error_with_decl (decl, "`%s' must be initialized by constructor, not by `{...}'");
  3649.           init = error_mark_node;
  3650.         }
  3651. #if 0
  3652.       /* fix this in `build_functional_cast' instead.
  3653.          Here's the trigger code:
  3654.  
  3655.         struct ostream
  3656.         {
  3657.           ostream ();
  3658.           ostream (int, char *);
  3659.           ostream (char *);
  3660.           operator char *();
  3661.           ostream (void *);
  3662.           operator void *();
  3663.           operator << (int);
  3664.         };
  3665.         int buf_size = 1024;
  3666.         static char buf[buf_size];
  3667.         const char *debug(int i) {
  3668.           char *b = &buf[0];
  3669.           ostream o = ostream(buf_size, b);
  3670.           o << i;
  3671.           return buf;
  3672.         }
  3673.         */
  3674.  
  3675.       else if (TREE_CODE (init) == NEW_EXPR
  3676.            && TREE_CODE (TREE_OPERAND (init, 1) == CPLUS_NEW_EXPR))
  3677.         {
  3678.           /* User wrote something like `foo x = foo (args)'  */
  3679.           assert (TREE_CODE (TREE_OPERAND (init, 0)) == VAR_DECL);
  3680.           assert (DECL_NAME (TREE_OPERAND (init, 0)) == NULL_TREE);
  3681.  
  3682.           /* User wrote exactly `foo x = foo (args)'  */
  3683.           if (TYPE_MAIN_VARIANT (type) == TREE_TYPE (init))
  3684.         {
  3685.           init = build (CALL_EXPR, TREE_TYPE (init),
  3686.                 TREE_OPERAND (TREE_OPERAND (init, 1), 0),
  3687.                 TREE_OPERAND (TREE_OPERAND (init, 1), 1), 0);
  3688.           TREE_VOLATILE (init) = 1;
  3689.         }
  3690.         }
  3691. #endif
  3692.  
  3693.       /* We must hide the initializer so that expand_decl
  3694.          won't try to do something it does not understand.  */
  3695.       if (current_binding_level == global_binding_level)
  3696.         {
  3697.           tree value = digest_init (type, empty_init_node, 0);
  3698.           DECL_INITIAL (decl) = value;
  3699.         }
  3700.       else
  3701.         DECL_INITIAL (decl) = error_mark_node;
  3702.     }
  3703.       else
  3704.     {
  3705.       if (TREE_CODE (init) != TREE_VEC)
  3706.         init = store_init_value (decl, init);
  3707.  
  3708.       if (init)
  3709.         /* Don't let anyone try to initialize this variable
  3710.            until we are ready to do so.  */
  3711.         DECL_INITIAL (decl) = error_mark_node;
  3712.     }
  3713.     }
  3714.   else if (IS_AGGR_TYPE (type) || TYPE_NEEDS_CONSTRUCTING (type))
  3715.     {
  3716.       tree ctype = type;
  3717.       while (TREE_CODE (ctype) == ARRAY_TYPE)
  3718.     ctype = TREE_TYPE (ctype);
  3719.       if (! TYPE_NEEDS_CONSTRUCTOR (ctype))
  3720.     {
  3721.       if (CLASSTYPE_READONLY_FIELDS_NEED_INIT (ctype))
  3722.         error_with_decl (decl, "structure `%s' with uninitialized const members");
  3723.       if (CLASSTYPE_REF_FIELDS_NEED_INIT (ctype))
  3724.         error_with_decl (decl, "structure `%s' with uninitialized reference members");
  3725.     }
  3726.  
  3727.       if (TREE_CODE (decl) == VAR_DECL
  3728.       && !TYPE_NEEDS_CONSTRUCTING (type)
  3729.       && (TREE_READONLY (type) || TREE_READONLY (decl)))
  3730.     error_with_decl (decl, "uninitialized const `%s'");
  3731.  
  3732.       /* Initialize variables in need of static initialization
  3733.      with `empty_init_node' to keep assemble_variable from putting them
  3734.      in the wrong program space.  */
  3735.       if (TREE_STATIC (decl)
  3736.       && TREE_CODE (decl) == VAR_DECL
  3737.       && TYPE_NEEDS_CONSTRUCTING (type)
  3738.       && (DECL_INITIAL (decl) == 0
  3739.           || DECL_INITIAL (decl) == error_mark_node))
  3740.     {
  3741.       tree value = digest_init (type, empty_init_node, 0);
  3742.       DECL_INITIAL (decl) = value;
  3743.     }
  3744.     }
  3745.   else if (TREE_CODE (decl) == VAR_DECL
  3746.        && TREE_CODE (type) != REFERENCE_TYPE
  3747.        && (TREE_READONLY (type) || TREE_READONLY (decl)))
  3748.     {
  3749.       if (! TREE_STATIC (decl))
  3750.     error_with_decl (decl, "uninitialized const `%s'");
  3751.     }
  3752.  
  3753.   /* For top-level declaration, the initial value was read in
  3754.      the temporary obstack.  MAXINDEX, rtl, etc. to be made below
  3755.      must go in the permanent obstack; but don't discard the
  3756.      temporary data yet.  */
  3757.  
  3758.   if (current_binding_level == global_binding_level && temporary)
  3759.     end_temporary_allocation ();
  3760.  
  3761.   /* Deduce size of array from initialization, if not already known.  */
  3762.  
  3763.   if (TREE_CODE (type) == ARRAY_TYPE
  3764.       && TYPE_DOMAIN (type) == 0
  3765.       && TREE_CODE (decl) != TYPE_DECL)
  3766.     {
  3767.       int do_default = ! ((!pedantic && TREE_STATIC (decl))
  3768.               || TREE_EXTERNAL (decl));
  3769.       tree initializer = init ? init : DECL_INITIAL (decl);
  3770.       int failure = complete_array_type (type, initializer, do_default);
  3771.  
  3772.       if (failure == 1)
  3773.     error_with_decl (decl, "initializer fails to determine size of `%s'");
  3774.  
  3775.       if (failure == 2)
  3776.     {
  3777.       if (do_default)
  3778.         error_with_decl (decl, "array size missing in `%s'");
  3779.       else if (!pedantic && TREE_STATIC (decl))
  3780.         TREE_EXTERNAL (decl) = 1;
  3781.     }
  3782.  
  3783.       if (pedantic && TYPE_DOMAIN (type) != 0
  3784.       && tree_int_cst_lt (TYPE_MAX_VALUE (TYPE_DOMAIN (type)),
  3785.                   integer_zero_node))
  3786.     error_with_decl (decl, "zero-size array `%s'");
  3787.  
  3788.       layout_decl (decl, 0);
  3789.     }
  3790.  
  3791.   if (TREE_CODE (decl) == VAR_DECL)
  3792.     {
  3793.       if (TREE_STATIC (decl) && DECL_SIZE (decl) == 0)
  3794.     {
  3795.       /* A static variable with an incomplete type:
  3796.          that is an error if it is initialized or `static'.
  3797.          Otherwise, let it through, but if it is not `extern'
  3798.          then it may cause an error message later.  */
  3799.       if (! (TREE_PUBLIC (decl) && DECL_INITIAL (decl) == 0))
  3800.         error_with_decl (decl, "storage size of `%s' isn't known");
  3801.       init = 0;
  3802.     }
  3803.       else if (!TREE_EXTERNAL (decl) && DECL_SIZE (decl) == 0)
  3804.     {
  3805.       /* An automatic variable with an incomplete type:
  3806.          that is an error.  */
  3807.       error_with_decl (decl, "storage size of `%s' isn't known");
  3808.       TREE_TYPE (decl) = error_mark_node;
  3809.     }
  3810.  
  3811.       if ((TREE_EXTERNAL (decl) || TREE_STATIC (decl))
  3812.       && DECL_SIZE (decl) != 0 && ! TREE_LITERAL (DECL_SIZE (decl)))
  3813.     error_with_decl (decl, "storage size of `%s' isn't constant");
  3814.  
  3815.       if (TYPE_NEEDS_DESTRUCTOR (type))
  3816.     {
  3817.       int yes = suspend_momentary ();
  3818.       cleanup = maybe_build_cleanup (decl);
  3819.       resume_momentary (yes);
  3820.     }
  3821.     }
  3822.   /* PARM_DECLs get cleanups, too.  */
  3823.   else if (TREE_CODE (decl) == PARM_DECL
  3824.        && TYPE_NEEDS_DESTRUCTOR (type))
  3825.     {
  3826.       if (temporary)
  3827.     end_temporary_allocation ();
  3828.       cleanup = maybe_build_cleanup (decl);
  3829.       if (temporary)
  3830.     resume_temporary_allocation ();
  3831.     }
  3832.  
  3833.   /* Output the assembler code and/or RTL code for variables and functions,
  3834.      unless the type is an undefined structure or union.
  3835.      If not, it will get done when the type is completed.  */
  3836.  
  3837.   if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL
  3838.       || TREE_CODE (decl) == RESULT_DECL)
  3839.     {
  3840.       int toplev = current_binding_level == global_binding_level;
  3841.       int was_temp
  3842.     = ((flag_traditional
  3843.         || (TREE_STATIC (decl) && TYPE_NEEDS_DESTRUCTOR (type)))
  3844.        && allocation_temporary_p ());
  3845.  
  3846.       if (was_temp)
  3847.     end_temporary_allocation ();
  3848.  
  3849.       /* If we are in need of a cleanup, get out of any implicit
  3850.      handlers that have been established so far.  */
  3851.       if (cleanup && current_binding_level->parm_flag == 3)
  3852.     {
  3853.       pop_implicit_try_blocks (decl);
  3854.       current_binding_level->more_exceptions_ok = 0;
  3855.     }
  3856.  
  3857.       if (TREE_CODE (decl) == VAR_DECL && DECL_VIRTUAL_P (decl))
  3858.     make_decl_rtl (decl, 0, toplev);
  3859.       else if (TREE_CODE (decl) == VAR_DECL
  3860.            && TREE_READONLY (decl)
  3861.            && DECL_INITIAL (decl) != 0
  3862.            && DECL_INITIAL (decl) != error_mark_node
  3863.            && DECL_INITIAL (decl) != empty_init_node)
  3864.     {
  3865.       DECL_INITIAL (decl) = save_expr (DECL_INITIAL (decl));
  3866.  
  3867.       if (asmspec)
  3868.         DECL_ASSEMBLER_NAME (decl) = asmspec;
  3869.  
  3870.       if (! toplev
  3871.           && TREE_STATIC (decl)
  3872.           && ! TREE_VOLATILE (decl)
  3873.           && ! TREE_PUBLIC (decl)
  3874.           && ! TREE_EXTERNAL (decl)
  3875.           && ! TYPE_NEEDS_DESTRUCTOR (type)
  3876.           && DECL_MODE (decl) != BLKmode)
  3877.         {
  3878.           /* If this variable is really a constant, then fill its DECL_RTL
  3879.          slot with something which won't take up storage.
  3880.          If something later should take its address, we can always give
  3881.          it legitimate RTL at that time.  */
  3882.           DECL_RTL (decl) = (struct rtx_def *)gen_reg_rtx (DECL_MODE (decl));
  3883.           store_expr (DECL_INITIAL (decl), DECL_RTL (decl), 0);
  3884.           TREE_ASM_WRITTEN (decl) = 1;
  3885.         }
  3886.       else if (toplev)
  3887.         {
  3888.           /* Keep GCC from complaining that this variable
  3889.          is defined but never used.  */
  3890.           TREE_USED (decl) = 1;
  3891.           make_decl_rtl (decl, asmspec, toplev);
  3892.         }
  3893.       else
  3894.         rest_of_decl_compilation (decl, asmspec, toplev, 0);
  3895.     }
  3896.       else if (TREE_CODE (decl) == VAR_DECL
  3897.            && DECL_LANG_SPECIFIC (decl)
  3898.            && DECL_IN_AGGR_P (decl))
  3899.     {
  3900.       if (TREE_STATIC (decl))
  3901.         if (init == 0 && TYPE_NEEDS_CONSTRUCTING (type))
  3902.           {
  3903.         TREE_EXTERNAL (decl) = 1;
  3904.         make_decl_rtl (decl, asmspec, 1);
  3905.           }
  3906.         else
  3907.           rest_of_decl_compilation (decl, asmspec, toplev, 0);
  3908.       else
  3909.         /* Just a constant field.  Should not need any rtl.  */
  3910.         goto finish_end0;
  3911.     }
  3912.       else
  3913.     rest_of_decl_compilation (decl, asmspec, toplev, 0);
  3914.  
  3915.       if (was_temp)
  3916.     resume_temporary_allocation ();
  3917.  
  3918.       if (TYPE_LANG_SPECIFIC (type) && CLASSTYPE_ABSTRACT_VIRTUALS (type))
  3919.     abstract_virtuals_error (decl, type);
  3920.       else if (TREE_CODE (type) == FUNCTION_TYPE
  3921.            && TYPE_LANG_SPECIFIC (TREE_TYPE (type))
  3922.            && CLASSTYPE_ABSTRACT_VIRTUALS (TREE_TYPE (type)))
  3923.     abstract_virtuals_error (decl, TREE_TYPE (type));
  3924.  
  3925.       if (TREE_CODE (decl) == FUNCTION_DECL)
  3926.     {
  3927.       /* C++: Handle overloaded functions with defualt parameters.  */
  3928.       if (DECL_OVERLOADED (decl))
  3929.         {
  3930.           tree parmtypes = TYPE_ARG_TYPES (type);
  3931.           tree prev = NULL_TREE;
  3932.           char *original_name = IDENTIFIER_POINTER (DECL_ORIGINAL_NAME (decl));
  3933.           struct lang_decl *tmp_lang_decl = DECL_LANG_SPECIFIC (decl);
  3934.           /* All variants will share an uncollectable lang_decl.  */
  3935.           copy_decl_lang_specific (decl);
  3936.  
  3937.           while (parmtypes && parmtypes != void_list_node)
  3938.         {
  3939.           if (TREE_PURPOSE (parmtypes))
  3940.             {
  3941.               tree fnname, fndecl;
  3942.               tree *argp = prev
  3943.             ? & TREE_CHAIN (prev)
  3944.               : & TYPE_ARG_TYPES (type);
  3945.  
  3946.               *argp = NULL_TREE;
  3947.               fnname = build_decl_overload (original_name, TYPE_ARG_TYPES (type), 0);
  3948.               *argp = parmtypes;
  3949.               fndecl = build_decl (FUNCTION_DECL, fnname, type);
  3950.               TREE_EXTERNAL (fndecl) = TREE_EXTERNAL (decl);
  3951.               TREE_PUBLIC (fndecl) = TREE_PUBLIC (decl);
  3952.               TREE_INLINE (fndecl) = TREE_INLINE (decl);
  3953.               /* Keep G++ from thinking this function is unused.
  3954.              It is only used to speed up search in name space.  */
  3955.               TREE_USED (fndecl) = 1;
  3956.               TREE_ASM_WRITTEN (fndecl) = 1;
  3957.               DECL_INITIAL (fndecl) = NULL_TREE;
  3958.               DECL_LANG_SPECIFIC (fndecl) = DECL_LANG_SPECIFIC (decl);
  3959.               fndecl = pushdecl (fndecl);
  3960.               DECL_INITIAL (fndecl) = error_mark_node;
  3961.               DECL_RTL (fndecl) = DECL_RTL (decl);
  3962.             }
  3963.           prev = parmtypes;
  3964.           parmtypes = TREE_CHAIN (parmtypes);
  3965.         }
  3966.           DECL_LANG_SPECIFIC (decl) = tmp_lang_decl;
  3967.         }
  3968.     }
  3969.       else if (TREE_EXTERNAL (decl))
  3970.     ;
  3971.       else if (TREE_STATIC (decl))
  3972.     {
  3973.       /* Cleanups for static variables are handled by `finish_file'.  */
  3974.       if (TYPE_NEEDS_CONSTRUCTING (type) || init != NULL_TREE)
  3975.         expand_static_init (decl, init);
  3976.     }
  3977.       else if (current_binding_level != global_binding_level)
  3978.     {
  3979.       /* This is a declared decl which must live until the
  3980.          end of the binding contour.  It may need a cleanup.  */
  3981.  
  3982.       /* Recompute the RTL of a local array now
  3983.          if it used to be an incomplete type.  */
  3984.       if (was_incomplete && ! TREE_STATIC (decl))
  3985.         {
  3986.           /* If we used it already as memory, it must stay in memory.  */
  3987.           TREE_ADDRESSABLE (decl) = TREE_USED (decl);
  3988.           /* If it's still incomplete now, no init will save it.  */
  3989.           if (DECL_SIZE (decl) == 0)
  3990.         DECL_INITIAL (decl) = 0;
  3991.           expand_decl (decl);
  3992.         }
  3993.       else if (! TREE_ASM_WRITTEN (decl)
  3994.            && (TYPE_SIZE (type) != 0 || TREE_CODE (type) == ARRAY_TYPE))
  3995.         {
  3996.           /* Do this here, because we did not expand this decl's
  3997.          rtl in start_decl.  */
  3998.           if (DECL_RTL (decl) == 0)
  3999.         expand_decl (decl);
  4000.           else if (cleanup)
  4001.         {
  4002.           expand_decl_cleanup (NULL_TREE, cleanup);
  4003.           /* Cleanup used up here.  */
  4004.           cleanup = 0;
  4005.         }
  4006.         }
  4007.  
  4008.       /* Compute and store the initial value.  */
  4009.       expand_decl_init (decl);
  4010.  
  4011.       if (init || TYPE_NEEDS_CONSTRUCTING (type))
  4012.         {
  4013.           emit_line_note (DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl));
  4014.           expand_aggr_init (decl, init, 0);
  4015.         }
  4016.  
  4017.       /* Set this to 0 so we can tell whether an aggregate
  4018.          which was initialized was ever used.  */
  4019.       if (TYPE_NEEDS_CONSTRUCTING (type))
  4020.         TREE_USED (decl) = 0;
  4021.  
  4022.       /* Store the cleanup, if there was one.  */
  4023.       if (cleanup)
  4024.         {
  4025.           if (! expand_decl_cleanup (decl, cleanup))
  4026.         error_with_decl (decl, "parser lost in parsing declaration of `%s'");
  4027.         }
  4028.     }
  4029.     finish_end0:
  4030.  
  4031.       /* Undo call to `pushclass' that was done in `start_decl'
  4032.      due to initialization of qualified member variable.
  4033.      I.e., Foo::x = 10;  */
  4034.       if (TREE_CODE (decl) == VAR_DECL && DECL_CONTEXT (decl))
  4035.     popclass (1);
  4036.     }
  4037.  
  4038.  finish_end:
  4039.  
  4040.   /* Resume permanent allocation, if not within a function.  */
  4041.   if (temporary && current_binding_level == global_binding_level)
  4042.     {
  4043.       permanent_allocation ();
  4044. #if 0
  4045.       /* @@ I don't know whether this is true for GNU C++.  */
  4046.       /* We need to remember that this array HAD an initialization,
  4047.      but discard the actual nodes, since they are temporary anyway.  */
  4048.       if (DECL_INITIAL (decl) != 0)
  4049.     DECL_INITIAL (decl) = error_mark_node;
  4050. #endif
  4051.     }
  4052.   if (was_readonly)
  4053.     TREE_READONLY (decl) = 1;
  4054.  
  4055.   if (flag_cadillac)
  4056.     cadillac_finish_decl (decl);
  4057. }
  4058.  
  4059. static void
  4060. expand_static_init (decl, init)
  4061.      tree decl;
  4062.      tree init;
  4063. {
  4064.   tree oldstatic = value_member (decl, static_aggregates);
  4065.   if (oldstatic)
  4066.     {
  4067.       if (TREE_PURPOSE (oldstatic))
  4068.     error_with_decl (decl, "multiple initializations given for `%s'");
  4069.     }
  4070.   else if (current_binding_level != global_binding_level)
  4071.     {
  4072.       /* Emit code to perform this initialization but once.  */
  4073.       tree temp = get_temp_name (integer_type_node, 1);
  4074.       rest_of_decl_compilation (temp, NULL_TREE, 0, 0);
  4075.       expand_start_cond (build_binary_op (EQ_EXPR, temp, integer_zero_node), 0);
  4076.       expand_assignment (temp, integer_one_node, 0, 0);
  4077.       if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
  4078.     {
  4079.       expand_aggr_init (decl, init, 0);
  4080.       do_pending_stack_adjust ();
  4081.     }
  4082.       else
  4083.     expand_assignment (decl, init, 0, 0);
  4084.       expand_end_cond ();
  4085.       if (TYPE_NEEDS_DESTRUCTOR (TREE_TYPE (decl)))
  4086.     {
  4087.       int temporary = allocation_temporary_p ();
  4088.       if (temporary)
  4089.         end_temporary_allocation ();
  4090.       static_aggregates = tree_cons (temp, decl, static_aggregates);
  4091.       TREE_STATIC (static_aggregates) = 1;
  4092.       if (temporary)
  4093.         resume_temporary_allocation ();
  4094.     }
  4095.     }
  4096.   else
  4097.     {
  4098.       /* This code takes into account memory allocation
  4099.      policy of `start_decl'.  Namely, if TYPE_NEEDS_CONSTRUCTING
  4100.      does not hold for this object, then we must make permanent
  4101.      the storage currently in the temporary obstack.  */
  4102.       if (! TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
  4103.     preserve_initializer ();
  4104.       static_aggregates = perm_tree_cons (init, decl, static_aggregates);
  4105.     }
  4106. }
  4107.  
  4108. /* Make TYPE a complete type based on INITIAL_VALUE.
  4109.    Return 0 if successful, 1 if INITIAL_VALUE can't be decyphered,
  4110.    2 if there was no information (in which case assume 1 if DO_DEFAULT).  */
  4111.  
  4112. int
  4113. complete_array_type (type, initial_value, do_default)
  4114.      tree type;
  4115.      tree initial_value;
  4116.      int do_default;
  4117. {
  4118.   register tree maxindex = NULL_TREE;
  4119.   int value = 0;
  4120.   int temporary = (TREE_PERMANENT (type) && allocation_temporary_p ());
  4121.  
  4122.   /* Don't put temporary nodes in permanent type.  */
  4123.   if (temporary)
  4124.     end_temporary_allocation ();
  4125.  
  4126.   if (initial_value)
  4127.     {
  4128.       /* Note MAXINDEX  is really the maximum index,
  4129.      one less than the size.  */
  4130.       if (TREE_CODE (initial_value) == STRING_CST)
  4131.     maxindex = build_int_2 (TREE_STRING_LENGTH (initial_value) - 1, 0);
  4132.       else if (TREE_CODE (initial_value) == CONSTRUCTOR)
  4133.     {
  4134.       register int nelts
  4135.         = list_length (CONSTRUCTOR_ELTS (initial_value));
  4136.       maxindex = build_int_2 (nelts - 1, 0);
  4137.     }
  4138.       else
  4139.     {
  4140.       /* Make an error message unless that happened already.  */
  4141.       if (initial_value != error_mark_node)
  4142.         value = 1;
  4143.  
  4144.       /* Prevent further error messages.  */
  4145.       maxindex = build_int_2 (1, 0);
  4146.     }
  4147.     }
  4148.  
  4149.   if (!maxindex)
  4150.     {
  4151.       if (do_default)
  4152.     maxindex = build_int_2 (1, 0);
  4153.       value = 2;
  4154.     }
  4155.  
  4156.   if (maxindex)
  4157.     {
  4158.       TYPE_DOMAIN (type) = build_index_type (maxindex);
  4159.       if (!TREE_TYPE (maxindex))
  4160.     TREE_TYPE (maxindex) = TYPE_DOMAIN (type);
  4161.     }
  4162.  
  4163.   /* Lay out the type now that we can get the real answer.  */
  4164.  
  4165.   layout_type (type);
  4166.  
  4167.   if (temporary)
  4168.     resume_temporary_allocation ();
  4169.  
  4170.   return value;
  4171. }
  4172.  
  4173. /* Return zero if something is declared to be a member of type
  4174.    CTYPE when in the context of CUR_TYPE.  STRING is the error
  4175.    message to print in that case.  Otherwise, quietly return 1.  */
  4176. static int
  4177. member_function_or_else (ctype, cur_type, string)
  4178.      tree ctype, cur_type;
  4179.      char *string;
  4180. {
  4181.   if (ctype && ctype != cur_type)
  4182.     {
  4183.       error (string, TYPE_NAME_STRING (ctype));
  4184.       return 0;
  4185.     }
  4186.   return 1;
  4187. }
  4188.  
  4189. /* Subroutine of `grokdeclarator'.  */
  4190.  
  4191. /* CTYPE is class type, or null if non-class.
  4192.    TYPE is type this FUNCTION_DECL should have, either FUNCTION_TYPE
  4193.    or METHOD_TYPE.
  4194.    DECLARATOR is the function's name.
  4195.    VIRTUALP is truthvalue of whether the function is virtual or not.
  4196.    FLAGS are to be passed through to `grokclassfn'.
  4197.    QUALS are qualifiers indicating whether the function is `const'
  4198.    or `volatile'.
  4199.    RAISES is a list of exceptions that this function can raise.
  4200.    CHECK is 1 if we must find this method in CTYPE, 0 if we should
  4201.    not look, and -1 if we should not call `grokclassfn' at all.  */
  4202. static tree
  4203. grokfndecl (ctype, type, declarator, virtualp, flags, quals, raises, check)
  4204.      tree ctype, type;
  4205.      tree declarator;
  4206.      int virtualp;
  4207.      enum overload_flags flags;
  4208.      tree quals, raises;
  4209.      int check;
  4210. {
  4211.   tree cname, decl;
  4212.   int staticp = ctype && TREE_CODE (type) == FUNCTION_TYPE;
  4213.  
  4214.   if (ctype)
  4215.     cname = TREE_CODE (TYPE_NAME (ctype)) == TYPE_DECL
  4216.       ? DECL_NAME (TYPE_NAME (ctype)) : TYPE_NAME (ctype);
  4217.   else
  4218.     cname = NULL_TREE;
  4219.  
  4220.   if (raises)
  4221.     {
  4222.       type = build_exception_variant (ctype, type, raises);
  4223.       raises = TYPE_RAISES_EXCEPTIONS (type);
  4224.     }
  4225.   decl = build_lang_decl (FUNCTION_DECL, declarator, type);
  4226.   if (staticp)
  4227.     {
  4228.       DECL_STATIC_FUNCTION_P (decl) = 1;
  4229.       DECL_STATIC_CONTEXT (decl) = ctype;
  4230.     }
  4231.   TREE_EXTERNAL (decl) = 1;
  4232.   if (quals != NULL_TREE && TREE_CODE (type) == FUNCTION_TYPE)
  4233.     {
  4234.       /* Dont have DECL_ORIGINAL_NAME yet, so we cannot pretty print it.  */
  4235.       error ("functions cannot have method qualifiers");
  4236.       quals = NULL_TREE;
  4237.     }
  4238.  
  4239.   /* Caller will do the rest of this.  */
  4240.   if (check < 0)
  4241.     return decl;
  4242.  
  4243.   if (flags == NO_SPECIAL && ctype && declarator == cname)
  4244.     {
  4245.       tree tmp;
  4246.       /* Just handle constructors here.  We could do this
  4247.      inside the following if stmt, but I think
  4248.      that the code is more legible by breaking this
  4249.      case out.  See comments below for what each of
  4250.      the following calls is supposed to do.  */
  4251.       DECL_CONSTRUCTOR_P (decl) = 1;
  4252.  
  4253.       grokclassfn (ctype, declarator, decl, flags, check, quals);
  4254.       grok_ctor_properties (ctype, decl);
  4255.       if (check == 0)
  4256.     {
  4257.       tmp = lookup_name (DECL_NAME (decl));
  4258.       if (tmp == 0)
  4259.         IDENTIFIER_GLOBAL_VALUE (DECL_NAME (decl)) = decl;
  4260.       else if (TREE_CODE (tmp) != TREE_CODE (decl))
  4261.         error_with_decl (decl, "inconsistant declarations for `%s'");
  4262.       else
  4263.         {
  4264.           duplicate_decls (decl, tmp);
  4265.           decl = tmp;
  4266.         }
  4267.       make_decl_rtl (decl, NULL_TREE, 1);
  4268.     }
  4269.     }
  4270.   else
  4271.     {
  4272.       tree tmp;
  4273.       int i;
  4274.  
  4275.       /* Function gets the ugly name, field gets the nice one.
  4276.      This call may change the type of the function (because
  4277.      of default parameters)!
  4278.      
  4279.      Wrappers get field names which will not conflict
  4280.      with constructors and destructors.  */
  4281.       if (ctype != NULL_TREE)
  4282.     grokclassfn (ctype, cname, decl, flags, check, quals);
  4283.  
  4284.       if (OPERATOR_NAME_P (DECL_NAME (decl)))
  4285.     {
  4286.       TREE_OPERATOR (decl) = 1;
  4287.       grok_op_properties (decl);
  4288.     }
  4289.  
  4290.       if (ctype == NULL_TREE || check)
  4291.     return decl;
  4292.  
  4293.       /* Now install the declaration of this function so that
  4294.      others may find it (esp. its DECL_FRIENDLIST).
  4295.      Pretend we are at top level, we will get true
  4296.      reference later, perhaps.  */
  4297.       tmp = lookup_name (DECL_NAME (decl));
  4298.       if (tmp == 0)
  4299.     IDENTIFIER_GLOBAL_VALUE (DECL_NAME (decl)) = decl;
  4300.       else if (TREE_CODE (tmp) != TREE_CODE (decl))
  4301.     error_with_decl (decl, "inconsistant declarations for `%s'");
  4302.       else
  4303.     {
  4304.       duplicate_decls (decl, tmp);
  4305.       decl = tmp;
  4306.     }
  4307.       make_decl_rtl (decl, NULL_TREE, 1);
  4308.  
  4309.       /* If this declaration supersedes the declaration of
  4310.      a method declared virtual in the base class, then
  4311.      mark this field as being virtual as well.  */
  4312.       for (i = 1; i <= CLASSTYPE_N_BASECLASSES (ctype); i++)
  4313.     {
  4314.       tree basetype = CLASSTYPE_BASECLASS (ctype, i);
  4315.       if (TYPE_VIRTUAL_P (basetype) || flag_all_virtual == 1)
  4316.         {
  4317.           tmp = get_first_matching_virtual (basetype, decl,
  4318.                         flags == DTOR_FLAG);
  4319.           if (tmp)
  4320.         {
  4321.           /* The TMP we really want is the one from the deepest
  4322.              baseclass on this path, taking care not to
  4323.              duplicate if we have already found it (via another
  4324.              path to its virtual baseclass.  */
  4325.           if (staticp)
  4326.             {
  4327.               error_with_decl (decl, "method `%s' may not be declared static");
  4328.               error_with_decl (tmp, "(since `%s' declared virtual in base class.)");
  4329.               break;
  4330.             }
  4331.           virtualp = 1;
  4332.  
  4333.           if ((TYPE_USES_VIRTUAL_BASECLASSES (basetype)
  4334.                || TYPE_USES_MULTIPLE_INHERITANCE (ctype))
  4335.               && TYPE_MAIN_VARIANT (basetype) != DECL_VCONTEXT (tmp))
  4336.             tmp = get_first_matching_virtual (DECL_VCONTEXT (tmp),
  4337.                               decl, flags == DTOR_FLAG);
  4338.           if (value_member (tmp, DECL_VINDEX (decl)) == NULL_TREE)
  4339.             {
  4340.               /* The argument types may have changed... */
  4341.               tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
  4342.               tree base_variant = TREE_TYPE (TREE_VALUE (argtypes));
  4343.  
  4344.               argtypes = commonparms (TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (tmp))),
  4345.                           TREE_CHAIN (argtypes));
  4346.               /* But the return type has not.  */
  4347.               type = build_cplus_method_type (base_variant, TREE_TYPE (type), argtypes);
  4348.               if (raises)
  4349.             {
  4350.               type = build_exception_variant (ctype, type, raises);
  4351.               raises == TYPE_RAISES_EXCEPTIONS (type);
  4352.             }
  4353.               TREE_TYPE (decl) = type;
  4354.               SET_DECL_VINDEX (decl, tree_cons (NULL_TREE, tmp, DECL_VINDEX (decl)));
  4355.             }
  4356.         }
  4357.         }
  4358.     }
  4359.       if (virtualp)
  4360.     {
  4361.       DECL_VIRTUAL_P (decl) = 1;
  4362.       DECL_VIRTUAL_P (declarator) = 1;
  4363.       if (ctype && CLASSTYPE_VTABLE_NEEDS_WRITING (ctype)
  4364.           && (write_virtuals == 2
  4365.           || (write_virtuals == 3
  4366.               && ! CLASSTYPE_INTERFACE_UNKNOWN (ctype))))
  4367.         TREE_PUBLIC (decl) = 1;
  4368.     }
  4369.     }
  4370.   return decl;
  4371. }
  4372.  
  4373. static tree
  4374. grokvardecl (ctype, type, declarator, specbits, initialized)
  4375.      tree ctype, type;
  4376.      tree declarator;
  4377.      int specbits;
  4378. {
  4379.   tree decl;
  4380.  
  4381.   if (TREE_CODE (type) == OFFSET_TYPE)
  4382.     {
  4383.       /* If you declare a static member so that it
  4384.      can be initialized, the code will reach here.  */
  4385.       tree field = lookup_field (TYPE_OFFSET_BASETYPE (type),
  4386.                  declarator, 0);
  4387.       if (field == NULL_TREE || TREE_CODE (field) != VAR_DECL)
  4388.     {
  4389.       tree basetype = TYPE_OFFSET_BASETYPE (type);
  4390.       error ("`%s' is not a static member of class `%s'",
  4391.          IDENTIFIER_POINTER (declarator),
  4392.          TYPE_NAME_STRING (basetype));
  4393.       type = TREE_TYPE (type);
  4394.       decl = build_decl (VAR_DECL, declarator, type);
  4395.       DECL_CONTEXT (decl) = basetype;
  4396.     }
  4397.       else
  4398.     {
  4399.       decl = field;
  4400.       if (initialized && DECL_INITIAL (decl)
  4401.           /* Complain about multiply-initialized
  4402.          member variables, but don't be faked
  4403.          out if initializer is faked up from `empty_init_node'.  */
  4404.           && (TREE_CODE (DECL_INITIAL (decl)) != CONSTRUCTOR
  4405.           || CONSTRUCTOR_ELTS (DECL_INITIAL (decl)) != NULL_TREE))
  4406.         error_with_aggr_type (DECL_CONTEXT (decl),
  4407.                   "multiple initializations of static member `%s::%s'",
  4408.                   IDENTIFIER_POINTER (DECL_NAME (decl)));
  4409.     }
  4410.     }
  4411.   else decl = build_decl (VAR_DECL, declarator, type);
  4412.  
  4413.   if (specbits & (1 << (int) RID_EXTERN))
  4414.     {
  4415.       DECL_EXTERNAL (decl) = 1;
  4416.       TREE_EXTERNAL (decl) = !initialized;
  4417.     }
  4418.  
  4419.   /* In class context, static means one per class,
  4420.      public visibility, and static storage.  */
  4421.   if (DECL_FIELD_CONTEXT (decl) != 0
  4422.       && IS_AGGR_TYPE (DECL_FIELD_CONTEXT (decl)))
  4423.     {
  4424.       TREE_PUBLIC (decl) = 1;
  4425.       TREE_STATIC (decl) = 1;
  4426.     }
  4427.   /* At top level, either `static' or no s.c. makes a definition
  4428.      (perhaps tentative), and absence of `static' makes it public.  */
  4429.   else if (current_binding_level == global_binding_level)
  4430.     {
  4431.       TREE_PUBLIC (decl) = !(specbits & (1 << (int) RID_STATIC));
  4432.       TREE_STATIC (decl) = ! TREE_EXTERNAL (decl);
  4433.     }
  4434.   /* Not at top level, only `static' makes a static definition.  */
  4435.   else
  4436.     {
  4437.       TREE_STATIC (decl) = (specbits & (1 << (int) RID_STATIC)) != 0;
  4438.       TREE_PUBLIC (decl) = TREE_EXTERNAL (decl);
  4439.       /* `extern' with initialization is invalid if not at top level.  */
  4440.       if ((specbits & (1 << (int) RID_EXTERN)) && initialized)
  4441.     error_with_decl (decl, "`%s' has both `extern' and initializer");
  4442.     }
  4443.   return decl;
  4444. }
  4445.  
  4446. /* Given declspecs and a declarator,
  4447.    determine the name and type of the object declared
  4448.    and construct a ..._DECL node for it.
  4449.    (In one case we can return a ..._TYPE node instead.
  4450.     For invalid input we sometimes return 0.)
  4451.  
  4452.    DECLSPECS is a chain of tree_list nodes whose value fields
  4453.     are the storage classes and type specifiers.
  4454.  
  4455.    DECL_CONTEXT says which syntactic context this declaration is in:
  4456.      NORMAL for most contexts.  Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
  4457.      FUNCDEF for a function definition.  Like NORMAL but a few different
  4458.       error messages in each case.  Return value may be zero meaning
  4459.       this definition is too screwy to try to parse.
  4460.      MEMFUNCDEF for a function definition.  Like FUNCDEF but prepares to
  4461.       handle member functions (which have FIELD context).
  4462.       Return value may be zero meaning this definition is too screwy to
  4463.       try to parse.
  4464.      PARM for a parameter declaration (either within a function prototype
  4465.       or before a function body).  Make a PARM_DECL, or return void_type_node.
  4466.      TYPENAME if for a typename (in a cast or sizeof).
  4467.       Don't make a DECL node; just return the ..._TYPE node.
  4468.      FIELD for a struct or union field; make a FIELD_DECL.
  4469.    INITIALIZED is 1 if the decl has an initializer.
  4470.  
  4471.    In the TYPENAME case, DECLARATOR is really an absolute declarator.
  4472.    It may also be so in the PARM case, for a prototype where the
  4473.    argument type is specified but not the name.
  4474.  
  4475.    This function is where the complicated C meanings of `static'
  4476.    and `extern' are intrepreted.
  4477.  
  4478.    For C++, if there is any monkey business to do, the function which
  4479.    calls this one must do it, i.e., prepending instance variables,
  4480.    renaming overloaded function names, etc.
  4481.  
  4482.    Note that for this C++, it is an error to define a method within a class
  4483.    which does not belong to that class.
  4484.  
  4485.    Execpt in the case where SCOPE_REFs are implicitly known (such as
  4486.    methods within a class being redundantly qualified),
  4487.    declarations which involve SCOPE_REFs are returned as SCOPE_REFs
  4488.    (class_name::decl_name).  The caller must also deal with this.
  4489.  
  4490.    If a constructor or destructor is seen, and the context is FIELD,
  4491.    then the type gains the attribtue TREE_HAS_x.  If such a declaration
  4492.    is erroneous, NULL_TREE is returned.
  4493.  
  4494.    QUALS is used only for FUNCDEF and MEMFUNCDEF cases.  For a member
  4495.    function, these are the qualifiers to give to the `this' pointer.
  4496.  
  4497.    May return void_type_node if the declarator turned out to be a friend.
  4498.    See grokfield for details.  */
  4499.  
  4500. enum return_types { return_normal, return_ctor, return_dtor, return_conversion, };
  4501.  
  4502. tree
  4503. grokdeclarator (declarator, declspecs, decl_context, initialized, raises)
  4504.      tree declspecs;
  4505.      tree declarator;
  4506.      enum decl_context decl_context;
  4507.      int initialized;
  4508.      tree raises;
  4509. {
  4510.   int specbits = 0;
  4511.   int nclasses = 0;
  4512.   tree spec;
  4513.   tree type = NULL_TREE;
  4514.   int longlong = 0;
  4515.   int constp;
  4516.   int volatilep;
  4517.   int virtualp, friendp, inlinep, staticp;
  4518.   int explicit_int = 0;
  4519.   int explicit_char = 0;
  4520.   char *name;
  4521.   tree typedef_type = 0;
  4522.   int funcdef_flag = 0;
  4523.   int resume_temporary = 0;
  4524.   enum tree_code innermost_code = ERROR_MARK;
  4525.   /* Set this to error_mark_node for FIELD_DECLs we could not handle properly.
  4526.      All FIELD_DECLs we build here have `init' put into their DECL_INITIAL.  */
  4527.   tree init = 0;
  4528.  
  4529.   /* Keep track of what sort of function is being processed
  4530.      so that we can warn about default return values, or explicit
  4531.      return values which do not match prescribed defaults.  */
  4532.   enum return_types return_type = return_normal;
  4533.  
  4534.   tree dname = NULL_TREE;
  4535.   tree ctype = current_class_type;
  4536.   tree ctor_return_type = NULL_TREE;
  4537.   enum overload_flags flags = NO_SPECIAL;
  4538.   int seen_scope_ref = 0;
  4539.   tree quals = 0;
  4540.  
  4541.   if (decl_context == FUNCDEF)
  4542.     funcdef_flag = 1, decl_context = NORMAL;
  4543.   else if (decl_context == MEMFUNCDEF)
  4544.     funcdef_flag = -1, decl_context = FIELD;
  4545.  
  4546.   if (flag_traditional && allocation_temporary_p ())
  4547.     {
  4548.       resume_temporary = 1;
  4549.       end_temporary_allocation ();
  4550.     }
  4551.  
  4552.   /* Look inside a declarator for the name being declared
  4553.      and get it as a string, for an error message.  */
  4554.   {
  4555.     tree type, last = 0;
  4556.     register tree decl = declarator;
  4557.     name = 0;
  4558.  
  4559.     /* If we see something of the form `aggr_type xyzzy (a, b, c)'
  4560.        it is either an old-style function declaration or a call to
  4561.        a constructor.  The following conditional makes recognizes this
  4562.        case as being a call to a constructor.  Too bad if it is not.  */
  4563.  
  4564.     /* For Doug Lea, also grok `aggr_type xyzzy (a, b, c)[10][10][10]'.  */
  4565.     while (decl && TREE_CODE (decl) == ARRAY_REF)
  4566.       {
  4567.     last = decl;
  4568.     decl = TREE_OPERAND (decl, 0);
  4569.       }
  4570.  
  4571.     if (current_lang_name == lang_name_cplusplus
  4572.         && decl && declspecs
  4573.         && TREE_CODE (decl) == CALL_EXPR
  4574.         && TREE_OPERAND (decl, 0)
  4575.         && (TREE_CODE (TREE_OPERAND (decl, 0)) == IDENTIFIER_NODE
  4576.         || TREE_CODE (TREE_OPERAND (decl, 0)) == SCOPE_REF))
  4577.       {
  4578.         type = TREE_CODE (TREE_VALUE (declspecs)) == IDENTIFIER_NODE
  4579.           ? lookup_name (TREE_VALUE (declspecs)) :
  4580.         (IS_AGGR_TYPE (TREE_VALUE (declspecs))
  4581.          ? TYPE_NAME (TREE_VALUE (declspecs)) : NULL_TREE);
  4582.  
  4583.         if (type && TREE_CODE (type) == TYPE_DECL
  4584.             && IS_AGGR_TYPE (TREE_TYPE (type))
  4585.             && parmlist_is_exprlist (TREE_OPERAND (decl, 1)))
  4586.           {
  4587.             if (decl_context == FIELD
  4588.                 && TREE_CHAIN (TREE_OPERAND (decl, 1)))
  4589.               {
  4590.                 /* That was an initializer list.  */
  4591.                 sorry ("initializer lists for field declarations");
  4592.                 decl = TREE_OPERAND (decl, 0);
  4593.         if (last)
  4594.           {
  4595.             TREE_OPERAND (last, 0) = decl;
  4596.             decl = declarator;
  4597.           }
  4598.                 declarator = decl;
  4599.                 init = error_mark_node;
  4600.                 goto bot;
  4601.               }
  4602.             else
  4603.               {
  4604.         tree init = TREE_OPERAND (decl, 1);
  4605.         if (last)
  4606.           {
  4607.             TREE_OPERAND (last, 0) = TREE_OPERAND (decl, 0);
  4608.             if (pedantic && init)
  4609.               error ("arrays cannot take initializers");
  4610.           }
  4611.         else
  4612.           declarator = TREE_OPERAND (declarator, 0);
  4613.                 decl = start_decl (declarator, declspecs, 1, NULL_TREE);
  4614.                 finish_decl (decl, init, NULL_TREE);
  4615.                 return 0;
  4616.               }
  4617.           }
  4618.  
  4619.         if (parmlist_is_random (TREE_OPERAND (decl, 1)))
  4620.           {
  4621.         decl = TREE_OPERAND (decl, 0);
  4622.         if (TREE_CODE (decl) == SCOPE_REF)
  4623.           decl = TREE_OPERAND (decl, 1);
  4624.         if (TREE_CODE (decl) == IDENTIFIER_NODE)
  4625.           name = IDENTIFIER_POINTER (decl);
  4626.         if (name)
  4627.           error ("bad parameter list specification for function `%s'",
  4628.              name);
  4629.         else
  4630.           error ("bad parameter list specification for function");
  4631.             return 0;
  4632.           }
  4633.       bot:
  4634.         ;
  4635.       }
  4636.     else
  4637.       /* It didn't look like we thought it would, leave the ARRAY_REFs on.  */
  4638.       decl = declarator;
  4639.  
  4640.     while (decl)
  4641.       switch (TREE_CODE (decl))
  4642.         {
  4643.     case WRAPPER_EXPR:      /* for C++ wrappers.  */
  4644.       if (current_lang_name != lang_name_cplusplus)
  4645.         error ("wrapper declared in \"%s\" language context",
  4646.            IDENTIFIER_POINTER (current_lang_name));
  4647.  
  4648.       ctype = NULL_TREE;
  4649.       assert (flags == NO_SPECIAL);
  4650.       flags = WRAPPER_FLAG;
  4651.       decl = TREE_OPERAND (decl, 0);
  4652.       break;
  4653.  
  4654.     case ANTI_WRAPPER_EXPR: /* for C++ wrappers.  */
  4655.       if (current_lang_name != lang_name_cplusplus)
  4656.         error ("anti-wrapper declared in \"%s\" language context",
  4657.            IDENTIFIER_POINTER (current_lang_name));
  4658.  
  4659.       ctype = NULL_TREE;
  4660.       assert (flags == NO_SPECIAL);
  4661.       flags = ANTI_WRAPPER_FLAG;
  4662.       decl = TREE_OPERAND (decl, 0);
  4663.       break;
  4664.  
  4665.     case COND_EXPR:
  4666.       if (current_lang_name != lang_name_cplusplus)
  4667.         error ("wrapper predicate declared in \"%s\" language context",
  4668.            IDENTIFIER_POINTER (current_lang_name));
  4669.  
  4670.       ctype = NULL_TREE;
  4671.       assert (flags == WRAPPER_FLAG);
  4672.       flags = WRAPPER_PRED_FLAG;
  4673.       decl = TREE_OPERAND (decl, 0);
  4674.       break;
  4675.  
  4676.     case BIT_NOT_EXPR:      /* for C++ destructors!  */
  4677.       {
  4678.         tree name = TREE_OPERAND (decl, 0);
  4679.         tree rename = NULL_TREE;
  4680.  
  4681.         if (current_lang_name != lang_name_cplusplus)
  4682.           error ("destructor declared in \"%s\" language context",
  4683.              IDENTIFIER_POINTER (current_lang_name));
  4684.  
  4685.         assert (flags == NO_SPECIAL);
  4686.         flags = DTOR_FLAG;
  4687.         return_type = return_dtor;
  4688.         assert (TREE_CODE (name) == IDENTIFIER_NODE);
  4689.         if (ctype == NULL_TREE)
  4690.           {
  4691.         if (current_class_type == NULL_TREE)
  4692.           {
  4693.             error ("destructors must be member functions");
  4694.             flags = NO_SPECIAL;
  4695.           }
  4696.         else if (current_class_name != name)
  4697.           rename = current_class_name;
  4698.           }
  4699.         else if (DECL_NAME (TYPE_NAME (ctype)) != name)
  4700.           rename = DECL_NAME (TYPE_NAME (ctype));
  4701.  
  4702.         if (rename)
  4703.           {
  4704.         error ("destructor `%s' must match class name `%s'",
  4705.                IDENTIFIER_POINTER (name),
  4706.                IDENTIFIER_POINTER (rename));
  4707.         TREE_OPERAND (decl, 0) = rename;
  4708.           }
  4709.         decl = name;
  4710.       }
  4711.       break;
  4712.  
  4713.     case ADDR_EXPR:         /* C++ reference declaration */
  4714.       /* fall through */
  4715.     case ARRAY_REF:
  4716.     case INDIRECT_REF:
  4717.       ctype = NULL_TREE;
  4718.       innermost_code = TREE_CODE (decl);
  4719.       decl = TREE_OPERAND (decl, 0);
  4720.       break;
  4721.  
  4722.     case CALL_EXPR:
  4723.       innermost_code = TREE_CODE (decl);
  4724.       decl = TREE_OPERAND (decl, 0);
  4725.       if (decl_context == FIELD && ctype == NULL_TREE)
  4726.         ctype = current_class_type;
  4727.       if (ctype != NULL_TREE
  4728.           && decl != NULL_TREE && flags != DTOR_FLAG
  4729.           && TREE_TYPE (decl) && TREE_TYPE (TREE_TYPE (decl)) == ctype)
  4730.         {
  4731.           return_type = return_ctor;
  4732.           ctor_return_type = ctype;
  4733.         }
  4734.       ctype = NULL_TREE;
  4735.       break;
  4736.  
  4737.     case IDENTIFIER_NODE:
  4738.       dname = decl;
  4739.       name = IDENTIFIER_POINTER (decl);
  4740.       decl = 0;
  4741.       break;
  4742.  
  4743.     case RECORD_TYPE:
  4744.     case UNION_TYPE:
  4745.     case ENUMERAL_TYPE:
  4746.       /* Parse error puts this typespec where
  4747.          a declarator should go.  */
  4748.       error ("declarator name missing");
  4749.       dname = TYPE_NAME (decl);
  4750.       if (dname && TREE_CODE (dname) == TYPE_DECL)
  4751.         dname = DECL_NAME (dname);
  4752.       name = dname ? IDENTIFIER_POINTER (dname) : "<nameless>";
  4753.       declspecs = temp_tree_cons (NULL_TREE, decl, declspecs);
  4754.       decl = 0;
  4755.       break;
  4756.  
  4757.     case OP_IDENTIFIER:
  4758.       if (current_lang_name != lang_name_cplusplus)
  4759.         error ("operator declared in \"%s\" language context",
  4760.            IDENTIFIER_POINTER (current_lang_name));
  4761.  
  4762.       /* C++ operators: if these are member functions, then
  4763.          they overload the same way normal methods do.  However,
  4764.          if they are declared outside of a classes scope, then
  4765.          they are implicitly treated like `friends', i.e.,
  4766.          they do not take any unseen arguments.  */
  4767.       assert (flags == NO_SPECIAL);
  4768.       flags = OP_FLAG;
  4769.       name = "operator name";
  4770.       decl = 0;
  4771.       break;
  4772.  
  4773.     case TYPE_EXPR:
  4774.       if (current_lang_name != lang_name_cplusplus)
  4775.         error ("type conversion operator declared in \"%s\" language context",
  4776.            IDENTIFIER_POINTER (current_lang_name));
  4777.  
  4778.       ctype = NULL_TREE;
  4779.       assert (flags == NO_SPECIAL);
  4780.       flags = TYPENAME_FLAG;
  4781.       name = "operator <typename>";
  4782.       /* Go to the absdcl.  */
  4783.       decl = TREE_OPERAND (decl, 0);
  4784.       return_type = return_conversion;
  4785.       break;
  4786.  
  4787.       /* C++ extension */
  4788.     case SCOPE_REF:
  4789.       if (current_lang_name != lang_name_cplusplus)
  4790.         error ("member function declared in \"%s\" language context",
  4791.            IDENTIFIER_POINTER (current_lang_name));
  4792.       if (seen_scope_ref == 1)
  4793.         error ("multiple `::' terms in declarator invalid");
  4794.       seen_scope_ref += 1;
  4795.       {
  4796.         /* Perform error checking, and convert class names to types.
  4797.            We may call grokdeclarator multiple times for the same
  4798.            tree structure, so only do the conversion once.  In this
  4799.            case, we have exactly what we want for `ctype'.  */
  4800.         tree cname = TREE_OPERAND (decl, 0);
  4801.         if (cname == NULL_TREE)
  4802.           ctype = NULL_TREE;
  4803.         else if (IS_AGGR_TYPE (cname))
  4804.           ctype = cname;
  4805.         else if (! is_aggr_typedef (cname, 1))
  4806.           {
  4807.         TREE_OPERAND (decl, 0) = 0;
  4808.           }
  4809.         /* Must test TREE_OPERAND (decl, 1), in case user gives
  4810.            us `typedef (class::memfunc)(int); memfunc *memfuncptr;'  */
  4811.         else if (TREE_OPERAND (decl, 1)
  4812.              && TREE_CODE (TREE_OPERAND (decl, 1)) == INDIRECT_REF)
  4813.           {
  4814.         TREE_OPERAND (decl, 0) = TREE_TYPE (TREE_TYPE (cname));
  4815.           }
  4816.         else if (ctype == NULL_TREE)
  4817.           {
  4818.         ctype = TREE_TYPE (TREE_TYPE (cname));
  4819.         TREE_OPERAND (decl, 0) = ctype;
  4820.           }
  4821.         else
  4822.           {
  4823.         tree new_type = get_base_type (TREE_TYPE (TREE_TYPE (cname)), ctype, 0);
  4824.         if (new_type == NULL_TREE)
  4825.           {
  4826.             error ("type `%s' is not derived from type `%s'",
  4827.                IDENTIFIER_POINTER (cname),
  4828.                TYPE_NAME_STRING (ctype));
  4829.             TREE_OPERAND (decl, 0) = 0;
  4830.           }
  4831.         else
  4832.           {
  4833.             ctype = new_type;
  4834.             TREE_OPERAND (decl, 0) = ctype;
  4835.           }
  4836.           }
  4837.         decl = TREE_OPERAND (decl, 1);
  4838.         if (ctype != NULL_TREE && DECL_NAME (TYPE_NAME (ctype)) == decl)
  4839.           {
  4840.         return_type = return_ctor;
  4841.         ctor_return_type = ctype;
  4842.           }
  4843.       }
  4844.       break;
  4845.  
  4846.     case ERROR_MARK:
  4847.       decl = NULL_TREE;
  4848.       break;
  4849.  
  4850.     default:
  4851.       assert (0);
  4852.     }
  4853.     if (name == 0)
  4854.       name = "type name";
  4855.   }
  4856.  
  4857.   /* A function definition's declarator must have the form of
  4858.      a function declarator.  */
  4859.  
  4860.   if (funcdef_flag && innermost_code != CALL_EXPR)
  4861.     return 0;
  4862.  
  4863.   /* Anything declared one level down from the top level
  4864.      must be one of the parameters of a function
  4865.      (because the body is at least two levels down).  */
  4866.  
  4867.   /* This heuristic cannot be applied to C++ nodes! Fixed, however,
  4868.      by not allowing C++ class definitions to specify their parameters
  4869.      with xdecls (must be spec.d in the parmlist).
  4870.  
  4871.      Since we now wait to push a class scope until we are sure that
  4872.      we are in a legitimate method context, we must set oldcname
  4873.      explicitly (since current_class_name is not yet alive).  */
  4874.  
  4875.   if (decl_context == NORMAL
  4876.       && current_binding_level->level_chain == global_binding_level)
  4877.     decl_context = PARM;
  4878.  
  4879.   /* Look through the decl specs and record which ones appear.
  4880.      Some typespecs are defined as built-in typenames.
  4881.      Others, the ones that are modifiers of other types,
  4882.      are represented by bits in SPECBITS: set the bits for
  4883.      the modifiers that appear.  Storage class keywords are also in SPECBITS.
  4884.  
  4885.      If there is a typedef name or a type, store the type in TYPE.
  4886.      This includes builtin typedefs such as `int'.
  4887.  
  4888.      Set EXPLICIT_INT if the type is `int' or `char' and did not
  4889.      come from a user typedef.
  4890.  
  4891.      Set LONGLONG if `long' is mentioned twice.
  4892.  
  4893.      For C++, constructors and destructors have their own fast treatment.  */
  4894.  
  4895.   for (spec = declspecs; spec; spec = TREE_CHAIN (spec))
  4896.     {
  4897.       register int i;
  4898.       register tree id = TREE_VALUE (spec);
  4899.  
  4900.       /* Certain parse errors slip through.  For example,
  4901.      `int class;' is not caught by the parser. Try
  4902.      weakly to recover here.  */
  4903.       if (TREE_CODE (spec) != TREE_LIST)
  4904.     return 0;
  4905.  
  4906.       if (TREE_CODE (id) == IDENTIFIER_NODE)
  4907.     {
  4908.       if (id == ridpointers[(int) RID_INT])
  4909.         {
  4910.           if (type)
  4911.         error ("extraneous `int' ignored");
  4912.           else
  4913.         {
  4914.           explicit_int = 1;
  4915.           type = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (id));
  4916.         }
  4917.           goto found;
  4918.         }
  4919.       if (id == ridpointers[(int) RID_CHAR])
  4920.         {
  4921.           if (type)
  4922.         error ("extraneous `char' ignored");
  4923.           else
  4924.         {
  4925.           explicit_char = 1;
  4926.           type = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (id));
  4927.         }
  4928.           goto found;
  4929.         }
  4930.       /* C++ aggregate types.  */
  4931.       if (TREE_TYPE (id))
  4932.         {
  4933.           if (type)
  4934.         error ("multiple declarations `%s' and `%s'",
  4935.                IDENTIFIER_POINTER (type),
  4936.                IDENTIFIER_POINTER (id));
  4937.           else
  4938.         type = TREE_TYPE (TREE_TYPE (id));
  4939.           goto found;
  4940.         }
  4941.  
  4942.       for (i = (int) RID_FIRST_MODIFIER; i < (int) RID_MAX; i++)
  4943.         {
  4944.           if (ridpointers[i] == id)
  4945.         {
  4946.           if (i == (int) RID_LONG && specbits & (1<<i))
  4947.             {
  4948.               if (pedantic)
  4949.             warning ("duplicate `%s'", IDENTIFIER_POINTER (id));
  4950.             else if (longlong)
  4951.               warning ("`long long long' is too long for GCC");
  4952.               else
  4953.             longlong = 1;
  4954.             }
  4955.           else if (specbits & (1 << i))
  4956.             warning ("duplicate `%s'", IDENTIFIER_POINTER (id));
  4957.           specbits |= 1 << i;
  4958.           goto found;
  4959.         }
  4960.         }
  4961.     }
  4962.       if (type)
  4963.     error ("two or more data types in declaration of `%s'", name);
  4964.       else if (TREE_CODE (id) == IDENTIFIER_NODE)
  4965.     {
  4966.       register tree t = lookup_name (id);
  4967.       if (!t || TREE_CODE (t) != TYPE_DECL)
  4968.         error ("`%s' fails to be a typedef or built in type",
  4969.            IDENTIFIER_POINTER (id));
  4970.       else type = TREE_TYPE (t);
  4971.     }
  4972.       else if (TREE_CODE (id) != ERROR_MARK)
  4973.     /* Can't change CLASS nodes into RECORD nodes here!  */
  4974.     type = id;
  4975.  
  4976.     found: {}
  4977.     }
  4978.  
  4979.   typedef_type = type;
  4980.  
  4981.   /* No type at all: default to `int', and set EXPLICIT_INT
  4982.      because it was not a user-defined typedef.  */
  4983.  
  4984.   if (type == 0)
  4985.     {
  4986.       explicit_int = -1;
  4987.       if (return_type == return_dtor)
  4988.     type = void_type_node;
  4989.       else if (return_type == return_ctor)
  4990.     type = TYPE_POINTER_TO (ctor_return_type);
  4991.       else
  4992.     {
  4993.       if (funcdef_flag && warn_return_type
  4994.           && return_type == return_normal
  4995.           && ! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
  4996.                 | (1 << (int) RID_SIGNED) | (1 << (int) RID_UNSIGNED))))
  4997.         warn_about_return_type = 1;
  4998.       /* Save warning until we know what is really going on.  */
  4999.       type = integer_type_node;
  5000.     }
  5001.     }
  5002.   else if (return_type == return_dtor)
  5003.     {
  5004.       error ("return type specification for destructor invalid");
  5005.       type = void_type_node;
  5006.     }
  5007.   else if (return_type == return_ctor)
  5008.     {
  5009.       warning ("return type specification for constructor invalid");
  5010.       type = TYPE_POINTER_TO (ctor_return_type);
  5011.     }
  5012.  
  5013.   ctype = NULL_TREE;
  5014.  
  5015.   /* Now process the modifiers that were specified
  5016.      and check for invalid combinations.  */
  5017.  
  5018.   /* Long double is a special combination.  */
  5019.  
  5020.   if ((specbits & 1 << (int) RID_LONG) && type == double_type_node)
  5021.     {
  5022.       specbits &= ~ (1 << (int) RID_LONG);
  5023.       type = long_double_type_node;
  5024.     }
  5025.  
  5026.   /* Check all other uses of type modifiers.  */
  5027.  
  5028.   if (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
  5029.           | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED)))
  5030.     {
  5031.       if (!explicit_int && !explicit_char && !pedantic)
  5032.     error ("long, short, signed or unsigned used invalidly for `%s'", name);
  5033.       else if ((specbits & 1 << (int) RID_LONG) && (specbits & 1 << (int) RID_SHORT))
  5034.     error ("long and short specified together for `%s'", name);
  5035.       else if (((specbits & 1 << (int) RID_LONG) || (specbits & 1 << (int) RID_SHORT))
  5036.            && explicit_char)
  5037.     error ("long or short specified with char for `%s'", name);
  5038.       else if ((specbits & 1 << (int) RID_SIGNED) && (specbits & 1 << (int) RID_UNSIGNED))
  5039.     error ("signed and unsigned given together for `%s'", name);
  5040.       else
  5041.     {
  5042.       if (specbits & 1 << (int) RID_UNSIGNED)
  5043.         {
  5044.           if (longlong)
  5045.         type = long_long_unsigned_type_node;
  5046.           else if (specbits & 1 << (int) RID_LONG)
  5047.         type = long_unsigned_type_node;
  5048.           else if (specbits & 1 << (int) RID_SHORT)
  5049.         type = short_unsigned_type_node;
  5050.           else if (type == char_type_node)
  5051.         type = unsigned_char_type_node;
  5052.           else
  5053.         type = unsigned_type_node;
  5054.         }
  5055.       else if ((specbits & 1 << (int) RID_SIGNED)
  5056.            && type == char_type_node)
  5057.         type = signed_char_type_node;
  5058.       else if (longlong)
  5059.         type = long_long_integer_type_node;
  5060.       else if (specbits & 1 << (int) RID_LONG)
  5061.         type = long_integer_type_node;
  5062.       else if (specbits & 1 << (int) RID_SHORT)
  5063.         type = short_integer_type_node;
  5064.     }
  5065.     }
  5066.  
  5067.   /* Set CONSTP if this declaration is `const', whether by
  5068.      explicit specification or via a typedef.
  5069.      Likewise for VOLATILEP.  */
  5070.  
  5071.   constp = !! (specbits & 1 << (int) RID_CONST) + TREE_READONLY (type);
  5072.   volatilep = !! (specbits & 1 << (int) RID_VOLATILE) + TREE_VOLATILE (type);
  5073.   staticp = 0;
  5074.   inlinep = !! (specbits & (1 << (int) RID_INLINE));
  5075.   if (constp > 1)
  5076.     warning ("duplicate `const'");
  5077.   if (volatilep > 1)
  5078.     warning ("duplicate `volatile'");
  5079.   virtualp = specbits & (1 << (int) RID_VIRTUAL);
  5080.   if (specbits & (1 << (int) RID_STATIC))
  5081.     staticp = 1 + (decl_context == FIELD);
  5082.  
  5083.   if (virtualp && staticp == 2)
  5084.     {
  5085.       error ("member `%s' cannot be declared both virtual and static", name);
  5086.       staticp = 0;
  5087.     }
  5088.   friendp = specbits & (1 << (int) RID_FRIEND);
  5089.   specbits &= ~ ((1 << (int) RID_VIRTUAL) | (1 << (int) RID_FRIEND));
  5090.  
  5091.   /* Warn if two storage classes are given. Default to `auto'.  */
  5092.  
  5093.   if (specbits)
  5094.     {
  5095.       if (specbits & 1 << (int) RID_STATIC) nclasses++;
  5096.       if (specbits & 1 << (int) RID_EXTERN) nclasses++;
  5097.       if (decl_context == PARM && nclasses > 0)
  5098.     error ("storage class specifiers invalid in parameter declarations");
  5099.       if (specbits & 1 << (int) RID_TYPEDEF)
  5100.     {
  5101.       if (decl_context == PARM)
  5102.         error ("typedef declaration invalid in parameter declaration");
  5103.       nclasses++;
  5104.     }
  5105.       if (specbits & 1 << (int) RID_AUTO) nclasses++;
  5106.       if (specbits & 1 << (int) RID_REGISTER) nclasses++;
  5107.     }
  5108.  
  5109.   /* Give error if `virtual' is used outside of class declaration.  */
  5110.   if (virtualp && current_class_name == NULL_TREE)
  5111.     {
  5112.       error ("virtual outside class declaration");
  5113.       virtualp = 0;
  5114.     }
  5115.  
  5116.   /* Warn about storage classes that are invalid for certain
  5117.      kinds of declarations (parameters, typenames, etc.).  */
  5118.  
  5119.   if (nclasses > 1)
  5120.     error ("multiple storage classes in declaration of `%s'", name);
  5121.   else if (decl_context != NORMAL && nclasses > 0)
  5122.     {
  5123.       if (decl_context == PARM && (specbits & ((1 << (int) RID_REGISTER)|(1 << (int) RID_AUTO))))
  5124.     ;
  5125.       else if (decl_context == FIELD
  5126.            && (specbits
  5127.            & (/* C++ allows static class elements  */
  5128.               (1 << (int) RID_STATIC)
  5129.               /* ...and inlines  */
  5130.               | (1 << (int) RID_INLINE)
  5131.               /* ...and signed and unsigned elements.  */
  5132.               | (1 << (int) RID_SIGNED)
  5133.               | (1 << (int) RID_UNSIGNED))))
  5134.     ;
  5135.       else if (decl_context == FIELD && (specbits & (1 << (int) RID_TYPEDEF)))
  5136.     {
  5137.       /* A typedef which was made in a class's scope.  */
  5138.       tree loc_typedecl;
  5139.       register int i = sizeof (struct lang_decl_flags) / sizeof (int);
  5140.       register int *pi;
  5141.  
  5142.       /* keep `grokdeclarator' from thinking we are in PARM context.  */
  5143.       pushlevel (0);
  5144.       loc_typedecl = start_decl (declarator, declspecs, initialized, NULL_TREE);
  5145.  
  5146.       pi = (int *) permalloc (sizeof (struct lang_decl_flags));
  5147.       while (i > 0)
  5148.         pi[--i] = 0;
  5149.       DECL_LANG_SPECIFIC (loc_typedecl) = (struct lang_decl *) pi;
  5150.       poplevel (0, 0, 0);
  5151.  
  5152.       if (TREE_CODE (TREE_TYPE (loc_typedecl)) == ENUMERAL_TYPE)
  5153.         {
  5154.           tree ref = lookup_tag (ENUMERAL_TYPE, DECL_NAME (loc_typedecl), current_binding_level, 0);
  5155.           if (! ref)
  5156.         pushtag (DECL_NAME (loc_typedecl), TREE_TYPE (loc_typedecl));
  5157.         }
  5158.       if (IDENTIFIER_CLASS_VALUE (DECL_NAME (loc_typedecl)))
  5159.         error_with_decl (loc_typedecl,
  5160.                  "typedef of `%s' in class scope hides previous declaration");
  5161. #if 0
  5162.       /* Must push this into scope via `pushdecl_class_level'.  */
  5163.       IDENTIFIER_CLASS_VALUE (DECL_NAME (loc_typedecl)) = loc_typedecl;
  5164. #endif
  5165.       return loc_typedecl;
  5166.     }
  5167.       else
  5168.     {
  5169.       error ((decl_context == FIELD
  5170.           ? "storage class specified for structure field `%s'"
  5171.           : (decl_context == PARM
  5172.              ? "storage class specified for parameter `%s'"
  5173.              : "storage class specified for typename")),
  5174.          name);
  5175.       specbits &= ~ ((1 << (int) RID_REGISTER) | (1 << (int) RID_AUTO)
  5176.              | (1 << (int) RID_EXTERN));
  5177.     }
  5178.     }
  5179.   else if (current_binding_level == global_binding_level)
  5180.     {
  5181.       if (specbits & (1 << (int) RID_AUTO))
  5182.     error ("top-level declaration of `%s' specifies `auto'", name);
  5183. #if 0
  5184.       if (specbits & (1 << (int) RID_REGISTER))
  5185.     error ("top-level declaration of `%s' specifies `register'", name);
  5186. #endif
  5187. #if 0
  5188.       /* I'm not sure under what circumstances we should turn
  5189.      on the extern bit, and under what circumstances we should
  5190.      warn if other bits are turned on.  */
  5191.       if (decl_context == NORMAL
  5192.       && (specbits & (1 << (int) RID_EXTERN)) == 0
  5193.       && ! root_lang_context_p ())
  5194.     {
  5195.       specbits |= (1 << (int) RID_EXTERN);
  5196.     }
  5197. #endif
  5198.     }
  5199.  
  5200.   /* Now figure out the structure of the declarator proper.
  5201.      Descend through it, creating more complex types, until we reach
  5202.      the declared identifier (or NULL_TREE, in an absolute declarator).  */
  5203.  
  5204.   while (declarator && TREE_CODE (declarator) != IDENTIFIER_NODE)
  5205.     {
  5206.       /* Each level of DECLARATOR is either an ARRAY_REF (for ...[..]),
  5207.      an INDIRECT_REF (for *...),
  5208.      a CALL_EXPR (for ...(...)),
  5209.      an identifier (for the name being declared)
  5210.      or a null pointer (for the place in an absolute declarator
  5211.      where the name was omitted).
  5212.      For the last two cases, we have just exited the loop.
  5213.  
  5214.      For C++ it could also be
  5215.      a SCOPE_REF (for class :: ...).  In this case, we have converted
  5216.      sensible names to types, and those are the values we use to
  5217.      qualify the member name.
  5218.      an ADDR_EXPR (for &...),
  5219.      a BIT_NOT_EXPR (for destructors)
  5220.      a TYPE_EXPR (for operator typenames)
  5221.      a WRAPPER_EXPR (for wrappers)
  5222.      an ANTI_WRAPPER_EXPR (for averting wrappers)
  5223.  
  5224.      At this point, TYPE is the type of elements of an array,
  5225.      or for a function to return, or for a pointer to point to.
  5226.      After this sequence of ifs, TYPE is the type of the
  5227.      array or function or pointer, and DECLARATOR has had its
  5228.      outermost layer removed.  */
  5229.  
  5230.       if (TREE_CODE (type) == ERROR_MARK
  5231.       && TREE_CODE (declarator) != OP_IDENTIFIER)
  5232.     {
  5233.       if (TREE_CODE (declarator) == SCOPE_REF)
  5234.         declarator = TREE_OPERAND (declarator, 1);
  5235.       else
  5236.         declarator = TREE_OPERAND (declarator, 0);
  5237.       continue;
  5238.     }
  5239.       if (quals != NULL_TREE
  5240.       && (declarator == NULL_TREE
  5241.           || TREE_CODE (declarator) != SCOPE_REF))
  5242.     {
  5243.       if (ctype == NULL_TREE && TREE_CODE (type) == METHOD_TYPE)
  5244.         ctype = TYPE_METHOD_BASETYPE (type);
  5245.       if (ctype != NULL_TREE)
  5246.         {
  5247.           tree dummy = build_decl (TYPE_DECL, NULL_TREE, type);
  5248.           ctype = grok_method_quals (ctype, dummy, quals);
  5249.           type = TREE_TYPE (dummy);
  5250.           quals = NULL_TREE;
  5251.         }
  5252.     }
  5253.       switch (TREE_CODE (declarator))
  5254.     {
  5255.     case ARRAY_REF:
  5256.       {
  5257.         register tree itype = NULL_TREE;
  5258.         register tree size = TREE_OPERAND (declarator, 1);
  5259.  
  5260.         declarator = TREE_OPERAND (declarator, 0);
  5261.  
  5262.         /* Check for some types that there cannot be arrays of.  */
  5263.  
  5264.         if (type == void_type_node)
  5265.           {
  5266.         error ("declaration of `%s' as array of voids", name);
  5267.         type = error_mark_node;
  5268.           }
  5269.  
  5270.         if (TREE_CODE (type) == FUNCTION_TYPE)
  5271.           {
  5272.         error ("declaration of `%s' as array of functions", name);
  5273.         type = error_mark_node;
  5274.           }
  5275.  
  5276.         if (size == error_mark_node)
  5277.           type = error_mark_node;
  5278.  
  5279.         if (type == error_mark_node)
  5280.           continue;
  5281.  
  5282.         if (size)
  5283.           {
  5284.         /* Must suspend_momentary here because the index
  5285.            type may need to live until the end of the function.
  5286.            For example, it is used in the declaration of a
  5287.            variable which requires destructing at the end of
  5288.            the function; then build_vec_delete will need this
  5289.            value.  */
  5290.         int yes = suspend_momentary ();
  5291.         /* might be a cast */
  5292.         if (TREE_CODE (size) == NOP_EXPR
  5293.             && TREE_TYPE (size) == TREE_TYPE (TREE_OPERAND (size, 0)))
  5294.           size = TREE_OPERAND (size, 0);
  5295.  
  5296.         if (TREE_CODE (TREE_TYPE (size)) != INTEGER_TYPE
  5297.             && TREE_CODE (TREE_TYPE (size)) != ENUMERAL_TYPE)
  5298.           {
  5299.             error ("size of array `%s' has non-integer type", name);
  5300.             size = integer_one_node;
  5301.           }
  5302.         if (TREE_READONLY_DECL_P (size))
  5303.           size = decl_constant_value (size);
  5304.         if (pedantic && integer_zerop (size))
  5305.           warning ("ANSI C forbids zero-size array `%s'", name);
  5306.         if (TREE_LITERAL (size))
  5307.           {
  5308.             if (INT_CST_LT (size, integer_zero_node))
  5309.               {
  5310.             error ("size of array `%s' is negative", name);
  5311.             size = integer_one_node;
  5312.               }
  5313.             itype = build_index_type (build_int_2 (TREE_INT_CST_LOW (size) - 1, 0));
  5314.           }
  5315.         else
  5316.           {
  5317.             if (pedantic)
  5318.               warning ("ANSI C forbids variable-size array `%s'", name);
  5319.             itype = build_binary_op (MINUS_EXPR, size, integer_one_node);
  5320.             itype = build_index_type (itype);
  5321.           }
  5322.         resume_momentary (yes);
  5323.           }
  5324.  
  5325.         /* Build the array type itself.
  5326.            Merge any constancy or volatility into the target type.  */
  5327.  
  5328.         if (constp || volatilep)
  5329.           type = build_type_variant (type, constp, volatilep);
  5330.  
  5331. #if 0   /* don't clear these; leave them set so that the array type
  5332.        or the variable is itself const or volatile.  */
  5333.         constp = 0;
  5334.         volatilep = 0;
  5335. #endif
  5336.  
  5337.         type = build_cplus_array_type (type, itype);
  5338.         ctype = NULL_TREE;
  5339.       }
  5340.       break;
  5341.  
  5342.     case CALL_EXPR:
  5343.       {
  5344.         tree arg_types;
  5345.  
  5346.         /* Declaring a function type.
  5347.            Make sure we have a valid type for the function to return.  */
  5348.         /* Is this an error?  Should they be merged into TYPE here?  */
  5349.         if (pedantic && (constp || volatilep))
  5350.           warning ("function declared to return const or volatile result");
  5351.  
  5352.         /* Warn about some types functions can't return.  */
  5353.  
  5354.         if (TREE_CODE (type) == FUNCTION_TYPE)
  5355.           {
  5356.         error ("`%s' declared as function returning a function", name);
  5357.         type = integer_type_node;
  5358.           }
  5359.         if (TREE_CODE (type) == ARRAY_TYPE)
  5360.           {
  5361.         error ("`%s' declared as function returning an array", name);
  5362.         type = integer_type_node;
  5363.           }
  5364.  
  5365.         if (ctype == NULL_TREE
  5366.         && decl_context == FIELD
  5367.         && (friendp == 0 || dname == current_class_name))
  5368.           ctype = current_class_type;
  5369.  
  5370.         if (ctype && flags == TYPENAME_FLAG)
  5371.           TYPE_HAS_CONVERSION (ctype) = 1;
  5372.         if (ctype && DECL_NAME (TYPE_NAME (ctype)) == dname)
  5373.           {
  5374.         /* We are within a class's scope. If our declarator name
  5375.            is the same as the class name, and we are defining
  5376.            a function, then it is a constructor/destructor, and
  5377.            therefore returns a void type.  */
  5378.  
  5379.         if (flags == DTOR_FLAG)
  5380.           {
  5381.             if (staticp == 2)
  5382.               error ("destructor cannot be static member function");
  5383.             if (decl_context == FIELD)
  5384.               {
  5385.             if (! member_function_or_else (ctype, current_class_type,
  5386.                                "destructor for alien class `%s' cannot be a member"))
  5387.               return NULL_TREE;
  5388.             if (TYPE_HAS_DESTRUCTOR (ctype))
  5389.               error_with_aggr_type (ctype, "class `%s' already has destructor defined");
  5390.               }
  5391.           }
  5392.         else if (flags == WRAPPER_FLAG || flags == ANTI_WRAPPER_FLAG)
  5393.           {
  5394.             if (staticp == 2)
  5395.               error ("wrapper cannot be static member function");
  5396.             if (decl_context == FIELD)
  5397.               {
  5398.             if (! member_function_or_else (ctype, current_class_type,
  5399.                                "wrapper for alien class `%s' cannot be member"))
  5400.               return NULL_TREE;
  5401.             TYPE_WRAP_TYPE (ctype) = TYPE_MAIN_VARIANT (ctype);
  5402.               }
  5403.           }
  5404.         else if (flags == WRAPPER_PRED_FLAG)
  5405.           {
  5406.             if (staticp == 2)
  5407.               error ("wrapper predicate cannot be static member function");
  5408.             if (TREE_CODE (type) != INTEGER_TYPE)
  5409.               {
  5410.             error ("wrapper predicated must return an integer type");
  5411.             type = integer_type_node;
  5412.               }
  5413.             if (decl_context == FIELD)
  5414.               {
  5415.             if (! member_function_or_else (ctype, current_class_type,
  5416.                                "wrapper predicate for alien class `%s' cannot be member"))
  5417.               return NULL_TREE;
  5418.             TYPE_HAS_WRAPPER_PRED (ctype) = 1;
  5419.               }
  5420.           }
  5421.         else            /* its a constructor. */
  5422.           {
  5423.             if (staticp == 2)
  5424.               error ("constructor cannot be static member function");
  5425.             if (virtualp || friendp)
  5426.               {
  5427.             error ("constructors cannot be declared virtual or friend");
  5428.             virtualp = 0;
  5429.             friendp = 0;
  5430.               }
  5431.             if (specbits & ~((1 << (int) RID_INLINE)|(1 << (int) RID_STATIC)))
  5432.               error ("return value type specifier for `%s' ignored",
  5433.                  flags == DTOR_FLAG ? "destructor" : "constructor");
  5434.             type = TYPE_POINTER_TO (ctype);
  5435.             if (decl_context == FIELD)
  5436.               {
  5437.             if (! member_function_or_else (ctype, current_class_type,
  5438.                                "constructor for alien class `%s' cannot be member"))
  5439.               return NULL_TREE;
  5440.             TYPE_HAS_CONSTRUCTOR (ctype) = 1;
  5441.             assert (return_type == return_ctor);
  5442.               }
  5443.           }
  5444.         if (decl_context == FIELD)
  5445.           staticp = 0;
  5446.           }
  5447.         else if (friendp && virtualp)
  5448.           {
  5449.         /* Cannot be both friend and virtual.  */
  5450.         error ("virtual functions cannot be friends");
  5451.         specbits ^= (1 << (int) RID_FRIEND);
  5452.           }
  5453.  
  5454.         if (decl_context == NORMAL && friendp)
  5455.           error ("friend declaration not in class definition");
  5456.  
  5457.         /* Picky up type qualifiers which should be applied to `this'.  */
  5458.         quals = TREE_OPERAND (declarator, 2);
  5459.  
  5460.         /* Traditionally, declaring return type float means double.  */
  5461.  
  5462.         if (flag_traditional && type == float_type_node)
  5463.           type = double_type_node;
  5464.  
  5465.         /* Construct the function type and go to the next
  5466.            inner layer of declarator.  */
  5467.  
  5468.         {
  5469.           int funcdef_p;
  5470.           tree inner_parms = TREE_OPERAND (declarator, 1);
  5471.           tree inner_decl = TREE_OPERAND (declarator, 0);
  5472.  
  5473.           declarator = TREE_OPERAND (declarator, 0);
  5474.  
  5475.           if (inner_decl && TREE_CODE (inner_decl) == SCOPE_REF)
  5476.         inner_decl = TREE_OPERAND (inner_decl, 1);
  5477.  
  5478.           /* Say it's a definition only for the CALL_EXPR
  5479.          closest to the identifier.  */
  5480.           funcdef_p =
  5481.         (inner_decl &&
  5482.          (TREE_CODE (inner_decl) == IDENTIFIER_NODE
  5483.           || TREE_CODE (inner_decl) == OP_IDENTIFIER
  5484.           || TREE_CODE (inner_decl) == TYPE_EXPR)) ? funcdef_flag : 0;
  5485.  
  5486.           arg_types = grokparms (inner_parms, funcdef_p);
  5487.         }
  5488.  
  5489.         if (declarator)
  5490.           {
  5491.         /* Get past destructors, wrappers, etc.
  5492.            We know we have one because FLAGS will be non-zero.
  5493.  
  5494.            Complain about improper parameter lists here.  */
  5495.         if (TREE_CODE (declarator) == BIT_NOT_EXPR)
  5496.           {
  5497.             declarator = TREE_OPERAND (declarator, 0);
  5498.  
  5499.             if (strict_prototype == 0 && arg_types == NULL_TREE)
  5500.               arg_types = void_list_node;
  5501.             else if (arg_types == NULL_TREE
  5502.                  || arg_types != void_list_node)
  5503.               {
  5504.             error ("destructors cannot be specified with parameters");
  5505.             arg_types = void_list_node;
  5506.               }
  5507.           }
  5508.         else if (TREE_CODE (declarator) == WRAPPER_EXPR)
  5509.           {
  5510.             /* Report misuse of wrappers and their associates.
  5511.                Note that because wrappers may be invoked
  5512.                quite a bit implicitly, if we give an error
  5513.                message, we make an effort to fix that error
  5514.                so that spurious errors do not show up.  */
  5515.             if (TREE_CODE (TREE_OPERAND (declarator, 0)) == COND_EXPR)
  5516.               {
  5517.             /* First parameter must be a pointer to a member function.
  5518.                Rest of parameters must all be default parameters.  */
  5519.             if (arg_types == NULL_TREE
  5520.                 || arg_types == void_list_node
  5521.                 || TREE_CODE (TREE_VALUE (arg_types)) != POINTER_TYPE
  5522.                 || TREE_CODE (TREE_TYPE (TREE_VALUE (arg_types))) != METHOD_TYPE)
  5523.               {
  5524.                 error ("wrapper predicate takes a pointer-to-member-function as first argument");
  5525.                 arg_types = NULL_TREE;
  5526.               }
  5527.             else if (TREE_CHAIN (arg_types)
  5528.                  && TREE_CHAIN (arg_types) != void_list_node
  5529.                  && TREE_PURPOSE (TREE_CHAIN (arg_types)) == NULL_TREE)
  5530.               {
  5531.                 error ("all arguments past first must be default for wrapper predicate");
  5532.                 TREE_CHAIN (arg_types) = NULL_TREE;
  5533.               }
  5534.             declarator = wrapper_pred_name;
  5535.               }
  5536.             else
  5537.               {
  5538.             /* First parameter must be an int.
  5539.                Second parameter must be a pointer to a member function.  */
  5540.             if (arg_types == NULL_TREE || TREE_CHAIN (arg_types) == NULL_TREE)
  5541.               {
  5542.                 error ("wrappers must have at least two arguments (int, pointer-to-member-function)");
  5543.                 arg_types = NULL_TREE;
  5544.               }
  5545.             else
  5546.               {
  5547.                 if (TREE_CODE (TREE_VALUE (arg_types)) != INTEGER_TYPE)
  5548.                   {
  5549.                 error ("first argument to wrapper must be an integer");
  5550.                 TREE_VALUE (arg_types) = integer_type_node;
  5551.                   }
  5552.                 if (TREE_CODE (TREE_VALUE (TREE_CHAIN (arg_types))) != POINTER_TYPE
  5553.                 || TREE_CODE (TREE_TYPE (TREE_VALUE (TREE_CHAIN (arg_types)))) != METHOD_TYPE)
  5554.                   {
  5555.                 error ("second argument to wrapper must be a pointer-to-member-function type");
  5556.                 TREE_CHAIN (arg_types) = NULL_TREE;
  5557.                   }
  5558.               }
  5559.             declarator = wrapper_name;
  5560.               }
  5561.           }
  5562.         else if (TREE_CODE (declarator) == ANTI_WRAPPER_EXPR)
  5563.           declarator = anti_wrapper_name;
  5564.           }
  5565.  
  5566.         type = build_function_type (type, flag_traditional ? 0 : arg_types);
  5567.       }
  5568.       break;
  5569.  
  5570.     case ADDR_EXPR:
  5571.     case INDIRECT_REF:
  5572.       /* Filter out pointers-to-references and references-to-references.
  5573.          We can get these if a TYPE_DECL is used.  */
  5574.  
  5575.       if (TREE_CODE (type) == REFERENCE_TYPE)
  5576.         {
  5577.           error ("cannot declare %s to references",
  5578.              TREE_CODE (declarator) == ADDR_EXPR
  5579.              ? "references" : "pointers");
  5580.           declarator = TREE_OPERAND (declarator, 0);
  5581.           continue;
  5582.         }
  5583.  
  5584.       /* Merge any constancy or volatility into the target type
  5585.          for the pointer.  */
  5586.  
  5587.       if (constp || volatilep)
  5588.         {
  5589.           type = build_type_variant (type, constp, volatilep);
  5590.           if (IS_AGGR_TYPE (type))
  5591.         build_pointer_type (type);
  5592.         }
  5593.       constp = 0;
  5594.       volatilep = 0;
  5595.  
  5596.       if (TREE_CODE (declarator) == ADDR_EXPR)
  5597.         if (TREE_CODE (type) == FUNCTION_TYPE)
  5598.           {
  5599.         error ("cannot declare references to functions; use pointer to function instead");
  5600.         type = build_pointer_type (type);
  5601.           }
  5602.         else
  5603.           {
  5604.         if (TYPE_MAIN_VARIANT (type) == void_type_node)
  5605.           error ("invalid type: `void &'");
  5606.         else
  5607.           type = build_reference_type (type);
  5608.           }
  5609.       else
  5610.         type = build_pointer_type (type);
  5611.  
  5612.       /* Process a list of type modifier keywords (such as
  5613.          const or volatile) that were given inside the `*' or `&'.  */
  5614.  
  5615.       if (TREE_TYPE (declarator))
  5616.         {
  5617.           register tree typemodlist;
  5618.           int erred = 0;
  5619.           for (typemodlist = TREE_TYPE (declarator); typemodlist;
  5620.            typemodlist = TREE_CHAIN (typemodlist))
  5621.         {
  5622.           if (TREE_VALUE (typemodlist) == ridpointers[(int) RID_CONST])
  5623.             constp++;
  5624.           else if (TREE_VALUE (typemodlist) == ridpointers[(int) RID_VOLATILE])
  5625.             volatilep++;
  5626.           else if (!erred)
  5627.             {
  5628.               erred = 1;
  5629.               error ("invalid type modifier within %s declarator",
  5630.                  TREE_CODE (declarator) == ADDR_EXPR
  5631.                  ? "reference" : "pointer");
  5632.             }
  5633.         }
  5634.           if (constp > 1)
  5635.         warning ("duplicate `const'");
  5636.           if (volatilep > 1)
  5637.         warning ("duplicate `volatile'");
  5638.         }
  5639.       declarator = TREE_OPERAND (declarator, 0);
  5640.       ctype = NULL_TREE;
  5641.       break;
  5642.  
  5643.     case SCOPE_REF:
  5644.       {
  5645.         /* We have converted type names to NULL_TREE if the
  5646.            name was bogus, or to a _TYPE node, if not.
  5647.  
  5648.            The variable CTYPE holds the type we will ultimately
  5649.            resolve to.  The code here just needs to build
  5650.            up appropriate member types.  */
  5651.         tree sname = TREE_OPERAND (declarator, 1);
  5652.  
  5653.         if (TREE_OPERAND (declarator, 0) == NULL_TREE)
  5654.           {
  5655.         /* We had a reference to a global decl, or
  5656.            perhaps we were given a non-aggregate typedef,
  5657.            in which case we cleared this out, and should just
  5658.            keep going as though it wasn't there.  */
  5659.         declarator = sname;
  5660.         continue;
  5661.           }
  5662.         ctype = TREE_OPERAND (declarator, 0);
  5663.  
  5664.         if (sname == NULL_TREE)
  5665.           goto done_scoping;
  5666.  
  5667.         /* Destructors can have their visibilities changed as well.  */
  5668.         if (TREE_CODE (sname) == BIT_NOT_EXPR)
  5669.           sname = TREE_OPERAND (sname, 0);
  5670.  
  5671.         if (TREE_CODE (sname) == IDENTIFIER_NODE)
  5672.           {
  5673.         /* This is the `standard' use of the scoping operator:
  5674.            basetype :: member .  */
  5675.  
  5676.         if (ctype == current_class_type || friendp)
  5677.           if (TREE_CODE (type) == FUNCTION_TYPE)
  5678.             type = build_cplus_method_type (ctype, TREE_TYPE (type), TYPE_ARG_TYPES (type));
  5679.           else
  5680.             type = build_member_type (ctype, type);
  5681.         else if (TYPE_SIZE (ctype) != 0
  5682.             || (specbits & (1<<(int)RID_TYPEDEF)))
  5683.           {
  5684.             tree t;
  5685.             /* have to move this code elsewhere in this function.
  5686.                this code is used for i.e., typedef int A::M; M *pm; */
  5687.  
  5688.             if (decl_context == FIELD)
  5689.               {
  5690.             t = lookup_field (ctype, sname, 0);
  5691.             if (t)
  5692.               {
  5693.                 t = build_lang_field_decl (FIELD_DECL, build_nt (SCOPE_REF, ctype, t), type);
  5694.                 DECL_INITIAL (t) = init;
  5695.                 return t;
  5696.               }
  5697.             /* No such field, try member functions.  */
  5698.             t = lookup_fnfields (CLASSTYPE_AS_LIST (ctype), sname, 0);
  5699.             if (t)
  5700.               {
  5701.                 if (flags == DTOR_FLAG)
  5702.                   t = TREE_VALUE (t);
  5703.                 else if (CLASSTYPE_METHOD_VEC (ctype)
  5704.                      && TREE_VALUE (t) == TREE_VEC_ELT (CLASSTYPE_METHOD_VEC (ctype), 0))
  5705.                   {
  5706.                 /* Don't include destructor with constructors.  */
  5707.                 t = TREE_CHAIN (TREE_VALUE (t));
  5708.                 if (t == NULL_TREE)
  5709.                   error ("class `%s' does not have any constructors", IDENTIFIER_POINTER (sname));
  5710.                 t = build_tree_list (NULL_TREE, t);
  5711.                   }
  5712.                 t = build_lang_field_decl (FIELD_DECL, build_nt (SCOPE_REF, ctype, t), type);
  5713.                 DECL_INITIAL (t) = init;
  5714.                 return t;
  5715.               }
  5716.  
  5717.             if (flags == TYPENAME_FLAG)
  5718.               error_with_aggr_type (ctype, "type conversion is not a member of structure `%s'");
  5719.             else
  5720.               error ("field `%s' is not a member of structure `%s'",
  5721.                  IDENTIFIER_POINTER (sname),
  5722.                  TYPE_NAME_STRING (ctype));
  5723.               }
  5724.             if (TREE_CODE (type) == FUNCTION_TYPE)
  5725.               type = build_cplus_method_type (ctype, TREE_TYPE (type), TYPE_ARG_TYPES (type));
  5726.             else
  5727.               type = build_member_type (ctype, type);
  5728.           }
  5729.         else
  5730.           sorry ("structure `%s' not yet defined",
  5731.              TYPE_NAME_STRING (ctype));
  5732.         declarator = sname;
  5733.           }
  5734.         else if (TREE_CODE (sname) == TYPE_EXPR)
  5735.           {
  5736.         /* A TYPE_EXPR will change types out from under us.
  5737.            So do the TYPE_EXPR now, and make this SCOPE_REF
  5738.            inner to the TYPE_EXPR's CALL_EXPR.
  5739.  
  5740.            This does not work if we don't get a CALL_EXPR back.
  5741.            I did not think about error recovery, hence the
  5742.            assert (0).  */
  5743.  
  5744.         /* Get the CALL_EXPR.  */
  5745.         sname = grokoptypename (sname, 0);
  5746.         assert (TREE_CODE (sname) == CALL_EXPR);
  5747.         type = TREE_TYPE (TREE_OPERAND (sname, 0));
  5748.         /* Scope the CALL_EXPR's name.  */
  5749.         TREE_OPERAND (declarator, 1) = TREE_OPERAND (sname, 0);
  5750.         /* Put the SCOPE_EXPR in the CALL_EXPR's innermost position.  */
  5751.         TREE_OPERAND (sname, 0) = declarator;
  5752.         /* Now work from the CALL_EXPR.  */
  5753.         declarator = sname;
  5754.         continue;
  5755.           }
  5756.         else if (TREE_CODE (sname) == SCOPE_REF)
  5757.           abort ();
  5758.         else
  5759.           {
  5760.           done_scoping:
  5761.         declarator = TREE_OPERAND (declarator, 1);
  5762.         if (declarator && TREE_CODE (declarator) == CALL_EXPR)
  5763.           /* In this case, we will deal with it later.  */
  5764.           ;
  5765.         else
  5766.           {
  5767.             if (TREE_CODE (type) == FUNCTION_TYPE)
  5768.               type = build_cplus_method_type (ctype, TREE_TYPE (type), TYPE_ARG_TYPES (type));
  5769.             else
  5770.               type = build_member_type (ctype, type);
  5771.           }
  5772.           }
  5773.       }
  5774.       break;
  5775.  
  5776.     case OP_IDENTIFIER:
  5777.       /* This is exceptional, in that we must finalize a 
  5778.          member type before calling grokopexpr, if we want
  5779.          to use the declared type information to resolve
  5780.          ambiguities.  Do not get fooled by friends,
  5781.          which do not have a member type built for them
  5782.          unless they were explicitly scoped (in which case that
  5783.          will have been taken care of in the SCOPE_REF case.  */
  5784.       if (TREE_CODE (type) != FUNCTION_TYPE
  5785.           && TREE_CODE (type) != METHOD_TYPE)
  5786.         {
  5787.           error ("operator name missing at this point in file");
  5788.           if (ctype)
  5789.         type = build_cplus_method_type (ctype, type, NULL_TREE);
  5790.           else
  5791.         type = build_function_type (type, NULL_TREE);
  5792.         }
  5793.       if (TREE_CODE (TREE_OPERAND (declarator, 0)) == NEW_EXPR)
  5794.         {
  5795.           int was_method = ctype || TREE_CODE (type) == METHOD_TYPE;
  5796.           type = coerce_new_type (ctype, type);
  5797.           if (was_method)
  5798.         staticp = 2;
  5799.         }
  5800.       else if (TREE_CODE (TREE_OPERAND (declarator, 0)) == DELETE_EXPR)
  5801.         {
  5802.           int was_method = ctype || TREE_CODE (type) == METHOD_TYPE;
  5803.           type = coerce_delete_type (ctype, type);
  5804.           if (was_method)
  5805.         staticp = 2;
  5806.         }
  5807.       else if (TREE_CODE (type) == FUNCTION_TYPE
  5808.            && ctype != 0
  5809.            && (friendp == 0 || staticp < 2))
  5810.         type = build_cplus_method_type (ctype, TREE_TYPE (type), TYPE_ARG_TYPES (type));
  5811.       {
  5812.         tree tmp = declarator;
  5813.         declarator = grokopexpr (&tmp, ctype, type, 0,
  5814.                      staticp == 2 ? 2 : 1);
  5815.       }
  5816.       if (declarator == NULL_TREE)
  5817.         return NULL_TREE;
  5818.       name = IDENTIFIER_POINTER (declarator);
  5819.       break;
  5820.  
  5821.     case BIT_NOT_EXPR:
  5822.       declarator = TREE_OPERAND (declarator, 0);
  5823.       break;
  5824.  
  5825.     case TYPE_EXPR:
  5826.       declarator = grokoptypename (declarator, 0);
  5827.       if (explicit_int != -1)
  5828.         if (comp_target_types (type, TREE_TYPE (TREE_OPERAND (declarator, 0)), 1) == 0)
  5829.           error ("type conversion function declared to return incongruent type");
  5830.         else
  5831.           warning ("return type specified for type conversion function");
  5832.       type = TREE_TYPE (TREE_OPERAND (declarator, 0));
  5833.       break;
  5834.  
  5835.     case WRAPPER_EXPR:
  5836.       if (TREE_CODE (TREE_OPERAND (declarator, 0)) == COND_EXPR)
  5837.         declarator = wrapper_pred_name;
  5838.       else
  5839.         declarator = wrapper_name;
  5840.       break;
  5841.  
  5842.     case ANTI_WRAPPER_EXPR:
  5843.       declarator = anti_wrapper_name;
  5844.       break;
  5845.  
  5846.     case RECORD_TYPE:
  5847.     case UNION_TYPE:
  5848.     case ENUMERAL_TYPE:
  5849.       declarator = 0;
  5850.       break;
  5851.  
  5852.     case ERROR_MARK:
  5853.       declarator = 0;
  5854.       break;
  5855.  
  5856.     default:
  5857.       assert (0);
  5858.     }
  5859.  
  5860.       /* layout_type (type); */
  5861. #if 0
  5862.       /* @@ Should perhaps replace the following code by changes in
  5863.        * @@ stor_layout.c. */
  5864.       if (TREE_CODE (type) == FUNCTION_DECL)
  5865.     {
  5866.       /* A function variable in C should be Pmode rather than EPmode
  5867.          because it has just the address of a function, no static chain.*/
  5868.       TYPE_MODE (type) = Pmode;
  5869.     }
  5870. #endif
  5871.     }
  5872.  
  5873.   /* Now TYPE has the actual type.  */
  5874.  
  5875.   /* If this is declaring a typedef name, return a TYPE_DECL.  */
  5876.  
  5877.   if (specbits & (1 << (int) RID_TYPEDEF))
  5878.     {
  5879.       tree decl;
  5880.  
  5881.       /* Note that the grammar rejects storage classes
  5882.      in typenames, fields or parameters.  */
  5883.       if (constp || volatilep)
  5884.     type = build_type_variant (type, constp, volatilep);
  5885.  
  5886.       /* If the user declares "struct {...} foo" then `foo' will have
  5887.      an anonymous name.  Fill that name in now.  Nothing can
  5888.      refer to it, so nothing needs know about the name change.
  5889.      The TYPE_NAME field was filled in by build_struct_xref.  */
  5890.       if (TYPE_NAME (type)
  5891. #ifndef BREAK_C_TAGS
  5892.       && current_lang_name == lang_name_cplusplus
  5893. #endif
  5894.       && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
  5895.       && ANON_AGGRNAME_P (DECL_NAME (TYPE_NAME (type))))
  5896.     {
  5897.       /* replace the anonymous name with the real name everywhere.  */
  5898.       lookup_tag_reverse (type, declarator);
  5899.       DECL_NAME (TYPE_NAME (type)) = declarator;
  5900.  
  5901.       /* Replace names of default constructors and/or destructors.  */
  5902.       if (TYPE_LANG_SPECIFIC (type) && CLASSTYPE_METHOD_VEC (type))
  5903.         {
  5904.           tree method_vec = CLASSTYPE_METHOD_VEC (type);
  5905.           tree fnptr = TREE_VEC_ELT (method_vec, 0);
  5906.           while (fnptr)
  5907.         {
  5908.           DECL_ORIGINAL_NAME (fnptr) = declarator;
  5909.           fnptr = TREE_CHAIN  (fnptr);
  5910.         }
  5911.         }
  5912.     }
  5913.  
  5914.       decl = build_decl (TYPE_DECL, declarator, type);
  5915.       if (quals)
  5916.     {
  5917.       if (ctype == NULL_TREE)
  5918.         {
  5919.           assert (TREE_CODE (type) == METHOD_TYPE);
  5920.           ctype = TYPE_METHOD_BASETYPE (type);
  5921.         }
  5922.       grok_method_quals (ctype, decl, quals);
  5923.     }
  5924.  
  5925.       if (resume_temporary)
  5926.     resume_temporary_allocation ();
  5927.       return decl;
  5928.     }
  5929.  
  5930.   /* Detect the case of an array type of unspecified size
  5931.      which came, as such, direct from a typedef name.
  5932.      We must copy the type, so that each identifier gets
  5933.      a distinct type, so that each identifier's size can be
  5934.      controlled separately by its own initializer.  */
  5935.  
  5936.   if (type == typedef_type && TREE_CODE (type) == ARRAY_TYPE
  5937.       && TYPE_DOMAIN (type) == 0)
  5938.     {
  5939.       type = build_cplus_array_type (TREE_TYPE (type), TYPE_DOMAIN (type));
  5940.     }
  5941.  
  5942.   /* If this is a type name (such as, in a cast or sizeof),
  5943.      compute the type and return it now.  */
  5944.  
  5945.   if (decl_context == TYPENAME)
  5946.     {
  5947.       /* Note that the grammar rejects storage classes
  5948.      in typenames, fields or parameters.  */
  5949.       if (constp || volatilep)
  5950.     type = build_type_variant (type, constp, volatilep);
  5951.  
  5952.       /* Special case: "friend class foo" looks like a TYPENAME context.  */
  5953.       if (friendp)
  5954.     {
  5955.       /* A friendly class?  */
  5956.       make_friend_class (current_class_type, TYPE_MAIN_VARIANT (type));
  5957.       type = void_type_node;
  5958.     }
  5959.       else if (quals)
  5960.     {
  5961.       tree dummy = build_decl (TYPE_DECL, declarator, type);
  5962.       if (ctype == NULL_TREE)
  5963.         {
  5964.           assert (TREE_CODE (type) == METHOD_TYPE);
  5965.           ctype = TYPE_METHOD_BASETYPE (type);
  5966.         }
  5967.       grok_method_quals (ctype, dummy, quals);
  5968.       type = TREE_TYPE (dummy);
  5969.     }
  5970.  
  5971.       if (resume_temporary)
  5972.     resume_temporary_allocation ();
  5973.       return type;
  5974.     }
  5975.  
  5976.   /* `void' at top level (not within pointer)
  5977.      is allowed only in typedefs or type names.
  5978.      We don't complain about parms either, but that is because
  5979.      a better error message can be made later.  */
  5980.  
  5981.   if (type == void_type_node && decl_context != PARM)
  5982.     {
  5983.       if (declarator != NULL_TREE
  5984.       && TREE_CODE (declarator) == IDENTIFIER_NODE)
  5985.     error ("variable or field `%s' declared void", name);
  5986.       else
  5987.     error ("variable or field declared void");
  5988.       type = integer_type_node;
  5989.     }
  5990.  
  5991.   /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
  5992.      or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE.  */
  5993.  
  5994.   {
  5995.     register tree decl;
  5996.  
  5997.     if (decl_context == PARM)
  5998.       {
  5999.     if (ctype)
  6000.       error ("cannot use `::' in parameter declaration");
  6001.     if (virtualp)
  6002.       error ("parameter declared `virtual'");
  6003.     if (quals)
  6004.       error ("`const' and `volatile' function specifiers invalid in parameter declaration");
  6005.     if (friendp)
  6006.       error ("invalid friend declaration");
  6007.     if (raises)
  6008.       error ("invalid raises declaration");
  6009.  
  6010.     /* A parameter declared as an array of T is really a pointer to T.
  6011.        One declared as a function is really a pointer to a function.
  6012.        One declared as a member is really a pointer to member.  */
  6013.  
  6014.     if (TREE_CODE (type) == ARRAY_TYPE)
  6015.       {
  6016.         /* Transfer const-ness of array into that of type pointed to.  */
  6017.         type = build_pointer_type
  6018.             (build_type_variant (TREE_TYPE (type), constp, volatilep));
  6019.         volatilep = constp = 0;
  6020.       }
  6021.     else if (TREE_CODE (type) == FUNCTION_TYPE)
  6022.       type = build_pointer_type (type);
  6023.     else if (TREE_CODE (type) == OFFSET_TYPE)
  6024.       type = build_pointer_type (type);
  6025.  
  6026.     decl = build_decl (PARM_DECL, declarator, type);
  6027.  
  6028.     /* Compute the type actually passed in the parmlist,
  6029.        for the case where there is no prototype.
  6030.        (For example, shorts and chars are passed as ints.)
  6031.        When there is a prototype, this is overridden later.  */
  6032.  
  6033.     DECL_ARG_TYPE (decl) = type;
  6034.     if (type == float_type_node)
  6035.       DECL_ARG_TYPE (decl) = double_type_node;
  6036.     else if (TREE_CODE (type) == INTEGER_TYPE
  6037.          && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
  6038.       DECL_ARG_TYPE (decl) = integer_type_node;
  6039.       }
  6040.     else if (decl_context == FIELD)
  6041.       {
  6042.     if (type == error_mark_node)
  6043.       {
  6044.         /* Happens when declaring arrays of sizes which
  6045.            are error_mark_node, for example.  */
  6046.         decl = NULL_TREE;
  6047.       }
  6048.     else if (TREE_CODE (type) == FUNCTION_TYPE)
  6049.       {
  6050.         if (current_lang_name == lang_name_c)
  6051.           {
  6052.         error ("field `%s' declared as a function in %s language context",
  6053.                name, IDENTIFIER_POINTER (current_lang_name));
  6054.         type = build_pointer_type (type);
  6055.           }
  6056.         else
  6057.           {
  6058.         if (friendp == 0)
  6059.           {
  6060.             if (ctype == NULL_TREE)
  6061.               ctype = current_class_type;
  6062.             if (staticp < 2)
  6063.               type = build_cplus_method_type (ctype, TREE_TYPE (type), TYPE_ARG_TYPES (type));
  6064.           }
  6065.         decl = grokfndecl (ctype, type, declarator, virtualp, flags, quals, raises, friendp ? -1 : 0);
  6066.         TREE_INLINE (decl) = inlinep;
  6067.         if (specbits & (1 << (int) RID_EXTERN))
  6068.           TREE_PUBLIC (decl) = 1;
  6069.           }
  6070.       }
  6071.     else if (TREE_CODE (type) == METHOD_TYPE)
  6072.       {
  6073.         decl = grokfndecl (ctype, type, declarator, virtualp, flags, quals, raises, friendp ? -1 : 0);
  6074.         TREE_INLINE (decl) = inlinep;
  6075.         if (specbits & (1 << (int) RID_EXTERN))
  6076.           TREE_PUBLIC (decl) = 1;
  6077.       }
  6078.     else if (TREE_CODE (type) == RECORD_TYPE
  6079.          && CLASSTYPE_DECLARED_EXCEPTION (type))
  6080.       {
  6081.         /* Handle a class-local exception declaration.  */
  6082.         decl = build_lang_field_decl (VAR_DECL, declarator, type);
  6083.         if (ctype == NULL_TREE)
  6084.           ctype = current_class_type;
  6085.         finish_exception_decl (TREE_CODE (TYPE_NAME (ctype)) == TYPE_DECL
  6086.                    ? DECL_NAME (TYPE_NAME (ctype)) : TYPE_NAME (ctype), decl);
  6087.         return void_type_node;
  6088.       }
  6089.     else if (TYPE_SIZE (type) == 0 && !staticp
  6090.          && (TREE_CODE (type) != ARRAY_TYPE || initialized == 0))
  6091.       {
  6092.         if (declarator)
  6093.           error ("field `%s' has incomplete type",
  6094.              IDENTIFIER_POINTER (declarator));
  6095.         else
  6096.           error ("field has incomplete type");
  6097.         type = error_mark_node;
  6098.         decl = NULL_TREE;
  6099.       }
  6100.     else
  6101.       {
  6102.         if (friendp)
  6103.           {
  6104.         if (declarator)
  6105.           error ("`%s' is neither function nor method; cannot be declared friend",
  6106.              IDENTIFIER_POINTER (declarator));
  6107.         else
  6108.           {
  6109.             error ("invalid friend declaration");
  6110.             return void_type_node;
  6111.           }
  6112.         friendp = 0;
  6113.           }
  6114.         decl = NULL_TREE;
  6115.       }
  6116.  
  6117.     if (friendp)
  6118.       {
  6119.         /* Friends are treated specially.  */
  6120.         if (ctype == current_class_type)
  6121.           warning ("member functions are implicitly friends of their class");
  6122.         else if (DECL_NAME (decl))
  6123.           return do_friend (ctype, declarator, decl, last_function_parms, flags, quals);
  6124.         else return void_type_node;
  6125.       }
  6126.  
  6127.     /* Structure field.  It may not be a function, except for C++ */
  6128.  
  6129.     if (decl == 0)
  6130.       {
  6131.         if (virtualp)
  6132.           error ("field declared `virtual'");
  6133.         if (quals)
  6134.           error ("`const' and `volatile' function specifiers invalid in field declaration");
  6135.         if (friendp)
  6136.           error ("invalid friend declaration");
  6137.         if (raises)
  6138.           error ("invalid raises declaration");
  6139.  
  6140.         if (staticp || (constp && initialized))
  6141.           {
  6142.         /* C++ allows static class members.
  6143.            All other work for this is done by grokfield.
  6144.            This VAR_DECL is built by build_lang_field_decl.
  6145.            All other VAR_DECLs are built by build_decl.  */
  6146.         if (current_lang_name == lang_name_c)
  6147.           {
  6148.             if (staticp)
  6149.               error ("field `%s' declared static in %s language context",
  6150.                  name, IDENTIFIER_POINTER (current_lang_name));
  6151.             else
  6152.               error ("field `%s' declared with initializer in %s language context",
  6153.                  name, IDENTIFIER_POINTER (current_lang_name));
  6154.           }
  6155.         decl = build_lang_field_decl (VAR_DECL, declarator, type);
  6156.         if (staticp)
  6157.           TREE_STATIC (decl) = 1;
  6158.         /* In class context, static means public visibility.  */
  6159.         TREE_PUBLIC (decl) = 1;
  6160.           }
  6161.         else
  6162.           decl = build_lang_field_decl (FIELD_DECL, declarator, type);
  6163.       }
  6164.       }
  6165.     else if (TREE_CODE (type) == FUNCTION_TYPE || TREE_CODE (type) == METHOD_TYPE)
  6166.       {
  6167.     int was_overloaded = 0;
  6168.     tree original_name = declarator;
  6169.  
  6170.     if (! declarator) return NULL_TREE;
  6171.  
  6172.     if (specbits & ((1 << (int) RID_AUTO) | (1 << (int) RID_REGISTER)))
  6173.       error ("invalid storage class for function `%s'", name);
  6174.     /* Function declaration not at top level.
  6175.        Storage classes other than `extern' are not allowed
  6176.        and `extern' makes no difference.  */
  6177.     if (current_binding_level != global_binding_level
  6178.         && (specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_INLINE)))
  6179.         && pedantic)
  6180.       warning ("invalid storage class for function `%s'", name);
  6181.  
  6182.     if (ctype == NULL_TREE)
  6183.       {
  6184.         if (virtualp)
  6185.           {
  6186.         error ("virtual non-class function `%s'", name);
  6187.         virtualp = 0;
  6188.           }
  6189. #ifdef NO_AUTO_OVERLOAD
  6190.         if (is_overloaded (declarator))
  6191.           {
  6192.         /* Plain overloading: will not be grok'd by grokclassfn.  */
  6193.         if (current_lang_name == lang_name_cplusplus)
  6194.           declarator = build_decl_overload (name, TYPE_ARG_TYPES (type), 0);
  6195.         was_overloaded = 1;
  6196.           }
  6197. #else
  6198.         if (current_lang_name == lang_name_cplusplus
  6199.         && ! (IDENTIFIER_LENGTH (original_name) == 4
  6200.               && IDENTIFIER_POINTER (original_name)[0] == 'm'
  6201.               && strcmp (IDENTIFIER_POINTER (original_name), "main") == 0)
  6202.         && ! (IDENTIFIER_LENGTH (original_name) > 10
  6203.               && IDENTIFIER_POINTER (original_name)[0] == '_'
  6204.               && IDENTIFIER_POINTER (original_name)[1] == '_'
  6205.               && strncmp (IDENTIFIER_POINTER (original_name)+2, "builtin_", 8) == 0))
  6206.           {
  6207.         /* Plain overloading: will not be grok'd by grokclassfn.  */
  6208.         declarator = build_decl_overload (name, TYPE_ARG_TYPES (type), 0);
  6209.         was_overloaded = 1;
  6210.           }
  6211. #endif
  6212.       }
  6213.     else if (TREE_CODE (type) == FUNCTION_TYPE && staticp < 2)
  6214.       type = build_cplus_method_type (ctype, TREE_TYPE (type), TYPE_ARG_TYPES (type));
  6215.  
  6216.     decl = grokfndecl (ctype, type, declarator, virtualp, flags, quals, raises, friendp ? 2 : 1);
  6217.     /* Record presence of `static'.  In C++, `inline' is like `static'.  */
  6218.     TREE_PUBLIC (decl) = !(specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_INLINE)));
  6219. #ifdef NeXT
  6220.     /* Provide additional information about this function's
  6221.        linkage, in case it's a static inline in a #pragma
  6222.        implementation section.  */
  6223.     if (staticp)
  6224.       TREE_PRIVATE (decl) = 1;
  6225. #endif /* NeXT */
  6226.     /* Record presence of `inline', if it is reasonable.  */
  6227.     if (inlinep)
  6228.       {
  6229.         tree last = tree_last (TYPE_ARG_TYPES (type));
  6230.  
  6231.         if (! was_overloaded
  6232.         && ! ctype
  6233.         && ! strcmp (IDENTIFIER_POINTER (original_name), "main"))
  6234.           warning ("cannot inline function `main'");
  6235.         else if (last && last != void_list_node)
  6236.           warning ("inline declaration ignored for function with `...'");
  6237.         else
  6238.           /* Assume that otherwise the function can be inlined.  */
  6239.           TREE_INLINE (decl) = 1;
  6240.  
  6241.         if (specbits & (1 << (int) RID_EXTERN))
  6242.           current_extern_inline = 1;
  6243.       }
  6244.     if (was_overloaded)
  6245.       {
  6246.         DECL_OVERLOADED (decl) = 1;
  6247.         DECL_ORIGINAL_NAME (decl) = original_name;
  6248.       }
  6249.       }
  6250.     else
  6251.       {
  6252.     /* It's a variable.  */
  6253.  
  6254.     if (virtualp)
  6255.       error ("variable declared `virtual'");
  6256.     if (inlinep)
  6257.       warning ("variable declared `inline'");
  6258.     if (quals)
  6259.       error ("`const' and `volatile' function specifiers invalid in field declaration");
  6260.     if (friendp)
  6261.       error ("invalid friend declaration");
  6262.     if (raises)
  6263.       error ("invalid raises declaration");
  6264.  
  6265.     /* An uninitialized decl with `extern' is a reference.  */
  6266.     decl = grokvardecl (ctype, type, declarator, specbits, initialized);
  6267.       }
  6268.  
  6269.     /* Record `register' declaration for warnings on &
  6270.        and in case doing stupid register allocation.  */
  6271.  
  6272.     if (specbits & (1 << (int) RID_REGISTER))
  6273.       TREE_REGDECL (decl) = 1;
  6274.  
  6275.     /* Record constancy and volatility.  */
  6276.  
  6277.     if (constp)
  6278.       TREE_READONLY (decl) = TREE_CODE (type) != REFERENCE_TYPE;
  6279.     if (volatilep)
  6280.       {
  6281.     TREE_VOLATILE (decl) = 1;
  6282.     TREE_THIS_VOLATILE (decl) = 1;
  6283.       }
  6284.  
  6285.     if (resume_temporary)
  6286.       resume_temporary_allocation ();
  6287.  
  6288.     return decl;
  6289.   }
  6290. }
  6291.  
  6292. /* Tell if a parmlist/exprlist looks like an exprlist or a parmlist.
  6293.    An empty exprlist is a parmlist.  An exprlist which
  6294.    contains only identifiers at the global level
  6295.    is a parmlist.  Otherwise, it is an exprlist. */
  6296. static int
  6297. parmlist_is_exprlist (exprs)
  6298.      tree exprs;
  6299. {
  6300.   if (exprs == NULL_TREE || TREE_PARMLIST (exprs))
  6301.     return 0;
  6302.  
  6303.   if (current_binding_level == global_binding_level)
  6304.     {
  6305.       /* At the global level, if these are all identifiers,
  6306.      then it is a parmlist.  */
  6307.       while (exprs)
  6308.     {
  6309.       if (TREE_CODE (TREE_VALUE (exprs)) != IDENTIFIER_NODE)
  6310.         return 1;
  6311.       exprs = TREE_CHAIN (exprs);
  6312.     }
  6313.       return 0;
  6314.     }
  6315.   return 1;
  6316. }
  6317.  
  6318. /* Make sure that the this list of PARMS has a chance of being
  6319.    grokked by `grokparms'.
  6320.  
  6321.    @@ This is really weak, but the grammar does not allow us
  6322.    @@ to easily reject things that this has to catch as syntax errors.  */
  6323. static int
  6324. parmlist_is_random (parms)
  6325.      tree parms;
  6326. {
  6327.   if (parms == NULL_TREE)
  6328.     return 0;
  6329.  
  6330.   if (TREE_CODE (parms) != TREE_LIST)
  6331.     return 1;
  6332.  
  6333.   while (parms)
  6334.     {
  6335.       if (parms == void_list_node)
  6336.     return 0;
  6337.  
  6338.       if (TREE_CODE (TREE_VALUE (parms)) != TREE_LIST)
  6339.     return 1;
  6340.       /* Don't get faked out by overloaded functions, which
  6341.      masquerade as TREE_LISTs!  */
  6342.       if (TREE_TYPE (TREE_VALUE (parms)) == unknown_type_node)
  6343.     return 1;
  6344.       parms = TREE_CHAIN (parms);
  6345.     }
  6346.   return 0;
  6347. }
  6348.  
  6349. /* Subroutine of `grokparms'.  In a fcn definition, arg types must
  6350.    be complete.
  6351.  
  6352.    C++: also subroutine of `start_function'.  */
  6353. static void
  6354. require_complete_types_for_parms (parms)
  6355.      tree parms;
  6356. {
  6357.   while (parms)
  6358.     {
  6359.       tree type = TREE_TYPE (parms);
  6360.       if (TYPE_SIZE (type) == 0)
  6361.     {
  6362.       if (DECL_NAME (parms))
  6363.         error ("parameter `%s' has incomplete type",
  6364.            IDENTIFIER_POINTER (DECL_NAME (parms)));
  6365.       else
  6366.         error ("parameter has incomplete type");
  6367.       TREE_TYPE (parms) = error_mark_node;
  6368.     }
  6369. #if 0
  6370.       /* If the arg types are incomplete in a declaration,
  6371.      they must include undefined tags.
  6372.      These tags can never be defined in the scope of the declaration,
  6373.      so the types can never be completed,
  6374.      and no call can be compiled successfully.  */
  6375.       /* This is not the right behavior for C++, but not having
  6376.      it is also probably wrong.  */
  6377.       else
  6378.     {
  6379.       /* Now warn if is a pointer to an incomplete type.  */
  6380.       while (TREE_CODE (type) == POINTER_TYPE
  6381.          || TREE_CODE (type) == REFERENCE_TYPE)
  6382.         type = TREE_TYPE (type);
  6383.       type = TYPE_MAIN_VARIANT (type);
  6384.       if (TYPE_SIZE (type) == 0)
  6385.         {
  6386.           if (DECL_NAME (parm) != 0)
  6387.         warning ("parameter `%s' points to incomplete type",
  6388.              IDENTIFIER_POINTER (DECL_NAME (parm)));
  6389.           else
  6390.         warning ("parameter points to incomplete type");
  6391.         }
  6392.     }
  6393. #endif
  6394.       parms = TREE_CHAIN (parms);
  6395.     }
  6396. }
  6397.  
  6398. /* Decode the list of parameter types for a function type.
  6399.    Given the list of things declared inside the parens,
  6400.    return a list of types.
  6401.  
  6402.    The list we receive can have three kinds of elements:
  6403.    an IDENTIFIER_NODE for names given without types,
  6404.    a TREE_LIST node for arguments given as typespecs or names with typespecs,
  6405.    or void_type_node, to mark the end of an argument list
  6406.    when additional arguments are not permitted (... was not used).
  6407.  
  6408.    FUNCDEF_FLAG is nonzero for a function definition, 0 for
  6409.    a mere declaration.  A nonempty identifier-list gets an error message
  6410.    when FUNCDEF_FLAG is zero.
  6411.    If FUNCDEF_FLAG is 1, then parameter types must be complete.
  6412.    If FUNCDEF_FLAG is -1, then parameter types may be incomplete.
  6413.  
  6414.    If all elements of the input list contain types,
  6415.    we return a list of the types.
  6416.    If all elements contain no type (except perhaps a void_type_node
  6417.    at the end), we return a null list.
  6418.    If some have types and some do not, it is an error, and we
  6419.    return a null list.
  6420.  
  6421.    Also set last_function_parms to either
  6422.    a list of names (IDENTIFIER_NODEs) or a chain of PARM_DECLs.
  6423.    A list of names is converted to a chain of PARM_DECLs
  6424.    by store_parm_decls so that ultimately it is always a chain of decls.
  6425.  
  6426.    Note that in C++, paramters can take default values.  These default
  6427.    values are in the TREE_PURPOSE field of the TREE_LIST.  It is
  6428.    an error to specify default values which are followed by parameters
  6429.    that have no defualt values, or an ELLIPSES.  For simplicities sake,
  6430.    only parameters which are specified with their types can take on
  6431.    default values.  */
  6432.  
  6433. #ifdef OBJCPLUS
  6434. tree
  6435. #else /* OBJCPLUS */
  6436. static tree
  6437. #endif /* OBJCPLUS */
  6438. grokparms (first_parm, funcdef_flag)
  6439.      tree first_parm;
  6440.      int funcdef_flag;
  6441. {
  6442.   tree result = NULL_TREE;
  6443.   tree decls = NULL_TREE;
  6444.  
  6445.   if (first_parm != 0
  6446.       && TREE_CODE (TREE_VALUE (first_parm)) == IDENTIFIER_NODE)
  6447.     {
  6448.       if (! funcdef_flag)
  6449.     warning ("parameter names (without types) in function declaration");
  6450.       last_function_parms = first_parm;
  6451.       return 0;
  6452.     }
  6453.   else
  6454.     {
  6455.       /* Types were specified.  This is a list of declarators
  6456.      each represented as a TREE_LIST node.  */
  6457.       register tree parm, chain;
  6458.       int any_init = 0, any_error = 0, saw_void = 0;
  6459.  
  6460.       if (first_parm != NULL_TREE)
  6461.     {
  6462.       tree last_result = NULL_TREE;
  6463.       tree last_decl = NULL_TREE;
  6464.  
  6465.       for (parm = first_parm; parm != NULL_TREE; parm = chain)
  6466.         {
  6467.           tree type, list_node = parm;
  6468.           register tree decl = TREE_VALUE (parm);
  6469.           tree init = TREE_PURPOSE (parm);
  6470.  
  6471.           chain = TREE_CHAIN (parm);
  6472.           /* @@ weak defense against parse errors.  */
  6473.           if (decl != void_type_node && TREE_CODE (decl) != TREE_LIST)
  6474.         {
  6475.           /* Give various messages as the need arises.  */
  6476.           if (TREE_CODE (decl) == STRING_CST)
  6477.             error ("invalid string constant `%s'",
  6478.                TREE_STRING_POINTER (decl));
  6479.           else if (TREE_CODE (decl) == INTEGER_CST)
  6480.             error ("invalid integer constant in parameter list, did you forget to give parameter name?");
  6481.           continue;
  6482.         }
  6483.  
  6484.           if (decl != void_type_node)
  6485.         {
  6486.           /* @@ May need to fetch out a `raises' here.  */
  6487.           decl = grokdeclarator (TREE_VALUE (decl),
  6488.                      TREE_PURPOSE (decl),
  6489.                      PARM, 0, NULL_TREE);
  6490.           if (! decl) continue;
  6491.           type = TREE_TYPE (decl);
  6492.           if (type == void_type_node)
  6493.             decl = void_type_node;
  6494.           else if (TREE_CODE (type) == METHOD_TYPE)
  6495.             {
  6496.               if (DECL_NAME (decl))
  6497.             /* Cannot use `error_with_decl' here because
  6498.                we don't have DECL_CONTEXT set up yet.  */
  6499.             error ("parameter `%s' invalidly declared method type",
  6500.                    IDENTIFIER_POINTER (DECL_NAME (decl)));
  6501.               else
  6502.             error ("parameter invalidly declared method type");
  6503.               type = build_pointer_type (type);
  6504.               TREE_TYPE (decl) = type;
  6505.             }
  6506.           else if (TREE_CODE (type) == OFFSET_TYPE)
  6507.             {
  6508.               if (DECL_NAME (decl))
  6509.             error ("parameter `%s' invalidly declared offset type",
  6510.                    IDENTIFIER_POINTER (DECL_NAME (decl)));
  6511.               else
  6512.             error ("parameter invalidly declared offset type");
  6513.               type = build_pointer_type (type);
  6514.               TREE_TYPE (decl) = type;
  6515.             }
  6516.         }
  6517.  
  6518.           if (decl == void_type_node)
  6519.         {
  6520.           if (result == NULL_TREE)
  6521.             {
  6522.               result = void_list_node;
  6523.               last_result = result;
  6524.             }
  6525.           else
  6526.             {
  6527.               TREE_CHAIN (last_result) = void_list_node;
  6528.               last_result = void_list_node;
  6529.             }
  6530.           saw_void = 1;
  6531.           if (chain
  6532.               && (chain != void_list_node || TREE_CHAIN (chain)))
  6533.             error ("`void' in parameter list must be entire list");
  6534.           break;
  6535.         }
  6536.  
  6537.           /* Since there is a prototype, args are passed in their own types.  */
  6538.           DECL_ARG_TYPE (decl) = TREE_TYPE (decl);
  6539. #ifdef PROMOTE_PROTOTYPES
  6540.           if (TREE_CODE (type) == INTEGER_TYPE
  6541.           && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
  6542.         DECL_ARG_TYPE (decl) = integer_type_node;
  6543. #endif
  6544.           if (!any_error)
  6545.         {
  6546.           if (init)
  6547.             {
  6548.               any_init++;
  6549.               if (TREE_CODE (init) == SAVE_EXPR)
  6550.             PARM_DECL_EXPR (init) = 1;
  6551.               else
  6552.             init = require_instantiated_type (type, init, integer_zero_node);
  6553.             }
  6554.           else if (any_init)
  6555.             {
  6556.               error ("all trailing parameters must have default arguments");
  6557.               any_error = 1;
  6558.             }
  6559.         }
  6560.           else
  6561.         init = NULL_TREE;
  6562.  
  6563.           if (decls == NULL_TREE)
  6564.         {
  6565.           decls = decl;
  6566.           last_decl = decls;
  6567.         }
  6568.           else
  6569.         {
  6570.           TREE_CHAIN (last_decl) = decl;
  6571.           last_decl = decl;
  6572.         }
  6573.           if (TREE_PERMANENT (list_node))
  6574.         {
  6575.           TREE_PURPOSE (list_node) = init;
  6576.           TREE_VALUE (list_node) = type;
  6577.           TREE_CHAIN (list_node) = 0;
  6578.         }
  6579.           else
  6580.         list_node = saveable_tree_cons (init, type, NULL_TREE);
  6581.           if (result == NULL_TREE)
  6582.         {
  6583.           result = list_node;
  6584.           last_result = result;
  6585.         }
  6586.           else
  6587.         {
  6588.           TREE_CHAIN (last_result) = list_node;
  6589.           last_result = list_node;
  6590.         }
  6591.         }
  6592.       if (last_result)
  6593.         TREE_CHAIN (last_result) = NULL_TREE;
  6594.       /* If there are no parameters, and the function does not end
  6595.          with `...', then last_decl will be NULL_TREE.  */
  6596.       if (last_decl != NULL_TREE)
  6597.         TREE_CHAIN (last_decl) = NULL_TREE;
  6598.     }
  6599.     }
  6600.  
  6601.   last_function_parms = decls;
  6602.  
  6603.   /* In a fcn definition, arg types must be complete.  */
  6604.   if (funcdef_flag > 0)
  6605.     require_complete_types_for_parms (last_function_parms);
  6606.  
  6607.   return result;
  6608. }
  6609.  
  6610. /* These memoizing functions keep track of special properties which
  6611.    a class may have.  `grok_ctor_properties' notices whether a class
  6612.    has a constructor of the for X(X&), and also complains
  6613.    if the class has a constructor of the form X(X).
  6614.    `grok_op_properties' takes notice of the various forms of
  6615.    operator= which are defined, as well as what sorts of type conversion
  6616.    may apply.  Both functions take a FUNCTION_DECL as an argument.  */
  6617. static void
  6618. grok_ctor_properties (ctype, decl)
  6619.      tree ctype, decl;
  6620. {
  6621.   tree parmtypes = TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)));
  6622.   tree parmtype = parmtypes ? TREE_VALUE (parmtypes) : void_type_node;
  6623.  
  6624.   if (TREE_CODE (parmtype) == REFERENCE_TYPE
  6625.       && TYPE_MAIN_VARIANT (TREE_TYPE (parmtype)) == ctype)
  6626.     {
  6627.       if (TREE_CHAIN (parmtypes) == NULL_TREE
  6628.       || TREE_CHAIN (parmtypes) == void_list_node
  6629.       || TREE_PURPOSE (TREE_CHAIN (parmtypes)))
  6630.     {
  6631.       TYPE_HAS_INIT_REF (ctype) = 1;
  6632.       TYPE_GETS_INIT_REF (ctype) = 1;
  6633.       if (TREE_READONLY (TREE_TYPE (parmtype)))
  6634.         TYPE_GETS_CONST_INIT_REF (ctype) = 1;
  6635.     }
  6636.       else
  6637.     TYPE_GETS_INIT_AGGR (ctype) = 1;
  6638.     }
  6639.   else if (TYPE_MAIN_VARIANT (parmtype) == ctype)
  6640.     {
  6641.       if (TREE_CHAIN (parmtypes) != NULL_TREE
  6642.       && TREE_CHAIN (parmtypes) == void_list_node)
  6643.     error ("invalid constructor; you probably meant `%s (%s&)'",
  6644.            IDENTIFIER_POINTER (current_class_name),
  6645.            IDENTIFIER_POINTER (current_class_name));
  6646.       SET_IDENTIFIER_ERROR_LOCUS (DECL_NAME (decl), ctype);
  6647.       TYPE_GETS_INIT_AGGR (ctype) = 1;
  6648.     }
  6649.   else if (TREE_CODE (parmtype) == VOID_TYPE
  6650.        || TREE_PURPOSE (parmtypes) != NULL_TREE)
  6651.     TYPE_HAS_DEFAULT_CONSTRUCTOR (ctype) = 1;
  6652. }
  6653.  
  6654. static void
  6655. grok_op_properties (decl)
  6656.      tree decl;
  6657. {
  6658.   char *name = IDENTIFIER_POINTER (DECL_NAME (decl));
  6659.   tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
  6660.  
  6661.   if (DECL_STATIC_FUNCTION_P (decl))
  6662.     {
  6663.       if (! strncmp (name, OPERATOR_NEW_FORMAT, OPERATOR_NEW_LENGTH))
  6664.     {
  6665.       /* Take care of function decl if we had syntax errors.  */
  6666.       if (argtypes == NULL_TREE)
  6667.         TREE_TYPE (decl) = build_function_type (ptr_type_node,
  6668.                             hash_tree_chain (integer_type_node, void_list_node));
  6669.     }
  6670.       else if (! strncmp (name, OPERATOR_DELETE_FORMAT, OPERATOR_DELETE_LENGTH))
  6671.     {
  6672.       if (argtypes == NULL_TREE)
  6673.         TREE_TYPE (decl) = build_function_type (void_type_node,
  6674.                             hash_tree_chain (ptr_type_node, void_list_node));
  6675.     }
  6676.       else
  6677.     error_with_decl (decl, "`%s' cannot be a static member function");
  6678.     }
  6679.   else if (! strncmp (name, OPERATOR_MODIFY_FORMAT, OPERATOR_MODIFY_LENGTH))
  6680.     {
  6681.       tree parmtypes = TREE_CHAIN (argtypes);
  6682.       tree parmtype = parmtypes ? TREE_VALUE (parmtypes) : void_type_node;
  6683.  
  6684.       if (TREE_CODE (parmtype) == REFERENCE_TYPE
  6685.       && TREE_TYPE (parmtype) == current_class_type)
  6686.     {
  6687.       TYPE_HAS_ASSIGN_REF (current_class_type) = 1;
  6688.       TYPE_GETS_ASSIGN_REF (current_class_type) = 1;
  6689.       if (TREE_READONLY (TREE_TYPE (parmtype)))
  6690.         TYPE_GETS_CONST_INIT_REF (current_class_type) = 1;
  6691.     }
  6692.     }
  6693. }
  6694.  
  6695. /* Get the struct, enum or union (CODE says which) with tag NAME.
  6696.    Define the tag as a forward-reference if it is not defined.
  6697.  
  6698.    C++: If a class derivation is given, process it here, and report
  6699.    an error if multiple derivation declarations are not identical.
  6700.  
  6701.    If we are compiling for SOS, then
  6702.      if CODE_TYPE_NODE is a TREE_LIST, then we have a dynamic class
  6703.      declaration.  The name associated with the class is the tree
  6704.      purpose, and the real CODE is in the tree value slot.  */
  6705. tree
  6706. xref_tag (code_type_node, name, binfo)
  6707.      tree code_type_node;
  6708.      tree name, binfo;
  6709. {
  6710.   enum tag_types tag_code;
  6711.   enum tree_code code;
  6712.   int temp = 0;
  6713.   int i, len;
  6714.   register tree ref;
  6715.   struct binding_level *b
  6716.     = (class_binding_level ? class_binding_level : current_binding_level);
  6717. #ifdef SOS
  6718.   tree dynamic_name = error_mark_node;
  6719.   if (TREE_CODE (code_type_node) == TREE_LIST)
  6720.     {
  6721.       dynamic_name = TREE_PURPOSE (code_type_node);
  6722.       code_type_node = TREE_VALUE (code_type_node);
  6723.     }
  6724. #endif
  6725.  
  6726.   tag_code = (enum tag_types) TREE_INT_CST_LOW (code_type_node);
  6727.   switch (tag_code)
  6728.     {
  6729.     case record_type:
  6730.     case class_type:
  6731.     case exception_type:
  6732.       code = RECORD_TYPE;
  6733.       len = list_length (binfo) + 1;
  6734.       break;
  6735.     case union_type:
  6736.       code = UNION_TYPE;
  6737.       if (binfo)
  6738.     {
  6739.       error ("derived union `%s' invalid", IDENTIFIER_POINTER (name));
  6740.       binfo = NULL_TREE;
  6741.     }
  6742.       len = 1;
  6743.       break;
  6744.     case enum_type:
  6745.       code = ENUMERAL_TYPE;
  6746.       break;
  6747.     default:
  6748.       abort ();
  6749.     }
  6750.  
  6751.   /* If a cross reference is requested, look up the type
  6752.      already defined for this tag and return it.  */
  6753.   ref = lookup_tag (code, name, b, 0);
  6754.  
  6755.   if (! ref)
  6756.     {
  6757.       /* Try finding it as a type declaration.  If that wins, use it.  */
  6758.       ref = lookup_name (name);
  6759.       if (ref && TREE_CODE (ref) == TYPE_DECL
  6760.          && TREE_CODE (TREE_TYPE (ref)) == code)
  6761.     ref = TREE_TYPE (ref);
  6762.       else
  6763.     ref = NULL_TREE;
  6764.     }
  6765.  
  6766.   if (! ref)
  6767.     {
  6768.       /* If no such tag is yet defined, create a forward-reference node
  6769.      and record it as the "definition".
  6770.      When a real declaration of this type is found,
  6771.      the forward-reference will be altered into a real type.  */
  6772.  
  6773.       /* In C++, since these migrate into the global scope, we must
  6774.      build them on the permanent obstack.  */
  6775.       if (temp == 0)
  6776.     temp = allocation_temporary_p ();
  6777.       if (temp)
  6778.     end_temporary_allocation ();
  6779.  
  6780.       if (code == ENUMERAL_TYPE)
  6781.     {
  6782.       ref = make_node (ENUMERAL_TYPE);
  6783.  
  6784.       /* Give the type a default layout like unsigned int
  6785.          to avoid crashing if it does not get defined.  */
  6786.       TYPE_MODE (ref) = SImode;
  6787.       TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
  6788.       TREE_UNSIGNED (ref) = 1;
  6789.       TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
  6790.       TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
  6791.       TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
  6792.  
  6793.       /* Enable us to recognize when a type is created in class context.
  6794.          To do nested classes correctly, this should probably be cleared
  6795.          out when we leave this classes scope.  Currently this in only
  6796.          done in `start_enum'.  */
  6797.  
  6798.       pushtag (name, ref);
  6799.       if (flag_cadillac)
  6800.         cadillac_start_enum (ref);
  6801.     }
  6802.       else if (tag_code == exception_type)
  6803.     {
  6804.       ref = make_lang_type (code);
  6805.       CLASSTYPE_OFFSET (ref) = integer_zero_node;
  6806.       /* Enable us to recognize when an exception type is created in
  6807.          class context.  To do nested classes correctly, this should
  6808.          probably be cleared out when we leave this class's scope.  */
  6809.       CLASSTYPE_DECLARED_EXCEPTION (ref) = 1;
  6810.       pushtag (name, ref);
  6811.       if (flag_cadillac)
  6812.         cadillac_start_struct (ref);
  6813.     }
  6814.       else
  6815.     {
  6816.       extern tree pending_vtables;
  6817.       struct binding_level *old_b = class_binding_level;
  6818.       int needs_writing;
  6819.  
  6820.       ref = make_lang_type (code);
  6821.  
  6822.       CLASSTYPE_BASECLASSES (ref) = (tree *) malloc (len * sizeof (tree));
  6823.       CLASSTYPE_N_BASECLASSES (ref) = len - 1;
  6824.       CLASSTYPE_OFFSET (ref) = integer_zero_node;
  6825.       CLASSTYPE_VIAS (ref) = (unsigned char *) malloc (len);
  6826.  
  6827.       /* Record how to set the visibility of this class's
  6828.          virtual functions.  If write_virtuals == 2 or 3, then
  6829.          inline virtuals are ``extern inline''.  */
  6830.       switch (write_virtuals)
  6831.         {
  6832.         case 0:
  6833.         case 1:
  6834.           needs_writing = 1;
  6835.           break;
  6836.         case 2:
  6837.           needs_writing = !! value_member (name, pending_vtables);
  6838.           break;
  6839.         case 3:
  6840.           needs_writing
  6841.         = ! (CLASSTYPE_INTERFACE_ONLY (ref) || CLASSTYPE_INTERFACE_UNKNOWN (ref));
  6842.           break;
  6843.         default:
  6844.           needs_writing = 0;
  6845.         }
  6846.  
  6847.       CLASSTYPE_VTABLE_NEEDS_WRITING (ref) = needs_writing;
  6848.  
  6849.       /* Class types don't nest the way enums do.  */
  6850.       class_binding_level = 0;
  6851.       pushtag (name, ref);
  6852.       class_binding_level = old_b;
  6853.  
  6854.       if (flag_cadillac)
  6855.         cadillac_start_struct (ref);
  6856.     }
  6857.     }
  6858.   else
  6859.     {
  6860.       if (IS_AGGR_TYPE_CODE (code))
  6861.     {
  6862. #if 0
  6863.       if (TREE_CODE (TYPE_NAME (ref)) == IDENTIFIER_NODE
  6864. #ifndef BREAK_C_TAGS
  6865.           && current_lang_name == lang_name_cplusplus
  6866. #endif
  6867.           && ! CLASSTYPE_DECLARED_EXCEPTION (ref))
  6868.         {
  6869.           /* Silently typedef a tag which came from C.  */
  6870.           register tree t = pushdecl (build_decl (TYPE_DECL, name, ref));
  6871.           TYPE_NAME (ref) = t;
  6872.           TREE_TYPE (name) = t;
  6873.         }
  6874. #endif
  6875.       if (IS_AGGR_TYPE (ref)
  6876.           && ((tag_code == exception_type)
  6877.           != (CLASSTYPE_DECLARED_EXCEPTION (ref) == 1)))
  6878.         {
  6879.           error ("type `%s' is both exception and aggregate type",
  6880.              IDENTIFIER_POINTER (name));
  6881.           CLASSTYPE_DECLARED_EXCEPTION (ref) = (tag_code == exception_type);
  6882.         }
  6883.     }
  6884.       if (binfo)
  6885.     {
  6886.       tree tt1 = binfo;
  6887.       tree *tt2 = CLASSTYPE_BASECLASSES (ref);
  6888.  
  6889.       if (CLASSTYPE_N_BASECLASSES (ref))
  6890.         for (i = 1; tt1; i++, tt1 = TREE_CHAIN (tt1))
  6891.           if (TREE_VALUE (tt1) != DECL_NAME (TYPE_NAME (tt2[i])))
  6892.         {
  6893.           error ("redeclaration of derivation chain of type `%s'",
  6894.              IDENTIFIER_POINTER (name));
  6895.           break;
  6896.         }
  6897.  
  6898.       if (tt1 != NULL_TREE)
  6899.         {
  6900.           free (CLASSTYPE_BASECLASSES (ref));
  6901.           free (CLASSTYPE_VIAS (ref));
  6902.           CLASSTYPE_BASECLASSES (ref) = (tree *) malloc (len * sizeof (tree));
  6903.           CLASSTYPE_N_BASECLASSES (ref) = len - 1;
  6904.           CLASSTYPE_OFFSET (ref) = integer_zero_node;
  6905.           CLASSTYPE_ASSOC (ref) = NULL_TREE;
  6906.           CLASSTYPE_VIAS (ref) = (unsigned char *) malloc (len);
  6907.         }
  6908.       else
  6909.         {
  6910.           /* The user told us something we already knew.  */
  6911.           goto just_return;
  6912.         }
  6913.     }
  6914. #ifdef SOS
  6915.       else if (TREE_CODE (ref) != ENUMERAL_TYPE
  6916.            && (dynamic_name != error_mark_node) != TYPE_DYNAMIC (ref))
  6917.     error ("type `%s' declared both dynamic and non-dynamic",
  6918.            IDENTIFIER_POINTER (name));
  6919. #endif
  6920.     }
  6921.  
  6922.   if (binfo)
  6923.     {
  6924.       CLASSTYPE_MARKED (ref) = 1;
  6925.       for (i = 1; binfo; binfo = TREE_CHAIN (binfo))
  6926.     {
  6927.       /* The base of a derived struct is public.  */
  6928.       int via_public = (tag_code != class_type
  6929.                 || TREE_PURPOSE (binfo) == (tree)visibility_public
  6930.                 || TREE_PURPOSE (binfo) == (tree)visibility_public_virtual);
  6931.       int via_virtual = (TREE_PURPOSE (binfo) == (tree)visibility_private_virtual
  6932.                  || TREE_PURPOSE (binfo) == (tree)visibility_public_virtual
  6933.                  || TREE_PURPOSE (binfo) == (tree)visibility_default_virtual);
  6934.       tree basetype = TREE_TYPE (TREE_VALUE (binfo));
  6935.  
  6936. #ifdef FIELD_XREF
  6937.       FIELD_xref_hier(IDENTIFIER_POINTER(name),
  6938.               IDENTIFIER_POINTER(TREE_VALUE(binfo)),
  6939.               via_public,via_virtual,0);
  6940. #endif
  6941.  
  6942.       if (basetype && TREE_CODE (basetype) == TYPE_DECL)
  6943.         basetype = TREE_TYPE (basetype);
  6944.       if (!basetype || TREE_CODE (basetype) != RECORD_TYPE)
  6945.         {
  6946.           error ("base type `%s' fails to be a struct or class type",
  6947.              IDENTIFIER_POINTER (TREE_VALUE (binfo)));
  6948.           continue;
  6949.         }
  6950. #if 0
  6951.       else if (TYPE_SIZE (basetype) == 0)
  6952.         {
  6953.           error_with_aggr_type (basetype, "base class `%s' has incomplete type");
  6954.           continue;
  6955.         }
  6956. #endif
  6957.       else
  6958.         {
  6959. #ifdef SOS
  6960.           if (dynamic_name == error_mark_node && TYPE_DYNAMIC (basetype))
  6961.         error_with_aggr_type (ref, "non-dynamic type `%s' cannot derive from dynamic type `%s'", TYPE_NAME_STRING (basetype));
  6962. #endif
  6963.           if (CLASSTYPE_MARKED (basetype))
  6964.         {
  6965.           if (basetype == ref)
  6966.             error_with_aggr_type (basetype, "recursive type `%s' undefined");
  6967.           else
  6968.             error_with_aggr_type (basetype, "duplicate base type `%s' invalid");
  6969.           continue;
  6970.         }
  6971.           CLASSTYPE_BASECLASS (ref, i) = basetype;
  6972.           CLASSTYPE_MARKED (basetype) = 1;
  6973. #if 0
  6974. /* XYZZY TEST VIRTUAL BASECLASSES */
  6975. if (CLASSTYPE_N_BASECLASSES (basetype) == 0
  6976.     && TYPE_HAS_DEFAULT_CONSTRUCTOR (basetype)
  6977.     && via_virtual == 0)
  6978.   {
  6979.     warning ("making type `%s' a virtual baseclass",
  6980.          TYPE_NAME_STRING (basetype));
  6981.     via_virtual = 1;
  6982.   }
  6983. #endif
  6984.           SET_CLASSTYPE_VIAS (ref, i, via_public, via_virtual);
  6985.           if (via_virtual || TYPE_USES_VIRTUAL_BASECLASSES (basetype))
  6986.         TYPE_USES_VIRTUAL_BASECLASSES (ref) = 1;
  6987.  
  6988.           TYPE_GETS_ASSIGNMENT (ref) |= TYPE_GETS_ASSIGNMENT (basetype);
  6989.           TYPE_OVERLOADS_METHOD_CALL_EXPR (ref) |= TYPE_OVERLOADS_METHOD_CALL_EXPR (basetype);
  6990.           TYPE_HAS_WRAPPER_PRED (ref) |= TYPE_HAS_WRAPPER_PRED (basetype);
  6991.           TREE_GETS_NEW (ref) |= TREE_GETS_NEW (basetype);
  6992.           TREE_GETS_DELETE (ref) |= TREE_GETS_DELETE (basetype);
  6993. #ifdef NeXT
  6994.           TREE_GETS_TWO_ARG_DELETE (ref) |= TREE_GETS_TWO_ARG_DELETE (basetype);
  6995. #endif /* NeXT */
  6996.           CLASSTYPE_LOCAL_TYPEDECLS (ref) |= CLASSTYPE_LOCAL_TYPEDECLS (basetype);
  6997.           i += 1;
  6998.         }
  6999.     }
  7000.       /* Set the true number of baseclasses this type really has.  */
  7001.       CLASSTYPE_N_BASECLASSES (ref) = --i;
  7002.  
  7003.       if (i > 1)
  7004.     TYPE_USES_MULTIPLE_INHERITANCE (ref) = 1;
  7005.       else if (i == 1)
  7006.     TYPE_USES_MULTIPLE_INHERITANCE (ref)
  7007.       = TYPE_USES_MULTIPLE_INHERITANCE (CLASSTYPE_BASECLASS (ref, 1));
  7008.  
  7009.       while (i > 0)
  7010.     {
  7011.       CLASSTYPE_MARKED (CLASSTYPE_BASECLASS (ref, i)) = 0;
  7012.       i -= 1;
  7013.     }
  7014.       CLASSTYPE_MARKED (ref) = 0;
  7015.     }
  7016.  
  7017.  just_return:
  7018.  
  7019. #ifdef SOS
  7020.   if (dynamic_name != error_mark_node)
  7021.     {
  7022.       if (temp == 0)
  7023.     temp = allocation_temporary_p ();
  7024.       if (temp)
  7025.     end_temporary_allocation ();
  7026.  
  7027.       if (dynamic_name)
  7028.     CLASSTYPE_DYNAMIC_FILENAME (ref) = combine_strings (dynamic_name);
  7029.       else
  7030.     CLASSTYPE_DYNAMIC_FILENAME (ref) = NULL_TREE;
  7031.       TYPE_DYNAMIC (ref) = 1;
  7032.       CLASSTYPE_TYPENAME_AS_STRING (ref) = combine_strings (build_string (IDENTIFIER_LENGTH (name), IDENTIFIER_POINTER (name)));
  7033.  
  7034.     }
  7035. #endif
  7036.  
  7037.   /* Until the type is defined, tentatively accept whatever
  7038.      structure tag the user hands us.  */
  7039.   if (TYPE_SIZE (ref) == NULL_TREE
  7040.       && ref != current_class_type
  7041.       && IS_AGGR_TYPE (ref))
  7042.     {
  7043.       if (tag_code == class_type)
  7044.     CLASSTYPE_DECLARED_CLASS (ref) = 1;
  7045.       else if (tag_code == record_type)
  7046.     CLASSTYPE_DECLARED_CLASS (ref) = 0;
  7047.     }
  7048.  
  7049.   if (temp)
  7050.     resume_temporary_allocation ();
  7051.  
  7052.   return ref;
  7053. }
  7054.  
  7055. /* Begin compiling the definition of an enumeration type.
  7056.    NAME is its name (or null if anonymous).
  7057.    Returns the type object, as yet incomplete.
  7058.    Also records info about it so that build_enumerator
  7059.    may be used to declare the individual values as they are read.  */
  7060.  
  7061. tree
  7062. start_enum (name)
  7063.      tree name;
  7064. {
  7065.   register tree enumtype = 0;
  7066.   struct binding_level *b
  7067.     = (class_binding_level ? class_binding_level : current_binding_level);
  7068.  
  7069.   /* If this is the real definition for a previous forward reference,
  7070.      fill in the contents in the same object that used to be the
  7071.      forward reference.  */
  7072.  
  7073.   if (name != 0)
  7074.     enumtype = lookup_tag (ENUMERAL_TYPE, name, b, 1);
  7075.  
  7076.   if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
  7077.     {
  7078.       enumtype = make_node (ENUMERAL_TYPE);
  7079.       pushtag (name, enumtype);
  7080.     }
  7081.  
  7082.   if (TYPE_VALUES (enumtype) != 0)
  7083.     {
  7084.       /* This enum is a named one that has been declared already.  */
  7085.       error ("redeclaration of `enum %s'", IDENTIFIER_POINTER (name));
  7086.  
  7087.       /* Completely replace its old definition.
  7088.      The old enumerators remain defined, however.  */
  7089.       TYPE_VALUES (enumtype) = 0;
  7090.     }
  7091.  
  7092.   /* Initially, set up this enum as like `int'
  7093.      so that we can create the enumerators' declarations and values.
  7094.      Later on, the precision of the type may be changed and
  7095.      it may be laid out again.  */
  7096.  
  7097.   TYPE_PRECISION (enumtype) = TYPE_PRECISION (integer_type_node);
  7098.   TYPE_SIZE (enumtype) = 0;
  7099.   fixup_unsigned_type (enumtype);
  7100.  
  7101.   /* We copy this value because enumerated type constants
  7102.      are really of the type of the enumerator, not integer_type_node.  */
  7103.   enum_next_value = copy_node (integer_zero_node);
  7104.  
  7105. #ifdef FIELD_XREF
  7106.   FIELD_xref_decl(current_function_decl,enumtype);
  7107. #endif
  7108.  
  7109.   return enumtype;
  7110. }
  7111.  
  7112. /* After processing and defining all the values of an enumeration type,
  7113.    install their decls in the enumeration type and finish it off.
  7114.    ENUMTYPE is the type object and VALUES a list of name-value pairs.
  7115.    Returns ENUMTYPE.  */
  7116.  
  7117. tree
  7118. finish_enum (enumtype, values)
  7119.      register tree enumtype, values;
  7120. {
  7121.   register tree pair;
  7122.   register long maxvalue = 0;
  7123.   register long minvalue = 0;
  7124.   register int i;
  7125.  
  7126.   TYPE_VALUES (enumtype) = values;
  7127.  
  7128.   /* Calculate the maximum value of any enumerator in this type.  */
  7129.  
  7130.   if (values)
  7131.     {
  7132.       /* Speed up the main loop by performing some precalculations */
  7133.  
  7134.       int value = TREE_INT_CST_LOW (TREE_VALUE (values));
  7135.       TREE_TYPE (TREE_VALUE (values)) = enumtype;
  7136.       minvalue = maxvalue = value;
  7137.       
  7138.       for (pair = TREE_CHAIN (values); pair; pair = TREE_CHAIN (pair))
  7139.     {
  7140.       value = TREE_INT_CST_LOW (TREE_VALUE (pair));
  7141.       if (value > maxvalue)
  7142.         maxvalue = value;
  7143.       else if (value < minvalue)
  7144.         minvalue = value;
  7145.       TREE_TYPE (TREE_VALUE (pair)) = enumtype;
  7146.     }
  7147.     }
  7148.  
  7149.   if (flag_short_enums)
  7150.     {
  7151.       /* Determine the precision this type needs, lay it out, and define it.  */
  7152.  
  7153.       for (i = maxvalue; i; i >>= 1)
  7154.     TYPE_PRECISION (enumtype)++;
  7155.  
  7156.       if (!TYPE_PRECISION (enumtype))
  7157.     TYPE_PRECISION (enumtype) = 1;
  7158.  
  7159.       /* Cancel the laying out previously done for the enum type,
  7160.      so that fixup_unsigned_type will do it over.  */
  7161.       TYPE_SIZE (enumtype) = 0;
  7162.  
  7163.       fixup_unsigned_type (enumtype);
  7164.     }
  7165.  
  7166.   TREE_INT_CST_LOW (TYPE_MAX_VALUE (enumtype)) = maxvalue;
  7167.  
  7168.   /* An enum can have some negative values; then it is signed.  */
  7169.   if (minvalue < 0)
  7170.     {
  7171.       TREE_INT_CST_LOW (TYPE_MIN_VALUE (enumtype)) = minvalue;
  7172.       TREE_INT_CST_HIGH (TYPE_MIN_VALUE (enumtype)) = -1;
  7173.       TREE_UNSIGNED (enumtype) = 0;
  7174.     }
  7175.   if (flag_cadillac)
  7176.     cadillac_finish_enum (enumtype);
  7177.  
  7178.   return enumtype;
  7179. }
  7180.  
  7181. /* Build and install a CONST_DECL for one value of the
  7182.    current enumeration type (one that was begun with start_enum).
  7183.    Return a tree-list containing the name and its value.
  7184.    Assignment of sequential values by default is handled here.  */
  7185.  
  7186. tree
  7187. build_enumerator (name, value)
  7188.      tree name, value;
  7189. {
  7190.   tree decl, result;
  7191.  
  7192.   /* Validate and default VALUE.  */
  7193.   if (value != 0)
  7194.     {
  7195.       if (TREE_READONLY_DECL_P (value))
  7196.     value = decl_constant_value (value);
  7197.  
  7198.       if (TREE_CODE (value) != INTEGER_CST)
  7199.     {
  7200.       error ("enumerator value for `%s' not integer constant",
  7201.          IDENTIFIER_POINTER (name));
  7202.       value = 0;
  7203.     }
  7204.     }
  7205.   /* The order of things is reversed here so that we
  7206.      can check for possible sharing of enum values,
  7207.      to keep that from happening.  */
  7208.   /* Default based on previous value.  */
  7209.   if (value == 0)
  7210.     value = enum_next_value;
  7211.  
  7212.   /* Remove no-op casts from the value.  */
  7213.   while (value != 0 && TREE_CODE (value) == NOP_EXPR)
  7214.     value = TREE_OPERAND (value, 0);
  7215.  
  7216.   /* Make up for hacks in cplus-lex.c.  */
  7217.   if (value == integer_zero_node)
  7218.     value = build_int_2 (0, 0);
  7219.   else if (value == integer_one_node)
  7220.     value = build_int_2 (1, 0);
  7221.   else if (TREE_CODE (value) == INTEGER_CST
  7222.        && TREE_CODE (TREE_TYPE (value)) == ENUMERAL_TYPE)
  7223.     {
  7224.       value = copy_node (value);
  7225.       TREE_TYPE (value) = integer_type_node;
  7226.     }
  7227.  
  7228.   result = saveable_tree_cons (name, value, NULL_TREE);
  7229.  
  7230.   /* C++ associates enums with global, function, or class declarations.  */
  7231.   if (current_class_type == NULL_TREE || current_function_decl != NULL_TREE)
  7232.     {
  7233.       /* Create a declaration for the enum value name.  */
  7234.  
  7235.       decl = build_decl (CONST_DECL, name, integer_type_node);
  7236.       DECL_INITIAL (decl) = value;
  7237.  
  7238.       pushdecl (decl);
  7239.     }
  7240.  
  7241.   /* Set basis for default for next value.  */
  7242.   enum_next_value = build_binary_op_nodefault (PLUS_EXPR, value,
  7243.                            integer_one_node, PLUS_EXPR);
  7244.   if (TREE_UID (enum_next_value) < TREE_UID (result))
  7245.     enum_next_value = copy_node (enum_next_value);
  7246.  
  7247.   return result;
  7248. }
  7249.  
  7250. tree
  7251. grok_enum_decls (type, decl)
  7252.      tree type, decl;
  7253. {
  7254.   struct binding_level *b = class_binding_level;
  7255.   tree tag = NULL_TREE;
  7256.   tree values;
  7257.  
  7258.   while (b)
  7259.     {
  7260.       tag = value_member (type, b->tags);
  7261.       if (tag)
  7262.     break;
  7263.       b = b->level_chain;
  7264.     }
  7265.  
  7266.   if (b == 0)
  7267.     {
  7268.       tree name = TYPE_NAME (type);
  7269.       if (TREE_CODE (name) == TYPE_DECL)
  7270.     name = DECL_NAME (name);
  7271.       error ("class-local enum declaration `%s' is not in scope here",
  7272.          IDENTIFIER_POINTER (name));
  7273.     }
  7274.   else if (b != class_binding_level)
  7275.     {
  7276.       warning ("class-local declaration for enumeral type `%s' found",
  7277.            IDENTIFIER_POINTER (TREE_PURPOSE (tag)));
  7278.       warning ("(probably missing '}' before that enum declaration)");
  7279.       return decl;
  7280.     }
  7281.   else if (TREE_ADDRESSABLE (tag))
  7282.     return decl;
  7283.   else
  7284.     TREE_ADDRESSABLE (tag) = 1;
  7285.  
  7286.   values = TYPE_VALUES (type);
  7287.   while (values)
  7288.     {
  7289.       /* Create a declaration for the enum value name.  */
  7290.       tree next = build_lang_field_decl (CONST_DECL, TREE_PURPOSE (values), type);
  7291.       DECL_INITIAL (next) = TREE_VALUE (values);
  7292.       TREE_CHAIN (next) = decl;
  7293.       decl = next;
  7294.       pushdecl_class_level (decl);
  7295.       values = TREE_CHAIN (values);
  7296.     }
  7297.   return decl;
  7298. }
  7299.  
  7300. /* Create the FUNCTION_DECL for a function definition.
  7301.    DECLSPECS and DECLARATOR are the parts of the declaration;
  7302.    they describe the function's name and the type it returns,
  7303.    but twisted together in a fashion that parallels the syntax of C.
  7304.  
  7305.    This function creates a binding context for the function body
  7306.    as well as setting up the FUNCTION_DECL in current_function_decl.
  7307.  
  7308.    Returns 1 on success.  If the DECLARATOR is not suitable for a function
  7309.    (it defines a datum instead), we return 0, which tells
  7310.    yyparse to report a parse error.
  7311.  
  7312.    For C++, we must first check whether that datum makes any sense.
  7313.    For example, "class A local_a(1,2);" means that variable local
  7314.    a is an aggregate of type A, which should have a constructor
  7315.    applied to it with the argument list [1, 2].
  7316.  
  7317.    @@ There is currently no way to retrieve the storage
  7318.    @@ allocated to FUNCTION (or all of its parms) if we return
  7319.    @@ something we had previously.  */
  7320.  
  7321. int
  7322. start_function (declspecs, declarator, raises, pre_parsed_p)
  7323.      tree declarator, declspecs, raises;
  7324.      int pre_parsed_p;
  7325. {
  7326.   extern int interface_only, interface_unknown;
  7327.   extern tree EHS_decl;
  7328.   tree decl1, olddecl;
  7329.   tree ctype = NULL_TREE;
  7330.   tree fntype;
  7331.   tree restype;
  7332.  
  7333.   if (flag_handle_exceptions && EHS_decl == NULL_TREE)
  7334.     init_exception_processing_1 ();
  7335.  
  7336.   /* Sanity check.  */
  7337.   assert (TREE_VALUE (void_list_node) == void_type_node);
  7338.   assert (TREE_CHAIN (void_list_node) == NULL_TREE);
  7339.  
  7340.   /* Assume, until we see it does. */
  7341.   current_function_returns_value = 0;
  7342.   current_function_returns_null = 0;
  7343.   warn_about_return_type = 0;
  7344.   current_extern_inline = 0;
  7345.   current_function_assigns_this = 0;
  7346.   current_function_just_assigned_this = 0;
  7347.   current_function_parms_stored = 0;
  7348.   original_result_rtx = 0;
  7349.  
  7350.   clear_temp_name ();
  7351.  
  7352.   if (pre_parsed_p)
  7353.     {
  7354.       decl1 = declarator;
  7355.       last_function_parms = DECL_ARGUMENTS (decl1);
  7356.       last_function_parm_tags = 0;
  7357.       fntype = TREE_TYPE (decl1);
  7358.       if (TREE_CODE (fntype) == METHOD_TYPE)
  7359.     ctype = TYPE_METHOD_BASETYPE (fntype);
  7360.  
  7361.       if ( !(DECL_VIRTUAL_P (decl1)
  7362.          && write_virtuals >= 2
  7363.          && CLASSTYPE_VTABLE_NEEDS_WRITING (ctype)))
  7364.     current_extern_inline = TREE_PUBLIC (decl1);
  7365.  
  7366.       raises = TYPE_RAISES_EXCEPTIONS (fntype);
  7367.  
  7368.       /* In a fcn definition, arg types must be complete.  */
  7369.       require_complete_types_for_parms (last_function_parms);
  7370.     }
  7371.   else
  7372.     {
  7373.       decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1, raises);
  7374.       /* If the declarator is not suitable for a function definition,
  7375.      cause a syntax error.  */
  7376.       if (decl1 == 0 || TREE_CODE (decl1) != FUNCTION_DECL) return 0;
  7377.  
  7378.       fntype = TREE_TYPE (decl1);
  7379.  
  7380.       restype = TREE_TYPE (fntype);
  7381.       if (IS_AGGR_TYPE (restype)
  7382.       && ! CLASSTYPE_GOT_SEMICOLON (restype))
  7383.     {
  7384.       error_with_aggr_type (restype, "semicolon missing after declaration of `%s'");
  7385.       shadow_tag (build_tree_list (NULL_TREE, restype));
  7386.       CLASSTYPE_GOT_SEMICOLON (restype) = 1;
  7387.       if (TREE_CODE (fntype) == FUNCTION_TYPE)
  7388.         fntype = build_function_type (integer_type_node,
  7389.                       TYPE_ARG_TYPES (fntype));
  7390.       else
  7391.         fntype = build_cplus_method_type (TYPE_METHOD_BASETYPE (fntype),
  7392.                           integer_type_node,
  7393.                           TYPE_ARG_TYPES (fntype));
  7394.       TREE_TYPE (decl1) = fntype;
  7395.     }
  7396.  
  7397.       if (TREE_CODE (fntype) == METHOD_TYPE)
  7398.     ctype = TYPE_METHOD_BASETYPE (fntype);
  7399.       else if (IDENTIFIER_LENGTH (DECL_NAME (decl1)) == 4
  7400.            && ! strcmp (IDENTIFIER_POINTER (DECL_NAME (decl1)), "main"))
  7401.     {
  7402.       /* If this doesn't return an integer type, complain.  */
  7403.       if (TREE_CODE (TREE_TYPE (fntype)) != INTEGER_TYPE)
  7404.         {
  7405. #if 0
  7406.           error ("return type for `main' must be integer type");
  7407. #else
  7408.           warning ("return type for `main' changed to integer type");
  7409. #endif
  7410.           TREE_TYPE (decl1) = fntype = default_function_type;
  7411.         }
  7412.       warn_about_return_type = 0;
  7413.     }
  7414.     }
  7415.  
  7416.   /* Warn if function was previously implicitly declared
  7417.      (but not if we warned then).  */
  7418.   if (! warn_implicit && IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1)) != 0)
  7419.     warning_with_decl (IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1)),
  7420.                "`%s' implicitly declared before its definition");
  7421.  
  7422.   current_function_decl = decl1;
  7423.  
  7424.   if (flag_cadillac)
  7425.     cadillac_start_function (decl1);
  7426.   else
  7427.     announce_function (decl1);
  7428.  
  7429.   if (TYPE_SIZE (TREE_TYPE (fntype)) == 0)
  7430.     {
  7431.       if (IS_AGGR_TYPE (TREE_TYPE (fntype)))
  7432.     error_with_aggr_type (TREE_TYPE (fntype),
  7433.                   "return-type `%s' is an incomplete type");
  7434.       else
  7435.     error ("return-type is an incomplete type");
  7436.  
  7437.       /* Make it return void instead.  */
  7438.       if (ctype)
  7439.     TREE_TYPE (decl1)
  7440.       = build_cplus_method_type (ctype,
  7441.                      void_type_node,
  7442.                      TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl1))));
  7443.       else
  7444.     TREE_TYPE (decl1)
  7445.       = build_function_type (void_type_node,
  7446.                  TYPE_ARG_TYPES (TREE_TYPE (decl1)));
  7447.     }
  7448.  
  7449.   if (warn_about_return_type)
  7450.     warning ("return-type defaults to `int'");
  7451.  
  7452.   /* Make the init_value nonzero so pushdecl knows this is not tentative.
  7453.      error_mark_node is replaced below (in poplevel) with the LET_STMT.  */
  7454.   DECL_INITIAL (decl1) = error_mark_node;
  7455.  
  7456. #ifdef NO_AUTO_OVERLOAD
  7457.   /* If this definition isn't a prototype and we had a prototype declaration
  7458.      before, copy the arg type info from that prototype.  */
  7459.   olddecl = lookup_name_current_level (DECL_NAME (decl1));
  7460.   if (olddecl != 0
  7461.       && TREE_CODE (olddecl) != TREE_LIST
  7462.       && TREE_TYPE (TREE_TYPE (decl1)) == TREE_TYPE (TREE_TYPE (olddecl))
  7463.       && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0)
  7464.     {
  7465.       fntype = TREE_TYPE (olddecl);
  7466.       TREE_TYPE (decl1) = fntype;
  7467.     }
  7468. #endif
  7469.  
  7470.   /* Didn't get anything from C.  */
  7471.   olddecl = 0;
  7472.  
  7473.   /* This is a definition, not a reference.
  7474.      So normally clear TREE_EXTERNAL.
  7475.      However, `extern inline' acts like a declaration
  7476.      except for defining how to inline.  So set TREE_EXTERNAL in that case.  */
  7477.   TREE_EXTERNAL (decl1) = current_extern_inline;
  7478.  
  7479.   /* This function exists in static storage.
  7480.      (This does not mean `static' in the C sense!)  */
  7481.   TREE_STATIC (decl1) = 1;
  7482.  
  7483.   /* If this inline function belongs to the implementation, make it public.  */
  7484. #ifdef NeXT
  7485.   if (TREE_INLINE (decl1) && !TREE_PRIVATE (decl1) && interface_unknown == 0)
  7486. #else /* NeXT */
  7487.   if (TREE_INLINE (decl1) && interface_unknown == 0)
  7488. #endif /* NeXT */
  7489.     {
  7490.       TREE_PUBLIC (decl1) = ! interface_only;
  7491.       TREE_EXTERNAL (decl1) = interface_only;
  7492.     }
  7493.  
  7494.   /* Now see if this is the implementation of a function
  7495.      declared with "C" linkage.  */
  7496.   if (ctype == NULL_TREE && current_lang_name == lang_name_cplusplus)
  7497.     {
  7498.       olddecl = lookup_name_current_level (DECL_ORIGINAL_NAME (decl1));
  7499.       if (olddecl && TREE_CODE (olddecl) != FUNCTION_DECL)
  7500.     olddecl = NULL_TREE;
  7501.       if (olddecl
  7502.       && DECL_ORIGINAL_NAME (decl1) != DECL_ORIGINAL_NAME (olddecl))
  7503.     {
  7504.       /* Collision between user and internal naming scheme.  */
  7505.       olddecl = lookup_name_current_level (DECL_NAME (decl1));
  7506.       if (olddecl == NULL_TREE)
  7507.         olddecl = decl1;
  7508.     }
  7509.       if (olddecl && olddecl != decl1
  7510.       && DECL_ORIGINAL_NAME (decl1) == DECL_ORIGINAL_NAME (olddecl))
  7511.     {
  7512.       if (TREE_CODE (olddecl) == FUNCTION_DECL
  7513.           && (decls_match (decl1, olddecl)
  7514.           || comp_target_parms (TYPE_ARG_TYPES (TREE_TYPE (decl1)),
  7515.                     TYPE_ARG_TYPES (TREE_TYPE (olddecl)), 1)))
  7516.         {
  7517.           olddecl = DECL_MAIN_VARIANT (olddecl);
  7518.           DECL_NAME (decl1) = DECL_NAME (olddecl);
  7519.           DECL_PRINT_NAME (decl1) = DECL_PRINT_NAME (olddecl);
  7520.           DECL_OVERLOADED (decl1) = DECL_OVERLOADED (olddecl);
  7521.           if (DECL_INITIAL (olddecl))
  7522.         redeclaration_error_message (decl1, olddecl);
  7523.           if (! duplicate_decls (decl1, olddecl))
  7524.         abort ();
  7525.           decl1 = olddecl;
  7526.         }
  7527.       else
  7528.         olddecl = NULL_TREE;
  7529.     }
  7530.     }
  7531.  
  7532.   /* Record the decl so that the function name is defined.
  7533.      If we already have a decl for this name, and it is a FUNCTION_DECL,
  7534.      use the old decl.  */
  7535.  
  7536.   if (olddecl)
  7537.     current_function_decl = olddecl;
  7538.   else if (pre_parsed_p == 0)
  7539.     {
  7540.       current_function_decl = pushdecl (decl1);
  7541.       if (TREE_CODE (current_function_decl) == TREE_LIST)
  7542.     {
  7543.       /* @@ revert to modified original declaration.  */
  7544.       decl1 = DECL_MAIN_VARIANT (decl1);
  7545.       current_function_decl = decl1;
  7546.     }
  7547.       else
  7548.     {
  7549.       decl1 = current_function_decl;
  7550.       DECL_MAIN_VARIANT (decl1) = decl1;
  7551.     }
  7552.       fntype = TREE_TYPE (decl1);
  7553.     }
  7554.   else
  7555.     current_function_decl = decl1;
  7556.  
  7557.   if (DECL_OVERLOADED (decl1))
  7558.     push_overloaded_decl (decl1);
  7559.  
  7560.   if (ctype != 0 && DECL_STATIC_FUNCTION_P (decl1))
  7561.     {
  7562.       if (TREE_CODE (fntype) == METHOD_TYPE)
  7563.     TREE_TYPE (decl1) = fntype
  7564.       = build_function_type (TREE_TYPE (fntype),
  7565.                  TREE_CHAIN (TYPE_ARG_TYPES (fntype)));
  7566.       last_function_parms = TREE_CHAIN (last_function_parms);
  7567.       DECL_ARGUMENTS (decl1) = last_function_parms;
  7568.       ctype = 0;
  7569.     }
  7570.   restype = TREE_TYPE (fntype);
  7571.  
  7572.   pushlevel (0);
  7573.   current_binding_level->parm_flag = 1;
  7574.  
  7575.   /* Save the parm names or decls from this function's declarator
  7576.      where store_parm_decls will find them.  */
  7577.   current_function_parms = last_function_parms;
  7578.   current_function_parm_tags = last_function_parm_tags;
  7579.  
  7580. #ifdef FIELD_XREF
  7581.   FIELD_xref_function(decl1,current_function_parms);
  7582. #endif
  7583.  
  7584.   make_function_rtl (decl1);
  7585.  
  7586.   if (ctype)
  7587.     {
  7588.       pushclass (ctype, 1);
  7589.       /* We know that this was set up by `grokclassfn'.
  7590.      We do not wait until `store_parm_decls', since evil
  7591.      parse errors may never get us to that point.  Here
  7592.      we keep the consistency between `current_class_type'
  7593.      and `current_class_decl'.  */
  7594.       current_class_decl = last_function_parms;
  7595.       assert (TREE_CODE (current_class_decl) == PARM_DECL);
  7596.       if (TREE_CODE (TREE_TYPE (current_class_decl)) == POINTER_TYPE)
  7597.     {
  7598.       tree variant = TREE_TYPE (TREE_TYPE (current_class_decl));
  7599.       if (CLASSTYPE_INST_VAR (ctype) == NULL_TREE)
  7600.         {
  7601.           /* Can't call build_indirect_ref here, because it has special
  7602.          logic to return C_C_D given this argument.  */
  7603.           C_C_D = build1 (INDIRECT_REF, current_class_type, current_class_decl);
  7604.           CLASSTYPE_INST_VAR (ctype) = C_C_D;
  7605.         }
  7606.       else
  7607.         {
  7608.           C_C_D = CLASSTYPE_INST_VAR (ctype);
  7609.           /* `current_class_decl' is different for every
  7610.          function we compile.  */
  7611.           TREE_OPERAND (C_C_D, 0) = current_class_decl;
  7612.         }
  7613.       TREE_READONLY (C_C_D) = TREE_READONLY (variant);
  7614.       TREE_VOLATILE (C_C_D) = TREE_VOLATILE (variant);
  7615.     }
  7616.       else
  7617.     C_C_D = current_class_decl;
  7618.     }
  7619.   else
  7620.     {
  7621.       if (DECL_STATIC_FUNCTION_P (decl1))
  7622.     pushclass (DECL_STATIC_CONTEXT (decl1), 2);
  7623.       else
  7624.     push_memoized_context (0, 1);
  7625.     }
  7626.  
  7627.   /* Promote the value to int before returning it.  */
  7628.   if (TREE_CODE (restype) == INTEGER_TYPE
  7629.       && TYPE_PRECISION (restype) < TYPE_PRECISION (integer_type_node))
  7630.     restype = integer_type_node;
  7631.   DECL_RESULT_TYPE (decl1) = restype;
  7632.   DECL_RESULT (decl1) = build_decl (RESULT_DECL, value_identifier, restype);
  7633.  
  7634.   if (DESTRUCTOR_NAME_P (DECL_NAME (decl1)))
  7635.     {
  7636.       dtor_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  7637.       ctor_label = NULL_TREE;
  7638.     }
  7639.   else
  7640.     {
  7641.       dtor_label = NULL_TREE;
  7642.       if (DECL_CONSTRUCTOR_P (decl1))
  7643.     {
  7644.       ctor_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  7645.  
  7646.       /* Initializations from `emit_base_init' might go inline.
  7647.          Protect the binding level of the parms.  */
  7648.       pushlevel (0);
  7649.     }
  7650.     }
  7651.  
  7652.   /* Allocate further tree nodes temporarily during compilation
  7653.      of this function only.  */
  7654.   temporary_allocation ();
  7655.  
  7656.   /* If this fcn was already referenced via a block-scope `extern' decl
  7657.      (or an implicit decl), propagate certain information about the usage.  */
  7658.   if (TREE_ADDRESSABLE (DECL_NAME (decl1)))
  7659.     TREE_ADDRESSABLE (decl1) = 1;
  7660.       
  7661.   return 1;
  7662. }
  7663.  
  7664. /* Store the parameter declarations into the current function declaration.
  7665.    This is called after parsing the parameter declarations, before
  7666.    digesting the body of the function.
  7667.  
  7668.    Also install to binding contour return value identifier, if any.  */
  7669.  
  7670. void
  7671. store_parm_decls ()
  7672. {
  7673.   register tree fndecl = current_function_decl;
  7674.   register tree parm;
  7675.   int parms_have_cleanups = 0;
  7676.   tree eh_decl;
  7677.  
  7678.   /* This is either a chain of PARM_DECLs (when a prototype is used).  */
  7679.   tree specparms = current_function_parms;
  7680.  
  7681.   /* This is a list of types declared among parms in a prototype.  */
  7682.   tree parmtags = current_function_parm_tags;
  7683.  
  7684.   /* This is a chain of any other decls that came in among the parm
  7685.      declarations.  If a parm is declared with  enum {foo, bar} x;
  7686.      then CONST_DECLs for foo and bar are put here.  */
  7687.   tree nonparms = 0;
  7688.  
  7689.   if (current_binding_level == global_binding_level)
  7690.     fatal ("parse errors have confused me too much");
  7691.  
  7692.   /* Initialize RTL machinery.  */
  7693.   init_function_start (fndecl);
  7694.  
  7695.   /* Create a binding level for the parms.  */
  7696.   expand_start_bindings (0);
  7697.  
  7698.   /* Prepare to catch raises, if appropriate.  */
  7699.   if (flag_handle_exceptions)
  7700.     {
  7701.       /* Get this cleanup to be run last, since it
  7702.      is a call to `longjmp'.  */
  7703.       setup_exception_throw_decl ();
  7704.       eh_decl = current_binding_level->names;
  7705.       current_binding_level->names = TREE_CHAIN (current_binding_level->names);
  7706.     }
  7707.   if (flag_handle_exceptions)
  7708.     expand_start_try (integer_one_node, 0, 1);
  7709.  
  7710.   if (specparms != 0)
  7711.     {
  7712.       /* This case is when the function was defined with an ANSI prototype.
  7713.      The parms already have decls, so we need not do anything here
  7714.      except record them as in effect
  7715.      and complain if any redundant old-style parm decls were written.  */
  7716.  
  7717.       register tree next;
  7718.  
  7719.       for (parm = nreverse (specparms); parm; parm = next)
  7720.     {
  7721.       tree cleanup = maybe_build_cleanup (parm);
  7722.       next = TREE_CHAIN (parm);
  7723.       if (DECL_NAME (parm) == 0)
  7724.         {
  7725. #if 0
  7726.           error_with_decl (parm, "parameter name omitted");
  7727. #else
  7728.           /* for C++, this is not an error.  */
  7729.           pushdecl (parm);
  7730. #endif
  7731.         }
  7732.       else if (TREE_TYPE (parm) == void_type_node)
  7733.         error_with_decl (parm, "parameter `%s' declared void");
  7734.       else
  7735.         {
  7736.           /* Now fill in DECL_REFERENCE_SLOT for any of the parm decls.
  7737.          A parameter is assumed not to have any side effects.
  7738.          If this should change for any reason, then this
  7739.          will have to wrap the bashed reference type in a save_expr.
  7740.          
  7741.          Also, if the parameter type is declared to be an X
  7742.          and there is an X(X&) constructor, we cannot lay it
  7743.          into the stack (any more), so we make this parameter
  7744.          look like it is really of reference type.  Functions
  7745.          which pass parameters to this function will know to
  7746.          create a temporary in their frame, and pass a reference
  7747.          to that.  */
  7748.  
  7749.           if (TREE_CODE (TREE_TYPE (parm)) == REFERENCE_TYPE
  7750.           && TYPE_SIZE (TREE_TYPE (TREE_TYPE (parm))))
  7751.         SET_DECL_REFERENCE_SLOT (parm, convert_from_reference (parm));
  7752.  
  7753.           pushdecl (parm);
  7754.         }
  7755.  
  7756.       if (cleanup)
  7757.         {
  7758.           expand_decl (parm);
  7759.           expand_decl_cleanup (parm, cleanup);
  7760.           parms_have_cleanups = 1;
  7761.         }
  7762.     }
  7763.  
  7764.       /* Get the decls in their original chain order
  7765.      and record in the function.  */
  7766.       DECL_ARGUMENTS (fndecl) = getdecls ();
  7767.  
  7768.       storetags (chainon (parmtags, gettags ()));
  7769.     }
  7770.   else
  7771.     DECL_ARGUMENTS (fndecl) = 0;
  7772.  
  7773.   /* Now store the final chain of decls for the arguments
  7774.      as the decl-chain of the current lexical scope.
  7775.      Put the enumerators in as well, at the front so that
  7776.      DECL_ARGUMENTS is not modified.  */
  7777.  
  7778.   storedecls (chainon (nonparms, DECL_ARGUMENTS (fndecl)));
  7779.  
  7780.   /* Initialize the RTL code for the function.  */
  7781.   DECL_SAVED_INSNS (fndecl) = 0;
  7782.   expand_function_start (fndecl, parms_have_cleanups);
  7783.  
  7784.   if (flag_handle_exceptions)
  7785.     {
  7786.       /* Make the throw decl visibile at this level, just
  7787.      not in the way of the parameters.  */
  7788.       pushdecl (eh_decl);
  7789.       expand_decl_init (eh_decl);
  7790.     }
  7791.  
  7792.   /* Create a binding contour which can be used to catch
  7793.      cleanup-generated temporaries.  Also, if the return value needs or
  7794.      has initialization, deal with that now.  */
  7795.   pushlevel (0);
  7796.   expand_start_bindings (0);
  7797.   current_function_parms_stored = 1;
  7798.  
  7799. #ifndef NeXT
  7800.   /* If this function is `main', emit a call to `__main'
  7801.      to run global initializers, etc.  */
  7802.   if (IDENTIFIER_LENGTH (DECL_NAME (fndecl)) == 4
  7803.       && strcmp (IDENTIFIER_POINTER (DECL_NAME (fndecl)), "main") == 0)
  7804.     expand_expr (build_function_call (lookup_name (get_identifier ("__main")), NULL_TREE),
  7805.          0, VOIDmode, 0);
  7806. #endif /* not NeXT */
  7807. }
  7808.  
  7809. /* Bind a name and initialization to the return value of
  7810.    the current function.  */
  7811. void
  7812. store_return_init (init)
  7813.      tree init;
  7814. {
  7815.   tree decl = DECL_RESULT (current_function_decl);
  7816.  
  7817.   /* Can't let this happen for constructors.  */
  7818.   if (DECL_CONSTRUCTOR_P (current_function_decl))
  7819.     {
  7820.       error ("can't redefine default return value for constructors");
  7821.       return;
  7822.     }
  7823.  
  7824.   /* If we have a named return value, put that in our scope as well.  */
  7825.   if (DECL_NAME (decl) != value_identifier)
  7826.     {
  7827.       /* If this named return value comes in a register,
  7828.      put it in a pseudo-register.  */
  7829.       if (TREE_REGDECL (decl))
  7830.     {
  7831.       original_result_rtx = DECL_RTL (decl);
  7832.       DECL_RTL (decl) = (struct rtx_def *)gen_reg_rtx (DECL_MODE (decl));
  7833.     }
  7834.  
  7835.       /* Let `finish_decl' know that this initializer is ok.  */
  7836.       DECL_INITIAL (decl) = init;
  7837.       pushdecl (decl);
  7838.       finish_decl (decl, init, 0);
  7839.     }
  7840. }
  7841.  
  7842. /* Generate code for default X(X&) constructor.  */
  7843. static void
  7844. build_default_constructor (fndecl)
  7845.      tree fndecl;
  7846. {
  7847.   int i = CLASSTYPE_N_BASECLASSES (current_class_type);
  7848.   tree parm = TREE_CHAIN (DECL_ARGUMENTS (fndecl));
  7849.   tree fields = TYPE_FIELDS (current_class_type);
  7850.   if (TYPE_USES_VIRTUAL_BASECLASSES (current_class_type))
  7851.     parm = TREE_CHAIN (parm);
  7852.   parm = DECL_REFERENCE_SLOT (parm);
  7853.  
  7854.   while (i > 0)
  7855.     {
  7856.       tree basetype = CLASSTYPE_BASECLASS (current_class_type, i);
  7857.       if (TYPE_GETS_INIT_REF (basetype))
  7858.     {
  7859.       tree name = TYPE_NAME (basetype);
  7860.       if (TREE_CODE (name) == TYPE_DECL)
  7861.         name = DECL_NAME (name);
  7862.       current_base_init_list = tree_cons (name, parm, current_base_init_list);
  7863.     }
  7864.       i -= 1;
  7865.     }
  7866.   for (fields = TYPE_FIELDS (current_class_type); fields;
  7867.        fields = TREE_CHAIN (fields))
  7868.     {
  7869.       tree name, init;
  7870.       if (TREE_STATIC (fields))
  7871.     continue;
  7872.       if (TREE_CODE (fields) != FIELD_DECL)
  7873.     continue;
  7874.       if (DECL_NAME (fields))
  7875.     {
  7876.       if (VFIELD_NAME_P (DECL_NAME (fields)))
  7877.         continue;
  7878.       if (VBASE_NAME_P (DECL_NAME (fields)))
  7879.         continue;
  7880.  
  7881.       /* True for duplicate members.  */
  7882.       if (IDENTIFIER_CLASS_VALUE (DECL_NAME (fields)) != fields)
  7883.         continue;
  7884.     }
  7885.  
  7886.       init = build (COMPONENT_REF, TREE_TYPE (fields), parm, fields);
  7887.  
  7888.       if (TREE_ANON_UNION_ELEM (fields))
  7889.     name = build (COMPONENT_REF, TREE_TYPE (fields), C_C_D, fields);
  7890.       else
  7891.     {
  7892.       name = DECL_NAME (fields);
  7893.       init = build_tree_list (NULL_TREE, init);
  7894.     }
  7895.  
  7896.       current_member_init_list
  7897.     = tree_cons (name, init, current_member_init_list);
  7898.     }
  7899. }
  7900.  
  7901.  
  7902. /* Finish up a function declaration and compile that function
  7903.    all the way to assembler language output.  The free the storage
  7904.    for the function definition.
  7905.  
  7906.    This is called after parsing the body of the function definition.
  7907.    LINENO is the current line number.
  7908.  
  7909.    C++: CALL_POPLEVEL is non-zero if an extra call to poplevel
  7910.    (and expand_end_bindings) must be made to take care of the binding
  7911.    contour for the base initialazers.  This is only relevant for
  7912.    constructors.  */
  7913.  
  7914. void
  7915. finish_function (lineno, call_poplevel)
  7916.      int lineno;
  7917.      int call_poplevel;
  7918. {
  7919.   register tree fndecl = current_function_decl;
  7920.   tree fntype = TREE_TYPE (fndecl), ctype = NULL_TREE;
  7921.   struct rtx_def *head, *last_parm_insn, *mark;
  7922.   extern struct rtx_def *get_last_insn ();
  7923.   extern struct rtx_def *cleanup_label, *return_label;
  7924.   extern int sets_exception_throw_decl;
  7925.  
  7926. /*  TREE_READONLY (fndecl) = 1;
  7927.     This caused &foo to be of type ptr-to-const-function
  7928.     which then got a warning when stored in a ptr-to-function variable.  */
  7929.  
  7930.   /* This happens on strange parse errors.  */
  7931.   if (! current_function_parms_stored)
  7932.     {
  7933.       call_poplevel = 0;
  7934.       store_parm_decls ();
  7935.     }
  7936.  
  7937.   /* Clean house because we will need to reorder insns here.  */
  7938.   do_pending_stack_adjust ();
  7939.  
  7940.   if (dtor_label)
  7941.     {
  7942.       tree cond = integer_one_node;
  7943.       tree exprstmt, vfields;
  7944.       tree in_charge_node = lookup_name (in_charge_identifier);
  7945.       int ok_to_optimize_dtor = 0;
  7946.  
  7947.       if (current_function_assigns_this)
  7948.     cond = build (NE_EXPR, integer_type_node,
  7949.               current_class_decl, integer_zero_node);
  7950.       else
  7951.     {
  7952.       int n_baseclasses = CLASSTYPE_N_BASECLASSES (current_class_type);
  7953.  
  7954.       /* If this destructor is empty, then we don't need to check
  7955.          whether `this' is NULL in some cases.  */
  7956.       mark = get_last_insn ();
  7957.       last_parm_insn = (struct rtx_def *)get_first_nonparm_insn ();
  7958.  
  7959.       if ((flag_this_is_variable & 1) == 0)
  7960.         ok_to_optimize_dtor = 1;
  7961.       else if (mark == last_parm_insn)
  7962.         ok_to_optimize_dtor
  7963.           = (n_baseclasses == 0
  7964.          || (n_baseclasses == 1
  7965.              && TYPE_HAS_DESTRUCTOR (CLASSTYPE_BASECLASS (current_class_type, 1))));
  7966.     }
  7967.  
  7968.       /* These initializations might go inline.  Protect
  7969.      the binding level of the parms.  */
  7970.       pushlevel (0);
  7971.  
  7972.       if (current_function_assigns_this)
  7973.     {
  7974.       TYPE_ANY_ASSIGNS_THIS (current_class_type) = 1;
  7975.       current_function_assigns_this = 0;
  7976.       current_function_just_assigned_this = 0;
  7977.     }
  7978.  
  7979.       /* Generate the code to call destructor on base class.
  7980.      If this destructor belongs to a class with virtual
  7981.      functions, then set the virtual function table
  7982.      pointer to represent the type of our base class.  */
  7983.  
  7984.       /* This side-effect makes call to `build_delete' generate the
  7985.      code we have to have at the end of this destructor.  */
  7986.       TYPE_HAS_DESTRUCTOR (current_class_type) = 0;
  7987.  
  7988.       /* These are two cases where we cannot delegate deletion.  */
  7989.       if (TYPE_USES_VIRTUAL_BASECLASSES (current_class_type)
  7990.       || TREE_GETS_DELETE (current_class_type))
  7991.     exprstmt = build_delete (current_class_type, C_C_D, integer_zero_node,
  7992.                  LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR, 0);
  7993.       else
  7994.     exprstmt = build_delete (current_class_type, C_C_D, in_charge_node,
  7995.                  LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR, 0);
  7996.  
  7997.       /* If we did not assign to this, then `this' is non-zero at
  7998.      the end of a destructor.  As a special optimization, don't
  7999.      emit test if this is an empty destructor.  If it does nothing,
  8000.      it does nothing.  If it calls a base destructor, the base
  8001.      destructor will perform the test.  */
  8002.  
  8003.       if (exprstmt != error_mark_node
  8004.       && (TREE_CODE (exprstmt) != NOP_EXPR
  8005.           || TREE_OPERAND (exprstmt, 0) != integer_zero_node
  8006.           || TYPE_USES_VIRTUAL_BASECLASSES (current_class_type)))
  8007.     {
  8008.       expand_label (dtor_label);
  8009.       if (cond != integer_one_node)
  8010.         expand_start_cond (cond, 0);
  8011. #ifdef NeXT
  8012.       if (TREE_CODE (exprstmt) != NOP_EXPR
  8013.           || TREE_OPERAND (exprstmt, 0) != integer_zero_node)
  8014.         /* Don't call `expand_expr_stmt' if we're not going to do
  8015.            anything, since -Wall will give a diagnostic.  */
  8016. #endif /* NeXT */
  8017.       expand_expr_stmt (exprstmt);
  8018.  
  8019.       /* Run destructor on all virtual baseclasses.  */
  8020.       if (TYPE_USES_VIRTUAL_BASECLASSES (current_class_type))
  8021.         {
  8022.           tree vbases = nreverse (copy_list (CLASSTYPE_VBASECLASSES (current_class_type)));
  8023.           expand_start_cond (build (BIT_AND_EXPR, integer_type_node,
  8024.                     in_charge_node, integer_two_node), 0);
  8025.           while (vbases)
  8026.         {
  8027.           if (TYPE_NEEDS_DESTRUCTOR (TREE_VALUE (vbases)))
  8028.             {
  8029.               tree ptr = convert_pointer_to_vbase (TREE_TYPE (vbases), current_class_decl);
  8030.               expand_expr_stmt (build_delete (TYPE_POINTER_TO (TREE_VALUE (vbases)),
  8031.                               ptr, integer_zero_node,
  8032.                               LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR|LOOKUP_HAS_IN_CHARGE, 0));
  8033.             }
  8034.           vbases = TREE_CHAIN (vbases);
  8035.         }
  8036.           expand_end_cond ();
  8037.         }
  8038.  
  8039.       do_pending_stack_adjust ();
  8040.       if (cond != integer_one_node)
  8041.         expand_end_cond ();
  8042.     }
  8043.  
  8044.       TYPE_HAS_DESTRUCTOR (current_class_type) = 1;
  8045.  
  8046.       /* At the end, call delete if that's what's requested.  */
  8047. #ifdef NeXT
  8048.       if (TREE_GETS_TWO_ARG_DELETE (current_class_type))
  8049.     exprstmt = build_method_call (build1 (NOP_EXPR, TYPE_POINTER_TO (current_class_type), error_mark_node),
  8050.                       get_identifier (OPERATOR_DELETE_FORMAT),
  8051.                       tree_cons (NULL_TREE,
  8052.                         current_class_decl,
  8053.                         build_tree_list (NULL_TREE,
  8054.                             size_in_bytes (current_class_type))),
  8055.                       NULL_TREE, LOOKUP_NORMAL);
  8056.       else
  8057. #endif /* NeXT */
  8058.       if (TREE_GETS_DELETE (current_class_type))
  8059.     exprstmt = build_method_call (build1 (NOP_EXPR, TYPE_POINTER_TO (current_class_type), error_mark_node),
  8060.                       get_identifier (OPERATOR_DELETE_FORMAT),
  8061. #ifdef NeXT
  8062.                       build_tree_list (NULL_TREE, current_class_decl),
  8063. #else /* NeXT */
  8064.                       build_tree_list (NULL_TREE, integer_zero_node),
  8065. #endif /* NeXT */
  8066.                       NULL_TREE, LOOKUP_NORMAL);
  8067.       else if (TYPE_USES_VIRTUAL_BASECLASSES (current_class_type))
  8068.     exprstmt = build_x_delete (ptr_type_node, current_class_decl, 0);
  8069.       else
  8070.     exprstmt = 0;
  8071.  
  8072.       if (exprstmt)
  8073.     {
  8074.       cond = build (BIT_AND_EXPR, integer_type_node,
  8075.             in_charge_node, integer_one_node);
  8076.       expand_start_cond (cond, 0);
  8077.       expand_expr_stmt (exprstmt);
  8078.       expand_end_cond ();
  8079.     }
  8080.  
  8081.       /* End of destructor.  */
  8082.       poplevel (2, 0, 0);
  8083.  
  8084.       /* Back to the top of destructor.  */
  8085.       /* Dont execute destructor code if `this' is NULL.  */
  8086.       mark = get_last_insn ();
  8087.       last_parm_insn = (struct rtx_def *)get_first_nonparm_insn ();
  8088.       if (last_parm_insn == 0) last_parm_insn = mark;
  8089.       else last_parm_insn = (struct rtx_def *) previous_insn (last_parm_insn);
  8090.  
  8091.       /* Make all virtual function table pointers point to CURRENT_CLASS_TYPE's
  8092.      virtual function tables.  */
  8093.       if (CLASSTYPE_VFIELDS (current_class_type))
  8094.     {
  8095.       for (vfields = CLASSTYPE_VFIELDS (current_class_type);
  8096.            TREE_CHAIN (vfields);
  8097.            vfields = TREE_CHAIN (vfields))
  8098.         expand_expr_stmt (build_virtual_init (current_class_type,
  8099.                           TREE_VALUE (vfields),
  8100.                           current_class_decl));
  8101.       expand_expr_stmt (build_virtual_init (current_class_type,
  8102.                         current_class_type,
  8103.                         current_class_decl));
  8104.     }
  8105.       if (TYPE_USES_VIRTUAL_BASECLASSES (current_class_type))
  8106.     expand_expr_stmt (build_vbase_vtables_init (current_class_type,
  8107.                             current_class_type,
  8108.                             C_C_D, current_class_decl, 0));
  8109. #ifdef sparc
  8110.       expand_asm_operands (build_string (32, "! end of vtable initialization"), 0, 0, 0, 0, input_filename, lineno);
  8111. #endif
  8112.  
  8113.       if (! ok_to_optimize_dtor)
  8114.     {
  8115.       cond = build_binary_op (NE_EXPR, current_class_decl, integer_zero_node);
  8116.       expand_start_cond (cond, 0);
  8117.     }
  8118.       if (mark != get_last_insn ())
  8119.     reorder_insns (next_insn (mark), get_last_insn (), last_parm_insn);
  8120.       if (! ok_to_optimize_dtor)
  8121.       expand_end_cond ();
  8122.     }
  8123.   else if (current_function_assigns_this)
  8124.     {
  8125.       /* Does not need to call emit_base_init, because
  8126.      that is done (if needed) just after assignment to this
  8127.      is seen.  */
  8128.  
  8129.       TYPE_ANY_ASSIGNS_THIS (current_class_type) = 1;
  8130.  
  8131.       if (DECL_CONSTRUCTOR_P (current_function_decl))
  8132.     {
  8133.       /* Undo call to pushlevel from `start_function'.  */
  8134.       poplevel (2, 0, 0);
  8135.  
  8136.       expand_label (ctor_label);
  8137.       ctor_label = NULL_TREE;
  8138.  
  8139.       if (call_poplevel)
  8140.         {
  8141.           tree decls = getdecls ();
  8142.           if (flag_handle_exceptions == 2)
  8143.         deactivate_exception_cleanups ();
  8144.           expand_end_bindings (decls, decls != 0, 0);
  8145.           poplevel (decls != 0, 0, 0);
  8146.         }
  8147.  
  8148.       c_expand_return (current_class_decl);
  8149.     }
  8150.  
  8151.       current_function_assigns_this = 0;
  8152.       current_function_just_assigned_this = 0;
  8153.       base_init_insns = 0;
  8154.     }
  8155.   else if (DECL_CONSTRUCTOR_P (fndecl))
  8156.     {
  8157.       tree allocated_this;
  8158.       tree cond, thenclause;
  8159.       /* Allow constructor for a type to get a new instance of the object
  8160.      using `build_new'.  */
  8161.       tree abstract_virtuals = CLASSTYPE_ABSTRACT_VIRTUALS (current_class_type);
  8162.       CLASSTYPE_ABSTRACT_VIRTUALS (current_class_type) = NULL_TREE;
  8163.  
  8164.       DECL_RETURNS_FIRST_ARG (fndecl) = 1;
  8165.  
  8166.       if (flag_this_is_variable)
  8167.     {
  8168.       cond = build_binary_op (EQ_EXPR, current_class_decl, integer_zero_node);
  8169.       thenclause = build_modify_expr (current_class_decl, NOP_EXPR,
  8170.                       build_new (NULL_TREE, current_class_type, void_type_node, 0));
  8171.       if (flag_handle_exceptions == 2)
  8172.         {
  8173.           tree cleanup, cleanup_deallocate;
  8174.  
  8175.           allocated_this = build_decl (VAR_DECL, NULL_TREE, ptr_type_node);
  8176.           TREE_REGDECL (allocated_this) = 1;
  8177.           DECL_INITIAL (allocated_this) = error_mark_node;
  8178.           expand_decl (allocated_this);
  8179.           expand_decl_init (allocated_this);
  8180.           /* How we cleanup `this' if an exception was raised before
  8181.          we are ready to bail out.  */
  8182.           cleanup = TREE_GETS_DELETE (current_class_type)
  8183.         ? build_opfncall (DELETE_EXPR, LOOKUP_NORMAL, allocated_this)
  8184.           : build_delete (TREE_TYPE (allocated_this), allocated_this, integer_three_node, LOOKUP_NORMAL|LOOKUP_HAS_IN_CHARGE, 1);
  8185.           cleanup_deallocate
  8186.         = build_modify_expr (current_class_decl, NOP_EXPR, integer_zero_node);
  8187.           cleanup = tree_cons (NULL_TREE, cleanup,
  8188.                    build_tree_list (NULL_TREE, cleanup_deallocate));
  8189.  
  8190.           expand_decl_cleanup (allocated_this,
  8191.                    build (COND_EXPR, integer_type_node,
  8192.                       build (NE_EXPR, integer_type_node,
  8193.                          allocated_this, integer_zero_node),
  8194.                       build_compound_expr (cleanup),
  8195.                       integer_zero_node));
  8196.         }
  8197.     }
  8198.       else if (TREE_GETS_NEW (current_class_type))
  8199.     /* Just check visibility here.  */
  8200.     build_method_call (build1 (NOP_EXPR, TYPE_POINTER_TO (current_class_type), error_mark_node),
  8201.                get_identifier (OPERATOR_NEW_FORMAT),
  8202.                build_tree_list (NULL_TREE, integer_zero_node),
  8203.                NULL_TREE, LOOKUP_NORMAL);
  8204.  
  8205.       CLASSTYPE_ABSTRACT_VIRTUALS (current_class_type) = abstract_virtuals;
  8206.  
  8207.       /* must keep the first insn safe.  */
  8208.       head = (struct rtx_def *)get_insns ();
  8209.  
  8210.       /* this note will come up to the top with us.  */
  8211.       mark = get_last_insn ();
  8212.  
  8213.       if (flag_this_is_variable)
  8214.     {
  8215.       expand_start_cond (cond, 0);
  8216.       expand_expr_stmt (thenclause);
  8217.       if (flag_handle_exceptions == 2)
  8218.         expand_assignment (allocated_this, current_class_decl, 0, 0);
  8219.       expand_end_cond ();
  8220.     }
  8221.  
  8222.       if (DECL_COMPILER_GENERATED_P (fndecl)
  8223.       && TREE_CHAIN (DECL_ARGUMENTS (fndecl)) != NULL_TREE)
  8224.     build_default_constructor (fndecl);
  8225.  
  8226.       /* Emit insns from `emit_base_init' which sets up virtual
  8227.      function table pointer(s).  */
  8228.       emit_insns (base_init_insns);
  8229.       base_init_insns = 0;
  8230.  
  8231.       /* This is where the body of the constructor begins.
  8232.      If there were no insns in this function body, then the
  8233.      last_parm_insn is also the last insn.
  8234.  
  8235.      If optimization is enabled, last_parm_insn may move, so
  8236.      we don't hold on to it (across emit_base_init).  */
  8237.       last_parm_insn = (struct rtx_def *)get_first_nonparm_insn ();
  8238.       if (last_parm_insn == 0) last_parm_insn = mark;
  8239.       else last_parm_insn = (struct rtx_def *) previous_insn (last_parm_insn);
  8240.  
  8241.       if (mark != get_last_insn ())
  8242.     reorder_insns (next_insn (mark), get_last_insn (), last_parm_insn);
  8243.  
  8244.       /* This is where the body of the constructor ends.  */
  8245.       expand_label (ctor_label);
  8246.       ctor_label = NULL_TREE;
  8247.       if (flag_handle_exceptions == 2)
  8248.     {
  8249.       expand_assignment (allocated_this, integer_zero_node, 0, 0);
  8250.       deactivate_exception_cleanups ();
  8251.     }
  8252.  
  8253.       pop_implicit_try_blocks (NULL_TREE);
  8254.  
  8255.       /* Undo call to pushlevel from `start_function'.  */
  8256.       poplevel (2, 0, 0);
  8257.  
  8258.       if (call_poplevel)
  8259.     {
  8260.       expand_end_bindings (getdecls (), 1, 0);
  8261.       poplevel (1, 1, 0);
  8262.     }
  8263.  
  8264.       if (any_pending_cleanups ())
  8265.     /* Do things the hard way.  */
  8266.     c_expand_return (current_class_decl);
  8267.       else
  8268.     {
  8269.       /* Just store CURRENT_CLASS_DECL in the
  8270.          DECL_RESULT of our current function decl
  8271.          and fall through to end.  */
  8272.       struct rtx_def *val = DECL_RTL (DECL_RESULT (fndecl));
  8273.       store_expr (current_class_decl, val, 0);
  8274.       emit_queue ();
  8275.       use_variable (val);
  8276.     }
  8277.  
  8278.       current_function_assigns_this = 0;
  8279.       current_function_just_assigned_this = 0;
  8280.     }
  8281.   else if (IDENTIFIER_LENGTH (DECL_NAME (fndecl)) == 4
  8282.        && ! strcmp (IDENTIFIER_POINTER (DECL_NAME (fndecl)), "main"))
  8283.     {
  8284.       /* Make it so that `main' always returns 0 by default.  */
  8285. #ifdef VMS
  8286.       c_expand_return (integer_one_node);
  8287. #else
  8288.       c_expand_return (integer_zero_node);
  8289. #endif
  8290.     }
  8291.  
  8292.   /* That's the end of the vtable decl's life.  Need to mark it such
  8293.      if doing stupid register allocation.
  8294.  
  8295.      Note that current_vtable_decl is really an INDIRECT_REF
  8296.      on top of a VAR_DECL here.  */
  8297.   if (obey_regdecls && current_vtable_decl)
  8298.     use_variable (DECL_RTL (TREE_OPERAND (current_vtable_decl, 0)));
  8299.  
  8300.   /* remove the binding contour which is used
  8301.      to catch cleanup-generated temporaries.  */
  8302.   expand_end_bindings (0, 0, 0);
  8303.   poplevel (0, 0, 0);
  8304.  
  8305.   /* Must mark the RESULT_DECL as being in this function.  */
  8306.  
  8307.   DECL_CONTEXT (DECL_RESULT (fndecl)) = DECL_INITIAL (fndecl);
  8308.  
  8309.   /* Obey `register' declarations if `setjmp' is called in this fn.  */
  8310.   if (flag_traditional && current_function_calls_setjmp)
  8311.     setjmp_protect (DECL_INITIAL (fndecl));
  8312.  
  8313.   /* Generate rtl for function exit.  */
  8314.   head = get_last_insn ();
  8315.   expand_function_end (input_filename, lineno);
  8316.  
  8317.   if (cleanup_label)
  8318.     {
  8319.       mark = get_last_insn ();
  8320.       /* Emit label at beginning of cleanup code for parmeters.  */
  8321.       emit_label (cleanup_label);
  8322.     }
  8323.  
  8324. #if 1
  8325.   /* Cheap hack to get better code from GNU C++.  Remove when cse is fixed.  */
  8326.   if (exception_throw_decl && sets_exception_throw_decl == 0)
  8327.     expand_assignment (exception_throw_decl, integer_zero_node, 0, 0);
  8328. #endif
  8329.  
  8330.   if (flag_handle_exceptions)
  8331.     {
  8332.       expand_end_try ();
  8333.       expand_start_except (0, 0);
  8334.       expand_end_except ();
  8335.     }
  8336.   expand_end_bindings (0, 0, 0);
  8337.  
  8338.   /* Get return value into reigster if that's where it's supposed to be.  */
  8339.   if (original_result_rtx)
  8340.     fixup_result_decl (DECL_RESULT (fndecl), original_result_rtx);
  8341.  
  8342.   /* reset scope for C++: if we were in the scope of a class,
  8343.      then when we finish this function, we are not longer so.
  8344.      This cannot be done until we know for sure that no more
  8345.      class members will ever be referenced in this function
  8346.      (i.e., calls to destructors).  */
  8347.   if (current_class_name)
  8348.     {
  8349.       ctype = current_class_type;
  8350.       popclass (1);
  8351.     }
  8352.   else
  8353.     pop_memoized_context (1);
  8354.  
  8355.   /* Forget about all overloaded functions defined in
  8356.      this scope which go away.  */
  8357.   while (overloads_to_forget)
  8358.     {
  8359.       IDENTIFIER_GLOBAL_VALUE (TREE_PURPOSE (overloads_to_forget))
  8360.     = TREE_VALUE (overloads_to_forget);
  8361.       overloads_to_forget = TREE_CHAIN (overloads_to_forget);
  8362.     }
  8363.  
  8364.   poplevel (1, 0, 1);
  8365.  
  8366.   if (cleanup_label)
  8367.     {
  8368.       /* To keep us from getting the compiler confused about
  8369.      what constitutes control dropping off the end,
  8370.      send control to RETURN_LABEL.  All this really
  8371.      avoids is the NOTE_INSN_FUNCTION_END note.  */
  8372.       if (return_label)
  8373.     emit_jump_insn (gen_jump (return_label));
  8374. #ifdef HAVE_return
  8375.       else
  8376.     emit_jump_insn (gen_return ());
  8377. #endif
  8378.  
  8379.       emit_barrier ();
  8380.  
  8381.       reorder_insns (next_insn (mark), get_last_insn (), head);
  8382.     }
  8383.  
  8384.   /* So we can tell if jump_optimize sets it to 1.  */
  8385.   current_function_returns_null = 0;
  8386.  
  8387.   if (TREE_EXTERNAL (fndecl) && ! TREE_PUBLIC (fndecl)
  8388.       /* This function is just along for the ride.  If we can make
  8389.      it inline, that's great.  Otherwise, just punt it.  */
  8390.       && (TREE_INLINE (fndecl) == 0
  8391.       || function_cannot_inline_p (fndecl)))
  8392.     {
  8393.       extern int rtl_dump_and_exit;
  8394.       int old_rtl_dump_and_exit = rtl_dump_and_exit;
  8395.  
  8396.       /* This throws away the code for FNDECL.  */
  8397.       rtl_dump_and_exit = 1;
  8398.       rest_of_compilation (fndecl);
  8399.       rtl_dump_and_exit = old_rtl_dump_and_exit;
  8400.     }
  8401.   else
  8402.     /* Run the optimizers and output the assembler code for this function.  */
  8403.     rest_of_compilation (fndecl);
  8404.  
  8405.   if (ctype && TREE_ASM_WRITTEN (fndecl))
  8406.     CLASSTYPE_ASM_WRITTEN (ctype) = 1;
  8407.  
  8408.   /* Since we don't normally go through c_expand_return for constructors,
  8409.      this normally gets the wrong value.
  8410.      Also, named return values have their return codes emitted after
  8411.      NOTE_INSN_FUNCTION_END, confusing jump.c.  */
  8412.   if (DECL_CONSTRUCTOR_P (fndecl)
  8413.       || DECL_NAME (DECL_RESULT (fndecl)) != value_identifier)
  8414.     current_function_returns_null = 0;
  8415.  
  8416.   if (TREE_THIS_VOLATILE (fndecl) && current_function_returns_null)
  8417.     warning ("`volatile' function does return");
  8418.   else if (warn_return_type && current_function_returns_null
  8419.        && TREE_TYPE (fntype) != void_type_node)
  8420.     /* If this function returns non-void and control can drop through,
  8421.        complain.  */
  8422.     warning ("control reaches end of non-void function");
  8423.   /* With just -W, complain only if function returns both with
  8424.      and without a value.  */
  8425.   else if (extra_warnings
  8426.        && current_function_returns_value && current_function_returns_null)
  8427.     warning ("this function may return with or without a value");
  8428.  
  8429.   /* Free all the tree nodes making up this function.  */
  8430.   /* Switch back to allocating nodes permanently
  8431.      until we start another function.  */
  8432.   permanent_allocation ();
  8433.  
  8434.   if (flag_cadillac)
  8435.     cadillac_finish_function (fndecl);
  8436.  
  8437.   if (DECL_SAVED_INSNS (fndecl) == 0)
  8438.     {
  8439.       /* Stop pointing to the local nodes about to be freed.  */
  8440.       /* But DECL_INITIAL must remain nonzero so we know this
  8441.      was an actual function definition.  */
  8442.       DECL_INITIAL (fndecl) = error_mark_node;
  8443.       if (! DECL_CONSTRUCTOR_P (fndecl)
  8444.       || !TYPE_USES_VIRTUAL_BASECLASSES (TYPE_METHOD_BASETYPE (fntype)))
  8445.     DECL_ARGUMENTS (fndecl) = 0;
  8446.     }
  8447.  
  8448.   /* Let the error reporting routines know that we're outside a function.  */
  8449.   current_function_decl = NULL_TREE;
  8450.   named_label_uses = NULL_TREE;
  8451.   clear_anon_parm_name ();
  8452. }
  8453.  
  8454. /* Create the FUNCTION_DECL for a function definition.
  8455.    LINE1 is the line number that the definition absolutely begins on.
  8456.    LINE2 is the line number that the name of the function appears on.
  8457.    DECLSPECS and DECLARATOR are the parts of the declaration;
  8458.    they describe the function's name and the type it returns,
  8459.    but twisted together in a fashion that parallels the syntax of C.
  8460.  
  8461.    This function creates a binding context for the function body
  8462.    as well as setting up the FUNCTION_DECL in current_function_decl.
  8463.  
  8464.    Returns a FUNCTION_DECL on success.
  8465.  
  8466.    If the DECLARATOR is not suitable for a function (it defines a datum
  8467.    instead), we return 0, which tells yyparse to report a parse error.
  8468.  
  8469.    May return void_type_node indicating that this method is actually
  8470.    a friend.  See grokfield for more details.
  8471.  
  8472.    Came here with a `.pushlevel' .
  8473.  
  8474.    DO NOT MAKE ANY CHANGES TO THIS CODE WITHOUT MAKING CORRESPONDING
  8475.    CHANGES TO CODE IN `grokfield'.  */
  8476. tree
  8477. start_method (declspecs, declarator, raises)
  8478.      tree declarator, declspecs, raises;
  8479. {
  8480.   tree fndecl = grokdeclarator (declarator, declspecs, MEMFUNCDEF, 0, raises);
  8481.  
  8482.   /* Something too ugly to handle.  */
  8483.   if (fndecl == 0)
  8484.     return 0;
  8485.  
  8486.   /* Pass friends other than inline friend functions back.  */
  8487.   if (fndecl == void_type_node)
  8488.     return void_type_node;
  8489.  
  8490.   if (TREE_CODE (fndecl) != FUNCTION_DECL)
  8491.     /* Not a function, tell parser to report parse error.  */
  8492.     return 0;
  8493.  
  8494.   if (DECL_IN_AGGR_P (fndecl))
  8495.     {
  8496.       if (IDENTIFIER_ERROR_LOCUS (DECL_NAME (fndecl)) != current_class_type)
  8497.     error_with_decl (fndecl, "`%s' is already defined in aggregate scope");
  8498.       return void_type_node;
  8499.     }
  8500.  
  8501.   if (flag_default_inline)
  8502.     TREE_INLINE (fndecl) = 1;
  8503.  
  8504.   /* We read in the parameters on the maybepermanent_obstack,
  8505.      but we won't be getting back to them until after we
  8506.      may have clobbered them.  So the call to preserve_data
  8507.      will keep them safe.  */
  8508.   preserve_data ();
  8509.  
  8510.   if (! DECL_FRIEND_P (fndecl))
  8511.     {
  8512.       if (TREE_CHAIN (fndecl) != NULL_TREE)
  8513.     /* Need a fresh node here so that we don't get circularity
  8514.        when we link these together.  If FNDECL was a friend, then
  8515.        `pushdecl' does the right thing, which is nothing wrt its
  8516.        current value of TREE_CHAIN.  */
  8517.     fndecl = copy_node (fndecl);
  8518.  
  8519.       if (DECL_CONSTRUCTOR_P (fndecl))
  8520.     grok_ctor_properties (current_class_type, fndecl);
  8521.       else if (OPERATOR_NAME_P (DECL_NAME (fndecl)))
  8522.     {
  8523.       TREE_OPERATOR (fndecl) = 1;
  8524.       grok_op_properties (fndecl);
  8525.     }
  8526.     }
  8527.  
  8528.   finish_decl (fndecl, NULL, NULL);
  8529.  
  8530.   /* Make a place for the parms */
  8531.   pushlevel (0);
  8532.   current_binding_level->parm_flag = 1;
  8533.   
  8534.   DECL_IN_AGGR_P (fndecl) = 1;
  8535.   return fndecl;
  8536. }
  8537.  
  8538. /* Go through the motions of finishing a function definition.
  8539.    We don't compile this method until after the whole class has
  8540.    been processed.
  8541.  
  8542.    FINISH_METHOD must return something that looks as though it
  8543.    came from GROKFIELD (since we are defining a method, after all).
  8544.  
  8545.    This is called after parsing the body of the function definition.
  8546.    STMTS is the chain of statements that makes up the function body.
  8547.  
  8548.    DECL is the ..._DECL that `start_method' provided.  */
  8549.  
  8550. tree
  8551. finish_method (decl)
  8552.      tree decl;
  8553. {
  8554.   register tree fndecl = decl;
  8555.   tree old_initial;
  8556.  
  8557.   register tree link;
  8558.  
  8559.   if (decl == void_type_node)
  8560.     return decl;
  8561.  
  8562.   old_initial = DECL_INITIAL (fndecl);
  8563.  
  8564.   /* Undo the level for the parms (from start_method).
  8565.      This is like poplevel, but it causes nothing to be
  8566.      saved.  Saving information here confuses symbol-table
  8567.      output routines.  Besides, this information will
  8568.      be correctly output when this method is actually
  8569.      compiled.  */
  8570.  
  8571.   /* Clear out the meanings of the local variables of this level;
  8572.      also record in each decl which block it belongs to.  */
  8573.  
  8574.   for (link = current_binding_level->names; link; link = TREE_CHAIN (link))
  8575.     {
  8576.       if (DECL_NAME (link) != 0)
  8577.     IDENTIFIER_LOCAL_VALUE (DECL_NAME (link)) = 0;
  8578.       DECL_CONTEXT (link) = 0;
  8579.     }
  8580.  
  8581.   /* Restore all name-meanings of the outer levels
  8582.      that were shadowed by this level.  */
  8583.  
  8584.   for (link = current_binding_level->shadowed; link; link = TREE_CHAIN (link))
  8585.       IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
  8586.   for (link = current_binding_level->class_shadowed;
  8587.        link;
  8588.        link = TREE_CHAIN (link))
  8589.     IDENTIFIER_CLASS_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
  8590.  
  8591. #ifdef FIELD_XREF
  8592.   FIELD_xref_end_scope(current_binding_level,
  8593.                current_binding_level->level_chain,
  8594.                current_binding_level->parm_flag,
  8595.                current_binding_level->keep,
  8596.                current_binding_level->tag_transparent);
  8597. #endif
  8598.  
  8599.   POP_BINDING_LEVEL;
  8600.  
  8601.   DECL_INITIAL (fndecl) = old_initial;
  8602.   if (DECL_FRIEND_P (fndecl))
  8603.     {
  8604.       if (current_lang_name == lang_name_cplusplus)
  8605.     CLASSTYPE_INLINE_FRIENDS (current_class_type)
  8606.       = tree_cons (NULL_TREE, fndecl, CLASSTYPE_INLINE_FRIENDS (current_class_type));
  8607.       return void_type_node;
  8608.     }
  8609.   return decl;
  8610. }
  8611.  
  8612. /* Called when a new struct TYPE is defined.
  8613.    If this structure or union completes the type of any previous
  8614.    variable declaration, lay it out and output its rtl.  */
  8615.  
  8616. void
  8617. hack_incomplete_structures (type)
  8618.      tree type;
  8619. {
  8620.   tree decl;
  8621.  
  8622.   if (current_binding_level->n_incomplete == 0)
  8623.     return;
  8624.  
  8625.   for (decl = current_binding_level->names; decl; decl = TREE_CHAIN (decl))
  8626.     if (TREE_TYPE (decl) == type
  8627.     || (TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
  8628.         && TREE_TYPE (TREE_TYPE (decl)) == type))
  8629.       {
  8630.     if (TREE_CODE (decl) == TYPE_DECL)
  8631.       layout_type (TREE_TYPE (decl));
  8632.     else
  8633.       {
  8634.         int toplevel = global_binding_level == current_binding_level;
  8635.         layout_decl (decl, 0);
  8636.         rest_of_decl_compilation (decl, 0, toplevel, 0);
  8637.         if (! toplevel)
  8638.           {
  8639.         expand_decl (decl);
  8640.         expand_decl_cleanup (decl, maybe_build_cleanup (decl));
  8641.         expand_decl_init (decl);
  8642.           }
  8643.       }
  8644.     --current_binding_level->n_incomplete;
  8645.     assert (current_binding_level->n_incomplete >= 0);
  8646.       }
  8647. }
  8648.  
  8649. /* Nonzero if presently building a cleanup.  Needed because
  8650.    SAVE_EXPRs are not the right things to use inside of cleanups.
  8651.    They are only ever evaluated once, where the cleanup
  8652.    might be evaluated several times.  In this case, a later evaluation
  8653.    of the cleanup might fill in the SAVE_EXPR_RTL, and it will
  8654.    not be valid for an earlier cleanup.  */
  8655.  
  8656. int building_cleanup;
  8657.  
  8658. /* If DECL is of a type which needs a cleanup, build that cleanup here.
  8659.    We don't build cleanups if just going for syntax checking, since
  8660.    fixup_cleanups does not know how to not handle them.
  8661.  
  8662.    Don't build these on the momentary obstack; they must live
  8663.    the life of the binding contour.  */
  8664. tree
  8665. maybe_build_cleanup (decl)
  8666.      tree decl;
  8667. {
  8668.   tree type = TREE_TYPE (decl);
  8669.   if (TYPE_NEEDS_DESTRUCTOR (type))
  8670.     {
  8671.       int temp;
  8672.       tree rval;
  8673.       int old_building_cleanup = building_cleanup;
  8674.       building_cleanup = 1;
  8675.       if (TREE_CODE (decl) == PARM_DECL)
  8676.     {
  8677.       temp = allocation_temporary_p ();
  8678.       end_temporary_allocation ();
  8679.     }
  8680.       else
  8681.     temp = suspend_momentary ();
  8682.  
  8683.       if (TREE_CODE (type) == ARRAY_TYPE)
  8684.     rval = decl;
  8685.       else
  8686.     {
  8687.       mark_addressable (decl);
  8688.       rval = build1 (ADDR_EXPR, TYPE_POINTER_TO (type), decl);
  8689.     }
  8690.       rval = build_delete (TREE_TYPE (rval), rval, integer_two_node,
  8691.                LOOKUP_NORMAL, 0);
  8692.  
  8693.       if (TYPE_LANG_SPECIFIC (type)
  8694.       && ! TYPE_HAS_DESTRUCTOR (type)
  8695.       && TYPE_USES_VIRTUAL_BASECLASSES (type))
  8696.     rval = build_compound_expr (tree_cons (NULL_TREE, rval,
  8697.                            build_tree_list (NULL_TREE, build_vbase_delete (type, decl))));
  8698.  
  8699.       current_binding_level->have_cleanups = 1;
  8700.       current_binding_level->more_exceptions_ok = 0;
  8701.  
  8702.       if (TREE_CODE (decl) == PARM_DECL)
  8703.     {
  8704.       if (temp)
  8705.         resume_temporary_allocation ();
  8706.     }
  8707.       else
  8708.     resume_momentary (temp);
  8709.  
  8710.       building_cleanup = old_building_cleanup;
  8711.  
  8712.       return rval;
  8713.     }
  8714.   return 0;
  8715. }
  8716.  
  8717. tree
  8718. cleanup_after_call (expr)
  8719.      tree expr;
  8720. {
  8721.   tree type = TREE_TYPE (expr);
  8722.   tree decl = get_temp_name (type, 0);
  8723.   tree rval = build (WITH_CLEANUP_EXPR, type,
  8724.              build (INIT_EXPR, type, decl, expr), 0,
  8725.              maybe_build_cleanup (decl));
  8726.   return rval;
  8727. }
  8728.  
  8729. /* Expand a C++ expression at the statement level.
  8730.    This is needed to ferret out nodes which have UNKNOWN_TYPE.
  8731.    The C++ type checker should get all of these out when
  8732.    expressions are combined with other, type-providing, expressions,
  8733.    leaving only orphan expressions, such as:
  8734.  
  8735.    &class::bar;        / / takes its address, but do nothing with it.
  8736.  
  8737.    */
  8738. void
  8739. cplus_expand_expr_stmt (exp)
  8740.      tree exp;
  8741. {
  8742.   if (TREE_TYPE (exp) == unknown_type_node)
  8743.     {
  8744.       if (TREE_CODE (exp) == ADDR_EXPR)
  8745.     {
  8746.       if (TREE_CODE (TREE_OPERAND (exp, 0)) == OP_IDENTIFIER)
  8747.         error ("unresolved reference to user-defined operator");
  8748.       else
  8749.         error ("address of overloaded function with no contextual type information");
  8750.     }
  8751.       else if (TREE_CODE (exp) == TREE_LIST)
  8752.     error ("address of overloaded function with no contextual type information");
  8753.       else if (TREE_CODE (exp) == OP_IDENTIFIER)
  8754.     error ("unresolved reference to user-defined operator");
  8755.       else if (TREE_CODE (exp) == COMPONENT_REF)
  8756.     warning ("useless reference to a member function name, did you forget the ()?");
  8757.     }
  8758.   else
  8759.     {
  8760.       int remove_implicit_immediately = 0;
  8761.  
  8762.       if (TREE_CODE (exp) == CALL_EXPR
  8763.       && TYPE_NEEDS_DESTRUCTOR (TREE_TYPE (exp)))
  8764.     exp = cleanup_after_call (exp);
  8765.       else if (TREE_CODE (exp) == FUNCTION_DECL)
  8766.     warning_with_decl (exp, "reference, not call, to function `%s'");
  8767.       if (TREE_RAISES (exp))
  8768.     {
  8769.       assert (flag_handle_exceptions);
  8770.       if (flag_handle_exceptions == 2)
  8771.         {
  8772.           if (! current_binding_level->more_exceptions_ok)
  8773.         {
  8774.           extern struct nesting *nesting_stack, *block_stack;
  8775.  
  8776.           remove_implicit_immediately
  8777.             = (nesting_stack != block_stack);
  8778.           cplus_expand_start_try (1);
  8779.         }
  8780.           current_binding_level->have_exceptions = 1;
  8781.         }
  8782.     }
  8783.       expand_expr_stmt (exp);
  8784.       if (remove_implicit_immediately)
  8785.     pop_implicit_try_blocks (NULL_TREE);
  8786.     }
  8787.  
  8788.   /* Clean up any pending cleanups.  This happens when a function call
  8789.      returns a cleanup-needing value that nobody uses.  */
  8790.   expand_cleanups_to (NULL_TREE);
  8791. }
  8792.  
  8793. /* When a stmt has been parsed, this function is called.
  8794.  
  8795.    Currently, this function only does something within a
  8796.    constructor's scope: if a stmt has just assigned to this,
  8797.    and we are in a derived class, we call `emit_base_init'.  */
  8798.  
  8799. void
  8800. finish_stmt ()
  8801. {
  8802.   extern struct nesting *cond_stack, *loop_stack, *case_stack;
  8803.  
  8804.   
  8805.   if (current_function_assigns_this
  8806.       || ! current_function_just_assigned_this)
  8807.     return;
  8808.   if (DECL_CONSTRUCTOR_P (current_function_decl))
  8809.     {
  8810.       /* Constructors must wait until we are out of control
  8811.      zones before calling base constructors.  */
  8812.       if (cond_stack || loop_stack || case_stack)
  8813.     return;
  8814.       emit_insns (base_init_insns);
  8815.       check_base_init (current_class_type);
  8816.     }
  8817.   current_function_assigns_this = 1;
  8818.  
  8819.   if (flag_cadillac)
  8820.     cadillac_finish_stmt ();
  8821. }
  8822.  
  8823. void
  8824. pop_implicit_try_blocks (decl)
  8825.      tree decl;
  8826. {
  8827.   if (decl)
  8828.     {
  8829.       assert (current_binding_level->parm_flag == 3);
  8830.       current_binding_level->names = TREE_CHAIN (decl);
  8831.     }
  8832.  
  8833.   while (current_binding_level->parm_flag == 3)
  8834.     {
  8835.       tree name = get_identifier ("(compiler error)");
  8836.       tree orig_ex_type = current_exception_type;
  8837.       tree orig_ex_decl = current_exception_decl;
  8838.       tree orig_ex_obj = current_exception_object;
  8839.       tree decl = cplus_expand_end_try (2), decls;
  8840.       tree current_exception_ptr;
  8841.  
  8842.       /* @@ It would be nice to make all these point
  8843.      to exactly the same handler.  */
  8844.       /* Start hidden EXCEPT.  */
  8845.       cplus_expand_start_except (name, decl);
  8846.       /* reraise ALL.  */
  8847.       cplus_expand_reraise (NULL_TREE);
  8848.       current_exception_type = orig_ex_type;
  8849.       current_exception_decl = orig_ex_decl;
  8850.       current_exception_object = orig_ex_obj;
  8851.       /* This will reraise for us.  */
  8852.       cplus_expand_end_except (error_mark_node);
  8853.     }
  8854.  
  8855.   if (decl)
  8856.     {
  8857.       TREE_CHAIN (decl) = current_binding_level->names;
  8858.       current_binding_level->names = decl;
  8859.     }
  8860. }
  8861.  
  8862. #ifdef FIELD_XREF
  8863. static void
  8864. FIELD_end_scope(lvl)
  8865.    struct binding_level * lvl;
  8866. {
  8867.    FIELD_xref_end_scope(lvl,
  8868.             lvl->level_chain,
  8869.             lvl->parm_flag,
  8870.             lvl->keep,
  8871.             lvl->tag_transparent);
  8872. };
  8873.  
  8874. #endif
  8875.  
  8876. /* Push a cleanup onto the current binding contour that will cause
  8877.    ADDR to be cleaned up, in the case that an exception propagates
  8878.    through its binding contour.  */
  8879.  
  8880. void
  8881. push_exception_cleanup (addr)
  8882.      tree addr;
  8883. {
  8884.   tree decl = build_decl (VAR_DECL, get_identifier (EXCEPTION_CLEANUP_NAME), ptr_type_node);
  8885.   tree cleanup;
  8886.  
  8887.   decl = pushdecl (decl);
  8888.   TREE_REGDECL (decl) = 1;
  8889.   store_init_value (decl, addr);
  8890.   expand_decl (decl);
  8891.   expand_decl_init (decl);
  8892.  
  8893.   cleanup = build (COND_EXPR, integer_type_node,
  8894.            build (NE_EXPR, integer_type_node,
  8895.               decl, integer_zero_node),
  8896.            build_delete (TREE_TYPE (addr), decl,
  8897.                  lookup_name (in_charge_identifier),
  8898.                  LOOKUP_NORMAL, 0),
  8899.            integer_zero_node);
  8900.   expand_decl_cleanup (decl, cleanup);
  8901. }
  8902.  
  8903. /* For each binding contour, emit code that deactivates the
  8904.    exception cleanups.  All other cleanups are left as they were.  */
  8905.  
  8906. static void
  8907. deactivate_exception_cleanups ()
  8908. {
  8909.   struct binding_level *b = current_binding_level;
  8910.   tree xyzzy = get_identifier (EXCEPTION_CLEANUP_NAME);
  8911.   while (b != class_binding_level)
  8912.     {
  8913.       if (b->parm_flag == 3)
  8914.     {
  8915.       tree decls = b->names;
  8916.       while (decls)
  8917.         {
  8918.           if (DECL_NAME (decls) == xyzzy)
  8919.         expand_assignment (decls, integer_zero_node, 0, 0);
  8920.           decls = TREE_CHAIN (decls);
  8921.         }
  8922.     }
  8923.       b = b->level_chain;
  8924.     }
  8925. }
  8926.