1 /* Implementation of Fortran 2003 Polymorphism.
2 Copyright (C) 2009, 2010
3 Free Software Foundation, Inc.
4 Contributed by Paul Richard Thomas & Janus Weil
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
23 /* class.c -- This file contains the front end functions needed to service
24 the implementation of Fortran 2003 polymorphism and other
25 object-oriented features. */
28 /* Outline of the internal representation:
30 Each CLASS variable is encapsulated by a class container, which is a
31 structure with two fields:
32 * $data: A pointer to the actual data of the variable. This field has the
33 declared type of the class variable and its attributes
34 (pointer/allocatable/dimension/...).
35 * $vptr: A pointer to the vtable entry (see below) of the dynamic type.
37 For each derived type we set up a "vtable" entry, i.e. a structure with the
39 * $hash: A hash value serving as a unique identifier for this type.
40 * $size: The size in bytes of the derived type.
41 * $extends: A pointer to the vtable entry of the parent derived type.
42 In addition to these fields, each vtable entry contains additional procedure
43 pointer components, which contain pointers to the procedures which are bound
44 to the type's "methods" (type-bound procedures). */
50 #include "constructor.h"
53 /* Insert a reference to the component of the given name.
54 Only to be used with CLASS containers. */
57 gfc_add_component_ref (gfc_expr
*e
, const char *name
)
59 gfc_ref
**tail
= &(e
->ref
);
61 gfc_symbol
*derived
= e
->symtree
->n
.sym
->ts
.u
.derived
;
64 if ((*tail
)->type
== REF_COMPONENT
)
65 derived
= (*tail
)->u
.c
.component
->ts
.u
.derived
;
66 if ((*tail
)->type
== REF_ARRAY
&& (*tail
)->next
== NULL
)
68 tail
= &((*tail
)->next
);
70 if (*tail
!= NULL
&& strcmp (name
, "$data") == 0)
72 (*tail
) = gfc_get_ref();
74 (*tail
)->type
= REF_COMPONENT
;
75 (*tail
)->u
.c
.sym
= derived
;
76 (*tail
)->u
.c
.component
= gfc_find_component (derived
, name
, true, true);
77 gcc_assert((*tail
)->u
.c
.component
);
79 e
->ts
= (*tail
)->u
.c
.component
->ts
;
83 /* Build a NULL initializer for CLASS pointers,
84 initializing the $data and $vptr components to zero. */
87 gfc_class_null_initializer (gfc_typespec
*ts
)
92 init
= gfc_get_structure_constructor_expr (ts
->type
, ts
->kind
,
93 &ts
->u
.derived
->declared_at
);
96 for (comp
= ts
->u
.derived
->components
; comp
; comp
= comp
->next
)
98 gfc_constructor
*ctor
= gfc_constructor_get();
99 ctor
->expr
= gfc_get_expr ();
100 ctor
->expr
->expr_type
= EXPR_NULL
;
101 ctor
->expr
->ts
= comp
->ts
;
102 gfc_constructor_append (&init
->value
.constructor
, ctor
);
109 /* Build a polymorphic CLASS entity, using the symbol that comes from
110 build_sym. A CLASS entity is represented by an encapsulating type,
111 which contains the declared type as '$data' component, plus a pointer
112 component '$vptr' which determines the dynamic type. */
115 gfc_build_class_symbol (gfc_typespec
*ts
, symbol_attribute
*attr
,
116 gfc_array_spec
**as
, bool delayed_vtab
)
118 char name
[GFC_MAX_SYMBOL_LEN
+ 5];
123 /* Determine the name of the encapsulating type. */
124 if ((*as
) && (*as
)->rank
&& attr
->allocatable
)
125 sprintf (name
, "class$%s_%d_a", ts
->u
.derived
->name
, (*as
)->rank
);
126 else if ((*as
) && (*as
)->rank
)
127 sprintf (name
, "class$%s_%d", ts
->u
.derived
->name
, (*as
)->rank
);
128 else if (attr
->pointer
)
129 sprintf (name
, "class$%s_p", ts
->u
.derived
->name
);
130 else if (attr
->allocatable
)
131 sprintf (name
, "class$%s_a", ts
->u
.derived
->name
);
133 sprintf (name
, "class$%s", ts
->u
.derived
->name
);
135 gfc_find_symbol (name
, ts
->u
.derived
->ns
, 0, &fclass
);
139 /* If not there, create a new symbol. */
140 fclass
= gfc_new_symbol (name
, ts
->u
.derived
->ns
);
141 st
= gfc_new_symtree (&ts
->u
.derived
->ns
->sym_root
, name
);
143 gfc_set_sym_referenced (fclass
);
145 fclass
->ts
.type
= BT_UNKNOWN
;
146 fclass
->attr
.abstract
= ts
->u
.derived
->attr
.abstract
;
147 if (ts
->u
.derived
->f2k_derived
)
148 fclass
->f2k_derived
= gfc_get_namespace (NULL
, 0);
149 if (gfc_add_flavor (&fclass
->attr
, FL_DERIVED
,
150 NULL
, &gfc_current_locus
) == FAILURE
)
153 /* Add component '$data'. */
154 if (gfc_add_component (fclass
, "$data", &c
) == FAILURE
)
157 c
->ts
.type
= BT_DERIVED
;
158 c
->attr
.access
= ACCESS_PRIVATE
;
159 c
->ts
.u
.derived
= ts
->u
.derived
;
160 c
->attr
.class_pointer
= attr
->pointer
;
161 c
->attr
.pointer
= attr
->pointer
|| attr
->dummy
;
162 c
->attr
.allocatable
= attr
->allocatable
;
163 c
->attr
.dimension
= attr
->dimension
;
164 c
->attr
.codimension
= attr
->codimension
;
165 c
->attr
.abstract
= ts
->u
.derived
->attr
.abstract
;
167 c
->initializer
= NULL
;
169 /* Add component '$vptr'. */
170 if (gfc_add_component (fclass
, "$vptr", &c
) == FAILURE
)
172 c
->ts
.type
= BT_DERIVED
;
174 c
->ts
.u
.derived
= NULL
;
177 vtab
= gfc_find_derived_vtab (ts
->u
.derived
);
179 c
->ts
.u
.derived
= vtab
->ts
.u
.derived
;
181 c
->attr
.access
= ACCESS_PRIVATE
;
185 /* Since the extension field is 8 bit wide, we can only have
186 up to 255 extension levels. */
187 if (ts
->u
.derived
->attr
.extension
== 255)
189 gfc_error ("Maximum extension level reached with type '%s' at %L",
190 ts
->u
.derived
->name
, &ts
->u
.derived
->declared_at
);
194 fclass
->attr
.extension
= ts
->u
.derived
->attr
.extension
+ 1;
195 fclass
->attr
.is_class
= 1;
196 ts
->u
.derived
= fclass
;
197 attr
->allocatable
= attr
->pointer
= attr
->dimension
= 0;
198 (*as
) = NULL
; /* XXX */
203 /* Add a procedure pointer component to the vtype
204 to represent a specific type-bound procedure. */
207 add_proc_comp (gfc_symbol
*vtype
, const char *name
, gfc_typebound_proc
*tb
)
210 c
= gfc_find_component (vtype
, name
, true, true);
214 /* Add procedure component. */
215 if (gfc_add_component (vtype
, name
, &c
) == FAILURE
)
219 c
->tb
= XCNEW (gfc_typebound_proc
);
222 c
->attr
.procedure
= 1;
223 c
->attr
.proc_pointer
= 1;
224 c
->attr
.flavor
= FL_PROCEDURE
;
225 c
->attr
.access
= ACCESS_PRIVATE
;
226 c
->attr
.external
= 1;
228 c
->attr
.if_source
= IFSRC_IFBODY
;
230 else if (c
->attr
.proc_pointer
&& c
->tb
)
238 c
->ts
.interface
= tb
->u
.specific
->n
.sym
;
240 c
->initializer
= gfc_get_variable_expr (tb
->u
.specific
);
245 /* Add all specific type-bound procedures in the symtree 'st' to a vtype. */
248 add_procs_to_declared_vtab1 (gfc_symtree
*st
, gfc_symbol
*vtype
)
254 add_procs_to_declared_vtab1 (st
->left
, vtype
);
257 add_procs_to_declared_vtab1 (st
->right
, vtype
);
259 if (st
->n
.tb
&& !st
->n
.tb
->error
260 && !st
->n
.tb
->is_generic
&& st
->n
.tb
->u
.specific
)
261 add_proc_comp (vtype
, st
->name
, st
->n
.tb
);
265 /* Copy procedure pointers components from the parent type. */
268 copy_vtab_proc_comps (gfc_symbol
*declared
, gfc_symbol
*vtype
)
273 vtab
= gfc_find_derived_vtab (declared
);
275 for (cmp
= vtab
->ts
.u
.derived
->components
; cmp
; cmp
= cmp
->next
)
277 if (gfc_find_component (vtype
, cmp
->name
, true, true))
280 add_proc_comp (vtype
, cmp
->name
, cmp
->tb
);
285 /* Add procedure pointers for all type-bound procedures to a vtab. */
288 add_procs_to_declared_vtab (gfc_symbol
*derived
, gfc_symbol
*vtype
)
290 gfc_symbol
* super_type
;
292 super_type
= gfc_get_derived_super_type (derived
);
294 if (super_type
&& (super_type
!= derived
))
296 /* Make sure that the PPCs appear in the same order as in the parent. */
297 copy_vtab_proc_comps (super_type
, vtype
);
298 /* Only needed to get the PPC initializers right. */
299 add_procs_to_declared_vtab (super_type
, vtype
);
302 if (derived
->f2k_derived
&& derived
->f2k_derived
->tb_sym_root
)
303 add_procs_to_declared_vtab1 (derived
->f2k_derived
->tb_sym_root
, vtype
);
305 if (derived
->f2k_derived
&& derived
->f2k_derived
->tb_uop_root
)
306 add_procs_to_declared_vtab1 (derived
->f2k_derived
->tb_uop_root
, vtype
);
310 /* Find the symbol for a derived type's vtab.
311 A vtab has the following fields:
312 * $hash a hash value used to identify the derived type
313 * $size the size in bytes of the derived type
314 * $extends a pointer to the vtable of the parent derived type
315 After these follow procedure pointer components for the
316 specific type-bound procedures. */
319 gfc_find_derived_vtab (gfc_symbol
*derived
)
322 gfc_symbol
*vtab
= NULL
, *vtype
= NULL
, *found_sym
= NULL
, *def_init
= NULL
;
323 char name
[2 * GFC_MAX_SYMBOL_LEN
+ 8];
325 /* Find the top-level namespace (MODULE or PROGRAM). */
326 for (ns
= gfc_current_ns
; ns
; ns
= ns
->parent
)
330 /* If the type is a class container, use the underlying derived type. */
331 if (derived
->attr
.is_class
)
332 derived
= gfc_get_derived_super_type (derived
);
336 sprintf (name
, "vtab$%s", derived
->name
);
337 gfc_find_symbol (name
, ns
, 0, &vtab
);
341 gfc_get_symbol (name
, ns
, &vtab
);
342 vtab
->ts
.type
= BT_DERIVED
;
343 if (gfc_add_flavor (&vtab
->attr
, FL_VARIABLE
, NULL
,
344 &gfc_current_locus
) == FAILURE
)
346 vtab
->attr
.target
= 1;
347 vtab
->attr
.save
= SAVE_EXPLICIT
;
349 vtab
->attr
.access
= ACCESS_PUBLIC
;
350 gfc_set_sym_referenced (vtab
);
351 sprintf (name
, "vtype$%s", derived
->name
);
353 gfc_find_symbol (name
, ns
, 0, &vtype
);
357 gfc_symbol
*parent
= NULL
, *parent_vtab
= NULL
;
359 gfc_get_symbol (name
, ns
, &vtype
);
360 if (gfc_add_flavor (&vtype
->attr
, FL_DERIVED
,
361 NULL
, &gfc_current_locus
) == FAILURE
)
363 vtype
->attr
.access
= ACCESS_PUBLIC
;
364 gfc_set_sym_referenced (vtype
);
366 /* Add component '$hash'. */
367 if (gfc_add_component (vtype
, "$hash", &c
) == FAILURE
)
369 c
->ts
.type
= BT_INTEGER
;
371 c
->attr
.access
= ACCESS_PRIVATE
;
372 c
->initializer
= gfc_get_int_expr (gfc_default_integer_kind
,
373 NULL
, derived
->hash_value
);
375 /* Add component '$size'. */
376 if (gfc_add_component (vtype
, "$size", &c
) == FAILURE
)
378 c
->ts
.type
= BT_INTEGER
;
380 c
->attr
.access
= ACCESS_PRIVATE
;
381 /* Remember the derived type in ts.u.derived,
382 so that the correct initializer can be set later on
383 (in gfc_conv_structure). */
384 c
->ts
.u
.derived
= derived
;
385 c
->initializer
= gfc_get_int_expr (gfc_default_integer_kind
,
388 /* Add component $extends. */
389 if (gfc_add_component (vtype
, "$extends", &c
) == FAILURE
)
392 c
->attr
.access
= ACCESS_PRIVATE
;
393 parent
= gfc_get_derived_super_type (derived
);
396 parent_vtab
= gfc_find_derived_vtab (parent
);
397 c
->ts
.type
= BT_DERIVED
;
398 c
->ts
.u
.derived
= parent_vtab
->ts
.u
.derived
;
399 c
->initializer
= gfc_get_expr ();
400 c
->initializer
->expr_type
= EXPR_VARIABLE
;
401 gfc_find_sym_tree (parent_vtab
->name
, parent_vtab
->ns
,
402 0, &c
->initializer
->symtree
);
406 c
->ts
.type
= BT_DERIVED
;
407 c
->ts
.u
.derived
= vtype
;
408 c
->initializer
= gfc_get_null_expr (NULL
);
411 /* Add component $def_init. */
412 if (gfc_add_component (vtype
, "$def_init", &c
) == FAILURE
)
415 c
->attr
.access
= ACCESS_PRIVATE
;
416 c
->ts
.type
= BT_DERIVED
;
417 c
->ts
.u
.derived
= derived
;
418 if (derived
->attr
.abstract
)
419 c
->initializer
= NULL
;
422 /* Construct default initialization variable. */
423 sprintf (name
, "def_init$%s", derived
->name
);
424 gfc_get_symbol (name
, ns
, &def_init
);
425 def_init
->attr
.target
= 1;
426 def_init
->attr
.save
= SAVE_EXPLICIT
;
427 def_init
->attr
.access
= ACCESS_PUBLIC
;
428 def_init
->attr
.flavor
= FL_VARIABLE
;
429 gfc_set_sym_referenced (def_init
);
430 def_init
->ts
.type
= BT_DERIVED
;
431 def_init
->ts
.u
.derived
= derived
;
432 def_init
->value
= gfc_default_initializer (&def_init
->ts
);
434 c
->initializer
= gfc_lval_expr_from_sym (def_init
);
437 /* Add procedure pointers for type-bound procedures. */
438 add_procs_to_declared_vtab (derived
, vtype
);
439 vtype
->attr
.vtype
= 1;
442 vtab
->ts
.u
.derived
= vtype
;
443 vtab
->value
= gfc_default_initializer (&vtab
->ts
);
450 /* It is unexpected to have some symbols added at resolution or code
451 generation time. We commit the changes in order to keep a clean state. */
454 gfc_commit_symbol (vtab
);
456 gfc_commit_symbol (vtype
);
458 gfc_commit_symbol (def_init
);
467 /* General worker function to find either a type-bound procedure or a
468 type-bound user operator. */
471 find_typebound_proc_uop (gfc_symbol
* derived
, gfc_try
* t
,
472 const char* name
, bool noaccess
, bool uop
,
478 /* Set correct symbol-root. */
479 gcc_assert (derived
->f2k_derived
);
480 root
= (uop
? derived
->f2k_derived
->tb_uop_root
481 : derived
->f2k_derived
->tb_sym_root
);
483 /* Set default to failure. */
487 /* Try to find it in the current type's namespace. */
488 res
= gfc_find_symtree (root
, name
);
489 if (res
&& res
->n
.tb
&& !res
->n
.tb
->error
)
495 if (!noaccess
&& derived
->attr
.use_assoc
496 && res
->n
.tb
->access
== ACCESS_PRIVATE
)
499 gfc_error ("'%s' of '%s' is PRIVATE at %L",
500 name
, derived
->name
, where
);
508 /* Otherwise, recurse on parent type if derived is an extension. */
509 if (derived
->attr
.extension
)
511 gfc_symbol
* super_type
;
512 super_type
= gfc_get_derived_super_type (derived
);
513 gcc_assert (super_type
);
515 return find_typebound_proc_uop (super_type
, t
, name
,
516 noaccess
, uop
, where
);
524 /* Find a type-bound procedure or user operator by name for a derived-type
525 (looking recursively through the super-types). */
528 gfc_find_typebound_proc (gfc_symbol
* derived
, gfc_try
* t
,
529 const char* name
, bool noaccess
, locus
* where
)
531 return find_typebound_proc_uop (derived
, t
, name
, noaccess
, false, where
);
535 gfc_find_typebound_user_op (gfc_symbol
* derived
, gfc_try
* t
,
536 const char* name
, bool noaccess
, locus
* where
)
538 return find_typebound_proc_uop (derived
, t
, name
, noaccess
, true, where
);
542 /* Find a type-bound intrinsic operator looking recursively through the
543 super-type hierarchy. */
546 gfc_find_typebound_intrinsic_op (gfc_symbol
* derived
, gfc_try
* t
,
547 gfc_intrinsic_op op
, bool noaccess
,
550 gfc_typebound_proc
* res
;
552 /* Set default to failure. */
556 /* Try to find it in the current type's namespace. */
557 if (derived
->f2k_derived
)
558 res
= derived
->f2k_derived
->tb_op
[op
];
563 if (res
&& !res
->error
)
569 if (!noaccess
&& derived
->attr
.use_assoc
570 && res
->access
== ACCESS_PRIVATE
)
573 gfc_error ("'%s' of '%s' is PRIVATE at %L",
574 gfc_op2string (op
), derived
->name
, where
);
582 /* Otherwise, recurse on parent type if derived is an extension. */
583 if (derived
->attr
.extension
)
585 gfc_symbol
* super_type
;
586 super_type
= gfc_get_derived_super_type (derived
);
587 gcc_assert (super_type
);
589 return gfc_find_typebound_intrinsic_op (super_type
, t
, op
,
598 /* Get a typebound-procedure symtree or create and insert it if not yet
599 present. This is like a very simplified version of gfc_get_sym_tree for
600 tbp-symtrees rather than regular ones. */
603 gfc_get_tbp_symtree (gfc_symtree
**root
, const char *name
)
607 result
= gfc_find_symtree (*root
, name
);
610 result
= gfc_new_symtree (root
, name
);