2013-05-02 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / cp / rtti.c
blob4e7316560ec9d4c936265148c346087a3930f392
1 /* RunTime Type Identification
2 Copyright (C) 1995-2013 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 "cp-tree.h"
28 #include "flags.h"
29 #include "convert.h"
30 #include "target.h"
31 #include "c-family/c-pragma.h"
33 /* C++ returns type information to the user in struct type_info
34 objects. We also use type information to implement dynamic_cast and
35 exception handlers. Type information for a particular type is
36 indicated with an ABI defined structure derived from type_info.
37 This would all be very straight forward, but for the fact that the
38 runtime library provides the definitions of the type_info structure
39 and the ABI defined derived classes. We cannot build declarations
40 of them directly in the compiler, but we need to layout objects of
41 their type. Somewhere we have to lie.
43 We define layout compatible POD-structs with compiler-defined names
44 and generate the appropriate initializations for them (complete
45 with explicit mention of their vtable). When we have to provide a
46 type_info to the user we reinterpret_cast the internal compiler
47 type to type_info. A well formed program can only explicitly refer
48 to the type_infos of complete types (& cv void). However, we chain
49 pointer type_infos to the pointed-to-type, and that can be
50 incomplete. We only need the addresses of such incomplete
51 type_info objects for static initialization.
53 The type information VAR_DECL of a type is held on the
54 IDENTIFIER_GLOBAL_VALUE of the type's mangled name. That VAR_DECL
55 will be the internal type. It will usually have the correct
56 internal type reflecting the kind of type it represents (pointer,
57 array, function, class, inherited class, etc). When the type it
58 represents is incomplete, it will have the internal type
59 corresponding to type_info. That will only happen at the end of
60 translation, when we are emitting the type info objects. */
62 /* Auxiliary data we hold for each type_info derived object we need. */
63 typedef struct GTY (()) tinfo_s {
64 tree type; /* The RECORD_TYPE for this type_info object */
66 tree vtable; /* The VAR_DECL of the vtable. Only filled at end of
67 translation. */
69 tree name; /* IDENTIFIER_NODE for the ABI specified name of
70 the type_info derived type. */
71 } tinfo_s;
74 typedef enum tinfo_kind
76 TK_TYPE_INFO_TYPE, /* abi::__type_info_pseudo */
77 TK_BASE_TYPE, /* abi::__base_class_type_info */
78 TK_BUILTIN_TYPE, /* abi::__fundamental_type_info */
79 TK_ARRAY_TYPE, /* abi::__array_type_info */
80 TK_FUNCTION_TYPE, /* abi::__function_type_info */
81 TK_ENUMERAL_TYPE, /* abi::__enum_type_info */
82 TK_POINTER_TYPE, /* abi::__pointer_type_info */
83 TK_POINTER_MEMBER_TYPE, /* abi::__pointer_to_member_type_info */
84 TK_CLASS_TYPE, /* abi::__class_type_info */
85 TK_SI_CLASS_TYPE, /* abi::__si_class_type_info */
86 TK_FIXED /* end of fixed descriptors. */
87 /* ... abi::__vmi_type_info<I> */
88 } tinfo_kind;
90 /* Helper macro to get maximum scalar-width of pointer or of the 'long'-type.
91 This of interest for llp64 targets. */
92 #define LONGPTR_T \
93 integer_types[(POINTER_SIZE <= TYPE_PRECISION (integer_types[itk_long]) \
94 ? itk_long : itk_long_long)]
96 /* A vector of all tinfo decls that haven't yet been emitted. */
97 vec<tree, va_gc> *unemitted_tinfo_decls;
99 /* A vector of all type_info derived types we need. The first few are
100 fixed and created early. The remainder are for multiple inheritance
101 and are generated as needed. */
102 static GTY (()) vec<tinfo_s, va_gc> *tinfo_descs;
104 static tree ifnonnull (tree, tree, tsubst_flags_t);
105 static tree tinfo_name (tree, bool);
106 static tree build_dynamic_cast_1 (tree, tree, tsubst_flags_t);
107 static tree throw_bad_cast (void);
108 static tree throw_bad_typeid (void);
109 static tree get_tinfo_ptr (tree);
110 static bool typeid_ok_p (void);
111 static int qualifier_flags (tree);
112 static bool target_incomplete_p (tree);
113 static tree tinfo_base_init (tinfo_s *, tree);
114 static tree generic_initializer (tinfo_s *, tree);
115 static tree ptr_initializer (tinfo_s *, tree);
116 static tree ptm_initializer (tinfo_s *, tree);
117 static tree class_initializer (tinfo_s *, tree, unsigned, ...);
118 static void create_pseudo_type_info (int, const char *, ...);
119 static tree get_pseudo_ti_init (tree, unsigned);
120 static unsigned get_pseudo_ti_index (tree);
121 static void create_tinfo_types (void);
122 static bool typeinfo_in_lib_p (tree);
124 static int doing_runtime = 0;
126 static void
127 push_abi_namespace (void)
129 push_nested_namespace (abi_node);
130 push_visibility ("default", 2);
133 static void
134 pop_abi_namespace (void)
136 pop_visibility (2);
137 pop_nested_namespace (abi_node);
140 /* Declare language defined type_info type and a pointer to const
141 type_info. This is incomplete here, and will be completed when
142 the user #includes <typeinfo>. There are language defined
143 restrictions on what can be done until that is included. Create
144 the internal versions of the ABI types. */
146 void
147 init_rtti_processing (void)
149 tree type_info_type;
151 push_namespace (std_identifier);
152 type_info_type = xref_tag (class_type, get_identifier ("type_info"),
153 /*tag_scope=*/ts_current, false);
154 pop_namespace ();
155 const_type_info_type_node
156 = cp_build_qualified_type (type_info_type, TYPE_QUAL_CONST);
157 type_info_ptr_type = build_pointer_type (const_type_info_type_node);
159 vec_alloc (unemitted_tinfo_decls, 124);
161 create_tinfo_types ();
164 /* Given the expression EXP of type `class *', return the head of the
165 object pointed to by EXP with type cv void*, if the class has any
166 virtual functions (TYPE_POLYMORPHIC_P), else just return the
167 expression. */
169 tree
170 build_headof (tree exp)
172 tree type = TREE_TYPE (exp);
173 tree offset;
174 tree index;
176 gcc_assert (TYPE_PTR_P (type));
177 type = TREE_TYPE (type);
179 if (!TYPE_POLYMORPHIC_P (type))
180 return exp;
182 /* We use this a couple of times below, protect it. */
183 exp = save_expr (exp);
185 /* The offset-to-top field is at index -2 from the vptr. */
186 index = build_int_cst (NULL_TREE,
187 -2 * TARGET_VTABLE_DATA_ENTRY_DISTANCE);
189 offset = build_vtbl_ref (cp_build_indirect_ref (exp, RO_NULL,
190 tf_warning_or_error),
191 index);
193 type = cp_build_qualified_type (ptr_type_node,
194 cp_type_quals (TREE_TYPE (exp)));
195 return fold_build_pointer_plus (exp, offset);
198 /* Get a bad_cast node for the program to throw...
200 See libstdc++/exception.cc for __throw_bad_cast */
202 static tree
203 throw_bad_cast (void)
205 tree fn = get_identifier ("__cxa_bad_cast");
206 if (!get_global_value_if_present (fn, &fn))
207 fn = push_throw_library_fn (fn, build_function_type_list (ptr_type_node,
208 NULL_TREE));
210 return build_cxx_call (fn, 0, NULL, tf_warning_or_error);
213 /* Return an expression for "__cxa_bad_typeid()". The expression
214 returned is an lvalue of type "const std::type_info". */
216 static tree
217 throw_bad_typeid (void)
219 tree fn = get_identifier ("__cxa_bad_typeid");
220 if (!get_global_value_if_present (fn, &fn))
222 tree t;
224 t = build_reference_type (const_type_info_type_node);
225 t = build_function_type_list (t, NULL_TREE);
226 fn = push_throw_library_fn (fn, t);
229 return build_cxx_call (fn, 0, NULL, tf_warning_or_error);
232 /* Return an lvalue expression whose type is "const std::type_info"
233 and whose value indicates the type of the expression EXP. If EXP
234 is a reference to a polymorphic class, return the dynamic type;
235 otherwise return the static type of the expression. */
237 static tree
238 get_tinfo_decl_dynamic (tree exp, tsubst_flags_t complain)
240 tree type;
241 tree t;
243 if (error_operand_p (exp))
244 return error_mark_node;
246 exp = resolve_nondeduced_context (exp);
248 /* peel back references, so they match. */
249 type = non_reference (TREE_TYPE (exp));
251 /* Peel off cv qualifiers. */
252 type = TYPE_MAIN_VARIANT (type);
254 /* For UNKNOWN_TYPEs call complete_type_or_else to get diagnostics. */
255 if (CLASS_TYPE_P (type) || type == unknown_type_node
256 || type == init_list_type_node)
257 type = complete_type_or_maybe_complain (type, exp, complain);
259 if (!type)
260 return error_mark_node;
262 /* If exp is a reference to polymorphic type, get the real type_info. */
263 if (TYPE_POLYMORPHIC_P (type) && ! resolves_to_fixed_type_p (exp, 0))
265 /* build reference to type_info from vtable. */
266 tree index;
268 /* The RTTI information is at index -1. */
269 index = build_int_cst (NULL_TREE,
270 -1 * TARGET_VTABLE_DATA_ENTRY_DISTANCE);
271 t = build_vtbl_ref (exp, index);
272 t = convert (type_info_ptr_type, t);
274 else
275 /* Otherwise return the type_info for the static type of the expr. */
276 t = get_tinfo_ptr (TYPE_MAIN_VARIANT (type));
278 return cp_build_indirect_ref (t, RO_NULL, complain);
281 static bool
282 typeid_ok_p (void)
284 tree pseudo_type_info, type_info_type;
286 if (! flag_rtti)
288 error ("cannot use typeid with -fno-rtti");
289 return false;
292 if (!COMPLETE_TYPE_P (const_type_info_type_node))
294 error ("must #include <typeinfo> before using typeid");
295 return false;
298 pseudo_type_info = (*tinfo_descs)[TK_TYPE_INFO_TYPE].type;
299 type_info_type = TYPE_MAIN_VARIANT (const_type_info_type_node);
301 /* Make sure abi::__type_info_pseudo has the same alias set
302 as std::type_info. */
303 if (! TYPE_ALIAS_SET_KNOWN_P (pseudo_type_info))
304 TYPE_ALIAS_SET (pseudo_type_info) = get_alias_set (type_info_type);
305 else
306 gcc_assert (TYPE_ALIAS_SET (pseudo_type_info)
307 == get_alias_set (type_info_type));
309 return true;
312 /* Return an expression for "typeid(EXP)". The expression returned is
313 an lvalue of type "const std::type_info". */
315 tree
316 build_typeid (tree exp, tsubst_flags_t complain)
318 tree cond = NULL_TREE, initial_expr = exp;
319 int nonnull = 0;
321 if (exp == error_mark_node || !typeid_ok_p ())
322 return error_mark_node;
324 if (processing_template_decl)
325 return build_min (TYPEID_EXPR, const_type_info_type_node, exp);
327 /* FIXME when integrating with c_fully_fold, mark
328 resolves_to_fixed_type_p case as a non-constant expression. */
329 if (TYPE_POLYMORPHIC_P (TREE_TYPE (exp))
330 && ! resolves_to_fixed_type_p (exp, &nonnull)
331 && ! nonnull)
333 /* So we need to look into the vtable of the type of exp.
334 Make sure it isn't a null lvalue. */
335 exp = cp_build_addr_expr (exp, complain);
336 exp = stabilize_reference (exp);
337 cond = cp_convert (boolean_type_node, exp, complain);
338 exp = cp_build_indirect_ref (exp, RO_NULL, complain);
341 exp = get_tinfo_decl_dynamic (exp, complain);
343 if (exp == error_mark_node)
344 return error_mark_node;
346 if (cond)
348 tree bad = throw_bad_typeid ();
350 exp = build3 (COND_EXPR, TREE_TYPE (exp), cond, exp, bad);
352 else
353 mark_type_use (initial_expr);
355 return exp;
358 /* Generate the NTBS name of a type. If MARK_PRIVATE, put a '*' in front so that
359 comparisons will be done by pointer rather than string comparison. */
360 static tree
361 tinfo_name (tree type, bool mark_private)
363 const char *name;
364 int length;
365 tree name_string;
367 name = mangle_type_string (type);
368 length = strlen (name);
370 if (mark_private)
372 /* Inject '*' at beginning of name to force pointer comparison. */
373 char* buf = (char*) XALLOCAVEC (char, length + 2);
374 buf[0] = '*';
375 memcpy (buf + 1, name, length + 1);
376 name_string = build_string (length + 2, buf);
378 else
379 name_string = build_string (length + 1, name);
381 return fix_string_type (name_string);
384 /* Return a VAR_DECL for the internal ABI defined type_info object for
385 TYPE. You must arrange that the decl is mark_used, if actually use
386 it --- decls in vtables are only used if the vtable is output. */
388 tree
389 get_tinfo_decl (tree type)
391 tree name;
392 tree d;
394 if (variably_modified_type_p (type, /*fn=*/NULL_TREE))
396 error ("cannot create type information for type %qT because "
397 "it involves types of variable size",
398 type);
399 return error_mark_node;
402 if (TREE_CODE (type) == METHOD_TYPE)
403 type = build_function_type (TREE_TYPE (type),
404 TREE_CHAIN (TYPE_ARG_TYPES (type)));
406 type = complete_type (type);
408 /* For a class type, the variable is cached in the type node
409 itself. */
410 if (CLASS_TYPE_P (type))
412 d = CLASSTYPE_TYPEINFO_VAR (TYPE_MAIN_VARIANT (type));
413 if (d)
414 return d;
417 name = mangle_typeinfo_for_type (type);
419 d = IDENTIFIER_GLOBAL_VALUE (name);
420 if (!d)
422 int ix = get_pseudo_ti_index (type);
423 tinfo_s *ti = &(*tinfo_descs)[ix];
425 d = build_lang_decl (VAR_DECL, name, ti->type);
426 SET_DECL_ASSEMBLER_NAME (d, name);
427 /* Remember the type it is for. */
428 TREE_TYPE (name) = type;
429 DECL_TINFO_P (d) = 1;
430 DECL_ARTIFICIAL (d) = 1;
431 DECL_IGNORED_P (d) = 1;
432 TREE_READONLY (d) = 1;
433 TREE_STATIC (d) = 1;
434 /* Mark the variable as undefined -- but remember that we can
435 define it later if we need to do so. */
436 DECL_EXTERNAL (d) = 1;
437 DECL_NOT_REALLY_EXTERN (d) = 1;
438 set_linkage_according_to_type (type, d);
440 d = pushdecl_top_level_and_finish (d, NULL_TREE);
441 if (CLASS_TYPE_P (type))
442 CLASSTYPE_TYPEINFO_VAR (TYPE_MAIN_VARIANT (type)) = d;
444 /* Add decl to the global array of tinfo decls. */
445 vec_safe_push (unemitted_tinfo_decls, d);
448 return d;
451 /* Return a pointer to a type_info object describing TYPE, suitably
452 cast to the language defined type. */
454 static tree
455 get_tinfo_ptr (tree type)
457 tree decl = get_tinfo_decl (type);
459 mark_used (decl);
460 return build_nop (type_info_ptr_type,
461 build_address (decl));
464 /* Return the type_info object for TYPE. */
466 tree
467 get_typeid (tree type, tsubst_flags_t complain)
469 if (type == error_mark_node || !typeid_ok_p ())
470 return error_mark_node;
472 if (processing_template_decl)
473 return build_min (TYPEID_EXPR, const_type_info_type_node, type);
475 /* If the type of the type-id is a reference type, the result of the
476 typeid expression refers to a type_info object representing the
477 referenced type. */
478 type = non_reference (type);
480 /* This is not one of the uses of a qualified function type in 8.3.5. */
481 if (TREE_CODE (type) == FUNCTION_TYPE
482 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
483 || type_memfn_rqual (type) != REF_QUAL_NONE))
485 if (complain & tf_error)
486 error ("typeid of qualified function type %qT", type);
487 return error_mark_node;
490 /* The top-level cv-qualifiers of the lvalue expression or the type-id
491 that is the operand of typeid are always ignored. */
492 type = TYPE_MAIN_VARIANT (type);
494 /* For UNKNOWN_TYPEs call complete_type_or_else to get diagnostics. */
495 if (CLASS_TYPE_P (type) || type == unknown_type_node
496 || type == init_list_type_node)
497 type = complete_type_or_maybe_complain (type, NULL_TREE, complain);
499 if (!type)
500 return error_mark_node;
502 return cp_build_indirect_ref (get_tinfo_ptr (type), RO_NULL, complain);
505 /* Check whether TEST is null before returning RESULT. If TEST is used in
506 RESULT, it must have previously had a save_expr applied to it. */
508 static tree
509 ifnonnull (tree test, tree result, tsubst_flags_t complain)
511 return build3 (COND_EXPR, TREE_TYPE (result),
512 build2 (EQ_EXPR, boolean_type_node, test,
513 cp_convert (TREE_TYPE (test), nullptr_node,
514 complain)),
515 cp_convert (TREE_TYPE (result), nullptr_node, complain),
516 result);
519 /* Execute a dynamic cast, as described in section 5.2.6 of the 9/93 working
520 paper. */
522 static tree
523 build_dynamic_cast_1 (tree type, tree expr, tsubst_flags_t complain)
525 enum tree_code tc = TREE_CODE (type);
526 tree exprtype;
527 tree dcast_fn;
528 tree old_expr = expr;
529 const char *errstr = NULL;
531 /* Save casted types in the function's used types hash table. */
532 used_types_insert (type);
534 /* T shall be a pointer or reference to a complete class type, or
535 `pointer to cv void''. */
536 switch (tc)
538 case POINTER_TYPE:
539 if (VOID_TYPE_P (TREE_TYPE (type)))
540 break;
541 /* Fall through. */
542 case REFERENCE_TYPE:
543 if (! MAYBE_CLASS_TYPE_P (TREE_TYPE (type)))
545 errstr = _("target is not pointer or reference to class");
546 goto fail;
548 if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (type))))
550 errstr = _("target is not pointer or reference to complete type");
551 goto fail;
553 break;
555 default:
556 errstr = _("target is not pointer or reference");
557 goto fail;
560 if (tc == POINTER_TYPE)
562 expr = decay_conversion (expr, complain);
563 exprtype = TREE_TYPE (expr);
565 /* If T is a pointer type, v shall be an rvalue of a pointer to
566 complete class type, and the result is an rvalue of type T. */
568 expr = mark_rvalue_use (expr);
570 if (!TYPE_PTR_P (exprtype))
572 errstr = _("source is not a pointer");
573 goto fail;
575 if (! MAYBE_CLASS_TYPE_P (TREE_TYPE (exprtype)))
577 errstr = _("source is not a pointer to class");
578 goto fail;
580 if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (exprtype))))
582 errstr = _("source is a pointer to incomplete type");
583 goto fail;
586 else
588 expr = mark_lvalue_use (expr);
590 exprtype = build_reference_type (TREE_TYPE (expr));
592 /* T is a reference type, v shall be an lvalue of a complete class
593 type, and the result is an lvalue of the type referred to by T. */
595 if (! MAYBE_CLASS_TYPE_P (TREE_TYPE (exprtype)))
597 errstr = _("source is not of class type");
598 goto fail;
600 if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (exprtype))))
602 errstr = _("source is of incomplete class type");
603 goto fail;
606 /* Apply trivial conversion T -> T& for dereferenced ptrs. */
607 expr = convert_to_reference (exprtype, expr, CONV_IMPLICIT,
608 LOOKUP_NORMAL, NULL_TREE, complain);
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;
624 binfo = lookup_base (TREE_TYPE (exprtype), TREE_TYPE (type),
625 ba_check, NULL, complain);
627 if (binfo)
629 expr = build_base_path (PLUS_EXPR, convert_from_reference (expr),
630 binfo, 0, complain);
631 if (TYPE_PTR_P (exprtype))
632 expr = rvalue (expr);
633 return expr;
637 /* Otherwise *exprtype must be a polymorphic class (have a vtbl). */
638 if (TYPE_POLYMORPHIC_P (TREE_TYPE (exprtype)))
640 tree expr1;
641 /* if TYPE is `void *', return pointer to complete object. */
642 if (tc == POINTER_TYPE && VOID_TYPE_P (TREE_TYPE (type)))
644 /* if b is an object, dynamic_cast<void *>(&b) == (void *)&b. */
645 if (TREE_CODE (expr) == ADDR_EXPR
646 && VAR_P (TREE_OPERAND (expr, 0))
647 && TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0))) == RECORD_TYPE)
648 return build1 (NOP_EXPR, type, expr);
650 /* Since expr is used twice below, save it. */
651 expr = save_expr (expr);
653 expr1 = build_headof (expr);
654 if (TREE_TYPE (expr1) != type)
655 expr1 = build1 (NOP_EXPR, type, expr1);
656 return ifnonnull (expr, expr1, complain);
658 else
660 tree retval;
661 tree result, td2, td3;
662 tree elems[4];
663 tree static_type, target_type, boff;
665 /* If we got here, we can't convert statically. Therefore,
666 dynamic_cast<D&>(b) (b an object) cannot succeed. */
667 if (tc == REFERENCE_TYPE)
669 if (VAR_P (old_expr)
670 && TREE_CODE (TREE_TYPE (old_expr)) == RECORD_TYPE)
672 tree expr = throw_bad_cast ();
673 if (complain & tf_warning)
674 warning (0, "dynamic_cast of %q#D to %q#T can never succeed",
675 old_expr, type);
676 /* Bash it to the expected type. */
677 TREE_TYPE (expr) = type;
678 return expr;
681 /* Ditto for dynamic_cast<D*>(&b). */
682 else if (TREE_CODE (expr) == ADDR_EXPR)
684 tree op = TREE_OPERAND (expr, 0);
685 if (VAR_P (op)
686 && TREE_CODE (TREE_TYPE (op)) == RECORD_TYPE)
688 if (complain & tf_warning)
689 warning (0, "dynamic_cast of %q#D to %q#T can never succeed",
690 op, type);
691 retval = build_int_cst (type, 0);
692 return retval;
696 /* Use of dynamic_cast when -fno-rtti is prohibited. */
697 if (!flag_rtti)
699 if (complain & tf_error)
700 error ("%<dynamic_cast%> not permitted with -fno-rtti");
701 return error_mark_node;
704 target_type = TYPE_MAIN_VARIANT (TREE_TYPE (type));
705 static_type = TYPE_MAIN_VARIANT (TREE_TYPE (exprtype));
706 td2 = get_tinfo_decl (target_type);
707 mark_used (td2);
708 td2 = cp_build_addr_expr (td2, complain);
709 td3 = get_tinfo_decl (static_type);
710 mark_used (td3);
711 td3 = cp_build_addr_expr (td3, complain);
713 /* Determine how T and V are related. */
714 boff = dcast_base_hint (static_type, target_type);
716 /* Since expr is used twice below, save it. */
717 expr = save_expr (expr);
719 expr1 = expr;
720 if (tc == REFERENCE_TYPE)
721 expr1 = cp_build_addr_expr (expr1, complain);
723 elems[0] = expr1;
724 elems[1] = td3;
725 elems[2] = td2;
726 elems[3] = boff;
728 dcast_fn = dynamic_cast_node;
729 if (!dcast_fn)
731 tree tmp;
732 tree tinfo_ptr;
733 const char *name;
735 push_abi_namespace ();
736 tinfo_ptr = xref_tag (class_type,
737 get_identifier ("__class_type_info"),
738 /*tag_scope=*/ts_current, false);
740 tinfo_ptr = build_pointer_type
741 (cp_build_qualified_type
742 (tinfo_ptr, TYPE_QUAL_CONST));
743 name = "__dynamic_cast";
744 tmp = build_function_type_list (ptr_type_node,
745 const_ptr_type_node,
746 tinfo_ptr, tinfo_ptr,
747 ptrdiff_type_node, NULL_TREE);
748 dcast_fn = build_library_fn_ptr (name, tmp);
749 DECL_PURE_P (dcast_fn) = 1;
750 pop_abi_namespace ();
751 dynamic_cast_node = dcast_fn;
753 result = build_cxx_call (dcast_fn, 4, elems, complain);
755 if (tc == REFERENCE_TYPE)
757 tree bad = throw_bad_cast ();
758 tree neq;
760 result = save_expr (result);
761 neq = cp_truthvalue_conversion (result);
762 return cp_convert (type,
763 build3 (COND_EXPR, TREE_TYPE (result),
764 neq, result, bad), complain);
767 /* Now back to the type we want from a void*. */
768 result = cp_convert (type, result, complain);
769 return ifnonnull (expr, result, complain);
772 else
773 errstr = _("source type is not polymorphic");
775 fail:
776 if (complain & tf_error)
777 error ("cannot dynamic_cast %qE (of type %q#T) to type %q#T (%s)",
778 old_expr, TREE_TYPE (old_expr), type, errstr);
779 return error_mark_node;
782 tree
783 build_dynamic_cast (tree type, tree expr, tsubst_flags_t complain)
785 tree r;
787 if (type == error_mark_node || expr == error_mark_node)
788 return error_mark_node;
790 if (processing_template_decl)
792 expr = build_min (DYNAMIC_CAST_EXPR, type, expr);
793 TREE_SIDE_EFFECTS (expr) = 1;
794 return convert_from_reference (expr);
797 r = convert_from_reference (build_dynamic_cast_1 (type, expr, complain));
798 if (r != error_mark_node)
799 maybe_warn_about_useless_cast (type, expr, complain);
800 return r;
803 /* Return the runtime bit mask encoding the qualifiers of TYPE. */
805 static int
806 qualifier_flags (tree type)
808 int flags = 0;
809 int quals = cp_type_quals (type);
811 if (quals & TYPE_QUAL_CONST)
812 flags |= 1;
813 if (quals & TYPE_QUAL_VOLATILE)
814 flags |= 2;
815 if (quals & TYPE_QUAL_RESTRICT)
816 flags |= 4;
817 return flags;
820 /* Return true, if the pointer chain TYPE ends at an incomplete type, or
821 contains a pointer to member of an incomplete class. */
823 static bool
824 target_incomplete_p (tree type)
826 while (true)
827 if (TYPE_PTRDATAMEM_P (type))
829 if (!COMPLETE_TYPE_P (TYPE_PTRMEM_CLASS_TYPE (type)))
830 return true;
831 type = TYPE_PTRMEM_POINTED_TO_TYPE (type);
833 else if (TYPE_PTR_P (type))
834 type = TREE_TYPE (type);
835 else
836 return !COMPLETE_OR_VOID_TYPE_P (type);
839 /* Returns true if TYPE involves an incomplete class type; in that
840 case, typeinfo variables for TYPE should be emitted with internal
841 linkage. */
843 static bool
844 involves_incomplete_p (tree type)
846 switch (TREE_CODE (type))
848 case POINTER_TYPE:
849 return target_incomplete_p (TREE_TYPE (type));
851 case OFFSET_TYPE:
852 ptrmem:
853 return
854 (target_incomplete_p (TYPE_PTRMEM_POINTED_TO_TYPE (type))
855 || !COMPLETE_TYPE_P (TYPE_PTRMEM_CLASS_TYPE (type)));
857 case RECORD_TYPE:
858 if (TYPE_PTRMEMFUNC_P (type))
859 goto ptrmem;
860 /* Fall through. */
861 case UNION_TYPE:
862 if (!COMPLETE_TYPE_P (type))
863 return true;
865 default:
866 /* All other types do not involve incomplete class types. */
867 return false;
871 /* Return a CONSTRUCTOR for the common part of the type_info objects. This
872 is the vtable pointer and NTBS name. The NTBS name is emitted as a
873 comdat const char array, so it becomes a unique key for the type. Generate
874 and emit that VAR_DECL here. (We can't always emit the type_info itself
875 as comdat, because of pointers to incomplete.) */
877 static tree
878 tinfo_base_init (tinfo_s *ti, tree target)
880 tree init;
881 tree name_decl;
882 tree vtable_ptr;
883 vec<constructor_elt, va_gc> *v;
886 tree name_name, name_string;
888 /* Generate the NTBS array variable. */
889 tree name_type = build_cplus_array_type
890 (cp_build_qualified_type (char_type_node, TYPE_QUAL_CONST),
891 NULL_TREE);
893 /* Determine the name of the variable -- and remember with which
894 type it is associated. */
895 name_name = mangle_typeinfo_string_for_type (target);
896 TREE_TYPE (name_name) = target;
898 name_decl = build_lang_decl (VAR_DECL, name_name, name_type);
899 SET_DECL_ASSEMBLER_NAME (name_decl, name_name);
900 DECL_ARTIFICIAL (name_decl) = 1;
901 DECL_IGNORED_P (name_decl) = 1;
902 TREE_READONLY (name_decl) = 1;
903 TREE_STATIC (name_decl) = 1;
904 DECL_EXTERNAL (name_decl) = 0;
905 DECL_TINFO_P (name_decl) = 1;
906 set_linkage_according_to_type (target, name_decl);
907 import_export_decl (name_decl);
908 name_string = tinfo_name (target, !TREE_PUBLIC (name_decl));
909 DECL_INITIAL (name_decl) = name_string;
910 mark_used (name_decl);
911 pushdecl_top_level_and_finish (name_decl, name_string);
914 vtable_ptr = ti->vtable;
915 if (!vtable_ptr)
917 tree real_type;
918 push_abi_namespace ();
919 real_type = xref_tag (class_type, ti->name,
920 /*tag_scope=*/ts_current, false);
921 pop_abi_namespace ();
923 if (!COMPLETE_TYPE_P (real_type))
925 /* We never saw a definition of this type, so we need to
926 tell the compiler that this is an exported class, as
927 indeed all of the __*_type_info classes are. */
928 SET_CLASSTYPE_INTERFACE_KNOWN (real_type);
929 CLASSTYPE_INTERFACE_ONLY (real_type) = 1;
932 vtable_ptr = get_vtable_decl (real_type, /*complete=*/1);
933 vtable_ptr = cp_build_addr_expr (vtable_ptr, tf_warning_or_error);
935 /* We need to point into the middle of the vtable. */
936 vtable_ptr = fold_build_pointer_plus
937 (vtable_ptr,
938 size_binop (MULT_EXPR,
939 size_int (2 * TARGET_VTABLE_DATA_ENTRY_DISTANCE),
940 TYPE_SIZE_UNIT (vtable_entry_type)));
942 ti->vtable = vtable_ptr;
945 vec_alloc (v, 2);
946 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, vtable_ptr);
947 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE,
948 decay_conversion (name_decl, tf_warning_or_error));
950 init = build_constructor (init_list_type_node, v);
951 TREE_CONSTANT (init) = 1;
952 TREE_STATIC (init) = 1;
954 return init;
957 /* Return the CONSTRUCTOR expr for a type_info of TYPE. TI provides the
958 information about the particular type_info derivation, which adds no
959 additional fields to the type_info base. */
961 static tree
962 generic_initializer (tinfo_s *ti, tree target)
964 tree init = tinfo_base_init (ti, target);
966 init = build_constructor_single (init_list_type_node, NULL_TREE, init);
967 TREE_CONSTANT (init) = 1;
968 TREE_STATIC (init) = 1;
969 return init;
972 /* Return the CONSTRUCTOR expr for a type_info of pointer TYPE.
973 TI provides information about the particular type_info derivation,
974 which adds target type and qualifier flags members to the type_info base. */
976 static tree
977 ptr_initializer (tinfo_s *ti, tree target)
979 tree init = tinfo_base_init (ti, target);
980 tree to = TREE_TYPE (target);
981 int flags = qualifier_flags (to);
982 bool incomplete = target_incomplete_p (to);
983 vec<constructor_elt, va_gc> *v;
984 vec_alloc (v, 3);
986 if (incomplete)
987 flags |= 8;
988 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, init);
989 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, build_int_cst (NULL_TREE, flags));
990 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE,
991 get_tinfo_ptr (TYPE_MAIN_VARIANT (to)));
993 init = build_constructor (init_list_type_node, v);
994 TREE_CONSTANT (init) = 1;
995 TREE_STATIC (init) = 1;
996 return init;
999 /* Return the CONSTRUCTOR expr for a type_info of pointer to member data TYPE.
1000 TI provides information about the particular type_info derivation,
1001 which adds class, target type and qualifier flags members to the type_info
1002 base. */
1004 static tree
1005 ptm_initializer (tinfo_s *ti, tree target)
1007 tree init = tinfo_base_init (ti, target);
1008 tree to = TYPE_PTRMEM_POINTED_TO_TYPE (target);
1009 tree klass = TYPE_PTRMEM_CLASS_TYPE (target);
1010 int flags = qualifier_flags (to);
1011 bool incomplete = target_incomplete_p (to);
1012 vec<constructor_elt, va_gc> *v;
1013 vec_alloc (v, 4);
1015 if (incomplete)
1016 flags |= 0x8;
1017 if (!COMPLETE_TYPE_P (klass))
1018 flags |= 0x10;
1019 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, init);
1020 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, build_int_cst (NULL_TREE, flags));
1021 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE,
1022 get_tinfo_ptr (TYPE_MAIN_VARIANT (to)));
1023 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, get_tinfo_ptr (klass));
1025 init = build_constructor (init_list_type_node, v);
1026 TREE_CONSTANT (init) = 1;
1027 TREE_STATIC (init) = 1;
1028 return init;
1031 /* Return the CONSTRUCTOR expr for a type_info of class TYPE.
1032 TI provides information about the particular __class_type_info derivation,
1033 which adds hint flags and N extra initializers to the type_info base. */
1035 static tree
1036 class_initializer (tinfo_s *ti, tree target, unsigned n, ...)
1038 tree init = tinfo_base_init (ti, target);
1039 va_list extra_inits;
1040 unsigned i;
1041 vec<constructor_elt, va_gc> *v;
1042 vec_alloc (v, n+1);
1044 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, init);
1045 va_start (extra_inits, n);
1046 for (i = 0; i < n; i++)
1047 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, va_arg (extra_inits, tree));
1048 va_end (extra_inits);
1050 init = build_constructor (init_list_type_node, v);
1051 TREE_CONSTANT (init) = 1;
1052 TREE_STATIC (init) = 1;
1053 return init;
1056 /* Returns true if the typeinfo for type should be placed in
1057 the runtime library. */
1059 static bool
1060 typeinfo_in_lib_p (tree type)
1062 /* The typeinfo objects for `T*' and `const T*' are in the runtime
1063 library for simple types T. */
1064 if (TYPE_PTR_P (type)
1065 && (cp_type_quals (TREE_TYPE (type)) == TYPE_QUAL_CONST
1066 || cp_type_quals (TREE_TYPE (type)) == TYPE_UNQUALIFIED))
1067 type = TREE_TYPE (type);
1069 switch (TREE_CODE (type))
1071 case INTEGER_TYPE:
1072 case BOOLEAN_TYPE:
1073 case REAL_TYPE:
1074 case VOID_TYPE:
1075 case NULLPTR_TYPE:
1076 return true;
1078 case LANG_TYPE:
1079 /* fall through. */
1081 default:
1082 return false;
1086 /* Generate the initializer for the type info describing TYPE. TK_INDEX is
1087 the index of the descriptor in the tinfo_desc vector. */
1089 static tree
1090 get_pseudo_ti_init (tree type, unsigned tk_index)
1092 tinfo_s *ti = &(*tinfo_descs)[tk_index];
1094 gcc_assert (at_eof);
1095 switch (tk_index)
1097 case TK_POINTER_MEMBER_TYPE:
1098 return ptm_initializer (ti, type);
1100 case TK_POINTER_TYPE:
1101 return ptr_initializer (ti, type);
1103 case TK_BUILTIN_TYPE:
1104 case TK_ENUMERAL_TYPE:
1105 case TK_FUNCTION_TYPE:
1106 case TK_ARRAY_TYPE:
1107 return generic_initializer (ti, type);
1109 case TK_CLASS_TYPE:
1110 return class_initializer (ti, type, 0);
1112 case TK_SI_CLASS_TYPE:
1114 tree base_binfo = BINFO_BASE_BINFO (TYPE_BINFO (type), 0);
1115 tree tinfo = get_tinfo_ptr (BINFO_TYPE (base_binfo));
1117 /* get_tinfo_ptr might have reallocated the tinfo_descs vector. */
1118 ti = &(*tinfo_descs)[tk_index];
1119 return class_initializer (ti, type, 1, tinfo);
1122 default:
1124 int hint = ((CLASSTYPE_REPEATED_BASE_P (type) << 0)
1125 | (CLASSTYPE_DIAMOND_SHAPED_P (type) << 1));
1126 tree binfo = TYPE_BINFO (type);
1127 int nbases = BINFO_N_BASE_BINFOS (binfo);
1128 vec<tree, va_gc> *base_accesses = BINFO_BASE_ACCESSES (binfo);
1129 tree offset_type = LONGPTR_T;
1130 tree base_inits = NULL_TREE;
1131 int ix;
1132 vec<constructor_elt, va_gc> *init_vec = NULL;
1133 constructor_elt *e;
1135 gcc_assert (tk_index >= TK_FIXED);
1137 vec_safe_grow (init_vec, nbases);
1138 /* Generate the base information initializer. */
1139 for (ix = nbases; ix--;)
1141 tree base_binfo = BINFO_BASE_BINFO (binfo, ix);
1142 tree base_init;
1143 int flags = 0;
1144 tree tinfo;
1145 tree offset;
1146 vec<constructor_elt, va_gc> *v;
1148 if ((*base_accesses)[ix] == access_public_node)
1149 flags |= 2;
1150 tinfo = get_tinfo_ptr (BINFO_TYPE (base_binfo));
1151 if (BINFO_VIRTUAL_P (base_binfo))
1153 /* We store the vtable offset at which the virtual
1154 base offset can be found. */
1155 offset = BINFO_VPTR_FIELD (base_binfo);
1156 flags |= 1;
1158 else
1159 offset = BINFO_OFFSET (base_binfo);
1161 /* Combine offset and flags into one field. */
1162 offset = fold_convert (offset_type, offset);
1163 offset = fold_build2_loc (input_location,
1164 LSHIFT_EXPR, offset_type, offset,
1165 build_int_cst (offset_type, 8));
1166 offset = fold_build2_loc (input_location,
1167 BIT_IOR_EXPR, offset_type, offset,
1168 build_int_cst (offset_type, flags));
1169 vec_alloc (v, 2);
1170 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, tinfo);
1171 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, offset);
1172 base_init = build_constructor (init_list_type_node, v);
1173 e = &(*init_vec)[ix];
1174 e->index = NULL_TREE;
1175 e->value = base_init;
1177 base_inits = build_constructor (init_list_type_node, init_vec);
1179 /* get_tinfo_ptr might have reallocated the tinfo_descs vector. */
1180 ti = &(*tinfo_descs)[tk_index];
1181 return class_initializer (ti, type, 3,
1182 build_int_cst (NULL_TREE, hint),
1183 build_int_cst (NULL_TREE, nbases),
1184 base_inits);
1189 /* Generate the RECORD_TYPE containing the data layout of a type_info
1190 derivative as used by the runtime. This layout must be consistent with
1191 that defined in the runtime support. Also generate the VAR_DECL for the
1192 type's vtable. We explicitly manage the vtable member, and name it for
1193 real type as used in the runtime. The RECORD type has a different name,
1194 to avoid collisions. Return a TREE_LIST who's TINFO_PSEUDO_TYPE
1195 is the generated type and TINFO_VTABLE_NAME is the name of the
1196 vtable. We have to delay generating the VAR_DECL of the vtable
1197 until the end of the translation, when we'll have seen the library
1198 definition, if there was one.
1200 REAL_NAME is the runtime's name of the type. Trailing arguments are
1201 additional FIELD_DECL's for the structure. The final argument must be
1202 NULL. */
1204 static void
1205 create_pseudo_type_info (int tk, const char *real_name, ...)
1207 tinfo_s *ti;
1208 tree pseudo_type;
1209 char *pseudo_name;
1210 tree fields;
1211 tree field_decl;
1212 va_list ap;
1214 va_start (ap, real_name);
1216 /* Generate the pseudo type name. */
1217 pseudo_name = (char *) alloca (strlen (real_name) + 30);
1218 strcpy (pseudo_name, real_name);
1219 strcat (pseudo_name, "_pseudo");
1220 if (tk >= TK_FIXED)
1221 sprintf (pseudo_name + strlen (pseudo_name), "%d", tk - TK_FIXED);
1223 /* First field is the pseudo type_info base class. */
1224 fields = build_decl (input_location,
1225 FIELD_DECL, NULL_TREE,
1226 (*tinfo_descs)[TK_TYPE_INFO_TYPE].type);
1228 /* Now add the derived fields. */
1229 while ((field_decl = va_arg (ap, tree)))
1231 DECL_CHAIN (field_decl) = fields;
1232 fields = field_decl;
1235 /* Create the pseudo type. */
1236 pseudo_type = make_class_type (RECORD_TYPE);
1237 finish_builtin_struct (pseudo_type, pseudo_name, fields, NULL_TREE);
1238 CLASSTYPE_AS_BASE (pseudo_type) = pseudo_type;
1240 ti = &(*tinfo_descs)[tk];
1241 ti->type = cp_build_qualified_type (pseudo_type, TYPE_QUAL_CONST);
1242 ti->name = get_identifier (real_name);
1243 ti->vtable = NULL_TREE;
1245 /* Pretend this is public so determine_visibility doesn't give vtables
1246 internal linkage. */
1247 TREE_PUBLIC (TYPE_MAIN_DECL (ti->type)) = 1;
1249 va_end (ap);
1252 /* Return the index of a pseudo type info type node used to describe
1253 TYPE. TYPE must be a complete type (or cv void), except at the end
1254 of the translation unit. */
1256 static unsigned
1257 get_pseudo_ti_index (tree type)
1259 unsigned ix;
1261 switch (TREE_CODE (type))
1263 case OFFSET_TYPE:
1264 ix = TK_POINTER_MEMBER_TYPE;
1265 break;
1267 case POINTER_TYPE:
1268 ix = TK_POINTER_TYPE;
1269 break;
1271 case ENUMERAL_TYPE:
1272 ix = TK_ENUMERAL_TYPE;
1273 break;
1275 case FUNCTION_TYPE:
1276 ix = TK_FUNCTION_TYPE;
1277 break;
1279 case ARRAY_TYPE:
1280 ix = TK_ARRAY_TYPE;
1281 break;
1283 case UNION_TYPE:
1284 case RECORD_TYPE:
1285 if (TYPE_PTRMEMFUNC_P (type))
1287 ix = TK_POINTER_MEMBER_TYPE;
1288 break;
1290 else if (!COMPLETE_TYPE_P (type))
1292 if (!at_eof)
1293 cxx_incomplete_type_error (NULL_TREE, type);
1294 ix = TK_CLASS_TYPE;
1295 break;
1297 else if (!BINFO_N_BASE_BINFOS (TYPE_BINFO (type)))
1299 ix = TK_CLASS_TYPE;
1300 break;
1302 else
1304 tree binfo = TYPE_BINFO (type);
1305 vec<tree, va_gc> *base_accesses = BINFO_BASE_ACCESSES (binfo);
1306 tree base_binfo = BINFO_BASE_BINFO (binfo, 0);
1307 int num_bases = BINFO_N_BASE_BINFOS (binfo);
1309 if (num_bases == 1
1310 && (*base_accesses)[0] == access_public_node
1311 && !BINFO_VIRTUAL_P (base_binfo)
1312 && integer_zerop (BINFO_OFFSET (base_binfo)))
1314 /* single non-virtual public. */
1315 ix = TK_SI_CLASS_TYPE;
1316 break;
1318 else
1320 tinfo_s *ti;
1321 tree array_domain, base_array;
1323 ix = TK_FIXED + num_bases;
1324 if (vec_safe_length (tinfo_descs) <= ix)
1326 /* too short, extend. */
1327 unsigned len = vec_safe_length (tinfo_descs);
1329 vec_safe_grow (tinfo_descs, ix + 1);
1330 while (tinfo_descs->iterate (len++, &ti))
1331 ti->type = ti->vtable = ti->name = NULL_TREE;
1333 else if ((*tinfo_descs)[ix].type)
1334 /* already created. */
1335 break;
1337 /* Create the array of __base_class_type_info entries.
1338 G++ 3.2 allocated an array that had one too many
1339 entries, and then filled that extra entries with
1340 zeros. */
1341 if (abi_version_at_least (2))
1342 array_domain = build_index_type (size_int (num_bases - 1));
1343 else
1344 array_domain = build_index_type (size_int (num_bases));
1345 base_array = build_array_type ((*tinfo_descs)[TK_BASE_TYPE].type,
1346 array_domain);
1348 push_abi_namespace ();
1349 create_pseudo_type_info
1350 (ix, "__vmi_class_type_info",
1351 build_decl (input_location,
1352 FIELD_DECL, NULL_TREE, integer_type_node),
1353 build_decl (input_location,
1354 FIELD_DECL, NULL_TREE, integer_type_node),
1355 build_decl (input_location,
1356 FIELD_DECL, NULL_TREE, base_array),
1357 NULL);
1358 pop_abi_namespace ();
1359 break;
1362 default:
1363 ix = TK_BUILTIN_TYPE;
1364 break;
1366 return ix;
1369 /* Make sure the required builtin types exist for generating the type_info
1370 variable definitions. */
1372 static void
1373 create_tinfo_types (void)
1375 tinfo_s *ti;
1377 gcc_assert (!tinfo_descs);
1379 vec_safe_grow (tinfo_descs, TK_FIXED);
1381 push_abi_namespace ();
1383 /* Create the internal type_info structure. This is used as a base for
1384 the other structures. */
1386 tree field, fields;
1388 field = build_decl (BUILTINS_LOCATION,
1389 FIELD_DECL, NULL_TREE, const_ptr_type_node);
1390 fields = field;
1392 field = build_decl (BUILTINS_LOCATION,
1393 FIELD_DECL, NULL_TREE, const_string_type_node);
1394 DECL_CHAIN (field) = fields;
1395 fields = field;
1397 ti = &(*tinfo_descs)[TK_TYPE_INFO_TYPE];
1398 ti->type = make_class_type (RECORD_TYPE);
1399 ti->vtable = NULL_TREE;
1400 ti->name = NULL_TREE;
1401 finish_builtin_struct (ti->type, "__type_info_pseudo",
1402 fields, NULL_TREE);
1405 /* Fundamental type_info */
1406 create_pseudo_type_info (TK_BUILTIN_TYPE, "__fundamental_type_info", NULL);
1408 /* Array, function and enum type_info. No additional fields. */
1409 create_pseudo_type_info (TK_ARRAY_TYPE, "__array_type_info", NULL);
1410 create_pseudo_type_info (TK_FUNCTION_TYPE, "__function_type_info", NULL);
1411 create_pseudo_type_info (TK_ENUMERAL_TYPE, "__enum_type_info", NULL);
1413 /* Class type_info. No additional fields. */
1414 create_pseudo_type_info (TK_CLASS_TYPE, "__class_type_info", NULL);
1416 /* Single public non-virtual base class. Add pointer to base class.
1417 This is really a descendant of __class_type_info. */
1418 create_pseudo_type_info (TK_SI_CLASS_TYPE, "__si_class_type_info",
1419 build_decl (BUILTINS_LOCATION,
1420 FIELD_DECL, NULL_TREE, type_info_ptr_type),
1421 NULL);
1423 /* Base class internal helper. Pointer to base type, offset to base,
1424 flags. */
1426 tree field, fields;
1428 field = build_decl (BUILTINS_LOCATION,
1429 FIELD_DECL, NULL_TREE, type_info_ptr_type);
1430 fields = field;
1432 field = build_decl (BUILTINS_LOCATION,
1433 FIELD_DECL, NULL_TREE, LONGPTR_T);
1434 DECL_CHAIN (field) = fields;
1435 fields = field;
1437 ti = &(*tinfo_descs)[TK_BASE_TYPE];
1439 ti->type = make_class_type (RECORD_TYPE);
1440 ti->vtable = NULL_TREE;
1441 ti->name = NULL_TREE;
1442 finish_builtin_struct (ti->type, "__base_class_type_info_pseudo",
1443 fields, NULL_TREE);
1446 /* Pointer type_info. Adds two fields, qualification mask
1447 and pointer to the pointed to type. This is really a descendant of
1448 __pbase_type_info. */
1449 create_pseudo_type_info (TK_POINTER_TYPE, "__pointer_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 NULL);
1456 /* Pointer to member data type_info. Add qualifications flags,
1457 pointer to the member's type info and pointer to the class.
1458 This is really a descendant of __pbase_type_info. */
1459 create_pseudo_type_info (TK_POINTER_MEMBER_TYPE,
1460 "__pointer_to_member_type_info",
1461 build_decl (BUILTINS_LOCATION,
1462 FIELD_DECL, NULL_TREE, integer_type_node),
1463 build_decl (BUILTINS_LOCATION,
1464 FIELD_DECL, NULL_TREE, type_info_ptr_type),
1465 build_decl (BUILTINS_LOCATION,
1466 FIELD_DECL, NULL_TREE, type_info_ptr_type),
1467 NULL);
1469 pop_abi_namespace ();
1472 /* Emit the type_info descriptors which are guaranteed to be in the runtime
1473 support. Generating them here guarantees consistency with the other
1474 structures. We use the following heuristic to determine when the runtime
1475 is being generated. If std::__fundamental_type_info is defined, and its
1476 destructor is defined, then the runtime is being built. */
1478 void
1479 emit_support_tinfos (void)
1481 /* Dummy static variable so we can put nullptr in the array; it will be
1482 set before we actually start to walk the array. */
1483 static tree *const fundamentals[] =
1485 &void_type_node,
1486 &boolean_type_node,
1487 &wchar_type_node, &char16_type_node, &char32_type_node,
1488 &char_type_node, &signed_char_type_node, &unsigned_char_type_node,
1489 &short_integer_type_node, &short_unsigned_type_node,
1490 &integer_type_node, &unsigned_type_node,
1491 &long_integer_type_node, &long_unsigned_type_node,
1492 &long_long_integer_type_node, &long_long_unsigned_type_node,
1493 &int128_integer_type_node, &int128_unsigned_type_node,
1494 &float_type_node, &double_type_node, &long_double_type_node,
1495 &dfloat32_type_node, &dfloat64_type_node, &dfloat128_type_node,
1496 &nullptr_type_node,
1499 int ix;
1500 tree bltn_type, dtor;
1502 push_abi_namespace ();
1503 bltn_type = xref_tag (class_type,
1504 get_identifier ("__fundamental_type_info"),
1505 /*tag_scope=*/ts_current, false);
1506 pop_abi_namespace ();
1507 if (!COMPLETE_TYPE_P (bltn_type))
1508 return;
1509 dtor = CLASSTYPE_DESTRUCTORS (bltn_type);
1510 if (!dtor || DECL_EXTERNAL (dtor))
1511 return;
1512 doing_runtime = 1;
1513 for (ix = 0; fundamentals[ix]; ix++)
1515 tree bltn = *fundamentals[ix];
1516 tree types[3];
1517 int i;
1519 if (bltn == NULL_TREE)
1520 continue;
1521 types[0] = bltn;
1522 types[1] = build_pointer_type (bltn);
1523 types[2] = build_pointer_type (cp_build_qualified_type (bltn,
1524 TYPE_QUAL_CONST));
1526 for (i = 0; i < 3; ++i)
1528 tree tinfo;
1530 tinfo = get_tinfo_decl (types[i]);
1531 TREE_USED (tinfo) = 1;
1532 mark_needed (tinfo);
1533 /* The C++ ABI requires that these objects be COMDAT. But,
1534 On systems without weak symbols, initialized COMDAT
1535 objects are emitted with internal linkage. (See
1536 comdat_linkage for details.) Since we want these objects
1537 to have external linkage so that copies do not have to be
1538 emitted in code outside the runtime library, we make them
1539 non-COMDAT here.
1541 It might also not be necessary to follow this detail of the
1542 ABI. */
1543 if (!flag_weak || ! targetm.cxx.library_rtti_comdat ())
1545 gcc_assert (TREE_PUBLIC (tinfo) && !DECL_COMDAT (tinfo));
1546 DECL_INTERFACE_KNOWN (tinfo) = 1;
1552 /* Finish a type info decl. DECL_PTR is a pointer to an unemitted
1553 tinfo decl. Determine whether it needs emitting, and if so
1554 generate the initializer. */
1556 bool
1557 emit_tinfo_decl (tree decl)
1559 tree type = TREE_TYPE (DECL_NAME (decl));
1560 int in_library = typeinfo_in_lib_p (type);
1562 gcc_assert (DECL_TINFO_P (decl));
1564 if (in_library)
1566 if (doing_runtime)
1567 DECL_EXTERNAL (decl) = 0;
1568 else
1570 /* If we're not in the runtime, then DECL (which is already
1571 DECL_EXTERNAL) will not be defined here. */
1572 DECL_INTERFACE_KNOWN (decl) = 1;
1573 return false;
1576 else if (involves_incomplete_p (type))
1578 if (!decl_needed_p (decl))
1579 return false;
1580 /* If TYPE involves an incomplete class type, then the typeinfo
1581 object will be emitted with internal linkage. There is no
1582 way to know whether or not types are incomplete until the end
1583 of the compilation, so this determination must be deferred
1584 until this point. */
1585 TREE_PUBLIC (decl) = 0;
1586 DECL_EXTERNAL (decl) = 0;
1587 DECL_INTERFACE_KNOWN (decl) = 1;
1590 import_export_decl (decl);
1591 if (DECL_NOT_REALLY_EXTERN (decl) && decl_needed_p (decl))
1593 tree init;
1595 DECL_EXTERNAL (decl) = 0;
1596 init = get_pseudo_ti_init (type, get_pseudo_ti_index (type));
1597 DECL_INITIAL (decl) = init;
1598 mark_used (decl);
1599 cp_finish_decl (decl, init, false, NULL_TREE, 0);
1600 return true;
1602 else
1603 return false;
1606 #include "gt-cp-rtti.h"