home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / NeXT / GnuSource / cc-61.0.1 / cc / cplus-tree.c < prev    next >
C/C++ Source or Header  |  1991-06-04  |  41KB  |  1,508 lines

  1. /* Language-depednent node constructors for parse phase of GNU compiler.
  2.    Copyright (C) 1987, 1988 Free Software Foundation, Inc.
  3.    Hacked by Michael Tiemann (tiemann@cygnus.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 2, 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. #include "config.h"
  22. #include <stdio.h>
  23. #include "obstack.h"
  24. #include "tree.h"
  25. #include "cplus-tree.h"
  26. #include "flags.h"
  27. #include "assert.h"
  28.  
  29. #define MAX(x,y) ((x) > (y) ? (x) : (y))
  30. #define MIN(x,y) ((x) < (y) ? (x) : (y))
  31. #define CEIL(x,y) (((x) + (y) - 1) / (y))
  32.  
  33. /* Return nonzero if REF is an lvalue valid for this language.
  34.    Lvalues can be assigned, unless they have TREE_READONLY.
  35.    Lvalues can have their address taken, unless they have TREE_REGDECL.  */
  36.  
  37. int
  38. lvalue_p (ref)
  39.      tree ref;
  40. {
  41.   register enum tree_code code = TREE_CODE (ref);
  42.  
  43.   if (language_lvalue_valid (ref))
  44.     switch (code)
  45.       {
  46.       case COMPONENT_REF:
  47.     return lvalue_p (TREE_OPERAND (ref, 0));
  48.  
  49.       case STRING_CST:
  50.     return 1;
  51.  
  52.       case VAR_DECL:
  53.     if (TREE_READONLY (ref) && ! TREE_STATIC (ref)
  54.         && DECL_LANG_SPECIFIC (ref)
  55.         && DECL_IN_AGGR_P (ref))
  56.       return 0;
  57.       case INDIRECT_REF:
  58.       case ARRAY_REF:
  59.       case PARM_DECL:
  60.       case RESULT_DECL:
  61.       case ERROR_MARK:
  62.     if (TREE_CODE (TREE_TYPE (ref)) != FUNCTION_TYPE
  63.         && TREE_CODE (TREE_TYPE (ref)) != METHOD_TYPE)
  64.       return 1;
  65.     break;
  66.  
  67.       case TARGET_EXPR:
  68.     return 1;
  69.  
  70.       case CALL_EXPR:
  71.     if (TREE_CODE (TREE_TYPE (ref)) == REFERENCE_TYPE
  72.         /* unary_complex_lvalue knows how to deal with this case.  */
  73.         || TREE_ADDRESSABLE (TREE_TYPE (ref)))
  74.       return 1;
  75.     break;
  76.  
  77.     /* A currently unresolved scope ref.  */
  78.       case SCOPE_REF:
  79.     abort ();
  80.       case OFFSET_REF:
  81.     if (TREE_CODE (TREE_OPERAND (ref, 1)) == FUNCTION_DECL)
  82.       return 1;
  83.     if (TREE_CODE (TREE_OPERAND (ref, 1)) == VAR_DECL)
  84.       if (TREE_READONLY (ref) && ! TREE_STATIC (ref)
  85.           && DECL_LANG_SPECIFIC (ref)
  86.           && DECL_IN_AGGR_P (ref))
  87.         return 0;
  88.       else
  89.         return 1;
  90.     break;
  91.       }
  92.   return 0;
  93. }
  94.  
  95. /* Return nonzero if REF is an lvalue valid for this language;
  96.    otherwise, print an error message and return zero.  */
  97.  
  98. int
  99. lvalue_or_else (ref, string)
  100.      tree ref;
  101.      char *string;
  102. {
  103.   int win = lvalue_p (ref);
  104.   if (! win)
  105.     error ("invalid lvalue in %s", string);
  106.   return win;
  107. }
  108.  
  109. /* INIT is a CALL_EXPR which needs info about its target.
  110.    TYPE is the type that this initialization should appear to have.
  111.  
  112.    Build an encapsultation of the initialization to perfom
  113.    and return it so that it can be processed by language-independent
  114.    and language-specific expression expanders.
  115.  
  116.    If WITH_CLEANUP_P is nonzero, we build a cleanup for this expression.
  117.    Otherwise, cleanups are not built here.  For example, when building
  118.    an initialization for a stack slot, since the called function handles
  119.    the cleanup, we would not want to do it here.  */
  120. tree
  121. build_cplus_new (type, init, with_cleanup_p)
  122.      tree type;
  123.      tree init;
  124.      int with_cleanup_p;
  125. {
  126.   tree slot = build (VAR_DECL, type);
  127.   tree rval = build (NEW_EXPR, type,
  128.              TREE_OPERAND (init, 0), TREE_OPERAND (init, 1), slot);
  129.   TREE_ADDRESSABLE (rval) = 1;
  130.   rval = build (TARGET_EXPR, type, slot, rval, 0);
  131.   TREE_ADDRESSABLE (rval) = 1;
  132.  
  133.   if (with_cleanup_p && TYPE_NEEDS_DESTRUCTOR (type))
  134.     rval = build (WITH_CLEANUP_EXPR, type, rval, 0,
  135.           build_delete (TYPE_POINTER_TO (type),
  136.                 build_unary_op (ADDR_EXPR, slot, 0),
  137.                 integer_two_node,
  138.                 LOOKUP_NORMAL|LOOKUP_DESTRUCTOR, 0));
  139.   return rval;
  140. }
  141.  
  142. extern struct obstack *current_obstack;
  143. extern struct obstack permanent_obstack, class_obstack;
  144. extern struct obstack *saveable_obstack;
  145.  
  146. /* Return a type like TYPE except that its CLASSTYPE_OFFSET
  147.    is OFFSET.
  148.  
  149.    Such variant types already made are recorded so that duplicates
  150.    are not made.
  151.  
  152.    A variant types should never be used as the type of an expression.
  153.    Use TYPE_MAIN_VARIANT to find the main variant.  */
  154.  
  155. tree
  156. build_classtype_variant (type, offset, virtualp)
  157.      tree type;
  158.      tree offset;
  159.      int virtualp;
  160. {
  161.   register tree t, m = CLASSTYPE_MAIN_VARIANT (type);
  162.   register struct obstack *ambient_obstack = current_obstack;
  163.   register struct obstack *ambient_saveable_obstack = saveable_obstack;
  164.   register int lo = TREE_INT_CST_LOW (offset);
  165.   register int hi = TREE_INT_CST_HIGH (offset);
  166.   /* First search the chain variants for one that is what we want.  */
  167.  
  168.   if (hi == 0 && lo == 0)
  169.     offset = integer_zero_node;
  170.  
  171.   for (t = m; t; t = CLASSTYPE_NEXT_VARIANT (t))
  172.     if (virtualp == TREE_VIA_VIRTUAL (t)
  173.     && lo == TREE_INT_CST_LOW (CLASSTYPE_OFFSET (t))
  174.     && hi == TREE_INT_CST_HIGH (CLASSTYPE_OFFSET (t)))
  175.       return t;
  176.  
  177.   /* We need a new one.  */
  178.   if (TREE_PERMANENT (type))
  179.     saveable_obstack = &permanent_obstack;
  180.   current_obstack = saveable_obstack;
  181.  
  182.   t = copy_node (type);
  183.   copy_type_lang_specific (t);
  184.   CLASSTYPE_AS_LIST (t) = build_tree_list (NULL_TREE, t);
  185.  
  186.   TYPE_POINTER_TO (t) = 0;
  187.   TYPE_REFERENCE_TO (t) = 0;
  188.   CLASSTYPE_OFFSET (t) = offset;
  189.   CLASSTYPE_OFFSET_ZEROP (t) = offset == integer_zero_node;
  190.   TREE_VIA_VIRTUAL (t) = virtualp;
  191.  
  192.   /* Always promise to have TYPE_POINTER_TO filled in.  */
  193.   build_pointer_type (t);
  194.  
  195.   /* Add this type to the chain of variants of TYPE.  */
  196.   CLASSTYPE_NEXT_VARIANT (t) = CLASSTYPE_NEXT_VARIANT (m);
  197.   CLASSTYPE_NEXT_VARIANT (m) = t;
  198.  
  199.   current_obstack = ambient_obstack;
  200.   saveable_obstack = ambient_saveable_obstack;
  201.   return t;
  202. }
  203.  
  204. /* Here is how primitive or already-canonicalized types' hash
  205.    codes are made.  MUST BE CONSISTENT WITH tree.c !!! */
  206. #define TYPE_HASH(TYPE) ((int) (TYPE) & 0777777)
  207.  
  208. /* Construct, lay out and return the type of methods belonging to class
  209.    BASETYPE and whose arguments and values are described by TYPE.
  210.    If that type exists already, reuse it.
  211.    TYPE must be a FUNCTION_TYPE node.  */
  212.  
  213. tree
  214. build_cplus_method_type (basetype, rettype, argtypes)
  215.      tree basetype, rettype, argtypes;
  216. {
  217.   register tree t;
  218.   tree ptype = build_pointer_type (basetype);
  219.   int hashcode;
  220.  
  221.   /* Make a node of the sort we want.  */
  222.   t = make_node (METHOD_TYPE);
  223.  
  224.   TYPE_METHOD_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
  225.   TREE_TYPE (t) = rettype;
  226.   ptype = build_type_variant (ptype, !flag_this_is_variable, 0);
  227.  
  228.   /* The actual arglist for this function includes a "hidden" argument
  229.      which is "this".  Put it into the list of argument types.  */
  230.  
  231.   TYPE_ARG_TYPES (t) = tree_cons (NULL, ptype, argtypes);
  232.  
  233.   /* If we already have such a type, use the old one and free this one.
  234.      Note that it also frees up the above cons cell if found.  */
  235.   hashcode = TYPE_HASH (basetype) + TYPE_HASH (rettype) + type_hash_list (argtypes);
  236.   t = type_hash_canon (hashcode, t);
  237.  
  238.   if (TYPE_SIZE (t) == 0)
  239.     layout_type (t);
  240.  
  241.   return t;
  242. }
  243.  
  244. tree
  245. build_cplus_array_type (elt_type, index_type)
  246.      tree elt_type;
  247.      tree index_type;
  248. {
  249.   register struct obstack *ambient_obstack = current_obstack;
  250.   register struct obstack *ambient_saveable_obstack = saveable_obstack;
  251.   tree t;
  252.  
  253.   /* We need a new one.  If both ELT_TYPE and INDEX_TYPE are permanent,
  254.      make this permanent too.  */
  255.   if (TREE_PERMANENT (elt_type)
  256.       && (index_type == 0 || TREE_PERMANENT (index_type)))
  257.     {
  258.       current_obstack = &permanent_obstack;
  259.       saveable_obstack = &permanent_obstack;
  260.     }
  261.  
  262.   t = build_array_type (elt_type, index_type);
  263.  
  264.   /* Push these needs up so that initialization takes place
  265.      more easily.  */
  266.   TYPE_NEEDS_CONSTRUCTING (t) = TYPE_NEEDS_CONSTRUCTING (TYPE_MAIN_VARIANT (elt_type));
  267.   TYPE_NEEDS_DESTRUCTOR (t) = TYPE_NEEDS_DESTRUCTOR (TYPE_MAIN_VARIANT (elt_type));
  268.   current_obstack = ambient_obstack;
  269.   saveable_obstack = ambient_saveable_obstack;
  270.   return t;
  271. }
  272.  
  273. /* This is temporary until later.  */
  274. /* Construct, lay out and return the type of objects which are of type TYPE
  275.    as members of type BASETYPE.  If that type exists already, reuse it.  */
  276. tree
  277. build_member_type (basetype, type)
  278.      tree basetype, type;
  279. {
  280.   register tree t;
  281.   int hashcode;
  282.  
  283.   assert (TREE_CODE (type) != FUNCTION_TYPE);
  284.  
  285.   /* Make a node of the sort we want.  */
  286.   t = make_node (OFFSET_TYPE);
  287.   TYPE_OFFSET_BASETYPE (t) = basetype;
  288.   TREE_TYPE (t) = type;
  289.   hashcode = TYPE_HASH (basetype) + TYPE_HASH (type);
  290.   t = type_hash_canon (hashcode, t);
  291.  
  292.   return t;
  293. }
  294.  
  295. /* Compute the actual offsets that our virtual base classes
  296.    will have *for this type*.  This must be performed after
  297.    the fields are laid out, since virtual baseclasses must
  298.    lay down at the end of the record.
  299.  
  300.    Returns the maximum number of virtual functions any of the virtual
  301.    baseclasses provide.  */
  302. int
  303. layout_vbasetypes (rec, max)
  304.      tree rec;
  305.      int max;
  306. {
  307.   /* Get all the virtual base types that this type uses.
  308.      The TREE_VALUE slot holds the virtual baseclass type.  */
  309.   tree vbase_types = get_vbase_types (rec);
  310.  
  311. #ifdef STRUCTURE_SIZE_BOUNDARY
  312.   int record_align = MAX (STRUCTURE_SIZE_BOUNDARY, TYPE_ALIGN (rec));
  313. #else
  314.   int record_align = MAX (BITS_PER_UNIT, TYPE_ALIGN (rec));
  315. #endif
  316.  
  317.   /* Record size so far is CONST_SIZE + VAR_SIZE bits,
  318.      where CONST_SIZE is an integer
  319.      and VAR_SIZE is a tree expression.
  320.      If VAR_SIZE is null, the size is just CONST_SIZE.
  321.      Naturally we try to avoid using VAR_SIZE.  */
  322.   register int const_size = 0;
  323.   register tree var_size = 0;
  324.   int nonvirtual_const_size;
  325.   tree nonvirtual_var_size;
  326.  
  327.   CLASSTYPE_VBASECLASSES (rec) = vbase_types;
  328.  
  329.   if (TREE_CODE (TYPE_SIZE (rec)) == INTEGER_CST)
  330.     const_size = TREE_INT_CST_LOW (TYPE_SIZE (rec));
  331.   else
  332.     var_size = TYPE_SIZE (rec);
  333.  
  334.   nonvirtual_const_size = const_size;
  335.   nonvirtual_var_size = var_size;
  336.  
  337.   while (vbase_types)
  338.     {
  339.       tree basetype = ASSOC_TYPE (vbase_types);
  340.       tree offset;
  341.  
  342.       if (const_size == 0)
  343.     offset = integer_zero_node;
  344.       else
  345.     offset = size_int ((const_size + BITS_PER_UNIT - 1) / BITS_PER_UNIT);
  346.  
  347.       if (CLASSTYPE_VSIZE (basetype) > max)
  348.     max = CLASSTYPE_VSIZE (basetype);
  349.       ASSOC_OFFSET (vbase_types) = offset;
  350.  
  351.       if (TREE_CODE (TYPE_SIZE (basetype)) == INTEGER_CST)
  352.     {
  353.       tree vbase_size = integer_zero_node;
  354.  
  355.       if (TYPE_BASETYPES (basetype) && CLASSTYPE_VBASE_SIZE (basetype))
  356.         vbase_size = CLASSTYPE_VBASE_SIZE (basetype);
  357.  
  358.       const_size += MAX (record_align,
  359.                  TREE_INT_CST_LOW (TYPE_SIZE (basetype))
  360.                  - TREE_INT_CST_LOW (vbase_size));
  361.     }
  362.       else if (var_size == 0)
  363.     var_size = TYPE_SIZE (basetype);
  364.       else
  365.     var_size = size_binop (PLUS_EXPR, var_size, TYPE_SIZE (basetype));
  366.  
  367.       vbase_types = TREE_CHAIN (vbase_types);
  368.     }
  369.  
  370.   if (const_size != nonvirtual_const_size)
  371.     {
  372.       CLASSTYPE_VBASE_SIZE (rec)
  373.     = size_int (const_size - nonvirtual_const_size);
  374.       TYPE_SIZE (rec) = size_int (const_size);
  375.     }
  376.  
  377.   return max;
  378. }
  379.  
  380. #if 0
  381. /* This function should never be needed.  */
  382. void
  383. fixup_vbase_offsets (type)
  384.      tree type;
  385. {
  386.   tree virtuals = TREE_CHAIN (CLASS_ASSOC_VIRTUALS (type));
  387.  
  388.   while (virtuals)
  389.     {
  390.       tree pfn = FNADDR_FROM_VTABLE_ENTRY (TREE_VALUE (virtuals));
  391.       tree decl = TREE_OPERAND (pfn, 0);
  392.       tree vcontext = get_base_type (DECL_VCONTEXT (decl), DECL_CONTEXT (decl), 0);
  393.       if (vcontext != NULL_TREE && TREE_VIA_VIRTUAL (vcontext))
  394.     {
  395.       tree offset;
  396.       tree vbase_offset_info;
  397.       tree parent_type;
  398.  
  399.       if (DECL_CONTEXT (decl) == TYPE_MAIN_VARIANT (type))
  400.         parent_type = type;
  401.       else
  402.         {
  403.           parent_type = get_base_type (DECL_CONTEXT (decl), type, 0);
  404.           if (parent_type == 0)
  405.         parent_type = type;
  406.         }
  407.       vbase_offset_info = value_member (vcontext,
  408.                         CLASSTYPE_VBASECLASSES (parent_type));
  409.       offset = size_binop (MINUS_EXPR, CLASSTYPE_OFFSET (parent_type),
  410.                    TREE_PURPOSE (vbase_offset_info));
  411.       TREE_VALUE (virtuals) = build_vtable_entry (offset, pfn);
  412.     }
  413.       virtuals = TREE_CHAIN (virtuals);
  414.     }
  415. }
  416. #endif
  417.  
  418. /* Lay out the base types of a record type, REC.
  419.    Tentatively set the size and alignment of REC
  420.    according to the base types alone.
  421.  
  422.    Returns list of virtual base classes in a FIELD_DECL chain.  */
  423. tree
  424. layout_basetypes (rec)
  425.      tree rec;
  426. {
  427.   /* Chain to hold all the new FIELD_DECLs which point at virtual
  428.      base classes.  */
  429.   tree vbase_decls = NULL_TREE;
  430.  
  431. #ifdef STRUCTURE_SIZE_BOUNDARY
  432.   int record_align = MAX (STRUCTURE_SIZE_BOUNDARY, TYPE_ALIGN (rec));
  433. #else
  434.   int record_align = MAX (BITS_PER_UNIT, TYPE_ALIGN (rec));
  435. #endif
  436.  
  437.   /* Record size so far is CONST_SIZE + VAR_SIZE bits,
  438.      where CONST_SIZE is an integer
  439.      and VAR_SIZE is a tree expression.
  440.      If VAR_SIZE is null, the size is just CONST_SIZE.
  441.      Naturally we try to avoid using VAR_SIZE.  */
  442.   register int const_size = 0;
  443.   register tree var_size = 0;
  444.   int i, n_baseclasses = CLASSTYPE_N_BASECLASSES (rec);
  445.  
  446.   /* Handle basetypes almost like fields, but record their
  447.      offsets differently.  */
  448.  
  449.   for (i = 0; i < n_baseclasses; i++)
  450.     {
  451.       int inc, desired_align, int_vbase_size;
  452.       register tree basetype = CLASSTYPE_BASECLASS (rec, i);
  453.       tree decl;
  454.  
  455.       if (TYPE_SIZE (basetype) == 0)
  456.     {
  457.       error_with_aggr_type (basetype, "base class `%s' has incomplete type");
  458.       SET_CLASSTYPE_VIAS (rec, i, 1, 0);
  459.       continue;
  460.     }
  461.  
  462.       /* All basetypes are recorded in the association list of the
  463.      derived type.  */
  464.  
  465.       if (CLASSTYPE_VIA_VIRTUAL (rec, i))
  466.     {
  467.       int j;
  468.       char *name = (char *)alloca (TYPE_NAME_LENGTH (basetype)
  469.                        + sizeof (VBASE_NAME) + 1);
  470.       sprintf (name, VBASE_NAME_FORMAT, TYPE_NAME_STRING (basetype));
  471.  
  472.       /* The offset for a virtual base class is only
  473.          used in computing virtual function tables and
  474.          for initializing virtual base pointers.  The assoc
  475.          for this base type is built once `get_vbase_types'
  476.          is called.  */
  477.       CLASSTYPE_BASECLASS (rec, i) = basetype
  478.         = build_classtype_variant (basetype, integer_zero_node, 1);
  479.  
  480.       /* If this basetype can come from another vbase pointer
  481.          without an additional indirection, we will share
  482.          that pointer.  If an indirection is involved, we
  483.          make our own pointer.  */
  484.       for (j = 0; j < n_baseclasses; j++)
  485.         if (! CLASSTYPE_VIA_VIRTUAL (rec, j)
  486.         && TYPE_USES_VIRTUAL_BASECLASSES (CLASSTYPE_BASECLASS (rec, j))
  487.         && value_member (TYPE_MAIN_VARIANT (basetype),
  488.                  CLASSTYPE_VBASECLASSES (CLASSTYPE_BASECLASS (rec, j))))
  489.           {
  490.         goto got_it;
  491.           }
  492.  
  493.       decl = build_lang_decl (FIELD_DECL, get_identifier (name),
  494.                   build_pointer_type (basetype));
  495.       DECL_FIELD_CONTEXT (decl) = rec;
  496.       SET_DECL_FCONTEXT (decl, TYPE_MAIN_VARIANT (basetype));
  497.       DECL_VBASE_P (decl) = 1;
  498.       TREE_CHAIN (decl) = vbase_decls;
  499.       vbase_decls = decl;
  500.  
  501.     got_it:
  502.       /* The space this decl occupies has already been accounted for.  */
  503.       continue;
  504.     }
  505.       else
  506.     {
  507.       tree class_offset;
  508.       tree assoc;
  509.  
  510.       if (const_size == 0)
  511.         class_offset = integer_zero_node;
  512.       else
  513.         {
  514.           /* Give each base type the alignment it wants.  */
  515.           const_size = CEIL (const_size, TYPE_ALIGN (basetype))
  516.         * TYPE_ALIGN (basetype);
  517.           class_offset
  518.         = size_int ((const_size + BITS_PER_UNIT - 1) / BITS_PER_UNIT);
  519.           CLASSTYPE_BASECLASS (rec, i) = basetype
  520.         = build_classtype_variant (basetype, class_offset, 0);
  521.         }
  522.  
  523.       if (CLASSTYPE_VSIZE (basetype))
  524.         assoc = make_assoc (class_offset, basetype,
  525.                 CLASS_ASSOC_VTABLE (basetype),
  526.                 CLASS_ASSOC_VIRTUALS (basetype),
  527.                 CLASSTYPE_ASSOC (rec));
  528.       else
  529.         assoc = make_assoc (class_offset, basetype, 0, 0,
  530.                 CLASSTYPE_ASSOC (rec));
  531.       CLASSTYPE_ASSOC (rec) = assoc;
  532.     }
  533.  
  534.       /* Add only the amount of storage not present in
  535.      the virtual baseclasses.  */
  536.  
  537.       int_vbase_size = 0;
  538.       if (TYPE_BASETYPES (basetype) && CLASSTYPE_VBASE_SIZE (basetype))
  539.     int_vbase_size = TREE_INT_CST_LOW (CLASSTYPE_VBASE_SIZE (basetype));
  540.       if (TREE_INT_CST_LOW (TYPE_SIZE (basetype)) > int_vbase_size)
  541.     {
  542.       inc = MAX (record_align,
  543.              (TREE_INT_CST_LOW (TYPE_SIZE (basetype))
  544.               - int_vbase_size));
  545.  
  546.       /* Record must have at least as much alignment as any field.  */
  547.       desired_align = TYPE_ALIGN (basetype);
  548.       record_align = MAX (record_align, desired_align);
  549.  
  550.       const_size += inc;
  551.     }
  552.     }
  553.  
  554.   if (const_size)
  555.     CLASSTYPE_SIZE (rec) = build_int_2 (const_size, 0);
  556.   else
  557.     CLASSTYPE_SIZE (rec) = integer_zero_node;
  558.   CLASSTYPE_ALIGN (rec) = record_align;
  559.  
  560.   return vbase_decls;
  561. }
  562.  
  563. /* Hashing of lists so that we don't make duplicates.
  564.    The entry point is `list_hash_canon'.  */
  565.  
  566. /* Each hash table slot is a bucket containing a chain
  567.    of these structures.  */
  568.  
  569. struct list_hash
  570. {
  571.   struct list_hash *next;    /* Next structure in the bucket.  */
  572.   int hashcode;            /* Hash code of this list.  */
  573.   tree list;            /* The list recorded here.  */
  574. };
  575.  
  576. /* Now here is the hash table.  When recording a list, it is added
  577.    to the slot whose index is the hash code mod the table size.
  578.    Note that the hash table is used for several kinds of lists.
  579.    While all these live in the same table, they are completely independent,
  580.    and the hash code is computed differently for each of these.  */
  581.  
  582. #define TYPE_HASH_SIZE 59
  583. struct list_hash *list_hash_table[TYPE_HASH_SIZE];
  584.  
  585. /* Compute a hash code for a list (chain of TREE_LIST nodes
  586.    with goodies in the TREE_PURPOSE, TREE_VALUE, and bits of the
  587.    TREE_COMMON slots), by adding the hash codes of the individual entries.  */
  588.  
  589. int
  590. list_hash (list)
  591.      tree list;
  592. {
  593.   register int hashcode = 0;
  594.  
  595.   if (TREE_CHAIN (list))
  596.     hashcode += TYPE_HASH (TREE_CHAIN (list));
  597.  
  598.   if (TREE_VALUE (list))
  599.     hashcode += TYPE_HASH (TREE_VALUE (list));
  600.   else
  601.     hashcode += 1007;
  602.   if (TREE_PURPOSE (list))
  603.     hashcode += TYPE_HASH (TREE_PURPOSE (list));
  604.   else
  605.     hashcode += 1009;
  606.   return hashcode;
  607. }
  608.  
  609. /* Look in the type hash table for a type isomorphic to TYPE.
  610.    If one is found, return it.  Otherwise return 0.  */
  611.  
  612. tree
  613. list_hash_lookup (hashcode, list)
  614.      int hashcode;
  615.      tree list;
  616. {
  617.   register struct list_hash *h;
  618.   for (h = list_hash_table[hashcode % TYPE_HASH_SIZE]; h; h = h->next)
  619.     if (h->hashcode == hashcode
  620.     && TREE_VIA_VIRTUAL (h->list) == TREE_VIA_VIRTUAL (list)
  621.     && TREE_VIA_PUBLIC (h->list) == TREE_VIA_PUBLIC (list)
  622.     && TREE_PURPOSE (h->list) == TREE_PURPOSE (list)
  623.     && TREE_VALUE (h->list) == TREE_VALUE (list)
  624.     && TREE_CHAIN (h->list) == TREE_CHAIN (list))
  625.       {
  626.     assert (TREE_TYPE (h->list) == TREE_TYPE (list));
  627.     return h->list;
  628.       }
  629.   return 0;
  630. }
  631.  
  632. /* Add an entry to the list-hash-table
  633.    for a list TYPE whose hash code is HASHCODE.  */
  634.  
  635. void
  636. list_hash_add (hashcode, list)
  637.      int hashcode;
  638.      tree list;
  639. {
  640.   register struct list_hash *h;
  641.  
  642.   h = (struct list_hash *) obstack_alloc (&class_obstack, sizeof (struct list_hash));
  643.   h->hashcode = hashcode;
  644.   h->list = list;
  645.   h->next = list_hash_table[hashcode % TYPE_HASH_SIZE];
  646.   list_hash_table[hashcode % TYPE_HASH_SIZE] = h;
  647. }
  648.  
  649. /* Given TYPE, and HASHCODE its hash code, return the canonical
  650.    object for an identical list if one already exists.
  651.    Otherwise, return TYPE, and record it as the canonical object
  652.    if it is a permanent object.
  653.  
  654.    To use this function, first create a list of the sort you want.
  655.    Then compute its hash code from the fields of the list that
  656.    make it different from other similar lists.
  657.    Then call this function and use the value.
  658.    This function frees the list you pass in if it is a duplicate.  */
  659.  
  660. /* Set to 1 to debug without canonicalization.  Never set by program.  */
  661. int debug_no_list_hash = 0;
  662.  
  663. tree
  664. list_hash_canon (hashcode, list)
  665.      int hashcode;
  666.      tree list;
  667. {
  668.   tree t1;
  669.  
  670.   if (debug_no_list_hash)
  671.     return list;
  672.  
  673.   t1 = list_hash_lookup (hashcode, list);
  674.   if (t1 != 0)
  675.     {
  676.       obstack_free (&class_obstack, list);
  677.       return t1;
  678.     }
  679.  
  680.   /* If this is a new list, record it for later reuse.  */
  681.   list_hash_add (hashcode, list);
  682.  
  683.   return list;
  684. }
  685.  
  686. tree
  687. hash_tree_cons (via_public, via_virtual, purpose, value, chain)
  688.      int via_public, via_virtual;
  689.      tree purpose, value, chain;
  690. {
  691.   struct obstack *ambient_obstack = current_obstack;
  692.   tree t;
  693.   int hashcode;
  694.  
  695.   current_obstack = &class_obstack;
  696.   t = tree_cons (purpose, value, chain);
  697.   TREE_VIA_PUBLIC (t) = via_public;
  698.   TREE_VIA_VIRTUAL (t) = via_virtual;
  699.   hashcode = list_hash (t);
  700.   t = list_hash_canon (hashcode, t);
  701.   current_obstack = ambient_obstack;
  702.   return t;
  703. }
  704.  
  705. /* Constructor for hashed lists.  */
  706. tree
  707. hash_tree_chain (value, chain)
  708.      tree value, chain;
  709. {
  710.   struct obstack *ambient_obstack = current_obstack;
  711.   tree t;
  712.   int hashcode;
  713.  
  714.   current_obstack = &class_obstack;
  715.   t = tree_cons (NULL_TREE, value, chain);
  716.   hashcode = list_hash (t);
  717.   t = list_hash_canon (hashcode, t);
  718.   current_obstack = ambient_obstack;
  719.   return t;
  720. }
  721.  
  722. /* Similar, but used for concatenating two lists.  */
  723. tree
  724. hash_chainon (list1, list2)
  725.      tree list1, list2;
  726. {
  727.   if (list2 == 0)
  728.     return list1;
  729.   if (list1 == 0)
  730.     return list2;
  731.   if (TREE_CHAIN (list1) == NULL_TREE)
  732.     return hash_tree_chain (TREE_VALUE (list1), list2);
  733.   return hash_tree_chain (TREE_VALUE (list1),
  734.               hash_chainon (TREE_CHAIN (list1), list2));
  735. }
  736.  
  737. tree
  738. get_decl_list (value)
  739.      tree value;
  740. {
  741.   tree list = NULL_TREE;
  742.  
  743.   if (TREE_CODE (value) == IDENTIFIER_NODE)
  744.     {
  745.       list = IDENTIFIER_AS_LIST (value);
  746.       if (list != NULL_TREE
  747.       && (TREE_CODE (list) != TREE_LIST
  748.           || TREE_VALUE (list) != value))
  749.     list = NULL_TREE;
  750.       else if (IDENTIFIER_HAS_TYPE_VALUE (value)
  751.            && TREE_CODE (IDENTIFIER_TYPE_VALUE (value)) == RECORD_TYPE)
  752.     {
  753.       tree type = IDENTIFIER_TYPE_VALUE (value);
  754.       if (CLASSTYPE_AS_ID_LIST (type) == NULL_TREE)
  755.         CLASSTYPE_AS_ID_LIST (type) = perm_tree_cons (NULL_TREE, value, NULL_TREE);
  756.       list = CLASSTYPE_AS_ID_LIST (type);
  757.     }
  758.     }
  759.   else if (TREE_CODE (value) == RECORD_TYPE
  760.        && TYPE_LANG_SPECIFIC (value))
  761.     list = CLASSTYPE_AS_LIST (value);
  762.  
  763.   if (list != NULL_TREE)
  764.     {
  765.       assert (TREE_CHAIN (list) == NULL_TREE);
  766.       return list;
  767.     }
  768.  
  769.   return build_decl_list (NULL_TREE, value);
  770. }
  771.  
  772. /* Look in the type hash table for a type isomorphic to
  773.    `build_tree_list (NULL_TREE, VALUE)'.
  774.    If one is found, return it.  Otherwise return 0.  */
  775.  
  776. tree
  777. list_hash_lookup_or_cons (value)
  778.      tree value;
  779. {
  780.   register int hashcode = TYPE_HASH (value);
  781.   register struct list_hash *h;
  782.   struct obstack *ambient_obstack;
  783.   tree list = NULL_TREE;
  784.  
  785.   if (TREE_CODE (value) == IDENTIFIER_NODE)
  786.     {
  787.       list = IDENTIFIER_AS_LIST (value);
  788.       if (list != NULL_TREE
  789.       && (TREE_CODE (list) != TREE_LIST
  790.           || TREE_VALUE (list) != value))
  791.     list = NULL_TREE;
  792.       else if (IDENTIFIER_HAS_TYPE_VALUE (value)
  793.            && TREE_CODE (IDENTIFIER_TYPE_VALUE (value)) == RECORD_TYPE)
  794.     {
  795.       /* If the type name and constructor name are different, don't
  796.          write constructor name into type.  */
  797.       extern tree constructor_name ();
  798.       if (IDENTIFIER_TYPEDECL_VALUE (value)
  799.           && IDENTIFIER_TYPEDECL_VALUE (value) != constructor_name (value))
  800.         list = tree_cons (NULL_TREE, value, NULL_TREE);
  801.       else
  802.         {
  803.           tree type = IDENTIFIER_TYPE_VALUE (value);
  804.           if (CLASSTYPE_AS_ID_LIST (type) == NULL_TREE)
  805.         CLASSTYPE_AS_ID_LIST (type) = perm_tree_cons (NULL_TREE,
  806.                                   value,
  807.                                   NULL_TREE);
  808.           list = CLASSTYPE_AS_ID_LIST (type);
  809.         }
  810.     }
  811.     }
  812.   else if (TREE_CODE (value) == TYPE_DECL
  813.        && TREE_CODE (TREE_TYPE (value)) == RECORD_TYPE
  814.        && TYPE_LANG_SPECIFIC (TREE_TYPE (value)))
  815.     list = CLASSTYPE_AS_ID_LIST (TREE_TYPE (value));
  816.   else if (TREE_CODE (value) == RECORD_TYPE
  817.        && TYPE_LANG_SPECIFIC (value))
  818.     list = CLASSTYPE_AS_LIST (value);
  819.  
  820.   if (list != NULL_TREE)
  821.     {
  822.       assert (TREE_CHAIN (list) == NULL_TREE);
  823.       return list;
  824.     }
  825.  
  826.   if (debug_no_list_hash)
  827.     return hash_tree_chain (value, NULL_TREE);
  828.  
  829.   for (h = list_hash_table[hashcode % TYPE_HASH_SIZE]; h; h = h->next)
  830.     if (h->hashcode == hashcode
  831.     && TREE_VIA_VIRTUAL (h->list) == 0
  832.     && TREE_VIA_PUBLIC (h->list) == 0
  833.     && TREE_PURPOSE (h->list) == 0
  834.     && TREE_VALUE (h->list) == value)
  835.       {
  836.     assert (TREE_TYPE (h->list) == 0);
  837.     assert (TREE_CHAIN (h->list) == 0);
  838.     return h->list;
  839.       }
  840.  
  841.   ambient_obstack = current_obstack;
  842.   current_obstack = &class_obstack;
  843.   list = build_tree_list (NULL_TREE, value);
  844.   list_hash_add (hashcode, list);
  845.   current_obstack = ambient_obstack;
  846.   return list;
  847. }
  848.  
  849. /* Build an association between TYPE and some parameters:
  850.  
  851.    OFFSET is the offset added to `this' to convert it to a pointer
  852.    of type `TYPE *'
  853.  
  854.    VTABLE is the virtual function table with which to initialize
  855.    sub-objects of type TYPE.
  856.  
  857.    VIRTUALS are the virtual functions sitting in VTABLE.
  858.  
  859.    CHAIN are more associations we must retain.  */
  860.  
  861. tree
  862. make_assoc (offset, type, vtable, virtuals, chain)
  863.      tree offset, type;
  864.      tree vtable, virtuals;
  865.      tree chain;
  866. {
  867.   tree assoc = make_tree_vec (4);
  868.  
  869.   TREE_TYPE (assoc) = type;
  870.   TREE_CHAIN (assoc) = chain;
  871.   if (chain)
  872.     TREE_USED (assoc) = TREE_USED (chain);
  873.  
  874.   /* n.b.: TREE_VEC_ELT (assoc, 0) <=> TREE_VALUE (assoc).  */
  875.   TREE_VEC_ELT (assoc, 0) = TYPE_MAIN_VARIANT (type);
  876.   TREE_VEC_ELT (assoc, 1) = offset;
  877.   TREE_VEC_ELT (assoc, 2) = vtable;
  878.   TREE_VEC_ELT (assoc, 3) = virtuals;
  879.   return assoc;
  880. }
  881.  
  882. tree
  883. copy_assoc (list)
  884.      tree list;
  885. {
  886.   tree assoc = copy_list (list);
  887.   tree rval = assoc;
  888.   while (assoc)
  889.     {
  890.       TREE_USED (assoc) = 0;
  891.       assoc = TREE_CHAIN (assoc);
  892.     }
  893.   return rval;
  894. }
  895.  
  896. /* Return the assoc value for ELEM in TYPE.  Due to structure
  897.    sharing, we may find ELEM only in the association list
  898.    belonging to a basetype of TYPE.
  899.  
  900.    COPYING is 0 if we just want an assoc value without needing
  901.    to modify it.
  902.    COPYING is 1 if we want the assoc value in order to modify it.
  903.    In this case, if we don't find ELEM immediately in the assoc
  904.    values of TYPE, we return a copy.
  905.    COPYING is -1 if we are called recursively and need a copy.
  906.    In this case we return a copy of ELEM at the point we find it.  */
  907. tree
  908. assoc_value (elem, type, copying)
  909.      tree elem;
  910.      tree type;
  911.      int copying;
  912. {
  913.   tree assoc = CLASSTYPE_ASSOC (type);
  914.   tree last;
  915.   tree rval = NULL_TREE;
  916.  
  917.   /* Dispose quickly of degenerate case.  */
  918.   if (elem == type)
  919.     return copying < 0 ? copy_assoc (assoc) : assoc;
  920.  
  921.   /* Look for ELEM in two passes.  First pass checks the entire assoc list.
  922.      Second pass recursively searches the assoc lists of assocs.  */
  923.   while (assoc)
  924.     {
  925.       if (elem == ASSOC_VALUE (assoc))
  926.     /* If we find it on the main spine, then
  927.        there can be no ambiguity.  */
  928.     return copying < 0 ? copy_assoc (assoc) : assoc;
  929.       last = assoc;
  930.       assoc = TREE_CHAIN (assoc);
  931.     }
  932.  
  933.   for (assoc = CLASSTYPE_ASSOC (type);
  934.        assoc != TREE_CHAIN (last);
  935.        assoc = TREE_CHAIN (assoc))
  936.     {
  937.       /* ??? Should this condition instead test
  938.      ASSOC_VALUE (assoc) != TYPE_MAIN_VARIANT (type) ???  */
  939.       if (ASSOC_VALUE (assoc) != TYPE_MAIN_VARIANT (type))
  940.     {
  941.       tree nval = assoc_value (elem, ASSOC_TYPE (assoc), copying ? -1 : 0);
  942.  
  943.       if (nval)
  944.         {
  945.           if (copying && rval == NULL_TREE)
  946.         chainon (CLASSTYPE_ASSOC (type), nval);
  947.  
  948.           if (rval && ASSOC_TYPE (rval) != ASSOC_TYPE (nval))
  949.         /* If we find it underneath, we must make sure that
  950.            there are no two ways to do it.  */
  951.         compiler_error ("base class `%s' ambiguous in assoc_value",
  952.                 TYPE_NAME_STRING (elem));
  953.           else
  954.         rval = nval;
  955.         }
  956.     }
  957.     }
  958.   return rval;
  959. }
  960.  
  961. tree
  962. virtual_member (elem, list)
  963.      tree elem;
  964.      tree list;
  965. {
  966.   tree t;
  967.   tree rval, nval;
  968.  
  969.   for (t = list; t; t = TREE_CHAIN (t))
  970.     if (elem == TREE_VALUE (t))
  971.       return t;
  972.   rval = 0;
  973.   for (t = list; t; t = TREE_CHAIN (t))
  974.     {
  975.       int i;
  976.       for (i = CLASSTYPE_N_BASECLASSES (TREE_TYPE (t))-1; i >= 0; i--)
  977.     {
  978.       nval = assoc_value (elem, CLASSTYPE_BASECLASS (TREE_TYPE (t), i), 0);
  979.       if (nval)
  980.         {
  981.           if (rval && TREE_TYPE (nval) != TREE_TYPE (rval))
  982.         abort ();
  983.           rval = nval;
  984.         }
  985.     }
  986.     }
  987.   return rval;
  988. }
  989.  
  990. /* Return the offset (as an INTEGER_CST) for ELEM in LIST.
  991.    INITIAL_OFFSET is the value to add to the offset that ELEM's
  992.    assoc entry in LIST provides.
  993.  
  994.    Returns NULL if ELEM does not have an assoc value in LIST.  */
  995.  
  996. tree
  997. virtual_offset (elem, list, initial_offset)
  998.      tree elem;
  999.      tree list;
  1000.      tree initial_offset;
  1001. {
  1002.   tree t, offset;
  1003.   tree rval, nval;
  1004.  
  1005.   for (t = list; t; t = TREE_CHAIN (t))
  1006.     if (elem == TREE_VALUE (t))
  1007.       return size_binop (PLUS_EXPR, initial_offset, ASSOC_OFFSET (t));
  1008.   rval = 0;
  1009.   for (t = list; t; t = TREE_CHAIN (t))
  1010.     {
  1011.       int i;
  1012.       for (i = CLASSTYPE_N_BASECLASSES (TREE_TYPE (t))-1; i >= 0; i--)
  1013.     {
  1014.       nval = assoc_value (elem, CLASSTYPE_BASECLASS (TREE_TYPE (t), i), 0);
  1015.       if (nval)
  1016.         {
  1017.           if (rval && TREE_TYPE (nval) != TREE_TYPE (rval))
  1018.         abort ();
  1019.           offset = ASSOC_OFFSET (t);
  1020.           rval = nval;
  1021.         }
  1022.     }
  1023.     }
  1024.   if (rval == NULL_TREE)
  1025.     return rval;
  1026.   return size_binop (PLUS_EXPR, offset, ASSOC_OFFSET (rval));
  1027. }
  1028.  
  1029. void
  1030. debug_assoc (elem)
  1031.      tree elem;
  1032. {
  1033.   int i;
  1034.   tree virtuals;
  1035.  
  1036.   fprintf (stderr, "type \"%s\"; offset = %d\n",
  1037.        TYPE_NAME_STRING (ASSOC_VALUE (elem)),
  1038.        TREE_INT_CST_LOW (ASSOC_OFFSET (elem)));
  1039.   fprintf (stderr, "vtable type:\n");
  1040.   debug_tree (ASSOC_TYPE (elem));
  1041.   if (ASSOC_VTABLE (elem))
  1042.     fprintf (stderr, "vtable decl \"%s\"\n", IDENTIFIER_POINTER (DECL_NAME (ASSOC_VTABLE (elem))));
  1043.   else
  1044.     fprintf (stderr, "no vtable decl yet\n");
  1045.   fprintf (stderr, "virtuals:\n");
  1046.   virtuals = ASSOC_VIRTUALS (elem);
  1047.   if (virtuals != 0)
  1048.     {
  1049.       virtuals = TREE_CHAIN (virtuals);
  1050.       if (flag_dossier)
  1051.     virtuals = TREE_CHAIN (virtuals);
  1052.     }
  1053.   i = 1;
  1054.   while (virtuals)
  1055.     {
  1056.       tree fndecl = TREE_OPERAND (FNADDR_FROM_VTABLE_ENTRY (TREE_VALUE (virtuals)), 0);
  1057.       fprintf (stderr, "%s [%d =? %d]\n",
  1058.            IDENTIFIER_POINTER (DECL_NAME (fndecl)),
  1059.            i, TREE_INT_CST_LOW (DECL_VINDEX (fndecl)));
  1060.       virtuals = TREE_CHAIN (virtuals);
  1061.       i += 1;
  1062.     }
  1063. }
  1064.  
  1065. /* Return the length of a chain of nodes chained through DECL_CHAIN.
  1066.    We expect a null pointer to mark the end of the chain.
  1067.    This is the Lisp primitive `length'.  */
  1068.  
  1069. int
  1070. decl_list_length (t)
  1071.      tree t;
  1072. {
  1073.   register tree tail;
  1074.   register int len = 0;
  1075.  
  1076.   assert (TREE_CODE (t) == FUNCTION_DECL);
  1077.   for (tail = t; tail; tail = DECL_CHAIN (tail))
  1078.     len++;
  1079.  
  1080.   return len;
  1081. }
  1082.  
  1083. tree
  1084. fnaddr_from_vtable_entry (entry)
  1085.      tree entry;
  1086. {
  1087.   return TREE_VALUE (TREE_CHAIN (TREE_CHAIN (CONSTRUCTOR_ELTS (entry))));
  1088. }
  1089.  
  1090. void
  1091. set_fnaddr_from_vtable_entry (entry, value)
  1092.      tree entry, value;
  1093. {
  1094.   TREE_VALUE (TREE_CHAIN (TREE_CHAIN (CONSTRUCTOR_ELTS (entry)))) = value;
  1095. }
  1096.  
  1097. tree
  1098. function_arg_chain (t)
  1099.      tree t;
  1100. {
  1101.   return TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (t)));
  1102. }
  1103.  
  1104. int
  1105. promotes_to_aggr_type (t, code)
  1106.      tree t;
  1107.      enum tree_code code;
  1108. {
  1109.   if (TREE_CODE (t) == code)
  1110.     t = TREE_TYPE (t);
  1111.   return IS_AGGR_TYPE (t);
  1112. }
  1113.  
  1114. int
  1115. is_aggr_type_2 (t1, t2)
  1116.      tree t1, t2;
  1117. {
  1118.   return IS_AGGR_TYPE (t1) && IS_AGGR_TYPE (t2);
  1119. }
  1120.  
  1121. char *
  1122. lang_printable_name (decl)
  1123.      tree decl;
  1124. {
  1125.   if (TREE_CODE (decl) != FUNCTION_DECL
  1126.       || DECL_LANG_SPECIFIC (decl) == 0)
  1127.     {
  1128.       if (DECL_NAME (decl))
  1129.     {
  1130.       if (THIS_NAME_P (DECL_NAME (decl)))
  1131.         return "this";
  1132.       return IDENTIFIER_POINTER (DECL_NAME (decl));
  1133.     }
  1134.       return "((anonymous))";
  1135.     }
  1136.   if (DECL_PRINT_NAME (decl) == 0)
  1137.     {
  1138.       int print_ret_type_p
  1139.     = (!DECL_CONSTRUCTOR_P (decl)
  1140.        && !DESTRUCTOR_NAME_P (DECL_NAME (decl)));
  1141.       int temp = allocation_temporary_p ();
  1142.       char *buf = (char *)alloca (8192);
  1143.       char *name = (char *)fndecl_as_string (buf, 0, decl, print_ret_type_p);
  1144.       end_temporary_allocation ();
  1145.       DECL_PRINT_NAME (decl) = oballoc (strlen (name) + 1);
  1146.       strcpy (DECL_PRINT_NAME (decl), name);
  1147.       if (temp)
  1148.     resume_temporary_allocation ();
  1149.     }
  1150.   else if (DECL_NAME (decl) == 0)
  1151.     DECL_PRINT_NAME (decl) = "((anonymous))";
  1152.  
  1153.   return DECL_PRINT_NAME (decl);
  1154. }
  1155.  
  1156. /* Return truthvalue about whether debugger should
  1157.    output full info about this type or not.
  1158.  
  1159.    Current strategy is to permit types which define
  1160.    no member functions to be output normally.  For
  1161.    those which do define member functions, if no
  1162.    member functions have yet been output, then don't
  1163.    output the definition of the type.  If member functions
  1164.    for the type are later seen, a full definition of the
  1165.    type will eventually be output.  */
  1166. int
  1167. lang_output_debug_info (type)
  1168.      tree type;
  1169. {
  1170.   extern tree pending_vtables;
  1171.  
  1172.   /* Be smarter about nested classes here.  If a type is nested,
  1173.      only output it if we would output the enclosing type.  */
  1174.   if (TYPE_NAME (type)
  1175.       && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
  1176.       && DECL_CONTEXT (TYPE_NAME (type))
  1177.       && TREE_CODE (DECL_CONTEXT (TYPE_NAME (type))) == RECORD_TYPE)
  1178.     return !TREE_ASM_WRITTEN (TYPE_NAME (type));
  1179.  
  1180.   if (! IS_AGGR_TYPE (type))
  1181.     return 1;
  1182.   if (TYPE_LANG_SPECIFIC (type) == 0)
  1183.     return 1;
  1184.   if (CLASSTYPE_METHOD_VEC (type) == 0)
  1185.     return 1;
  1186.  
  1187.   if (flag_minimal_debug)
  1188.     {
  1189.       /* Don't output full info about any type
  1190.      which does not have its implementation defined here.  */
  1191.       if (TYPE_VIRTUAL_P (type) && write_virtuals == 2)
  1192.     return value_member (TYPE_IDENTIFIER (type), pending_vtables) != 0;
  1193.       if (CLASSTYPE_INTERFACE_ONLY (type))
  1194.     return 0;
  1195.  
  1196.       return CLASSTYPE_ASM_WRITTEN (type);
  1197.     }
  1198.   else
  1199.     /* Can't work until GDB is modified.  */
  1200.     return 1;
  1201. }
  1202.  
  1203. /* Comparison function for sorting identifiers in RAISES lists.
  1204.    Note that because IDENTIFIER_NODEs are unique, we can sort
  1205.    them by address, saving an indirection.  */
  1206. static int
  1207. id_cmp (p1, p2)
  1208.      tree *p1, *p2;
  1209. {
  1210.   return (int)TREE_VALUE (*p1) - (int)TREE_VALUE (*p2);
  1211. }
  1212.  
  1213. /* Build the FUNCTION_TYPE or METHOD_TYPE which may raise exceptions
  1214.    listed in RAISES.  */
  1215. tree
  1216. build_exception_variant (ctype, type, raises)
  1217.      tree ctype, type;
  1218.      tree raises;
  1219. {
  1220.   int i;
  1221.   tree v = TYPE_MAIN_VARIANT (type);
  1222.   tree t, t2, cname;
  1223.   tree *a = (tree *)alloca ((list_length (raises)+1) * sizeof (tree));
  1224.   int constp = TYPE_READONLY (type);
  1225.   int volatilep = TYPE_VOLATILE (type);
  1226.  
  1227.   if (raises && TREE_CHAIN (raises))
  1228.     {
  1229.       for (i = 0, t = raises; t; t = TREE_CHAIN (t), i++)
  1230.     a[i] = t;
  1231.       /* NULL terminator for list.  */
  1232.       a[i] = NULL_TREE;
  1233.       qsort (a, i, sizeof (tree), id_cmp);
  1234.       while (i--)
  1235.     TREE_CHAIN (a[i]) = a[i+1];
  1236.       raises = a[0];
  1237.     }
  1238.   else if (raises)
  1239.     /* do nothing.  */;
  1240.   else
  1241.     return build_type_variant (v, constp, volatilep);
  1242.  
  1243.   if (ctype)
  1244.     {
  1245.       cname = TYPE_NAME (ctype);
  1246.       if (TREE_CODE (cname) == TYPE_DECL)
  1247.     cname = DECL_NAME (cname);
  1248.     }
  1249.   else
  1250.     cname = NULL_TREE;
  1251.  
  1252.   for (t = raises; t; t = TREE_CHAIN (t))
  1253.     {
  1254.       /* See that all the exceptions we are thinking about
  1255.      raising have been declared.  */
  1256.       tree this_cname = lookup_exception_cname (ctype, cname, t);
  1257.       tree decl = lookup_exception_object (this_cname, TREE_VALUE (t), 1);
  1258.  
  1259.       if (decl == NULL_TREE)
  1260.     decl = lookup_exception_object (this_cname, TREE_VALUE (t), 0);
  1261.       /* Place canonical exception decl into TREE_TYPE of RAISES list.  */
  1262.       TREE_TYPE (t) = decl;
  1263.     }
  1264.  
  1265.   for (v = TYPE_NEXT_VARIANT (v); v; v = TYPE_NEXT_VARIANT (v))
  1266.     {
  1267.       if (TYPE_READONLY (v) != constp
  1268.       || TYPE_VOLATILE (v) != volatilep)
  1269.     continue;
  1270.  
  1271.       t = raises;
  1272.       t2 = TYPE_RAISES_EXCEPTIONS (v);
  1273.       while (t && t2)
  1274.     {
  1275.       if (TREE_TYPE (t) == TREE_TYPE (t2))
  1276.         {
  1277.           t = TREE_CHAIN (t);
  1278.           t2 = TREE_CHAIN (t2);
  1279.         }
  1280.       else break;
  1281.     }
  1282.       if (t || t2)
  1283.     continue;
  1284.       /* List of exceptions raised matches previously found list.
  1285.  
  1286.          @@ Nice to free up storage used in consing up the
  1287.      @@ list of exceptions raised.  */
  1288.       return v;
  1289.     }
  1290.  
  1291.   /* Need to build a new variant.  */
  1292.   v = copy_node (type);
  1293.   TYPE_NEXT_VARIANT (v) = TYPE_NEXT_VARIANT (type);
  1294.   TYPE_NEXT_VARIANT (type) = v;
  1295.   if (raises && ! TREE_PERMANENT (raises))
  1296.     {
  1297.       int temporary = allocation_temporary_p ();
  1298.       if (temporary)
  1299.     end_temporary_allocation ();
  1300.       raises = copy_list (raises);
  1301.       if (temporary)
  1302.     resume_temporary_allocation ();
  1303.     }
  1304.   TYPE_RAISES_EXCEPTIONS (v) = raises;
  1305.   return v;
  1306. }
  1307.  
  1308. /* Subroutine of make_permanent_node.
  1309.  
  1310.    Assuming T is a node build bottom-up, make it all exist on
  1311.    permanent obstack, if it is not permanent already.  */
  1312. static tree
  1313. make_deep_copy (t)
  1314.      tree t;
  1315. {
  1316.   enum tree_code code;
  1317.  
  1318.   if (t == NULL_TREE || TREE_PERMANENT (t))
  1319.     return t;
  1320.  
  1321.   switch (code = TREE_CODE (t))
  1322.     {
  1323.     case ERROR_MARK:
  1324.       return error_mark_node;
  1325.  
  1326.     case VAR_DECL:
  1327.     case PARM_DECL:
  1328.     case FUNCTION_DECL:
  1329.     case CONST_DECL:
  1330.       break;
  1331.  
  1332.     case TREE_LIST:
  1333.       {
  1334.     tree chain = TREE_CHAIN (t);
  1335.     t = copy_node (t);
  1336.     TREE_PURPOSE (t) = make_deep_copy (TREE_PURPOSE (t));
  1337.     TREE_VALUE (t) = make_deep_copy (TREE_VALUE (t));
  1338.     TREE_CHAIN (t) = make_deep_copy (chain);
  1339.     return t;
  1340.       }
  1341.  
  1342.     case TREE_VEC:
  1343.       {
  1344.     int len = TREE_VEC_LENGTH (t);
  1345.  
  1346.     t = copy_node (t);
  1347.     while (len--)
  1348.       TREE_VEC_ELT (t, len) = make_deep_copy (TREE_VEC_ELT (t, len));
  1349.     return t;
  1350.       }
  1351.  
  1352.     case INTEGER_CST:
  1353.     case REAL_CST:
  1354.     case STRING_CST:
  1355.       return copy_node (t);
  1356.  
  1357.     case COND_EXPR:
  1358.     case TARGET_EXPR:
  1359.     case NEW_EXPR:
  1360.       t = copy_node (t);
  1361.       TREE_OPERAND (t, 0) = make_deep_copy (TREE_OPERAND (t, 0));
  1362.       TREE_OPERAND (t, 1) = make_deep_copy (TREE_OPERAND (t, 1));
  1363.       TREE_OPERAND (t, 2) = make_deep_copy (TREE_OPERAND (t, 2));
  1364.       return t;
  1365.  
  1366.     case SAVE_EXPR:
  1367.       t = copy_node (t);
  1368.       TREE_OPERAND (t, 0) = make_deep_copy (TREE_OPERAND (t, 0));
  1369.       return t;
  1370.  
  1371.     case MODIFY_EXPR:
  1372.     case PLUS_EXPR:
  1373.     case MINUS_EXPR:
  1374.     case MULT_EXPR:
  1375.     case TRUNC_DIV_EXPR:
  1376.     case TRUNC_MOD_EXPR:
  1377.     case MIN_EXPR:
  1378.     case MAX_EXPR:
  1379.     case LSHIFT_EXPR:
  1380.     case RSHIFT_EXPR:
  1381.     case BIT_IOR_EXPR:
  1382.     case BIT_XOR_EXPR:
  1383.     case BIT_AND_EXPR:
  1384.     case BIT_ANDTC_EXPR:
  1385.     case TRUTH_ANDIF_EXPR:
  1386.     case TRUTH_ORIF_EXPR:
  1387.     case LT_EXPR:
  1388.     case LE_EXPR:
  1389.     case GT_EXPR:
  1390.     case GE_EXPR:
  1391.     case EQ_EXPR:
  1392.     case NE_EXPR:
  1393.     case CEIL_DIV_EXPR:
  1394.     case FLOOR_DIV_EXPR:
  1395.     case ROUND_DIV_EXPR:
  1396.     case CEIL_MOD_EXPR:
  1397.     case FLOOR_MOD_EXPR:
  1398.     case ROUND_MOD_EXPR:
  1399.     case COMPOUND_EXPR:
  1400.     case PREDECREMENT_EXPR:
  1401.     case PREINCREMENT_EXPR:
  1402.     case POSTDECREMENT_EXPR:
  1403.     case POSTINCREMENT_EXPR:
  1404.     case CALL_EXPR:
  1405.       t = copy_node (t);
  1406.       TREE_OPERAND (t, 0) = make_deep_copy (TREE_OPERAND (t, 0));
  1407.       TREE_OPERAND (t, 1) = make_deep_copy (TREE_OPERAND (t, 1));
  1408.       return t;
  1409.  
  1410.     case CONVERT_EXPR:
  1411.     case ADDR_EXPR:
  1412.     case INDIRECT_REF:
  1413.     case NEGATE_EXPR:
  1414.     case BIT_NOT_EXPR:
  1415.     case TRUTH_NOT_EXPR:
  1416.     case NOP_EXPR:
  1417.     case COMPONENT_REF:
  1418.       t = copy_node (t);
  1419.       TREE_OPERAND (t, 0) = make_deep_copy (TREE_OPERAND (t, 0));
  1420.       return t;
  1421.  
  1422.       /*  This list is incomplete, but should suffice for now.
  1423.       It is very important that `sorry' does not call
  1424.       `report_error_function'.  That could cause an infinite loop.  */
  1425.     default:
  1426.       sorry ("initializer contains unrecognized tree code");
  1427.       return error_mark_node;
  1428.  
  1429.     }
  1430.   abort ();
  1431. }
  1432.  
  1433. /* Assuming T is a node built bottom-up, make it all exist on
  1434.    permanent obstack, if it is not permanent already.  */
  1435. tree
  1436. copy_to_permanent (t)
  1437.      tree t;
  1438. {
  1439.   register struct obstack *ambient_obstack = current_obstack;
  1440.   register struct obstack *ambient_saveable_obstack = saveable_obstack;
  1441.  
  1442.   if (t == NULL_TREE || TREE_PERMANENT (t))
  1443.     return t;
  1444.  
  1445.   saveable_obstack = &permanent_obstack;
  1446.   current_obstack = saveable_obstack;
  1447.  
  1448.   t = make_deep_copy (t);
  1449.  
  1450.   current_obstack = ambient_obstack;
  1451.   saveable_obstack = ambient_saveable_obstack;
  1452.  
  1453.   return t;
  1454. }
  1455.  
  1456. int
  1457. lang_simple_cst_equal (t1, t2)
  1458.      tree t1, t2;
  1459. {
  1460.   register enum tree_code code1, code2;
  1461.   int cmp;
  1462.  
  1463.   if (t1 == t2)
  1464.     return 1;
  1465.   if (t1 == 0 || t2 == 0)
  1466.     return 0;
  1467.  
  1468.   code1 = TREE_CODE (t1);
  1469.   code2 = TREE_CODE (t2);
  1470.  
  1471.   switch (code1)
  1472.     {
  1473.     case NEW_EXPR:
  1474.       cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
  1475.       if (cmp <= 0)
  1476.     return cmp;
  1477.       return simple_cst_list_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
  1478.  
  1479.     default:
  1480.       return -1;
  1481.     }
  1482. }
  1483.  
  1484. void
  1485. print_cplus_statistics ()
  1486. {
  1487.   extern struct obstack maybepermanent_obstack;
  1488.   print_obstack_statistics ("class_obstack", &class_obstack);
  1489.   print_obstack_statistics ("permanent_obstack", &permanent_obstack);
  1490.   print_obstack_statistics ("maybepermanent_obstack", &maybepermanent_obstack);
  1491.   print_search_statistics ();
  1492.   print_class_statistics ();
  1493. }
  1494.  
  1495. /* This is used by the `assert' macro.  It is provided in gnulib2,
  1496.    which `cc' doesn't know how to link.  */
  1497. void
  1498. __eprintf (string, expression, line, filename)
  1499.      char *string;
  1500.      char *expression;
  1501.      int line;
  1502.      char *filename;
  1503. {
  1504.   fprintf (stderr, string, expression, line, filename);
  1505.   fflush (stderr);
  1506.   abort ();
  1507. }
  1508.