1 /* RunTime Type Identification
2 Copyright (C) 1995, 1996, 1997, 1998,
3 1999, 2000 Free Software Foundation, Inc.
4 Mostly written by Jason Merrill (jason@cygnus.com).
6 This file is part of GNU CC.
8 GNU CC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
13 GNU CC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU CC; see the file COPYING. If not, write to
20 the Free Software Foundation, 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
34 #define INT_TYPE_SIZE BITS_PER_WORD
37 /* Accessors for the type_info objects. We need to remember several things
38 about each of the type_info types. The global tree nodes such as
39 bltn_desc_type_node are TREE_LISTs, and these macros are used to access
40 the required information. */
41 /* The RECORD_TYPE of a type_info derived class. */
42 #define TINFO_PSEUDO_TYPE(NODE) TREE_TYPE (NODE)
43 /* The VAR_DECL of the vtable for the type_info derived class. */
44 #define TINFO_VTABLE_DECL(NODE) TREE_VALUE (NODE)
46 extern struct obstack permanent_obstack
;
48 static tree build_runtime_decl
PARAMS((const char *, tree
));
49 static tree build_headof_sub
PARAMS((tree
));
50 static tree build_headof
PARAMS((tree
));
51 static tree get_tinfo_var
PARAMS((tree
));
52 static tree ifnonnull
PARAMS((tree
, tree
));
53 static tree tinfo_name
PARAMS((tree
));
54 static tree get_base_offset
PARAMS((tree
, tree
));
55 static tree build_dynamic_cast_1
PARAMS((tree
, tree
));
56 static void expand_si_desc
PARAMS((tree
, tree
));
57 static void expand_class_desc
PARAMS((tree
, tree
));
58 static void expand_attr_desc
PARAMS((tree
, tree
));
59 static void expand_ptr_desc
PARAMS((tree
, tree
));
60 static void expand_generic_desc
PARAMS((tree
, tree
, const char *));
61 static tree throw_bad_cast
PARAMS((void));
62 static tree throw_bad_typeid
PARAMS((void));
63 static tree get_tinfo_decl_dynamic
PARAMS((tree
));
64 static tree tinfo_from_decl
PARAMS((tree
));
65 static int qualifier_flags
PARAMS((tree
));
66 static tree tinfo_base_init
PARAMS((tree
, tree
));
67 static tree generic_initializer
PARAMS((tree
, tree
));
68 static tree ptr_ref_initializer
PARAMS((tree
, tree
));
69 static tree ptmd_initializer
PARAMS((tree
, tree
));
70 static int class_hint_flags
PARAMS((tree
));
71 static tree class_initializer
PARAMS((tree
, tree
, tree
));
72 static tree synthesize_tinfo_var
PARAMS((tree
, tree
));
73 static tree create_real_tinfo_var
PARAMS((tree
, tree
, tree
));
74 static tree create_pseudo_type_info
PARAMS((const char *, int, ...));
75 static tree get_vmi_pseudo_type_info
PARAMS((int));
76 static void create_tinfo_types
PARAMS((void));
78 static int doing_runtime
= 0;
81 init_rtti_processing ()
84 push_namespace (get_identifier ("std"));
85 type_info_type_node
= xref_tag
86 (class_type_node
, get_identifier ("type_info"), 1);
89 if (!new_abi_rtti_p ())
91 tinfo_decl_id
= get_identifier ("__tf");
92 tinfo_decl_type
= build_function_type
95 (type_info_type_node
, TYPE_QUAL_CONST
)),
100 tinfo_decl_id
= get_identifier ("__ti");
101 tinfo_decl_type
= build_qualified_type
102 (type_info_type_node
, TYPE_QUAL_CONST
);
104 tinfo_var_id
= get_identifier ("__ti");
107 /* Given a pointer to an object with at least one virtual table
108 pointer somewhere, return a pointer to a possible sub-object that
109 has a virtual table pointer in it that is the vtable parent for
113 build_headof_sub (exp
)
116 tree type
= TREE_TYPE (TREE_TYPE (exp
));
117 tree basetype
= CLASSTYPE_RTTI (type
);
118 tree binfo
= get_binfo (basetype
, type
, 0);
120 exp
= convert_pointer_to_real (binfo
, exp
);
124 /* Given the expression EXP of type `class *', return the head of the
125 object pointed to by EXP with type cv void*, if the class has any
126 virtual functions (TYPE_POLYMORPHIC_P), else just return the
133 tree type
= TREE_TYPE (exp
);
137 my_friendly_assert (TREE_CODE (type
) == POINTER_TYPE
, 20000112);
138 type
= TREE_TYPE (type
);
140 if (!TYPE_POLYMORPHIC_P (type
))
142 if (CLASSTYPE_COM_INTERFACE (type
))
144 cp_error ("RTTI not supported for COM interface type `%T'", type
);
145 return error_mark_node
;
148 /* If we don't have rtti stuff, get to a sub-object that does. */
149 if (!CLASSTYPE_VFIELDS (TREE_TYPE (TREE_TYPE (exp
))))
150 exp
= build_headof_sub (exp
);
152 /* We use this a couple of times below, protect it. */
153 exp
= save_expr (exp
);
155 aref
= build_vtbl_ref (build_indirect_ref (exp
, NULL_PTR
), integer_zero_node
);
157 if (flag_vtable_thunks
)
160 offset
= build_component_ref (aref
, delta_identifier
, NULL_TREE
, 0);
162 type
= build_qualified_type (ptr_type_node
,
163 CP_TYPE_QUALS (TREE_TYPE (exp
)));
164 return build (PLUS_EXPR
, type
, exp
,
165 cp_convert (ptrdiff_type_node
, offset
));
168 /* Build a decl to a runtime entry point taking void and returning TYPE.
169 Although the entry point may never return, making its return type
170 consistent is necessary. */
173 build_runtime_decl (name
, type
)
177 tree d
= get_identifier (name
);
179 if (IDENTIFIER_GLOBAL_VALUE (d
))
180 d
= IDENTIFIER_GLOBAL_VALUE (d
);
183 type
= build_function_type (type
, void_list_node
);
184 d
= build_lang_decl (FUNCTION_DECL
, d
, type
);
185 DECL_EXTERNAL (d
) = 1;
187 DECL_ARTIFICIAL (d
) = 1;
188 pushdecl_top_level (d
);
189 make_function_rtl (d
);
196 /* Get a bad_cast node for the program to throw...
198 See libstdc++/exception.cc for __throw_bad_cast */
203 if (!throw_bad_cast_node
)
204 throw_bad_cast_node
= build_runtime_decl
205 ("__throw_bad_cast", ptr_type_node
);
207 return build_call (throw_bad_cast_node
,
208 TREE_TYPE (TREE_TYPE (throw_bad_cast_node
)),
215 if (!throw_bad_typeid_node
)
216 throw_bad_typeid_node
= build_runtime_decl
217 ("__throw_bad_typeid",
219 (build_qualified_type
220 (type_info_type_node
, TYPE_QUAL_CONST
)));
222 return build_call (throw_bad_typeid_node
,
223 TREE_TYPE (TREE_TYPE (throw_bad_typeid_node
)),
227 /* Return a pointer to type_info function associated with the expression EXP.
228 If EXP is a reference to a polymorphic class, return the dynamic type;
229 otherwise return the static type of the expression. */
232 get_tinfo_decl_dynamic (exp
)
237 if (exp
== error_mark_node
)
238 return error_mark_node
;
240 type
= TREE_TYPE (exp
);
242 /* peel back references, so they match. */
243 if (TREE_CODE (type
) == REFERENCE_TYPE
)
244 type
= TREE_TYPE (type
);
246 /* Peel off cv qualifiers. */
247 type
= TYPE_MAIN_VARIANT (type
);
249 if (type
!= void_type_node
)
250 type
= complete_type_or_else (type
, exp
);
253 return error_mark_node
;
255 /* If exp is a reference to polymorphic type, get the real type_info. */
256 if (TYPE_POLYMORPHIC_P (type
) && ! resolves_to_fixed_type_p (exp
, 0))
258 /* build reference to type_info from vtable. */
262 error ("taking dynamic typeid of object with -fno-rtti");
263 if (CLASSTYPE_COM_INTERFACE (type
))
265 cp_error ("RTTI not supported for COM interface type `%T'", type
);
266 return error_mark_node
;
269 /* If we don't have rtti stuff, get to a sub-object that does. */
270 if (! CLASSTYPE_VFIELDS (type
))
272 exp
= build_unary_op (ADDR_EXPR
, exp
, 0);
273 exp
= build_headof_sub (exp
);
274 exp
= build_indirect_ref (exp
, NULL_PTR
);
277 if (flag_vtable_thunks
)
278 t
= build_vfn_ref ((tree
*) 0, exp
, integer_one_node
);
280 t
= build_vfn_ref ((tree
*) 0, exp
, integer_zero_node
);
281 TREE_TYPE (t
) = build_pointer_type (tinfo_decl_type
);
285 /* otherwise return the type_info for the static type of the expr. */
286 exp
= get_tinfo_decl (TYPE_MAIN_VARIANT (type
));
287 return build_unary_op (ADDR_EXPR
, exp
, 0);
294 tree cond
= NULL_TREE
;
299 error ("cannot use typeid with -fno-rtti");
300 return error_mark_node
;
303 if (TYPE_SIZE (type_info_type_node
) == NULL_TREE
)
305 error ("must #include <typeinfo> before using typeid");
306 return error_mark_node
;
309 if (processing_template_decl
)
310 return build_min_nt (TYPEID_EXPR
, exp
);
312 if (TREE_CODE (exp
) == INDIRECT_REF
313 && TREE_CODE (TREE_TYPE (TREE_OPERAND (exp
, 0))) == POINTER_TYPE
314 && TYPE_POLYMORPHIC_P (TREE_TYPE (exp
))
315 && ! resolves_to_fixed_type_p (exp
, &nonnull
)
318 exp
= stabilize_reference (exp
);
319 cond
= cp_convert (boolean_type_node
, TREE_OPERAND (exp
, 0));
322 exp
= get_tinfo_decl_dynamic (exp
);
324 if (exp
== error_mark_node
)
325 return error_mark_node
;
327 exp
= tinfo_from_decl (exp
);
331 tree bad
= throw_bad_typeid ();
333 exp
= build (COND_EXPR
, TREE_TYPE (exp
), cond
, exp
, bad
);
336 return convert_from_reference (exp
);
343 tree tname
= build_overload_with_type (tinfo_var_id
, type
);
347 my_friendly_assert (!new_abi_rtti_p (), 20000118);
348 if (IDENTIFIER_GLOBAL_VALUE (tname
))
349 return IDENTIFIER_GLOBAL_VALUE (tname
);
351 /* Figure out how much space we need to allocate for the type_info object.
352 If our struct layout or the type_info classes are changed, this will
353 need to be modified. */
354 if (TYPE_QUALS (type
) != TYPE_UNQUALIFIED
)
355 size
= 3 * POINTER_SIZE
+ INT_TYPE_SIZE
;
356 else if (TREE_CODE (type
) == POINTER_TYPE
357 && ! (TREE_CODE (TREE_TYPE (type
)) == OFFSET_TYPE
358 || TREE_CODE (TREE_TYPE (type
)) == METHOD_TYPE
))
359 size
= 3 * POINTER_SIZE
;
360 else if (IS_AGGR_TYPE (type
))
362 if (CLASSTYPE_N_BASECLASSES (type
) == 0)
363 size
= 2 * POINTER_SIZE
;
364 else if (! TYPE_BASE_CONVS_MAY_REQUIRE_CODE_P (type
)
366 (TREE_VEC_ELT (TYPE_BINFO_BASETYPES (type
), 0))))
367 size
= 3 * POINTER_SIZE
;
369 size
= 3 * POINTER_SIZE
+ TYPE_PRECISION (sizetype
);
372 size
= 2 * POINTER_SIZE
;
374 /* The type for a character array of the appropriate size. */
375 arrtype
= build_cplus_array_type
376 (unsigned_char_type_node
,
377 build_index_type (size_int (size
/ BITS_PER_UNIT
- 1)));
379 return declare_global_var (tname
, arrtype
);
382 /* Generate the NTBS name of a type. */
387 const char *name
= build_overload_name (type
, 1, 1);
388 tree name_string
= combine_strings (build_string (strlen (name
) + 1, name
));
392 /* Returns a decl for a function or variable which can be used to obtain a
393 type_info object for TYPE. The old-abi uses functions, the new-abi
394 uses the type_info object directly. You can take the address of the
395 returned decl, to save the decl. To use the decl call
396 tinfo_from_decl. You must arrange that the decl is mark_used, if
397 actually use it --- decls in vtables are only used if the vtable is
401 get_tinfo_decl (type
)
407 if (TREE_CODE (type
) == OFFSET_TYPE
)
408 type
= TREE_TYPE (type
);
409 if (TREE_CODE (type
) == METHOD_TYPE
)
410 type
= build_function_type (TREE_TYPE (type
),
411 TREE_CHAIN (TYPE_ARG_TYPES (type
)));
413 name
= build_overload_with_type (tinfo_decl_id
, type
);
415 d
= IDENTIFIER_GLOBAL_VALUE (name
);
418 else if (!new_abi_rtti_p ())
420 /* The tinfo decl is a function returning a reference to the type_info
422 d
= build_lang_decl (FUNCTION_DECL
, name
, tinfo_decl_type
);
423 DECL_EXTERNAL (d
) = 1;
425 DECL_ARTIFICIAL (d
) = 1;
426 DECL_NOT_REALLY_EXTERN (d
) = 1;
427 SET_DECL_TINFO_FN_P (d
);
428 TREE_TYPE (name
) = type
;
430 pushdecl_top_level (d
);
431 make_function_rtl (d
);
432 mark_inline_for_output (d
);
436 /* The tinfo decl is the type_info object itself. We make all
437 tinfo objects look as type_info, even though they will end up
438 being a subclass of that when emitted. This means the we'll
439 erroneously think we know the dynamic type -- be careful in the
441 d
= build_lang_decl (VAR_DECL
, name
, tinfo_decl_type
);
443 DECL_ARTIFICIAL (d
) = 1;
444 DECL_ALIGN (d
) = TYPE_ALIGN (ptr_type_node
);
445 TREE_READONLY (d
) = 1;
447 DECL_EXTERNAL (d
) = 1;
449 DECL_ASSEMBLER_NAME (d
) = DECL_NAME (d
);
450 cp_finish_decl (d
, NULL_TREE
, NULL_TREE
, 0);
452 pushdecl_top_level (d
);
453 /* Remember the type it is for. */
454 TREE_TYPE (name
) = type
;
459 /* Given an expr produced by get_tinfo_decl, return an expr which
460 produces a reference to the type_info object. */
463 tinfo_from_decl (expr
)
468 if (!new_abi_rtti_p ())
469 t
= build_call (expr
, TREE_TYPE (tinfo_decl_type
), NULL_TREE
);
470 else if (TREE_CODE (TREE_TYPE (expr
)) == POINTER_TYPE
)
471 t
= build_indirect_ref (expr
, NULL
);
484 t
= get_tinfo_decl (type
);
485 t
= tinfo_from_decl (t
);
486 return convert_from_reference (t
);
489 /* Return the type_info object for TYPE. */
495 if (type
== error_mark_node
)
496 return error_mark_node
;
498 if (TYPE_SIZE (type_info_type_node
) == NULL_TREE
)
500 error ("must #include <typeinfo> before using typeid");
501 return error_mark_node
;
504 if (processing_template_decl
)
505 return build_min_nt (TYPEID_EXPR
, type
);
507 /* If the type of the type-id is a reference type, the result of the
508 typeid expression refers to a type_info object representing the
510 if (TREE_CODE (type
) == REFERENCE_TYPE
)
511 type
= TREE_TYPE (type
);
513 /* The top-level cv-qualifiers of the lvalue expression or the type-id
514 that is the operand of typeid are always ignored. */
515 type
= TYPE_MAIN_VARIANT (type
);
517 if (type
!= void_type_node
)
518 type
= complete_type_or_else (type
, NULL_TREE
);
521 return error_mark_node
;
523 return get_typeid_1 (type
);
526 /* Check whether TEST is null before returning RESULT. If TEST is used in
527 RESULT, it must have previously had a save_expr applied to it. */
530 ifnonnull (test
, result
)
533 return build (COND_EXPR
, TREE_TYPE (result
),
534 build (EQ_EXPR
, boolean_type_node
, test
, integer_zero_node
),
535 cp_convert (TREE_TYPE (result
), integer_zero_node
),
539 /* Generate the constant expression describing where direct base BINFO
540 appears within the PARENT. How to interpret this expression depends on
541 details of the ABI, which the runtime must be aware of. */
544 get_base_offset (binfo
, parent
)
550 if (!TREE_VIA_VIRTUAL (binfo
))
551 offset
= BINFO_OFFSET (binfo
);
552 else if (!vbase_offsets_in_vtable_p ())
554 tree t
= BINFO_TYPE (binfo
);
558 FORMAT_VBASE_NAME (name
, t
);
559 field
= lookup_field (parent
, get_identifier (name
), 0, 0);
560 offset
= size_binop (FLOOR_DIV_EXPR
,
561 DECL_FIELD_BITPOS (field
),
562 size_int (BITS_PER_UNIT
));
563 offset
= convert (sizetype
, offset
);
567 /* Under the new ABI, we store the vtable offset at which
568 the virtual base offset can be found. */
569 tree vbase
= BINFO_FOR_VBASE (BINFO_TYPE (binfo
), parent
);
570 offset
= convert (sizetype
, BINFO_VPTR_FIELD (vbase
));
575 /* Execute a dynamic cast, as described in section 5.2.6 of the 9/93 working
579 build_dynamic_cast_1 (type
, expr
)
582 enum tree_code tc
= TREE_CODE (type
);
586 tree old_expr
= expr
;
588 if (TREE_CODE (expr
) == OFFSET_REF
)
589 expr
= resolve_offset_ref (expr
);
591 exprtype
= TREE_TYPE (expr
);
592 assert (exprtype
!= NULL_TREE
);
593 ec
= TREE_CODE (exprtype
);
598 if (ec
== REFERENCE_TYPE
)
600 expr
= convert_from_reference (expr
);
601 exprtype
= TREE_TYPE (expr
);
602 ec
= TREE_CODE (exprtype
);
604 if (ec
!= POINTER_TYPE
)
606 if (TREE_CODE (TREE_TYPE (exprtype
)) != RECORD_TYPE
)
608 if (TYPE_SIZE (complete_type (TREE_TYPE (exprtype
))) == NULL_TREE
)
610 if (!at_least_as_qualified_p (TREE_TYPE (type
),
611 TREE_TYPE (exprtype
)))
613 if (TYPE_MAIN_VARIANT (TREE_TYPE (type
)) == void_type_node
)
615 /* else fall through */
617 if (TREE_CODE (TREE_TYPE (type
)) != RECORD_TYPE
)
619 if (TYPE_SIZE (complete_type (TREE_TYPE (type
))) == NULL_TREE
)
622 /* else fall through */
627 /* Apply trivial conversion T -> T& for dereferenced ptrs. */
628 if (ec
== RECORD_TYPE
)
630 exprtype
= build_reference_type (exprtype
);
631 expr
= convert_to_reference (exprtype
, expr
, CONV_IMPLICIT
,
632 LOOKUP_NORMAL
, NULL_TREE
);
636 if (tc
== REFERENCE_TYPE
)
638 if (ec
!= REFERENCE_TYPE
)
640 if (TREE_CODE (TREE_TYPE (exprtype
)) != RECORD_TYPE
)
642 if (TYPE_SIZE (complete_type (TREE_TYPE (exprtype
))) == NULL_TREE
)
644 if (!at_least_as_qualified_p (TREE_TYPE (type
),
645 TREE_TYPE (exprtype
)))
649 /* If *type is an unambiguous accessible base class of *exprtype,
650 convert statically. */
655 distance
= get_base_distance (TREE_TYPE (type
), TREE_TYPE (exprtype
), 1,
660 cp_error ("dynamic_cast from `%T' to ambiguous base class `%T'",
661 TREE_TYPE (exprtype
), TREE_TYPE (type
));
662 return error_mark_node
;
666 cp_error ("dynamic_cast from `%T' to private base class `%T'",
667 TREE_TYPE (exprtype
), TREE_TYPE (type
));
668 return error_mark_node
;
672 return build_vbase_path (PLUS_EXPR
, type
, expr
, path
, 0);
675 /* Otherwise *exprtype must be a polymorphic class (have a vtbl). */
676 if (TYPE_POLYMORPHIC_P (TREE_TYPE (exprtype
)))
679 /* if TYPE is `void *', return pointer to complete object. */
680 if (tc
== POINTER_TYPE
681 && TYPE_MAIN_VARIANT (TREE_TYPE (type
)) == void_type_node
)
683 /* if b is an object, dynamic_cast<void *>(&b) == (void *)&b. */
684 if (TREE_CODE (expr
) == ADDR_EXPR
685 && TREE_CODE (TREE_OPERAND (expr
, 0)) == VAR_DECL
686 && TREE_CODE (TREE_TYPE (TREE_OPERAND (expr
, 0))) == RECORD_TYPE
)
687 return build1 (NOP_EXPR
, type
, expr
);
689 /* Since expr is used twice below, save it. */
690 expr
= save_expr (expr
);
692 expr1
= build_headof (expr
);
693 if (TREE_TYPE (expr1
) != type
)
694 expr1
= build1 (NOP_EXPR
, type
, expr1
);
695 return ifnonnull (expr
, expr1
);
700 tree result
, td2
, td3
, elems
;
701 tree static_type
, target_type
, boff
;
703 /* If we got here, we can't convert statically. Therefore,
704 dynamic_cast<D&>(b) (b an object) cannot succeed. */
705 if (ec
== REFERENCE_TYPE
)
707 if (TREE_CODE (old_expr
) == VAR_DECL
708 && TREE_CODE (TREE_TYPE (old_expr
)) == RECORD_TYPE
)
710 tree expr
= throw_bad_cast ();
711 cp_warning ("dynamic_cast of `%#D' to `%#T' can never succeed",
713 /* Bash it to the expected type. */
714 TREE_TYPE (expr
) = type
;
718 /* Ditto for dynamic_cast<D*>(&b). */
719 else if (TREE_CODE (expr
) == ADDR_EXPR
)
721 tree op
= TREE_OPERAND (expr
, 0);
722 if (TREE_CODE (op
) == VAR_DECL
723 && TREE_CODE (TREE_TYPE (op
)) == RECORD_TYPE
)
725 cp_warning ("dynamic_cast of `%#D' to `%#T' can never succeed",
727 retval
= build_int_2 (0, 0);
728 TREE_TYPE (retval
) = type
;
733 target_type
= TYPE_MAIN_VARIANT (TREE_TYPE (type
));
734 static_type
= TYPE_MAIN_VARIANT (TREE_TYPE (exprtype
));
735 td2
= build_unary_op (ADDR_EXPR
, get_tinfo_decl (target_type
), 0);
736 td3
= build_unary_op (ADDR_EXPR
, get_tinfo_decl (static_type
), 0);
738 /* Determine how T and V are related. */
739 boff
= get_dynamic_cast_base_type (static_type
, target_type
);
741 /* Since expr is used twice below, save it. */
742 expr
= save_expr (expr
);
745 if (tc
== REFERENCE_TYPE
)
746 expr1
= build_unary_op (ADDR_EXPR
, expr1
, 0);
748 if (!new_abi_rtti_p ())
750 tree expr2
= build_headof (expr1
);
753 if (ec
== POINTER_TYPE
)
754 td1
= build_indirect_ref (td1
, NULL_PTR
);
755 td1
= get_tinfo_decl_dynamic (td1
);
758 (NULL_TREE
, td1
, tree_cons
759 (NULL_TREE
, td2
, tree_cons
760 (NULL_TREE
, boff
, tree_cons
761 (NULL_TREE
, expr2
, tree_cons
762 (NULL_TREE
, td3
, tree_cons
763 (NULL_TREE
, expr1
, NULL_TREE
))))));
767 (NULL_TREE
, expr1
, tree_cons
768 (NULL_TREE
, td3
, tree_cons
769 (NULL_TREE
, td2
, tree_cons
770 (NULL_TREE
, boff
, NULL_TREE
))));
772 dcast_fn
= dynamic_cast_node
;
777 tree ns
= global_namespace
;
780 push_nested_namespace (ns
);
781 if (!new_abi_rtti_p ())
783 tinfo_ptr
= build_pointer_type (tinfo_decl_type
);
784 name
= "__dynamic_cast_2";
786 (NULL_TREE
, tinfo_ptr
, tree_cons
787 (NULL_TREE
, tinfo_ptr
, tree_cons
788 (NULL_TREE
, integer_type_node
, tree_cons
789 (NULL_TREE
, ptr_type_node
, tree_cons
790 (NULL_TREE
, tinfo_ptr
, tree_cons
791 (NULL_TREE
, ptr_type_node
, void_list_node
))))));
797 push_namespace (get_identifier ("std"));
798 ns
= current_namespace
;
800 tinfo_ptr
= xref_tag (class_type_node
,
801 get_identifier ("__class_type_info"),
804 tinfo_ptr
= build_pointer_type
805 (build_qualified_type
806 (tinfo_ptr
, TYPE_QUAL_CONST
));
807 name
= "__dynamic_cast";
809 (NULL_TREE
, const_ptr_type_node
, tree_cons
810 (NULL_TREE
, tinfo_ptr
, tree_cons
811 (NULL_TREE
, tinfo_ptr
, tree_cons
812 (NULL_TREE
, ptrdiff_type_node
, void_list_node
))));
814 tmp
= build_function_type (ptr_type_node
, tmp
);
815 dcast_fn
= build_lang_decl (FUNCTION_DECL
,
816 get_identifier (name
),
818 DECL_EXTERNAL (dcast_fn
) = 1;
819 TREE_PUBLIC (dcast_fn
) = 1;
820 DECL_ARTIFICIAL (dcast_fn
) = 1;
822 if (new_abi_rtti_p ())
823 /* We want it's name mangling. */
824 set_mangled_name_for_decl (dcast_fn
);
825 make_function_rtl (dcast_fn
);
826 pop_nested_namespace (ns
);
827 dynamic_cast_node
= dcast_fn
;
829 mark_used (dcast_fn
);
831 (dcast_fn
, TREE_TYPE (TREE_TYPE (dcast_fn
)), elems
);
833 if (tc
== REFERENCE_TYPE
)
835 tree bad
= throw_bad_cast ();
837 result
= save_expr (result
);
838 return build (COND_EXPR
, type
, result
, result
, bad
);
841 /* Now back to the type we want from a void*. */
842 result
= cp_convert (type
, result
);
843 return ifnonnull (expr
, result
);
847 cp_error ("dynamic_cast from non-polymorphic type `%#T'", exprtype
);
848 return error_mark_node
;
851 cp_error ("cannot dynamic_cast `%E' (of type `%#T') to type `%#T'",
852 expr
, exprtype
, type
);
853 return error_mark_node
;
857 build_dynamic_cast (type
, expr
)
860 if (type
== error_mark_node
|| expr
== error_mark_node
)
861 return error_mark_node
;
863 if (processing_template_decl
)
864 return build_min (DYNAMIC_CAST_EXPR
, type
, expr
);
866 return convert_from_reference (build_dynamic_cast_1 (type
, expr
));
869 /* Build and initialize various sorts of descriptors. Every descriptor
870 node has a name associated with it (the name created by mangling).
871 For this reason, we use the identifier as our access to the __*_desc
872 nodes, instead of sticking them directly in the types. Otherwise we
873 would burden all built-in types (and pointer types) with slots that
874 we don't necessarily want to use.
876 For each descriptor we build, we build a variable that contains
877 the descriptor's information. When we need this info at runtime,
878 all we need is access to these variables.
880 Note: these constructors always return the address of the descriptor
881 info, since that is simplest for their mutual interaction. */
883 /* Build an initializer for a __si_type_info node. */
886 expand_si_desc (tdecl
, type
)
891 tree name_string
= tinfo_name (type
);
893 type
= BINFO_TYPE (TREE_VEC_ELT (TYPE_BINFO_BASETYPES (type
), 0));
894 finish_expr_stmt (get_typeid_1 (type
));
895 t
= decay_conversion (get_tinfo_var (type
));
897 (NULL_TREE
, decay_conversion (tdecl
), tree_cons
898 (NULL_TREE
, decay_conversion (name_string
), tree_cons
899 (NULL_TREE
, t
, NULL_TREE
)));
901 fn
= get_identifier ("__rtti_si");
902 if (IDENTIFIER_GLOBAL_VALUE (fn
))
903 fn
= IDENTIFIER_GLOBAL_VALUE (fn
);
908 (NULL_TREE
, ptr_type_node
, tree_cons
909 (NULL_TREE
, const_string_type_node
, tree_cons
910 (NULL_TREE
, build_pointer_type (type_info_type_node
),
912 tmp
= build_function_type (void_type_node
, tmp
);
914 fn
= build_lang_decl (FUNCTION_DECL
, fn
, tmp
);
915 DECL_EXTERNAL (fn
) = 1;
916 TREE_PUBLIC (fn
) = 1;
917 DECL_ARTIFICIAL (fn
) = 1;
918 pushdecl_top_level (fn
);
919 make_function_rtl (fn
);
923 fn
= build_call (fn
, TREE_TYPE (TREE_TYPE (fn
)), elems
);
924 finish_expr_stmt (fn
);
927 /* Build an initializer for a __class_type_info node. */
930 expand_class_desc (tdecl
, type
)
937 int i
= CLASSTYPE_N_BASECLASSES (type
);
939 tree binfos
= TYPE_BINFO_BASETYPES (type
);
941 /* See code below that used these. */
942 tree vb
= CLASSTYPE_VBASECLASSES (type
);
945 tree base
, elems
, access
, offset
, isvir
;
946 tree elt
, elts
= NULL_TREE
;
948 if (base_desc_type_node
== NULL_TREE
)
952 /* A reasonably close approximation of __class_type_info::base_info */
954 base_desc_type_node
= make_aggr_type (RECORD_TYPE
);
956 /* Actually const __user_type_info * */
957 fields
[0] = build_lang_decl
958 (FIELD_DECL
, NULL_TREE
,
959 build_pointer_type (build_qualified_type
960 (type_info_type_node
,
962 fields
[1] = build_lang_decl
963 (FIELD_DECL
, NULL_TREE
,
964 flag_new_abi
? intSI_type_node
: unsigned_intSI_type_node
);
965 DECL_BIT_FIELD (fields
[1]) = 1;
966 DECL_FIELD_SIZE (fields
[1]) = 29;
968 fields
[2] = build_lang_decl
969 (FIELD_DECL
, NULL_TREE
, boolean_type_node
);
970 DECL_BIT_FIELD (fields
[2]) = 1;
971 DECL_FIELD_SIZE (fields
[2]) = 1;
973 /* Actually enum access */
974 fields
[3] = build_lang_decl
975 (FIELD_DECL
, NULL_TREE
, integer_type_node
);
976 DECL_BIT_FIELD (fields
[3]) = 1;
977 DECL_FIELD_SIZE (fields
[3]) = 2;
979 finish_builtin_type (base_desc_type_node
, "__base_info", fields
,
985 tree binfo
= TREE_VEC_ELT (binfos
, i
);
987 finish_expr_stmt (get_typeid_1 (BINFO_TYPE (binfo
)));
988 base
= decay_conversion (get_tinfo_var (BINFO_TYPE (binfo
)));
989 offset
= get_base_offset (binfo
, type
);
991 if (TREE_VIA_PUBLIC (binfo
))
992 access
= access_public_node
;
993 else if (TREE_VIA_PROTECTED (binfo
))
994 access
= access_protected_node
;
996 access
= access_private_node
;
997 if (TREE_VIA_VIRTUAL (binfo
))
998 isvir
= boolean_true_node
;
1000 isvir
= boolean_false_node
;
1003 (CONSTRUCTOR
, base_desc_type_node
, NULL_TREE
, tree_cons
1004 (NULL_TREE
, base
, tree_cons
1005 (NULL_TREE
, offset
, tree_cons
1006 (NULL_TREE
, isvir
, tree_cons
1007 (NULL_TREE
, access
, NULL_TREE
)))));
1008 TREE_HAS_CONSTRUCTOR (elt
) = TREE_CONSTANT (elt
) = TREE_STATIC (elt
) = 1;
1009 elts
= tree_cons (NULL_TREE
, elt
, elts
);
1017 access
= access_public_node
;
1020 b
= TREE_VEC_ELT (binfos
, i
);
1021 if (BINFO_TYPE (vb
) == BINFO_TYPE (b
) && TREE_VIA_VIRTUAL (b
))
1023 if (TREE_VIA_PUBLIC (b
))
1024 access
= access_public_node
;
1025 else if (TREE_VIA_PROTECTED (b
))
1026 access
= access_protected_node
;
1028 access
= access_private_node
;
1032 base
= build_t_desc (BINFO_TYPE (vb
), 1);
1033 offset
= BINFO_OFFSET (vb
);
1034 isvir
= build_int_2 (1, 0);
1036 base_list
= tree_cons (NULL_TREE
, base
, base_list
);
1037 isvir_list
= tree_cons (NULL_TREE
, isvir
, isvir_list
);
1038 acc_list
= tree_cons (NULL_TREE
, access
, acc_list
);
1039 off_list
= tree_cons (NULL_TREE
, offset
, off_list
);
1042 vb
= TREE_CHAIN (vb
);
1046 name_string
= tinfo_name (type
);
1049 tree arrtype
= build_array_type (base_desc_type_node
, NULL_TREE
);
1050 elts
= build (CONSTRUCTOR
, arrtype
, NULL_TREE
, elts
);
1051 TREE_HAS_CONSTRUCTOR (elts
) = TREE_CONSTANT (elts
)
1052 = TREE_STATIC (elts
) = 1;
1053 complete_array_type (arrtype
, elts
, 1);
1057 (NULL_TREE
, decay_conversion (tdecl
), tree_cons
1058 (NULL_TREE
, decay_conversion (name_string
), tree_cons
1059 (NULL_TREE
, decay_conversion (elts
), tree_cons
1060 (NULL_TREE
, cp_convert (sizetype
, build_int_2 (base_cnt
, 0)),
1063 fn
= get_identifier ("__rtti_class");
1064 if (IDENTIFIER_GLOBAL_VALUE (fn
))
1065 fn
= IDENTIFIER_GLOBAL_VALUE (fn
);
1069 (NULL_TREE
, ptr_type_node
, tree_cons
1070 (NULL_TREE
, const_string_type_node
, tree_cons
1071 (NULL_TREE
, build_pointer_type (base_desc_type_node
), tree_cons
1072 (NULL_TREE
, sizetype
, void_list_node
))));
1073 tmp
= build_function_type (void_type_node
, tmp
);
1075 fn
= build_lang_decl (FUNCTION_DECL
, fn
, tmp
);
1076 DECL_EXTERNAL (fn
) = 1;
1077 TREE_PUBLIC (fn
) = 1;
1078 DECL_ARTIFICIAL (fn
) = 1;
1079 pushdecl_top_level (fn
);
1080 make_function_rtl (fn
);
1084 fn
= build_call (fn
, TREE_TYPE (TREE_TYPE (fn
)), elems
);
1085 finish_expr_stmt (fn
);
1088 /* Build an initializer for a __pointer_type_info node. */
1091 expand_ptr_desc (tdecl
, type
)
1096 tree name_string
= tinfo_name (type
);
1098 type
= TREE_TYPE (type
);
1099 finish_expr_stmt (get_typeid_1 (type
));
1100 t
= decay_conversion (get_tinfo_var (type
));
1102 (NULL_TREE
, decay_conversion (tdecl
), tree_cons
1103 (NULL_TREE
, decay_conversion (name_string
), tree_cons
1104 (NULL_TREE
, t
, NULL_TREE
)));
1106 fn
= get_identifier ("__rtti_ptr");
1107 if (IDENTIFIER_GLOBAL_VALUE (fn
))
1108 fn
= IDENTIFIER_GLOBAL_VALUE (fn
);
1113 (NULL_TREE
, ptr_type_node
, tree_cons
1114 (NULL_TREE
, const_string_type_node
, tree_cons
1115 (NULL_TREE
, build_pointer_type (type_info_type_node
),
1117 tmp
= build_function_type (void_type_node
, tmp
);
1119 fn
= build_lang_decl (FUNCTION_DECL
, fn
, tmp
);
1120 DECL_EXTERNAL (fn
) = 1;
1121 TREE_PUBLIC (fn
) = 1;
1122 DECL_ARTIFICIAL (fn
) = 1;
1123 pushdecl_top_level (fn
);
1124 make_function_rtl (fn
);
1128 fn
= build_call (fn
, TREE_TYPE (TREE_TYPE (fn
)), elems
);
1129 finish_expr_stmt (fn
);
1132 /* Build an initializer for a __attr_type_info node. */
1135 expand_attr_desc (tdecl
, type
)
1140 tree name_string
= tinfo_name (type
);
1141 tree attrval
= build_int_2 (TYPE_QUALS (type
), 0);
1143 finish_expr_stmt (get_typeid_1 (TYPE_MAIN_VARIANT (type
)));
1144 t
= decay_conversion (get_tinfo_var (TYPE_MAIN_VARIANT (type
)));
1146 (NULL_TREE
, decay_conversion (tdecl
), tree_cons
1147 (NULL_TREE
, decay_conversion (name_string
), tree_cons
1148 (NULL_TREE
, attrval
, tree_cons (NULL_TREE
, t
, NULL_TREE
))));
1150 fn
= get_identifier ("__rtti_attr");
1151 if (IDENTIFIER_GLOBAL_VALUE (fn
))
1152 fn
= IDENTIFIER_GLOBAL_VALUE (fn
);
1157 (NULL_TREE
, ptr_type_node
, tree_cons
1158 (NULL_TREE
, const_string_type_node
, tree_cons
1159 (NULL_TREE
, integer_type_node
, tree_cons
1160 (NULL_TREE
, build_pointer_type (type_info_type_node
),
1162 tmp
= build_function_type (void_type_node
, tmp
);
1164 fn
= build_lang_decl (FUNCTION_DECL
, fn
, tmp
);
1165 DECL_EXTERNAL (fn
) = 1;
1166 TREE_PUBLIC (fn
) = 1;
1167 DECL_ARTIFICIAL (fn
) = 1;
1168 pushdecl_top_level (fn
);
1169 make_function_rtl (fn
);
1173 fn
= build_call (fn
, TREE_TYPE (TREE_TYPE (fn
)), elems
);
1174 finish_expr_stmt (fn
);
1177 /* Build an initializer for a type_info node that just has a name. */
1180 expand_generic_desc (tdecl
, type
, fnname
)
1185 tree name_string
= tinfo_name (type
);
1186 tree elems
= tree_cons
1187 (NULL_TREE
, decay_conversion (tdecl
), tree_cons
1188 (NULL_TREE
, decay_conversion (name_string
), NULL_TREE
));
1190 tree fn
= get_identifier (fnname
);
1191 if (IDENTIFIER_GLOBAL_VALUE (fn
))
1192 fn
= IDENTIFIER_GLOBAL_VALUE (fn
);
1197 (NULL_TREE
, ptr_type_node
, tree_cons
1198 (NULL_TREE
, const_string_type_node
, void_list_node
));
1199 tmp
= build_function_type (void_type_node
, tmp
);
1201 fn
= build_lang_decl (FUNCTION_DECL
, fn
, tmp
);
1202 DECL_EXTERNAL (fn
) = 1;
1203 TREE_PUBLIC (fn
) = 1;
1204 DECL_ARTIFICIAL (fn
) = 1;
1205 pushdecl_top_level (fn
);
1206 make_function_rtl (fn
);
1210 fn
= build_call (fn
, TREE_TYPE (TREE_TYPE (fn
)), elems
);
1211 finish_expr_stmt (fn
);
1214 /* Generate the code for a type_info initialization function.
1215 Note that we take advantage of the passage
1217 5.2.7 Type identification [expr.typeid]
1219 Whether or not the destructor is called for the type_info object at the
1220 end of the program is unspecified.
1222 and don't bother to arrange for these objects to be destroyed. It
1223 doesn't matter, anyway, since the destructors don't do anything.
1225 This must only be called from toplevel (i.e. from finish_file)! */
1228 synthesize_tinfo_fn (fndecl
)
1231 tree type
= TREE_TYPE (DECL_NAME (fndecl
));
1232 tree tmp
, addr
, tdecl
;
1237 my_friendly_assert (!new_abi_rtti_p (), 20000118);
1240 import_export_decl (fndecl
);
1241 if (DECL_REALLY_EXTERN (fndecl
))
1245 /* Declare the static typeinfo variable. */
1246 tdecl
= get_tinfo_var (type
);
1247 DECL_EXTERNAL (tdecl
) = 0;
1248 TREE_STATIC (tdecl
) = 1;
1249 DECL_COMMON (tdecl
) = 1;
1250 TREE_USED (tdecl
) = 1;
1251 DECL_ALIGN (tdecl
) = TYPE_ALIGN (ptr_type_node
);
1252 cp_finish_decl (tdecl
, NULL_TREE
, NULL_TREE
, 0);
1254 /* Begin processing the function. */
1255 start_function (NULL_TREE
, fndecl
, NULL_TREE
,
1256 SF_DEFAULT
| SF_PRE_PARSED
);
1257 DECL_DEFER_OUTPUT (fndecl
) = 1;
1258 store_parm_decls ();
1261 /* Begin the body of the function. */
1262 compound_stmt
= begin_compound_stmt (/*has_no_scope=*/0);
1264 /* For convenience, we save away the address of the static
1266 addr
= decay_conversion (tdecl
);
1268 /* If the first word of the array (the vtable) is non-zero, we've already
1269 initialized the object, so don't do it again. */
1270 if_stmt
= begin_if_stmt ();
1271 tmp
= cp_convert (build_pointer_type (ptr_type_node
), addr
);
1272 tmp
= build_indirect_ref (tmp
, 0);
1273 tmp
= build_binary_op (EQ_EXPR
, tmp
, integer_zero_node
);
1274 finish_if_stmt_cond (tmp
, if_stmt
);
1275 then_clause
= begin_compound_stmt (/*has_no_scope=*/0);
1277 if (TREE_CODE (type
) == FUNCTION_TYPE
)
1278 expand_generic_desc (tdecl
, type
, "__rtti_func");
1279 else if (TREE_CODE (type
) == ARRAY_TYPE
)
1280 expand_generic_desc (tdecl
, type
, "__rtti_array");
1281 else if (TYPE_QUALS (type
) != TYPE_UNQUALIFIED
)
1282 expand_attr_desc (tdecl
, type
);
1283 else if (TREE_CODE (type
) == POINTER_TYPE
)
1285 if (TREE_CODE (TREE_TYPE (type
)) == OFFSET_TYPE
)
1286 expand_generic_desc (tdecl
, type
, "__rtti_ptmd");
1287 else if (TREE_CODE (TREE_TYPE (type
)) == METHOD_TYPE
)
1288 expand_generic_desc (tdecl
, type
, "__rtti_ptmf");
1290 expand_ptr_desc (tdecl
, type
);
1292 else if (TYPE_PTRMEMFUNC_P (type
))
1293 expand_generic_desc (tdecl
, type
, "__rtti_ptmf");
1294 else if (IS_AGGR_TYPE (type
))
1296 if (CLASSTYPE_N_BASECLASSES (type
) == 0)
1297 expand_generic_desc (tdecl
, type
, "__rtti_user");
1298 else if (! TYPE_BASE_CONVS_MAY_REQUIRE_CODE_P (type
)
1300 (TREE_VEC_ELT (TYPE_BINFO_BASETYPES (type
), 0))))
1301 expand_si_desc (tdecl
, type
);
1303 expand_class_desc (tdecl
, type
);
1305 else if (TREE_CODE (type
) == ENUMERAL_TYPE
)
1306 expand_generic_desc (tdecl
, type
, "__rtti_user");
1308 my_friendly_abort (252);
1310 finish_compound_stmt (/*has_no_scope=*/0, then_clause
);
1311 finish_then_clause (if_stmt
);
1314 /* OK, now return the type_info object. */
1315 tmp
= cp_convert (build_pointer_type (type_info_type_node
), addr
);
1316 tmp
= build_indirect_ref (tmp
, 0);
1317 finish_return_stmt (tmp
);
1318 /* Finish the function body. */
1319 finish_compound_stmt (/*has_no_scope=*/0, compound_stmt
);
1320 expand_body (finish_function (lineno
, 0));
1323 /* Return the runtime bit mask encoding the qualifiers of TYPE. */
1326 qualifier_flags (type
)
1330 /* we want the qualifiers on this type, not any array core, it might have */
1331 int quals
= TYPE_QUALS (type
);
1333 if (quals
& TYPE_QUAL_CONST
)
1335 if (quals
& TYPE_QUAL_VOLATILE
)
1340 /* Return a CONSTRUCTOR for the common part of the type_info objects. This
1341 is the vtable pointer and NTBS name. */
1344 tinfo_base_init (desc
, target
)
1348 tree name_string
= tinfo_name (target
);
1349 tree init
= NULL_TREE
;
1351 if (TINFO_VTABLE_DECL (desc
))
1353 tree vtbl_ptr
= build_unary_op (ADDR_EXPR
, TINFO_VTABLE_DECL (desc
), 0);
1355 init
= tree_cons (NULL_TREE
, vtbl_ptr
, init
);
1358 init
= tree_cons (NULL_TREE
, decay_conversion (name_string
), init
);
1360 init
= build (CONSTRUCTOR
, NULL_TREE
, NULL_TREE
, nreverse(init
));
1361 TREE_HAS_CONSTRUCTOR (init
) = TREE_CONSTANT (init
) = TREE_STATIC (init
) = 1;
1362 init
= tree_cons (NULL_TREE
, init
, NULL_TREE
);
1367 /* Return the CONSTRUCTOR expr for a type_info of TYPE. DESC provides the
1368 information about the particular type_info derivation, which adds no
1369 additional fields to the type_info base. */
1372 generic_initializer (desc
, target
)
1376 tree init
= tinfo_base_init (desc
, target
);
1378 init
= build (CONSTRUCTOR
, NULL_TREE
, NULL_TREE
, init
);
1379 TREE_HAS_CONSTRUCTOR (init
) = TREE_CONSTANT (init
) = TREE_STATIC (init
) = 1;
1383 /* Return the CONSTRUCTOR expr for a type_info of pointer or reference TYPE.
1384 DESC provides information about the particular type_info derivation,
1385 which adds target type and qualifier flags members to the type_info base. */
1388 ptr_ref_initializer (desc
, target
)
1392 tree init
= tinfo_base_init (desc
, target
);
1393 tree to
= TREE_TYPE (target
);
1394 int flags
= qualifier_flags (to
);
1396 init
= tree_cons (NULL_TREE
, build_int_2 (flags
, 0), init
);
1397 init
= tree_cons (NULL_TREE
,
1398 build_unary_op (ADDR_EXPR
,
1399 get_tinfo_decl (TYPE_MAIN_VARIANT (to
)), 0),
1402 init
= build (CONSTRUCTOR
, NULL_TREE
, NULL_TREE
, nreverse (init
));
1403 TREE_HAS_CONSTRUCTOR (init
) = TREE_CONSTANT (init
) = TREE_STATIC (init
) = 1;
1407 /* Return the CONSTRUCTOR expr for a type_info of pointer or reference TYPE.
1408 DESC provides information about the particular type_info derivation,
1409 which adds target type and qualifier flags members to the type_info base. */
1412 ptmd_initializer (desc
, target
)
1416 tree init
= tinfo_base_init (desc
, target
);
1417 tree to
= TYPE_PTRMEM_POINTED_TO_TYPE (target
);
1418 tree klass
= TYPE_PTRMEM_CLASS_TYPE (target
);
1419 int flags
= qualifier_flags (to
);
1421 init
= tree_cons (NULL_TREE
,
1422 build_unary_op (ADDR_EXPR
, get_tinfo_decl (klass
), 0),
1424 init
= tree_cons (NULL_TREE
,
1425 build_unary_op (ADDR_EXPR
,
1426 get_tinfo_decl (TYPE_MAIN_VARIANT (to
)), 0),
1428 init
= tree_cons (NULL_TREE
, build_int_2 (flags
, 0), init
);
1430 init
= build (CONSTRUCTOR
, NULL_TREE
, NULL_TREE
, nreverse (init
));
1431 TREE_HAS_CONSTRUCTOR (init
) = TREE_CONSTANT (init
) = TREE_STATIC (init
) = 1;
1435 /* Determine the hint flags describing the features of a class's heirarchy.
1436 FIXME: better set the hint_flags here! For now set them
1437 to safe 'don't know' values. The specification is under
1438 review. Don't forget to check the runtime dynamic_cast and
1439 catch machinery if these change. */
1442 class_hint_flags (type
)
1446 hint_flags
|= 0x1; /* contains multiply inherited sub object */
1447 hint_flags
|= 0x4; /* has virtual bases */
1448 hint_flags
|= 0x8; /* has private base */
1449 if (TYPE_POLYMORPHIC_P (type
))
1455 /* Return the CONSTRUCTOR expr for a type_info of class TYPE.
1456 DESC provides information about the particular __class_type_info derivation,
1457 which adds hint flags and TRAIL initializers to the type_info base. */
1460 class_initializer (desc
, target
, trail
)
1465 tree init
= tinfo_base_init (desc
, target
);
1466 int flags
= class_hint_flags (target
);
1468 trail
= tree_cons (NULL_TREE
, build_int_2 (flags
, 0), trail
);
1469 TREE_CHAIN (init
) = trail
;
1470 init
= build (CONSTRUCTOR
, NULL_TREE
, NULL_TREE
, init
);
1471 TREE_HAS_CONSTRUCTOR (init
) = TREE_CONSTANT (init
) = TREE_STATIC (init
) = 1;
1475 /* Generate a pseudo_type_info VAR_DECL suitable for the supplied
1476 TARGET_TYPE and given the REAL_NAME. This is the structure expected by
1477 the runtime, and therefore has additional fields. If we need not emit a
1478 definition (because the runtime must contain it), return NULL_TREE,
1479 otherwise return the VAR_DECL. */
1482 synthesize_tinfo_var (target_type
, real_name
)
1486 tree var_init
= NULL_TREE
;
1487 tree var_type
= NULL_TREE
;
1489 my_friendly_assert (new_abi_rtti_p (), 20000118);
1491 switch (TREE_CODE (target_type
))
1494 if (TYPE_PTRMEM_P (target_type
))
1496 var_type
= ptmd_desc_type_node
;
1497 var_init
= ptmd_initializer (var_type
, target_type
);
1501 int code
= TREE_CODE (TREE_TYPE (target_type
));
1503 if ((CP_TYPE_QUALS (TREE_TYPE (target_type
)) | TYPE_QUAL_CONST
)
1505 && (code
== INTEGER_TYPE
|| code
== BOOLEAN_TYPE
1506 || code
== CHAR_TYPE
|| code
== REAL_TYPE
1507 || code
== VOID_TYPE
)
1509 /* These are in the runtime. */
1511 var_type
= ptr_desc_type_node
;
1512 var_init
= ptr_ref_initializer (var_type
, target_type
);
1515 case REFERENCE_TYPE
:
1516 var_type
= ref_desc_type_node
;
1517 var_init
= ptr_ref_initializer (var_type
, target_type
);
1520 var_type
= enum_desc_type_node
;
1521 var_init
= generic_initializer (var_type
, target_type
);
1524 var_type
= func_desc_type_node
;
1525 var_init
= generic_initializer (var_type
, target_type
);
1528 var_type
= ary_desc_type_node
;
1529 var_init
= generic_initializer (var_type
, target_type
);
1533 if (!TYPE_SIZE (target_type
))
1535 /* FIXME: incomplete type. Awaiting specification. */
1538 else if (!CLASSTYPE_N_BASECLASSES (target_type
))
1540 var_type
= class_desc_type_node
;
1541 var_init
= class_initializer (var_type
, target_type
, NULL_TREE
);
1545 /* if this has a single public non-virtual base, it's easier */
1546 tree binfo
= TYPE_BINFO (target_type
);
1547 int nbases
= BINFO_N_BASETYPES (binfo
);
1548 tree base_binfos
= BINFO_BASETYPES (binfo
);
1549 tree base_inits
= NULL_TREE
;
1550 int is_simple
= nbases
== 1;
1553 /* Generate the base information initializer. */
1554 for (ix
= nbases
; ix
--;)
1556 tree base_binfo
= TREE_VEC_ELT (base_binfos
, ix
);
1557 tree base_init
= NULL_TREE
;
1562 if (TREE_VIA_VIRTUAL (base_binfo
))
1564 if (TREE_PUBLIC (base_binfo
))
1566 tinfo
= get_tinfo_decl (BINFO_TYPE (base_binfo
));
1567 tinfo
= build_unary_op (ADDR_EXPR
, tinfo
, 0);
1568 offset
= get_base_offset (base_binfo
, target_type
);
1570 /* is it a single public inheritance? */
1571 if (is_simple
&& flags
== 2 && integer_zerop (offset
))
1573 base_inits
= tree_cons (NULL_TREE
, tinfo
, NULL_TREE
);
1578 base_init
= tree_cons
1579 (NULL_TREE
, build_int_2 (flags
, 0), base_init
);
1580 base_init
= tree_cons (NULL_TREE
, offset
, base_init
);
1581 base_init
= tree_cons (NULL_TREE
, tinfo
, base_init
);
1582 base_init
= build (CONSTRUCTOR
, NULL_TREE
, NULL_TREE
, base_init
);
1583 base_inits
= tree_cons (NULL_TREE
, base_init
, base_inits
);
1587 var_type
= si_class_desc_type_node
;
1590 /* Prepend the number of bases. */
1591 base_inits
= build (CONSTRUCTOR
, NULL_TREE
, NULL_TREE
, base_inits
);
1592 base_inits
= tree_cons (NULL_TREE
, base_inits
, NULL_TREE
);
1593 base_inits
= tree_cons (NULL_TREE
,
1594 build_int_2 (nbases
, 0), base_inits
);
1596 var_type
= get_vmi_pseudo_type_info (nbases
);
1598 var_init
= class_initializer (var_type
, target_type
, base_inits
);
1607 /* These are guaranteed to be in the runtime. */
1609 var_type
= bltn_desc_type_node
;
1610 var_init
= generic_initializer (var_type
, target_type
);
1613 my_friendly_abort (20000117);
1616 return create_real_tinfo_var (real_name
, TINFO_PSEUDO_TYPE (var_type
), var_init
);
1619 /* Create the real typeinfo variable. */
1622 create_real_tinfo_var (name
, type
, init
)
1629 decl
= build_lang_decl (VAR_DECL
, name
,
1630 build_qualified_type (type
, TYPE_QUAL_CONST
));
1631 DECL_ARTIFICIAL (decl
) = 1;
1632 TREE_READONLY (decl
) = 1;
1633 TREE_STATIC (decl
) = 1;
1634 TREE_PUBLIC (decl
) = 1;
1635 DECL_EXTERNAL (decl
) = 0;
1637 comdat_linkage (decl
);
1638 DECL_ASSEMBLER_NAME (decl
) = name
;
1639 DECL_INITIAL (decl
) = init
;
1640 cp_finish_decl (decl
, init
, NULL_TREE
, 0);
1645 /* Generate the RECORD_TYPE containing the data layout of a type_info
1646 derivative as used by the runtime. This layout must be consistent with
1647 that defined in the runtime support. Also generate the VAR_DECL for the
1648 type's vtable. We explicitly manage the vtable member, and name it for
1649 real type as used in the runtime. The RECORD type has a different name,
1650 to avoid collisions. Return a TREE_LIST who's TINFO_PSEUDO_TYPE
1651 is the generated type and TINFO_VTABLE_DECL is the vtable decl.
1653 REAL_NAME is the runtime's name of the type. Trailing arguments are
1654 additional FIELD_DECL's for the structure. The final argument must be
1658 create_pseudo_type_info
VPARAMS((const char *real_name
, int ident
, ...))
1660 #ifndef ANSI_PROTOTYPES
1661 char const *real_name
;
1665 tree real_type
, pseudo_type
;
1673 VA_START (ap
, ident
);
1674 #ifndef ANSI_PROTOTYPES
1675 real_name
= va_arg (ap
, char const *);
1676 ident
= va_arg (app
, int);
1679 /* Generate the pseudo type name. */
1680 pseudo_name
= (char *)alloca (strlen (real_name
) + 30);
1681 strcpy (pseudo_name
, real_name
);
1682 strcat (pseudo_name
, "_pseudo");
1684 sprintf (pseudo_name
+ strlen (pseudo_name
), "%d", ident
);
1686 /* Get the vtable decl. */
1687 real_type
= xref_tag (class_type_node
, get_identifier (real_name
), 1);
1688 vtable_decl
= get_vtable_decl (real_type
, /*complete=*/1);
1690 /* First field is the pseudo type_info base class. */
1691 fields
[0] = build_lang_decl (FIELD_DECL
, NULL_TREE
, ti_desc_type_node
);
1693 /* Now add the derived fields. */
1694 for (ix
= 0; (field_decl
= va_arg (ap
, tree
));)
1695 fields
[++ix
] = field_decl
;
1697 /* Create the pseudo type. */
1698 pseudo_type
= make_aggr_type (RECORD_TYPE
);
1699 finish_builtin_type (pseudo_type
, pseudo_name
, fields
, ix
, ptr_type_node
);
1700 TYPE_HAS_CONSTRUCTOR (pseudo_type
) = 1;
1703 result
= tree_cons (NULL_TREE
, NULL_TREE
, NULL_TREE
);
1704 TINFO_VTABLE_DECL (result
) = vtable_decl
;
1705 TINFO_PSEUDO_TYPE (result
) = pseudo_type
;
1710 /* Return a descriptor for a vmi type with NUM_BASES bases. */
1713 get_vmi_pseudo_type_info (num_bases
)
1717 tree array_domain
, base_array
;
1719 if (TREE_VEC_LENGTH (vmi_class_desc_type_node
) <= num_bases
)
1722 tree extend
= make_tree_vec (num_bases
+ 5);
1724 for (ix
= TREE_VEC_LENGTH (vmi_class_desc_type_node
); ix
--;)
1725 TREE_VEC_ELT (extend
, ix
) = TREE_VEC_ELT (vmi_class_desc_type_node
, ix
);
1726 vmi_class_desc_type_node
= extend
;
1728 desc
= TREE_VEC_ELT (vmi_class_desc_type_node
, num_bases
);
1733 /* Add number of bases and trailing array of base_class_type_info. */
1734 array_domain
= build_index_type (build_int_2 (num_bases
, 0));
1735 base_array
= build_array_type (base_desc_type_node
, array_domain
);
1737 desc
= create_pseudo_type_info
1738 ("__vmi_class_type_info", num_bases
,
1739 build_lang_decl (FIELD_DECL
, NULL_TREE
, integer_type_node
),
1740 build_lang_decl (FIELD_DECL
, NULL_TREE
, integer_type_node
),
1741 build_lang_decl (FIELD_DECL
, NULL_TREE
, base_array
),
1743 TREE_VEC_ELT (vmi_class_desc_type_node
, num_bases
) = desc
;
1747 /* Make sure the required builtin types exist for generating the type_info
1748 varable definitions. */
1751 create_tinfo_types ()
1755 if (bltn_desc_type_node
)
1758 push_namespace (get_identifier ("std"));
1760 ptr_type_info
= build_pointer_type
1761 (build_qualified_type
1762 (type_info_type_node
, TYPE_QUAL_CONST
));
1764 /* Create the internal type_info structure. This is used as a base for
1765 the other structures. */
1769 ti_desc_type_node
= make_aggr_type (RECORD_TYPE
);
1770 fields
[0] = build_lang_decl (FIELD_DECL
, NULL_TREE
, const_ptr_type_node
);
1771 fields
[1] = build_lang_decl (FIELD_DECL
, NULL_TREE
, const_string_type_node
);
1772 finish_builtin_type (ti_desc_type_node
, "__type_info_pseudo",
1773 fields
, 1, ptr_type_node
);
1774 TYPE_HAS_CONSTRUCTOR (ti_desc_type_node
) = 1;
1777 /* Fundamental type_info */
1778 bltn_desc_type_node
= create_pseudo_type_info
1779 ("__fundamental_type_info", 0,
1782 /* Pointer and reference type_info. These two fields, qualification mask
1783 and pointer to the pointed to (referenced) type. */
1784 ptr_desc_type_node
= create_pseudo_type_info
1785 ("__pointer_type_info", 0,
1786 build_lang_decl (FIELD_DECL
, NULL_TREE
, integer_type_node
),
1787 build_lang_decl (FIELD_DECL
, NULL_TREE
, ptr_type_info
),
1789 ref_desc_type_node
= create_pseudo_type_info
1790 ("__reference_type_info", 0,
1791 build_lang_decl (FIELD_DECL
, NULL_TREE
, integer_type_node
),
1792 build_lang_decl (FIELD_DECL
, NULL_TREE
, ptr_type_info
),
1795 /* Array, function and enum type_info. No additional fields. */
1796 ary_desc_type_node
= create_pseudo_type_info
1797 ("__array_type_info", 0,
1799 func_desc_type_node
= create_pseudo_type_info
1800 ("__function_type_info", 0,
1802 enum_desc_type_node
= create_pseudo_type_info
1803 ("__enum_type_info", 0,
1806 /* Class type_info. Add a flags field. */
1807 class_desc_type_node
= create_pseudo_type_info
1808 ("__class_type_info", 0,
1809 build_lang_decl (FIELD_DECL
, NULL_TREE
, integer_type_node
),
1812 /* Single public non-virtual base class. Add pointer to base class. */
1813 si_class_desc_type_node
= create_pseudo_type_info
1814 ("__si_class_type_info", 0,
1815 build_lang_decl (FIELD_DECL
, NULL_TREE
, integer_type_node
),
1816 build_lang_decl (FIELD_DECL
, NULL_TREE
, ptr_type_info
),
1819 /* Base class internal helper. Pointer to base type, offset to base,
1824 fields
[0] = build_lang_decl (FIELD_DECL
, NULL_TREE
, ptr_type_info
),
1825 fields
[1] = build_lang_decl (FIELD_DECL
, NULL_TREE
, ptrdiff_type_node
),
1826 fields
[2] = build_lang_decl (FIELD_DECL
, NULL_TREE
, integer_type_node
),
1827 base_desc_type_node
= make_aggr_type (RECORD_TYPE
);
1828 finish_builtin_type (base_desc_type_node
, "__base_class_type_info_pseudo",
1829 fields
, 2, ptr_type_node
);
1830 TYPE_HAS_CONSTRUCTOR (base_desc_type_node
) = 1;
1833 /* General heirarchy is created as necessary in this vector. */
1834 vmi_class_desc_type_node
= make_tree_vec (10);
1836 /* Pointer to member data type_info. Add pointer to the class, pointer
1837 to the member's type info and qualifications flags. */
1838 ptmd_desc_type_node
= create_pseudo_type_info
1839 ("__ptr_to_member_type_info", 0,
1840 build_lang_decl (FIELD_DECL
, NULL_TREE
, ptr_type_info
),
1841 build_lang_decl (FIELD_DECL
, NULL_TREE
, ptr_type_info
),
1842 build_lang_decl (FIELD_DECL
, NULL_TREE
, integer_type_node
),
1849 /* Emit the type_info descriptors which are guaranteed to be in the runtime
1850 support. Generating them here guarantees consistency with the other
1851 structures. We use the following heuristic to determine when the runtime
1852 is being generated. If std::__fundamental_type_info is defined, and it's
1853 destructor is defined, then the runtime is being built. */
1856 emit_support_tinfos ()
1858 static tree
*const fundamentals
[] =
1864 &signed_wchar_type_node
, &unsigned_wchar_type_node
,
1866 &char_type_node
, &signed_char_type_node
, &unsigned_char_type_node
,
1867 &short_integer_type_node
, &short_unsigned_type_node
,
1868 &integer_type_node
, &unsigned_type_node
,
1869 &long_integer_type_node
, &long_unsigned_type_node
,
1870 &long_long_integer_type_node
, &long_long_unsigned_type_node
,
1871 &float_type_node
, &double_type_node
, &long_double_type_node
,
1873 /* GCC extension types */
1875 &complex_integer_type_node
,
1876 &complex_float_type_node
, &complex_double_type_node
,
1877 &complex_long_double_type_node
,
1883 tree bltn_type
, dtor
;
1886 push_namespace (get_identifier ("std"));
1887 bltn_type
= xref_tag (class_type_node
,
1888 get_identifier ("__fundamental_type_info"), 1);
1891 if (!TYPE_SIZE (bltn_type
))
1893 dtor
= TREE_VEC_ELT (CLASSTYPE_METHOD_VEC (bltn_type
), 1);
1894 if (DECL_EXTERNAL (dtor
))
1897 for (ix
= 0; fundamentals
[ix
]; ix
++)
1899 tree bltn
= *fundamentals
[ix
];
1900 tree bltn_ptr
= build_pointer_type (bltn
);
1901 tree bltn_const_ptr
= build_pointer_type
1902 (build_qualified_type (bltn
, TYPE_QUAL_CONST
));
1905 tinfo
= get_tinfo_decl (bltn
);
1906 TREE_USED (tinfo
) = 1;
1907 TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (tinfo
)) = 1;
1909 tinfo
= get_tinfo_decl (bltn_ptr
);
1910 TREE_USED (tinfo
) = 1;
1911 TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (tinfo
)) = 1;
1913 tinfo
= get_tinfo_decl (bltn_const_ptr
);
1914 TREE_USED (tinfo
) = 1;
1915 TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (tinfo
)) = 1;
1919 /* Return non-zero, iff T is a type_info variable which has not had a
1920 definition emitted for it. */
1923 tinfo_decl_p (t
, data
)
1925 void *data ATTRIBUTE_UNUSED
;
1927 return TREE_CODE (t
) == VAR_DECL
1928 && IDENTIFIER_GLOBAL_VALUE (DECL_NAME (t
)) == (t
)
1929 && TREE_TYPE (t
) == tinfo_decl_type
1930 && TREE_TYPE (DECL_NAME (t
));
1933 /* Emit a suitable type_info definition for the type_info decl pointed to by
1934 DECL_PTR. We emit a completely new variable, of the correct type for the
1935 actual type this is describing. The DECL_ASSEMBLER_NAME of the generated
1936 definition is set to that of the supplied decl, so that they can be tied
1937 up. Mark the supplied decl as having been dealt with. Emitting one
1938 definitions might cause other declarations to be emitted.
1940 We need to do things this way, because we're trying to do something like
1946 extern const A tinfo_var;
1948 const B tinfo_var = {...};
1950 which is not permitted. Also, we've not necessarily seen the definition of B.
1951 So we do something like the following,
1953 extern const A tinfo_var;
1956 const void *vtable_ptr;
1964 const pseudo_B proxy_tinfo_var attribute((assembler_name="tinfo_var")) =
1966 {&B::vtable, "..."},
1970 pseudo_A and pseudo_B must be layout equivalent to the real definitions in
1974 emit_tinfo_decl (decl_ptr
, data
)
1976 void *data ATTRIBUTE_UNUSED
;
1978 tree tinfo_decl
= *decl_ptr
;
1979 tree tinfo_type
, decl
;
1981 my_friendly_assert (TREE_TYPE (tinfo_decl
) == tinfo_decl_type
, 20000121);
1982 tinfo_type
= TREE_TYPE (DECL_NAME (tinfo_decl
));
1983 my_friendly_assert (tinfo_type
!= NULL_TREE
, 20000120);
1985 /* Say we've dealt with it. */
1986 TREE_TYPE (DECL_NAME (tinfo_decl
)) = NULL_TREE
;
1988 if (!DECL_NEEDED_P (tinfo_decl
))
1990 create_tinfo_types ();
1991 decl
= synthesize_tinfo_var (tinfo_type
, DECL_ASSEMBLER_NAME (tinfo_decl
));