2013-09-06 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / cp / rtti.c
blob5827540c9b273c4c1a994b441943662c9b9aaf31
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 if (array_of_runtime_bound_p (type))
397 error ("typeid of array of runtime bound");
398 else
399 error ("cannot create type information for type %qT because "
400 "it involves types of variable size",
401 type);
402 return error_mark_node;
405 if (TREE_CODE (type) == METHOD_TYPE)
406 type = build_function_type (TREE_TYPE (type),
407 TREE_CHAIN (TYPE_ARG_TYPES (type)));
409 type = complete_type (type);
411 /* For a class type, the variable is cached in the type node
412 itself. */
413 if (CLASS_TYPE_P (type))
415 d = CLASSTYPE_TYPEINFO_VAR (TYPE_MAIN_VARIANT (type));
416 if (d)
417 return d;
420 name = mangle_typeinfo_for_type (type);
422 d = IDENTIFIER_GLOBAL_VALUE (name);
423 if (!d)
425 int ix = get_pseudo_ti_index (type);
426 tinfo_s *ti = &(*tinfo_descs)[ix];
428 d = build_lang_decl (VAR_DECL, name, ti->type);
429 SET_DECL_ASSEMBLER_NAME (d, name);
430 /* Remember the type it is for. */
431 TREE_TYPE (name) = type;
432 DECL_TINFO_P (d) = 1;
433 DECL_ARTIFICIAL (d) = 1;
434 DECL_IGNORED_P (d) = 1;
435 TREE_READONLY (d) = 1;
436 TREE_STATIC (d) = 1;
437 /* Mark the variable as undefined -- but remember that we can
438 define it later if we need to do so. */
439 DECL_EXTERNAL (d) = 1;
440 DECL_NOT_REALLY_EXTERN (d) = 1;
441 set_linkage_according_to_type (type, d);
443 d = pushdecl_top_level_and_finish (d, NULL_TREE);
444 if (CLASS_TYPE_P (type))
445 CLASSTYPE_TYPEINFO_VAR (TYPE_MAIN_VARIANT (type)) = d;
447 /* Add decl to the global array of tinfo decls. */
448 vec_safe_push (unemitted_tinfo_decls, d);
451 return d;
454 /* Return a pointer to a type_info object describing TYPE, suitably
455 cast to the language defined type. */
457 static tree
458 get_tinfo_ptr (tree type)
460 tree decl = get_tinfo_decl (type);
462 mark_used (decl);
463 return build_nop (type_info_ptr_type,
464 build_address (decl));
467 /* Return the type_info object for TYPE. */
469 tree
470 get_typeid (tree type, tsubst_flags_t complain)
472 if (type == error_mark_node || !typeid_ok_p ())
473 return error_mark_node;
475 if (processing_template_decl)
476 return build_min (TYPEID_EXPR, const_type_info_type_node, type);
478 /* If the type of the type-id is a reference type, the result of the
479 typeid expression refers to a type_info object representing the
480 referenced type. */
481 type = non_reference (type);
483 /* This is not one of the uses of a qualified function type in 8.3.5. */
484 if (TREE_CODE (type) == FUNCTION_TYPE
485 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
486 || type_memfn_rqual (type) != REF_QUAL_NONE))
488 if (complain & tf_error)
489 error ("typeid of qualified function type %qT", type);
490 return error_mark_node;
493 /* The top-level cv-qualifiers of the lvalue expression or the type-id
494 that is the operand of typeid are always ignored. */
495 type = TYPE_MAIN_VARIANT (type);
497 /* For UNKNOWN_TYPEs call complete_type_or_else to get diagnostics. */
498 if (CLASS_TYPE_P (type) || type == unknown_type_node
499 || type == init_list_type_node)
500 type = complete_type_or_maybe_complain (type, NULL_TREE, complain);
502 if (!type)
503 return error_mark_node;
505 return cp_build_indirect_ref (get_tinfo_ptr (type), RO_NULL, complain);
508 /* Check whether TEST is null before returning RESULT. If TEST is used in
509 RESULT, it must have previously had a save_expr applied to it. */
511 static tree
512 ifnonnull (tree test, tree result, tsubst_flags_t complain)
514 return build3 (COND_EXPR, TREE_TYPE (result),
515 build2 (EQ_EXPR, boolean_type_node, test,
516 cp_convert (TREE_TYPE (test), nullptr_node,
517 complain)),
518 cp_convert (TREE_TYPE (result), nullptr_node, complain),
519 result);
522 /* Execute a dynamic cast, as described in section 5.2.6 of the 9/93 working
523 paper. */
525 static tree
526 build_dynamic_cast_1 (tree type, tree expr, tsubst_flags_t complain)
528 enum tree_code tc = TREE_CODE (type);
529 tree exprtype;
530 tree dcast_fn;
531 tree old_expr = expr;
532 const char *errstr = NULL;
534 /* Save casted types in the function's used types hash table. */
535 used_types_insert (type);
537 /* T shall be a pointer or reference to a complete class type, or
538 `pointer to cv void''. */
539 switch (tc)
541 case POINTER_TYPE:
542 if (VOID_TYPE_P (TREE_TYPE (type)))
543 break;
544 /* Fall through. */
545 case REFERENCE_TYPE:
546 if (! MAYBE_CLASS_TYPE_P (TREE_TYPE (type)))
548 errstr = _("target is not pointer or reference to class");
549 goto fail;
551 if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (type))))
553 errstr = _("target is not pointer or reference to complete type");
554 goto fail;
556 break;
558 default:
559 errstr = _("target is not pointer or reference");
560 goto fail;
563 if (tc == POINTER_TYPE)
565 expr = decay_conversion (expr, complain);
566 exprtype = TREE_TYPE (expr);
568 /* If T is a pointer type, v shall be an rvalue of a pointer to
569 complete class type, and the result is an rvalue of type T. */
571 expr = mark_rvalue_use (expr);
573 if (!TYPE_PTR_P (exprtype))
575 errstr = _("source is not a pointer");
576 goto fail;
578 if (! MAYBE_CLASS_TYPE_P (TREE_TYPE (exprtype)))
580 errstr = _("source is not a pointer to class");
581 goto fail;
583 if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (exprtype))))
585 errstr = _("source is a pointer to incomplete type");
586 goto fail;
589 else
591 expr = mark_lvalue_use (expr);
593 exprtype = build_reference_type (TREE_TYPE (expr));
595 /* T is a reference type, v shall be an lvalue of a complete class
596 type, and the result is an lvalue of the type referred to by T. */
598 if (! MAYBE_CLASS_TYPE_P (TREE_TYPE (exprtype)))
600 errstr = _("source is not of class type");
601 goto fail;
603 if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (exprtype))))
605 errstr = _("source is of incomplete class type");
606 goto fail;
609 /* Apply trivial conversion T -> T& for dereferenced ptrs. */
610 expr = convert_to_reference (exprtype, expr, CONV_IMPLICIT,
611 LOOKUP_NORMAL, NULL_TREE, complain);
614 /* The dynamic_cast operator shall not cast away constness. */
615 if (!at_least_as_qualified_p (TREE_TYPE (type),
616 TREE_TYPE (exprtype)))
618 errstr = _("conversion casts away constness");
619 goto fail;
622 /* If *type is an unambiguous accessible base class of *exprtype,
623 convert statically. */
625 tree binfo = lookup_base (TREE_TYPE (exprtype), TREE_TYPE (type),
626 ba_check, NULL, complain);
627 if (binfo)
628 return build_static_cast (type, expr, complain);
631 /* Otherwise *exprtype must be a polymorphic class (have a vtbl). */
632 if (TYPE_POLYMORPHIC_P (TREE_TYPE (exprtype)))
634 tree expr1;
635 /* if TYPE is `void *', return pointer to complete object. */
636 if (tc == POINTER_TYPE && VOID_TYPE_P (TREE_TYPE (type)))
638 /* if b is an object, dynamic_cast<void *>(&b) == (void *)&b. */
639 if (TREE_CODE (expr) == ADDR_EXPR
640 && VAR_P (TREE_OPERAND (expr, 0))
641 && TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0))) == RECORD_TYPE)
642 return build1 (NOP_EXPR, type, expr);
644 /* Since expr is used twice below, save it. */
645 expr = save_expr (expr);
647 expr1 = build_headof (expr);
648 if (TREE_TYPE (expr1) != type)
649 expr1 = build1 (NOP_EXPR, type, expr1);
650 return ifnonnull (expr, expr1, complain);
652 else
654 tree retval;
655 tree result, td2, td3;
656 tree elems[4];
657 tree static_type, target_type, boff;
659 /* If we got here, we can't convert statically. Therefore,
660 dynamic_cast<D&>(b) (b an object) cannot succeed. */
661 if (tc == REFERENCE_TYPE)
663 if (VAR_P (old_expr)
664 && TREE_CODE (TREE_TYPE (old_expr)) == RECORD_TYPE)
666 tree expr = throw_bad_cast ();
667 if (complain & tf_warning)
668 warning (0, "dynamic_cast of %q#D to %q#T can never succeed",
669 old_expr, type);
670 /* Bash it to the expected type. */
671 TREE_TYPE (expr) = type;
672 return expr;
675 /* Ditto for dynamic_cast<D*>(&b). */
676 else if (TREE_CODE (expr) == ADDR_EXPR)
678 tree op = TREE_OPERAND (expr, 0);
679 if (VAR_P (op)
680 && TREE_CODE (TREE_TYPE (op)) == RECORD_TYPE)
682 if (complain & tf_warning)
683 warning (0, "dynamic_cast of %q#D to %q#T can never succeed",
684 op, type);
685 retval = build_int_cst (type, 0);
686 return retval;
690 /* Use of dynamic_cast when -fno-rtti is prohibited. */
691 if (!flag_rtti)
693 if (complain & tf_error)
694 error ("%<dynamic_cast%> not permitted with -fno-rtti");
695 return error_mark_node;
698 target_type = TYPE_MAIN_VARIANT (TREE_TYPE (type));
699 static_type = TYPE_MAIN_VARIANT (TREE_TYPE (exprtype));
700 td2 = get_tinfo_decl (target_type);
701 mark_used (td2);
702 td2 = cp_build_addr_expr (td2, complain);
703 td3 = get_tinfo_decl (static_type);
704 mark_used (td3);
705 td3 = cp_build_addr_expr (td3, complain);
707 /* Determine how T and V are related. */
708 boff = dcast_base_hint (static_type, target_type);
710 /* Since expr is used twice below, save it. */
711 expr = save_expr (expr);
713 expr1 = expr;
714 if (tc == REFERENCE_TYPE)
715 expr1 = cp_build_addr_expr (expr1, complain);
717 elems[0] = expr1;
718 elems[1] = td3;
719 elems[2] = td2;
720 elems[3] = boff;
722 dcast_fn = dynamic_cast_node;
723 if (!dcast_fn)
725 tree tmp;
726 tree tinfo_ptr;
727 const char *name;
729 push_abi_namespace ();
730 tinfo_ptr = xref_tag (class_type,
731 get_identifier ("__class_type_info"),
732 /*tag_scope=*/ts_current, false);
734 tinfo_ptr = build_pointer_type
735 (cp_build_qualified_type
736 (tinfo_ptr, TYPE_QUAL_CONST));
737 name = "__dynamic_cast";
738 tmp = build_function_type_list (ptr_type_node,
739 const_ptr_type_node,
740 tinfo_ptr, tinfo_ptr,
741 ptrdiff_type_node, NULL_TREE);
742 dcast_fn = build_library_fn_ptr (name, tmp,
743 ECF_LEAF | ECF_PURE | ECF_NOTHROW);
744 pop_abi_namespace ();
745 dynamic_cast_node = dcast_fn;
747 result = build_cxx_call (dcast_fn, 4, elems, complain);
749 if (tc == REFERENCE_TYPE)
751 tree bad = throw_bad_cast ();
752 tree neq;
754 result = save_expr (result);
755 neq = cp_truthvalue_conversion (result);
756 return cp_convert (type,
757 build3 (COND_EXPR, TREE_TYPE (result),
758 neq, result, bad), complain);
761 /* Now back to the type we want from a void*. */
762 result = cp_convert (type, result, complain);
763 return ifnonnull (expr, result, complain);
766 else
767 errstr = _("source type is not polymorphic");
769 fail:
770 if (complain & tf_error)
771 error ("cannot dynamic_cast %qE (of type %q#T) to type %q#T (%s)",
772 old_expr, TREE_TYPE (old_expr), type, errstr);
773 return error_mark_node;
776 tree
777 build_dynamic_cast (tree type, tree expr, tsubst_flags_t complain)
779 tree r;
781 if (type == error_mark_node || expr == error_mark_node)
782 return error_mark_node;
784 if (processing_template_decl)
786 expr = build_min (DYNAMIC_CAST_EXPR, type, expr);
787 TREE_SIDE_EFFECTS (expr) = 1;
788 return convert_from_reference (expr);
791 r = convert_from_reference (build_dynamic_cast_1 (type, expr, complain));
792 if (r != error_mark_node)
793 maybe_warn_about_useless_cast (type, expr, complain);
794 return r;
797 /* Return the runtime bit mask encoding the qualifiers of TYPE. */
799 static int
800 qualifier_flags (tree type)
802 int flags = 0;
803 int quals = cp_type_quals (type);
805 if (quals & TYPE_QUAL_CONST)
806 flags |= 1;
807 if (quals & TYPE_QUAL_VOLATILE)
808 flags |= 2;
809 if (quals & TYPE_QUAL_RESTRICT)
810 flags |= 4;
811 return flags;
814 /* Return true, if the pointer chain TYPE ends at an incomplete type, or
815 contains a pointer to member of an incomplete class. */
817 static bool
818 target_incomplete_p (tree type)
820 while (true)
821 if (TYPE_PTRDATAMEM_P (type))
823 if (!COMPLETE_TYPE_P (TYPE_PTRMEM_CLASS_TYPE (type)))
824 return true;
825 type = TYPE_PTRMEM_POINTED_TO_TYPE (type);
827 else if (TYPE_PTR_P (type))
828 type = TREE_TYPE (type);
829 else
830 return !COMPLETE_OR_VOID_TYPE_P (type);
833 /* Returns true if TYPE involves an incomplete class type; in that
834 case, typeinfo variables for TYPE should be emitted with internal
835 linkage. */
837 static bool
838 involves_incomplete_p (tree type)
840 switch (TREE_CODE (type))
842 case POINTER_TYPE:
843 return target_incomplete_p (TREE_TYPE (type));
845 case OFFSET_TYPE:
846 ptrmem:
847 return
848 (target_incomplete_p (TYPE_PTRMEM_POINTED_TO_TYPE (type))
849 || !COMPLETE_TYPE_P (TYPE_PTRMEM_CLASS_TYPE (type)));
851 case RECORD_TYPE:
852 if (TYPE_PTRMEMFUNC_P (type))
853 goto ptrmem;
854 /* Fall through. */
855 case UNION_TYPE:
856 if (!COMPLETE_TYPE_P (type))
857 return true;
859 default:
860 /* All other types do not involve incomplete class types. */
861 return false;
865 /* Return a CONSTRUCTOR for the common part of the type_info objects. This
866 is the vtable pointer and NTBS name. The NTBS name is emitted as a
867 comdat const char array, so it becomes a unique key for the type. Generate
868 and emit that VAR_DECL here. (We can't always emit the type_info itself
869 as comdat, because of pointers to incomplete.) */
871 static tree
872 tinfo_base_init (tinfo_s *ti, tree target)
874 tree init;
875 tree name_decl;
876 tree vtable_ptr;
877 vec<constructor_elt, va_gc> *v;
880 tree name_name, name_string;
882 /* Generate the NTBS array variable. */
883 tree name_type = build_cplus_array_type
884 (cp_build_qualified_type (char_type_node, TYPE_QUAL_CONST),
885 NULL_TREE);
887 /* Determine the name of the variable -- and remember with which
888 type it is associated. */
889 name_name = mangle_typeinfo_string_for_type (target);
890 TREE_TYPE (name_name) = target;
892 name_decl = build_lang_decl (VAR_DECL, name_name, name_type);
893 SET_DECL_ASSEMBLER_NAME (name_decl, name_name);
894 DECL_ARTIFICIAL (name_decl) = 1;
895 DECL_IGNORED_P (name_decl) = 1;
896 TREE_READONLY (name_decl) = 1;
897 TREE_STATIC (name_decl) = 1;
898 DECL_EXTERNAL (name_decl) = 0;
899 DECL_TINFO_P (name_decl) = 1;
900 set_linkage_according_to_type (target, name_decl);
901 import_export_decl (name_decl);
902 name_string = tinfo_name (target, !TREE_PUBLIC (name_decl));
903 DECL_INITIAL (name_decl) = name_string;
904 mark_used (name_decl);
905 pushdecl_top_level_and_finish (name_decl, name_string);
908 vtable_ptr = ti->vtable;
909 if (!vtable_ptr)
911 tree real_type;
912 push_abi_namespace ();
913 real_type = xref_tag (class_type, ti->name,
914 /*tag_scope=*/ts_current, false);
915 pop_abi_namespace ();
917 if (!COMPLETE_TYPE_P (real_type))
919 /* We never saw a definition of this type, so we need to
920 tell the compiler that this is an exported class, as
921 indeed all of the __*_type_info classes are. */
922 SET_CLASSTYPE_INTERFACE_KNOWN (real_type);
923 CLASSTYPE_INTERFACE_ONLY (real_type) = 1;
926 vtable_ptr = get_vtable_decl (real_type, /*complete=*/1);
927 vtable_ptr = cp_build_addr_expr (vtable_ptr, tf_warning_or_error);
929 /* We need to point into the middle of the vtable. */
930 vtable_ptr = fold_build_pointer_plus
931 (vtable_ptr,
932 size_binop (MULT_EXPR,
933 size_int (2 * TARGET_VTABLE_DATA_ENTRY_DISTANCE),
934 TYPE_SIZE_UNIT (vtable_entry_type)));
936 ti->vtable = vtable_ptr;
939 vec_alloc (v, 2);
940 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, vtable_ptr);
941 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE,
942 decay_conversion (name_decl, tf_warning_or_error));
944 init = build_constructor (init_list_type_node, v);
945 TREE_CONSTANT (init) = 1;
946 TREE_STATIC (init) = 1;
948 return init;
951 /* Return the CONSTRUCTOR expr for a type_info of TYPE. TI provides the
952 information about the particular type_info derivation, which adds no
953 additional fields to the type_info base. */
955 static tree
956 generic_initializer (tinfo_s *ti, tree target)
958 tree init = tinfo_base_init (ti, target);
960 init = build_constructor_single (init_list_type_node, NULL_TREE, init);
961 TREE_CONSTANT (init) = 1;
962 TREE_STATIC (init) = 1;
963 return init;
966 /* Return the CONSTRUCTOR expr for a type_info of pointer TYPE.
967 TI provides information about the particular type_info derivation,
968 which adds target type and qualifier flags members to the type_info base. */
970 static tree
971 ptr_initializer (tinfo_s *ti, tree target)
973 tree init = tinfo_base_init (ti, target);
974 tree to = TREE_TYPE (target);
975 int flags = qualifier_flags (to);
976 bool incomplete = target_incomplete_p (to);
977 vec<constructor_elt, va_gc> *v;
978 vec_alloc (v, 3);
980 if (incomplete)
981 flags |= 8;
982 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, init);
983 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, build_int_cst (NULL_TREE, flags));
984 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE,
985 get_tinfo_ptr (TYPE_MAIN_VARIANT (to)));
987 init = build_constructor (init_list_type_node, v);
988 TREE_CONSTANT (init) = 1;
989 TREE_STATIC (init) = 1;
990 return init;
993 /* Return the CONSTRUCTOR expr for a type_info of pointer to member data TYPE.
994 TI provides information about the particular type_info derivation,
995 which adds class, target type and qualifier flags members to the type_info
996 base. */
998 static tree
999 ptm_initializer (tinfo_s *ti, tree target)
1001 tree init = tinfo_base_init (ti, target);
1002 tree to = TYPE_PTRMEM_POINTED_TO_TYPE (target);
1003 tree klass = TYPE_PTRMEM_CLASS_TYPE (target);
1004 int flags = qualifier_flags (to);
1005 bool incomplete = target_incomplete_p (to);
1006 vec<constructor_elt, va_gc> *v;
1007 vec_alloc (v, 4);
1009 if (incomplete)
1010 flags |= 0x8;
1011 if (!COMPLETE_TYPE_P (klass))
1012 flags |= 0x10;
1013 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, init);
1014 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, build_int_cst (NULL_TREE, flags));
1015 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE,
1016 get_tinfo_ptr (TYPE_MAIN_VARIANT (to)));
1017 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, get_tinfo_ptr (klass));
1019 init = build_constructor (init_list_type_node, v);
1020 TREE_CONSTANT (init) = 1;
1021 TREE_STATIC (init) = 1;
1022 return init;
1025 /* Return the CONSTRUCTOR expr for a type_info of class TYPE.
1026 TI provides information about the particular __class_type_info derivation,
1027 which adds hint flags and N extra initializers to the type_info base. */
1029 static tree
1030 class_initializer (tinfo_s *ti, tree target, unsigned n, ...)
1032 tree init = tinfo_base_init (ti, target);
1033 va_list extra_inits;
1034 unsigned i;
1035 vec<constructor_elt, va_gc> *v;
1036 vec_alloc (v, n+1);
1038 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, init);
1039 va_start (extra_inits, n);
1040 for (i = 0; i < n; i++)
1041 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, va_arg (extra_inits, tree));
1042 va_end (extra_inits);
1044 init = build_constructor (init_list_type_node, v);
1045 TREE_CONSTANT (init) = 1;
1046 TREE_STATIC (init) = 1;
1047 return init;
1050 /* Returns true if the typeinfo for type should be placed in
1051 the runtime library. */
1053 static bool
1054 typeinfo_in_lib_p (tree type)
1056 /* The typeinfo objects for `T*' and `const T*' are in the runtime
1057 library for simple types T. */
1058 if (TYPE_PTR_P (type)
1059 && (cp_type_quals (TREE_TYPE (type)) == TYPE_QUAL_CONST
1060 || cp_type_quals (TREE_TYPE (type)) == TYPE_UNQUALIFIED))
1061 type = TREE_TYPE (type);
1063 switch (TREE_CODE (type))
1065 case INTEGER_TYPE:
1066 case BOOLEAN_TYPE:
1067 case REAL_TYPE:
1068 case VOID_TYPE:
1069 case NULLPTR_TYPE:
1070 return true;
1072 case LANG_TYPE:
1073 /* fall through. */
1075 default:
1076 return false;
1080 /* Generate the initializer for the type info describing TYPE. TK_INDEX is
1081 the index of the descriptor in the tinfo_desc vector. */
1083 static tree
1084 get_pseudo_ti_init (tree type, unsigned tk_index)
1086 tinfo_s *ti = &(*tinfo_descs)[tk_index];
1088 gcc_assert (at_eof);
1089 switch (tk_index)
1091 case TK_POINTER_MEMBER_TYPE:
1092 return ptm_initializer (ti, type);
1094 case TK_POINTER_TYPE:
1095 return ptr_initializer (ti, type);
1097 case TK_BUILTIN_TYPE:
1098 case TK_ENUMERAL_TYPE:
1099 case TK_FUNCTION_TYPE:
1100 case TK_ARRAY_TYPE:
1101 return generic_initializer (ti, type);
1103 case TK_CLASS_TYPE:
1104 return class_initializer (ti, type, 0);
1106 case TK_SI_CLASS_TYPE:
1108 tree base_binfo = BINFO_BASE_BINFO (TYPE_BINFO (type), 0);
1109 tree tinfo = get_tinfo_ptr (BINFO_TYPE (base_binfo));
1111 /* get_tinfo_ptr might have reallocated the tinfo_descs vector. */
1112 ti = &(*tinfo_descs)[tk_index];
1113 return class_initializer (ti, type, 1, tinfo);
1116 default:
1118 int hint = ((CLASSTYPE_REPEATED_BASE_P (type) << 0)
1119 | (CLASSTYPE_DIAMOND_SHAPED_P (type) << 1));
1120 tree binfo = TYPE_BINFO (type);
1121 int nbases = BINFO_N_BASE_BINFOS (binfo);
1122 vec<tree, va_gc> *base_accesses = BINFO_BASE_ACCESSES (binfo);
1123 tree offset_type = LONGPTR_T;
1124 tree base_inits = NULL_TREE;
1125 int ix;
1126 vec<constructor_elt, va_gc> *init_vec = NULL;
1127 constructor_elt *e;
1129 gcc_assert (tk_index >= TK_FIXED);
1131 vec_safe_grow (init_vec, nbases);
1132 /* Generate the base information initializer. */
1133 for (ix = nbases; ix--;)
1135 tree base_binfo = BINFO_BASE_BINFO (binfo, ix);
1136 tree base_init;
1137 int flags = 0;
1138 tree tinfo;
1139 tree offset;
1140 vec<constructor_elt, va_gc> *v;
1142 if ((*base_accesses)[ix] == access_public_node)
1143 flags |= 2;
1144 tinfo = get_tinfo_ptr (BINFO_TYPE (base_binfo));
1145 if (BINFO_VIRTUAL_P (base_binfo))
1147 /* We store the vtable offset at which the virtual
1148 base offset can be found. */
1149 offset = BINFO_VPTR_FIELD (base_binfo);
1150 flags |= 1;
1152 else
1153 offset = BINFO_OFFSET (base_binfo);
1155 /* Combine offset and flags into one field. */
1156 offset = fold_convert (offset_type, offset);
1157 offset = fold_build2_loc (input_location,
1158 LSHIFT_EXPR, offset_type, offset,
1159 build_int_cst (offset_type, 8));
1160 offset = fold_build2_loc (input_location,
1161 BIT_IOR_EXPR, offset_type, offset,
1162 build_int_cst (offset_type, flags));
1163 vec_alloc (v, 2);
1164 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, tinfo);
1165 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, offset);
1166 base_init = build_constructor (init_list_type_node, v);
1167 e = &(*init_vec)[ix];
1168 e->index = NULL_TREE;
1169 e->value = base_init;
1171 base_inits = build_constructor (init_list_type_node, init_vec);
1173 /* get_tinfo_ptr might have reallocated the tinfo_descs vector. */
1174 ti = &(*tinfo_descs)[tk_index];
1175 return class_initializer (ti, type, 3,
1176 build_int_cst (NULL_TREE, hint),
1177 build_int_cst (NULL_TREE, nbases),
1178 base_inits);
1183 /* Generate the RECORD_TYPE containing the data layout of a type_info
1184 derivative as used by the runtime. This layout must be consistent with
1185 that defined in the runtime support. Also generate the VAR_DECL for the
1186 type's vtable. We explicitly manage the vtable member, and name it for
1187 real type as used in the runtime. The RECORD type has a different name,
1188 to avoid collisions. Return a TREE_LIST who's TINFO_PSEUDO_TYPE
1189 is the generated type and TINFO_VTABLE_NAME is the name of the
1190 vtable. We have to delay generating the VAR_DECL of the vtable
1191 until the end of the translation, when we'll have seen the library
1192 definition, if there was one.
1194 REAL_NAME is the runtime's name of the type. Trailing arguments are
1195 additional FIELD_DECL's for the structure. The final argument must be
1196 NULL. */
1198 static void
1199 create_pseudo_type_info (int tk, const char *real_name, ...)
1201 tinfo_s *ti;
1202 tree pseudo_type;
1203 char *pseudo_name;
1204 tree fields;
1205 tree field_decl;
1206 va_list ap;
1208 va_start (ap, real_name);
1210 /* Generate the pseudo type name. */
1211 pseudo_name = (char *) alloca (strlen (real_name) + 30);
1212 strcpy (pseudo_name, real_name);
1213 strcat (pseudo_name, "_pseudo");
1214 if (tk >= TK_FIXED)
1215 sprintf (pseudo_name + strlen (pseudo_name), "%d", tk - TK_FIXED);
1217 /* First field is the pseudo type_info base class. */
1218 fields = build_decl (input_location,
1219 FIELD_DECL, NULL_TREE,
1220 (*tinfo_descs)[TK_TYPE_INFO_TYPE].type);
1222 /* Now add the derived fields. */
1223 while ((field_decl = va_arg (ap, tree)))
1225 DECL_CHAIN (field_decl) = fields;
1226 fields = field_decl;
1229 /* Create the pseudo type. */
1230 pseudo_type = make_class_type (RECORD_TYPE);
1231 finish_builtin_struct (pseudo_type, pseudo_name, fields, NULL_TREE);
1232 CLASSTYPE_AS_BASE (pseudo_type) = pseudo_type;
1234 ti = &(*tinfo_descs)[tk];
1235 ti->type = cp_build_qualified_type (pseudo_type, TYPE_QUAL_CONST);
1236 ti->name = get_identifier (real_name);
1237 ti->vtable = NULL_TREE;
1239 /* Pretend this is public so determine_visibility doesn't give vtables
1240 internal linkage. */
1241 TREE_PUBLIC (TYPE_MAIN_DECL (ti->type)) = 1;
1243 va_end (ap);
1246 /* Return the index of a pseudo type info type node used to describe
1247 TYPE. TYPE must be a complete type (or cv void), except at the end
1248 of the translation unit. */
1250 static unsigned
1251 get_pseudo_ti_index (tree type)
1253 unsigned ix;
1255 switch (TREE_CODE (type))
1257 case OFFSET_TYPE:
1258 ix = TK_POINTER_MEMBER_TYPE;
1259 break;
1261 case POINTER_TYPE:
1262 ix = TK_POINTER_TYPE;
1263 break;
1265 case ENUMERAL_TYPE:
1266 ix = TK_ENUMERAL_TYPE;
1267 break;
1269 case FUNCTION_TYPE:
1270 ix = TK_FUNCTION_TYPE;
1271 break;
1273 case ARRAY_TYPE:
1274 ix = TK_ARRAY_TYPE;
1275 break;
1277 case UNION_TYPE:
1278 case RECORD_TYPE:
1279 if (TYPE_PTRMEMFUNC_P (type))
1281 ix = TK_POINTER_MEMBER_TYPE;
1282 break;
1284 else if (!COMPLETE_TYPE_P (type))
1286 if (!at_eof)
1287 cxx_incomplete_type_error (NULL_TREE, type);
1288 ix = TK_CLASS_TYPE;
1289 break;
1291 else if (!BINFO_N_BASE_BINFOS (TYPE_BINFO (type)))
1293 ix = TK_CLASS_TYPE;
1294 break;
1296 else
1298 tree binfo = TYPE_BINFO (type);
1299 vec<tree, va_gc> *base_accesses = BINFO_BASE_ACCESSES (binfo);
1300 tree base_binfo = BINFO_BASE_BINFO (binfo, 0);
1301 int num_bases = BINFO_N_BASE_BINFOS (binfo);
1303 if (num_bases == 1
1304 && (*base_accesses)[0] == access_public_node
1305 && !BINFO_VIRTUAL_P (base_binfo)
1306 && integer_zerop (BINFO_OFFSET (base_binfo)))
1308 /* single non-virtual public. */
1309 ix = TK_SI_CLASS_TYPE;
1310 break;
1312 else
1314 tinfo_s *ti;
1315 tree array_domain, base_array;
1317 ix = TK_FIXED + num_bases;
1318 if (vec_safe_length (tinfo_descs) <= ix)
1320 /* too short, extend. */
1321 unsigned len = vec_safe_length (tinfo_descs);
1323 vec_safe_grow (tinfo_descs, ix + 1);
1324 while (tinfo_descs->iterate (len++, &ti))
1325 ti->type = ti->vtable = ti->name = NULL_TREE;
1327 else if ((*tinfo_descs)[ix].type)
1328 /* already created. */
1329 break;
1331 /* Create the array of __base_class_type_info entries.
1332 G++ 3.2 allocated an array that had one too many
1333 entries, and then filled that extra entries with
1334 zeros. */
1335 if (abi_version_at_least (2))
1336 array_domain = build_index_type (size_int (num_bases - 1));
1337 else
1338 array_domain = build_index_type (size_int (num_bases));
1339 base_array = build_array_type ((*tinfo_descs)[TK_BASE_TYPE].type,
1340 array_domain);
1342 push_abi_namespace ();
1343 create_pseudo_type_info
1344 (ix, "__vmi_class_type_info",
1345 build_decl (input_location,
1346 FIELD_DECL, NULL_TREE, integer_type_node),
1347 build_decl (input_location,
1348 FIELD_DECL, NULL_TREE, integer_type_node),
1349 build_decl (input_location,
1350 FIELD_DECL, NULL_TREE, base_array),
1351 NULL);
1352 pop_abi_namespace ();
1353 break;
1356 default:
1357 ix = TK_BUILTIN_TYPE;
1358 break;
1360 return ix;
1363 /* Make sure the required builtin types exist for generating the type_info
1364 variable definitions. */
1366 static void
1367 create_tinfo_types (void)
1369 tinfo_s *ti;
1371 gcc_assert (!tinfo_descs);
1373 vec_safe_grow (tinfo_descs, TK_FIXED);
1375 push_abi_namespace ();
1377 /* Create the internal type_info structure. This is used as a base for
1378 the other structures. */
1380 tree field, fields;
1382 field = build_decl (BUILTINS_LOCATION,
1383 FIELD_DECL, NULL_TREE, const_ptr_type_node);
1384 fields = field;
1386 field = build_decl (BUILTINS_LOCATION,
1387 FIELD_DECL, NULL_TREE, const_string_type_node);
1388 DECL_CHAIN (field) = fields;
1389 fields = field;
1391 ti = &(*tinfo_descs)[TK_TYPE_INFO_TYPE];
1392 ti->type = make_class_type (RECORD_TYPE);
1393 ti->vtable = NULL_TREE;
1394 ti->name = NULL_TREE;
1395 finish_builtin_struct (ti->type, "__type_info_pseudo",
1396 fields, NULL_TREE);
1399 /* Fundamental type_info */
1400 create_pseudo_type_info (TK_BUILTIN_TYPE, "__fundamental_type_info", NULL);
1402 /* Array, function and enum type_info. No additional fields. */
1403 create_pseudo_type_info (TK_ARRAY_TYPE, "__array_type_info", NULL);
1404 create_pseudo_type_info (TK_FUNCTION_TYPE, "__function_type_info", NULL);
1405 create_pseudo_type_info (TK_ENUMERAL_TYPE, "__enum_type_info", NULL);
1407 /* Class type_info. No additional fields. */
1408 create_pseudo_type_info (TK_CLASS_TYPE, "__class_type_info", NULL);
1410 /* Single public non-virtual base class. Add pointer to base class.
1411 This is really a descendant of __class_type_info. */
1412 create_pseudo_type_info (TK_SI_CLASS_TYPE, "__si_class_type_info",
1413 build_decl (BUILTINS_LOCATION,
1414 FIELD_DECL, NULL_TREE, type_info_ptr_type),
1415 NULL);
1417 /* Base class internal helper. Pointer to base type, offset to base,
1418 flags. */
1420 tree field, fields;
1422 field = build_decl (BUILTINS_LOCATION,
1423 FIELD_DECL, NULL_TREE, type_info_ptr_type);
1424 fields = field;
1426 field = build_decl (BUILTINS_LOCATION,
1427 FIELD_DECL, NULL_TREE, LONGPTR_T);
1428 DECL_CHAIN (field) = fields;
1429 fields = field;
1431 ti = &(*tinfo_descs)[TK_BASE_TYPE];
1433 ti->type = make_class_type (RECORD_TYPE);
1434 ti->vtable = NULL_TREE;
1435 ti->name = NULL_TREE;
1436 finish_builtin_struct (ti->type, "__base_class_type_info_pseudo",
1437 fields, NULL_TREE);
1440 /* Pointer type_info. Adds two fields, qualification mask
1441 and pointer to the pointed to type. This is really a descendant of
1442 __pbase_type_info. */
1443 create_pseudo_type_info (TK_POINTER_TYPE, "__pointer_type_info",
1444 build_decl (BUILTINS_LOCATION,
1445 FIELD_DECL, NULL_TREE, integer_type_node),
1446 build_decl (BUILTINS_LOCATION,
1447 FIELD_DECL, NULL_TREE, type_info_ptr_type),
1448 NULL);
1450 /* Pointer to member data type_info. Add qualifications flags,
1451 pointer to the member's type info and pointer to the class.
1452 This is really a descendant of __pbase_type_info. */
1453 create_pseudo_type_info (TK_POINTER_MEMBER_TYPE,
1454 "__pointer_to_member_type_info",
1455 build_decl (BUILTINS_LOCATION,
1456 FIELD_DECL, NULL_TREE, integer_type_node),
1457 build_decl (BUILTINS_LOCATION,
1458 FIELD_DECL, NULL_TREE, type_info_ptr_type),
1459 build_decl (BUILTINS_LOCATION,
1460 FIELD_DECL, NULL_TREE, type_info_ptr_type),
1461 NULL);
1463 pop_abi_namespace ();
1466 /* Emit the type_info descriptors which are guaranteed to be in the runtime
1467 support. Generating them here guarantees consistency with the other
1468 structures. We use the following heuristic to determine when the runtime
1469 is being generated. If std::__fundamental_type_info is defined, and its
1470 destructor is defined, then the runtime is being built. */
1472 void
1473 emit_support_tinfos (void)
1475 /* Dummy static variable so we can put nullptr in the array; it will be
1476 set before we actually start to walk the array. */
1477 static tree *const fundamentals[] =
1479 &void_type_node,
1480 &boolean_type_node,
1481 &wchar_type_node, &char16_type_node, &char32_type_node,
1482 &char_type_node, &signed_char_type_node, &unsigned_char_type_node,
1483 &short_integer_type_node, &short_unsigned_type_node,
1484 &integer_type_node, &unsigned_type_node,
1485 &long_integer_type_node, &long_unsigned_type_node,
1486 &long_long_integer_type_node, &long_long_unsigned_type_node,
1487 &int128_integer_type_node, &int128_unsigned_type_node,
1488 &float_type_node, &double_type_node, &long_double_type_node,
1489 &dfloat32_type_node, &dfloat64_type_node, &dfloat128_type_node,
1490 &nullptr_type_node,
1493 int ix;
1494 tree bltn_type, dtor;
1496 push_abi_namespace ();
1497 bltn_type = xref_tag (class_type,
1498 get_identifier ("__fundamental_type_info"),
1499 /*tag_scope=*/ts_current, false);
1500 pop_abi_namespace ();
1501 if (!COMPLETE_TYPE_P (bltn_type))
1502 return;
1503 dtor = CLASSTYPE_DESTRUCTORS (bltn_type);
1504 if (!dtor || DECL_EXTERNAL (dtor))
1505 return;
1506 doing_runtime = 1;
1507 for (ix = 0; fundamentals[ix]; ix++)
1509 tree bltn = *fundamentals[ix];
1510 tree types[3];
1511 int i;
1513 if (bltn == NULL_TREE)
1514 continue;
1515 types[0] = bltn;
1516 types[1] = build_pointer_type (bltn);
1517 types[2] = build_pointer_type (cp_build_qualified_type (bltn,
1518 TYPE_QUAL_CONST));
1520 for (i = 0; i < 3; ++i)
1522 tree tinfo;
1524 tinfo = get_tinfo_decl (types[i]);
1525 TREE_USED (tinfo) = 1;
1526 mark_needed (tinfo);
1527 /* The C++ ABI requires that these objects be COMDAT. But,
1528 On systems without weak symbols, initialized COMDAT
1529 objects are emitted with internal linkage. (See
1530 comdat_linkage for details.) Since we want these objects
1531 to have external linkage so that copies do not have to be
1532 emitted in code outside the runtime library, we make them
1533 non-COMDAT here.
1535 It might also not be necessary to follow this detail of the
1536 ABI. */
1537 if (!flag_weak || ! targetm.cxx.library_rtti_comdat ())
1539 gcc_assert (TREE_PUBLIC (tinfo) && !DECL_COMDAT (tinfo));
1540 DECL_INTERFACE_KNOWN (tinfo) = 1;
1546 /* Finish a type info decl. DECL_PTR is a pointer to an unemitted
1547 tinfo decl. Determine whether it needs emitting, and if so
1548 generate the initializer. */
1550 bool
1551 emit_tinfo_decl (tree decl)
1553 tree type = TREE_TYPE (DECL_NAME (decl));
1554 int in_library = typeinfo_in_lib_p (type);
1556 gcc_assert (DECL_TINFO_P (decl));
1558 if (in_library)
1560 if (doing_runtime)
1561 DECL_EXTERNAL (decl) = 0;
1562 else
1564 /* If we're not in the runtime, then DECL (which is already
1565 DECL_EXTERNAL) will not be defined here. */
1566 DECL_INTERFACE_KNOWN (decl) = 1;
1567 return false;
1570 else if (involves_incomplete_p (type))
1572 if (!decl_needed_p (decl))
1573 return false;
1574 /* If TYPE involves an incomplete class type, then the typeinfo
1575 object will be emitted with internal linkage. There is no
1576 way to know whether or not types are incomplete until the end
1577 of the compilation, so this determination must be deferred
1578 until this point. */
1579 TREE_PUBLIC (decl) = 0;
1580 DECL_EXTERNAL (decl) = 0;
1581 DECL_INTERFACE_KNOWN (decl) = 1;
1584 import_export_decl (decl);
1585 if (DECL_NOT_REALLY_EXTERN (decl) && decl_needed_p (decl))
1587 tree init;
1589 DECL_EXTERNAL (decl) = 0;
1590 init = get_pseudo_ti_init (type, get_pseudo_ti_index (type));
1591 DECL_INITIAL (decl) = init;
1592 mark_used (decl);
1593 cp_finish_decl (decl, init, false, NULL_TREE, 0);
1594 return true;
1596 else
1597 return false;
1600 #include "gt-cp-rtti.h"