Daily bump.
[official-gcc.git] / gcc / cp / rtti.c
blobe4b6e00e3b8b8a3e69b2cfe7c792cd5cf1daa990
1 /* RunTime Type Identification
2 Copyright (C) 1995-2015 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 "alias.h"
27 #include "tree.h"
28 #include "tm_p.h"
29 #include "stringpool.h"
30 #include "stor-layout.h"
31 #include "cp-tree.h"
32 #include "flags.h"
33 #include "convert.h"
34 #include "target.h"
35 #include "c-family/c-pragma.h"
37 /* C++ returns type information to the user in struct type_info
38 objects. We also use type information to implement dynamic_cast and
39 exception handlers. Type information for a particular type is
40 indicated with an ABI defined structure derived from type_info.
41 This would all be very straight forward, but for the fact that the
42 runtime library provides the definitions of the type_info structure
43 and the ABI defined derived classes. We cannot build declarations
44 of them directly in the compiler, but we need to layout objects of
45 their type. Somewhere we have to lie.
47 We define layout compatible POD-structs with compiler-defined names
48 and generate the appropriate initializations for them (complete
49 with explicit mention of their vtable). When we have to provide a
50 type_info to the user we reinterpret_cast the internal compiler
51 type to type_info. A well formed program can only explicitly refer
52 to the type_infos of complete types (& cv void). However, we chain
53 pointer type_infos to the pointed-to-type, and that can be
54 incomplete. We only need the addresses of such incomplete
55 type_info objects for static initialization.
57 The type information VAR_DECL of a type is held on the
58 IDENTIFIER_GLOBAL_VALUE of the type's mangled name. That VAR_DECL
59 will be the internal type. It will usually have the correct
60 internal type reflecting the kind of type it represents (pointer,
61 array, function, class, inherited class, etc). When the type it
62 represents is incomplete, it will have the internal type
63 corresponding to type_info. That will only happen at the end of
64 translation, when we are emitting the type info objects. */
66 /* Auxiliary data we hold for each type_info derived object we need. */
67 struct GTY (()) tinfo_s {
68 tree type; /* The RECORD_TYPE for this type_info object */
70 tree vtable; /* The VAR_DECL of the vtable. Only filled at end of
71 translation. */
73 tree name; /* IDENTIFIER_NODE for the ABI specified name of
74 the type_info derived type. */
78 enum tinfo_kind
80 TK_TYPE_INFO_TYPE, /* abi::__type_info_pseudo */
81 TK_BASE_TYPE, /* abi::__base_class_type_info */
82 TK_BUILTIN_TYPE, /* abi::__fundamental_type_info */
83 TK_ARRAY_TYPE, /* abi::__array_type_info */
84 TK_FUNCTION_TYPE, /* abi::__function_type_info */
85 TK_ENUMERAL_TYPE, /* abi::__enum_type_info */
86 TK_POINTER_TYPE, /* abi::__pointer_type_info */
87 TK_POINTER_MEMBER_TYPE, /* abi::__pointer_to_member_type_info */
88 TK_CLASS_TYPE, /* abi::__class_type_info */
89 TK_SI_CLASS_TYPE, /* abi::__si_class_type_info */
90 TK_FIXED /* end of fixed descriptors. */
91 /* ... abi::__vmi_type_info<I> */
94 /* Helper macro to get maximum scalar-width of pointer or of the 'long'-type.
95 This of interest for llp64 targets. */
96 #define LONGPTR_T \
97 integer_types[(POINTER_SIZE <= TYPE_PRECISION (integer_types[itk_long]) \
98 ? itk_long : itk_long_long)]
100 /* A vector of all tinfo decls that haven't yet been emitted. */
101 vec<tree, va_gc> *unemitted_tinfo_decls;
103 /* A vector of all type_info derived types we need. The first few are
104 fixed and created early. The remainder are for multiple inheritance
105 and are generated as needed. */
106 static GTY (()) vec<tinfo_s, va_gc> *tinfo_descs;
108 static tree ifnonnull (tree, tree, tsubst_flags_t);
109 static tree tinfo_name (tree, bool);
110 static tree build_dynamic_cast_1 (tree, tree, tsubst_flags_t);
111 static tree throw_bad_cast (void);
112 static tree throw_bad_typeid (void);
113 static tree get_tinfo_ptr (tree);
114 static bool typeid_ok_p (void);
115 static int qualifier_flags (tree);
116 static bool target_incomplete_p (tree);
117 static tree tinfo_base_init (tinfo_s *, tree);
118 static tree generic_initializer (tinfo_s *, tree);
119 static tree ptr_initializer (tinfo_s *, tree);
120 static tree ptm_initializer (tinfo_s *, tree);
121 static tree class_initializer (tinfo_s *, tree, unsigned, ...);
122 static void create_pseudo_type_info (int, const char *, ...);
123 static tree get_pseudo_ti_init (tree, unsigned);
124 static unsigned get_pseudo_ti_index (tree);
125 static void create_tinfo_types (void);
126 static bool typeinfo_in_lib_p (tree);
128 static int doing_runtime = 0;
130 static void
131 push_abi_namespace (void)
133 push_nested_namespace (abi_node);
134 push_visibility ("default", 2);
137 static void
138 pop_abi_namespace (void)
140 pop_visibility (2);
141 pop_nested_namespace (abi_node);
144 /* Declare language defined type_info type and a pointer to const
145 type_info. This is incomplete here, and will be completed when
146 the user #includes <typeinfo>. There are language defined
147 restrictions on what can be done until that is included. Create
148 the internal versions of the ABI types. */
150 void
151 init_rtti_processing (void)
153 tree type_info_type;
155 push_namespace (std_identifier);
156 type_info_type = xref_tag (class_type, get_identifier ("type_info"),
157 /*tag_scope=*/ts_current, false);
158 pop_namespace ();
159 const_type_info_type_node
160 = cp_build_qualified_type (type_info_type, TYPE_QUAL_CONST);
161 type_info_ptr_type = build_pointer_type (const_type_info_type_node);
163 vec_alloc (unemitted_tinfo_decls, 124);
165 create_tinfo_types ();
168 /* Given the expression EXP of type `class *', return the head of the
169 object pointed to by EXP with type cv void*, if the class has any
170 virtual functions (TYPE_POLYMORPHIC_P), else just return the
171 expression. */
173 tree
174 build_headof (tree exp)
176 tree type = TREE_TYPE (exp);
177 tree offset;
178 tree index;
180 gcc_assert (TYPE_PTR_P (type));
181 type = TREE_TYPE (type);
183 if (!TYPE_POLYMORPHIC_P (type))
184 return exp;
186 /* We use this a couple of times below, protect it. */
187 exp = save_expr (exp);
189 /* The offset-to-top field is at index -2 from the vptr. */
190 index = build_int_cst (NULL_TREE,
191 -2 * TARGET_VTABLE_DATA_ENTRY_DISTANCE);
193 offset = build_vtbl_ref (cp_build_indirect_ref (exp, RO_NULL,
194 tf_warning_or_error),
195 index);
197 type = cp_build_qualified_type (ptr_type_node,
198 cp_type_quals (TREE_TYPE (exp)));
199 return fold_build_pointer_plus (exp, offset);
202 /* Get a bad_cast node for the program to throw...
204 See libstdc++/exception.cc for __throw_bad_cast */
206 static tree
207 throw_bad_cast (void)
209 tree fn = get_identifier ("__cxa_bad_cast");
210 if (!get_global_value_if_present (fn, &fn))
211 fn = push_throw_library_fn (fn, build_function_type_list (ptr_type_node,
212 NULL_TREE));
214 return build_cxx_call (fn, 0, NULL, tf_warning_or_error);
217 /* Return an expression for "__cxa_bad_typeid()". The expression
218 returned is an lvalue of type "const std::type_info". */
220 static tree
221 throw_bad_typeid (void)
223 tree fn = get_identifier ("__cxa_bad_typeid");
224 if (!get_global_value_if_present (fn, &fn))
226 tree t;
228 t = build_reference_type (const_type_info_type_node);
229 t = build_function_type_list (t, NULL_TREE);
230 fn = push_throw_library_fn (fn, t);
233 return build_cxx_call (fn, 0, NULL, tf_warning_or_error);
236 /* Return an lvalue expression whose type is "const std::type_info"
237 and whose value indicates the type of the expression EXP. If EXP
238 is a reference to a polymorphic class, return the dynamic type;
239 otherwise return the static type of the expression. */
241 static tree
242 get_tinfo_decl_dynamic (tree exp, tsubst_flags_t complain)
244 tree type;
245 tree t;
247 if (error_operand_p (exp))
248 return error_mark_node;
250 exp = resolve_nondeduced_context (exp);
252 /* peel back references, so they match. */
253 type = non_reference (TREE_TYPE (exp));
255 /* Peel off cv qualifiers. */
256 type = TYPE_MAIN_VARIANT (type);
258 /* For UNKNOWN_TYPEs call complete_type_or_else to get diagnostics. */
259 if (CLASS_TYPE_P (type) || type == unknown_type_node
260 || type == init_list_type_node)
261 type = complete_type_or_maybe_complain (type, exp, complain);
263 if (!type)
264 return error_mark_node;
266 /* If exp is a reference to polymorphic type, get the real type_info. */
267 if (TYPE_POLYMORPHIC_P (type) && ! resolves_to_fixed_type_p (exp, 0))
269 /* build reference to type_info from vtable. */
270 tree index;
272 /* The RTTI information is at index -1. */
273 index = build_int_cst (NULL_TREE,
274 -1 * TARGET_VTABLE_DATA_ENTRY_DISTANCE);
275 t = build_vtbl_ref (exp, index);
276 t = convert (type_info_ptr_type, t);
278 else
279 /* Otherwise return the type_info for the static type of the expr. */
280 t = get_tinfo_ptr (TYPE_MAIN_VARIANT (type));
282 return cp_build_indirect_ref (t, RO_NULL, complain);
285 static bool
286 typeid_ok_p (void)
288 tree pseudo_type_info, type_info_type;
290 if (! flag_rtti)
292 error ("cannot use typeid with -fno-rtti");
293 return false;
296 if (!COMPLETE_TYPE_P (const_type_info_type_node))
298 error ("must #include <typeinfo> before using typeid");
299 return false;
302 pseudo_type_info = (*tinfo_descs)[TK_TYPE_INFO_TYPE].type;
303 type_info_type = TYPE_MAIN_VARIANT (const_type_info_type_node);
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));
313 return true;
316 /* Return an expression for "typeid(EXP)". The expression returned is
317 an lvalue of type "const std::type_info". */
319 tree
320 build_typeid (tree exp, tsubst_flags_t complain)
322 tree cond = NULL_TREE, initial_expr = exp;
323 int nonnull = 0;
325 if (exp == error_mark_node || !typeid_ok_p ())
326 return error_mark_node;
328 if (processing_template_decl)
329 return build_min (TYPEID_EXPR, const_type_info_type_node, exp);
331 /* FIXME when integrating with c_fully_fold, mark
332 resolves_to_fixed_type_p case as a non-constant expression. */
333 if (TYPE_POLYMORPHIC_P (TREE_TYPE (exp))
334 && ! resolves_to_fixed_type_p (exp, &nonnull)
335 && ! nonnull)
337 /* So we need to look into the vtable of the type of exp.
338 Make sure it isn't a null lvalue. */
339 exp = cp_build_addr_expr (exp, complain);
340 exp = stabilize_reference (exp);
341 cond = cp_convert (boolean_type_node, exp, complain);
342 exp = cp_build_indirect_ref (exp, RO_NULL, complain);
345 exp = get_tinfo_decl_dynamic (exp, complain);
347 if (exp == error_mark_node)
348 return error_mark_node;
350 if (cond)
352 tree bad = throw_bad_typeid ();
354 exp = build3 (COND_EXPR, TREE_TYPE (exp), cond, exp, bad);
356 else
357 mark_type_use (initial_expr);
359 return exp;
362 /* Generate the NTBS name of a type. If MARK_PRIVATE, put a '*' in front so that
363 comparisons will be done by pointer rather than string comparison. */
364 static tree
365 tinfo_name (tree type, bool mark_private)
367 const char *name;
368 int length;
369 tree name_string;
371 name = mangle_type_string (type);
372 length = strlen (name);
374 if (mark_private)
376 /* Inject '*' at beginning of name to force pointer comparison. */
377 char* buf = (char*) XALLOCAVEC (char, length + 2);
378 buf[0] = '*';
379 memcpy (buf + 1, name, length + 1);
380 name_string = build_string (length + 2, buf);
382 else
383 name_string = build_string (length + 1, name);
385 return fix_string_type (name_string);
388 /* Return a VAR_DECL for the internal ABI defined type_info object for
389 TYPE. You must arrange that the decl is mark_used, if actually use
390 it --- decls in vtables are only used if the vtable is output. */
392 tree
393 get_tinfo_decl (tree type)
395 tree name;
396 tree d;
398 if (variably_modified_type_p (type, /*fn=*/NULL_TREE))
400 error ("cannot create type information for type %qT because "
401 "it involves types of variable size",
402 type);
403 return error_mark_node;
406 if (TREE_CODE (type) == METHOD_TYPE)
407 type = build_function_type (TREE_TYPE (type),
408 TREE_CHAIN (TYPE_ARG_TYPES (type)));
410 type = complete_type (type);
412 /* For a class type, the variable is cached in the type node
413 itself. */
414 if (CLASS_TYPE_P (type))
416 d = CLASSTYPE_TYPEINFO_VAR (TYPE_MAIN_VARIANT (type));
417 if (d)
418 return d;
421 name = mangle_typeinfo_for_type (type);
423 d = IDENTIFIER_GLOBAL_VALUE (name);
424 if (!d)
426 int ix = get_pseudo_ti_index (type);
427 tinfo_s *ti = &(*tinfo_descs)[ix];
429 d = build_lang_decl (VAR_DECL, name, ti->type);
430 SET_DECL_ASSEMBLER_NAME (d, name);
431 /* Remember the type it is for. */
432 TREE_TYPE (name) = type;
433 DECL_TINFO_P (d) = 1;
434 DECL_ARTIFICIAL (d) = 1;
435 DECL_IGNORED_P (d) = 1;
436 TREE_READONLY (d) = 1;
437 TREE_STATIC (d) = 1;
438 /* Mark the variable as undefined -- but remember that we can
439 define it later if we need to do so. */
440 DECL_EXTERNAL (d) = 1;
441 DECL_NOT_REALLY_EXTERN (d) = 1;
442 set_linkage_according_to_type (type, d);
444 d = pushdecl_top_level_and_finish (d, NULL_TREE);
445 if (CLASS_TYPE_P (type))
446 CLASSTYPE_TYPEINFO_VAR (TYPE_MAIN_VARIANT (type)) = d;
448 /* Add decl to the global array of tinfo decls. */
449 vec_safe_push (unemitted_tinfo_decls, d);
452 return d;
455 /* Return a pointer to a type_info object describing TYPE, suitably
456 cast to the language defined type. */
458 static tree
459 get_tinfo_ptr (tree type)
461 tree decl = get_tinfo_decl (type);
463 mark_used (decl);
464 return build_nop (type_info_ptr_type,
465 build_address (decl));
468 /* Return the type_info object for TYPE. */
470 tree
471 get_typeid (tree type, tsubst_flags_t complain)
473 if (type == error_mark_node || !typeid_ok_p ())
474 return error_mark_node;
476 if (processing_template_decl)
477 return build_min (TYPEID_EXPR, const_type_info_type_node, type);
479 /* If the type of the type-id is a reference type, the result of the
480 typeid expression refers to a type_info object representing the
481 referenced type. */
482 type = non_reference (type);
484 /* This is not one of the uses of a qualified function type in 8.3.5. */
485 if (TREE_CODE (type) == FUNCTION_TYPE
486 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
487 || type_memfn_rqual (type) != REF_QUAL_NONE))
489 if (complain & tf_error)
490 error ("typeid of qualified function type %qT", type);
491 return error_mark_node;
494 /* The top-level cv-qualifiers of the lvalue expression or the type-id
495 that is the operand of typeid are always ignored. */
496 type = TYPE_MAIN_VARIANT (type);
498 /* For UNKNOWN_TYPEs call complete_type_or_else to get diagnostics. */
499 if (CLASS_TYPE_P (type) || type == unknown_type_node
500 || type == init_list_type_node)
501 type = complete_type_or_maybe_complain (type, NULL_TREE, complain);
503 if (!type)
504 return error_mark_node;
506 return cp_build_indirect_ref (get_tinfo_ptr (type), RO_NULL, complain);
509 /* Check whether TEST is null before returning RESULT. If TEST is used in
510 RESULT, it must have previously had a save_expr applied to it. */
512 static tree
513 ifnonnull (tree test, tree result, tsubst_flags_t complain)
515 return build3 (COND_EXPR, TREE_TYPE (result),
516 build2 (EQ_EXPR, boolean_type_node, test,
517 cp_convert (TREE_TYPE (test), nullptr_node,
518 complain)),
519 cp_convert (TREE_TYPE (result), nullptr_node, complain),
520 result);
523 /* Execute a dynamic cast, as described in section 5.2.6 of the 9/93 working
524 paper. */
526 static tree
527 build_dynamic_cast_1 (tree type, tree expr, tsubst_flags_t complain)
529 enum tree_code tc = TREE_CODE (type);
530 tree exprtype;
531 tree dcast_fn;
532 tree old_expr = expr;
533 const char *errstr = NULL;
535 /* Save casted types in the function's used types hash table. */
536 used_types_insert (type);
538 /* T shall be a pointer or reference to a complete class type, or
539 `pointer to cv void''. */
540 switch (tc)
542 case POINTER_TYPE:
543 if (VOID_TYPE_P (TREE_TYPE (type)))
544 break;
545 /* Fall through. */
546 case REFERENCE_TYPE:
547 if (! MAYBE_CLASS_TYPE_P (TREE_TYPE (type)))
549 errstr = _("target is not pointer or reference to class");
550 goto fail;
552 if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (type))))
554 errstr = _("target is not pointer or reference to complete type");
555 goto fail;
557 break;
559 default:
560 errstr = _("target is not pointer or reference");
561 goto fail;
564 if (tc == POINTER_TYPE)
566 expr = decay_conversion (expr, complain);
567 exprtype = TREE_TYPE (expr);
569 /* If T is a pointer type, v shall be an rvalue of a pointer to
570 complete class type, and the result is an rvalue of type T. */
572 expr = mark_rvalue_use (expr);
574 if (!TYPE_PTR_P (exprtype))
576 errstr = _("source is not a pointer");
577 goto fail;
579 if (! MAYBE_CLASS_TYPE_P (TREE_TYPE (exprtype)))
581 errstr = _("source is not a pointer to class");
582 goto fail;
584 if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (exprtype))))
586 errstr = _("source is a pointer to incomplete type");
587 goto fail;
590 else
592 expr = mark_lvalue_use (expr);
594 exprtype = build_reference_type (TREE_TYPE (expr));
596 /* T is a reference type, v shall be an lvalue of a complete class
597 type, and the result is an lvalue of the type referred to by T. */
599 if (! MAYBE_CLASS_TYPE_P (TREE_TYPE (exprtype)))
601 errstr = _("source is not of class type");
602 goto fail;
604 if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (exprtype))))
606 errstr = _("source is of incomplete class type");
607 goto fail;
611 /* The dynamic_cast operator shall not cast away constness. */
612 if (!at_least_as_qualified_p (TREE_TYPE (type),
613 TREE_TYPE (exprtype)))
615 errstr = _("conversion casts away constness");
616 goto fail;
619 /* If *type is an unambiguous accessible base class of *exprtype,
620 convert statically. */
622 tree binfo = lookup_base (TREE_TYPE (exprtype), TREE_TYPE (type),
623 ba_check, NULL, complain);
624 if (binfo)
625 return build_static_cast (type, expr, complain);
628 /* Apply trivial conversion T -> T& for dereferenced ptrs. */
629 if (tc == REFERENCE_TYPE)
630 expr = convert_to_reference (exprtype, expr, CONV_IMPLICIT,
631 LOOKUP_NORMAL, NULL_TREE, complain);
633 /* Otherwise *exprtype must be a polymorphic class (have a vtbl). */
634 if (TYPE_POLYMORPHIC_P (TREE_TYPE (exprtype)))
636 tree expr1;
637 /* if TYPE is `void *', return pointer to complete object. */
638 if (tc == POINTER_TYPE && VOID_TYPE_P (TREE_TYPE (type)))
640 /* if b is an object, dynamic_cast<void *>(&b) == (void *)&b. */
641 if (TREE_CODE (expr) == ADDR_EXPR
642 && VAR_P (TREE_OPERAND (expr, 0))
643 && TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0))) == RECORD_TYPE)
644 return build1 (NOP_EXPR, type, expr);
646 /* Since expr is used twice below, save it. */
647 expr = save_expr (expr);
649 expr1 = build_headof (expr);
650 if (TREE_TYPE (expr1) != type)
651 expr1 = build1 (NOP_EXPR, type, expr1);
652 return ifnonnull (expr, expr1, complain);
654 else
656 tree retval;
657 tree result, td2, td3;
658 tree elems[4];
659 tree static_type, target_type, boff;
661 /* If we got here, we can't convert statically. Therefore,
662 dynamic_cast<D&>(b) (b an object) cannot succeed. */
663 if (tc == REFERENCE_TYPE)
665 if (VAR_P (old_expr)
666 && TREE_CODE (TREE_TYPE (old_expr)) == RECORD_TYPE)
668 tree expr = throw_bad_cast ();
669 if (complain & tf_warning)
670 warning (0, "dynamic_cast of %q#D to %q#T can never succeed",
671 old_expr, type);
672 /* Bash it to the expected type. */
673 TREE_TYPE (expr) = type;
674 return expr;
677 /* Ditto for dynamic_cast<D*>(&b). */
678 else if (TREE_CODE (expr) == ADDR_EXPR)
680 tree op = TREE_OPERAND (expr, 0);
681 if (VAR_P (op)
682 && TREE_CODE (TREE_TYPE (op)) == RECORD_TYPE)
684 if (complain & tf_warning)
685 warning (0, "dynamic_cast of %q#D to %q#T can never succeed",
686 op, type);
687 retval = build_int_cst (type, 0);
688 return retval;
692 /* Use of dynamic_cast when -fno-rtti is prohibited. */
693 if (!flag_rtti)
695 if (complain & tf_error)
696 error ("%<dynamic_cast%> not permitted with -fno-rtti");
697 return error_mark_node;
700 target_type = TYPE_MAIN_VARIANT (TREE_TYPE (type));
701 static_type = TYPE_MAIN_VARIANT (TREE_TYPE (exprtype));
702 td2 = get_tinfo_decl (target_type);
703 if (!mark_used (td2, complain) && !(complain & tf_error))
704 return error_mark_node;
705 td2 = cp_build_addr_expr (td2, complain);
706 td3 = get_tinfo_decl (static_type);
707 if (!mark_used (td3, complain) && !(complain & tf_error))
708 return error_mark_node;
709 td3 = cp_build_addr_expr (td3, complain);
711 /* Determine how T and V are related. */
712 boff = dcast_base_hint (static_type, target_type);
714 /* Since expr is used twice below, save it. */
715 expr = save_expr (expr);
717 expr1 = expr;
718 if (tc == REFERENCE_TYPE)
719 expr1 = cp_build_addr_expr (expr1, complain);
721 elems[0] = expr1;
722 elems[1] = td3;
723 elems[2] = td2;
724 elems[3] = boff;
726 dcast_fn = dynamic_cast_node;
727 if (!dcast_fn)
729 tree tmp;
730 tree tinfo_ptr;
731 const char *name;
733 push_abi_namespace ();
734 tinfo_ptr = xref_tag (class_type,
735 get_identifier ("__class_type_info"),
736 /*tag_scope=*/ts_current, false);
738 tinfo_ptr = build_pointer_type
739 (cp_build_qualified_type
740 (tinfo_ptr, TYPE_QUAL_CONST));
741 name = "__dynamic_cast";
742 tmp = build_function_type_list (ptr_type_node,
743 const_ptr_type_node,
744 tinfo_ptr, tinfo_ptr,
745 ptrdiff_type_node, NULL_TREE);
746 dcast_fn = build_library_fn_ptr (name, tmp,
747 ECF_LEAF | ECF_PURE | ECF_NOTHROW);
748 pop_abi_namespace ();
749 dynamic_cast_node = dcast_fn;
751 result = build_cxx_call (dcast_fn, 4, elems, complain);
753 if (tc == REFERENCE_TYPE)
755 tree bad = throw_bad_cast ();
756 tree neq;
758 result = save_expr (result);
759 neq = cp_truthvalue_conversion (result);
760 return cp_convert (type,
761 build3 (COND_EXPR, TREE_TYPE (result),
762 neq, result, bad), complain);
765 /* Now back to the type we want from a void*. */
766 result = cp_convert (type, result, complain);
767 return ifnonnull (expr, result, complain);
770 else
771 errstr = _("source type is not polymorphic");
773 fail:
774 if (complain & tf_error)
775 error ("cannot dynamic_cast %qE (of type %q#T) to type %q#T (%s)",
776 old_expr, TREE_TYPE (old_expr), type, errstr);
777 return error_mark_node;
780 tree
781 build_dynamic_cast (tree type, tree expr, tsubst_flags_t complain)
783 tree r;
785 if (type == error_mark_node || expr == error_mark_node)
786 return error_mark_node;
788 if (processing_template_decl)
790 expr = build_min (DYNAMIC_CAST_EXPR, type, expr);
791 TREE_SIDE_EFFECTS (expr) = 1;
792 return convert_from_reference (expr);
795 r = convert_from_reference (build_dynamic_cast_1 (type, expr, complain));
796 if (r != error_mark_node)
797 maybe_warn_about_useless_cast (type, expr, complain);
798 return r;
801 /* Return the runtime bit mask encoding the qualifiers of TYPE. */
803 static int
804 qualifier_flags (tree type)
806 int flags = 0;
807 int quals = cp_type_quals (type);
809 if (quals & TYPE_QUAL_CONST)
810 flags |= 1;
811 if (quals & TYPE_QUAL_VOLATILE)
812 flags |= 2;
813 if (quals & TYPE_QUAL_RESTRICT)
814 flags |= 4;
815 return flags;
818 /* Return true, if the pointer chain TYPE ends at an incomplete type, or
819 contains a pointer to member of an incomplete class. */
821 static bool
822 target_incomplete_p (tree type)
824 while (true)
825 if (TYPE_PTRDATAMEM_P (type))
827 if (!COMPLETE_TYPE_P (TYPE_PTRMEM_CLASS_TYPE (type)))
828 return true;
829 type = TYPE_PTRMEM_POINTED_TO_TYPE (type);
831 else if (TYPE_PTR_P (type))
832 type = TREE_TYPE (type);
833 else
834 return !COMPLETE_OR_VOID_TYPE_P (type);
837 /* Returns true if TYPE involves an incomplete class type; in that
838 case, typeinfo variables for TYPE should be emitted with internal
839 linkage. */
841 static bool
842 involves_incomplete_p (tree type)
844 switch (TREE_CODE (type))
846 case POINTER_TYPE:
847 return target_incomplete_p (TREE_TYPE (type));
849 case OFFSET_TYPE:
850 ptrmem:
851 return
852 (target_incomplete_p (TYPE_PTRMEM_POINTED_TO_TYPE (type))
853 || !COMPLETE_TYPE_P (TYPE_PTRMEM_CLASS_TYPE (type)));
855 case RECORD_TYPE:
856 if (TYPE_PTRMEMFUNC_P (type))
857 goto ptrmem;
858 /* Fall through. */
859 case UNION_TYPE:
860 if (!COMPLETE_TYPE_P (type))
861 return true;
863 default:
864 /* All other types do not involve incomplete class types. */
865 return false;
869 /* Return a CONSTRUCTOR for the common part of the type_info objects. This
870 is the vtable pointer and NTBS name. The NTBS name is emitted as a
871 comdat const char array, so it becomes a unique key for the type. Generate
872 and emit that VAR_DECL here. (We can't always emit the type_info itself
873 as comdat, because of pointers to incomplete.) */
875 static tree
876 tinfo_base_init (tinfo_s *ti, tree target)
878 tree init;
879 tree name_decl;
880 tree vtable_ptr;
881 vec<constructor_elt, va_gc> *v;
884 tree name_name, name_string;
886 /* Generate the NTBS array variable. */
887 tree name_type = build_cplus_array_type
888 (cp_build_qualified_type (char_type_node, TYPE_QUAL_CONST),
889 NULL_TREE);
891 /* Determine the name of the variable -- and remember with which
892 type it is associated. */
893 name_name = mangle_typeinfo_string_for_type (target);
894 TREE_TYPE (name_name) = target;
896 name_decl = build_lang_decl (VAR_DECL, name_name, name_type);
897 SET_DECL_ASSEMBLER_NAME (name_decl, name_name);
898 DECL_ARTIFICIAL (name_decl) = 1;
899 DECL_IGNORED_P (name_decl) = 1;
900 TREE_READONLY (name_decl) = 1;
901 TREE_STATIC (name_decl) = 1;
902 DECL_EXTERNAL (name_decl) = 0;
903 DECL_TINFO_P (name_decl) = 1;
904 set_linkage_according_to_type (target, name_decl);
905 import_export_decl (name_decl);
906 name_string = tinfo_name (target, !TREE_PUBLIC (name_decl));
907 DECL_INITIAL (name_decl) = name_string;
908 mark_used (name_decl);
909 pushdecl_top_level_and_finish (name_decl, name_string);
912 vtable_ptr = ti->vtable;
913 if (!vtable_ptr)
915 tree real_type;
916 push_abi_namespace ();
917 real_type = xref_tag (class_type, ti->name,
918 /*tag_scope=*/ts_current, false);
919 pop_abi_namespace ();
921 if (!COMPLETE_TYPE_P (real_type))
923 /* We never saw a definition of this type, so we need to
924 tell the compiler that this is an exported class, as
925 indeed all of the __*_type_info classes are. */
926 SET_CLASSTYPE_INTERFACE_KNOWN (real_type);
927 CLASSTYPE_INTERFACE_ONLY (real_type) = 1;
930 vtable_ptr = get_vtable_decl (real_type, /*complete=*/1);
931 vtable_ptr = cp_build_addr_expr (vtable_ptr, tf_warning_or_error);
933 /* We need to point into the middle of the vtable. */
934 vtable_ptr = fold_build_pointer_plus
935 (vtable_ptr,
936 size_binop (MULT_EXPR,
937 size_int (2 * TARGET_VTABLE_DATA_ENTRY_DISTANCE),
938 TYPE_SIZE_UNIT (vtable_entry_type)));
940 ti->vtable = vtable_ptr;
943 vec_alloc (v, 2);
944 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, vtable_ptr);
945 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE,
946 decay_conversion (name_decl, tf_warning_or_error));
948 init = build_constructor (init_list_type_node, v);
949 TREE_CONSTANT (init) = 1;
950 TREE_STATIC (init) = 1;
952 return init;
955 /* Return the CONSTRUCTOR expr for a type_info of TYPE. TI provides the
956 information about the particular type_info derivation, which adds no
957 additional fields to the type_info base. */
959 static tree
960 generic_initializer (tinfo_s *ti, tree target)
962 tree init = tinfo_base_init (ti, target);
964 init = build_constructor_single (init_list_type_node, NULL_TREE, init);
965 TREE_CONSTANT (init) = 1;
966 TREE_STATIC (init) = 1;
967 return init;
970 /* Return the CONSTRUCTOR expr for a type_info of pointer TYPE.
971 TI provides information about the particular type_info derivation,
972 which adds target type and qualifier flags members to the type_info base. */
974 static tree
975 ptr_initializer (tinfo_s *ti, tree target)
977 tree init = tinfo_base_init (ti, target);
978 tree to = TREE_TYPE (target);
979 int flags = qualifier_flags (to);
980 bool incomplete = target_incomplete_p (to);
981 vec<constructor_elt, va_gc> *v;
982 vec_alloc (v, 3);
984 if (incomplete)
985 flags |= 8;
986 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, init);
987 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, build_int_cst (NULL_TREE, flags));
988 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE,
989 get_tinfo_ptr (TYPE_MAIN_VARIANT (to)));
991 init = build_constructor (init_list_type_node, v);
992 TREE_CONSTANT (init) = 1;
993 TREE_STATIC (init) = 1;
994 return init;
997 /* Return the CONSTRUCTOR expr for a type_info of pointer to member data TYPE.
998 TI provides information about the particular type_info derivation,
999 which adds class, target type and qualifier flags members to the type_info
1000 base. */
1002 static tree
1003 ptm_initializer (tinfo_s *ti, tree target)
1005 tree init = tinfo_base_init (ti, target);
1006 tree to = TYPE_PTRMEM_POINTED_TO_TYPE (target);
1007 tree klass = TYPE_PTRMEM_CLASS_TYPE (target);
1008 int flags = qualifier_flags (to);
1009 bool incomplete = target_incomplete_p (to);
1010 vec<constructor_elt, va_gc> *v;
1011 vec_alloc (v, 4);
1013 if (incomplete)
1014 flags |= 0x8;
1015 if (!COMPLETE_TYPE_P (klass))
1016 flags |= 0x10;
1017 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, init);
1018 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, build_int_cst (NULL_TREE, flags));
1019 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE,
1020 get_tinfo_ptr (TYPE_MAIN_VARIANT (to)));
1021 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, get_tinfo_ptr (klass));
1023 init = build_constructor (init_list_type_node, v);
1024 TREE_CONSTANT (init) = 1;
1025 TREE_STATIC (init) = 1;
1026 return init;
1029 /* Return the CONSTRUCTOR expr for a type_info of class TYPE.
1030 TI provides information about the particular __class_type_info derivation,
1031 which adds hint flags and N extra initializers to the type_info base. */
1033 static tree
1034 class_initializer (tinfo_s *ti, tree target, unsigned n, ...)
1036 tree init = tinfo_base_init (ti, target);
1037 va_list extra_inits;
1038 unsigned i;
1039 vec<constructor_elt, va_gc> *v;
1040 vec_alloc (v, n+1);
1042 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, init);
1043 va_start (extra_inits, n);
1044 for (i = 0; i < n; i++)
1045 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, va_arg (extra_inits, tree));
1046 va_end (extra_inits);
1048 init = build_constructor (init_list_type_node, v);
1049 TREE_CONSTANT (init) = 1;
1050 TREE_STATIC (init) = 1;
1051 return init;
1054 /* Returns true if the typeinfo for type should be placed in
1055 the runtime library. */
1057 static bool
1058 typeinfo_in_lib_p (tree type)
1060 /* The typeinfo objects for `T*' and `const T*' are in the runtime
1061 library for simple types T. */
1062 if (TYPE_PTR_P (type)
1063 && (cp_type_quals (TREE_TYPE (type)) == TYPE_QUAL_CONST
1064 || cp_type_quals (TREE_TYPE (type)) == TYPE_UNQUALIFIED))
1065 type = TREE_TYPE (type);
1067 switch (TREE_CODE (type))
1069 case INTEGER_TYPE:
1070 case BOOLEAN_TYPE:
1071 case REAL_TYPE:
1072 case VOID_TYPE:
1073 case NULLPTR_TYPE:
1074 return true;
1076 case LANG_TYPE:
1077 /* fall through. */
1079 default:
1080 return false;
1084 /* Generate the initializer for the type info describing TYPE. TK_INDEX is
1085 the index of the descriptor in the tinfo_desc vector. */
1087 static tree
1088 get_pseudo_ti_init (tree type, unsigned tk_index)
1090 tinfo_s *ti = &(*tinfo_descs)[tk_index];
1092 gcc_assert (at_eof);
1093 switch (tk_index)
1095 case TK_POINTER_MEMBER_TYPE:
1096 return ptm_initializer (ti, type);
1098 case TK_POINTER_TYPE:
1099 return ptr_initializer (ti, type);
1101 case TK_BUILTIN_TYPE:
1102 case TK_ENUMERAL_TYPE:
1103 case TK_FUNCTION_TYPE:
1104 case TK_ARRAY_TYPE:
1105 return generic_initializer (ti, type);
1107 case TK_CLASS_TYPE:
1108 return class_initializer (ti, type, 0);
1110 case TK_SI_CLASS_TYPE:
1112 tree base_binfo = BINFO_BASE_BINFO (TYPE_BINFO (type), 0);
1113 tree tinfo = get_tinfo_ptr (BINFO_TYPE (base_binfo));
1115 /* get_tinfo_ptr might have reallocated the tinfo_descs vector. */
1116 ti = &(*tinfo_descs)[tk_index];
1117 return class_initializer (ti, type, 1, tinfo);
1120 default:
1122 int hint = ((CLASSTYPE_REPEATED_BASE_P (type) << 0)
1123 | (CLASSTYPE_DIAMOND_SHAPED_P (type) << 1));
1124 tree binfo = TYPE_BINFO (type);
1125 int nbases = BINFO_N_BASE_BINFOS (binfo);
1126 vec<tree, va_gc> *base_accesses = BINFO_BASE_ACCESSES (binfo);
1127 tree offset_type = LONGPTR_T;
1128 tree base_inits = NULL_TREE;
1129 int ix;
1130 vec<constructor_elt, va_gc> *init_vec = NULL;
1131 constructor_elt *e;
1133 gcc_assert (tk_index >= TK_FIXED);
1135 vec_safe_grow (init_vec, nbases);
1136 /* Generate the base information initializer. */
1137 for (ix = nbases; ix--;)
1139 tree base_binfo = BINFO_BASE_BINFO (binfo, ix);
1140 tree base_init;
1141 int flags = 0;
1142 tree tinfo;
1143 tree offset;
1144 vec<constructor_elt, va_gc> *v;
1146 if ((*base_accesses)[ix] == access_public_node)
1147 flags |= 2;
1148 tinfo = get_tinfo_ptr (BINFO_TYPE (base_binfo));
1149 if (BINFO_VIRTUAL_P (base_binfo))
1151 /* We store the vtable offset at which the virtual
1152 base offset can be found. */
1153 offset = BINFO_VPTR_FIELD (base_binfo);
1154 flags |= 1;
1156 else
1157 offset = BINFO_OFFSET (base_binfo);
1159 /* Combine offset and flags into one field. */
1160 offset = fold_convert (offset_type, offset);
1161 offset = fold_build2_loc (input_location,
1162 LSHIFT_EXPR, offset_type, offset,
1163 build_int_cst (offset_type, 8));
1164 offset = fold_build2_loc (input_location,
1165 BIT_IOR_EXPR, offset_type, offset,
1166 build_int_cst (offset_type, flags));
1167 vec_alloc (v, 2);
1168 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, tinfo);
1169 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, offset);
1170 base_init = build_constructor (init_list_type_node, v);
1171 e = &(*init_vec)[ix];
1172 e->index = NULL_TREE;
1173 e->value = base_init;
1175 base_inits = build_constructor (init_list_type_node, init_vec);
1177 /* get_tinfo_ptr might have reallocated the tinfo_descs vector. */
1178 ti = &(*tinfo_descs)[tk_index];
1179 return class_initializer (ti, type, 3,
1180 build_int_cst (NULL_TREE, hint),
1181 build_int_cst (NULL_TREE, nbases),
1182 base_inits);
1187 /* Generate the RECORD_TYPE containing the data layout of a type_info
1188 derivative as used by the runtime. This layout must be consistent with
1189 that defined in the runtime support. Also generate the VAR_DECL for the
1190 type's vtable. We explicitly manage the vtable member, and name it for
1191 real type as used in the runtime. The RECORD type has a different name,
1192 to avoid collisions. Return a TREE_LIST who's TINFO_PSEUDO_TYPE
1193 is the generated type and TINFO_VTABLE_NAME is the name of the
1194 vtable. We have to delay generating the VAR_DECL of the vtable
1195 until the end of the translation, when we'll have seen the library
1196 definition, if there was one.
1198 REAL_NAME is the runtime's name of the type. Trailing arguments are
1199 additional FIELD_DECL's for the structure. The final argument must be
1200 NULL. */
1202 static void
1203 create_pseudo_type_info (int tk, const char *real_name, ...)
1205 tinfo_s *ti;
1206 tree pseudo_type;
1207 char *pseudo_name;
1208 tree fields;
1209 tree field_decl;
1210 va_list ap;
1212 va_start (ap, real_name);
1214 /* Generate the pseudo type name. */
1215 pseudo_name = (char *) alloca (strlen (real_name) + 30);
1216 strcpy (pseudo_name, real_name);
1217 strcat (pseudo_name, "_pseudo");
1218 if (tk >= TK_FIXED)
1219 sprintf (pseudo_name + strlen (pseudo_name), "%d", tk - TK_FIXED);
1221 /* First field is the pseudo type_info base class. */
1222 fields = build_decl (input_location,
1223 FIELD_DECL, NULL_TREE,
1224 (*tinfo_descs)[TK_TYPE_INFO_TYPE].type);
1226 /* Now add the derived fields. */
1227 while ((field_decl = va_arg (ap, tree)))
1229 DECL_CHAIN (field_decl) = fields;
1230 fields = field_decl;
1233 /* Create the pseudo type. */
1234 pseudo_type = make_class_type (RECORD_TYPE);
1235 finish_builtin_struct (pseudo_type, pseudo_name, fields, NULL_TREE);
1236 CLASSTYPE_AS_BASE (pseudo_type) = pseudo_type;
1238 ti = &(*tinfo_descs)[tk];
1239 ti->type = cp_build_qualified_type (pseudo_type, TYPE_QUAL_CONST);
1240 ti->name = get_identifier (real_name);
1241 ti->vtable = NULL_TREE;
1243 /* Pretend this is public so determine_visibility doesn't give vtables
1244 internal linkage. */
1245 TREE_PUBLIC (TYPE_MAIN_DECL (ti->type)) = 1;
1247 va_end (ap);
1250 /* Return the index of a pseudo type info type node used to describe
1251 TYPE. TYPE must be a complete type (or cv void), except at the end
1252 of the translation unit. */
1254 static unsigned
1255 get_pseudo_ti_index (tree type)
1257 unsigned ix;
1259 switch (TREE_CODE (type))
1261 case OFFSET_TYPE:
1262 ix = TK_POINTER_MEMBER_TYPE;
1263 break;
1265 case POINTER_TYPE:
1266 ix = TK_POINTER_TYPE;
1267 break;
1269 case ENUMERAL_TYPE:
1270 ix = TK_ENUMERAL_TYPE;
1271 break;
1273 case FUNCTION_TYPE:
1274 ix = TK_FUNCTION_TYPE;
1275 break;
1277 case ARRAY_TYPE:
1278 ix = TK_ARRAY_TYPE;
1279 break;
1281 case UNION_TYPE:
1282 case RECORD_TYPE:
1283 if (TYPE_PTRMEMFUNC_P (type))
1285 ix = TK_POINTER_MEMBER_TYPE;
1286 break;
1288 else if (!COMPLETE_TYPE_P (type))
1290 if (!at_eof)
1291 cxx_incomplete_type_error (NULL_TREE, type);
1292 ix = TK_CLASS_TYPE;
1293 break;
1295 else if (!BINFO_N_BASE_BINFOS (TYPE_BINFO (type)))
1297 ix = TK_CLASS_TYPE;
1298 break;
1300 else
1302 tree binfo = TYPE_BINFO (type);
1303 vec<tree, va_gc> *base_accesses = BINFO_BASE_ACCESSES (binfo);
1304 tree base_binfo = BINFO_BASE_BINFO (binfo, 0);
1305 int num_bases = BINFO_N_BASE_BINFOS (binfo);
1307 if (num_bases == 1
1308 && (*base_accesses)[0] == access_public_node
1309 && !BINFO_VIRTUAL_P (base_binfo)
1310 && integer_zerop (BINFO_OFFSET (base_binfo)))
1312 /* single non-virtual public. */
1313 ix = TK_SI_CLASS_TYPE;
1314 break;
1316 else
1318 tinfo_s *ti;
1319 tree array_domain, base_array;
1321 ix = TK_FIXED + num_bases;
1322 if (vec_safe_length (tinfo_descs) <= ix)
1324 /* too short, extend. */
1325 unsigned len = vec_safe_length (tinfo_descs);
1327 vec_safe_grow (tinfo_descs, ix + 1);
1328 while (tinfo_descs->iterate (len++, &ti))
1329 ti->type = ti->vtable = ti->name = NULL_TREE;
1331 else if ((*tinfo_descs)[ix].type)
1332 /* already created. */
1333 break;
1335 /* Create the array of __base_class_type_info entries. */
1336 array_domain = build_index_type (size_int (num_bases - 1));
1337 base_array = build_array_type ((*tinfo_descs)[TK_BASE_TYPE].type,
1338 array_domain);
1340 push_abi_namespace ();
1341 create_pseudo_type_info
1342 (ix, "__vmi_class_type_info",
1343 build_decl (input_location,
1344 FIELD_DECL, NULL_TREE, integer_type_node),
1345 build_decl (input_location,
1346 FIELD_DECL, NULL_TREE, integer_type_node),
1347 build_decl (input_location,
1348 FIELD_DECL, NULL_TREE, base_array),
1349 NULL);
1350 pop_abi_namespace ();
1351 break;
1354 default:
1355 ix = TK_BUILTIN_TYPE;
1356 break;
1358 return ix;
1361 /* Make sure the required builtin types exist for generating the type_info
1362 variable definitions. */
1364 static void
1365 create_tinfo_types (void)
1367 tinfo_s *ti;
1369 gcc_assert (!tinfo_descs);
1371 vec_safe_grow (tinfo_descs, TK_FIXED);
1373 push_abi_namespace ();
1375 /* Create the internal type_info structure. This is used as a base for
1376 the other structures. */
1378 tree field, fields;
1380 field = build_decl (BUILTINS_LOCATION,
1381 FIELD_DECL, NULL_TREE, const_ptr_type_node);
1382 fields = field;
1384 field = build_decl (BUILTINS_LOCATION,
1385 FIELD_DECL, NULL_TREE, const_string_type_node);
1386 DECL_CHAIN (field) = fields;
1387 fields = field;
1389 ti = &(*tinfo_descs)[TK_TYPE_INFO_TYPE];
1390 ti->type = make_class_type (RECORD_TYPE);
1391 ti->vtable = NULL_TREE;
1392 ti->name = NULL_TREE;
1393 finish_builtin_struct (ti->type, "__type_info_pseudo",
1394 fields, NULL_TREE);
1397 /* Fundamental type_info */
1398 create_pseudo_type_info (TK_BUILTIN_TYPE, "__fundamental_type_info", NULL);
1400 /* Array, function and enum type_info. No additional fields. */
1401 create_pseudo_type_info (TK_ARRAY_TYPE, "__array_type_info", NULL);
1402 create_pseudo_type_info (TK_FUNCTION_TYPE, "__function_type_info", NULL);
1403 create_pseudo_type_info (TK_ENUMERAL_TYPE, "__enum_type_info", NULL);
1405 /* Class type_info. No additional fields. */
1406 create_pseudo_type_info (TK_CLASS_TYPE, "__class_type_info", NULL);
1408 /* Single public non-virtual base class. Add pointer to base class.
1409 This is really a descendant of __class_type_info. */
1410 create_pseudo_type_info (TK_SI_CLASS_TYPE, "__si_class_type_info",
1411 build_decl (BUILTINS_LOCATION,
1412 FIELD_DECL, NULL_TREE, type_info_ptr_type),
1413 NULL);
1415 /* Base class internal helper. Pointer to base type, offset to base,
1416 flags. */
1418 tree field, fields;
1420 field = build_decl (BUILTINS_LOCATION,
1421 FIELD_DECL, NULL_TREE, type_info_ptr_type);
1422 fields = field;
1424 field = build_decl (BUILTINS_LOCATION,
1425 FIELD_DECL, NULL_TREE, LONGPTR_T);
1426 DECL_CHAIN (field) = fields;
1427 fields = field;
1429 ti = &(*tinfo_descs)[TK_BASE_TYPE];
1431 ti->type = make_class_type (RECORD_TYPE);
1432 ti->vtable = NULL_TREE;
1433 ti->name = NULL_TREE;
1434 finish_builtin_struct (ti->type, "__base_class_type_info_pseudo",
1435 fields, NULL_TREE);
1438 /* Pointer type_info. Adds two fields, qualification mask
1439 and pointer to the pointed to type. This is really a descendant of
1440 __pbase_type_info. */
1441 create_pseudo_type_info (TK_POINTER_TYPE, "__pointer_type_info",
1442 build_decl (BUILTINS_LOCATION,
1443 FIELD_DECL, NULL_TREE, integer_type_node),
1444 build_decl (BUILTINS_LOCATION,
1445 FIELD_DECL, NULL_TREE, type_info_ptr_type),
1446 NULL);
1448 /* Pointer to member data type_info. Add qualifications flags,
1449 pointer to the member's type info and pointer to the class.
1450 This is really a descendant of __pbase_type_info. */
1451 create_pseudo_type_info (TK_POINTER_MEMBER_TYPE,
1452 "__pointer_to_member_type_info",
1453 build_decl (BUILTINS_LOCATION,
1454 FIELD_DECL, NULL_TREE, integer_type_node),
1455 build_decl (BUILTINS_LOCATION,
1456 FIELD_DECL, NULL_TREE, type_info_ptr_type),
1457 build_decl (BUILTINS_LOCATION,
1458 FIELD_DECL, NULL_TREE, type_info_ptr_type),
1459 NULL);
1461 pop_abi_namespace ();
1464 /* Helper for emit_support_tinfos. Emits the type_info descriptor of
1465 a single type. */
1467 void
1468 emit_support_tinfo_1 (tree bltn)
1470 tree types[3];
1472 if (bltn == NULL_TREE)
1473 return;
1474 types[0] = bltn;
1475 types[1] = build_pointer_type (bltn);
1476 types[2] = build_pointer_type (cp_build_qualified_type (bltn,
1477 TYPE_QUAL_CONST));
1479 for (int i = 0; i < 3; ++i)
1481 tree tinfo = get_tinfo_decl (types[i]);
1482 TREE_USED (tinfo) = 1;
1483 mark_needed (tinfo);
1484 /* The C++ ABI requires that these objects be COMDAT. But,
1485 On systems without weak symbols, initialized COMDAT
1486 objects are emitted with internal linkage. (See
1487 comdat_linkage for details.) Since we want these objects
1488 to have external linkage so that copies do not have to be
1489 emitted in code outside the runtime library, we make them
1490 non-COMDAT here.
1492 It might also not be necessary to follow this detail of the
1493 ABI. */
1494 if (!flag_weak || ! targetm.cxx.library_rtti_comdat ())
1496 gcc_assert (TREE_PUBLIC (tinfo) && !DECL_COMDAT (tinfo));
1497 DECL_INTERFACE_KNOWN (tinfo) = 1;
1502 /* Emit the type_info descriptors which are guaranteed to be in the runtime
1503 support. Generating them here guarantees consistency with the other
1504 structures. We use the following heuristic to determine when the runtime
1505 is being generated. If std::__fundamental_type_info is defined, and its
1506 destructor is defined, then the runtime is being built. */
1508 void
1509 emit_support_tinfos (void)
1511 /* Dummy static variable so we can put nullptr in the array; it will be
1512 set before we actually start to walk the array. */
1513 static tree *const fundamentals[] =
1515 &void_type_node,
1516 &boolean_type_node,
1517 &wchar_type_node, &char16_type_node, &char32_type_node,
1518 &char_type_node, &signed_char_type_node, &unsigned_char_type_node,
1519 &short_integer_type_node, &short_unsigned_type_node,
1520 &integer_type_node, &unsigned_type_node,
1521 &long_integer_type_node, &long_unsigned_type_node,
1522 &long_long_integer_type_node, &long_long_unsigned_type_node,
1523 &float_type_node, &double_type_node, &long_double_type_node,
1524 &dfloat32_type_node, &dfloat64_type_node, &dfloat128_type_node,
1525 &nullptr_type_node,
1528 int ix;
1529 tree bltn_type, dtor;
1531 push_abi_namespace ();
1532 bltn_type = xref_tag (class_type,
1533 get_identifier ("__fundamental_type_info"),
1534 /*tag_scope=*/ts_current, false);
1535 pop_abi_namespace ();
1536 if (!COMPLETE_TYPE_P (bltn_type))
1537 return;
1538 dtor = CLASSTYPE_DESTRUCTORS (bltn_type);
1539 if (!dtor || DECL_EXTERNAL (dtor))
1540 return;
1541 doing_runtime = 1;
1542 for (ix = 0; fundamentals[ix]; ix++)
1543 emit_support_tinfo_1 (*fundamentals[ix]);
1544 for (ix = 0; ix < NUM_INT_N_ENTS; ix ++)
1545 if (int_n_enabled_p[ix])
1547 emit_support_tinfo_1 (int_n_trees[ix].signed_type);
1548 emit_support_tinfo_1 (int_n_trees[ix].unsigned_type);
1550 for (tree t = registered_builtin_types; t; t = TREE_CHAIN (t))
1551 emit_support_tinfo_1 (TREE_VALUE (t));
1554 /* Finish a type info decl. DECL_PTR is a pointer to an unemitted
1555 tinfo decl. Determine whether it needs emitting, and if so
1556 generate the initializer. */
1558 bool
1559 emit_tinfo_decl (tree decl)
1561 tree type = TREE_TYPE (DECL_NAME (decl));
1562 int in_library = typeinfo_in_lib_p (type);
1564 gcc_assert (DECL_TINFO_P (decl));
1566 if (in_library)
1568 if (doing_runtime)
1569 DECL_EXTERNAL (decl) = 0;
1570 else
1572 /* If we're not in the runtime, then DECL (which is already
1573 DECL_EXTERNAL) will not be defined here. */
1574 DECL_INTERFACE_KNOWN (decl) = 1;
1575 return false;
1578 else if (involves_incomplete_p (type))
1580 if (!decl_needed_p (decl))
1581 return false;
1582 /* If TYPE involves an incomplete class type, then the typeinfo
1583 object will be emitted with internal linkage. There is no
1584 way to know whether or not types are incomplete until the end
1585 of the compilation, so this determination must be deferred
1586 until this point. */
1587 TREE_PUBLIC (decl) = 0;
1588 DECL_EXTERNAL (decl) = 0;
1589 DECL_INTERFACE_KNOWN (decl) = 1;
1592 import_export_decl (decl);
1593 if (DECL_NOT_REALLY_EXTERN (decl) && decl_needed_p (decl))
1595 tree init;
1597 DECL_EXTERNAL (decl) = 0;
1598 init = get_pseudo_ti_init (type, get_pseudo_ti_index (type));
1599 DECL_INITIAL (decl) = init;
1600 mark_used (decl);
1601 cp_finish_decl (decl, init, false, NULL_TREE, 0);
1602 /* Avoid targets optionally bumping up the alignment to improve
1603 vector instruction accesses, tinfo are never accessed this way. */
1604 #ifdef DATA_ABI_ALIGNMENT
1605 DECL_ALIGN (decl) = DATA_ABI_ALIGNMENT (decl, TYPE_ALIGN (TREE_TYPE (decl)));
1606 DECL_USER_ALIGN (decl) = true;
1607 #endif
1608 return true;
1610 else
1611 return false;
1614 #include "gt-cp-rtti.h"