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