Reattachment
Revision as of 05:54, 26 March 2007 by Alexander Kogtenkov (Talk | contribs) (Added an initial version with the description of implementation on classic)
See also: Object_Layout, Dynamic_Binding
Introduction
Conformance of expanded types to (particular) reference types implies that objects of generically derived types with expanded parameters can be attached to generically derived types with reference parameters (e.g., ARRAY [INTEGER]
can be attached to ARRAY [ANY]
).
All features in a generic derivation with an expanded parameter that involve this generic parameter should be able to handle the case when they are called on a target where this generic parameter is reference, i.e. they should be able to take reference arguments and return reference result.
Reattachment of generic derivations in classic
- In addition to the "normal" version of the method generated for a particular feature, a new stub can be generated so that its arguments/result types match those of the generic derivation with reference generic parameters. In order to avoid additional pressure on garbage collector, the values passed to/from the generated methods can be embedded in an EIF_UNION structure that allows to pass objects of basic and reference types "as is", while objects of user-defined expanded type still need to be "boxed" and kept in the heap.
- The feature
{ROUT_TABLE}.is_polymorphic
has to be modified so that it allows for different generic derivatins to share the same table, because now it becomes possible to reattach generic derivations with expanded parameters to the generic derivations with reference parameters. Though not all the reattachments are possible (e.g., no reattachment is possible between the typesARRAY [INTEGER]
andARRAY [BOOLEAN]
), it's too complicated and/or resource consuming to create the tables for every generic derivation and types that conform to it. - Attributes that are declared of a formal generic type (or as of type, anchored to a feature of a formal generic type) have to be accessed as functions so that they can be safely access from the generic derivations with reference parameters. This involves two changes in code generation:
- Promotion of
ATTRIBUTE_B
toFEATURE_B
if an attribute type is (directly or indirectly) a formal generic. - Generation of an accessor for the attribute by setting the field
generated_in
.
- Promotion of