OSDN Git Service

af494e39848deb320e75503d2a1eb316438acaa0
[pf3gnuchains/gcc-fork.git] / gcc / cp / rtti.c
1 /* RunTime Type Identification
2    Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
3    Free Software Foundation, Inc.
4    Mostly written by Jason Merrill (jason@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
24 #include "config.h"
25 #include "system.h"
26 #include "coretypes.h"
27 #include "tm.h"
28 #include "tree.h"
29 #include "cp-tree.h"
30 #include "flags.h"
31 #include "output.h"
32 #include "assert.h"
33 #include "toplev.h"
34
35 /* C++ returns type information to the user in struct type_info
36    objects. We also use type information to implement dynamic_cast and
37    exception handlers. Type information for a particular type is
38    indicated with an ABI defined structure derived from type_info.
39    This would all be very straight forward, but for the fact that the
40    runtime library provides the definitions of the type_info structure
41    and the ABI defined derived classes. We cannot build declarations
42    of them directly in the compiler, but we need to layout objects of
43    their type.  Somewhere we have to lie.
44
45    We define layout compatible POD-structs with compiler-defined names
46    and generate the appropriate initializations for them (complete
47    with explicit mention of their vtable). When we have to provide a
48    type_info to the user we reinterpret_cast the internal compiler
49    type to type_info.  A well formed program can only explicitly refer
50    to the type_infos of complete types (& cv void).  However, we chain
51    pointer type_infos to the pointed-to-type, and that can be
52    incomplete.  We only need the addresses of such incomplete
53    type_info objects for static initialization.
54
55    The type information VAR_DECL of a type is held on the
56    IDENTIFIER_GLOBAL_VALUE of the type's mangled name. That VAR_DECL
57    will be the internal type.  It will usually have the correct
58    internal type reflecting the kind of type it represents (pointer,
59    array, function, class, inherited class, etc).  When the type it
60    represents is incomplete, it will have the internal type
61    corresponding to type_info.  That will only happen at the end of
62    translation, when we are emitting the type info objects.  */
63
64 /* Accessors for the type_info objects. We need to remember several things
65    about each of the type_info types. The global tree nodes such as
66    bltn_desc_type_node are TREE_LISTs, and these macros are used to access
67    the required information.  */
68 /* The RECORD_TYPE of a type_info derived class.  */
69 #define TINFO_PSEUDO_TYPE(NODE) TREE_TYPE (NODE)
70 /* The VAR_DECL of the vtable for the type_info derived class.
71    This is only filled in at the end of the translation.  */
72 #define TINFO_VTABLE_DECL(NODE) TREE_VALUE (NODE)
73 /* The IDENTIFIER_NODE naming the real class.  */
74 #define TINFO_REAL_NAME(NODE) TREE_PURPOSE (NODE)
75
76 /* A varray of all tinfo decls that haven't yet been emitted. */
77 varray_type unemitted_tinfo_decls;
78
79 static tree build_headof (tree);
80 static tree ifnonnull (tree, tree);
81 static tree tinfo_name (tree);
82 static tree build_dynamic_cast_1 (tree, tree);
83 static tree throw_bad_cast (void);
84 static tree throw_bad_typeid (void);
85 static tree get_tinfo_decl_dynamic (tree);
86 static tree get_tinfo_ptr (tree);
87 static bool typeid_ok_p (void);
88 static int qualifier_flags (tree);
89 static bool target_incomplete_p (tree);
90 static tree tinfo_base_init (tree, tree);
91 static tree generic_initializer (tree, tree);
92 static tree ptr_initializer (tree, tree, bool *);
93 static tree ptm_initializer (tree, tree, bool *);
94 static tree dfs_class_hint_mark (tree, void *);
95 static tree dfs_class_hint_unmark (tree, void *);
96 static int class_hint_flags (tree);
97 static tree class_initializer (tree, tree, tree);
98 static tree create_pseudo_type_info (const char *, int, ...);
99 static tree get_pseudo_ti_init (tree, tree, bool *);
100 static tree get_pseudo_ti_desc (tree);
101 static void create_tinfo_types (void);
102 static bool typeinfo_in_lib_p (tree);
103 static bool unemitted_tinfo_decl_p (tree);
104
105 static int doing_runtime = 0;
106 \f
107
108 /* Declare language defined type_info type and a pointer to const
109    type_info.  This is incomplete here, and will be completed when
110    the user #includes <typeinfo>.  There are language defined
111    restrictions on what can be done until that is included.  Create
112    the internal versions of the ABI types.  */
113
114 void
115 init_rtti_processing (void)
116 {
117   tree const_type_info_type;
118
119   push_namespace (std_identifier);
120   type_info_type_node 
121     = xref_tag (class_type, get_identifier ("type_info"),
122                 /*attributes=*/NULL_TREE, 1);
123   pop_namespace ();
124   const_type_info_type = build_qualified_type (type_info_type_node, 
125                                                TYPE_QUAL_CONST);
126   type_info_ptr_type = build_pointer_type (const_type_info_type);
127   type_info_ref_type = build_reference_type (const_type_info_type);
128
129   VARRAY_TREE_INIT (unemitted_tinfo_decls, 10, "RTTI decls");
130
131   create_tinfo_types ();
132 }
133
134 /* Given the expression EXP of type `class *', return the head of the
135    object pointed to by EXP with type cv void*, if the class has any
136    virtual functions (TYPE_POLYMORPHIC_P), else just return the
137    expression.  */
138
139 static tree
140 build_headof (tree exp)
141 {
142   tree type = TREE_TYPE (exp);
143   tree offset;
144   tree index;
145
146   my_friendly_assert (TREE_CODE (type) == POINTER_TYPE, 20000112);
147   type = TREE_TYPE (type);
148
149   if (!TYPE_POLYMORPHIC_P (type))
150     return exp;
151
152   /* We use this a couple of times below, protect it.  */
153   exp = save_expr (exp);
154
155   /* The offset-to-top field is at index -2 from the vptr.  */
156   index = build_int_2 (-2 * TARGET_VTABLE_DATA_ENTRY_DISTANCE, -1);
157
158   offset = build_vtbl_ref (build_indirect_ref (exp, NULL), index);
159
160   type = build_qualified_type (ptr_type_node, 
161                                cp_type_quals (TREE_TYPE (exp)));
162   return build (PLUS_EXPR, type, exp,
163                 cp_convert (ptrdiff_type_node, offset));
164 }
165
166 /* Get a bad_cast node for the program to throw...
167
168    See libstdc++/exception.cc for __throw_bad_cast */
169
170 static tree
171 throw_bad_cast (void)
172 {
173   tree fn = get_identifier ("__cxa_bad_cast");
174   if (IDENTIFIER_GLOBAL_VALUE (fn))
175     fn = IDENTIFIER_GLOBAL_VALUE (fn);
176   else
177     fn = push_throw_library_fn (fn, build_function_type (ptr_type_node,
178                                                          void_list_node));
179   
180   return build_cxx_call (fn, NULL_TREE, NULL_TREE);
181 }
182
183 /* Return an expression for "__cxa_bad_typeid()".  The expression
184    returned is an lvalue of type "const std::type_info".  */
185
186 static tree
187 throw_bad_typeid (void)
188 {
189   tree fn = get_identifier ("__cxa_bad_typeid");
190   if (IDENTIFIER_GLOBAL_VALUE (fn))
191     fn = IDENTIFIER_GLOBAL_VALUE (fn);
192   else
193     {
194       tree t = build_qualified_type (type_info_type_node, TYPE_QUAL_CONST);
195       t = build_function_type (build_reference_type (t), void_list_node);
196       fn = push_throw_library_fn (fn, t);
197     }
198
199   return convert_from_reference (build_cxx_call (fn, NULL_TREE, NULL_TREE));
200 }
201 \f
202 /* Return an lvalue expression whose type is "const std::type_info"
203    and whose value indicates the type of the expression EXP.  If EXP
204    is a reference to a polymorphic class, return the dynamic type;
205    otherwise return the static type of the expression.  */
206
207 static tree
208 get_tinfo_decl_dynamic (tree exp)
209 {
210   tree type;
211   tree t;
212   
213   if (exp == error_mark_node)
214     return error_mark_node;
215
216   type = TREE_TYPE (exp);
217
218   /* peel back references, so they match.  */
219   if (TREE_CODE (type) == REFERENCE_TYPE)
220     type = TREE_TYPE (type);
221
222   /* Peel off cv qualifiers.  */
223   type = TYPE_MAIN_VARIANT (type);
224   
225   if (!VOID_TYPE_P (type))
226     type = complete_type_or_else (type, exp);
227   
228   if (!type)
229     return error_mark_node;
230
231   /* If exp is a reference to polymorphic type, get the real type_info.  */
232   if (TYPE_POLYMORPHIC_P (type) && ! resolves_to_fixed_type_p (exp, 0))
233     {
234       /* build reference to type_info from vtable.  */
235       tree index;
236
237       /* The RTTI information is at index -1.  */
238       index = build_int_2 (-1 * TARGET_VTABLE_DATA_ENTRY_DISTANCE, -1);
239       t = build_vtbl_ref (exp, index);
240       TREE_TYPE (t) = type_info_ptr_type;
241     }
242   else
243     /* Otherwise return the type_info for the static type of the expr.  */
244     t = get_tinfo_ptr (TYPE_MAIN_VARIANT (type));
245
246   return build_indirect_ref (t, NULL);
247 }
248
249 static bool
250 typeid_ok_p (void)
251 {
252   if (! flag_rtti)
253     {
254       error ("cannot use typeid with -fno-rtti");
255       return false;
256     }
257   
258   if (!COMPLETE_TYPE_P (type_info_type_node))
259     {
260       error ("must #include <typeinfo> before using typeid");
261       return false;
262     }
263   
264   return true;
265 }
266
267 /* Return an expression for "typeid(EXP)".  The expression returned is
268    an lvalue of type "const std::type_info".  */
269
270 tree
271 build_typeid (tree exp)
272 {
273   tree cond = NULL_TREE;
274   int nonnull = 0;
275
276   if (exp == error_mark_node || !typeid_ok_p ())
277     return error_mark_node;
278
279   if (processing_template_decl)
280     return build_min (TYPEID_EXPR, type_info_ref_type, exp);
281
282   if (TREE_CODE (exp) == INDIRECT_REF
283       && TREE_CODE (TREE_TYPE (TREE_OPERAND (exp, 0))) == POINTER_TYPE
284       && TYPE_POLYMORPHIC_P (TREE_TYPE (exp))
285       && ! resolves_to_fixed_type_p (exp, &nonnull)
286       && ! nonnull)
287     {
288       exp = stabilize_reference (exp);
289       cond = cp_convert (boolean_type_node, TREE_OPERAND (exp, 0));
290     }
291
292   exp = get_tinfo_decl_dynamic (exp);
293
294   if (exp == error_mark_node)
295     return error_mark_node;
296
297   if (cond)
298     {
299       tree bad = throw_bad_typeid ();
300
301       exp = build (COND_EXPR, TREE_TYPE (exp), cond, exp, bad);
302     }
303
304   return exp;
305 }
306
307 /* Generate the NTBS name of a type.  */
308 static tree
309 tinfo_name (tree type)
310 {
311   const char *name;
312   tree name_string;
313
314   name = mangle_type_string (type);
315   name_string = fix_string_type (build_string (strlen (name) + 1, name));
316   return name_string;
317 }
318
319 /* Return a VAR_DECL for the internal ABI defined type_info object for
320    TYPE. You must arrange that the decl is mark_used, if actually use
321    it --- decls in vtables are only used if the vtable is output.  */ 
322
323 tree
324 get_tinfo_decl (tree type)
325 {
326   tree name;
327   tree d;
328
329   if (COMPLETE_TYPE_P (type) 
330       && TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
331     {
332       error ("cannot create type information for type `%T' because its size is variable", 
333              type);
334       return error_mark_node;
335     }
336
337   if (TREE_CODE (type) == OFFSET_TYPE)
338     type = TREE_TYPE (type);
339   if (TREE_CODE (type) == METHOD_TYPE)
340     type = build_function_type (TREE_TYPE (type),
341                                 TREE_CHAIN (TYPE_ARG_TYPES (type)));
342
343   /* For a class type, the variable is cached in the type node
344      itself.  */
345   if (CLASS_TYPE_P (type))
346     {
347       d = CLASSTYPE_TYPEINFO_VAR (TYPE_MAIN_VARIANT (type));
348       if (d)
349         return d;
350     }
351     
352   name = mangle_typeinfo_for_type (type);
353
354   d = IDENTIFIER_GLOBAL_VALUE (name);
355   if (!d)
356     {
357       tree var_desc = get_pseudo_ti_desc (type);
358
359       d = build_lang_decl (VAR_DECL, name, TINFO_PSEUDO_TYPE (var_desc));
360       
361       DECL_ARTIFICIAL (d) = 1;
362       TREE_READONLY (d) = 1;
363       TREE_STATIC (d) = 1;
364       DECL_EXTERNAL (d) = 1;
365       SET_DECL_ASSEMBLER_NAME (d, name);
366       DECL_COMDAT (d) = 1;
367
368       pushdecl_top_level_and_finish (d, NULL_TREE);
369
370       if (CLASS_TYPE_P (type))
371         CLASSTYPE_TYPEINFO_VAR (TYPE_MAIN_VARIANT (type)) = d;
372
373       /* Remember the type it is for.  */
374       TREE_TYPE (name) = type;
375
376       /* Add decl to the global array of tinfo decls. */
377       my_friendly_assert (unemitted_tinfo_decls != 0, 20030312);
378       VARRAY_PUSH_TREE (unemitted_tinfo_decls, d);
379     }
380
381   return d;
382 }
383
384 /* Return a pointer to a type_info object describing TYPE, suitably
385    cast to the language defined type.  */
386
387 static tree
388 get_tinfo_ptr (tree type)
389 {
390   tree decl = get_tinfo_decl (type);
391
392   mark_used (decl);
393   return build_nop (type_info_ptr_type, 
394                     build_address (decl));
395 }
396
397 /* Return the type_info object for TYPE.  */
398
399 tree
400 get_typeid (tree type)
401 {
402   if (type == error_mark_node || !typeid_ok_p ())
403     return error_mark_node;
404   
405   if (processing_template_decl)
406     return build_min (TYPEID_EXPR, type_info_ref_type, type);
407
408   /* If the type of the type-id is a reference type, the result of the
409      typeid expression refers to a type_info object representing the
410      referenced type.  */
411   if (TREE_CODE (type) == REFERENCE_TYPE)
412     type = TREE_TYPE (type);
413
414   /* The top-level cv-qualifiers of the lvalue expression or the type-id
415      that is the operand of typeid are always ignored.  */
416   type = TYPE_MAIN_VARIANT (type);
417
418   if (!VOID_TYPE_P (type))
419     type = complete_type_or_else (type, NULL_TREE);
420   
421   if (!type)
422     return error_mark_node;
423
424   return build_indirect_ref (get_tinfo_ptr (type), NULL);
425 }
426
427 /* Check whether TEST is null before returning RESULT.  If TEST is used in
428    RESULT, it must have previously had a save_expr applied to it.  */
429
430 static tree
431 ifnonnull (tree test, tree result)
432 {
433   return build (COND_EXPR, TREE_TYPE (result),
434                 build (EQ_EXPR, boolean_type_node, test, integer_zero_node),
435                 cp_convert (TREE_TYPE (result), integer_zero_node),
436                 result);
437 }
438
439 /* Execute a dynamic cast, as described in section 5.2.6 of the 9/93 working
440    paper.  */
441
442 static tree
443 build_dynamic_cast_1 (tree type, tree expr)
444 {
445   enum tree_code tc = TREE_CODE (type);
446   tree exprtype = TREE_TYPE (expr);
447   tree dcast_fn;
448   tree old_expr = expr;
449   const char *errstr = NULL;
450
451   /* T shall be a pointer or reference to a complete class type, or
452      `pointer to cv void''.  */
453   switch (tc)
454     {
455     case POINTER_TYPE:
456       if (TREE_CODE (TREE_TYPE (type)) == VOID_TYPE)
457         break;
458     case REFERENCE_TYPE:
459       if (! IS_AGGR_TYPE (TREE_TYPE (type)))
460         {
461           errstr = "target is not pointer or reference to class";
462           goto fail;
463         }
464       if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (type))))
465         {
466           errstr = "target is not pointer or reference to complete type";
467           goto fail;
468         }
469       break;
470
471     default:
472       errstr = "target is not pointer or reference";
473       goto fail;
474     }
475
476   if (tc == POINTER_TYPE)
477     expr = convert_from_reference (expr);
478   else if (TREE_CODE (exprtype) != REFERENCE_TYPE)
479     {
480       /* Apply trivial conversion T -> T& for dereferenced ptrs.  */
481       exprtype = build_reference_type (exprtype);
482       expr = convert_to_reference (exprtype, expr, CONV_IMPLICIT,
483                                    LOOKUP_NORMAL, NULL_TREE);
484     }
485
486   exprtype = TREE_TYPE (expr);
487
488   if (tc == POINTER_TYPE)
489     {
490       /* If T is a pointer type, v shall be an rvalue of a pointer to
491          complete class type, and the result is an rvalue of type T.  */
492
493       if (TREE_CODE (exprtype) != POINTER_TYPE)
494         {
495           errstr = "source is not a pointer";
496           goto fail;
497         }
498       if (! IS_AGGR_TYPE (TREE_TYPE (exprtype)))
499         {
500           errstr = "source is not a pointer to class";
501           goto fail;
502         }
503       if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (exprtype))))
504         {
505           errstr = "source is a pointer to incomplete type";
506           goto fail;
507         }
508     }
509   else
510     {
511       /* T is a reference type, v shall be an lvalue of a complete class
512          type, and the result is an lvalue of the type referred to by T.  */
513
514       if (! IS_AGGR_TYPE (TREE_TYPE (exprtype)))
515         {
516           errstr = "source is not of class type";
517           goto fail;
518         }
519       if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (exprtype))))
520         {
521           errstr = "source is of incomplete class type";
522           goto fail;
523         }
524       
525     }
526
527   /* The dynamic_cast operator shall not cast away constness.  */
528   if (!at_least_as_qualified_p (TREE_TYPE (type),
529                                 TREE_TYPE (exprtype)))
530     {
531       errstr = "conversion casts away constness";
532       goto fail;
533     }
534
535   /* If *type is an unambiguous accessible base class of *exprtype,
536      convert statically.  */
537   {
538     tree binfo;
539
540     binfo = lookup_base (TREE_TYPE (exprtype), TREE_TYPE (type),
541                          ba_not_special, NULL);
542
543     if (binfo)
544       {
545         expr = build_base_path (PLUS_EXPR, convert_from_reference (expr),
546                                 binfo, 0);
547         if (TREE_CODE (exprtype) == POINTER_TYPE)
548           expr = non_lvalue (expr);
549         return expr;
550       }
551   }
552
553   /* Otherwise *exprtype must be a polymorphic class (have a vtbl).  */
554   if (TYPE_POLYMORPHIC_P (TREE_TYPE (exprtype)))
555     {
556       tree expr1;
557       /* if TYPE is `void *', return pointer to complete object.  */
558       if (tc == POINTER_TYPE && VOID_TYPE_P (TREE_TYPE (type)))
559         {
560           /* if b is an object, dynamic_cast<void *>(&b) == (void *)&b.  */
561           if (TREE_CODE (expr) == ADDR_EXPR
562               && TREE_CODE (TREE_OPERAND (expr, 0)) == VAR_DECL
563               && TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0))) == RECORD_TYPE)
564             return build1 (NOP_EXPR, type, expr);
565
566           /* Since expr is used twice below, save it.  */
567           expr = save_expr (expr);
568
569           expr1 = build_headof (expr);
570           if (TREE_TYPE (expr1) != type)
571             expr1 = build1 (NOP_EXPR, type, expr1);
572           return ifnonnull (expr, expr1);
573         }
574       else
575         {
576           tree retval;
577           tree result, td2, td3, elems;
578           tree static_type, target_type, boff;
579
580           /* If we got here, we can't convert statically.  Therefore,
581              dynamic_cast<D&>(b) (b an object) cannot succeed.  */
582           if (tc == REFERENCE_TYPE)
583             {
584               if (TREE_CODE (old_expr) == VAR_DECL
585                   && TREE_CODE (TREE_TYPE (old_expr)) == RECORD_TYPE)
586                 {
587                   tree expr = throw_bad_cast ();
588                   warning ("dynamic_cast of `%#D' to `%#T' can never succeed",
589                               old_expr, type);
590                   /* Bash it to the expected type.  */
591                   TREE_TYPE (expr) = type;
592                   return expr;
593                 }
594             }
595           /* Ditto for dynamic_cast<D*>(&b).  */
596           else if (TREE_CODE (expr) == ADDR_EXPR)
597             {
598               tree op = TREE_OPERAND (expr, 0);
599               if (TREE_CODE (op) == VAR_DECL
600                   && TREE_CODE (TREE_TYPE (op)) == RECORD_TYPE)
601                 {
602                   warning ("dynamic_cast of `%#D' to `%#T' can never succeed",
603                               op, type);
604                   retval = build_int_2 (0, 0); 
605                   TREE_TYPE (retval) = type; 
606                   return retval;
607                 }
608             }
609
610           target_type = TYPE_MAIN_VARIANT (TREE_TYPE (type));
611           static_type = TYPE_MAIN_VARIANT (TREE_TYPE (exprtype));
612           td2 = get_tinfo_decl (target_type);
613           mark_used (td2);
614           td2 = build_unary_op (ADDR_EXPR, td2, 0);
615           td3 = get_tinfo_decl (static_type);
616           mark_used (td3);
617           td3 = build_unary_op (ADDR_EXPR, td3, 0);
618
619           /* Determine how T and V are related.  */
620           boff = get_dynamic_cast_base_type (static_type, target_type);
621           
622           /* Since expr is used twice below, save it.  */
623           expr = save_expr (expr);
624
625           expr1 = expr;
626           if (tc == REFERENCE_TYPE)
627             expr1 = build_unary_op (ADDR_EXPR, expr1, 0);
628
629           elems = tree_cons
630             (NULL_TREE, expr1, tree_cons
631              (NULL_TREE, td3, tree_cons
632               (NULL_TREE, td2, tree_cons
633                (NULL_TREE, boff, NULL_TREE))));
634
635           dcast_fn = dynamic_cast_node;
636           if (!dcast_fn)
637             {
638               tree tmp;
639               tree tinfo_ptr;
640               tree ns = abi_node;
641               const char *name;
642               
643               push_nested_namespace (ns);
644               tinfo_ptr = xref_tag (class_type,
645                                     get_identifier ("__class_type_info"),
646                                     /*attributes=*/NULL_TREE,
647                                     1);
648               
649               tinfo_ptr = build_pointer_type
650                 (build_qualified_type
651                  (tinfo_ptr, TYPE_QUAL_CONST));
652               name = "__dynamic_cast";
653               tmp = tree_cons
654                 (NULL_TREE, const_ptr_type_node, tree_cons
655                  (NULL_TREE, tinfo_ptr, tree_cons
656                   (NULL_TREE, tinfo_ptr, tree_cons
657                    (NULL_TREE, ptrdiff_type_node, void_list_node))));
658               tmp = build_function_type (ptr_type_node, tmp);
659               dcast_fn = build_library_fn_ptr (name, tmp);
660               pop_nested_namespace (ns);
661               dynamic_cast_node = dcast_fn;
662             }
663           result = build_cxx_call (dcast_fn, elems, elems);
664
665           if (tc == REFERENCE_TYPE)
666             {
667               tree bad = throw_bad_cast ();
668               
669               result = save_expr (result);
670               return build (COND_EXPR, type, result, result, bad);
671             }
672
673           /* Now back to the type we want from a void*.  */
674           result = cp_convert (type, result);
675           return ifnonnull (expr, result);
676         }
677     }
678   else
679     errstr = "source type is not polymorphic";
680
681  fail:
682   error ("cannot dynamic_cast `%E' (of type `%#T') to type `%#T' (%s)",
683             expr, exprtype, type, errstr);
684   return error_mark_node;
685 }
686
687 tree
688 build_dynamic_cast (tree type, tree expr)
689 {
690   if (type == error_mark_node || expr == error_mark_node)
691     return error_mark_node;
692   
693   if (processing_template_decl)
694     return build_min (DYNAMIC_CAST_EXPR, type, expr);
695
696   return convert_from_reference (build_dynamic_cast_1 (type, expr));
697 }
698 \f
699 /* Return the runtime bit mask encoding the qualifiers of TYPE.  */
700
701 static int
702 qualifier_flags (tree type)
703 {
704   int flags = 0;
705   int quals = cp_type_quals (type);
706   
707   if (quals & TYPE_QUAL_CONST)
708     flags |= 1;
709   if (quals & TYPE_QUAL_VOLATILE)
710     flags |= 2;
711   if (quals & TYPE_QUAL_RESTRICT)
712     flags |= 4;
713   return flags;
714 }
715
716 /* Return true, if the pointer chain TYPE ends at an incomplete type, or
717    contains a pointer to member of an incomplete class.  */
718
719 static bool
720 target_incomplete_p (tree type)
721 {
722   while (TREE_CODE (type) == POINTER_TYPE)
723     if (TYPE_PTRMEM_P (type))
724       {
725         if (!COMPLETE_TYPE_P (TYPE_PTRMEM_CLASS_TYPE (type)))
726           return true;
727         type = TYPE_PTRMEM_POINTED_TO_TYPE (type);
728       }
729     else
730       type = TREE_TYPE (type);
731   if (!COMPLETE_OR_VOID_TYPE_P (type))
732     return true;
733   
734   return false;
735 }
736
737 /* Return a CONSTRUCTOR for the common part of the type_info objects. This
738    is the vtable pointer and NTBS name.  The NTBS name is emitted as a
739    comdat const char array, so it becomes a unique key for the type. Generate
740    and emit that VAR_DECL here.  (We can't always emit the type_info itself
741    as comdat, because of pointers to incomplete.) */
742
743 static tree
744 tinfo_base_init (tree desc, tree target)
745 {
746   tree init = NULL_TREE;
747   tree name_decl;
748   tree vtable_ptr;
749   
750   {
751     tree name_name;
752     
753     /* Generate the NTBS array variable.  */
754     tree name_type = build_cplus_array_type
755                      (build_qualified_type (char_type_node, TYPE_QUAL_CONST),
756                      NULL_TREE);
757     tree name_string = tinfo_name (target);
758
759     name_name = mangle_typeinfo_string_for_type (target);
760     name_decl = build_lang_decl (VAR_DECL, name_name, name_type);
761     
762     DECL_ARTIFICIAL (name_decl) = 1;
763     TREE_READONLY (name_decl) = 1;
764     TREE_STATIC (name_decl) = 1;
765     DECL_EXTERNAL (name_decl) = 0;
766     TREE_PUBLIC (name_decl) = 1;
767     comdat_linkage (name_decl);
768     /* External name of the string containing the type's name has a
769        special name.  */
770     SET_DECL_ASSEMBLER_NAME (name_decl,
771                              mangle_typeinfo_string_for_type (target));
772     DECL_INITIAL (name_decl) = name_string;
773     mark_used (name_decl);
774     pushdecl_top_level_and_finish (name_decl, name_string);
775   }
776
777   vtable_ptr = TINFO_VTABLE_DECL (desc);
778   if (!vtable_ptr)
779     {
780       tree real_type;
781   
782       push_nested_namespace (abi_node);
783       real_type = xref_tag (class_type, TINFO_REAL_NAME (desc),
784                             /*attributes=*/NULL_TREE, 1);
785       pop_nested_namespace (abi_node);
786   
787       if (!COMPLETE_TYPE_P (real_type))
788         {
789           /* We never saw a definition of this type, so we need to
790              tell the compiler that this is an exported class, as
791              indeed all of the __*_type_info classes are.  */
792           SET_CLASSTYPE_INTERFACE_KNOWN (real_type);
793           CLASSTYPE_INTERFACE_ONLY (real_type) = 1;
794         }
795
796       vtable_ptr = get_vtable_decl (real_type, /*complete=*/1);
797       vtable_ptr = build_unary_op (ADDR_EXPR, vtable_ptr, 0);
798
799       /* We need to point into the middle of the vtable.  */
800       vtable_ptr = build
801         (PLUS_EXPR, TREE_TYPE (vtable_ptr), vtable_ptr,
802          size_binop (MULT_EXPR,
803                      size_int (2 * TARGET_VTABLE_DATA_ENTRY_DISTANCE),
804                      TYPE_SIZE_UNIT (vtable_entry_type)));
805       TREE_CONSTANT (vtable_ptr) = 1;
806
807       TINFO_VTABLE_DECL (desc) = vtable_ptr;
808     }
809
810   init = tree_cons (NULL_TREE, vtable_ptr, init);
811   
812   init = tree_cons (NULL_TREE, decay_conversion (name_decl), init);
813   
814   init = build_constructor (NULL_TREE, nreverse (init));
815   TREE_HAS_CONSTRUCTOR (init) = TREE_CONSTANT (init) = TREE_STATIC (init) = 1;
816   init = tree_cons (NULL_TREE, init, NULL_TREE);
817   
818   return init;
819 }
820
821 /* Return the CONSTRUCTOR expr for a type_info of TYPE. DESC provides the
822    information about the particular type_info derivation, which adds no
823    additional fields to the type_info base.  */
824
825 static tree
826 generic_initializer (tree desc, tree target)
827 {
828   tree init = tinfo_base_init (desc, target);
829   
830   init = build_constructor (NULL_TREE, init);
831   TREE_HAS_CONSTRUCTOR (init) = TREE_CONSTANT (init) = TREE_STATIC (init) = 1;
832   return init;
833 }
834
835 /* Return the CONSTRUCTOR expr for a type_info of pointer TYPE.
836    DESC provides information about the particular type_info derivation,
837    which adds target type and qualifier flags members to the type_info base.  */
838
839 static tree
840 ptr_initializer (tree desc, tree target, bool *non_public_ptr)
841 {
842   tree init = tinfo_base_init (desc, target);
843   tree to = TREE_TYPE (target);
844   int flags = qualifier_flags (to);
845   bool incomplete = target_incomplete_p (to);
846   
847   if (incomplete)
848     {
849       flags |= 8;
850       *non_public_ptr = true;
851     }
852   init = tree_cons (NULL_TREE, build_int_2 (flags, 0), init);
853   init = tree_cons (NULL_TREE,
854                     get_tinfo_ptr (TYPE_MAIN_VARIANT (to)),
855                     init);
856   
857   init = build_constructor (NULL_TREE, nreverse (init));
858   TREE_HAS_CONSTRUCTOR (init) = TREE_CONSTANT (init) = TREE_STATIC (init) = 1;
859   return init;
860 }
861
862 /* Return the CONSTRUCTOR expr for a type_info of pointer to member data TYPE.
863    DESC provides information about the particular type_info derivation,
864    which adds class, target type and qualifier flags members to the type_info
865    base.  */
866
867 static tree
868 ptm_initializer (tree desc, tree target, bool *non_public_ptr)
869 {
870   tree init = tinfo_base_init (desc, target);
871   tree to = TYPE_PTRMEM_POINTED_TO_TYPE (target);
872   tree klass = TYPE_PTRMEM_CLASS_TYPE (target);
873   int flags = qualifier_flags (to);
874   bool incomplete = target_incomplete_p (to);
875   
876   if (incomplete)
877     {
878       flags |= 0x8;
879       *non_public_ptr = true;
880     }
881   if (!COMPLETE_TYPE_P (klass))
882     {
883       flags |= 0x10;
884       *non_public_ptr = true;
885     }
886   init = tree_cons (NULL_TREE, build_int_2 (flags, 0), init);
887   init = tree_cons (NULL_TREE,
888                     get_tinfo_ptr (TYPE_MAIN_VARIANT (to)),
889                     init);
890   init = tree_cons (NULL_TREE,
891                     get_tinfo_ptr (klass),
892                     init);  
893   
894   init = build_constructor (NULL_TREE, nreverse (init));
895   TREE_HAS_CONSTRUCTOR (init) = TREE_CONSTANT (init) = TREE_STATIC (init) = 1;
896   return init;  
897 }
898
899 /* Check base BINFO to set hint flags in *DATA, which is really an int.
900    We use CLASSTYPE_MARKED to tag types we've found as non-virtual bases and
901    CLASSTYPE_MARKED2 to tag those which are virtual bases. Remember it is
902    possible for a type to be both a virtual and non-virtual base.  */
903
904 static tree
905 dfs_class_hint_mark (tree binfo, void *data)
906 {
907   tree basetype = BINFO_TYPE (binfo);
908   int *hint = (int *) data;
909   
910   if (TREE_VIA_VIRTUAL (binfo))
911     {
912       if (CLASSTYPE_MARKED (basetype))
913         *hint |= 1;
914       if (CLASSTYPE_MARKED2 (basetype))
915         *hint |= 2;
916       SET_CLASSTYPE_MARKED2 (basetype);
917     }
918   else
919     {
920       if (CLASSTYPE_MARKED (basetype) || CLASSTYPE_MARKED2 (basetype))
921         *hint |= 1;
922       SET_CLASSTYPE_MARKED (basetype);
923     }
924   return NULL_TREE;
925 }
926
927 /* Clear the base's dfs marks, after searching for duplicate bases.  */
928
929 static tree
930 dfs_class_hint_unmark (tree binfo, void *data ATTRIBUTE_UNUSED)
931 {
932   tree basetype = BINFO_TYPE (binfo);
933   
934   CLEAR_CLASSTYPE_MARKED (basetype);
935   CLEAR_CLASSTYPE_MARKED2 (basetype);
936   return NULL_TREE;
937 }
938
939 /* Determine the hint flags describing the features of a class's hierarchy.  */
940
941 static int
942 class_hint_flags (tree type)
943 {
944   int hint_flags = 0;
945   
946   dfs_walk (TYPE_BINFO (type), dfs_class_hint_mark, NULL, &hint_flags);
947   dfs_walk (TYPE_BINFO (type), dfs_class_hint_unmark, NULL, NULL);
948   
949   return hint_flags;
950 }
951         
952 /* Return the CONSTRUCTOR expr for a type_info of class TYPE.
953    DESC provides information about the particular __class_type_info derivation,
954    which adds hint flags and TRAIL initializers to the type_info base.  */
955
956 static tree
957 class_initializer (tree desc, tree target, tree trail)
958 {
959   tree init = tinfo_base_init (desc, target);
960   
961   TREE_CHAIN (init) = trail;
962   init = build_constructor (NULL_TREE, init);
963   TREE_HAS_CONSTRUCTOR (init) = TREE_CONSTANT (init) = TREE_STATIC (init) = 1;
964   return init;  
965 }
966
967 /* Returns true if the typeinfo for type should be placed in
968    the runtime library.  */
969
970 static bool
971 typeinfo_in_lib_p (tree type)
972 {
973   /* The typeinfo objects for `T*' and `const T*' are in the runtime
974      library for simple types T.  */
975   if (TREE_CODE (type) == POINTER_TYPE
976       && (cp_type_quals (TREE_TYPE (type)) == TYPE_QUAL_CONST
977           || cp_type_quals (TREE_TYPE (type)) == TYPE_UNQUALIFIED))
978     type = TREE_TYPE (type);
979
980   switch (TREE_CODE (type))
981     {
982     case INTEGER_TYPE:
983     case BOOLEAN_TYPE:
984     case CHAR_TYPE:
985     case REAL_TYPE:
986     case VOID_TYPE:
987       return true;
988     
989     default:
990       return false;
991     }
992 }
993
994 /* Generate the initializer for the type info describing
995    TYPE. VAR_DESC is a . NON_PUBLIC_P is set nonzero, if the VAR_DECL
996    should not be exported from this object file.  This should only be
997    called at the end of translation, when we know that no further
998    types will be completed.  */
999
1000 static tree
1001 get_pseudo_ti_init (tree type, tree var_desc, bool *non_public_p)
1002 {
1003   my_friendly_assert (at_eof, 20021120);
1004   switch (TREE_CODE (type))
1005     {
1006     case POINTER_TYPE:
1007       if (TYPE_PTRMEM_P (type))
1008         return ptm_initializer (var_desc, type, non_public_p);
1009       else
1010         return ptr_initializer (var_desc, type, non_public_p);
1011       break;
1012     case ENUMERAL_TYPE:
1013       return generic_initializer (var_desc, type);
1014       break;
1015     case FUNCTION_TYPE:
1016       return generic_initializer (var_desc, type);
1017       break;
1018     case ARRAY_TYPE:
1019       return generic_initializer (var_desc, type);
1020       break;
1021     case UNION_TYPE:
1022     case RECORD_TYPE:
1023       if (TYPE_PTRMEMFUNC_P (type))
1024         return ptm_initializer (var_desc, type, non_public_p);
1025       else if (var_desc == class_desc_type_node)
1026         {
1027           if (!COMPLETE_TYPE_P (type))
1028             /* Emit a non-public class_type_info.  */
1029             *non_public_p = true;
1030           return class_initializer (var_desc, type, NULL_TREE);
1031         }
1032       else if (var_desc == si_class_desc_type_node)
1033         {
1034           tree base_binfos = BINFO_BASETYPES (TYPE_BINFO (type));
1035           tree base_binfo = TREE_VEC_ELT (base_binfos, 0);
1036           tree tinfo = get_tinfo_ptr (BINFO_TYPE (base_binfo));
1037           tree base_inits = tree_cons (NULL_TREE, tinfo, NULL_TREE);
1038           
1039           return class_initializer (var_desc, type, base_inits);
1040         }
1041       else
1042         {
1043           int hint = class_hint_flags (type);
1044           tree binfo = TYPE_BINFO (type);
1045           int nbases = BINFO_N_BASETYPES (binfo);
1046           tree base_binfos = BINFO_BASETYPES (binfo);
1047           tree base_accesses = BINFO_BASEACCESSES (binfo);
1048           tree base_inits = NULL_TREE;
1049           int ix;
1050           
1051           /* Generate the base information initializer.  */
1052           for (ix = nbases; ix--;)
1053             {
1054               tree base_binfo = TREE_VEC_ELT (base_binfos, ix);
1055               tree base_init = NULL_TREE;
1056               int flags = 0;
1057               tree tinfo;
1058               tree offset;
1059               
1060               if (TREE_VEC_ELT (base_accesses, ix) == access_public_node)
1061                 flags |= 2;
1062               tinfo = get_tinfo_ptr (BINFO_TYPE (base_binfo));
1063               if (TREE_VIA_VIRTUAL (base_binfo))
1064                 {
1065                    /* We store the vtable offset at which the virtual
1066                       base offset can be found.  */
1067                   offset = BINFO_VPTR_FIELD (base_binfo);
1068                   offset = convert (sizetype, offset);
1069                   flags |= 1;
1070                 }
1071               else
1072                 offset = BINFO_OFFSET (base_binfo);
1073               
1074               /* combine offset and flags into one field */
1075               offset = cp_build_binary_op (LSHIFT_EXPR, offset,
1076                                            build_int_2 (8, 0));
1077               offset = cp_build_binary_op (BIT_IOR_EXPR, offset,
1078                                            build_int_2 (flags, 0));
1079               base_init = tree_cons (NULL_TREE, offset, base_init);
1080               base_init = tree_cons (NULL_TREE, tinfo, base_init);
1081               base_init = build_constructor (NULL_TREE, base_init);
1082               TREE_HAS_CONSTRUCTOR (base_init) = 1;
1083               base_inits = tree_cons (NULL_TREE, base_init, base_inits);
1084             }
1085           base_inits = build_constructor (NULL_TREE, base_inits);
1086           TREE_HAS_CONSTRUCTOR (base_inits) = 1;
1087           base_inits = tree_cons (NULL_TREE, base_inits, NULL_TREE);
1088           /* Prepend the number of bases.  */
1089           base_inits = tree_cons (NULL_TREE,
1090                                   build_int_2 (nbases, 0), base_inits);
1091           /* Prepend the hint flags.  */
1092           base_inits = tree_cons (NULL_TREE,
1093                                   build_int_2 (hint, 0), base_inits);
1094
1095           return class_initializer (var_desc, type, base_inits);
1096         }
1097       break;
1098
1099     default:
1100       return generic_initializer (var_desc, type);
1101     }
1102 }
1103
1104 /* Generate the RECORD_TYPE containing the data layout of a type_info
1105    derivative as used by the runtime. This layout must be consistent with
1106    that defined in the runtime support. Also generate the VAR_DECL for the
1107    type's vtable. We explicitly manage the vtable member, and name it for
1108    real type as used in the runtime. The RECORD type has a different name,
1109    to avoid collisions.  Return a TREE_LIST who's TINFO_PSEUDO_TYPE
1110    is the generated type and TINFO_VTABLE_NAME is the name of the
1111    vtable.  We have to delay generating the VAR_DECL of the vtable
1112    until the end of the translation, when we'll have seen the library
1113    definition, if there was one.
1114    
1115    REAL_NAME is the runtime's name of the type. Trailing arguments are
1116    additional FIELD_DECL's for the structure. The final argument must be
1117    NULL.  */
1118
1119 static tree
1120 create_pseudo_type_info (const char *real_name, int ident, ...)
1121 {
1122   tree pseudo_type;
1123   char *pseudo_name;
1124   tree fields;
1125   tree field_decl;
1126   tree result;
1127   va_list ap;
1128
1129   va_start (ap, ident);
1130
1131   /* Generate the pseudo type name.  */
1132   pseudo_name = (char *)alloca (strlen (real_name) + 30);
1133   strcpy (pseudo_name, real_name);
1134   strcat (pseudo_name, "_pseudo");
1135   if (ident)
1136     sprintf (pseudo_name + strlen (pseudo_name), "%d", ident);
1137   
1138   /* First field is the pseudo type_info base class.  */
1139   fields = build_decl (FIELD_DECL, NULL_TREE, ti_desc_type_node);
1140   
1141   /* Now add the derived fields.  */
1142   while ((field_decl = va_arg (ap, tree)))
1143     {
1144       TREE_CHAIN (field_decl) = fields;
1145       fields = field_decl;
1146     }
1147   
1148   /* Create the pseudo type.  */
1149   pseudo_type = make_aggr_type (RECORD_TYPE);
1150   finish_builtin_struct (pseudo_type, pseudo_name, fields, NULL_TREE);
1151   CLASSTYPE_AS_BASE (pseudo_type) = pseudo_type;
1152
1153   result = tree_cons (NULL_TREE, NULL_TREE, NULL_TREE);
1154   TINFO_REAL_NAME (result) = get_identifier (real_name);
1155   TINFO_PSEUDO_TYPE (result) =
1156     cp_build_qualified_type (pseudo_type, TYPE_QUAL_CONST);
1157   
1158   va_end (ap);
1159   return result;
1160 }
1161
1162 /* Return a pseudo type info type node used to describe TYPE.  TYPE
1163    must be a complete type (or cv void), except at the end of the
1164    translation unit.  */
1165
1166 static tree
1167 get_pseudo_ti_desc (tree type)
1168 {
1169   switch (TREE_CODE (type))
1170     {
1171     case POINTER_TYPE:
1172       return TYPE_PTRMEM_P (type) ? ptm_desc_type_node : ptr_desc_type_node;
1173     case ENUMERAL_TYPE:
1174       return enum_desc_type_node;
1175     case FUNCTION_TYPE:
1176       return func_desc_type_node;
1177     case ARRAY_TYPE:
1178       return ary_desc_type_node;
1179     case UNION_TYPE:
1180     case RECORD_TYPE:
1181       if (TYPE_PTRMEMFUNC_P (type))
1182         return ptm_desc_type_node;
1183       else if (!COMPLETE_TYPE_P (type))
1184         {
1185           if (!at_eof)
1186             cxx_incomplete_type_error (NULL_TREE, type);
1187           return class_desc_type_node;
1188         }
1189       else if (!CLASSTYPE_N_BASECLASSES (type))
1190         return class_desc_type_node;
1191       else
1192         {
1193           tree binfo = TYPE_BINFO (type);
1194           tree base_binfos = BINFO_BASETYPES (binfo);
1195           tree base_accesses = BINFO_BASEACCESSES (binfo);
1196           tree base_binfo = TREE_VEC_ELT (base_binfos, 0);
1197           int num_bases = TREE_VEC_LENGTH (base_binfos);
1198           
1199           if (num_bases == 1
1200               && TREE_VEC_ELT (base_accesses, 0) == access_public_node
1201               && !TREE_VIA_VIRTUAL (base_binfo)
1202               && integer_zerop (BINFO_OFFSET (base_binfo)))
1203             /* single non-virtual public.  */
1204             return si_class_desc_type_node;
1205           else
1206             {
1207               tree var_desc;
1208               tree array_domain, base_array;
1209               
1210               if (TREE_VEC_LENGTH (vmi_class_desc_type_node) <= num_bases)
1211                 {
1212                   int ix;
1213                   tree extend = make_tree_vec (num_bases + 5);
1214                   
1215                   for (ix = TREE_VEC_LENGTH (vmi_class_desc_type_node); ix--;)
1216                     TREE_VEC_ELT (extend, ix)
1217                       = TREE_VEC_ELT (vmi_class_desc_type_node, ix);
1218                   vmi_class_desc_type_node = extend;
1219                 }
1220               var_desc = TREE_VEC_ELT (vmi_class_desc_type_node, num_bases);
1221               if (var_desc)
1222                 return var_desc;
1223   
1224               /* Create the array of __base_class_type_info entries.
1225                  G++ 3.2 allocated an array that had one too many
1226                  entries, and then filled that extra entries with
1227                  zeros.  */
1228               if (abi_version_at_least (2))
1229                 array_domain = build_index_type (size_int (num_bases - 1));
1230               else
1231                 array_domain = build_index_type (size_int (num_bases));
1232               base_array =
1233                 build_array_type (base_desc_type_node, array_domain);
1234
1235               push_nested_namespace (abi_node);
1236               var_desc = create_pseudo_type_info
1237                 ("__vmi_class_type_info", num_bases,
1238                  build_decl (FIELD_DECL, NULL_TREE, integer_type_node),
1239                  build_decl (FIELD_DECL, NULL_TREE, integer_type_node),
1240                  build_decl (FIELD_DECL, NULL_TREE, base_array),
1241                  NULL);
1242               pop_nested_namespace (abi_node);
1243
1244               TREE_VEC_ELT (vmi_class_desc_type_node, num_bases) = var_desc;
1245               return var_desc;
1246             }
1247         }
1248     default:
1249       return bltn_desc_type_node;
1250     }
1251 }
1252
1253 /* Make sure the required builtin types exist for generating the type_info
1254    varable definitions.  */
1255
1256 static void
1257 create_tinfo_types (void)
1258 {
1259   my_friendly_assert (!ti_desc_type_node, 20020609);
1260
1261   push_nested_namespace (abi_node);
1262   
1263   /* Create the internal type_info structure. This is used as a base for
1264      the other structures.  */
1265   {
1266     tree field, fields;
1267
1268     ti_desc_type_node = make_aggr_type (RECORD_TYPE);
1269     field = build_decl (FIELD_DECL, NULL_TREE, const_ptr_type_node);
1270     fields = field;
1271     
1272     field = build_decl (FIELD_DECL, NULL_TREE, const_string_type_node);
1273     TREE_CHAIN (field) = fields;
1274     fields = field;
1275     
1276     finish_builtin_struct (ti_desc_type_node, "__type_info_pseudo",
1277                            fields, NULL_TREE);
1278     TYPE_HAS_CONSTRUCTOR (ti_desc_type_node) = 1;
1279   }
1280   
1281   /* Fundamental type_info */
1282   bltn_desc_type_node = create_pseudo_type_info
1283       ("__fundamental_type_info", 0,
1284        NULL);
1285
1286   /* Array, function and enum type_info. No additional fields.  */
1287   ary_desc_type_node = create_pseudo_type_info
1288       ("__array_type_info", 0,
1289        NULL);
1290   func_desc_type_node = create_pseudo_type_info
1291        ("__function_type_info", 0,
1292         NULL);
1293   enum_desc_type_node = create_pseudo_type_info
1294        ("__enum_type_info", 0,
1295         NULL);
1296   
1297   /* Class type_info. Add a flags field.  */
1298   class_desc_type_node = create_pseudo_type_info
1299         ("__class_type_info", 0,
1300          NULL);
1301   
1302   /* Single public non-virtual base class. Add pointer to base class. 
1303      This is really a descendant of __class_type_info.  */
1304   si_class_desc_type_node = create_pseudo_type_info
1305            ("__si_class_type_info", 0,
1306             build_decl (FIELD_DECL, NULL_TREE, type_info_ptr_type),
1307             NULL);
1308   
1309   /* Base class internal helper. Pointer to base type, offset to base,
1310      flags.  */
1311   {
1312     tree field, fields;
1313     
1314     field = build_decl (FIELD_DECL, NULL_TREE, type_info_ptr_type);
1315     fields = field;
1316     
1317     field = build_decl (FIELD_DECL, NULL_TREE, integer_types[itk_long]);
1318     TREE_CHAIN (field) = fields;
1319     fields = field;
1320   
1321     base_desc_type_node = make_aggr_type (RECORD_TYPE);
1322     finish_builtin_struct (base_desc_type_node, "__base_class_type_info_pseudo",
1323                            fields, NULL_TREE);
1324     TYPE_HAS_CONSTRUCTOR (base_desc_type_node) = 1;
1325   }
1326   
1327   /* General hierarchy is created as necessary in this vector.  */
1328   vmi_class_desc_type_node = make_tree_vec (10);
1329   
1330   /* Pointer type_info. Adds two fields, qualification mask
1331      and pointer to the pointed to type.  This is really a descendant of
1332      __pbase_type_info.  */
1333   ptr_desc_type_node = create_pseudo_type_info
1334       ("__pointer_type_info", 0,
1335        build_decl (FIELD_DECL, NULL_TREE, integer_type_node),
1336        build_decl (FIELD_DECL, NULL_TREE, type_info_ptr_type),
1337        NULL);
1338
1339   /* Pointer to member data type_info.  Add qualifications flags,
1340      pointer to the member's type info and pointer to the class.
1341      This is really a descendant of __pbase_type_info.  */
1342   ptm_desc_type_node = create_pseudo_type_info
1343        ("__pointer_to_member_type_info", 0,
1344         build_decl (FIELD_DECL, NULL_TREE, integer_type_node),
1345         build_decl (FIELD_DECL, NULL_TREE, type_info_ptr_type),
1346         build_decl (FIELD_DECL, NULL_TREE, type_info_ptr_type),
1347         NULL);
1348
1349   pop_nested_namespace (abi_node);
1350 }
1351
1352 /* Emit the type_info descriptors which are guaranteed to be in the runtime
1353    support.  Generating them here guarantees consistency with the other
1354    structures.  We use the following heuristic to determine when the runtime
1355    is being generated.  If std::__fundamental_type_info is defined, and its
1356    destructor is defined, then the runtime is being built.  */
1357
1358 void
1359 emit_support_tinfos (void)
1360 {
1361   static tree *const fundamentals[] =
1362   {
1363     &void_type_node,
1364     &boolean_type_node,
1365     &wchar_type_node,
1366     &char_type_node, &signed_char_type_node, &unsigned_char_type_node,
1367     &short_integer_type_node, &short_unsigned_type_node,
1368     &integer_type_node, &unsigned_type_node,
1369     &long_integer_type_node, &long_unsigned_type_node,
1370     &long_long_integer_type_node, &long_long_unsigned_type_node,
1371     &float_type_node, &double_type_node, &long_double_type_node,
1372     0
1373   };
1374   int ix;
1375   tree bltn_type, dtor;
1376   
1377   push_nested_namespace (abi_node);
1378   bltn_type = xref_tag (class_type,
1379                         get_identifier ("__fundamental_type_info"), 
1380                         /*attributes=*/NULL_TREE,
1381                         1);
1382   pop_nested_namespace (abi_node);
1383   if (!COMPLETE_TYPE_P (bltn_type))
1384     return;
1385   dtor = TREE_VEC_ELT (CLASSTYPE_METHOD_VEC (bltn_type), 1);
1386   if (DECL_EXTERNAL (dtor))
1387     return;
1388   doing_runtime = 1;
1389   for (ix = 0; fundamentals[ix]; ix++)
1390     {
1391       tree bltn = *fundamentals[ix];
1392       tree bltn_ptr = build_pointer_type (bltn);
1393       tree bltn_const_ptr = build_pointer_type
1394               (build_qualified_type (bltn, TYPE_QUAL_CONST));
1395       tree tinfo;
1396       
1397       tinfo = get_tinfo_decl (bltn);
1398       TREE_USED (tinfo) = 1;
1399       TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (tinfo)) = 1;
1400       
1401       tinfo = get_tinfo_decl (bltn_ptr);
1402       TREE_USED (tinfo) = 1;
1403       TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (tinfo)) = 1;
1404       
1405       tinfo = get_tinfo_decl (bltn_const_ptr);
1406       TREE_USED (tinfo) = 1;
1407       TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (tinfo)) = 1;
1408     }
1409 }
1410
1411 /* Return true, iff T is a type_info variable which has not had a
1412    definition emitted for it.  */
1413
1414 static bool
1415 unemitted_tinfo_decl_p (tree t)
1416 {
1417   if (/* It's a var decl */
1418       TREE_CODE (t) == VAR_DECL
1419       /* which has a name */
1420       && DECL_NAME (t)
1421       /* whose name points back to itself */
1422       && IDENTIFIER_GLOBAL_VALUE (DECL_NAME (t)) == t
1423       /* whose name's type is non-null */
1424       && TREE_TYPE (DECL_NAME (t))
1425       /* and whose type is a struct */
1426       && TREE_CODE (TREE_TYPE (t)) == RECORD_TYPE
1427       /* with a field */
1428       && TYPE_FIELDS (TREE_TYPE (t))
1429       /* which is our pseudo type info */
1430       && TREE_TYPE (TYPE_FIELDS (TREE_TYPE (t))) == ti_desc_type_node)
1431     return true;
1432   return false;
1433 }
1434
1435 /* Finish a type info decl. DECL_PTR is a pointer to an unemitted
1436    tinfo decl.  Determine whether it needs emitting, and if so
1437    generate the initializer.  */
1438
1439 bool
1440 emit_tinfo_decl (tree decl)
1441 {
1442   tree type = TREE_TYPE (DECL_NAME (decl));
1443   bool non_public;
1444   int in_library = typeinfo_in_lib_p (type);
1445   tree var_desc, var_init;
1446
1447   my_friendly_assert (unemitted_tinfo_decl_p (decl), 20030307); 
1448   
1449   import_export_tinfo (decl, type, in_library);
1450   if (DECL_REALLY_EXTERN (decl) || !DECL_NEEDED_P (decl))
1451     return false;
1452
1453   if (!doing_runtime && in_library)
1454     return false;
1455
1456   non_public = false;
1457   var_desc = get_pseudo_ti_desc (type);
1458   var_init = get_pseudo_ti_init (type, var_desc, &non_public);
1459   
1460   DECL_EXTERNAL (decl) = 0;
1461   TREE_PUBLIC (decl) = !non_public;
1462   if (non_public)
1463     DECL_COMDAT (decl) = 0;
1464
1465   DECL_INITIAL (decl) = var_init;
1466   mark_used (decl);
1467   cp_finish_decl (decl, var_init, NULL_TREE, 0);
1468   /* cp_finish_decl will have dealt with linkage.  */
1469   
1470   /* Say we've dealt with it.  */
1471   TREE_TYPE (DECL_NAME (decl)) = NULL_TREE;
1472
1473   return true;
1474 }