OSDN Git Service

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