1 /* Functions dealing with signatures and signature pointers/references.
2 Copyright (C) 1992, 93, 94, 95, 1996 Free Software Foundation, Inc.
3 Contributed by Gerald Baumgartner (gb@cs.purdue.edu)
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
31 extern struct obstack
*current_obstack
;
32 extern struct obstack permanent_obstack
;
33 extern struct obstack
*saveable_obstack
;
35 extern void compiler_error ();
37 static tree save_this
PROTO((tree
));
38 static tree build_sptr_ref
PROTO((tree
));
39 static tree build_member_function_pointer
PROTO((tree
));
40 static void undo_casts
PROTO((tree
));
41 static tree build_signature_pointer_or_reference_name
42 PROTO((tree
, int, int, int));
43 static void build_signature_pointer_or_reference_decl
45 static tree build_signature_pointer_or_reference_type
46 PROTO((tree
, int, int, int));
47 static tree get_sigtable_name
PROTO((tree
, tree
));
48 static tree build_signature_table_constructor
PROTO((tree
, tree
));
49 static int match_method_types
PROTO((tree
, tree
));
50 static tree build_sigtable
PROTO((tree
, tree
, tree
));
52 /* Used to help generate globally unique names for signature tables. */
54 static int global_sigtable_name_counter
;
56 /* Build an identifier for a signature pointer or reference, so we
57 can use it's name in function name mangling. */
60 build_signature_pointer_or_reference_name (to_type
, constp
, volatilep
, refp
)
62 int constp
, volatilep
, refp
;
64 char * sig_name
= TYPE_NAME_STRING (to_type
);
65 int name_len
= TYPE_NAME_LENGTH (to_type
) + constp
+ volatilep
;
70 name
= (char *) alloca (name_len
+ sizeof (SIGNATURE_REFERENCE_NAME
) +2);
71 sprintf (name
, SIGNATURE_REFERENCE_NAME_FORMAT
,
72 constp
? "C" : "", volatilep
? "V": "", sig_name
);
76 name
= (char *) alloca (name_len
+ sizeof (SIGNATURE_POINTER_NAME
) + 2);
77 sprintf (name
, SIGNATURE_POINTER_NAME_FORMAT
,
78 constp
? "C" : "", volatilep
? "V": "", sig_name
);
80 return get_identifier (name
);
83 /* Build a DECL node for a signature pointer or reference, so we can
84 tell the debugger the structure of signature pointers/references.
85 This function is called at most eight times for a given signature,
86 once for each [const] [volatile] signature pointer/reference. */
89 build_signature_pointer_or_reference_decl (type
, name
)
94 /* We don't enter this declaration in any sort of symbol table. */
95 decl
= build_decl (TYPE_DECL
, name
, type
);
96 TYPE_NAME (type
) = decl
;
97 TREE_CHAIN (type
) = decl
;
100 /* Construct, lay out and return the type of pointers or references
101 to signature TO_TYPE. If such a type has already been constructed,
102 reuse it. If CONSTP or VOLATILEP is specified, make the `optr' const
103 or volatile, respectively. If we are constructing a const/volatile
104 type variant and the main type variant doesn't exist yet, it is built
105 as well. If REFP is 1, we construct a signature reference, otherwise
106 a signature pointer is constructed.
108 This function is a subroutine of `build_signature_pointer_type' and
109 `build_signature_reference_type'. */
112 build_signature_pointer_or_reference_type (to_type
, constp
, volatilep
, refp
)
114 int constp
, volatilep
, refp
;
117 register struct obstack
*ambient_obstack
= current_obstack
;
118 register struct obstack
*ambient_saveable_obstack
= saveable_obstack
;
120 m
= refp
? SIGNATURE_REFERENCE_TO (to_type
) : SIGNATURE_POINTER_TO (to_type
);
122 /* If we don't have the main variant yet, construct it. */
124 && (constp
|| volatilep
))
125 m
= build_signature_pointer_or_reference_type (to_type
, 0, 0, refp
);
127 /* Treat any nonzero argument as 1. */
129 volatilep
= !!volatilep
;
132 /* If not generating auxiliary info, search the chain of variants to see
133 if there is already one there just like the one we need to have. If so,
134 use that existing one.
136 We don't do this in the case where we are generating aux info because
137 in that case we want each typedef names to get it's own distinct type
138 node, even if the type of this new typedef is the same as some other
141 if (m
&& !flag_gen_aux_info
)
142 for (t
= m
; t
; t
= TYPE_NEXT_VARIANT (t
))
143 if (constp
== TYPE_READONLY (TREE_TYPE (TREE_TYPE (TYPE_FIELDS (t
))))
144 && volatilep
== TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (TYPE_FIELDS (t
)))))
147 /* We need a new one. If TO_TYPE is permanent, make this permanent too. */
148 if (TREE_PERMANENT (to_type
))
150 current_obstack
= &permanent_obstack
;
151 saveable_obstack
= &permanent_obstack
;
154 /* A signature pointer or reference to a signature `s' looks like this:
161 A `const' signature pointer/reference is a
168 Similarly, for `volatile' and `const volatile'. */
170 t
= make_lang_type (RECORD_TYPE
);
172 tree obj_type
= build_type_variant (void_type_node
, constp
, volatilep
);
173 tree optr_type
= build_pointer_type (obj_type
);
176 optr
= build_lang_field_decl (FIELD_DECL
,
177 get_identifier (SIGNATURE_OPTR_NAME
),
179 DECL_FIELD_CONTEXT (optr
) = t
;
180 DECL_CLASS_CONTEXT (optr
) = t
;
183 /* We can share the `sptr' field among type variants. */
184 sptr
= TREE_CHAIN (TYPE_FIELDS (m
));
187 tree sig_tbl_type
= cp_build_type_variant (to_type
, 1, 0);
189 sptr
= build_lang_field_decl (FIELD_DECL
,
190 get_identifier (SIGNATURE_SPTR_NAME
),
191 build_pointer_type (sig_tbl_type
));
192 DECL_FIELD_CONTEXT (sptr
) = t
;
193 DECL_CLASS_CONTEXT (sptr
) = t
;
194 TREE_CHAIN (sptr
) = NULL_TREE
;
197 TREE_CHAIN (optr
) = sptr
;
198 TYPE_FIELDS (t
) = optr
;
199 /* Allow signature pointers/references to be grabbed 2 words at a time.
200 For this to work on a Sparc, we need 8-byte alignment. */
201 TYPE_ALIGN (t
) = MAX (TYPE_ALIGN (double_type_node
),
202 TYPE_ALIGN (optr_type
));
204 /* A signature pointer/reference type isn't a `real' class type. */
205 IS_AGGR_TYPE (t
) = 0;
209 tree name
= build_signature_pointer_or_reference_name (to_type
, constp
,
212 /* Build a DECL node for this type, so the debugger has access to it. */
213 build_signature_pointer_or_reference_decl (t
, name
);
216 CLASSTYPE_GOT_SEMICOLON (t
) = 1;
217 IS_SIGNATURE_POINTER (t
) = ! refp
;
218 IS_SIGNATURE_REFERENCE (t
) = refp
;
219 SIGNATURE_TYPE (t
) = to_type
;
223 /* Add this type to the chain of variants of TYPE.
224 Every type has to be its own TYPE_MAIN_VARIANT. */
225 TYPE_NEXT_VARIANT (t
) = TYPE_NEXT_VARIANT (m
);
226 TYPE_NEXT_VARIANT (m
) = t
;
229 /* Record this type as the reference to TO_TYPE. */
230 SIGNATURE_REFERENCE_TO (to_type
) = t
;
232 /* Record this type as the pointer to TO_TYPE. */
233 SIGNATURE_POINTER_TO (to_type
) = t
;
235 /* Lay out the type. This function has many callers that are concerned
236 with expression-construction, and this simplifies them all.
237 Also, it guarantees the TYPE_SIZE is permanent if the type is. */
240 current_obstack
= ambient_obstack
;
241 saveable_obstack
= ambient_saveable_obstack
;
243 /* Output debug information for this type. */
244 rest_of_type_compilation (t
, 1);
249 /* Construct, lay out and return the type of pointers to signature TO_TYPE. */
252 build_signature_pointer_type (to_type
, constp
, volatilep
)
254 int constp
, volatilep
;
257 build_signature_pointer_or_reference_type (to_type
, constp
, volatilep
, 0);
260 /* Construct, lay out and return the type of pointers to signature TO_TYPE. */
263 build_signature_reference_type (to_type
, constp
, volatilep
)
265 int constp
, volatilep
;
268 build_signature_pointer_or_reference_type (to_type
, constp
, volatilep
, 1);
271 /* Return the name of the signature table (as an IDENTIFIER_NODE)
272 for the given signature type SIG_TYPE and rhs type RHS_TYPE. */
275 get_sigtable_name (sig_type
, rhs_type
)
276 tree sig_type
, rhs_type
;
278 tree sig_type_id
= build_typename_overload (sig_type
);
279 tree rhs_type_id
= build_typename_overload (rhs_type
);
280 char *buf
= (char *) alloca (sizeof (SIGTABLE_NAME_FORMAT_LONG
)
281 + IDENTIFIER_LENGTH (sig_type_id
)
282 + IDENTIFIER_LENGTH (rhs_type_id
) + 20);
283 char *sig_ptr
= IDENTIFIER_POINTER (sig_type_id
);
284 char *rhs_ptr
= IDENTIFIER_POINTER (rhs_type_id
);
287 for (i
= 0; sig_ptr
[i
] == OPERATOR_TYPENAME_FORMAT
[i
]; i
++)
289 while (sig_ptr
[i
] >= '0' && sig_ptr
[i
] <= '9')
292 for (j
= 0; rhs_ptr
[j
] == OPERATOR_TYPENAME_FORMAT
[j
]; j
++)
294 while (rhs_ptr
[j
] >= '0' && rhs_ptr
[j
] <= '9')
297 if (IS_SIGNATURE (rhs_type
))
298 sprintf (buf
, SIGTABLE_NAME_FORMAT_LONG
, sig_ptr
+i
, rhs_ptr
+j
,
299 global_sigtable_name_counter
++);
301 sprintf (buf
, SIGTABLE_NAME_FORMAT
, sig_ptr
+i
, rhs_ptr
+j
);
302 return get_identifier (buf
);
305 /* Build a field decl that points to a signature member function. */
308 build_member_function_pointer (member
)
311 char *namstr
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (member
));
312 int namlen
= IDENTIFIER_LENGTH (DECL_ASSEMBLER_NAME (member
));
316 name
= (char *) alloca (namlen
+ sizeof (SIGNATURE_FIELD_NAME
) + 2);
317 sprintf (name
, SIGNATURE_FIELD_NAME_FORMAT
, namstr
);
319 /* @@ Do we really want to xref signature table fields? */
320 GNU_xref_ref (current_function_decl
, name
);
322 entry
= build_lang_field_decl (FIELD_DECL
, get_identifier (name
),
323 TYPE_MAIN_VARIANT (sigtable_entry_type
));
324 TREE_CONSTANT (entry
) = 1;
325 TREE_READONLY (entry
) = 1;
327 /* @@ Do we really want to xref signature table fields? */
328 GNU_xref_decl (current_function_decl
, entry
);
333 /* For each FUNCTION_DECL in a signature we construct a member function
334 pointer of the appropriate type. We also need two flags to test
335 whether the member function pointer points to a virtual function or
336 to a default implementation. Those flags will be the two lower order
337 bits of the member function pointer (or the two higher order bits,
338 based on the configuration).
340 The new FIELD_DECLs are appended at the end of the last (and only)
341 sublist of `list_of_fieldlists.'
343 As a side effect, each member function in the signature gets the
344 `decl.ignored' bit turned on, so we don't output debug info for it. */
347 append_signature_fields (list_of_fieldlists
)
348 tree list_of_fieldlists
;
351 tree last_x
= NULL_TREE
;
354 tree mfptr_list
= NULL_TREE
;
356 /* For signatures it should actually be only a list with one element. */
357 for (l
= list_of_fieldlists
; l
; l
= TREE_CHAIN (l
))
359 for (x
= TREE_VALUE (l
); x
; x
= TREE_CHAIN (x
))
361 if (TREE_CODE (x
) == FUNCTION_DECL
)
363 mfptr
= build_member_function_pointer (x
);
364 DECL_MEMFUNC_POINTER_TO (x
) = mfptr
;
365 DECL_MEMFUNC_POINTING_TO (mfptr
) = x
;
366 DECL_IGNORED_P (x
) = 1;
367 DECL_IN_AGGR_P (mfptr
) = 1;
369 mfptr_list
= last_mfptr
= mfptr
;
372 TREE_CHAIN (last_mfptr
) = mfptr
;
380 /* Append the lists. */
381 if (last_x
&& mfptr_list
)
383 TREE_CHAIN (last_x
) = mfptr_list
;
384 TREE_CHAIN (last_mfptr
) = NULL_TREE
;
388 /* Compare the types of a signature member function and a class member
389 function. Returns 1 if the types are in the C++ `<=' relationship.
391 If we have a signature pointer/reference as argument or return type
392 we don't want to do a recursive conformance check. The conformance
393 check only succeeds if both LHS and RHS refer to the same signature
394 pointer. Otherwise we need to keep information about parameter types
395 around at run time to initialize the signature table correctly. */
398 match_method_types (sig_mtype
, class_mtype
)
399 tree sig_mtype
, class_mtype
;
401 tree sig_return_type
= TREE_TYPE (sig_mtype
);
402 tree sig_arg_types
= TYPE_ARG_TYPES (sig_mtype
);
403 tree class_return_type
= TREE_TYPE (class_mtype
);
404 tree class_arg_types
= TYPE_ARG_TYPES (class_mtype
);
406 /* The return types have to be the same. */
407 if (! comptypes (sig_return_type
, class_return_type
, 1))
410 /* Compare the first argument `this.' */
412 /* Get the type of what the `optr' is pointing to. */
414 = TREE_TYPE (TREE_TYPE (TYPE_FIELDS (TREE_VALUE (sig_arg_types
))));
415 tree class_this
= TREE_VALUE (class_arg_types
);
417 if (TREE_CODE (class_this
) == RECORD_TYPE
) /* Is `this' a sig ptr? */
418 class_this
= TREE_TYPE (TREE_TYPE (TYPE_FIELDS (class_this
)));
420 class_this
= TREE_TYPE (class_this
);
422 /* If a signature method's `this' is const or volatile, so has to be
423 the corresponding class method's `this.' */
424 if ((TYPE_READONLY (sig_this
) && ! TYPE_READONLY (class_this
))
425 || (TYPE_VOLATILE (sig_this
) && ! TYPE_VOLATILE (class_this
)))
429 sig_arg_types
= TREE_CHAIN (sig_arg_types
);
430 class_arg_types
= TREE_CHAIN (class_arg_types
);
432 /* The number of arguments and the argument types have to be the same. */
433 return compparms (sig_arg_types
, class_arg_types
, 3);
436 /* Undo casts of opaque type variables to the RHS types. */
442 tree field
= TYPE_FIELDS (sig_ty
);
444 /* Since all the FIELD_DECLs for the signature table entries are at the end
445 of the chain (see `append_signature_fields'), we can do it this way. */
446 for (; field
&& TREE_CODE (field
) != FIELD_DECL
; field
= TREE_CHAIN (field
))
447 if (TYPE_MAIN_VARIANT (TREE_TYPE (field
)) == opaque_type_node
)
448 TREE_TYPE (TREE_TYPE (field
)) = TREE_TYPE (ptr_type_node
);
451 /* Do the type checking necessary to see whether the `rhs' conforms to
452 the lhs's `sig_ty'. Depending on the type of `rhs' return a NULL_TREE,
453 an integer_zero_node, a constructor, or an expression offsetting the
454 `rhs' signature table. */
457 build_signature_table_constructor (sig_ty
, rhs
)
460 tree rhstype
= TREE_TYPE (rhs
);
461 tree sig_field
= TYPE_FIELDS (sig_ty
);
462 tree result
= NULL_TREE
;
463 tree first_rhs_field
= NULL_TREE
;
465 int sig_ptr_p
= IS_SIGNATURE (rhstype
);
466 int offset_p
= sig_ptr_p
;
468 rhstype
= sig_ptr_p
? rhstype
: TREE_TYPE (rhstype
);
470 if (CLASSTYPE_TAGS (sig_ty
))
472 sorry ("conformance check with signature containing class declarations");
473 return error_mark_node
;
476 for (; sig_field
; sig_field
= TREE_CHAIN (sig_field
))
478 tree basetype_path
, baselink
, basetypes
;
479 tree sig_method
, sig_mname
, sig_mtype
;
480 tree rhs_method
, tbl_entry
;
482 if (TREE_CODE (sig_field
) == TYPE_DECL
)
484 tree sig_field_type
= TREE_TYPE (sig_field
);
486 if (TYPE_MAIN_VARIANT (sig_field_type
) == opaque_type_node
)
488 /* We've got an opaque type here. */
489 tree oty_name
= DECL_NAME (sig_field
);
490 tree oty_type
= lookup_field (rhstype
, oty_name
, 1, 1);
492 if (oty_type
== NULL_TREE
|| oty_type
== error_mark_node
)
494 cp_error ("class `%T' does not contain type `%T'",
497 return error_mark_node
;
499 oty_type
= TREE_TYPE (oty_type
);
501 /* Cast `sig_field' to be of type `oty_type'. This will be
502 undone in `undo_casts' by walking over all the TYPE_DECLs. */
503 TREE_TYPE (sig_field_type
) = TREE_TYPE (oty_type
);
505 /* If we don't have an opaque type, we can ignore the `typedef'. */
509 /* Find the signature method corresponding to `sig_field'. */
510 sig_method
= DECL_MEMFUNC_POINTING_TO (sig_field
);
511 sig_mname
= DECL_NAME (sig_method
);
512 sig_mtype
= TREE_TYPE (sig_method
);
514 basetype_path
= TYPE_BINFO (rhstype
);
515 baselink
= lookup_fnfields (basetype_path
, sig_mname
, 0);
516 if (baselink
== NULL_TREE
|| baselink
== error_mark_node
)
518 if (! IS_DEFAULT_IMPLEMENTATION (sig_method
))
520 cp_error ("class `%T' does not contain method `%D'",
523 return error_mark_node
;
527 /* We use the signature's default implementation. */
528 rhs_method
= sig_method
;
533 /* Find the class method of the correct type. */
535 basetypes
= TREE_PURPOSE (baselink
);
536 if (TREE_CODE (basetypes
) == TREE_LIST
)
537 basetypes
= TREE_VALUE (basetypes
);
539 rhs_method
= TREE_VALUE (baselink
);
540 for (; rhs_method
; rhs_method
= TREE_CHAIN (rhs_method
))
541 if (sig_mname
== DECL_NAME (rhs_method
)
542 && ! DECL_STATIC_FUNCTION_P (rhs_method
)
543 && match_method_types (sig_mtype
, TREE_TYPE (rhs_method
)))
546 if (rhs_method
== NULL_TREE
547 || (compute_access (basetypes
, rhs_method
)
548 != access_public_node
))
550 error ("class `%s' does not contain a method conforming to `%s'",
551 TYPE_NAME_STRING (rhstype
),
552 fndecl_as_string (sig_method
, 1));
554 return error_mark_node
;
558 if (sig_ptr_p
&& rhs_method
!= sig_method
)
560 tree rhs_field
= DECL_MEMFUNC_POINTER_TO (rhs_method
);
562 if (first_rhs_field
== NULL_TREE
)
564 first_rhs_field
= rhs_field
;
565 last_rhs_field
= rhs_field
;
567 else if (TREE_CHAIN (last_rhs_field
) == rhs_field
)
568 last_rhs_field
= rhs_field
;
572 tbl_entry
= build_component_ref (rhs
, DECL_NAME (rhs_field
),
577 tree tag
, vb_off
, delta
, idx
, pfn
, vt_off
;
578 tree tag_decl
, vb_off_decl
, delta_decl
, index_decl
;
579 tree pfn_decl
, vt_off_decl
;
581 if (rhs_method
== sig_method
)
583 /* default implementation */
584 tag
= build_unary_op (NEGATE_EXPR
, integer_one_node
, 0);
585 vb_off
= build_unary_op (NEGATE_EXPR
, integer_one_node
, 0);
586 delta
= integer_zero_node
;
587 idx
= integer_zero_node
;
588 pfn
= build_addr_func (rhs_method
);
589 TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (rhs_method
)) = 1;
590 TREE_TYPE (pfn
) = ptr_type_node
;
591 TREE_ADDRESSABLE (rhs_method
) = 1;
592 offset_p
= 0; /* we can't offset the rhs sig table */
594 else if (DECL_VINDEX (rhs_method
))
596 /* virtual member function */
597 tag
= integer_one_node
;
598 vb_off
= build_unary_op (NEGATE_EXPR
, integer_one_node
, 0);
599 if (flag_vtable_thunks
)
601 (get_binfo (DECL_CONTEXT (rhs_method
), rhstype
, 1));
604 (get_binfo (DECL_CLASS_CONTEXT (rhs_method
), rhstype
, 1));
605 idx
= DECL_VINDEX (rhs_method
);
606 vt_off
= get_vfield_offset (get_binfo (DECL_CONTEXT (rhs_method
),
611 /* non-virtual member function */
612 tag
= integer_zero_node
;
613 vb_off
= build_unary_op (NEGATE_EXPR
, integer_one_node
, 0);
614 delta
= BINFO_OFFSET (get_binfo (DECL_CLASS_CONTEXT (rhs_method
),
616 idx
= integer_zero_node
;
617 pfn
= build_addr_func (rhs_method
);
618 TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (rhs_method
)) = 1;
619 TREE_TYPE (pfn
) = ptr_type_node
;
620 TREE_ADDRESSABLE (rhs_method
) = 1;
623 /* Since digest_init doesn't handle initializing selected fields
624 of a struct (i.e., anonymous union), we build the constructor
625 by hand, without calling digest_init. */
626 tag_decl
= TYPE_FIELDS (sigtable_entry_type
);
627 vb_off_decl
= TREE_CHAIN (tag_decl
);
628 delta_decl
= TREE_CHAIN (vb_off_decl
);
629 index_decl
= TREE_CHAIN (delta_decl
);
630 pfn_decl
= TREE_CHAIN (index_decl
);
631 vt_off_decl
= TREE_CHAIN (pfn_decl
);
633 tag
= cp_convert (TREE_TYPE (tag_decl
), tag
);
634 vb_off
= cp_convert (TREE_TYPE (vb_off_decl
), vb_off
);
635 delta
= cp_convert (TREE_TYPE (delta_decl
), delta
);
636 idx
= cp_convert (TREE_TYPE (index_decl
), idx
);
638 if (DECL_VINDEX (rhs_method
))
640 vt_off
= cp_convert (TREE_TYPE (vt_off_decl
), vt_off
);
642 tbl_entry
= build_tree_list (vt_off_decl
, vt_off
);
646 pfn
= cp_convert (TREE_TYPE (pfn_decl
), pfn
);
648 tbl_entry
= build_tree_list (pfn_decl
, pfn
);
650 tbl_entry
= tree_cons (delta_decl
, delta
,
651 tree_cons (index_decl
, idx
, tbl_entry
));
652 tbl_entry
= tree_cons (tag_decl
, tag
,
653 tree_cons (vb_off_decl
, vb_off
, tbl_entry
));
654 tbl_entry
= build (CONSTRUCTOR
, sigtable_entry_type
,
655 NULL_TREE
, tbl_entry
);
657 TREE_CONSTANT (tbl_entry
) = 1;
660 /* Chain those function address expressions together. */
662 result
= tree_cons (NULL_TREE
, tbl_entry
, result
);
664 result
= build_tree_list (NULL_TREE
, tbl_entry
);
667 if (result
== NULL_TREE
)
669 /* The signature was empty, we don't need a signature table. */
676 if (first_rhs_field
== TYPE_FIELDS (rhstype
))
678 /* The sptr field on the lhs can be copied from the rhs. */
680 return integer_zero_node
;
684 /* The sptr field on the lhs will point into the rhs sigtable. */
686 return build_component_ref (rhs
, DECL_NAME (first_rhs_field
),
691 /* We need to construct a new signature table. */
692 result
= build_nt (CONSTRUCTOR
, NULL_TREE
, nreverse (result
));
693 TREE_HAS_CONSTRUCTOR (result
) = 1;
694 TREE_CONSTANT (result
) = !sig_ptr_p
;
700 /* Build a signature table declaration and initialize it or return an
701 existing one if we built one already. If we don't get a constructor
702 as initialization expression, we don't need a new signature table
703 variable and just hand back the init expression.
705 The declaration processing is done by hand instead of using `cp_finish_decl'
706 so that we can make signature pointers global variables instead of
710 build_sigtable (sig_type
, rhs_type
, init_from
)
711 tree sig_type
, rhs_type
, init_from
;
713 tree name
= NULL_TREE
;
714 tree decl
= NULL_TREE
;
717 push_obstacks_nochange ();
718 end_temporary_allocation ();
720 if (! IS_SIGNATURE (rhs_type
))
722 name
= get_sigtable_name (sig_type
, rhs_type
);
723 decl
= IDENTIFIER_GLOBAL_VALUE (name
);
725 if (decl
== NULL_TREE
)
729 /* We allow only one signature table to be generated for signatures
730 with opaque types. Otherwise we create a loophole in the type
731 system since we could cast data from one classes implementation
732 of the opaque type to that of another class. */
733 if (SIGNATURE_HAS_OPAQUE_TYPEDECLS (sig_type
)
734 && SIGTABLE_HAS_BEEN_GENERATED (sig_type
))
736 error ("signature with opaque type implemented by multiple classes");
737 return error_mark_node
;
739 SIGTABLE_HAS_BEEN_GENERATED (sig_type
) = 1;
741 init_expr
= build_signature_table_constructor (sig_type
, init_from
);
742 if (init_expr
== NULL_TREE
|| TREE_CODE (init_expr
) != CONSTRUCTOR
)
745 if (name
== NULL_TREE
)
746 name
= get_sigtable_name (sig_type
, rhs_type
);
748 tree context
= current_function_decl
;
750 /* Make the signature table global, not just static in whichever
751 function a signature pointer/ref is used for the first time. */
752 current_function_decl
= NULL_TREE
;
753 decl
= pushdecl_top_level (build_decl (VAR_DECL
, name
, sig_type
));
754 current_function_decl
= context
;
756 IDENTIFIER_GLOBAL_VALUE (name
) = decl
;
757 store_init_value (decl
, init_expr
);
758 if (IS_SIGNATURE (rhs_type
))
760 init
= DECL_INITIAL (decl
);
761 DECL_INITIAL (decl
) = error_mark_node
;
764 DECL_ALIGN (decl
) = MAX (TYPE_ALIGN (double_type_node
),
767 /* GDB-4.7 doesn't find the initialization value of a signature table
768 when it is constant. */
769 TREE_READONLY (decl
) = 1;
771 TREE_STATIC (decl
) = 1;
772 TREE_USED (decl
) = 1;
774 make_decl_rtl (decl
, NULL
, 1);
775 if (IS_SIGNATURE (rhs_type
))
776 expand_static_init (decl
, init
);
784 /* Create a constructor or modify expression if the LHS of an assignment
785 is a signature pointer or a signature reference. If LHS is a record
786 type node, we build a constructor, otherwise a compound expression. */
789 build_signature_pointer_constructor (lhs
, rhs
)
792 register struct obstack
*ambient_obstack
= current_obstack
;
793 register struct obstack
*ambient_saveable_obstack
= saveable_obstack
;
794 int initp
= (TREE_CODE (lhs
) == RECORD_TYPE
);
795 tree lhstype
= initp
? lhs
: TREE_TYPE (lhs
);
796 tree rhstype
= TREE_TYPE (rhs
);
797 tree sig_ty
= SIGNATURE_TYPE (lhstype
);
798 tree sig_tbl
, sptr_expr
, optr_expr
;
801 if (! ((TREE_CODE (rhstype
) == POINTER_TYPE
802 && TREE_CODE (TREE_TYPE (rhstype
)) == RECORD_TYPE
)
803 || (TYPE_LANG_SPECIFIC (rhstype
)
804 && (IS_SIGNATURE_POINTER (rhstype
)
805 || IS_SIGNATURE_REFERENCE (rhstype
)))))
807 error ("invalid assignment to signature pointer or reference");
808 return error_mark_node
;
811 if (TYPE_SIZE (sig_ty
) == NULL_TREE
)
813 cp_error ("undefined signature `%T' used in signature %s declaration",
815 IS_SIGNATURE_POINTER (lhstype
) ? "pointer" : "reference");
816 return error_mark_node
;
819 /* If SIG_TY is permanent, make the signature table constructor and
820 the signature pointer/reference constructor permanent too. */
821 if (TREE_PERMANENT (sig_ty
))
823 current_obstack
= &permanent_obstack
;
824 saveable_obstack
= &permanent_obstack
;
827 if (TYPE_LANG_SPECIFIC (rhstype
)
828 && (IS_SIGNATURE_POINTER (rhstype
) || IS_SIGNATURE_REFERENCE (rhstype
)))
830 if (SIGNATURE_TYPE (rhstype
) == sig_ty
)
832 /* LHS and RHS are signature pointers/refs of the same signature. */
833 optr_expr
= build_optr_ref (rhs
);
834 sptr_expr
= build_sptr_ref (rhs
);
838 /* We need to create a new signature table and copy
839 elements from the rhs signature table. */
840 tree rhs_sptr_ref
= build_sptr_ref (rhs
);
841 tree rhs_tbl
= build1 (INDIRECT_REF
, SIGNATURE_TYPE (rhstype
),
844 sig_tbl
= build_sigtable (sig_ty
, SIGNATURE_TYPE (rhstype
), rhs_tbl
);
845 if (sig_tbl
== error_mark_node
)
846 return error_mark_node
;
848 optr_expr
= build_optr_ref (rhs
);
849 if (sig_tbl
== NULL_TREE
)
850 /* The signature was empty. The signature pointer is
851 pretty useless, but the user has been warned. */
852 sptr_expr
= copy_node (null_pointer_node
);
853 else if (sig_tbl
== integer_zero_node
)
854 sptr_expr
= rhs_sptr_ref
;
856 sptr_expr
= build_unary_op (ADDR_EXPR
, sig_tbl
, 0);
857 TREE_TYPE (sptr_expr
) = build_pointer_type (sig_ty
);
862 sig_tbl
= build_sigtable (sig_ty
, TREE_TYPE (rhstype
), rhs
);
863 if (sig_tbl
== error_mark_node
)
864 return error_mark_node
;
867 if (sig_tbl
== NULL_TREE
)
868 /* The signature was empty. The signature pointer is
869 pretty useless, but the user has been warned. */
871 sptr_expr
= copy_node (null_pointer_node
);
872 TREE_TYPE (sptr_expr
) = build_pointer_type (sig_ty
);
875 sptr_expr
= build_unary_op (ADDR_EXPR
, sig_tbl
, 0);
880 result
= tree_cons (NULL_TREE
, optr_expr
,
881 build_tree_list (NULL_TREE
, sptr_expr
));
882 result
= build_nt (CONSTRUCTOR
, NULL_TREE
, result
);
883 TREE_HAS_CONSTRUCTOR (result
) = 1;
884 result
= digest_init (lhstype
, result
, 0);
888 if (TREE_READONLY (lhs
) || TYPE_READONLY (lhstype
))
889 readonly_error (lhs
, "assignment", 0);
891 optr_expr
= build_modify_expr (build_optr_ref (lhs
), NOP_EXPR
,
893 sptr_expr
= build_modify_expr (build_sptr_ref (lhs
), NOP_EXPR
,
896 result
= tree_cons (NULL_TREE
, optr_expr
,
897 tree_cons (NULL_TREE
, sptr_expr
,
898 build_tree_list (NULL_TREE
, lhs
)));
899 result
= build_compound_expr (result
);
902 current_obstack
= ambient_obstack
;
903 saveable_obstack
= ambient_saveable_obstack
;
907 /* Build a temporary variable declaration for the instance of a signature
908 member function call if it isn't a declaration node already. Simply
909 using a SAVE_EXPR doesn't work since we need `this' in both branches
910 of a conditional expression. */
918 if (TREE_CODE_CLASS (TREE_CODE (instance
)) == 'd')
922 decl
= build_decl (VAR_DECL
, NULL_TREE
, TREE_TYPE (instance
));
923 DECL_REGISTER (decl
) = 1;
924 layout_decl (decl
, 0);
931 /* Build a signature member function call. Looks up the signature table
932 entry corresponding to FUNCTION. Depending on the value of the CODE
933 field, either call the function in PFN directly, or use OFFSET to
934 index the object's virtual function table. */
937 build_signature_method_call (function
, parms
)
938 tree function
, parms
;
940 tree instance
= TREE_VALUE (parms
);
941 tree saved_instance
= save_this (instance
); /* Create temp for `this'. */
942 tree object_ptr
= build_optr_ref (saved_instance
);
943 tree new_object_ptr
, new_parms
;
944 tree signature_tbl_ptr
= build_sptr_ref (saved_instance
);
945 tree sig_field_name
= DECL_NAME (DECL_MEMFUNC_POINTER_TO (function
));
946 tree basetype
= DECL_CONTEXT (function
);
947 tree basetype_path
= TYPE_BINFO (basetype
);
948 tree tbl_entry
= build_component_ref (build1 (INDIRECT_REF
, basetype
,
950 sig_field_name
, basetype_path
, 1);
951 tree tag
, delta
, pfn
, vt_off
, idx
, vfn
;
952 tree deflt_call
= NULL_TREE
, direct_call
, virtual_call
, result
;
954 tbl_entry
= save_expr (tbl_entry
);
955 tag
= build_component_ref (tbl_entry
, tag_identifier
, NULL_TREE
, 1);
956 delta
= build_component_ref (tbl_entry
, delta_identifier
, NULL_TREE
, 1);
957 pfn
= build_component_ref (tbl_entry
, pfn_identifier
, NULL_TREE
, 1);
958 vt_off
= build_component_ref (tbl_entry
, vt_off_identifier
, NULL_TREE
, 1);
959 idx
= build_component_ref (tbl_entry
, index_identifier
, NULL_TREE
, 1);
960 TREE_TYPE (pfn
) = build_pointer_type (TREE_TYPE (function
));
962 if (IS_DEFAULT_IMPLEMENTATION (function
))
964 pfn
= save_expr (pfn
);
965 deflt_call
= build_function_call (pfn
, parms
);
968 new_object_ptr
= build (PLUS_EXPR
, build_pointer_type (basetype
),
969 cp_convert (ptrdiff_type_node
, object_ptr
),
970 cp_convert (ptrdiff_type_node
, delta
));
972 parms
= tree_cons (NULL_TREE
,
973 cp_convert (build_pointer_type (basetype
), object_ptr
),
975 new_parms
= tree_cons (NULL_TREE
, new_object_ptr
, TREE_CHAIN (parms
));
978 /* Cast the signature method to have `this' of a normal pointer type. */
979 tree old_this
= TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (TREE_TYPE (pfn
))));
981 TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (TREE_TYPE (pfn
))))
982 = build_type_variant (build_pointer_type (basetype
),
983 TYPE_READONLY (old_this
),
984 TYPE_VOLATILE (old_this
));
986 direct_call
= build_function_call (pfn
, new_parms
);
989 tree vfld
, vtbl
, aref
;
991 vfld
= build (PLUS_EXPR
,
992 build_pointer_type (build_pointer_type (vtbl_type_node
)),
993 cp_convert (ptrdiff_type_node
, object_ptr
),
994 cp_convert (ptrdiff_type_node
, vt_off
));
995 vtbl
= build_indirect_ref (build_indirect_ref (vfld
, NULL_PTR
),
997 aref
= build_array_ref (vtbl
, idx
);
999 if (flag_vtable_thunks
)
1002 vfn
= build_component_ref (aref
, pfn_identifier
, NULL_TREE
, 0);
1004 TREE_TYPE (vfn
) = build_pointer_type (TREE_TYPE (function
));
1006 virtual_call
= build_function_call (vfn
, new_parms
);
1009 /* Undo the cast, make `this' a signature pointer again. */
1010 TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (TREE_TYPE (pfn
)))) = old_this
;
1013 /* Once the function was found, there should be no reason why we
1014 couldn't build the member function pointer call. */
1015 if (!direct_call
|| direct_call
== error_mark_node
1016 || !virtual_call
|| virtual_call
== error_mark_node
1017 || (IS_DEFAULT_IMPLEMENTATION (function
)
1018 && (!deflt_call
|| deflt_call
== error_mark_node
)))
1020 compiler_error ("cannot build call of signature member function `%s'",
1021 fndecl_as_string (function
, 1));
1022 return error_mark_node
;
1025 if (IS_DEFAULT_IMPLEMENTATION (function
))
1027 tree test
= build_binary_op_nodefault (LT_EXPR
, tag
, integer_zero_node
,
1029 result
= build_conditional_expr (tag
,
1030 build_conditional_expr (test
,
1036 result
= build_conditional_expr (tag
, virtual_call
, direct_call
);
1038 /* If we created a temporary variable for `this', initialize it first. */
1039 if (instance
!= saved_instance
)
1040 result
= build (COMPOUND_EXPR
, TREE_TYPE (result
),
1041 build_modify_expr (saved_instance
, NOP_EXPR
, instance
),
1047 /* Create a COMPONENT_REF expression for referencing the OPTR field
1048 of a signature pointer or reference. */
1051 build_optr_ref (instance
)
1054 tree field
= get_identifier (SIGNATURE_OPTR_NAME
);
1056 return build_component_ref (instance
, field
, NULL_TREE
, 1);
1059 /* Create a COMPONENT_REF expression for referencing the SPTR field
1060 of a signature pointer or reference. */
1063 build_sptr_ref (instance
)
1066 tree field
= get_identifier (SIGNATURE_SPTR_NAME
);
1068 return build_component_ref (instance
, field
, NULL_TREE
, 1);