]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/fortran/class.c
re PR fortran/48351 ([OOP] Realloc on assignment fails if parent component is CLASS)
[thirdparty/gcc.git] / gcc / fortran / class.c
1 /* Implementation of Fortran 2003 Polymorphism.
2 Copyright (C) 2009, 2010
3 Free Software Foundation, Inc.
4 Contributed by Paul Richard Thomas <pault@gcc.gnu.org>
5 and Janus Weil <janus@gcc.gnu.org>
6
7 This file is part of GCC.
8
9 GCC is free software; you can redistribute it and/or modify it under
10 the terms of the GNU General Public License as published by the Free
11 Software Foundation; either version 3, or (at your option) any later
12 version.
13
14 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
22
23
24 /* class.c -- This file contains the front end functions needed to service
25 the implementation of Fortran 2003 polymorphism and other
26 object-oriented features. */
27
28
29 /* Outline of the internal representation:
30
31 Each CLASS variable is encapsulated by a class container, which is a
32 structure with two fields:
33 * _data: A pointer to the actual data of the variable. This field has the
34 declared type of the class variable and its attributes
35 (pointer/allocatable/dimension/...).
36 * _vptr: A pointer to the vtable entry (see below) of the dynamic type.
37
38 For each derived type we set up a "vtable" entry, i.e. a structure with the
39 following fields:
40 * _hash: A hash value serving as a unique identifier for this type.
41 * _size: The size in bytes of the derived type.
42 * _extends: A pointer to the vtable entry of the parent derived type.
43 * _def_init: A pointer to a default initialized variable of this type.
44 * _copy: A procedure pointer to a copying procedure.
45 After these follow procedure pointer components for the specific
46 type-bound procedures. */
47
48
49 #include "config.h"
50 #include "system.h"
51 #include "gfortran.h"
52 #include "constructor.h"
53
54
55 /* Insert a reference to the component of the given name.
56 Only to be used with CLASS containers and vtables. */
57
58 void
59 gfc_add_component_ref (gfc_expr *e, const char *name)
60 {
61 gfc_ref **tail = &(e->ref);
62 gfc_ref *next = NULL;
63 gfc_symbol *derived = e->symtree->n.sym->ts.u.derived;
64 while (*tail != NULL)
65 {
66 if ((*tail)->type == REF_COMPONENT)
67 {
68 if (strcmp ((*tail)->u.c.component->name, "_data") == 0
69 && (*tail)->next
70 && (*tail)->next->type == REF_ARRAY
71 && (*tail)->next->next == NULL)
72 return;
73 derived = (*tail)->u.c.component->ts.u.derived;
74 }
75 if ((*tail)->type == REF_ARRAY && (*tail)->next == NULL)
76 break;
77 tail = &((*tail)->next);
78 }
79 if (*tail != NULL && strcmp (name, "_data") == 0)
80 next = *tail;
81 (*tail) = gfc_get_ref();
82 (*tail)->next = next;
83 (*tail)->type = REF_COMPONENT;
84 (*tail)->u.c.sym = derived;
85 (*tail)->u.c.component = gfc_find_component (derived, name, true, true);
86 gcc_assert((*tail)->u.c.component);
87 if (!next)
88 e->ts = (*tail)->u.c.component->ts;
89 }
90
91
92 /* This is used to add both the _data component reference and an array
93 reference to class expressions. Used in translation of intrinsic
94 array inquiry functions. */
95
96 void
97 gfc_add_class_array_ref (gfc_expr *e)
98 {
99 int rank = CLASS_DATA (e)->as->rank;
100 gfc_array_spec *as = CLASS_DATA (e)->as;
101 gfc_ref *ref = NULL;
102 gfc_add_component_ref (e, "_data");
103 e->rank = rank;
104 for (ref = e->ref; ref; ref = ref->next)
105 if (!ref->next)
106 break;
107 if (ref->type != REF_ARRAY)
108 {
109 ref->next = gfc_get_ref ();
110 ref = ref->next;
111 ref->type = REF_ARRAY;
112 ref->u.ar.type = AR_FULL;
113 ref->u.ar.as = as;
114 }
115 }
116
117
118 /* Unfortunately, class array expressions can appear in various conditions;
119 with and without both _data component and an arrayspec. This function
120 deals with that variability. The previous reference to 'ref' is to a
121 class array. */
122
123 static bool
124 class_array_ref_detected (gfc_ref *ref, bool *full_array)
125 {
126 bool no_data = false;
127 bool with_data = false;
128
129 /* An array reference with no _data component. */
130 if (ref && ref->type == REF_ARRAY
131 && !ref->next
132 && ref->u.ar.type != AR_ELEMENT)
133 {
134 if (full_array)
135 *full_array = ref->u.ar.type == AR_FULL;
136 no_data = true;
137 }
138
139 /* Cover cases where _data appears, with or without an array ref. */
140 if (ref && ref->type == REF_COMPONENT
141 && strcmp (ref->u.c.component->name, "_data") == 0)
142 {
143 if (!ref->next)
144 {
145 with_data = true;
146 if (full_array)
147 *full_array = true;
148 }
149 else if (ref->next && ref->next->type == REF_ARRAY
150 && !ref->next->next
151 && ref->type == REF_COMPONENT
152 && ref->next->type == REF_ARRAY
153 && ref->next->u.ar.type != AR_ELEMENT)
154 {
155 with_data = true;
156 if (full_array)
157 *full_array = ref->next->u.ar.type == AR_FULL;
158 }
159 }
160
161 return no_data || with_data;
162 }
163
164
165 /* Returns true if the expression contains a reference to a class
166 array. Notice that class array elements return false. */
167
168 bool
169 gfc_is_class_array_ref (gfc_expr *e, bool *full_array)
170 {
171 gfc_ref *ref;
172
173 if (!e->rank)
174 return false;
175
176 if (full_array)
177 *full_array= false;
178
179 /* Is this a class array object? ie. Is the symbol of type class? */
180 if (e->symtree
181 && e->symtree->n.sym->ts.type == BT_CLASS
182 && CLASS_DATA (e->symtree->n.sym)
183 && CLASS_DATA (e->symtree->n.sym)->attr.dimension
184 && class_array_ref_detected (e->ref, full_array))
185 return true;
186
187 /* Or is this a class array component reference? */
188 for (ref = e->ref; ref; ref = ref->next)
189 {
190 if (ref->type == REF_COMPONENT
191 && ref->u.c.component->ts.type == BT_CLASS
192 && CLASS_DATA (ref->u.c.component)->attr.dimension
193 && class_array_ref_detected (ref->next, full_array))
194 return true;
195 }
196
197 return false;
198 }
199
200
201 /* Returns true if the expression is a reference to a class
202 scalar. This function is necessary because such expressions
203 can be dressed with a reference to the _data component and so
204 have a type other than BT_CLASS. */
205
206 bool
207 gfc_is_class_scalar_expr (gfc_expr *e)
208 {
209 gfc_ref *ref;
210
211 if (e->rank)
212 return false;
213
214 /* Is this a class object? */
215 if (e->symtree
216 && e->symtree->n.sym->ts.type == BT_CLASS
217 && CLASS_DATA (e->symtree->n.sym)
218 && !CLASS_DATA (e->symtree->n.sym)->attr.dimension
219 && (e->ref == NULL
220 || (strcmp (e->ref->u.c.component->name, "_data") == 0
221 && e->ref->next == NULL)))
222 return true;
223
224 /* Or is the final reference BT_CLASS or _data? */
225 for (ref = e->ref; ref; ref = ref->next)
226 {
227 if (ref->type == REF_COMPONENT
228 && ref->u.c.component->ts.type == BT_CLASS
229 && CLASS_DATA (ref->u.c.component)
230 && !CLASS_DATA (ref->u.c.component)->attr.dimension
231 && (ref->next == NULL
232 || (strcmp (ref->next->u.c.component->name, "_data") == 0
233 && ref->next->next == NULL)))
234 return true;
235 }
236
237 return false;
238 }
239
240
241 /* Build a NULL initializer for CLASS pointers,
242 initializing the _data component to NULL and
243 the _vptr component to the declared type. */
244
245 gfc_expr *
246 gfc_class_null_initializer (gfc_typespec *ts)
247 {
248 gfc_expr *init;
249 gfc_component *comp;
250
251 init = gfc_get_structure_constructor_expr (ts->type, ts->kind,
252 &ts->u.derived->declared_at);
253 init->ts = *ts;
254
255 for (comp = ts->u.derived->components; comp; comp = comp->next)
256 {
257 gfc_constructor *ctor = gfc_constructor_get();
258 if (strcmp (comp->name, "_vptr") == 0)
259 ctor->expr = gfc_lval_expr_from_sym (gfc_find_derived_vtab (ts->u.derived));
260 else
261 ctor->expr = gfc_get_null_expr (NULL);
262 gfc_constructor_append (&init->value.constructor, ctor);
263 }
264
265 return init;
266 }
267
268
269 /* Create a unique string identifier for a derived type, composed of its name
270 and module name. This is used to construct unique names for the class
271 containers and vtab symbols. */
272
273 static void
274 get_unique_type_string (char *string, gfc_symbol *derived)
275 {
276 char dt_name[GFC_MAX_SYMBOL_LEN+1];
277 sprintf (dt_name, "%s", derived->name);
278 dt_name[0] = TOUPPER (dt_name[0]);
279 if (derived->module)
280 sprintf (string, "%s_%s", derived->module, dt_name);
281 else if (derived->ns->proc_name)
282 sprintf (string, "%s_%s", derived->ns->proc_name->name, dt_name);
283 else
284 sprintf (string, "_%s", dt_name);
285 }
286
287
288 /* A relative of 'get_unique_type_string' which makes sure the generated
289 string will not be too long (replacing it by a hash string if needed). */
290
291 static void
292 get_unique_hashed_string (char *string, gfc_symbol *derived)
293 {
294 char tmp[2*GFC_MAX_SYMBOL_LEN+2];
295 get_unique_type_string (&tmp[0], derived);
296 /* If string is too long, use hash value in hex representation (allow for
297 extra decoration, cf. gfc_build_class_symbol & gfc_find_derived_vtab). */
298 if (strlen (tmp) > GFC_MAX_SYMBOL_LEN - 11)
299 {
300 int h = gfc_hash_value (derived);
301 sprintf (string, "%X", h);
302 }
303 else
304 strcpy (string, tmp);
305 }
306
307
308 /* Assign a hash value for a derived type. The algorithm is that of SDBM. */
309
310 unsigned int
311 gfc_hash_value (gfc_symbol *sym)
312 {
313 unsigned int hash = 0;
314 char c[2*(GFC_MAX_SYMBOL_LEN+1)];
315 int i, len;
316
317 get_unique_type_string (&c[0], sym);
318 len = strlen (c);
319
320 for (i = 0; i < len; i++)
321 hash = (hash << 6) + (hash << 16) - hash + c[i];
322
323 /* Return the hash but take the modulus for the sake of module read,
324 even though this slightly increases the chance of collision. */
325 return (hash % 100000000);
326 }
327
328
329 /* Build a polymorphic CLASS entity, using the symbol that comes from
330 build_sym. A CLASS entity is represented by an encapsulating type,
331 which contains the declared type as '_data' component, plus a pointer
332 component '_vptr' which determines the dynamic type. */
333
334 gfc_try
335 gfc_build_class_symbol (gfc_typespec *ts, symbol_attribute *attr,
336 gfc_array_spec **as, bool delayed_vtab)
337 {
338 char name[GFC_MAX_SYMBOL_LEN+1], tname[GFC_MAX_SYMBOL_LEN+1];
339 gfc_symbol *fclass;
340 gfc_symbol *vtab;
341 gfc_component *c;
342
343 if (as && *as && (*as)->type == AS_ASSUMED_SIZE)
344 {
345 gfc_error ("Assumed size polymorphic objects or components, such "
346 "as that at %C, have not yet been implemented");
347 return FAILURE;
348 }
349
350 if (attr->class_ok)
351 /* Class container has already been built. */
352 return SUCCESS;
353
354 attr->class_ok = attr->dummy || attr->pointer || attr->allocatable
355 || attr->select_type_temporary;
356
357 if (!attr->class_ok)
358 /* We can not build the class container yet. */
359 return SUCCESS;
360
361 /* Determine the name of the encapsulating type. */
362 get_unique_hashed_string (tname, ts->u.derived);
363 if ((*as) && (*as)->rank && attr->allocatable)
364 sprintf (name, "__class_%s_%d_a", tname, (*as)->rank);
365 else if ((*as) && (*as)->rank)
366 sprintf (name, "__class_%s_%d", tname, (*as)->rank);
367 else if (attr->pointer)
368 sprintf (name, "__class_%s_p", tname);
369 else if (attr->allocatable)
370 sprintf (name, "__class_%s_a", tname);
371 else
372 sprintf (name, "__class_%s", tname);
373
374 gfc_find_symbol (name, ts->u.derived->ns, 0, &fclass);
375 if (fclass == NULL)
376 {
377 gfc_symtree *st;
378 /* If not there, create a new symbol. */
379 fclass = gfc_new_symbol (name, ts->u.derived->ns);
380 st = gfc_new_symtree (&ts->u.derived->ns->sym_root, name);
381 st->n.sym = fclass;
382 gfc_set_sym_referenced (fclass);
383 fclass->refs++;
384 fclass->ts.type = BT_UNKNOWN;
385 fclass->attr.abstract = ts->u.derived->attr.abstract;
386 if (ts->u.derived->f2k_derived)
387 fclass->f2k_derived = gfc_get_namespace (NULL, 0);
388 if (gfc_add_flavor (&fclass->attr, FL_DERIVED,
389 NULL, &gfc_current_locus) == FAILURE)
390 return FAILURE;
391
392 /* Add component '_data'. */
393 if (gfc_add_component (fclass, "_data", &c) == FAILURE)
394 return FAILURE;
395 c->ts = *ts;
396 c->ts.type = BT_DERIVED;
397 c->attr.access = ACCESS_PRIVATE;
398 c->ts.u.derived = ts->u.derived;
399 c->attr.class_pointer = attr->pointer;
400 c->attr.pointer = attr->pointer || (attr->dummy && !attr->allocatable)
401 || attr->select_type_temporary;
402 c->attr.allocatable = attr->allocatable;
403 c->attr.dimension = attr->dimension;
404 c->attr.codimension = attr->codimension;
405 c->attr.abstract = ts->u.derived->attr.abstract;
406 c->as = (*as);
407 c->initializer = NULL;
408
409 /* Add component '_vptr'. */
410 if (gfc_add_component (fclass, "_vptr", &c) == FAILURE)
411 return FAILURE;
412 c->ts.type = BT_DERIVED;
413 if (delayed_vtab)
414 c->ts.u.derived = NULL;
415 else
416 {
417 vtab = gfc_find_derived_vtab (ts->u.derived);
418 gcc_assert (vtab);
419 c->ts.u.derived = vtab->ts.u.derived;
420 }
421 c->attr.access = ACCESS_PRIVATE;
422 c->attr.pointer = 1;
423 }
424
425 /* Since the extension field is 8 bit wide, we can only have
426 up to 255 extension levels. */
427 if (ts->u.derived->attr.extension == 255)
428 {
429 gfc_error ("Maximum extension level reached with type '%s' at %L",
430 ts->u.derived->name, &ts->u.derived->declared_at);
431 return FAILURE;
432 }
433
434 fclass->attr.extension = ts->u.derived->attr.extension + 1;
435 fclass->attr.alloc_comp = ts->u.derived->attr.alloc_comp;
436 fclass->attr.is_class = 1;
437 ts->u.derived = fclass;
438 attr->allocatable = attr->pointer = attr->dimension = attr->codimension = 0;
439 (*as) = NULL;
440 return SUCCESS;
441 }
442
443
444 /* Add a procedure pointer component to the vtype
445 to represent a specific type-bound procedure. */
446
447 static void
448 add_proc_comp (gfc_symbol *vtype, const char *name, gfc_typebound_proc *tb)
449 {
450 gfc_component *c;
451
452 if (tb->non_overridable)
453 return;
454
455 c = gfc_find_component (vtype, name, true, true);
456
457 if (c == NULL)
458 {
459 /* Add procedure component. */
460 if (gfc_add_component (vtype, name, &c) == FAILURE)
461 return;
462
463 if (!c->tb)
464 c->tb = XCNEW (gfc_typebound_proc);
465 *c->tb = *tb;
466 c->tb->ppc = 1;
467 c->attr.procedure = 1;
468 c->attr.proc_pointer = 1;
469 c->attr.flavor = FL_PROCEDURE;
470 c->attr.access = ACCESS_PRIVATE;
471 c->attr.external = 1;
472 c->attr.untyped = 1;
473 c->attr.if_source = IFSRC_IFBODY;
474 }
475 else if (c->attr.proc_pointer && c->tb)
476 {
477 *c->tb = *tb;
478 c->tb->ppc = 1;
479 }
480
481 if (tb->u.specific)
482 {
483 c->ts.interface = tb->u.specific->n.sym;
484 if (!tb->deferred)
485 c->initializer = gfc_get_variable_expr (tb->u.specific);
486 }
487 }
488
489
490 /* Add all specific type-bound procedures in the symtree 'st' to a vtype. */
491
492 static void
493 add_procs_to_declared_vtab1 (gfc_symtree *st, gfc_symbol *vtype)
494 {
495 if (!st)
496 return;
497
498 if (st->left)
499 add_procs_to_declared_vtab1 (st->left, vtype);
500
501 if (st->right)
502 add_procs_to_declared_vtab1 (st->right, vtype);
503
504 if (st->n.tb && !st->n.tb->error
505 && !st->n.tb->is_generic && st->n.tb->u.specific)
506 add_proc_comp (vtype, st->name, st->n.tb);
507 }
508
509
510 /* Copy procedure pointers components from the parent type. */
511
512 static void
513 copy_vtab_proc_comps (gfc_symbol *declared, gfc_symbol *vtype)
514 {
515 gfc_component *cmp;
516 gfc_symbol *vtab;
517
518 vtab = gfc_find_derived_vtab (declared);
519
520 for (cmp = vtab->ts.u.derived->components; cmp; cmp = cmp->next)
521 {
522 if (gfc_find_component (vtype, cmp->name, true, true))
523 continue;
524
525 add_proc_comp (vtype, cmp->name, cmp->tb);
526 }
527 }
528
529
530 /* Add procedure pointers for all type-bound procedures to a vtab. */
531
532 static void
533 add_procs_to_declared_vtab (gfc_symbol *derived, gfc_symbol *vtype)
534 {
535 gfc_symbol* super_type;
536
537 super_type = gfc_get_derived_super_type (derived);
538
539 if (super_type && (super_type != derived))
540 {
541 /* Make sure that the PPCs appear in the same order as in the parent. */
542 copy_vtab_proc_comps (super_type, vtype);
543 /* Only needed to get the PPC initializers right. */
544 add_procs_to_declared_vtab (super_type, vtype);
545 }
546
547 if (derived->f2k_derived && derived->f2k_derived->tb_sym_root)
548 add_procs_to_declared_vtab1 (derived->f2k_derived->tb_sym_root, vtype);
549
550 if (derived->f2k_derived && derived->f2k_derived->tb_uop_root)
551 add_procs_to_declared_vtab1 (derived->f2k_derived->tb_uop_root, vtype);
552 }
553
554
555 /* Find (or generate) the symbol for a derived type's vtab. */
556
557 gfc_symbol *
558 gfc_find_derived_vtab (gfc_symbol *derived)
559 {
560 gfc_namespace *ns;
561 gfc_symbol *vtab = NULL, *vtype = NULL, *found_sym = NULL, *def_init = NULL;
562 gfc_symbol *copy = NULL, *src = NULL, *dst = NULL;
563
564 /* Find the top-level namespace (MODULE or PROGRAM). */
565 for (ns = gfc_current_ns; ns; ns = ns->parent)
566 if (!ns->parent)
567 break;
568
569 /* If the type is a class container, use the underlying derived type. */
570 if (derived->attr.is_class)
571 derived = gfc_get_derived_super_type (derived);
572
573 if (ns)
574 {
575 char name[GFC_MAX_SYMBOL_LEN+1], tname[GFC_MAX_SYMBOL_LEN+1];
576
577 get_unique_hashed_string (tname, derived);
578 sprintf (name, "__vtab_%s", tname);
579
580 /* Look for the vtab symbol in various namespaces. */
581 gfc_find_symbol (name, gfc_current_ns, 0, &vtab);
582 if (vtab == NULL)
583 gfc_find_symbol (name, ns, 0, &vtab);
584 if (vtab == NULL)
585 gfc_find_symbol (name, derived->ns, 0, &vtab);
586
587 if (vtab == NULL)
588 {
589 gfc_get_symbol (name, ns, &vtab);
590 vtab->ts.type = BT_DERIVED;
591 if (gfc_add_flavor (&vtab->attr, FL_PARAMETER, NULL,
592 &gfc_current_locus) == FAILURE)
593 goto cleanup;
594 vtab->attr.target = 1;
595 vtab->attr.save = SAVE_IMPLICIT;
596 vtab->attr.vtab = 1;
597 vtab->attr.access = ACCESS_PUBLIC;
598 gfc_set_sym_referenced (vtab);
599 sprintf (name, "__vtype_%s", tname);
600
601 gfc_find_symbol (name, ns, 0, &vtype);
602 if (vtype == NULL)
603 {
604 gfc_component *c;
605 gfc_symbol *parent = NULL, *parent_vtab = NULL;
606
607 gfc_get_symbol (name, ns, &vtype);
608 if (gfc_add_flavor (&vtype->attr, FL_DERIVED,
609 NULL, &gfc_current_locus) == FAILURE)
610 goto cleanup;
611 vtype->attr.access = ACCESS_PUBLIC;
612 vtype->attr.vtype = 1;
613 gfc_set_sym_referenced (vtype);
614
615 /* Add component '_hash'. */
616 if (gfc_add_component (vtype, "_hash", &c) == FAILURE)
617 goto cleanup;
618 c->ts.type = BT_INTEGER;
619 c->ts.kind = 4;
620 c->attr.access = ACCESS_PRIVATE;
621 c->initializer = gfc_get_int_expr (gfc_default_integer_kind,
622 NULL, derived->hash_value);
623
624 /* Add component '_size'. */
625 if (gfc_add_component (vtype, "_size", &c) == FAILURE)
626 goto cleanup;
627 c->ts.type = BT_INTEGER;
628 c->ts.kind = 4;
629 c->attr.access = ACCESS_PRIVATE;
630 /* Remember the derived type in ts.u.derived,
631 so that the correct initializer can be set later on
632 (in gfc_conv_structure). */
633 c->ts.u.derived = derived;
634 c->initializer = gfc_get_int_expr (gfc_default_integer_kind,
635 NULL, 0);
636
637 /* Add component _extends. */
638 if (gfc_add_component (vtype, "_extends", &c) == FAILURE)
639 goto cleanup;
640 c->attr.pointer = 1;
641 c->attr.access = ACCESS_PRIVATE;
642 parent = gfc_get_derived_super_type (derived);
643 if (parent)
644 {
645 parent_vtab = gfc_find_derived_vtab (parent);
646 c->ts.type = BT_DERIVED;
647 c->ts.u.derived = parent_vtab->ts.u.derived;
648 c->initializer = gfc_get_expr ();
649 c->initializer->expr_type = EXPR_VARIABLE;
650 gfc_find_sym_tree (parent_vtab->name, parent_vtab->ns,
651 0, &c->initializer->symtree);
652 }
653 else
654 {
655 c->ts.type = BT_DERIVED;
656 c->ts.u.derived = vtype;
657 c->initializer = gfc_get_null_expr (NULL);
658 }
659
660 if (derived->components == NULL && !derived->attr.zero_comp)
661 {
662 /* At this point an error must have occurred.
663 Prevent further errors on the vtype components. */
664 found_sym = vtab;
665 goto have_vtype;
666 }
667
668 /* Add component _def_init. */
669 if (gfc_add_component (vtype, "_def_init", &c) == FAILURE)
670 goto cleanup;
671 c->attr.pointer = 1;
672 c->attr.access = ACCESS_PRIVATE;
673 c->ts.type = BT_DERIVED;
674 c->ts.u.derived = derived;
675 if (derived->attr.abstract)
676 c->initializer = gfc_get_null_expr (NULL);
677 else
678 {
679 /* Construct default initialization variable. */
680 sprintf (name, "__def_init_%s", tname);
681 gfc_get_symbol (name, ns, &def_init);
682 def_init->attr.target = 1;
683 def_init->attr.save = SAVE_IMPLICIT;
684 def_init->attr.access = ACCESS_PUBLIC;
685 def_init->attr.flavor = FL_PARAMETER;
686 gfc_set_sym_referenced (def_init);
687 def_init->ts.type = BT_DERIVED;
688 def_init->ts.u.derived = derived;
689 def_init->value = gfc_default_initializer (&def_init->ts);
690
691 c->initializer = gfc_lval_expr_from_sym (def_init);
692 }
693
694 /* Add component _copy. */
695 if (gfc_add_component (vtype, "_copy", &c) == FAILURE)
696 goto cleanup;
697 c->attr.proc_pointer = 1;
698 c->attr.access = ACCESS_PRIVATE;
699 c->tb = XCNEW (gfc_typebound_proc);
700 c->tb->ppc = 1;
701 if (derived->attr.abstract)
702 c->initializer = gfc_get_null_expr (NULL);
703 else
704 {
705 /* Set up namespace. */
706 gfc_namespace *sub_ns = gfc_get_namespace (ns, 0);
707 sub_ns->sibling = ns->contained;
708 ns->contained = sub_ns;
709 sub_ns->resolved = 1;
710 /* Set up procedure symbol. */
711 sprintf (name, "__copy_%s", tname);
712 gfc_get_symbol (name, sub_ns, &copy);
713 sub_ns->proc_name = copy;
714 copy->attr.flavor = FL_PROCEDURE;
715 copy->attr.subroutine = 1;
716 copy->attr.if_source = IFSRC_DECL;
717 /* This is elemental so that arrays are automatically
718 treated correctly by the scalarizer. */
719 copy->attr.elemental = 1;
720 if (ns->proc_name->attr.flavor == FL_MODULE)
721 copy->module = ns->proc_name->name;
722 gfc_set_sym_referenced (copy);
723 /* Set up formal arguments. */
724 gfc_get_symbol ("src", sub_ns, &src);
725 src->ts.type = BT_DERIVED;
726 src->ts.u.derived = derived;
727 src->attr.flavor = FL_VARIABLE;
728 src->attr.dummy = 1;
729 src->attr.intent = INTENT_IN;
730 gfc_set_sym_referenced (src);
731 copy->formal = gfc_get_formal_arglist ();
732 copy->formal->sym = src;
733 gfc_get_symbol ("dst", sub_ns, &dst);
734 dst->ts.type = BT_DERIVED;
735 dst->ts.u.derived = derived;
736 dst->attr.flavor = FL_VARIABLE;
737 dst->attr.dummy = 1;
738 dst->attr.intent = INTENT_OUT;
739 gfc_set_sym_referenced (dst);
740 copy->formal->next = gfc_get_formal_arglist ();
741 copy->formal->next->sym = dst;
742 /* Set up code. */
743 sub_ns->code = gfc_get_code ();
744 sub_ns->code->op = EXEC_INIT_ASSIGN;
745 sub_ns->code->expr1 = gfc_lval_expr_from_sym (dst);
746 sub_ns->code->expr2 = gfc_lval_expr_from_sym (src);
747 /* Set initializer. */
748 c->initializer = gfc_lval_expr_from_sym (copy);
749 c->ts.interface = copy;
750 }
751
752 /* Add procedure pointers for type-bound procedures. */
753 add_procs_to_declared_vtab (derived, vtype);
754 }
755
756 have_vtype:
757 vtab->ts.u.derived = vtype;
758 vtab->value = gfc_default_initializer (&vtab->ts);
759 }
760 }
761
762 found_sym = vtab;
763
764 cleanup:
765 /* It is unexpected to have some symbols added at resolution or code
766 generation time. We commit the changes in order to keep a clean state. */
767 if (found_sym)
768 {
769 gfc_commit_symbol (vtab);
770 if (vtype)
771 gfc_commit_symbol (vtype);
772 if (def_init)
773 gfc_commit_symbol (def_init);
774 if (copy)
775 gfc_commit_symbol (copy);
776 if (src)
777 gfc_commit_symbol (src);
778 if (dst)
779 gfc_commit_symbol (dst);
780 }
781 else
782 gfc_undo_symbols ();
783
784 return found_sym;
785 }
786
787
788 /* General worker function to find either a type-bound procedure or a
789 type-bound user operator. */
790
791 static gfc_symtree*
792 find_typebound_proc_uop (gfc_symbol* derived, gfc_try* t,
793 const char* name, bool noaccess, bool uop,
794 locus* where)
795 {
796 gfc_symtree* res;
797 gfc_symtree* root;
798
799 /* Set correct symbol-root. */
800 gcc_assert (derived->f2k_derived);
801 root = (uop ? derived->f2k_derived->tb_uop_root
802 : derived->f2k_derived->tb_sym_root);
803
804 /* Set default to failure. */
805 if (t)
806 *t = FAILURE;
807
808 /* Try to find it in the current type's namespace. */
809 res = gfc_find_symtree (root, name);
810 if (res && res->n.tb && !res->n.tb->error)
811 {
812 /* We found one. */
813 if (t)
814 *t = SUCCESS;
815
816 if (!noaccess && derived->attr.use_assoc
817 && res->n.tb->access == ACCESS_PRIVATE)
818 {
819 if (where)
820 gfc_error ("'%s' of '%s' is PRIVATE at %L",
821 name, derived->name, where);
822 if (t)
823 *t = FAILURE;
824 }
825
826 return res;
827 }
828
829 /* Otherwise, recurse on parent type if derived is an extension. */
830 if (derived->attr.extension)
831 {
832 gfc_symbol* super_type;
833 super_type = gfc_get_derived_super_type (derived);
834 gcc_assert (super_type);
835
836 return find_typebound_proc_uop (super_type, t, name,
837 noaccess, uop, where);
838 }
839
840 /* Nothing found. */
841 return NULL;
842 }
843
844
845 /* Find a type-bound procedure or user operator by name for a derived-type
846 (looking recursively through the super-types). */
847
848 gfc_symtree*
849 gfc_find_typebound_proc (gfc_symbol* derived, gfc_try* t,
850 const char* name, bool noaccess, locus* where)
851 {
852 return find_typebound_proc_uop (derived, t, name, noaccess, false, where);
853 }
854
855 gfc_symtree*
856 gfc_find_typebound_user_op (gfc_symbol* derived, gfc_try* t,
857 const char* name, bool noaccess, locus* where)
858 {
859 return find_typebound_proc_uop (derived, t, name, noaccess, true, where);
860 }
861
862
863 /* Find a type-bound intrinsic operator looking recursively through the
864 super-type hierarchy. */
865
866 gfc_typebound_proc*
867 gfc_find_typebound_intrinsic_op (gfc_symbol* derived, gfc_try* t,
868 gfc_intrinsic_op op, bool noaccess,
869 locus* where)
870 {
871 gfc_typebound_proc* res;
872
873 /* Set default to failure. */
874 if (t)
875 *t = FAILURE;
876
877 /* Try to find it in the current type's namespace. */
878 if (derived->f2k_derived)
879 res = derived->f2k_derived->tb_op[op];
880 else
881 res = NULL;
882
883 /* Check access. */
884 if (res && !res->error)
885 {
886 /* We found one. */
887 if (t)
888 *t = SUCCESS;
889
890 if (!noaccess && derived->attr.use_assoc
891 && res->access == ACCESS_PRIVATE)
892 {
893 if (where)
894 gfc_error ("'%s' of '%s' is PRIVATE at %L",
895 gfc_op2string (op), derived->name, where);
896 if (t)
897 *t = FAILURE;
898 }
899
900 return res;
901 }
902
903 /* Otherwise, recurse on parent type if derived is an extension. */
904 if (derived->attr.extension)
905 {
906 gfc_symbol* super_type;
907 super_type = gfc_get_derived_super_type (derived);
908 gcc_assert (super_type);
909
910 return gfc_find_typebound_intrinsic_op (super_type, t, op,
911 noaccess, where);
912 }
913
914 /* Nothing found. */
915 return NULL;
916 }
917
918
919 /* Get a typebound-procedure symtree or create and insert it if not yet
920 present. This is like a very simplified version of gfc_get_sym_tree for
921 tbp-symtrees rather than regular ones. */
922
923 gfc_symtree*
924 gfc_get_tbp_symtree (gfc_symtree **root, const char *name)
925 {
926 gfc_symtree *result;
927
928 result = gfc_find_symtree (*root, name);
929 if (!result)
930 {
931 result = gfc_new_symtree (root, name);
932 gcc_assert (result);
933 result->n.tb = NULL;
934 }
935
936 return result;
937 }