PR c++/64359
[official-gcc.git] / gcc / cp / rtti.c
blob2270f3d27052d2bbd9d7a18123bc1c1e872bb27d
1 /* RunTime Type Identification
2 Copyright (C) 1995-2014 Free Software Foundation, Inc.
3 Mostly written by Jason Merrill (jason@cygnus.com).
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "intl.h"
24 #include "coretypes.h"
25 #include "tm.h"
26 #include "tree.h"
27 #include "tm_p.h"
28 #include "stringpool.h"
29 #include "stor-layout.h"
30 #include "cp-tree.h"
31 #include "flags.h"
32 #include "convert.h"
33 #include "target.h"
34 #include "c-family/c-pragma.h"
36 /* C++ returns type information to the user in struct type_info
37 objects. We also use type information to implement dynamic_cast and
38 exception handlers. Type information for a particular type is
39 indicated with an ABI defined structure derived from type_info.
40 This would all be very straight forward, but for the fact that the
41 runtime library provides the definitions of the type_info structure
42 and the ABI defined derived classes. We cannot build declarations
43 of them directly in the compiler, but we need to layout objects of
44 their type. Somewhere we have to lie.
46 We define layout compatible POD-structs with compiler-defined names
47 and generate the appropriate initializations for them (complete
48 with explicit mention of their vtable). When we have to provide a
49 type_info to the user we reinterpret_cast the internal compiler
50 type to type_info. A well formed program can only explicitly refer
51 to the type_infos of complete types (& cv void). However, we chain
52 pointer type_infos to the pointed-to-type, and that can be
53 incomplete. We only need the addresses of such incomplete
54 type_info objects for static initialization.
56 The type information VAR_DECL of a type is held on the
57 IDENTIFIER_GLOBAL_VALUE of the type's mangled name. That VAR_DECL
58 will be the internal type. It will usually have the correct
59 internal type reflecting the kind of type it represents (pointer,
60 array, function, class, inherited class, etc). When the type it
61 represents is incomplete, it will have the internal type
62 corresponding to type_info. That will only happen at the end of
63 translation, when we are emitting the type info objects. */
65 /* Auxiliary data we hold for each type_info derived object we need. */
66 typedef struct GTY (()) tinfo_s {
67 tree type; /* The RECORD_TYPE for this type_info object */
69 tree vtable; /* The VAR_DECL of the vtable. Only filled at end of
70 translation. */
72 tree name; /* IDENTIFIER_NODE for the ABI specified name of
73 the type_info derived type. */
74 } tinfo_s;
77 typedef enum tinfo_kind
79 TK_TYPE_INFO_TYPE, /* abi::__type_info_pseudo */
80 TK_BASE_TYPE, /* abi::__base_class_type_info */
81 TK_BUILTIN_TYPE, /* abi::__fundamental_type_info */
82 TK_ARRAY_TYPE, /* abi::__array_type_info */
83 TK_FUNCTION_TYPE, /* abi::__function_type_info */
84 TK_ENUMERAL_TYPE, /* abi::__enum_type_info */
85 TK_POINTER_TYPE, /* abi::__pointer_type_info */
86 TK_POINTER_MEMBER_TYPE, /* abi::__pointer_to_member_type_info */
87 TK_CLASS_TYPE, /* abi::__class_type_info */
88 TK_SI_CLASS_TYPE, /* abi::__si_class_type_info */
89 TK_FIXED /* end of fixed descriptors. */
90 /* ... abi::__vmi_type_info<I> */
91 } tinfo_kind;
93 /* Helper macro to get maximum scalar-width of pointer or of the 'long'-type.
94 This of interest for llp64 targets. */
95 #define LONGPTR_T \
96 integer_types[(POINTER_SIZE <= TYPE_PRECISION (integer_types[itk_long]) \
97 ? itk_long : itk_long_long)]
99 /* A vector of all tinfo decls that haven't yet been emitted. */
100 vec<tree, va_gc> *unemitted_tinfo_decls;
102 /* A vector of all type_info derived types we need. The first few are
103 fixed and created early. The remainder are for multiple inheritance
104 and are generated as needed. */
105 static GTY (()) vec<tinfo_s, va_gc> *tinfo_descs;
107 static tree ifnonnull (tree, tree, tsubst_flags_t);
108 static tree tinfo_name (tree, bool);
109 static tree build_dynamic_cast_1 (tree, tree, tsubst_flags_t);
110 static tree throw_bad_cast (void);
111 static tree throw_bad_typeid (void);
112 static tree get_tinfo_ptr (tree);
113 static bool typeid_ok_p (void);
114 static int qualifier_flags (tree);
115 static bool target_incomplete_p (tree);
116 static tree tinfo_base_init (tinfo_s *, tree);
117 static tree generic_initializer (tinfo_s *, tree);
118 static tree ptr_initializer (tinfo_s *, tree);
119 static tree ptm_initializer (tinfo_s *, tree);
120 static tree class_initializer (tinfo_s *, tree, unsigned, ...);
121 static void create_pseudo_type_info (int, const char *, ...);
122 static tree get_pseudo_ti_init (tree, unsigned);
123 static unsigned get_pseudo_ti_index (tree);
124 static void create_tinfo_types (void);
125 static bool typeinfo_in_lib_p (tree);
127 static int doing_runtime = 0;
129 static void
130 push_abi_namespace (void)
132 push_nested_namespace (abi_node);
133 push_visibility ("default", 2);
136 static void
137 pop_abi_namespace (void)
139 pop_visibility (2);
140 pop_nested_namespace (abi_node);
143 /* Declare language defined type_info type and a pointer to const
144 type_info. This is incomplete here, and will be completed when
145 the user #includes <typeinfo>. There are language defined
146 restrictions on what can be done until that is included. Create
147 the internal versions of the ABI types. */
149 void
150 init_rtti_processing (void)
152 tree type_info_type;
154 push_namespace (std_identifier);
155 type_info_type = xref_tag (class_type, get_identifier ("type_info"),
156 /*tag_scope=*/ts_current, false);
157 pop_namespace ();
158 const_type_info_type_node
159 = cp_build_qualified_type (type_info_type, TYPE_QUAL_CONST);
160 type_info_ptr_type = build_pointer_type (const_type_info_type_node);
162 vec_alloc (unemitted_tinfo_decls, 124);
164 create_tinfo_types ();
167 /* Given the expression EXP of type `class *', return the head of the
168 object pointed to by EXP with type cv void*, if the class has any
169 virtual functions (TYPE_POLYMORPHIC_P), else just return the
170 expression. */
172 tree
173 build_headof (tree exp)
175 tree type = TREE_TYPE (exp);
176 tree offset;
177 tree index;
179 gcc_assert (TYPE_PTR_P (type));
180 type = TREE_TYPE (type);
182 if (!TYPE_POLYMORPHIC_P (type))
183 return exp;
185 /* We use this a couple of times below, protect it. */
186 exp = save_expr (exp);
188 /* The offset-to-top field is at index -2 from the vptr. */
189 index = build_int_cst (NULL_TREE,
190 -2 * TARGET_VTABLE_DATA_ENTRY_DISTANCE);
192 offset = build_vtbl_ref (cp_build_indirect_ref (exp, RO_NULL,
193 tf_warning_or_error),
194 index);
196 type = cp_build_qualified_type (ptr_type_node,
197 cp_type_quals (TREE_TYPE (exp)));
198 return fold_build_pointer_plus (exp, offset);
201 /* Get a bad_cast node for the program to throw...
203 See libstdc++/exception.cc for __throw_bad_cast */
205 static tree
206 throw_bad_cast (void)
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_list (ptr_type_node,
211 NULL_TREE));
213 return build_cxx_call (fn, 0, NULL, tf_warning_or_error);
216 /* Return an expression for "__cxa_bad_typeid()". The expression
217 returned is an lvalue of type "const std::type_info". */
219 static tree
220 throw_bad_typeid (void)
222 tree fn = get_identifier ("__cxa_bad_typeid");
223 if (!get_global_value_if_present (fn, &fn))
225 tree t;
227 t = build_reference_type (const_type_info_type_node);
228 t = build_function_type_list (t, NULL_TREE);
229 fn = push_throw_library_fn (fn, t);
232 return build_cxx_call (fn, 0, NULL, tf_warning_or_error);
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. */
240 static tree
241 get_tinfo_decl_dynamic (tree exp, tsubst_flags_t complain)
243 tree type;
244 tree t;
246 if (error_operand_p (exp))
247 return error_mark_node;
249 exp = resolve_nondeduced_context (exp);
251 /* peel back references, so they match. */
252 type = non_reference (TREE_TYPE (exp));
254 /* Peel off cv qualifiers. */
255 type = TYPE_MAIN_VARIANT (type);
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_maybe_complain (type, exp, complain);
262 if (!type)
263 return error_mark_node;
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))
268 /* build reference to type_info from vtable. */
269 tree index;
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);
277 else
278 /* Otherwise return the type_info for the static type of the expr. */
279 t = get_tinfo_ptr (TYPE_MAIN_VARIANT (type));
281 return cp_build_indirect_ref (t, RO_NULL, complain);
284 static bool
285 typeid_ok_p (void)
287 tree pseudo_type_info, type_info_type;
289 if (! flag_rtti)
291 error ("cannot use typeid with -fno-rtti");
292 return false;
295 if (!COMPLETE_TYPE_P (const_type_info_type_node))
297 error ("must #include <typeinfo> before using typeid");
298 return false;
301 pseudo_type_info = (*tinfo_descs)[TK_TYPE_INFO_TYPE].type;
302 type_info_type = TYPE_MAIN_VARIANT (const_type_info_type_node);
304 /* Make sure abi::__type_info_pseudo has the same alias set
305 as std::type_info. */
306 if (! TYPE_ALIAS_SET_KNOWN_P (pseudo_type_info))
307 TYPE_ALIAS_SET (pseudo_type_info) = get_alias_set (type_info_type);
308 else
309 gcc_assert (TYPE_ALIAS_SET (pseudo_type_info)
310 == get_alias_set (type_info_type));
312 return true;
315 /* Return an expression for "typeid(EXP)". The expression returned is
316 an lvalue of type "const std::type_info". */
318 tree
319 build_typeid (tree exp, tsubst_flags_t complain)
321 tree cond = NULL_TREE, initial_expr = exp;
322 int nonnull = 0;
324 if (exp == error_mark_node || !typeid_ok_p ())
325 return error_mark_node;
327 if (processing_template_decl)
328 return build_min (TYPEID_EXPR, const_type_info_type_node, exp);
330 /* FIXME when integrating with c_fully_fold, mark
331 resolves_to_fixed_type_p case as a non-constant expression. */
332 if (TYPE_POLYMORPHIC_P (TREE_TYPE (exp))
333 && ! resolves_to_fixed_type_p (exp, &nonnull)
334 && ! nonnull)
336 /* So we need to look into the vtable of the type of exp.
337 Make sure it isn't a null lvalue. */
338 exp = cp_build_addr_expr (exp, complain);
339 exp = stabilize_reference (exp);
340 cond = cp_convert (boolean_type_node, exp, complain);
341 exp = cp_build_indirect_ref (exp, RO_NULL, complain);
344 exp = get_tinfo_decl_dynamic (exp, complain);
346 if (exp == error_mark_node)
347 return error_mark_node;
349 if (cond)
351 tree bad = throw_bad_typeid ();
353 exp = build3 (COND_EXPR, TREE_TYPE (exp), cond, exp, bad);
355 else
356 mark_type_use (initial_expr);
358 return exp;
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)
366 const char *name;
367 int length;
368 tree name_string;
370 name = mangle_type_string (type);
371 length = strlen (name);
373 if (mark_private)
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);
381 else
382 name_string = build_string (length + 1, name);
384 return fix_string_type (name_string);
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. */
391 tree
392 get_tinfo_decl (tree type)
394 tree name;
395 tree d;
397 if (variably_modified_type_p (type, /*fn=*/NULL_TREE))
399 error ("cannot create type information for type %qT because "
400 "it involves types of variable size",
401 type);
402 return error_mark_node;
405 if (TREE_CODE (type) == METHOD_TYPE)
406 type = build_function_type (TREE_TYPE (type),
407 TREE_CHAIN (TYPE_ARG_TYPES (type)));
409 type = complete_type (type);
411 /* For a class type, the variable is cached in the type node
412 itself. */
413 if (CLASS_TYPE_P (type))
415 d = CLASSTYPE_TYPEINFO_VAR (TYPE_MAIN_VARIANT (type));
416 if (d)
417 return d;
420 name = mangle_typeinfo_for_type (type);
422 d = IDENTIFIER_GLOBAL_VALUE (name);
423 if (!d)
425 int ix = get_pseudo_ti_index (type);
426 tinfo_s *ti = &(*tinfo_descs)[ix];
428 d = build_lang_decl (VAR_DECL, name, ti->type);
429 SET_DECL_ASSEMBLER_NAME (d, name);
430 /* Remember the type it is for. */
431 TREE_TYPE (name) = type;
432 DECL_TINFO_P (d) = 1;
433 DECL_ARTIFICIAL (d) = 1;
434 DECL_IGNORED_P (d) = 1;
435 TREE_READONLY (d) = 1;
436 TREE_STATIC (d) = 1;
437 /* Mark the variable as undefined -- but remember that we can
438 define it later if we need to do so. */
439 DECL_EXTERNAL (d) = 1;
440 DECL_NOT_REALLY_EXTERN (d) = 1;
441 set_linkage_according_to_type (type, d);
443 d = pushdecl_top_level_and_finish (d, NULL_TREE);
444 if (CLASS_TYPE_P (type))
445 CLASSTYPE_TYPEINFO_VAR (TYPE_MAIN_VARIANT (type)) = d;
447 /* Add decl to the global array of tinfo decls. */
448 vec_safe_push (unemitted_tinfo_decls, d);
451 return d;
454 /* Return a pointer to a type_info object describing TYPE, suitably
455 cast to the language defined type. */
457 static tree
458 get_tinfo_ptr (tree type)
460 tree decl = get_tinfo_decl (type);
462 mark_used (decl);
463 return build_nop (type_info_ptr_type,
464 build_address (decl));
467 /* Return the type_info object for TYPE. */
469 tree
470 get_typeid (tree type, tsubst_flags_t complain)
472 if (type == error_mark_node || !typeid_ok_p ())
473 return error_mark_node;
475 if (processing_template_decl)
476 return build_min (TYPEID_EXPR, const_type_info_type_node, type);
478 /* If the type of the type-id is a reference type, the result of the
479 typeid expression refers to a type_info object representing the
480 referenced type. */
481 type = non_reference (type);
483 /* This is not one of the uses of a qualified function type in 8.3.5. */
484 if (TREE_CODE (type) == FUNCTION_TYPE
485 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
486 || type_memfn_rqual (type) != REF_QUAL_NONE))
488 if (complain & tf_error)
489 error ("typeid of qualified function type %qT", type);
490 return error_mark_node;
493 /* The top-level cv-qualifiers of the lvalue expression or the type-id
494 that is the operand of typeid are always ignored. */
495 type = TYPE_MAIN_VARIANT (type);
497 /* For UNKNOWN_TYPEs call complete_type_or_else to get diagnostics. */
498 if (CLASS_TYPE_P (type) || type == unknown_type_node
499 || type == init_list_type_node)
500 type = complete_type_or_maybe_complain (type, NULL_TREE, complain);
502 if (!type)
503 return error_mark_node;
505 return cp_build_indirect_ref (get_tinfo_ptr (type), RO_NULL, complain);
508 /* Check whether TEST is null before returning RESULT. If TEST is used in
509 RESULT, it must have previously had a save_expr applied to it. */
511 static tree
512 ifnonnull (tree test, tree result, tsubst_flags_t complain)
514 return build3 (COND_EXPR, TREE_TYPE (result),
515 build2 (EQ_EXPR, boolean_type_node, test,
516 cp_convert (TREE_TYPE (test), nullptr_node,
517 complain)),
518 cp_convert (TREE_TYPE (result), nullptr_node, complain),
519 result);
522 /* Execute a dynamic cast, as described in section 5.2.6 of the 9/93 working
523 paper. */
525 static tree
526 build_dynamic_cast_1 (tree type, tree expr, tsubst_flags_t complain)
528 enum tree_code tc = TREE_CODE (type);
529 tree exprtype;
530 tree dcast_fn;
531 tree old_expr = expr;
532 const char *errstr = NULL;
534 /* Save casted types in the function's used types hash table. */
535 used_types_insert (type);
537 /* T shall be a pointer or reference to a complete class type, or
538 `pointer to cv void''. */
539 switch (tc)
541 case POINTER_TYPE:
542 if (VOID_TYPE_P (TREE_TYPE (type)))
543 break;
544 /* Fall through. */
545 case REFERENCE_TYPE:
546 if (! MAYBE_CLASS_TYPE_P (TREE_TYPE (type)))
548 errstr = _("target is not pointer or reference to class");
549 goto fail;
551 if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (type))))
553 errstr = _("target is not pointer or reference to complete type");
554 goto fail;
556 break;
558 default:
559 errstr = _("target is not pointer or reference");
560 goto fail;
563 if (tc == POINTER_TYPE)
565 expr = decay_conversion (expr, complain);
566 exprtype = TREE_TYPE (expr);
568 /* If T is a pointer type, v shall be an rvalue of a pointer to
569 complete class type, and the result is an rvalue of type T. */
571 expr = mark_rvalue_use (expr);
573 if (!TYPE_PTR_P (exprtype))
575 errstr = _("source is not a pointer");
576 goto fail;
578 if (! MAYBE_CLASS_TYPE_P (TREE_TYPE (exprtype)))
580 errstr = _("source is not a pointer to class");
581 goto fail;
583 if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (exprtype))))
585 errstr = _("source is a pointer to incomplete type");
586 goto fail;
589 else
591 expr = mark_lvalue_use (expr);
593 exprtype = build_reference_type (TREE_TYPE (expr));
595 /* T is a reference type, v shall be an lvalue of a complete class
596 type, and the result is an lvalue of the type referred to by T. */
598 if (! MAYBE_CLASS_TYPE_P (TREE_TYPE (exprtype)))
600 errstr = _("source is not of class type");
601 goto fail;
603 if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (exprtype))))
605 errstr = _("source is of incomplete class type");
606 goto fail;
610 /* The dynamic_cast operator shall not cast away constness. */
611 if (!at_least_as_qualified_p (TREE_TYPE (type),
612 TREE_TYPE (exprtype)))
614 errstr = _("conversion casts away constness");
615 goto fail;
618 /* If *type is an unambiguous accessible base class of *exprtype,
619 convert statically. */
621 tree binfo = lookup_base (TREE_TYPE (exprtype), TREE_TYPE (type),
622 ba_check, NULL, complain);
623 if (binfo)
624 return build_static_cast (type, expr, complain);
627 /* Apply trivial conversion T -> T& for dereferenced ptrs. */
628 if (tc == REFERENCE_TYPE)
629 expr = convert_to_reference (exprtype, expr, CONV_IMPLICIT,
630 LOOKUP_NORMAL, NULL_TREE, complain);
632 /* Otherwise *exprtype must be a polymorphic class (have a vtbl). */
633 if (TYPE_POLYMORPHIC_P (TREE_TYPE (exprtype)))
635 tree expr1;
636 /* if TYPE is `void *', return pointer to complete object. */
637 if (tc == POINTER_TYPE && VOID_TYPE_P (TREE_TYPE (type)))
639 /* if b is an object, dynamic_cast<void *>(&b) == (void *)&b. */
640 if (TREE_CODE (expr) == ADDR_EXPR
641 && VAR_P (TREE_OPERAND (expr, 0))
642 && TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0))) == RECORD_TYPE)
643 return build1 (NOP_EXPR, type, expr);
645 /* Since expr is used twice below, save it. */
646 expr = save_expr (expr);
648 expr1 = build_headof (expr);
649 if (TREE_TYPE (expr1) != type)
650 expr1 = build1 (NOP_EXPR, type, expr1);
651 return ifnonnull (expr, expr1, complain);
653 else
655 tree retval;
656 tree result, td2, td3;
657 tree elems[4];
658 tree static_type, target_type, boff;
660 /* If we got here, we can't convert statically. Therefore,
661 dynamic_cast<D&>(b) (b an object) cannot succeed. */
662 if (tc == REFERENCE_TYPE)
664 if (VAR_P (old_expr)
665 && TREE_CODE (TREE_TYPE (old_expr)) == RECORD_TYPE)
667 tree expr = throw_bad_cast ();
668 if (complain & tf_warning)
669 warning (0, "dynamic_cast of %q#D to %q#T can never succeed",
670 old_expr, type);
671 /* Bash it to the expected type. */
672 TREE_TYPE (expr) = type;
673 return expr;
676 /* Ditto for dynamic_cast<D*>(&b). */
677 else if (TREE_CODE (expr) == ADDR_EXPR)
679 tree op = TREE_OPERAND (expr, 0);
680 if (VAR_P (op)
681 && TREE_CODE (TREE_TYPE (op)) == RECORD_TYPE)
683 if (complain & tf_warning)
684 warning (0, "dynamic_cast of %q#D to %q#T can never succeed",
685 op, type);
686 retval = build_int_cst (type, 0);
687 return retval;
691 /* Use of dynamic_cast when -fno-rtti is prohibited. */
692 if (!flag_rtti)
694 if (complain & tf_error)
695 error ("%<dynamic_cast%> not permitted with -fno-rtti");
696 return error_mark_node;
699 target_type = TYPE_MAIN_VARIANT (TREE_TYPE (type));
700 static_type = TYPE_MAIN_VARIANT (TREE_TYPE (exprtype));
701 td2 = get_tinfo_decl (target_type);
702 mark_used (td2);
703 td2 = cp_build_addr_expr (td2, complain);
704 td3 = get_tinfo_decl (static_type);
705 mark_used (td3);
706 td3 = cp_build_addr_expr (td3, complain);
708 /* Determine how T and V are related. */
709 boff = dcast_base_hint (static_type, target_type);
711 /* Since expr is used twice below, save it. */
712 expr = save_expr (expr);
714 expr1 = expr;
715 if (tc == REFERENCE_TYPE)
716 expr1 = cp_build_addr_expr (expr1, complain);
718 elems[0] = expr1;
719 elems[1] = td3;
720 elems[2] = td2;
721 elems[3] = boff;
723 dcast_fn = dynamic_cast_node;
724 if (!dcast_fn)
726 tree tmp;
727 tree tinfo_ptr;
728 const char *name;
730 push_abi_namespace ();
731 tinfo_ptr = xref_tag (class_type,
732 get_identifier ("__class_type_info"),
733 /*tag_scope=*/ts_current, false);
735 tinfo_ptr = build_pointer_type
736 (cp_build_qualified_type
737 (tinfo_ptr, TYPE_QUAL_CONST));
738 name = "__dynamic_cast";
739 tmp = build_function_type_list (ptr_type_node,
740 const_ptr_type_node,
741 tinfo_ptr, tinfo_ptr,
742 ptrdiff_type_node, NULL_TREE);
743 dcast_fn = build_library_fn_ptr (name, tmp,
744 ECF_LEAF | ECF_PURE | ECF_NOTHROW);
745 pop_abi_namespace ();
746 dynamic_cast_node = dcast_fn;
748 result = build_cxx_call (dcast_fn, 4, elems, complain);
750 if (tc == REFERENCE_TYPE)
752 tree bad = throw_bad_cast ();
753 tree neq;
755 result = save_expr (result);
756 neq = cp_truthvalue_conversion (result);
757 return cp_convert (type,
758 build3 (COND_EXPR, TREE_TYPE (result),
759 neq, result, bad), complain);
762 /* Now back to the type we want from a void*. */
763 result = cp_convert (type, result, complain);
764 return ifnonnull (expr, result, complain);
767 else
768 errstr = _("source type is not polymorphic");
770 fail:
771 if (complain & tf_error)
772 error ("cannot dynamic_cast %qE (of type %q#T) to type %q#T (%s)",
773 old_expr, TREE_TYPE (old_expr), type, errstr);
774 return error_mark_node;
777 tree
778 build_dynamic_cast (tree type, tree expr, tsubst_flags_t complain)
780 tree r;
782 if (type == error_mark_node || expr == error_mark_node)
783 return error_mark_node;
785 if (processing_template_decl)
787 expr = build_min (DYNAMIC_CAST_EXPR, type, expr);
788 TREE_SIDE_EFFECTS (expr) = 1;
789 return convert_from_reference (expr);
792 r = convert_from_reference (build_dynamic_cast_1 (type, expr, complain));
793 if (r != error_mark_node)
794 maybe_warn_about_useless_cast (type, expr, complain);
795 return r;
798 /* Return the runtime bit mask encoding the qualifiers of TYPE. */
800 static int
801 qualifier_flags (tree type)
803 int flags = 0;
804 int quals = cp_type_quals (type);
806 if (quals & TYPE_QUAL_CONST)
807 flags |= 1;
808 if (quals & TYPE_QUAL_VOLATILE)
809 flags |= 2;
810 if (quals & TYPE_QUAL_RESTRICT)
811 flags |= 4;
812 return flags;
815 /* Return true, if the pointer chain TYPE ends at an incomplete type, or
816 contains a pointer to member of an incomplete class. */
818 static bool
819 target_incomplete_p (tree type)
821 while (true)
822 if (TYPE_PTRDATAMEM_P (type))
824 if (!COMPLETE_TYPE_P (TYPE_PTRMEM_CLASS_TYPE (type)))
825 return true;
826 type = TYPE_PTRMEM_POINTED_TO_TYPE (type);
828 else if (TYPE_PTR_P (type))
829 type = TREE_TYPE (type);
830 else
831 return !COMPLETE_OR_VOID_TYPE_P (type);
834 /* Returns true if TYPE involves an incomplete class type; in that
835 case, typeinfo variables for TYPE should be emitted with internal
836 linkage. */
838 static bool
839 involves_incomplete_p (tree type)
841 switch (TREE_CODE (type))
843 case POINTER_TYPE:
844 return target_incomplete_p (TREE_TYPE (type));
846 case OFFSET_TYPE:
847 ptrmem:
848 return
849 (target_incomplete_p (TYPE_PTRMEM_POINTED_TO_TYPE (type))
850 || !COMPLETE_TYPE_P (TYPE_PTRMEM_CLASS_TYPE (type)));
852 case RECORD_TYPE:
853 if (TYPE_PTRMEMFUNC_P (type))
854 goto ptrmem;
855 /* Fall through. */
856 case UNION_TYPE:
857 if (!COMPLETE_TYPE_P (type))
858 return true;
860 default:
861 /* All other types do not involve incomplete class types. */
862 return false;
866 /* Return a CONSTRUCTOR for the common part of the type_info objects. This
867 is the vtable pointer and NTBS name. The NTBS name is emitted as a
868 comdat const char array, so it becomes a unique key for the type. Generate
869 and emit that VAR_DECL here. (We can't always emit the type_info itself
870 as comdat, because of pointers to incomplete.) */
872 static tree
873 tinfo_base_init (tinfo_s *ti, tree target)
875 tree init;
876 tree name_decl;
877 tree vtable_ptr;
878 vec<constructor_elt, va_gc> *v;
881 tree name_name, name_string;
883 /* Generate the NTBS array variable. */
884 tree name_type = build_cplus_array_type
885 (cp_build_qualified_type (char_type_node, TYPE_QUAL_CONST),
886 NULL_TREE);
888 /* Determine the name of the variable -- and remember with which
889 type it is associated. */
890 name_name = mangle_typeinfo_string_for_type (target);
891 TREE_TYPE (name_name) = target;
893 name_decl = build_lang_decl (VAR_DECL, name_name, name_type);
894 SET_DECL_ASSEMBLER_NAME (name_decl, name_name);
895 DECL_ARTIFICIAL (name_decl) = 1;
896 DECL_IGNORED_P (name_decl) = 1;
897 TREE_READONLY (name_decl) = 1;
898 TREE_STATIC (name_decl) = 1;
899 DECL_EXTERNAL (name_decl) = 0;
900 DECL_TINFO_P (name_decl) = 1;
901 set_linkage_according_to_type (target, name_decl);
902 import_export_decl (name_decl);
903 name_string = tinfo_name (target, !TREE_PUBLIC (name_decl));
904 DECL_INITIAL (name_decl) = name_string;
905 mark_used (name_decl);
906 pushdecl_top_level_and_finish (name_decl, name_string);
909 vtable_ptr = ti->vtable;
910 if (!vtable_ptr)
912 tree real_type;
913 push_abi_namespace ();
914 real_type = xref_tag (class_type, ti->name,
915 /*tag_scope=*/ts_current, false);
916 pop_abi_namespace ();
918 if (!COMPLETE_TYPE_P (real_type))
920 /* We never saw a definition of this type, so we need to
921 tell the compiler that this is an exported class, as
922 indeed all of the __*_type_info classes are. */
923 SET_CLASSTYPE_INTERFACE_KNOWN (real_type);
924 CLASSTYPE_INTERFACE_ONLY (real_type) = 1;
927 vtable_ptr = get_vtable_decl (real_type, /*complete=*/1);
928 vtable_ptr = cp_build_addr_expr (vtable_ptr, tf_warning_or_error);
930 /* We need to point into the middle of the vtable. */
931 vtable_ptr = fold_build_pointer_plus
932 (vtable_ptr,
933 size_binop (MULT_EXPR,
934 size_int (2 * TARGET_VTABLE_DATA_ENTRY_DISTANCE),
935 TYPE_SIZE_UNIT (vtable_entry_type)));
937 ti->vtable = vtable_ptr;
940 vec_alloc (v, 2);
941 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, vtable_ptr);
942 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE,
943 decay_conversion (name_decl, tf_warning_or_error));
945 init = build_constructor (init_list_type_node, v);
946 TREE_CONSTANT (init) = 1;
947 TREE_STATIC (init) = 1;
949 return init;
952 /* Return the CONSTRUCTOR expr for a type_info of TYPE. TI provides the
953 information about the particular type_info derivation, which adds no
954 additional fields to the type_info base. */
956 static tree
957 generic_initializer (tinfo_s *ti, tree target)
959 tree init = tinfo_base_init (ti, target);
961 init = build_constructor_single (init_list_type_node, NULL_TREE, init);
962 TREE_CONSTANT (init) = 1;
963 TREE_STATIC (init) = 1;
964 return init;
967 /* Return the CONSTRUCTOR expr for a type_info of pointer TYPE.
968 TI provides information about the particular type_info derivation,
969 which adds target type and qualifier flags members to the type_info base. */
971 static tree
972 ptr_initializer (tinfo_s *ti, tree target)
974 tree init = tinfo_base_init (ti, target);
975 tree to = TREE_TYPE (target);
976 int flags = qualifier_flags (to);
977 bool incomplete = target_incomplete_p (to);
978 vec<constructor_elt, va_gc> *v;
979 vec_alloc (v, 3);
981 if (incomplete)
982 flags |= 8;
983 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, init);
984 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, build_int_cst (NULL_TREE, flags));
985 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE,
986 get_tinfo_ptr (TYPE_MAIN_VARIANT (to)));
988 init = build_constructor (init_list_type_node, v);
989 TREE_CONSTANT (init) = 1;
990 TREE_STATIC (init) = 1;
991 return init;
994 /* Return the CONSTRUCTOR expr for a type_info of pointer to member data TYPE.
995 TI provides information about the particular type_info derivation,
996 which adds class, target type and qualifier flags members to the type_info
997 base. */
999 static tree
1000 ptm_initializer (tinfo_s *ti, tree target)
1002 tree init = tinfo_base_init (ti, target);
1003 tree to = TYPE_PTRMEM_POINTED_TO_TYPE (target);
1004 tree klass = TYPE_PTRMEM_CLASS_TYPE (target);
1005 int flags = qualifier_flags (to);
1006 bool incomplete = target_incomplete_p (to);
1007 vec<constructor_elt, va_gc> *v;
1008 vec_alloc (v, 4);
1010 if (incomplete)
1011 flags |= 0x8;
1012 if (!COMPLETE_TYPE_P (klass))
1013 flags |= 0x10;
1014 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, init);
1015 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, build_int_cst (NULL_TREE, flags));
1016 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE,
1017 get_tinfo_ptr (TYPE_MAIN_VARIANT (to)));
1018 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, get_tinfo_ptr (klass));
1020 init = build_constructor (init_list_type_node, v);
1021 TREE_CONSTANT (init) = 1;
1022 TREE_STATIC (init) = 1;
1023 return init;
1026 /* Return the CONSTRUCTOR expr for a type_info of class TYPE.
1027 TI provides information about the particular __class_type_info derivation,
1028 which adds hint flags and N extra initializers to the type_info base. */
1030 static tree
1031 class_initializer (tinfo_s *ti, tree target, unsigned n, ...)
1033 tree init = tinfo_base_init (ti, target);
1034 va_list extra_inits;
1035 unsigned i;
1036 vec<constructor_elt, va_gc> *v;
1037 vec_alloc (v, n+1);
1039 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, init);
1040 va_start (extra_inits, n);
1041 for (i = 0; i < n; i++)
1042 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, va_arg (extra_inits, tree));
1043 va_end (extra_inits);
1045 init = build_constructor (init_list_type_node, v);
1046 TREE_CONSTANT (init) = 1;
1047 TREE_STATIC (init) = 1;
1048 return init;
1051 /* Returns true if the typeinfo for type should be placed in
1052 the runtime library. */
1054 static bool
1055 typeinfo_in_lib_p (tree type)
1057 /* The typeinfo objects for `T*' and `const T*' are in the runtime
1058 library for simple types T. */
1059 if (TYPE_PTR_P (type)
1060 && (cp_type_quals (TREE_TYPE (type)) == TYPE_QUAL_CONST
1061 || cp_type_quals (TREE_TYPE (type)) == TYPE_UNQUALIFIED))
1062 type = TREE_TYPE (type);
1064 switch (TREE_CODE (type))
1066 case INTEGER_TYPE:
1067 case BOOLEAN_TYPE:
1068 case REAL_TYPE:
1069 case VOID_TYPE:
1070 case NULLPTR_TYPE:
1071 return true;
1073 case LANG_TYPE:
1074 /* fall through. */
1076 default:
1077 return false;
1081 /* Generate the initializer for the type info describing TYPE. TK_INDEX is
1082 the index of the descriptor in the tinfo_desc vector. */
1084 static tree
1085 get_pseudo_ti_init (tree type, unsigned tk_index)
1087 tinfo_s *ti = &(*tinfo_descs)[tk_index];
1089 gcc_assert (at_eof);
1090 switch (tk_index)
1092 case TK_POINTER_MEMBER_TYPE:
1093 return ptm_initializer (ti, type);
1095 case TK_POINTER_TYPE:
1096 return ptr_initializer (ti, type);
1098 case TK_BUILTIN_TYPE:
1099 case TK_ENUMERAL_TYPE:
1100 case TK_FUNCTION_TYPE:
1101 case TK_ARRAY_TYPE:
1102 return generic_initializer (ti, type);
1104 case TK_CLASS_TYPE:
1105 return class_initializer (ti, type, 0);
1107 case TK_SI_CLASS_TYPE:
1109 tree base_binfo = BINFO_BASE_BINFO (TYPE_BINFO (type), 0);
1110 tree tinfo = get_tinfo_ptr (BINFO_TYPE (base_binfo));
1112 /* get_tinfo_ptr might have reallocated the tinfo_descs vector. */
1113 ti = &(*tinfo_descs)[tk_index];
1114 return class_initializer (ti, type, 1, tinfo);
1117 default:
1119 int hint = ((CLASSTYPE_REPEATED_BASE_P (type) << 0)
1120 | (CLASSTYPE_DIAMOND_SHAPED_P (type) << 1));
1121 tree binfo = TYPE_BINFO (type);
1122 int nbases = BINFO_N_BASE_BINFOS (binfo);
1123 vec<tree, va_gc> *base_accesses = BINFO_BASE_ACCESSES (binfo);
1124 tree offset_type = LONGPTR_T;
1125 tree base_inits = NULL_TREE;
1126 int ix;
1127 vec<constructor_elt, va_gc> *init_vec = NULL;
1128 constructor_elt *e;
1130 gcc_assert (tk_index >= TK_FIXED);
1132 vec_safe_grow (init_vec, nbases);
1133 /* Generate the base information initializer. */
1134 for (ix = nbases; ix--;)
1136 tree base_binfo = BINFO_BASE_BINFO (binfo, ix);
1137 tree base_init;
1138 int flags = 0;
1139 tree tinfo;
1140 tree offset;
1141 vec<constructor_elt, va_gc> *v;
1143 if ((*base_accesses)[ix] == access_public_node)
1144 flags |= 2;
1145 tinfo = get_tinfo_ptr (BINFO_TYPE (base_binfo));
1146 if (BINFO_VIRTUAL_P (base_binfo))
1148 /* We store the vtable offset at which the virtual
1149 base offset can be found. */
1150 offset = BINFO_VPTR_FIELD (base_binfo);
1151 flags |= 1;
1153 else
1154 offset = BINFO_OFFSET (base_binfo);
1156 /* Combine offset and flags into one field. */
1157 offset = fold_convert (offset_type, offset);
1158 offset = fold_build2_loc (input_location,
1159 LSHIFT_EXPR, offset_type, offset,
1160 build_int_cst (offset_type, 8));
1161 offset = fold_build2_loc (input_location,
1162 BIT_IOR_EXPR, offset_type, offset,
1163 build_int_cst (offset_type, flags));
1164 vec_alloc (v, 2);
1165 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, tinfo);
1166 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, offset);
1167 base_init = build_constructor (init_list_type_node, v);
1168 e = &(*init_vec)[ix];
1169 e->index = NULL_TREE;
1170 e->value = base_init;
1172 base_inits = build_constructor (init_list_type_node, init_vec);
1174 /* get_tinfo_ptr might have reallocated the tinfo_descs vector. */
1175 ti = &(*tinfo_descs)[tk_index];
1176 return class_initializer (ti, type, 3,
1177 build_int_cst (NULL_TREE, hint),
1178 build_int_cst (NULL_TREE, nbases),
1179 base_inits);
1184 /* Generate the RECORD_TYPE containing the data layout of a type_info
1185 derivative as used by the runtime. This layout must be consistent with
1186 that defined in the runtime support. Also generate the VAR_DECL for the
1187 type's vtable. We explicitly manage the vtable member, and name it for
1188 real type as used in the runtime. The RECORD type has a different name,
1189 to avoid collisions. Return a TREE_LIST who's TINFO_PSEUDO_TYPE
1190 is the generated type and TINFO_VTABLE_NAME is the name of the
1191 vtable. We have to delay generating the VAR_DECL of the vtable
1192 until the end of the translation, when we'll have seen the library
1193 definition, if there was one.
1195 REAL_NAME is the runtime's name of the type. Trailing arguments are
1196 additional FIELD_DECL's for the structure. The final argument must be
1197 NULL. */
1199 static void
1200 create_pseudo_type_info (int tk, const char *real_name, ...)
1202 tinfo_s *ti;
1203 tree pseudo_type;
1204 char *pseudo_name;
1205 tree fields;
1206 tree field_decl;
1207 va_list ap;
1209 va_start (ap, real_name);
1211 /* Generate the pseudo type name. */
1212 pseudo_name = (char *) alloca (strlen (real_name) + 30);
1213 strcpy (pseudo_name, real_name);
1214 strcat (pseudo_name, "_pseudo");
1215 if (tk >= TK_FIXED)
1216 sprintf (pseudo_name + strlen (pseudo_name), "%d", tk - TK_FIXED);
1218 /* First field is the pseudo type_info base class. */
1219 fields = build_decl (input_location,
1220 FIELD_DECL, NULL_TREE,
1221 (*tinfo_descs)[TK_TYPE_INFO_TYPE].type);
1223 /* Now add the derived fields. */
1224 while ((field_decl = va_arg (ap, tree)))
1226 DECL_CHAIN (field_decl) = fields;
1227 fields = field_decl;
1230 /* Create the pseudo type. */
1231 pseudo_type = make_class_type (RECORD_TYPE);
1232 finish_builtin_struct (pseudo_type, pseudo_name, fields, NULL_TREE);
1233 CLASSTYPE_AS_BASE (pseudo_type) = pseudo_type;
1235 ti = &(*tinfo_descs)[tk];
1236 ti->type = cp_build_qualified_type (pseudo_type, TYPE_QUAL_CONST);
1237 ti->name = get_identifier (real_name);
1238 ti->vtable = NULL_TREE;
1240 /* Pretend this is public so determine_visibility doesn't give vtables
1241 internal linkage. */
1242 TREE_PUBLIC (TYPE_MAIN_DECL (ti->type)) = 1;
1244 va_end (ap);
1247 /* Return the index of a pseudo type info type node used to describe
1248 TYPE. TYPE must be a complete type (or cv void), except at the end
1249 of the translation unit. */
1251 static unsigned
1252 get_pseudo_ti_index (tree type)
1254 unsigned ix;
1256 switch (TREE_CODE (type))
1258 case OFFSET_TYPE:
1259 ix = TK_POINTER_MEMBER_TYPE;
1260 break;
1262 case POINTER_TYPE:
1263 ix = TK_POINTER_TYPE;
1264 break;
1266 case ENUMERAL_TYPE:
1267 ix = TK_ENUMERAL_TYPE;
1268 break;
1270 case FUNCTION_TYPE:
1271 ix = TK_FUNCTION_TYPE;
1272 break;
1274 case ARRAY_TYPE:
1275 ix = TK_ARRAY_TYPE;
1276 break;
1278 case UNION_TYPE:
1279 case RECORD_TYPE:
1280 if (TYPE_PTRMEMFUNC_P (type))
1282 ix = TK_POINTER_MEMBER_TYPE;
1283 break;
1285 else if (!COMPLETE_TYPE_P (type))
1287 if (!at_eof)
1288 cxx_incomplete_type_error (NULL_TREE, type);
1289 ix = TK_CLASS_TYPE;
1290 break;
1292 else if (!BINFO_N_BASE_BINFOS (TYPE_BINFO (type)))
1294 ix = TK_CLASS_TYPE;
1295 break;
1297 else
1299 tree binfo = TYPE_BINFO (type);
1300 vec<tree, va_gc> *base_accesses = BINFO_BASE_ACCESSES (binfo);
1301 tree base_binfo = BINFO_BASE_BINFO (binfo, 0);
1302 int num_bases = BINFO_N_BASE_BINFOS (binfo);
1304 if (num_bases == 1
1305 && (*base_accesses)[0] == access_public_node
1306 && !BINFO_VIRTUAL_P (base_binfo)
1307 && integer_zerop (BINFO_OFFSET (base_binfo)))
1309 /* single non-virtual public. */
1310 ix = TK_SI_CLASS_TYPE;
1311 break;
1313 else
1315 tinfo_s *ti;
1316 tree array_domain, base_array;
1318 ix = TK_FIXED + num_bases;
1319 if (vec_safe_length (tinfo_descs) <= ix)
1321 /* too short, extend. */
1322 unsigned len = vec_safe_length (tinfo_descs);
1324 vec_safe_grow (tinfo_descs, ix + 1);
1325 while (tinfo_descs->iterate (len++, &ti))
1326 ti->type = ti->vtable = ti->name = NULL_TREE;
1328 else if ((*tinfo_descs)[ix].type)
1329 /* already created. */
1330 break;
1332 /* Create the array of __base_class_type_info entries. */
1333 array_domain = build_index_type (size_int (num_bases - 1));
1334 base_array = build_array_type ((*tinfo_descs)[TK_BASE_TYPE].type,
1335 array_domain);
1337 push_abi_namespace ();
1338 create_pseudo_type_info
1339 (ix, "__vmi_class_type_info",
1340 build_decl (input_location,
1341 FIELD_DECL, NULL_TREE, integer_type_node),
1342 build_decl (input_location,
1343 FIELD_DECL, NULL_TREE, integer_type_node),
1344 build_decl (input_location,
1345 FIELD_DECL, NULL_TREE, base_array),
1346 NULL);
1347 pop_abi_namespace ();
1348 break;
1351 default:
1352 ix = TK_BUILTIN_TYPE;
1353 break;
1355 return ix;
1358 /* Make sure the required builtin types exist for generating the type_info
1359 variable definitions. */
1361 static void
1362 create_tinfo_types (void)
1364 tinfo_s *ti;
1366 gcc_assert (!tinfo_descs);
1368 vec_safe_grow (tinfo_descs, TK_FIXED);
1370 push_abi_namespace ();
1372 /* Create the internal type_info structure. This is used as a base for
1373 the other structures. */
1375 tree field, fields;
1377 field = build_decl (BUILTINS_LOCATION,
1378 FIELD_DECL, NULL_TREE, const_ptr_type_node);
1379 fields = field;
1381 field = build_decl (BUILTINS_LOCATION,
1382 FIELD_DECL, NULL_TREE, const_string_type_node);
1383 DECL_CHAIN (field) = fields;
1384 fields = field;
1386 ti = &(*tinfo_descs)[TK_TYPE_INFO_TYPE];
1387 ti->type = make_class_type (RECORD_TYPE);
1388 ti->vtable = NULL_TREE;
1389 ti->name = NULL_TREE;
1390 finish_builtin_struct (ti->type, "__type_info_pseudo",
1391 fields, NULL_TREE);
1394 /* Fundamental type_info */
1395 create_pseudo_type_info (TK_BUILTIN_TYPE, "__fundamental_type_info", NULL);
1397 /* Array, function and enum type_info. No additional fields. */
1398 create_pseudo_type_info (TK_ARRAY_TYPE, "__array_type_info", NULL);
1399 create_pseudo_type_info (TK_FUNCTION_TYPE, "__function_type_info", NULL);
1400 create_pseudo_type_info (TK_ENUMERAL_TYPE, "__enum_type_info", NULL);
1402 /* Class type_info. No additional fields. */
1403 create_pseudo_type_info (TK_CLASS_TYPE, "__class_type_info", NULL);
1405 /* Single public non-virtual base class. Add pointer to base class.
1406 This is really a descendant of __class_type_info. */
1407 create_pseudo_type_info (TK_SI_CLASS_TYPE, "__si_class_type_info",
1408 build_decl (BUILTINS_LOCATION,
1409 FIELD_DECL, NULL_TREE, type_info_ptr_type),
1410 NULL);
1412 /* Base class internal helper. Pointer to base type, offset to base,
1413 flags. */
1415 tree field, fields;
1417 field = build_decl (BUILTINS_LOCATION,
1418 FIELD_DECL, NULL_TREE, type_info_ptr_type);
1419 fields = field;
1421 field = build_decl (BUILTINS_LOCATION,
1422 FIELD_DECL, NULL_TREE, LONGPTR_T);
1423 DECL_CHAIN (field) = fields;
1424 fields = field;
1426 ti = &(*tinfo_descs)[TK_BASE_TYPE];
1428 ti->type = make_class_type (RECORD_TYPE);
1429 ti->vtable = NULL_TREE;
1430 ti->name = NULL_TREE;
1431 finish_builtin_struct (ti->type, "__base_class_type_info_pseudo",
1432 fields, NULL_TREE);
1435 /* Pointer type_info. Adds two fields, qualification mask
1436 and pointer to the pointed to type. This is really a descendant of
1437 __pbase_type_info. */
1438 create_pseudo_type_info (TK_POINTER_TYPE, "__pointer_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 NULL);
1445 /* Pointer to member data type_info. Add qualifications flags,
1446 pointer to the member's type info and pointer to the class.
1447 This is really a descendant of __pbase_type_info. */
1448 create_pseudo_type_info (TK_POINTER_MEMBER_TYPE,
1449 "__pointer_to_member_type_info",
1450 build_decl (BUILTINS_LOCATION,
1451 FIELD_DECL, NULL_TREE, integer_type_node),
1452 build_decl (BUILTINS_LOCATION,
1453 FIELD_DECL, NULL_TREE, type_info_ptr_type),
1454 build_decl (BUILTINS_LOCATION,
1455 FIELD_DECL, NULL_TREE, type_info_ptr_type),
1456 NULL);
1458 pop_abi_namespace ();
1461 /* Helper for emit_support_tinfos. Emits the type_info descriptor of
1462 a single type. */
1464 void
1465 emit_support_tinfo_1 (tree bltn)
1467 tree types[3];
1469 if (bltn == NULL_TREE)
1470 return;
1471 types[0] = bltn;
1472 types[1] = build_pointer_type (bltn);
1473 types[2] = build_pointer_type (cp_build_qualified_type (bltn,
1474 TYPE_QUAL_CONST));
1476 for (int i = 0; i < 3; ++i)
1478 tree tinfo = get_tinfo_decl (types[i]);
1479 TREE_USED (tinfo) = 1;
1480 mark_needed (tinfo);
1481 /* The C++ ABI requires that these objects be COMDAT. But,
1482 On systems without weak symbols, initialized COMDAT
1483 objects are emitted with internal linkage. (See
1484 comdat_linkage for details.) Since we want these objects
1485 to have external linkage so that copies do not have to be
1486 emitted in code outside the runtime library, we make them
1487 non-COMDAT here.
1489 It might also not be necessary to follow this detail of the
1490 ABI. */
1491 if (!flag_weak || ! targetm.cxx.library_rtti_comdat ())
1493 gcc_assert (TREE_PUBLIC (tinfo) && !DECL_COMDAT (tinfo));
1494 DECL_INTERFACE_KNOWN (tinfo) = 1;
1499 /* Emit the type_info descriptors which are guaranteed to be in the runtime
1500 support. Generating them here guarantees consistency with the other
1501 structures. We use the following heuristic to determine when the runtime
1502 is being generated. If std::__fundamental_type_info is defined, and its
1503 destructor is defined, then the runtime is being built. */
1505 void
1506 emit_support_tinfos (void)
1508 /* Dummy static variable so we can put nullptr in the array; it will be
1509 set before we actually start to walk the array. */
1510 static tree *const fundamentals[] =
1512 &void_type_node,
1513 &boolean_type_node,
1514 &wchar_type_node, &char16_type_node, &char32_type_node,
1515 &char_type_node, &signed_char_type_node, &unsigned_char_type_node,
1516 &short_integer_type_node, &short_unsigned_type_node,
1517 &integer_type_node, &unsigned_type_node,
1518 &long_integer_type_node, &long_unsigned_type_node,
1519 &long_long_integer_type_node, &long_long_unsigned_type_node,
1520 &float_type_node, &double_type_node, &long_double_type_node,
1521 &dfloat32_type_node, &dfloat64_type_node, &dfloat128_type_node,
1522 &nullptr_type_node,
1525 int ix;
1526 tree bltn_type, dtor;
1528 push_abi_namespace ();
1529 bltn_type = xref_tag (class_type,
1530 get_identifier ("__fundamental_type_info"),
1531 /*tag_scope=*/ts_current, false);
1532 pop_abi_namespace ();
1533 if (!COMPLETE_TYPE_P (bltn_type))
1534 return;
1535 dtor = CLASSTYPE_DESTRUCTORS (bltn_type);
1536 if (!dtor || DECL_EXTERNAL (dtor))
1537 return;
1538 doing_runtime = 1;
1539 for (ix = 0; fundamentals[ix]; ix++)
1540 emit_support_tinfo_1 (*fundamentals[ix]);
1541 for (ix = 0; ix < NUM_INT_N_ENTS; ix ++)
1542 if (int_n_enabled_p[ix])
1544 emit_support_tinfo_1 (int_n_trees[ix].signed_type);
1545 emit_support_tinfo_1 (int_n_trees[ix].unsigned_type);
1547 for (tree t = registered_builtin_types; t; t = TREE_CHAIN (t))
1548 emit_support_tinfo_1 (TREE_VALUE (t));
1551 /* Finish a type info decl. DECL_PTR is a pointer to an unemitted
1552 tinfo decl. Determine whether it needs emitting, and if so
1553 generate the initializer. */
1555 bool
1556 emit_tinfo_decl (tree decl)
1558 tree type = TREE_TYPE (DECL_NAME (decl));
1559 int in_library = typeinfo_in_lib_p (type);
1561 gcc_assert (DECL_TINFO_P (decl));
1563 if (in_library)
1565 if (doing_runtime)
1566 DECL_EXTERNAL (decl) = 0;
1567 else
1569 /* If we're not in the runtime, then DECL (which is already
1570 DECL_EXTERNAL) will not be defined here. */
1571 DECL_INTERFACE_KNOWN (decl) = 1;
1572 return false;
1575 else if (involves_incomplete_p (type))
1577 if (!decl_needed_p (decl))
1578 return false;
1579 /* If TYPE involves an incomplete class type, then the typeinfo
1580 object will be emitted with internal linkage. There is no
1581 way to know whether or not types are incomplete until the end
1582 of the compilation, so this determination must be deferred
1583 until this point. */
1584 TREE_PUBLIC (decl) = 0;
1585 DECL_EXTERNAL (decl) = 0;
1586 DECL_INTERFACE_KNOWN (decl) = 1;
1589 import_export_decl (decl);
1590 if (DECL_NOT_REALLY_EXTERN (decl) && decl_needed_p (decl))
1592 tree init;
1594 DECL_EXTERNAL (decl) = 0;
1595 init = get_pseudo_ti_init (type, get_pseudo_ti_index (type));
1596 DECL_INITIAL (decl) = init;
1597 mark_used (decl);
1598 cp_finish_decl (decl, init, false, NULL_TREE, 0);
1599 /* Avoid targets optionally bumping up the alignment to improve
1600 vector instruction accesses, tinfo are never accessed this way. */
1601 #ifdef DATA_ABI_ALIGNMENT
1602 DECL_ALIGN (decl) = DATA_ABI_ALIGNMENT (decl, TYPE_ALIGN (TREE_TYPE (decl)));
1603 DECL_USER_ALIGN (decl) = true;
1604 #endif
1605 return true;
1607 else
1608 return false;
1611 #include "gt-cp-rtti.h"