OSDN Git Service

* cp-tree.h (build_shared_int_cst): Remove.
[pf3gnuchains/gcc-fork.git] / gcc / cp / tree.c
1 /* Language-dependent node constructors for parse phase of GNU compiler.
2    Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3    1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
4    Hacked by Michael Tiemann (tiemann@cygnus.com)
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
12
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING.  If not, write to
20 the Free Software Foundation, 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA.  */
22
23 #include "config.h"
24 #include "system.h"
25 #include "coretypes.h"
26 #include "tm.h"
27 #include "tree.h"
28 #include "cp-tree.h"
29 #include "flags.h"
30 #include "real.h"
31 #include "rtl.h"
32 #include "toplev.h"
33 #include "insn-config.h"
34 #include "integrate.h"
35 #include "tree-inline.h"
36 #include "target.h"
37
38 static tree bot_manip (tree *, int *, void *);
39 static tree bot_replace (tree *, int *, void *);
40 static tree build_cplus_array_type_1 (tree, tree);
41 static int list_hash_eq (const void *, const void *);
42 static hashval_t list_hash_pieces (tree, tree, tree);
43 static hashval_t list_hash (const void *);
44 static cp_lvalue_kind lvalue_p_1 (tree, int);
45 static tree mark_local_for_remap_r (tree *, int *, void *);
46 static tree cp_unsave_r (tree *, int *, void *);
47 static tree build_target_expr (tree, tree);
48 static tree count_trees_r (tree *, int *, void *);
49 static tree verify_stmt_tree_r (tree *, int *, void *);
50 static tree find_tree_r (tree *, int *, void *);
51 static tree build_local_temp (tree);
52
53 static tree handle_java_interface_attribute (tree *, tree, tree, int, bool *);
54 static tree handle_com_interface_attribute (tree *, tree, tree, int, bool *);
55 static tree handle_init_priority_attribute (tree *, tree, tree, int, bool *);
56
57 /* If REF is an lvalue, returns the kind of lvalue that REF is.
58    Otherwise, returns clk_none.  If TREAT_CLASS_RVALUES_AS_LVALUES is
59    nonzero, rvalues of class type are considered lvalues.  */
60
61 static cp_lvalue_kind
62 lvalue_p_1 (tree ref,
63             int treat_class_rvalues_as_lvalues)
64 {
65   cp_lvalue_kind op1_lvalue_kind = clk_none;
66   cp_lvalue_kind op2_lvalue_kind = clk_none;
67
68   if (TREE_CODE (TREE_TYPE (ref)) == REFERENCE_TYPE)
69     return clk_ordinary;
70
71   if (ref == current_class_ptr)
72     return clk_none;
73
74   switch (TREE_CODE (ref))
75     {
76       /* preincrements and predecrements are valid lvals, provided
77          what they refer to are valid lvals.  */
78     case PREINCREMENT_EXPR:
79     case PREDECREMENT_EXPR:
80     case SAVE_EXPR:
81     case TRY_CATCH_EXPR:
82     case WITH_CLEANUP_EXPR:
83     case REALPART_EXPR:
84     case IMAGPART_EXPR:
85       return lvalue_p_1 (TREE_OPERAND (ref, 0),
86                          treat_class_rvalues_as_lvalues);
87
88     case COMPONENT_REF:
89       op1_lvalue_kind = lvalue_p_1 (TREE_OPERAND (ref, 0),
90                                     treat_class_rvalues_as_lvalues);
91       /* In an expression of the form "X.Y", the packed-ness of the
92          expression does not depend on "X".  */
93       op1_lvalue_kind &= ~clk_packed;
94       /* Look at the member designator.  */
95       if (!op1_lvalue_kind
96           /* The "field" can be a FUNCTION_DECL or an OVERLOAD in some
97              situations.  */
98           || TREE_CODE (TREE_OPERAND (ref, 1)) != FIELD_DECL)
99         ;
100       else if (DECL_C_BIT_FIELD (TREE_OPERAND (ref, 1)))
101         {
102           /* Clear the ordinary bit.  If this object was a class
103              rvalue we want to preserve that information.  */
104           op1_lvalue_kind &= ~clk_ordinary;
105           /* The lvalue is for a bitfield.  */
106           op1_lvalue_kind |= clk_bitfield;
107         }
108       else if (DECL_PACKED (TREE_OPERAND (ref, 1)))
109         op1_lvalue_kind |= clk_packed;
110
111       return op1_lvalue_kind;
112
113     case STRING_CST:
114       return clk_ordinary;
115
116     case VAR_DECL:
117       if (TREE_READONLY (ref) && ! TREE_STATIC (ref)
118           && DECL_LANG_SPECIFIC (ref)
119           && DECL_IN_AGGR_P (ref))
120         return clk_none;
121     case INDIRECT_REF:
122     case ARRAY_REF:
123     case PARM_DECL:
124     case RESULT_DECL:
125       if (TREE_CODE (TREE_TYPE (ref)) != METHOD_TYPE)
126         return clk_ordinary;
127       break;
128
129       /* A currently unresolved scope ref.  */
130     case SCOPE_REF:
131       abort ();
132     case MAX_EXPR:
133     case MIN_EXPR:
134       op1_lvalue_kind = lvalue_p_1 (TREE_OPERAND (ref, 0),
135                                     treat_class_rvalues_as_lvalues);
136       op2_lvalue_kind = lvalue_p_1 (TREE_OPERAND (ref, 1),
137                                     treat_class_rvalues_as_lvalues);
138       break;
139
140     case COND_EXPR:
141       op1_lvalue_kind = lvalue_p_1 (TREE_OPERAND (ref, 1),
142                                     treat_class_rvalues_as_lvalues);
143       op2_lvalue_kind = lvalue_p_1 (TREE_OPERAND (ref, 2),
144                                     treat_class_rvalues_as_lvalues);
145       break;
146
147     case MODIFY_EXPR:
148       return clk_ordinary;
149
150     case COMPOUND_EXPR:
151       return lvalue_p_1 (TREE_OPERAND (ref, 1),
152                          treat_class_rvalues_as_lvalues);
153
154     case TARGET_EXPR:
155       return treat_class_rvalues_as_lvalues ? clk_class : clk_none;
156
157     case CALL_EXPR:
158     case VA_ARG_EXPR:
159       /* Any class-valued call would be wrapped in a TARGET_EXPR.  */
160       return clk_none;
161
162     case FUNCTION_DECL:
163       /* All functions (except non-static-member functions) are
164          lvalues.  */
165       return (DECL_NONSTATIC_MEMBER_FUNCTION_P (ref)
166               ? clk_none : clk_ordinary);
167
168     case NON_DEPENDENT_EXPR:
169       /* We must consider NON_DEPENDENT_EXPRs to be lvalues so that
170          things like "&E" where "E" is an expression with a
171          non-dependent type work. It is safe to be lenient because an
172          error will be issued when the template is instantiated if "E"
173          is not an lvalue.  */
174       return clk_ordinary;
175
176     default:
177       break;
178     }
179
180   /* If one operand is not an lvalue at all, then this expression is
181      not an lvalue.  */
182   if (!op1_lvalue_kind || !op2_lvalue_kind)
183     return clk_none;
184
185   /* Otherwise, it's an lvalue, and it has all the odd properties
186      contributed by either operand.  */
187   op1_lvalue_kind = op1_lvalue_kind | op2_lvalue_kind;
188   /* It's not an ordinary lvalue if it involves either a bit-field or
189      a class rvalue.  */
190   if ((op1_lvalue_kind & ~clk_ordinary) != clk_none)
191     op1_lvalue_kind &= ~clk_ordinary;
192   return op1_lvalue_kind;
193 }
194
195 /* Returns the kind of lvalue that REF is, in the sense of
196    [basic.lval].  This function should really be named lvalue_p; it
197    computes the C++ definition of lvalue.  */
198
199 cp_lvalue_kind
200 real_lvalue_p (tree ref)
201 {
202   return lvalue_p_1 (ref,
203                      /*treat_class_rvalues_as_lvalues=*/0);
204 }
205
206 /* This differs from real_lvalue_p in that class rvalues are
207    considered lvalues.  */
208
209 int
210 lvalue_p (tree ref)
211 {
212   return
213     (lvalue_p_1 (ref, /*class rvalue ok*/ 1) != clk_none);
214 }
215
216 /* Return nonzero if REF is an lvalue valid for this language;
217    otherwise, print an error message and return zero.  */
218
219 int
220 lvalue_or_else (tree ref, const char* string)
221 {
222   if (!lvalue_p (ref))
223     {
224       error ("non-lvalue in %s", string);
225       return 0;
226     }
227   return 1;
228 }
229
230 /* Build a TARGET_EXPR, initializing the DECL with the VALUE.  */
231
232 static tree
233 build_target_expr (tree decl, tree value)
234 {
235   tree t;
236
237   t = build4 (TARGET_EXPR, TREE_TYPE (decl), decl, value,
238               cxx_maybe_build_cleanup (decl), NULL_TREE);
239   /* We always set TREE_SIDE_EFFECTS so that expand_expr does not
240      ignore the TARGET_EXPR.  If there really turn out to be no
241      side-effects, then the optimizer should be able to get rid of
242      whatever code is generated anyhow.  */
243   TREE_SIDE_EFFECTS (t) = 1;
244
245   return t;
246 }
247
248 /* Return an undeclared local temporary of type TYPE for use in building a
249    TARGET_EXPR.  */
250
251 static tree
252 build_local_temp (tree type)
253 {
254   tree slot = build_decl (VAR_DECL, NULL_TREE, type);
255   DECL_ARTIFICIAL (slot) = 1;
256   DECL_CONTEXT (slot) = current_function_decl;
257   layout_decl (slot, 0);
258   return slot;
259 }
260
261 /* INIT is a CALL_EXPR which needs info about its target.
262    TYPE is the type that this initialization should appear to have.
263
264    Build an encapsulation of the initialization to perform
265    and return it so that it can be processed by language-independent
266    and language-specific expression expanders.  */
267
268 tree
269 build_cplus_new (tree type, tree init)
270 {
271   tree fn;
272   tree slot;
273   tree rval;
274   int is_ctor;
275
276   /* Make sure that we're not trying to create an instance of an
277      abstract class.  */
278   abstract_virtuals_error (NULL_TREE, type);
279
280   if (TREE_CODE (init) != CALL_EXPR && TREE_CODE (init) != AGGR_INIT_EXPR)
281     return convert (type, init);
282
283   fn = TREE_OPERAND (init, 0);
284   is_ctor = (TREE_CODE (fn) == ADDR_EXPR
285              && TREE_CODE (TREE_OPERAND (fn, 0)) == FUNCTION_DECL
286              && DECL_CONSTRUCTOR_P (TREE_OPERAND (fn, 0)));
287
288   slot = build_local_temp (type);
289
290   /* We split the CALL_EXPR into its function and its arguments here.
291      Then, in expand_expr, we put them back together.  The reason for
292      this is that this expression might be a default argument
293      expression.  In that case, we need a new temporary every time the
294      expression is used.  That's what break_out_target_exprs does; it
295      replaces every AGGR_INIT_EXPR with a copy that uses a fresh
296      temporary slot.  Then, expand_expr builds up a call-expression
297      using the new slot.  */
298
299   /* If we don't need to use a constructor to create an object of this
300      type, don't mess with AGGR_INIT_EXPR.  */
301   if (is_ctor || TREE_ADDRESSABLE (type))
302     {
303       rval = build3 (AGGR_INIT_EXPR, void_type_node, fn,
304                      TREE_OPERAND (init, 1), slot);
305       TREE_SIDE_EFFECTS (rval) = 1;
306       AGGR_INIT_VIA_CTOR_P (rval) = is_ctor;
307     }
308   else
309     rval = init;
310
311   rval = build_target_expr (slot, rval);
312
313   return rval;
314 }
315
316 /* Build a TARGET_EXPR using INIT to initialize a new temporary of the
317    indicated TYPE.  */
318
319 tree
320 build_target_expr_with_type (tree init, tree type)
321 {
322   tree slot;
323
324   my_friendly_assert (!VOID_TYPE_P (type), 20040130);
325
326   if (TREE_CODE (init) == TARGET_EXPR)
327     return init;
328   else if (CLASS_TYPE_P (type) && !TYPE_HAS_TRIVIAL_INIT_REF (type)
329            && TREE_CODE (init) != COND_EXPR
330            && TREE_CODE (init) != CONSTRUCTOR
331            && TREE_CODE (init) != VA_ARG_EXPR)
332     /* We need to build up a copy constructor call.  COND_EXPR is a special
333        case because we already have copies on the arms and we don't want
334        another one here.  A CONSTRUCTOR is aggregate initialization, which
335        is handled separately.  A VA_ARG_EXPR is magic creation of an
336        aggregate; there's no additional work to be done.  */
337     return force_rvalue (init);
338
339   slot = build_local_temp (type);
340   return build_target_expr (slot, init);
341 }
342
343 /* Like the above function, but without the checking.  This function should
344    only be used by code which is deliberately trying to subvert the type
345    system, such as call_builtin_trap.  */
346
347 tree
348 force_target_expr (tree type, tree init)
349 {
350   tree slot;
351
352   my_friendly_assert (!VOID_TYPE_P (type), 20040130);
353
354   slot = build_local_temp (type);
355   return build_target_expr (slot, init);
356 }
357
358 /* Like build_target_expr_with_type, but use the type of INIT.  */
359
360 tree
361 get_target_expr (tree init)
362 {
363   return build_target_expr_with_type (init, TREE_TYPE (init));
364 }
365
366 \f
367 static tree
368 build_cplus_array_type_1 (tree elt_type, tree index_type)
369 {
370   tree t;
371
372   if (elt_type == error_mark_node || index_type == error_mark_node)
373     return error_mark_node;
374
375   if (dependent_type_p (elt_type)
376       || (index_type
377           && value_dependent_expression_p (TYPE_MAX_VALUE (index_type))))
378     {
379       t = make_node (ARRAY_TYPE);
380       TREE_TYPE (t) = elt_type;
381       TYPE_DOMAIN (t) = index_type;
382     }
383   else
384     t = build_array_type (elt_type, index_type);
385
386   /* Push these needs up so that initialization takes place
387      more easily.  */
388   TYPE_NEEDS_CONSTRUCTING (t)
389     = TYPE_NEEDS_CONSTRUCTING (TYPE_MAIN_VARIANT (elt_type));
390   TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t)
391     = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TYPE_MAIN_VARIANT (elt_type));
392   return t;
393 }
394
395 tree
396 build_cplus_array_type (tree elt_type, tree index_type)
397 {
398   tree t;
399   int type_quals = cp_type_quals (elt_type);
400
401   if (type_quals != TYPE_UNQUALIFIED)
402     elt_type = cp_build_qualified_type (elt_type, TYPE_UNQUALIFIED);
403
404   t = build_cplus_array_type_1 (elt_type, index_type);
405
406   if (type_quals != TYPE_UNQUALIFIED)
407     t = cp_build_qualified_type (t, type_quals);
408
409   return t;
410 }
411 \f
412 /* Make a variant of TYPE, qualified with the TYPE_QUALS.  Handles
413    arrays correctly.  In particular, if TYPE is an array of T's, and
414    TYPE_QUALS is non-empty, returns an array of qualified T's.
415
416    FLAGS determines how to deal with illformed qualifications. If
417    tf_ignore_bad_quals is set, then bad qualifications are dropped
418    (this is permitted if TYPE was introduced via a typedef or template
419    type parameter). If bad qualifications are dropped and tf_warning
420    is set, then a warning is issued for non-const qualifications.  If
421    tf_ignore_bad_quals is not set and tf_error is not set, we
422    return error_mark_node. Otherwise, we issue an error, and ignore
423    the qualifications.
424
425    Qualification of a reference type is valid when the reference came
426    via a typedef or template type argument. [dcl.ref] No such
427    dispensation is provided for qualifying a function type.  [dcl.fct]
428    DR 295 queries this and the proposed resolution brings it into line
429    with qualifying a reference.  We implement the DR.  We also behave
430    in a similar manner for restricting non-pointer types.  */
431
432 tree
433 cp_build_qualified_type_real (tree type,
434                               int type_quals,
435                               tsubst_flags_t complain)
436 {
437   tree result;
438   int bad_quals = TYPE_UNQUALIFIED;
439
440   if (type == error_mark_node)
441     return type;
442
443   if (type_quals == cp_type_quals (type))
444     return type;
445
446   if (TREE_CODE (type) == ARRAY_TYPE)
447     {
448       /* In C++, the qualification really applies to the array element
449          type.  Obtain the appropriately qualified element type.  */
450       tree t;
451       tree element_type
452         = cp_build_qualified_type_real (TREE_TYPE (type),
453                                         type_quals,
454                                         complain);
455
456       if (element_type == error_mark_node)
457         return error_mark_node;
458
459       /* See if we already have an identically qualified type.  */
460       for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
461         if (cp_type_quals (t) == type_quals
462             && TYPE_NAME (t) == TYPE_NAME (type)
463             && TYPE_CONTEXT (t) == TYPE_CONTEXT (type))
464           break;
465
466       if (!t)
467         {
468           /* Make a new array type, just like the old one, but with the
469              appropriately qualified element type.  */
470           t = build_type_copy (type);
471           TREE_TYPE (t) = element_type;
472         }
473
474       /* Even if we already had this variant, we update
475          TYPE_NEEDS_CONSTRUCTING and TYPE_HAS_NONTRIVIAL_DESTRUCTOR in case
476          they changed since the variant was originally created.
477
478          This seems hokey; if there is some way to use a previous
479          variant *without* coming through here,
480          TYPE_NEEDS_CONSTRUCTING will never be updated.  */
481       TYPE_NEEDS_CONSTRUCTING (t)
482         = TYPE_NEEDS_CONSTRUCTING (TYPE_MAIN_VARIANT (element_type));
483       TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t)
484         = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TYPE_MAIN_VARIANT (element_type));
485       return t;
486     }
487   else if (TYPE_PTRMEMFUNC_P (type))
488     {
489       /* For a pointer-to-member type, we can't just return a
490          cv-qualified version of the RECORD_TYPE.  If we do, we
491          haven't changed the field that contains the actual pointer to
492          a method, and so TYPE_PTRMEMFUNC_FN_TYPE will be wrong.  */
493       tree t;
494
495       t = TYPE_PTRMEMFUNC_FN_TYPE (type);
496       t = cp_build_qualified_type_real (t, type_quals, complain);
497       return build_ptrmemfunc_type (t);
498     }
499
500   /* A reference, function or method type shall not be cv qualified.
501      [dcl.ref], [dct.fct]  */
502   if (type_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)
503       && (TREE_CODE (type) == REFERENCE_TYPE
504           || TREE_CODE (type) == FUNCTION_TYPE
505           || TREE_CODE (type) == METHOD_TYPE))
506     {
507       bad_quals |= type_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE);
508       type_quals &= ~(TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE);
509     }
510
511   /* A restrict-qualified type must be a pointer (or reference)
512      to object or incomplete type.  */
513   if ((type_quals & TYPE_QUAL_RESTRICT)
514       && TREE_CODE (type) != TEMPLATE_TYPE_PARM
515       && TREE_CODE (type) != TYPENAME_TYPE
516       && !POINTER_TYPE_P (type))
517     {
518       bad_quals |= TYPE_QUAL_RESTRICT;
519       type_quals &= ~TYPE_QUAL_RESTRICT;
520     }
521
522   if (bad_quals == TYPE_UNQUALIFIED)
523     /*OK*/;
524   else if (!(complain & (tf_error | tf_ignore_bad_quals)))
525     return error_mark_node;
526   else
527     {
528       if (complain & tf_ignore_bad_quals)
529         /* We're not going to warn about constifying things that can't
530            be constified.  */
531         bad_quals &= ~TYPE_QUAL_CONST;
532       if (bad_quals)
533         {
534           tree bad_type = build_qualified_type (ptr_type_node, bad_quals);
535
536           if (!(complain & tf_ignore_bad_quals))
537             error ("`%V' qualifiers cannot be applied to `%T'",
538                    bad_type, type);
539         }
540     }
541
542   /* Retrieve (or create) the appropriately qualified variant.  */
543   result = build_qualified_type (type, type_quals);
544
545   /* If this was a pointer-to-method type, and we just made a copy,
546      then we need to unshare the record that holds the cached
547      pointer-to-member-function type, because these will be distinct
548      between the unqualified and qualified types.  */
549   if (result != type
550       && TREE_CODE (type) == POINTER_TYPE
551       && TREE_CODE (TREE_TYPE (type)) == METHOD_TYPE)
552     TYPE_LANG_SPECIFIC (result) = NULL;
553
554   return result;
555 }
556
557 /* Returns the canonical version of TYPE.  In other words, if TYPE is
558    a typedef, returns the underlying type.  The cv-qualification of
559    the type returned matches the type input; they will always be
560    compatible types.  */
561
562 tree
563 canonical_type_variant (tree t)
564 {
565   return cp_build_qualified_type (TYPE_MAIN_VARIANT (t), cp_type_quals (t));
566 }
567 \f
568 /* Makes a copy of BINFO and TYPE, which is to be inherited into a
569    graph dominated by T.  If BINFO is NULL, TYPE is a dependent base,
570    and we do a shallow copy.  If BINFO is non-NULL, we do a deep copy.
571    VIRT indicates whether TYPE is inherited virtually or not.
572    IGO_PREV points at the previous binfo of the inheritance graph
573    order chain.  The newly copied binfo's TREE_CHAIN forms this
574    ordering.
575
576    The CLASSTYPE_VBASECLASSES vector of T is constructed in the
577    correct order. That is in the order the bases themselves should be
578    constructed in.
579
580    The BINFO_INHERITANCE of a virtual base class points to the binfo
581    of the most derived type. ??? We could probably change this so that
582    BINFO_INHERITANCE becomes synonymous with BINFO_PRIMARY, and hence
583    remove a field.  They currently can only differ for primary virtual
584    virtual bases.  */
585
586 tree
587 copy_binfo (tree binfo, tree type, tree t, tree *igo_prev, int virt)
588 {
589   tree new_binfo;
590
591   if (virt)
592     {
593       /* See if we've already made this virtual base.  */
594       new_binfo = binfo_for_vbase (type, t);
595       if (new_binfo)
596         return new_binfo;
597     }
598
599   new_binfo = make_tree_binfo (binfo ? BINFO_N_BASE_BINFOS (binfo) : 0);
600   BINFO_TYPE (new_binfo) = type;
601
602   /* Chain it into the inheritance graph.  */
603   TREE_CHAIN (*igo_prev) = new_binfo;
604   *igo_prev = new_binfo;
605
606   if (binfo)
607     {
608       int ix;
609       tree base_binfo;
610
611       my_friendly_assert (!BINFO_DEPENDENT_BASE_P (binfo), 20040712);
612       my_friendly_assert (type == BINFO_TYPE (binfo), 20040714);
613
614       BINFO_OFFSET (new_binfo) = BINFO_OFFSET (binfo);
615       BINFO_VIRTUALS (new_binfo) = BINFO_VIRTUALS (binfo);
616
617       /* We do not need to copy the accesses, as they are read only.  */
618       BINFO_BASE_ACCESSES (new_binfo) = BINFO_BASE_ACCESSES (binfo);
619
620       /* Recursively copy base binfos of BINFO.  */
621       for (ix = 0; BINFO_BASE_ITERATE (binfo, ix, base_binfo); ix++)
622         {
623           tree new_base_binfo;
624
625           my_friendly_assert (!BINFO_DEPENDENT_BASE_P (base_binfo), 20040713);
626           new_base_binfo = copy_binfo (base_binfo, BINFO_TYPE (base_binfo),
627                                        t, igo_prev,
628                                        BINFO_VIRTUAL_P (base_binfo));
629
630           if (!BINFO_INHERITANCE_CHAIN (new_base_binfo))
631             BINFO_INHERITANCE_CHAIN (new_base_binfo) = new_binfo;
632           BINFO_BASE_APPEND (new_binfo, new_base_binfo);
633         }
634     }
635   else
636     BINFO_DEPENDENT_BASE_P (new_binfo) = 1;
637
638   if (virt)
639     {
640       /* Push it onto the list after any virtual bases it contains
641          will have been pushed.  */
642       VEC_quick_push (tree, CLASSTYPE_VBASECLASSES (t), new_binfo);
643       BINFO_VIRTUAL_P (new_binfo) = 1;
644       BINFO_INHERITANCE_CHAIN (new_binfo) = TYPE_BINFO (t);
645     }
646
647   return new_binfo;
648 }
649 \f
650 /* Hashing of lists so that we don't make duplicates.
651    The entry point is `list_hash_canon'.  */
652
653 /* Now here is the hash table.  When recording a list, it is added
654    to the slot whose index is the hash code mod the table size.
655    Note that the hash table is used for several kinds of lists.
656    While all these live in the same table, they are completely independent,
657    and the hash code is computed differently for each of these.  */
658
659 static GTY ((param_is (union tree_node))) htab_t list_hash_table;
660
661 struct list_proxy
662 {
663   tree purpose;
664   tree value;
665   tree chain;
666 };
667
668 /* Compare ENTRY (an entry in the hash table) with DATA (a list_proxy
669    for a node we are thinking about adding).  */
670
671 static int
672 list_hash_eq (const void* entry, const void* data)
673 {
674   tree t = (tree) entry;
675   struct list_proxy *proxy = (struct list_proxy *) data;
676
677   return (TREE_VALUE (t) == proxy->value
678           && TREE_PURPOSE (t) == proxy->purpose
679           && TREE_CHAIN (t) == proxy->chain);
680 }
681
682 /* Compute a hash code for a list (chain of TREE_LIST nodes
683    with goodies in the TREE_PURPOSE, TREE_VALUE, and bits of the
684    TREE_COMMON slots), by adding the hash codes of the individual entries.  */
685
686 static hashval_t
687 list_hash_pieces (tree purpose, tree value, tree chain)
688 {
689   hashval_t hashcode = 0;
690
691   if (chain)
692     hashcode += TREE_HASH (chain);
693
694   if (value)
695     hashcode += TREE_HASH (value);
696   else
697     hashcode += 1007;
698   if (purpose)
699     hashcode += TREE_HASH (purpose);
700   else
701     hashcode += 1009;
702   return hashcode;
703 }
704
705 /* Hash an already existing TREE_LIST.  */
706
707 static hashval_t
708 list_hash (const void* p)
709 {
710   tree t = (tree) p;
711   return list_hash_pieces (TREE_PURPOSE (t),
712                            TREE_VALUE (t),
713                            TREE_CHAIN (t));
714 }
715
716 /* Given list components PURPOSE, VALUE, AND CHAIN, return the canonical
717    object for an identical list if one already exists.  Otherwise, build a
718    new one, and record it as the canonical object.  */
719
720 tree
721 hash_tree_cons (tree purpose, tree value, tree chain)
722 {
723   int hashcode = 0;
724   void **slot;
725   struct list_proxy proxy;
726
727   /* Hash the list node.  */
728   hashcode = list_hash_pieces (purpose, value, chain);
729   /* Create a proxy for the TREE_LIST we would like to create.  We
730      don't actually create it so as to avoid creating garbage.  */
731   proxy.purpose = purpose;
732   proxy.value = value;
733   proxy.chain = chain;
734   /* See if it is already in the table.  */
735   slot = htab_find_slot_with_hash (list_hash_table, &proxy, hashcode,
736                                    INSERT);
737   /* If not, create a new node.  */
738   if (!*slot)
739     *slot = tree_cons (purpose, value, chain);
740   return *slot;
741 }
742
743 /* Constructor for hashed lists.  */
744
745 tree
746 hash_tree_chain (tree value, tree chain)
747 {
748   return hash_tree_cons (NULL_TREE, value, chain);
749 }
750
751 /* Similar, but used for concatenating two lists.  */
752
753 tree
754 hash_chainon (tree list1, tree list2)
755 {
756   if (list2 == 0)
757     return list1;
758   if (list1 == 0)
759     return list2;
760   if (TREE_CHAIN (list1) == NULL_TREE)
761     return hash_tree_chain (TREE_VALUE (list1), list2);
762   return hash_tree_chain (TREE_VALUE (list1),
763                           hash_chainon (TREE_CHAIN (list1), list2));
764 }
765 \f
766 void
767 debug_binfo (tree elem)
768 {
769   HOST_WIDE_INT n;
770   tree virtuals;
771
772   fprintf (stderr, "type \"%s\", offset = " HOST_WIDE_INT_PRINT_DEC
773            "\nvtable type:\n",
774            TYPE_NAME_STRING (BINFO_TYPE (elem)),
775            TREE_INT_CST_LOW (BINFO_OFFSET (elem)));
776   debug_tree (BINFO_TYPE (elem));
777   if (BINFO_VTABLE (elem))
778     fprintf (stderr, "vtable decl \"%s\"\n",
779              IDENTIFIER_POINTER (DECL_NAME (get_vtbl_decl_for_binfo (elem))));
780   else
781     fprintf (stderr, "no vtable decl yet\n");
782   fprintf (stderr, "virtuals:\n");
783   virtuals = BINFO_VIRTUALS (elem);
784   n = 0;
785
786   while (virtuals)
787     {
788       tree fndecl = TREE_VALUE (virtuals);
789       fprintf (stderr, "%s [%ld =? %ld]\n",
790                IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fndecl)),
791                (long) n, (long) TREE_INT_CST_LOW (DECL_VINDEX (fndecl)));
792       ++n;
793       virtuals = TREE_CHAIN (virtuals);
794     }
795 }
796
797 int
798 count_functions (tree t)
799 {
800   int i;
801   if (TREE_CODE (t) == FUNCTION_DECL)
802     return 1;
803   else if (TREE_CODE (t) == OVERLOAD)
804     {
805       for (i = 0; t; t = OVL_CHAIN (t))
806         i++;
807       return i;
808     }
809
810   abort ();
811   return 0;
812 }
813
814 int
815 is_overloaded_fn (tree x)
816 {
817   /* A baselink is also considered an overloaded function.  */
818   if (TREE_CODE (x) == OFFSET_REF)
819     x = TREE_OPERAND (x, 1);
820   if (BASELINK_P (x))
821     x = BASELINK_FUNCTIONS (x);
822   return (TREE_CODE (x) == FUNCTION_DECL
823           || TREE_CODE (x) == TEMPLATE_ID_EXPR
824           || DECL_FUNCTION_TEMPLATE_P (x)
825           || TREE_CODE (x) == OVERLOAD);
826 }
827
828 int
829 really_overloaded_fn (tree x)
830 {
831   /* A baselink is also considered an overloaded function.  */
832   if (TREE_CODE (x) == OFFSET_REF)
833     x = TREE_OPERAND (x, 1);
834   if (BASELINK_P (x))
835     x = BASELINK_FUNCTIONS (x);
836
837   return ((TREE_CODE (x) == OVERLOAD && OVL_CHAIN (x))
838           || DECL_FUNCTION_TEMPLATE_P (OVL_CURRENT (x))
839           || TREE_CODE (x) == TEMPLATE_ID_EXPR);
840 }
841
842 tree
843 get_first_fn (tree from)
844 {
845   my_friendly_assert (is_overloaded_fn (from), 9);
846   /* A baselink is also considered an overloaded function.  */
847   if (BASELINK_P (from))
848     from = BASELINK_FUNCTIONS (from);
849   return OVL_CURRENT (from);
850 }
851
852 /* Returns nonzero if T is a ->* or .* expression that refers to a
853    member function.  */
854
855 int
856 bound_pmf_p (tree t)
857 {
858   return (TREE_CODE (t) == OFFSET_REF
859           && TYPE_PTRMEMFUNC_P (TREE_TYPE (TREE_OPERAND (t, 1))));
860 }
861
862 /* Return a new OVL node, concatenating it with the old one.  */
863
864 tree
865 ovl_cons (tree decl, tree chain)
866 {
867   tree result = make_node (OVERLOAD);
868   TREE_TYPE (result) = unknown_type_node;
869   OVL_FUNCTION (result) = decl;
870   TREE_CHAIN (result) = chain;
871
872   return result;
873 }
874
875 /* Build a new overloaded function. If this is the first one,
876    just return it; otherwise, ovl_cons the _DECLs */
877
878 tree
879 build_overload (tree decl, tree chain)
880 {
881   if (! chain && TREE_CODE (decl) != TEMPLATE_DECL)
882     return decl;
883   if (chain && TREE_CODE (chain) != OVERLOAD)
884     chain = ovl_cons (chain, NULL_TREE);
885   return ovl_cons (decl, chain);
886 }
887
888 \f
889 #define PRINT_RING_SIZE 4
890
891 const char *
892 cxx_printable_name (tree decl, int v)
893 {
894   static tree decl_ring[PRINT_RING_SIZE];
895   static char *print_ring[PRINT_RING_SIZE];
896   static int ring_counter;
897   int i;
898
899   /* Only cache functions.  */
900   if (v < 2
901       || TREE_CODE (decl) != FUNCTION_DECL
902       || DECL_LANG_SPECIFIC (decl) == 0)
903     return lang_decl_name (decl, v);
904
905   /* See if this print name is lying around.  */
906   for (i = 0; i < PRINT_RING_SIZE; i++)
907     if (decl_ring[i] == decl)
908       /* yes, so return it.  */
909       return print_ring[i];
910
911   if (++ring_counter == PRINT_RING_SIZE)
912     ring_counter = 0;
913
914   if (current_function_decl != NULL_TREE)
915     {
916       if (decl_ring[ring_counter] == current_function_decl)
917         ring_counter += 1;
918       if (ring_counter == PRINT_RING_SIZE)
919         ring_counter = 0;
920       if (decl_ring[ring_counter] == current_function_decl)
921         abort ();
922     }
923
924   if (print_ring[ring_counter])
925     free (print_ring[ring_counter]);
926
927   print_ring[ring_counter] = xstrdup (lang_decl_name (decl, v));
928   decl_ring[ring_counter] = decl;
929   return print_ring[ring_counter];
930 }
931 \f
932 /* Build the FUNCTION_TYPE or METHOD_TYPE which may throw exceptions
933    listed in RAISES.  */
934
935 tree
936 build_exception_variant (tree type, tree raises)
937 {
938   tree v = TYPE_MAIN_VARIANT (type);
939   int type_quals = TYPE_QUALS (type);
940
941   for (; v; v = TYPE_NEXT_VARIANT (v))
942     if (check_qualified_type (v, type, type_quals)
943         && comp_except_specs (raises, TYPE_RAISES_EXCEPTIONS (v), 1))
944       return v;
945
946   /* Need to build a new variant.  */
947   v = build_type_copy (type);
948   TYPE_RAISES_EXCEPTIONS (v) = raises;
949   return v;
950 }
951
952 /* Given a TEMPLATE_TEMPLATE_PARM node T, create a new
953    BOUND_TEMPLATE_TEMPLATE_PARM bound with NEWARGS as its template
954    arguments.  */
955
956 tree
957 bind_template_template_parm (tree t, tree newargs)
958 {
959   tree decl = TYPE_NAME (t);
960   tree t2;
961
962   t2 = make_aggr_type (BOUND_TEMPLATE_TEMPLATE_PARM);
963   decl = build_decl (TYPE_DECL, DECL_NAME (decl), NULL_TREE);
964
965   /* These nodes have to be created to reflect new TYPE_DECL and template
966      arguments.  */
967   TEMPLATE_TYPE_PARM_INDEX (t2) = copy_node (TEMPLATE_TYPE_PARM_INDEX (t));
968   TEMPLATE_PARM_DECL (TEMPLATE_TYPE_PARM_INDEX (t2)) = decl;
969   TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t2)
970     = tree_cons (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (t),
971                  newargs, NULL_TREE);
972
973   TREE_TYPE (decl) = t2;
974   TYPE_NAME (t2) = decl;
975   TYPE_STUB_DECL (t2) = decl;
976   TYPE_SIZE (t2) = 0;
977
978   return t2;
979 }
980
981 /* Called from count_trees via walk_tree.  */
982
983 static tree
984 count_trees_r (tree *tp, int *walk_subtrees, void *data)
985 {
986   ++*((int *) data);
987
988   if (TYPE_P (*tp))
989     *walk_subtrees = 0;
990
991   return NULL_TREE;
992 }
993
994 /* Debugging function for measuring the rough complexity of a tree
995    representation.  */
996
997 int
998 count_trees (tree t)
999 {
1000   int n_trees = 0;
1001   walk_tree_without_duplicates (&t, count_trees_r, &n_trees);
1002   return n_trees;
1003 }
1004
1005 /* Called from verify_stmt_tree via walk_tree.  */
1006
1007 static tree
1008 verify_stmt_tree_r (tree* tp,
1009                     int* walk_subtrees ATTRIBUTE_UNUSED ,
1010                     void* data)
1011 {
1012   tree t = *tp;
1013   htab_t *statements = (htab_t *) data;
1014   void **slot;
1015
1016   if (!STATEMENT_CODE_P (TREE_CODE (t)))
1017     return NULL_TREE;
1018
1019   /* If this statement is already present in the hash table, then
1020      there is a circularity in the statement tree.  */
1021   if (htab_find (*statements, t))
1022     abort ();
1023
1024   slot = htab_find_slot (*statements, t, INSERT);
1025   *slot = t;
1026
1027   return NULL_TREE;
1028 }
1029
1030 /* Debugging function to check that the statement T has not been
1031    corrupted.  For now, this function simply checks that T contains no
1032    circularities.  */
1033
1034 void
1035 verify_stmt_tree (tree t)
1036 {
1037   htab_t statements;
1038   statements = htab_create (37, htab_hash_pointer, htab_eq_pointer, NULL);
1039   walk_tree (&t, verify_stmt_tree_r, &statements, NULL);
1040   htab_delete (statements);
1041 }
1042
1043 /* Called from find_tree via walk_tree.  */
1044
1045 static tree
1046 find_tree_r (tree* tp,
1047              int* walk_subtrees ATTRIBUTE_UNUSED ,
1048              void* data)
1049 {
1050   if (*tp == (tree) data)
1051     return (tree) data;
1052
1053   return NULL_TREE;
1054 }
1055
1056 /* Returns X if X appears in the tree structure rooted at T.  */
1057
1058 tree
1059 find_tree (tree t, tree x)
1060 {
1061   return walk_tree_without_duplicates (&t, find_tree_r, x);
1062 }
1063
1064 /* Check if the type T depends on a type with no linkage and if so, return
1065    it.  If RELAXED_P then do not consider a class type declared within
1066    a TREE_PUBLIC function to have no linkage.  */
1067
1068 tree
1069 no_linkage_check (tree t, bool relaxed_p)
1070 {
1071   tree r;
1072
1073   /* There's no point in checking linkage on template functions; we
1074      can't know their complete types.  */
1075   if (processing_template_decl)
1076     return NULL_TREE;
1077
1078   switch (TREE_CODE (t))
1079     {
1080       tree fn;
1081
1082     case RECORD_TYPE:
1083       if (TYPE_PTRMEMFUNC_P (t))
1084         goto ptrmem;
1085       /* Fall through.  */
1086     case UNION_TYPE:
1087       if (!CLASS_TYPE_P (t))
1088         return NULL_TREE;
1089       /* Fall through.  */
1090     case ENUMERAL_TYPE:
1091       if (TYPE_ANONYMOUS_P (t))
1092         return t;
1093       fn = decl_function_context (TYPE_MAIN_DECL (t));
1094       if (fn && (!relaxed_p || !TREE_PUBLIC (fn)))
1095         return t;
1096       return NULL_TREE;
1097
1098     case ARRAY_TYPE:
1099     case POINTER_TYPE:
1100     case REFERENCE_TYPE:
1101       return no_linkage_check (TREE_TYPE (t), relaxed_p);
1102
1103     case OFFSET_TYPE:
1104     ptrmem:
1105       r = no_linkage_check (TYPE_PTRMEM_POINTED_TO_TYPE (t),
1106                             relaxed_p);
1107       if (r)
1108         return r;
1109       return no_linkage_check (TYPE_PTRMEM_CLASS_TYPE (t), relaxed_p);
1110
1111     case METHOD_TYPE:
1112       r = no_linkage_check (TYPE_METHOD_BASETYPE (t), relaxed_p);
1113       if (r)
1114         return r;
1115       /* Fall through.  */
1116     case FUNCTION_TYPE:
1117       {
1118         tree parm;
1119         for (parm = TYPE_ARG_TYPES (t);
1120              parm && parm != void_list_node;
1121              parm = TREE_CHAIN (parm))
1122           {
1123             r = no_linkage_check (TREE_VALUE (parm), relaxed_p);
1124             if (r)
1125               return r;
1126           }
1127         return no_linkage_check (TREE_TYPE (t), relaxed_p);
1128       }
1129
1130     default:
1131       return NULL_TREE;
1132     }
1133 }
1134
1135 #ifdef GATHER_STATISTICS
1136 extern int depth_reached;
1137 #endif
1138
1139 void
1140 cxx_print_statistics (void)
1141 {
1142   print_search_statistics ();
1143   print_class_statistics ();
1144 #ifdef GATHER_STATISTICS
1145   fprintf (stderr, "maximum template instantiation depth reached: %d\n",
1146            depth_reached);
1147 #endif
1148 }
1149
1150 /* Return, as an INTEGER_CST node, the number of elements for TYPE
1151    (which is an ARRAY_TYPE).  This counts only elements of the top
1152    array.  */
1153
1154 tree
1155 array_type_nelts_top (tree type)
1156 {
1157   return fold (build2 (PLUS_EXPR, sizetype,
1158                        array_type_nelts (type),
1159                        integer_one_node));
1160 }
1161
1162 /* Return, as an INTEGER_CST node, the number of elements for TYPE
1163    (which is an ARRAY_TYPE).  This one is a recursive count of all
1164    ARRAY_TYPEs that are clumped together.  */
1165
1166 tree
1167 array_type_nelts_total (tree type)
1168 {
1169   tree sz = array_type_nelts_top (type);
1170   type = TREE_TYPE (type);
1171   while (TREE_CODE (type) == ARRAY_TYPE)
1172     {
1173       tree n = array_type_nelts_top (type);
1174       sz = fold (build2 (MULT_EXPR, sizetype, sz, n));
1175       type = TREE_TYPE (type);
1176     }
1177   return sz;
1178 }
1179
1180 /* Called from break_out_target_exprs via mapcar.  */
1181
1182 static tree
1183 bot_manip (tree* tp, int* walk_subtrees, void* data)
1184 {
1185   splay_tree target_remap = ((splay_tree) data);
1186   tree t = *tp;
1187
1188   if (!TYPE_P (t) && TREE_CONSTANT (t))
1189     {
1190       /* There can't be any TARGET_EXPRs or their slot variables below
1191          this point.  We used to check !TREE_SIDE_EFFECTS, but then we
1192          failed to copy an ADDR_EXPR of the slot VAR_DECL.  */
1193       *walk_subtrees = 0;
1194       return NULL_TREE;
1195     }
1196   if (TREE_CODE (t) == TARGET_EXPR)
1197     {
1198       tree u;
1199
1200       if (TREE_CODE (TREE_OPERAND (t, 1)) == AGGR_INIT_EXPR)
1201         {
1202           mark_used (TREE_OPERAND (TREE_OPERAND (TREE_OPERAND (t, 1), 0), 0));
1203           u = build_cplus_new
1204             (TREE_TYPE (t), break_out_target_exprs (TREE_OPERAND (t, 1)));
1205         }
1206       else
1207         {
1208           u = build_target_expr_with_type
1209             (break_out_target_exprs (TREE_OPERAND (t, 1)), TREE_TYPE (t));
1210         }
1211
1212       /* Map the old variable to the new one.  */
1213       splay_tree_insert (target_remap,
1214                          (splay_tree_key) TREE_OPERAND (t, 0),
1215                          (splay_tree_value) TREE_OPERAND (u, 0));
1216
1217       /* Replace the old expression with the new version.  */
1218       *tp = u;
1219       /* We don't have to go below this point; the recursive call to
1220          break_out_target_exprs will have handled anything below this
1221          point.  */
1222       *walk_subtrees = 0;
1223       return NULL_TREE;
1224     }
1225   else if (TREE_CODE (t) == CALL_EXPR)
1226     mark_used (TREE_OPERAND (TREE_OPERAND (t, 0), 0));
1227
1228   /* Make a copy of this node.  */
1229   return copy_tree_r (tp, walk_subtrees, NULL);
1230 }
1231
1232 /* Replace all remapped VAR_DECLs in T with their new equivalents.
1233    DATA is really a splay-tree mapping old variables to new
1234    variables.  */
1235
1236 static tree
1237 bot_replace (tree* t,
1238              int* walk_subtrees ATTRIBUTE_UNUSED ,
1239              void* data)
1240 {
1241   splay_tree target_remap = ((splay_tree) data);
1242
1243   if (TREE_CODE (*t) == VAR_DECL)
1244     {
1245       splay_tree_node n = splay_tree_lookup (target_remap,
1246                                              (splay_tree_key) *t);
1247       if (n)
1248         *t = (tree) n->value;
1249     }
1250
1251   return NULL_TREE;
1252 }
1253
1254 /* When we parse a default argument expression, we may create
1255    temporary variables via TARGET_EXPRs.  When we actually use the
1256    default-argument expression, we make a copy of the expression, but
1257    we must replace the temporaries with appropriate local versions.  */
1258
1259 tree
1260 break_out_target_exprs (tree t)
1261 {
1262   static int target_remap_count;
1263   static splay_tree target_remap;
1264
1265   if (!target_remap_count++)
1266     target_remap = splay_tree_new (splay_tree_compare_pointers,
1267                                    /*splay_tree_delete_key_fn=*/NULL,
1268                                    /*splay_tree_delete_value_fn=*/NULL);
1269   walk_tree (&t, bot_manip, target_remap, NULL);
1270   walk_tree (&t, bot_replace, target_remap, NULL);
1271
1272   if (!--target_remap_count)
1273     {
1274       splay_tree_delete (target_remap);
1275       target_remap = NULL;
1276     }
1277
1278   return t;
1279 }
1280
1281 /* Similar to `build_nt', but for template definitions of dependent
1282    expressions  */
1283
1284 tree
1285 build_min_nt (enum tree_code code, ...)
1286 {
1287   tree t;
1288   int length;
1289   int i;
1290   va_list p;
1291
1292   va_start (p, code);
1293
1294   t = make_node (code);
1295   length = TREE_CODE_LENGTH (code);
1296
1297   for (i = 0; i < length; i++)
1298     {
1299       tree x = va_arg (p, tree);
1300       TREE_OPERAND (t, i) = x;
1301     }
1302
1303   va_end (p);
1304   return t;
1305 }
1306
1307 /* Similar to `build', but for template definitions.  */
1308
1309 tree
1310 build_min (enum tree_code code, tree tt, ...)
1311 {
1312   tree t;
1313   int length;
1314   int i;
1315   va_list p;
1316
1317   va_start (p, tt);
1318
1319   t = make_node (code);
1320   length = TREE_CODE_LENGTH (code);
1321   TREE_TYPE (t) = tt;
1322
1323   for (i = 0; i < length; i++)
1324     {
1325       tree x = va_arg (p, tree);
1326       TREE_OPERAND (t, i) = x;
1327       if (x && !TYPE_P (x) && TREE_SIDE_EFFECTS (x))
1328         TREE_SIDE_EFFECTS (t) = 1;
1329     }
1330
1331   va_end (p);
1332   return t;
1333 }
1334
1335 /* Similar to `build', but for template definitions of non-dependent
1336    expressions. NON_DEP is the non-dependent expression that has been
1337    built.  */
1338
1339 tree
1340 build_min_non_dep (enum tree_code code, tree non_dep, ...)
1341 {
1342   tree t;
1343   int length;
1344   int i;
1345   va_list p;
1346
1347   va_start (p, non_dep);
1348
1349   t = make_node (code);
1350   length = TREE_CODE_LENGTH (code);
1351   TREE_TYPE (t) = TREE_TYPE (non_dep);
1352   TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (non_dep);
1353
1354   for (i = 0; i < length; i++)
1355     {
1356       tree x = va_arg (p, tree);
1357       TREE_OPERAND (t, i) = x;
1358     }
1359
1360   if (code == COMPOUND_EXPR && TREE_CODE (non_dep) != COMPOUND_EXPR)
1361     /* This should not be considered a COMPOUND_EXPR, because it
1362        resolves to an overload.  */
1363     COMPOUND_EXPR_OVERLOADED (t) = 1;
1364
1365   va_end (p);
1366   return t;
1367 }
1368
1369 tree
1370 get_type_decl (tree t)
1371 {
1372   if (TREE_CODE (t) == TYPE_DECL)
1373     return t;
1374   if (TYPE_P (t))
1375     return TYPE_STUB_DECL (t);
1376   if (t == error_mark_node)
1377     return t;
1378
1379   abort ();
1380
1381   /* Stop compiler from complaining control reaches end of non-void function.  */
1382   return 0;
1383 }
1384
1385 /* Returns the namespace that contains DECL, whether directly or
1386    indirectly.  */
1387
1388 tree
1389 decl_namespace_context (tree decl)
1390 {
1391   while (1)
1392     {
1393       if (TREE_CODE (decl) == NAMESPACE_DECL)
1394         return decl;
1395       else if (TYPE_P (decl))
1396         decl = CP_DECL_CONTEXT (TYPE_MAIN_DECL (decl));
1397       else
1398         decl = CP_DECL_CONTEXT (decl);
1399     }
1400 }
1401
1402 /* Return truthvalue of whether T1 is the same tree structure as T2.
1403    Return 1 if they are the same. Return 0 if they are different.  */
1404
1405 bool
1406 cp_tree_equal (tree t1, tree t2)
1407 {
1408   enum tree_code code1, code2;
1409
1410   if (t1 == t2)
1411     return true;
1412   if (!t1 || !t2)
1413     return false;
1414
1415   for (code1 = TREE_CODE (t1);
1416        code1 == NOP_EXPR || code1 == CONVERT_EXPR
1417          || code1 == NON_LVALUE_EXPR;
1418        code1 = TREE_CODE (t1))
1419     t1 = TREE_OPERAND (t1, 0);
1420   for (code2 = TREE_CODE (t2);
1421        code2 == NOP_EXPR || code2 == CONVERT_EXPR
1422          || code1 == NON_LVALUE_EXPR;
1423        code2 = TREE_CODE (t2))
1424     t2 = TREE_OPERAND (t2, 0);
1425
1426   /* They might have become equal now.  */
1427   if (t1 == t2)
1428     return true;
1429
1430   if (code1 != code2)
1431     return false;
1432
1433   switch (code1)
1434     {
1435     case INTEGER_CST:
1436       return TREE_INT_CST_LOW (t1) == TREE_INT_CST_LOW (t2)
1437         && TREE_INT_CST_HIGH (t1) == TREE_INT_CST_HIGH (t2);
1438
1439     case REAL_CST:
1440       return REAL_VALUES_EQUAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
1441
1442     case STRING_CST:
1443       return TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
1444         && !memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
1445                     TREE_STRING_LENGTH (t1));
1446
1447     case CONSTRUCTOR:
1448       /* We need to do this when determining whether or not two
1449          non-type pointer to member function template arguments
1450          are the same.  */
1451       if (!(same_type_p (TREE_TYPE (t1), TREE_TYPE (t2))
1452             /* The first operand is RTL.  */
1453             && TREE_OPERAND (t1, 0) == TREE_OPERAND (t2, 0)))
1454         return false;
1455       return cp_tree_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
1456
1457     case TREE_LIST:
1458       if (!cp_tree_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2)))
1459         return false;
1460       if (!cp_tree_equal (TREE_VALUE (t1), TREE_VALUE (t2)))
1461         return false;
1462       return cp_tree_equal (TREE_CHAIN (t1), TREE_CHAIN (t2));
1463
1464     case SAVE_EXPR:
1465       return cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
1466
1467     case CALL_EXPR:
1468       if (!cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0)))
1469         return false;
1470       return cp_tree_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
1471
1472     case TARGET_EXPR:
1473       {
1474         tree o1 = TREE_OPERAND (t1, 0);
1475         tree o2 = TREE_OPERAND (t2, 0);
1476
1477         /* Special case: if either target is an unallocated VAR_DECL,
1478            it means that it's going to be unified with whatever the
1479            TARGET_EXPR is really supposed to initialize, so treat it
1480            as being equivalent to anything.  */
1481         if (TREE_CODE (o1) == VAR_DECL && DECL_NAME (o1) == NULL_TREE
1482             && !DECL_RTL_SET_P (o1))
1483           /*Nop*/;
1484         else if (TREE_CODE (o2) == VAR_DECL && DECL_NAME (o2) == NULL_TREE
1485                  && !DECL_RTL_SET_P (o2))
1486           /*Nop*/;
1487         else if (!cp_tree_equal (o1, o2))
1488           return false;
1489
1490         return cp_tree_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
1491       }
1492
1493     case WITH_CLEANUP_EXPR:
1494       if (!cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0)))
1495         return false;
1496       return cp_tree_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t1, 1));
1497
1498     case COMPONENT_REF:
1499       if (TREE_OPERAND (t1, 1) != TREE_OPERAND (t2, 1))
1500         return false;
1501       return cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
1502
1503     case VAR_DECL:
1504     case PARM_DECL:
1505     case CONST_DECL:
1506     case FUNCTION_DECL:
1507     case TEMPLATE_DECL:
1508     case IDENTIFIER_NODE:
1509       return false;
1510
1511     case TEMPLATE_PARM_INDEX:
1512       return (TEMPLATE_PARM_IDX (t1) == TEMPLATE_PARM_IDX (t2)
1513               && TEMPLATE_PARM_LEVEL (t1) == TEMPLATE_PARM_LEVEL (t2)
1514               && same_type_p (TREE_TYPE (TEMPLATE_PARM_DECL (t1)),
1515                               TREE_TYPE (TEMPLATE_PARM_DECL (t2))));
1516
1517     case TEMPLATE_ID_EXPR:
1518       {
1519         unsigned ix;
1520         tree vec1, vec2;
1521
1522         if (!cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0)))
1523           return false;
1524         vec1 = TREE_OPERAND (t1, 1);
1525         vec2 = TREE_OPERAND (t2, 1);
1526
1527         if (!vec1 || !vec2)
1528           return !vec1 && !vec2;
1529
1530         if (TREE_VEC_LENGTH (vec1) != TREE_VEC_LENGTH (vec2))
1531           return false;
1532
1533         for (ix = TREE_VEC_LENGTH (vec1); ix--;)
1534           if (!cp_tree_equal (TREE_VEC_ELT (vec1, ix),
1535                               TREE_VEC_ELT (vec2, ix)))
1536             return false;
1537
1538         return true;
1539       }
1540
1541     case SIZEOF_EXPR:
1542     case ALIGNOF_EXPR:
1543       {
1544         tree o1 = TREE_OPERAND (t1, 0);
1545         tree o2 = TREE_OPERAND (t2, 0);
1546
1547         if (TREE_CODE (o1) != TREE_CODE (o2))
1548           return false;
1549         if (TYPE_P (o1))
1550           return same_type_p (o1, o2);
1551         else
1552           return cp_tree_equal (o1, o2);
1553       }
1554
1555     case PTRMEM_CST:
1556       /* Two pointer-to-members are the same if they point to the same
1557          field or function in the same class.  */
1558       if (PTRMEM_CST_MEMBER (t1) != PTRMEM_CST_MEMBER (t2))
1559         return false;
1560
1561       return same_type_p (PTRMEM_CST_CLASS (t1), PTRMEM_CST_CLASS (t2));
1562
1563     default:
1564       break;
1565     }
1566
1567   switch (TREE_CODE_CLASS (code1))
1568     {
1569     case '1':
1570     case '2':
1571     case '<':
1572     case 'e':
1573     case 'r':
1574     case 's':
1575       {
1576         int i;
1577
1578         for (i = 0; i < TREE_CODE_LENGTH (code1); ++i)
1579           if (!cp_tree_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i)))
1580             return false;
1581
1582         return true;
1583       }
1584
1585     case 't':
1586       return same_type_p (t1, t2);
1587     }
1588
1589   my_friendly_assert (0, 20030617);
1590   return false;
1591 }
1592
1593 /* The type of ARG when used as an lvalue.  */
1594
1595 tree
1596 lvalue_type (tree arg)
1597 {
1598   tree type = TREE_TYPE (arg);
1599   return type;
1600 }
1601
1602 /* The type of ARG for printing error messages; denote lvalues with
1603    reference types.  */
1604
1605 tree
1606 error_type (tree arg)
1607 {
1608   tree type = TREE_TYPE (arg);
1609
1610   if (TREE_CODE (type) == ARRAY_TYPE)
1611     ;
1612   else if (TREE_CODE (type) == ERROR_MARK)
1613     ;
1614   else if (real_lvalue_p (arg))
1615     type = build_reference_type (lvalue_type (arg));
1616   else if (IS_AGGR_TYPE (type))
1617     type = lvalue_type (arg);
1618
1619   return type;
1620 }
1621
1622 /* Does FUNCTION use a variable-length argument list?  */
1623
1624 int
1625 varargs_function_p (tree function)
1626 {
1627   tree parm = TYPE_ARG_TYPES (TREE_TYPE (function));
1628   for (; parm; parm = TREE_CHAIN (parm))
1629     if (TREE_VALUE (parm) == void_type_node)
1630       return 0;
1631   return 1;
1632 }
1633
1634 /* Returns 1 if decl is a member of a class.  */
1635
1636 int
1637 member_p (tree decl)
1638 {
1639   const tree ctx = DECL_CONTEXT (decl);
1640   return (ctx && TYPE_P (ctx));
1641 }
1642
1643 /* Create a placeholder for member access where we don't actually have an
1644    object that the access is against.  */
1645
1646 tree
1647 build_dummy_object (tree type)
1648 {
1649   tree decl = build1 (NOP_EXPR, build_pointer_type (type), void_zero_node);
1650   return build_indirect_ref (decl, NULL);
1651 }
1652
1653 /* We've gotten a reference to a member of TYPE.  Return *this if appropriate,
1654    or a dummy object otherwise.  If BINFOP is non-0, it is filled with the
1655    binfo path from current_class_type to TYPE, or 0.  */
1656
1657 tree
1658 maybe_dummy_object (tree type, tree* binfop)
1659 {
1660   tree decl, context;
1661   tree binfo;
1662
1663   if (current_class_type
1664       && (binfo = lookup_base (current_class_type, type,
1665                                ba_ignore | ba_quiet, NULL)))
1666     context = current_class_type;
1667   else
1668     {
1669       /* Reference from a nested class member function.  */
1670       context = type;
1671       binfo = TYPE_BINFO (type);
1672     }
1673
1674   if (binfop)
1675     *binfop = binfo;
1676
1677   if (current_class_ref && context == current_class_type
1678       /* Kludge: Make sure that current_class_type is actually
1679          correct.  It might not be if we're in the middle of
1680          tsubst_default_argument.  */
1681       && same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (current_class_ref)),
1682                       current_class_type))
1683     decl = current_class_ref;
1684   else
1685     decl = build_dummy_object (context);
1686
1687   return decl;
1688 }
1689
1690 /* Returns 1 if OB is a placeholder object, or a pointer to one.  */
1691
1692 int
1693 is_dummy_object (tree ob)
1694 {
1695   if (TREE_CODE (ob) == INDIRECT_REF)
1696     ob = TREE_OPERAND (ob, 0);
1697   return (TREE_CODE (ob) == NOP_EXPR
1698           && TREE_OPERAND (ob, 0) == void_zero_node);
1699 }
1700
1701 /* Returns 1 iff type T is a POD type, as defined in [basic.types].  */
1702
1703 int
1704 pod_type_p (tree t)
1705 {
1706   t = strip_array_types (t);
1707
1708   if (t == error_mark_node)
1709     return 1;
1710   if (INTEGRAL_TYPE_P (t))
1711     return 1;  /* integral, character or enumeral type */
1712   if (FLOAT_TYPE_P (t))
1713     return 1;
1714   if (TYPE_PTR_P (t))
1715     return 1; /* pointer to non-member */
1716   if (TYPE_PTR_TO_MEMBER_P (t))
1717     return 1; /* pointer to member */
1718
1719   if (TREE_CODE (t) == VECTOR_TYPE)
1720     return 1; /* vectors are (small) arrays if scalars */
1721
1722   if (! CLASS_TYPE_P (t))
1723     return 0; /* other non-class type (reference or function) */
1724   if (CLASSTYPE_NON_POD_P (t))
1725     return 0;
1726   return 1;
1727 }
1728
1729 /* Returns 1 iff zero initialization of type T means actually storing
1730    zeros in it.  */
1731
1732 int
1733 zero_init_p (tree t)
1734 {
1735   t = strip_array_types (t);
1736
1737   if (t == error_mark_node)
1738     return 1;
1739
1740   /* NULL pointers to data members are initialized with -1.  */
1741   if (TYPE_PTRMEM_P (t))
1742     return 0;
1743
1744   /* Classes that contain types that can't be zero-initialized, cannot
1745      be zero-initialized themselves.  */
1746   if (CLASS_TYPE_P (t) && CLASSTYPE_NON_ZERO_INIT_P (t))
1747     return 0;
1748
1749   return 1;
1750 }
1751
1752 /* Table of valid C++ attributes.  */
1753 const struct attribute_spec cxx_attribute_table[] =
1754 {
1755   /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler } */
1756   { "java_interface", 0, 0, false, false, false, handle_java_interface_attribute },
1757   { "com_interface",  0, 0, false, false, false, handle_com_interface_attribute },
1758   { "init_priority",  1, 1, true,  false, false, handle_init_priority_attribute },
1759   { NULL,             0, 0, false, false, false, NULL }
1760 };
1761
1762 /* Handle a "java_interface" attribute; arguments as in
1763    struct attribute_spec.handler.  */
1764 static tree
1765 handle_java_interface_attribute (tree* node,
1766                                  tree name,
1767                                  tree args ATTRIBUTE_UNUSED ,
1768                                  int flags,
1769                                  bool* no_add_attrs)
1770 {
1771   if (DECL_P (*node)
1772       || !CLASS_TYPE_P (*node)
1773       || !TYPE_FOR_JAVA (*node))
1774     {
1775       error ("`%E' attribute can only be applied to Java class definitions",
1776              name);
1777       *no_add_attrs = true;
1778       return NULL_TREE;
1779     }
1780   if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
1781     *node = build_type_copy (*node);
1782   TYPE_JAVA_INTERFACE (*node) = 1;
1783
1784   return NULL_TREE;
1785 }
1786
1787 /* Handle a "com_interface" attribute; arguments as in
1788    struct attribute_spec.handler.  */
1789 static tree
1790 handle_com_interface_attribute (tree* node,
1791                                 tree name,
1792                                 tree args ATTRIBUTE_UNUSED ,
1793                                 int flags ATTRIBUTE_UNUSED ,
1794                                 bool* no_add_attrs)
1795 {
1796   static int warned;
1797
1798   *no_add_attrs = true;
1799
1800   if (DECL_P (*node)
1801       || !CLASS_TYPE_P (*node)
1802       || *node != TYPE_MAIN_VARIANT (*node))
1803     {
1804       warning ("`%E' attribute can only be applied to class definitions",
1805                name);
1806       return NULL_TREE;
1807     }
1808
1809   if (!warned++)
1810     warning ("`%E' is obsolete; g++ vtables are now COM-compatible by default",
1811              name);
1812
1813   return NULL_TREE;
1814 }
1815
1816 /* Handle an "init_priority" attribute; arguments as in
1817    struct attribute_spec.handler.  */
1818 static tree
1819 handle_init_priority_attribute (tree* node,
1820                                 tree name,
1821                                 tree args,
1822                                 int flags ATTRIBUTE_UNUSED ,
1823                                 bool* no_add_attrs)
1824 {
1825   tree initp_expr = TREE_VALUE (args);
1826   tree decl = *node;
1827   tree type = TREE_TYPE (decl);
1828   int pri;
1829
1830   STRIP_NOPS (initp_expr);
1831
1832   if (!initp_expr || TREE_CODE (initp_expr) != INTEGER_CST)
1833     {
1834       error ("requested init_priority is not an integer constant");
1835       *no_add_attrs = true;
1836       return NULL_TREE;
1837     }
1838
1839   pri = TREE_INT_CST_LOW (initp_expr);
1840
1841   type = strip_array_types (type);
1842
1843   if (decl == NULL_TREE
1844       || TREE_CODE (decl) != VAR_DECL
1845       || !TREE_STATIC (decl)
1846       || DECL_EXTERNAL (decl)
1847       || (TREE_CODE (type) != RECORD_TYPE
1848           && TREE_CODE (type) != UNION_TYPE)
1849       /* Static objects in functions are initialized the
1850          first time control passes through that
1851          function. This is not precise enough to pin down an
1852          init_priority value, so don't allow it.  */
1853       || current_function_decl)
1854     {
1855       error ("can only use `%E' attribute on file-scope definitions "
1856              "of objects of class type", name);
1857       *no_add_attrs = true;
1858       return NULL_TREE;
1859     }
1860
1861   if (pri > MAX_INIT_PRIORITY || pri <= 0)
1862     {
1863       error ("requested init_priority is out of range");
1864       *no_add_attrs = true;
1865       return NULL_TREE;
1866     }
1867
1868   /* Check for init_priorities that are reserved for
1869      language and runtime support implementations.*/
1870   if (pri <= MAX_RESERVED_INIT_PRIORITY)
1871     {
1872       warning
1873         ("requested init_priority is reserved for internal use");
1874     }
1875
1876   if (SUPPORTS_INIT_PRIORITY)
1877     {
1878       DECL_INIT_PRIORITY (decl) = pri;
1879       return NULL_TREE;
1880     }
1881   else
1882     {
1883       error ("`%E' attribute is not supported on this platform", name);
1884       *no_add_attrs = true;
1885       return NULL_TREE;
1886     }
1887 }
1888
1889 /* Return a new TINST_LEVEL for DECL at location locus.  */
1890 tree
1891 make_tinst_level (tree decl, location_t locus)
1892 {
1893   tree tinst_level = make_node (TINST_LEVEL);
1894   TREE_CHAIN (tinst_level) = NULL_TREE;
1895   TINST_DECL (tinst_level) = decl;
1896   TINST_LOCATION (tinst_level) = locus;
1897   return tinst_level;
1898 }
1899
1900 /* Return a new PTRMEM_CST of the indicated TYPE.  The MEMBER is the
1901    thing pointed to by the constant.  */
1902
1903 tree
1904 make_ptrmem_cst (tree type, tree member)
1905 {
1906   tree ptrmem_cst = make_node (PTRMEM_CST);
1907   TREE_TYPE (ptrmem_cst) = type;
1908   PTRMEM_CST_MEMBER (ptrmem_cst) = member;
1909   return ptrmem_cst;
1910 }
1911
1912 /* Build a variant of TYPE that has the indicated ATTRIBUTES.  May
1913    return an existing type of an appropriate type already exists.  */
1914
1915 tree
1916 cp_build_type_attribute_variant (tree type, tree attributes)
1917 {
1918   tree new_type;
1919
1920   new_type = build_type_attribute_variant (type, attributes);
1921   if (TREE_CODE (new_type) == FUNCTION_TYPE
1922       && (TYPE_RAISES_EXCEPTIONS (new_type)
1923           != TYPE_RAISES_EXCEPTIONS (type)))
1924     new_type = build_exception_variant (new_type,
1925                                         TYPE_RAISES_EXCEPTIONS (type));
1926   return new_type;
1927 }
1928
1929 /* Apply FUNC to all language-specific sub-trees of TP in a pre-order
1930    traversal.  Called from walk_tree.  */
1931
1932 tree
1933 cp_walk_subtrees (tree *tp, int *walk_subtrees_p, walk_tree_fn func,
1934                   void *data, void *htab)
1935 {
1936   enum tree_code code = TREE_CODE (*tp);
1937   location_t save_locus;
1938   tree result;
1939
1940 #define WALK_SUBTREE(NODE)                              \
1941   do                                                    \
1942     {                                                   \
1943       result = walk_tree (&(NODE), func, data, htab);   \
1944       if (result) goto out;                             \
1945     }                                                   \
1946   while (0)
1947
1948   /* Set input_location here so we get the right instantiation context
1949      if we call instantiate_decl from inlinable_function_p.  */
1950   save_locus = input_location;
1951   if (EXPR_HAS_LOCATION (*tp))
1952     input_location = EXPR_LOCATION (*tp);
1953
1954   /* Not one of the easy cases.  We must explicitly go through the
1955      children.  */
1956   result = NULL_TREE;
1957   switch (code)
1958     {
1959     case DEFAULT_ARG:
1960     case TEMPLATE_TEMPLATE_PARM:
1961     case BOUND_TEMPLATE_TEMPLATE_PARM:
1962     case UNBOUND_CLASS_TEMPLATE:
1963     case TEMPLATE_PARM_INDEX:
1964     case TEMPLATE_TYPE_PARM:
1965     case TYPENAME_TYPE:
1966     case TYPEOF_TYPE:
1967     case BASELINK:
1968       /* None of these have subtrees other than those already walked
1969          above.  */
1970       *walk_subtrees_p = 0;
1971       break;
1972
1973     case TINST_LEVEL:
1974       WALK_SUBTREE (TINST_DECL (*tp));
1975       *walk_subtrees_p = 0;
1976       break;
1977
1978     case PTRMEM_CST:
1979       WALK_SUBTREE (TREE_TYPE (*tp));
1980       *walk_subtrees_p = 0;
1981       break;
1982
1983     case TREE_LIST:
1984       WALK_SUBTREE (TREE_PURPOSE (*tp));
1985       break;
1986
1987     case OVERLOAD:
1988       WALK_SUBTREE (OVL_FUNCTION (*tp));
1989       WALK_SUBTREE (OVL_CHAIN (*tp));
1990       *walk_subtrees_p = 0;
1991       break;
1992
1993     case RECORD_TYPE:
1994       if (TYPE_PTRMEMFUNC_P (*tp))
1995         WALK_SUBTREE (TYPE_PTRMEMFUNC_FN_TYPE (*tp));
1996       break;
1997
1998     default:
1999       input_location = save_locus;
2000       return NULL_TREE;
2001     }
2002
2003   /* We didn't find what we were looking for.  */
2004  out:
2005   input_location = save_locus;
2006   return result;
2007
2008 #undef WALK_SUBTREE
2009 }
2010
2011 /* Decide whether there are language-specific reasons to not inline a
2012    function as a tree.  */
2013
2014 int
2015 cp_cannot_inline_tree_fn (tree* fnp)
2016 {
2017   tree fn = *fnp;
2018
2019   /* We can inline a template instantiation only if it's fully
2020      instantiated.  */
2021   if (DECL_TEMPLATE_INFO (fn)
2022       && TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (fn)))
2023     {
2024       /* Don't instantiate functions that are not going to be
2025          inlined.  */
2026       if (!DECL_INLINE (DECL_TEMPLATE_RESULT
2027                         (template_for_substitution (fn))))
2028         return 1;
2029
2030       fn = *fnp = instantiate_decl (fn, /*defer_ok=*/0, /*undefined_ok=*/0);
2031
2032       if (TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (fn)))
2033         return 1;
2034     }
2035
2036   if (flag_really_no_inline
2037       && lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn)) == NULL)
2038     return 1;
2039
2040   /* Don't auto-inline anything that might not be bound within
2041      this unit of translation.
2042      Exclude comdat functions from this rule.  While they can be bound
2043      to the other unit, they all must be the same.  This is especially
2044      important so templates can inline.  */
2045   if (!DECL_DECLARED_INLINE_P (fn) && !(*targetm.binds_local_p) (fn)
2046       && !DECL_COMDAT (fn))
2047     {
2048       DECL_UNINLINABLE (fn) = 1;
2049       return 1;
2050     }
2051
2052   if (varargs_function_p (fn))
2053     {
2054       DECL_UNINLINABLE (fn) = 1;
2055       return 1;
2056     }
2057
2058   if (! function_attribute_inlinable_p (fn))
2059     {
2060       DECL_UNINLINABLE (fn) = 1;
2061       return 1;
2062     }
2063
2064   return 0;
2065 }
2066
2067 /* Add any pending functions other than the current function (already
2068    handled by the caller), that thus cannot be inlined, to FNS_P, then
2069    return the latest function added to the array, PREV_FN.  */
2070
2071 tree
2072 cp_add_pending_fn_decls (void* fns_p, tree prev_fn)
2073 {
2074   varray_type *fnsp = (varray_type *)fns_p;
2075   struct saved_scope *s;
2076
2077   for (s = scope_chain; s; s = s->prev)
2078     if (s->function_decl && s->function_decl != prev_fn)
2079       {
2080         VARRAY_PUSH_TREE (*fnsp, s->function_decl);
2081         prev_fn = s->function_decl;
2082       }
2083
2084   return prev_fn;
2085 }
2086
2087 /* Determine whether a tree node is an OVERLOAD node.  Used to decide
2088    whether to copy a node or to preserve its chain when inlining a
2089    function.  */
2090
2091 int
2092 cp_is_overload_p (tree t)
2093 {
2094   return TREE_CODE (t) == OVERLOAD;
2095 }
2096
2097 /* Determine whether VAR is a declaration of an automatic variable in
2098    function FN.  */
2099
2100 int
2101 cp_auto_var_in_fn_p (tree var, tree fn)
2102 {
2103   return (DECL_P (var) && DECL_CONTEXT (var) == fn
2104           && nonstatic_local_decl_p (var));
2105 }
2106
2107 /* FN body has been duplicated.  Update language specific fields.  */
2108
2109 void
2110 cp_update_decl_after_saving (tree fn,
2111                              void* decl_map_)
2112 {
2113   splay_tree decl_map = (splay_tree)decl_map_;
2114   tree nrv = DECL_SAVED_FUNCTION_DATA (fn)->x_return_value;
2115   if (nrv)
2116     {
2117       DECL_SAVED_FUNCTION_DATA (fn)->x_return_value
2118         = (tree) splay_tree_lookup (decl_map, (splay_tree_key) nrv)->value;
2119     }
2120 }
2121 /* Initialize tree.c.  */
2122
2123 void
2124 init_tree (void)
2125 {
2126   list_hash_table = htab_create_ggc (31, list_hash, list_hash_eq, NULL);
2127 }
2128
2129 /* Called via walk_tree.  If *TP points to a DECL_EXPR for a local
2130    declaration, copies the declaration and enters it in the splay_tree
2131    pointed to by DATA (which is really a `splay_tree *').  */
2132
2133 static tree
2134 mark_local_for_remap_r (tree* tp,
2135                         int* walk_subtrees ATTRIBUTE_UNUSED ,
2136                         void* data)
2137 {
2138   tree t = *tp;
2139   splay_tree st = (splay_tree) data;
2140   tree decl;
2141
2142
2143   if (TREE_CODE (t) == DECL_EXPR
2144       && nonstatic_local_decl_p (DECL_EXPR_DECL (t)))
2145     decl = DECL_EXPR_DECL (t);
2146   else if (TREE_CODE (t) == LABEL_EXPR)
2147     decl = LABEL_EXPR_LABEL (t);
2148   else if (TREE_CODE (t) == TARGET_EXPR
2149            && nonstatic_local_decl_p (TREE_OPERAND (t, 0)))
2150     decl = TREE_OPERAND (t, 0);
2151   else if (TREE_CODE (t) == CASE_LABEL_EXPR)
2152     decl = CASE_LABEL (t);
2153   else
2154     decl = NULL_TREE;
2155
2156   if (decl)
2157     {
2158       tree copy;
2159
2160       /* Make a copy.  */
2161       copy = copy_decl_for_inlining (decl,
2162                                      DECL_CONTEXT (decl),
2163                                      DECL_CONTEXT (decl));
2164
2165       /* Remember the copy.  */
2166       splay_tree_insert (st,
2167                          (splay_tree_key) decl,
2168                          (splay_tree_value) copy);
2169     }
2170
2171   return NULL_TREE;
2172 }
2173
2174 /* Called via walk_tree when an expression is unsaved.  Using the
2175    splay_tree pointed to by ST (which is really a `splay_tree'),
2176    remaps all local declarations to appropriate replacements.  */
2177
2178 static tree
2179 cp_unsave_r (tree* tp,
2180              int* walk_subtrees,
2181              void* data)
2182 {
2183   splay_tree st = (splay_tree) data;
2184   splay_tree_node n;
2185
2186   /* Only a local declaration (variable or label).  */
2187   if (nonstatic_local_decl_p (*tp))
2188     {
2189       /* Lookup the declaration.  */
2190       n = splay_tree_lookup (st, (splay_tree_key) *tp);
2191
2192       /* If it's there, remap it.  */
2193       if (n)
2194         *tp = (tree) n->value;
2195     }
2196   else if (TREE_CODE (*tp) == SAVE_EXPR)
2197     remap_save_expr (tp, st, walk_subtrees);
2198   else
2199     {
2200       copy_tree_r (tp, walk_subtrees, NULL);
2201
2202       /* Do whatever unsaving is required.  */
2203       unsave_expr_1 (*tp);
2204     }
2205
2206   /* Keep iterating.  */
2207   return NULL_TREE;
2208 }
2209
2210 /* Called whenever an expression needs to be unsaved.  */
2211
2212 tree
2213 cxx_unsave_expr_now (tree tp)
2214 {
2215   splay_tree st;
2216
2217   /* Create a splay-tree to map old local variable declarations to new
2218      ones.  */
2219   st = splay_tree_new (splay_tree_compare_pointers, NULL, NULL);
2220
2221   /* Walk the tree once figuring out what needs to be remapped.  */
2222   walk_tree (&tp, mark_local_for_remap_r, st, NULL);
2223
2224   /* Walk the tree again, copying, remapping, and unsaving.  */
2225   walk_tree (&tp, cp_unsave_r, st, NULL);
2226
2227   /* Clean up.  */
2228   splay_tree_delete (st);
2229
2230   return tp;
2231 }
2232
2233 /* Returns the kind of special function that DECL (a FUNCTION_DECL)
2234    is.  Note that sfk_none is zero, so this function can be used as a
2235    predicate to test whether or not DECL is a special function.  */
2236
2237 special_function_kind
2238 special_function_p (tree decl)
2239 {
2240   /* Rather than doing all this stuff with magic names, we should
2241      probably have a field of type `special_function_kind' in
2242      DECL_LANG_SPECIFIC.  */
2243   if (DECL_COPY_CONSTRUCTOR_P (decl))
2244     return sfk_copy_constructor;
2245   if (DECL_CONSTRUCTOR_P (decl))
2246     return sfk_constructor;
2247   if (DECL_OVERLOADED_OPERATOR_P (decl) == NOP_EXPR)
2248     return sfk_assignment_operator;
2249   if (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (decl))
2250     return sfk_destructor;
2251   if (DECL_COMPLETE_DESTRUCTOR_P (decl))
2252     return sfk_complete_destructor;
2253   if (DECL_BASE_DESTRUCTOR_P (decl))
2254     return sfk_base_destructor;
2255   if (DECL_DELETING_DESTRUCTOR_P (decl))
2256     return sfk_deleting_destructor;
2257   if (DECL_CONV_FN_P (decl))
2258     return sfk_conversion;
2259
2260   return sfk_none;
2261 }
2262
2263 /* Returns true if and only if NODE is a name, i.e., a node created
2264    by the parser when processing an id-expression.  */
2265
2266 bool
2267 name_p (tree node)
2268 {
2269   if (TREE_CODE (node) == TEMPLATE_ID_EXPR)
2270     node = TREE_OPERAND (node, 0);
2271   return (/* An ordinary unqualified name.  */
2272           TREE_CODE (node) == IDENTIFIER_NODE
2273           /* A destructor name.  */
2274           || TREE_CODE (node) == BIT_NOT_EXPR
2275           /* A qualified name.  */
2276           || TREE_CODE (node) == SCOPE_REF);
2277 }
2278
2279 /* Returns nonzero if TYPE is a character type, including wchar_t.  */
2280
2281 int
2282 char_type_p (tree type)
2283 {
2284   return (same_type_p (type, char_type_node)
2285           || same_type_p (type, unsigned_char_type_node)
2286           || same_type_p (type, signed_char_type_node)
2287           || same_type_p (type, wchar_type_node));
2288 }
2289
2290 /* Returns the kind of linkage associated with the indicated DECL.  Th
2291    value returned is as specified by the language standard; it is
2292    independent of implementation details regarding template
2293    instantiation, etc.  For example, it is possible that a declaration
2294    to which this function assigns external linkage would not show up
2295    as a global symbol when you run `nm' on the resulting object file.  */
2296
2297 linkage_kind
2298 decl_linkage (tree decl)
2299 {
2300   /* This function doesn't attempt to calculate the linkage from first
2301      principles as given in [basic.link].  Instead, it makes use of
2302      the fact that we have already set TREE_PUBLIC appropriately, and
2303      then handles a few special cases.  Ideally, we would calculate
2304      linkage first, and then transform that into a concrete
2305      implementation.  */
2306
2307   /* Things that don't have names have no linkage.  */
2308   if (!DECL_NAME (decl))
2309     return lk_none;
2310
2311   /* Things that are TREE_PUBLIC have external linkage.  */
2312   if (TREE_PUBLIC (decl))
2313     return lk_external;
2314
2315   /* Some things that are not TREE_PUBLIC have external linkage, too.
2316      For example, on targets that don't have weak symbols, we make all
2317      template instantiations have internal linkage (in the object
2318      file), but the symbols should still be treated as having external
2319      linkage from the point of view of the language.  */
2320   if (DECL_LANG_SPECIFIC (decl) && DECL_COMDAT (decl))
2321     return lk_external;
2322
2323   /* Things in local scope do not have linkage, if they don't have
2324      TREE_PUBLIC set.  */
2325   if (decl_function_context (decl))
2326     return lk_none;
2327
2328   /* Everything else has internal linkage.  */
2329   return lk_internal;
2330 }
2331 \f
2332 /* EXP is an expression that we want to pre-evaluate.  Returns via INITP an
2333    expression to perform the pre-evaluation, and returns directly an
2334    expression to use the precalculated result.  */
2335
2336 tree
2337 stabilize_expr (tree exp, tree* initp)
2338 {
2339   tree init_expr;
2340
2341   if (!TREE_SIDE_EFFECTS (exp))
2342     {
2343       init_expr = NULL_TREE;
2344     }
2345   else if (!real_lvalue_p (exp)
2346            || !TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (exp)))
2347     {
2348       init_expr = get_target_expr (exp);
2349       exp = TARGET_EXPR_SLOT (init_expr);
2350     }
2351   else
2352     {
2353       exp = build_unary_op (ADDR_EXPR, exp, 1);
2354       init_expr = get_target_expr (exp);
2355       exp = TARGET_EXPR_SLOT (init_expr);
2356       exp = build_indirect_ref (exp, 0);
2357     }
2358
2359   *initp = init_expr;
2360   return exp;
2361 }
2362
2363 /* Like stabilize_expr, but for a call whose args we want to
2364    pre-evaluate.  */
2365
2366 void
2367 stabilize_call (tree call, tree *initp)
2368 {
2369   tree inits = NULL_TREE;
2370   tree t;
2371
2372   if (call == error_mark_node)
2373     return;
2374
2375   if (TREE_CODE (call) != CALL_EXPR
2376       && TREE_CODE (call) != AGGR_INIT_EXPR)
2377     abort ();
2378
2379   for (t = TREE_OPERAND (call, 1); t; t = TREE_CHAIN (t))
2380     if (TREE_SIDE_EFFECTS (TREE_VALUE (t)))
2381       {
2382         tree init;
2383         TREE_VALUE (t) = stabilize_expr (TREE_VALUE (t), &init);
2384         if (!init)
2385           /* Nothing.  */;
2386         else if (inits)
2387           inits = build2 (COMPOUND_EXPR, void_type_node, inits, init);
2388         else
2389           inits = init;
2390       }
2391
2392   *initp = inits;
2393 }
2394
2395 /* Like stabilize_expr, but for an initialization.  If we are initializing
2396    an object of class type, we don't want to introduce an extra temporary,
2397    so we look past the TARGET_EXPR and stabilize the arguments of the call
2398    instead.  */
2399
2400 bool
2401 stabilize_init (tree init, tree *initp)
2402 {
2403   tree t = init;
2404
2405   if (t == error_mark_node)
2406     return true;
2407
2408   if (TREE_CODE (t) == INIT_EXPR
2409       && TREE_CODE (TREE_OPERAND (t, 1)) != TARGET_EXPR)
2410     TREE_OPERAND (t, 1) = stabilize_expr (TREE_OPERAND (t, 1), initp);
2411   else
2412     {
2413       if (TREE_CODE (t) == INIT_EXPR)
2414         t = TREE_OPERAND (t, 1);
2415       if (TREE_CODE (t) == TARGET_EXPR)
2416         t = TARGET_EXPR_INITIAL (t);
2417       if (TREE_CODE (t) == CONSTRUCTOR
2418           && CONSTRUCTOR_ELTS (t) == NULL_TREE)
2419         {
2420           /* Default-initialization.  */
2421           *initp = NULL_TREE;
2422           return true;
2423         }
2424
2425       /* If the initializer is a COND_EXPR, we can't preevaluate
2426          anything.  */
2427       if (TREE_CODE (t) == COND_EXPR)
2428         return false;
2429
2430       stabilize_call (t, initp);
2431     }
2432
2433   return true;
2434 }
2435
2436 \f
2437 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
2438 /* Complain that some language-specific thing hanging off a tree
2439    node has been accessed improperly.  */
2440
2441 void
2442 lang_check_failed (const char* file, int line, const char* function)
2443 {
2444   internal_error ("lang_* check: failed in %s, at %s:%d",
2445                   function, trim_filename (file), line);
2446 }
2447 #endif /* ENABLE_TREE_CHECKING */
2448
2449 #include "gt-cp-tree.h"