Branch data Line data Source code
1 : : /* Implementation of Fortran 2003 Polymorphism.
2 : : Copyright (C) 2009-2024 Free Software Foundation, Inc.
3 : : Contributed by Paul Richard Thomas <pault@gcc.gnu.org>
4 : : and Janus Weil <janus@gcc.gnu.org>
5 : :
6 : : This file is part of GCC.
7 : :
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
11 : : version.
12 : :
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
16 : : for more details.
17 : :
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/>. */
21 : :
22 : :
23 : : /* class.cc -- This file contains the front end functions needed to service
24 : : the implementation of Fortran 2003 polymorphism and other
25 : : object-oriented features. */
26 : :
27 : :
28 : : /* Outline of the internal representation:
29 : :
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.
36 : :
37 : : Only for unlimited polymorphic classes:
38 : : * _len: An integer(C_SIZE_T) to store the string length when the unlimited
39 : : polymorphic pointer is used to point to a char array. The '_len'
40 : : component will be zero when no character array is stored in
41 : : '_data'.
42 : :
43 : : For each derived type we set up a "vtable" entry, i.e. a structure with the
44 : : following fields:
45 : : * _hash: A hash value serving as a unique identifier for this type.
46 : : * _size: The size in bytes of the derived type.
47 : : * _extends: A pointer to the vtable entry of the parent derived type.
48 : : * _def_init: A pointer to a default initialized variable of this type.
49 : : * _copy: A procedure pointer to a copying procedure.
50 : : * _final: A procedure pointer to a wrapper function, which frees
51 : : allocatable components and calls FINAL subroutines.
52 : : * _deallocate: A procedure pointer to a deallocation procedure; nonnull
53 : : only for a recursive derived type.
54 : :
55 : : After these follow procedure pointer components for the specific
56 : : type-bound procedures. */
57 : :
58 : :
59 : : #include "config.h"
60 : : #include "system.h"
61 : : #include "coretypes.h"
62 : : #include "gfortran.h"
63 : : #include "constructor.h"
64 : : #include "target-memory.h"
65 : :
66 : : /* Inserts a derived type component reference in a data reference chain.
67 : : TS: base type of the ref chain so far, in which we will pick the component
68 : : REF: the address of the GFC_REF pointer to update
69 : : NAME: name of the component to insert
70 : : Note that component insertion makes sense only if we are at the end of
71 : : the chain (*REF == NULL) or if we are adding a missing "_data" component
72 : : to access the actual contents of a class object. */
73 : :
74 : : static void
75 : 10161 : insert_component_ref (gfc_typespec *ts, gfc_ref **ref, const char * const name)
76 : : {
77 : 10161 : gfc_ref *new_ref;
78 : 10161 : int wcnt, ecnt;
79 : :
80 : 10161 : gcc_assert (ts->type == BT_DERIVED || ts->type == BT_CLASS);
81 : :
82 : 10161 : gfc_find_component (ts->u.derived, name, true, true, &new_ref);
83 : :
84 : 10161 : gfc_get_errors (&wcnt, &ecnt);
85 : 10161 : if (ecnt > 0 && !new_ref)
86 : 1 : return;
87 : 10160 : gcc_assert (new_ref->u.c.component);
88 : :
89 : 10160 : while (new_ref->next)
90 : 0 : new_ref = new_ref->next;
91 : 10160 : new_ref->next = *ref;
92 : :
93 : 10160 : if (new_ref->next)
94 : : {
95 : 10160 : gfc_ref *next = NULL;
96 : :
97 : : /* We need to update the base type in the trailing reference chain to
98 : : that of the new component. */
99 : :
100 : 10160 : gcc_assert (strcmp (name, "_data") == 0);
101 : :
102 : 10160 : if (new_ref->next->type == REF_COMPONENT)
103 : : next = new_ref->next;
104 : 9721 : else if (new_ref->next->type == REF_ARRAY
105 : 9721 : && new_ref->next->next
106 : 1957 : && new_ref->next->next->type == REF_COMPONENT)
107 : : next = new_ref->next->next;
108 : :
109 : 2327 : if (next != NULL)
110 : : {
111 : 2327 : gcc_assert (new_ref->u.c.component->ts.type == BT_CLASS
112 : : || new_ref->u.c.component->ts.type == BT_DERIVED);
113 : 2327 : next->u.c.sym = new_ref->u.c.component->ts.u.derived;
114 : : }
115 : : }
116 : :
117 : 10160 : *ref = new_ref;
118 : : }
119 : :
120 : :
121 : : /* Tells whether we need to add a "_data" reference to access REF subobject
122 : : from an object of type TS. If FIRST_REF_IN_CHAIN is set, then the base
123 : : object accessed by REF is a variable; in other words it is a full object,
124 : : not a subobject. */
125 : :
126 : : static bool
127 : 1067455 : class_data_ref_missing (gfc_typespec *ts, gfc_ref *ref, bool first_ref_in_chain)
128 : : {
129 : : /* Only class containers may need the "_data" reference. */
130 : 1067455 : if (ts->type != BT_CLASS)
131 : : return false;
132 : :
133 : : /* Accessing a class container with an array reference is certainly wrong. */
134 : 94429 : if (ref->type != REF_COMPONENT)
135 : : return true;
136 : :
137 : : /* Accessing the class container's fields is fine. */
138 : 84707 : if (ref->u.c.component->name[0] == '_')
139 : : return false;
140 : :
141 : : /* At this point we have a class container with a non class container's field
142 : : component reference. We don't want to add the "_data" component if we are
143 : : at the first reference and the symbol's type is an extended derived type.
144 : : In that case, conv_parent_component_references will do the right thing so
145 : : it is not absolutely necessary. Omitting it prevents a regression (see
146 : : class_41.f03) in the interface mapping mechanism. When evaluating string
147 : : lengths depending on dummy arguments, we create a fake symbol with a type
148 : : equal to that of the dummy type. However, because of type extension,
149 : : the backend type (corresponding to the actual argument) can have a
150 : : different (extended) type. Adding the "_data" component explicitly, using
151 : : the base type, confuses the gfc_conv_component_ref code which deals with
152 : : the extended type. */
153 : 11859 : if (first_ref_in_chain && ts->u.derived->attr.extension)
154 : 11420 : return false;
155 : :
156 : : /* We have a class container with a non class container's field component
157 : : reference that doesn't fall into the above. */
158 : : return true;
159 : : }
160 : :
161 : :
162 : : /* Browse through a data reference chain and add the missing "_data" references
163 : : when a subobject of a class object is accessed without it.
164 : : Note that it doesn't add the "_data" reference when the class container
165 : : is the last element in the reference chain. */
166 : :
167 : : void
168 : 3344522 : gfc_fix_class_refs (gfc_expr *e)
169 : : {
170 : 3344522 : gfc_typespec *ts;
171 : 3344522 : gfc_ref **ref;
172 : :
173 : 3344522 : if ((e->expr_type != EXPR_VARIABLE
174 : 1624301 : && e->expr_type != EXPR_FUNCTION)
175 : 1978402 : || (e->expr_type == EXPR_FUNCTION
176 : 258181 : && e->value.function.isym != NULL))
177 : : return;
178 : :
179 : 1767335 : if (e->expr_type == EXPR_VARIABLE)
180 : 1720221 : ts = &e->symtree->n.sym->ts;
181 : : else
182 : : {
183 : 47114 : gfc_symbol *func;
184 : :
185 : 47114 : gcc_assert (e->expr_type == EXPR_FUNCTION);
186 : 47114 : if (e->value.function.esym != NULL)
187 : : func = e->value.function.esym;
188 : : else
189 : 1400 : func = e->symtree->n.sym;
190 : :
191 : 47114 : if (func->result != NULL)
192 : 46025 : ts = &func->result->ts;
193 : : else
194 : 1089 : ts = &func->ts;
195 : : }
196 : :
197 : 2834790 : for (ref = &e->ref; *ref != NULL; ref = &(*ref)->next)
198 : : {
199 : 1067455 : if (class_data_ref_missing (ts, *ref, ref == &e->ref))
200 : 10161 : insert_component_ref (ts, ref, "_data");
201 : :
202 : 1067455 : if ((*ref)->type == REF_COMPONENT)
203 : 216980 : ts = &(*ref)->u.c.component->ts;
204 : : }
205 : : }
206 : :
207 : :
208 : : /* Insert a reference to the component of the given name.
209 : : Only to be used with CLASS containers and vtables. */
210 : :
211 : : void
212 : 53122 : gfc_add_component_ref (gfc_expr *e, const char *name)
213 : : {
214 : 53122 : gfc_component *c;
215 : 53122 : gfc_ref **tail = &(e->ref);
216 : 53122 : gfc_ref *ref, *next = NULL;
217 : 53122 : gfc_symbol *derived = e->symtree->n.sym->ts.u.derived;
218 : 75480 : while (*tail != NULL)
219 : : {
220 : 35325 : if ((*tail)->type == REF_COMPONENT)
221 : : {
222 : 21512 : if (strcmp ((*tail)->u.c.component->name, "_data") == 0
223 : 1250 : && (*tail)->next
224 : 1250 : && (*tail)->next->type == REF_ARRAY
225 : 1166 : && (*tail)->next->next == NULL)
226 : : return;
227 : 20604 : derived = (*tail)->u.c.component->ts.u.derived;
228 : : }
229 : 34417 : if ((*tail)->type == REF_ARRAY && (*tail)->next == NULL)
230 : : break;
231 : 22358 : tail = &((*tail)->next);
232 : : }
233 : 52214 : if (derived && derived->components && derived->components->next &&
234 : 52208 : derived->components->next->ts.type == BT_DERIVED &&
235 : 40564 : derived->components->next->ts.u.derived == NULL)
236 : : {
237 : : /* Fix up missing vtype. */
238 : 19 : gfc_symbol *vtab = gfc_find_derived_vtab (derived->components->ts.u.derived);
239 : 19 : gcc_assert (vtab);
240 : 19 : derived->components->next->ts.u.derived = vtab->ts.u.derived;
241 : : }
242 : 52214 : if (*tail != NULL && strcmp (name, "_data") == 0)
243 : : next = *tail;
244 : : else
245 : : /* Avoid losing memory. */
246 : 45279 : gfc_free_ref_list (*tail);
247 : 52214 : c = gfc_find_component (derived, name, true, true, tail);
248 : :
249 : 52214 : if (c) {
250 : 52207 : for (ref = *tail; ref->next; ref = ref->next)
251 : : ;
252 : 52207 : ref->next = next;
253 : 52207 : if (!next)
254 : 45272 : e->ts = c->ts;
255 : : }
256 : : }
257 : :
258 : :
259 : : /* This is used to add both the _data component reference and an array
260 : : reference to class expressions. Used in translation of intrinsic
261 : : array inquiry functions. */
262 : :
263 : : void
264 : 4039 : gfc_add_class_array_ref (gfc_expr *e)
265 : : {
266 : 4039 : int rank = CLASS_DATA (e)->as->rank;
267 : 4039 : int corank = CLASS_DATA (e)->as->corank;
268 : 4039 : gfc_array_spec *as = CLASS_DATA (e)->as;
269 : 4039 : gfc_ref *ref = NULL;
270 : 4039 : gfc_add_data_component (e);
271 : 4039 : e->rank = rank;
272 : 4039 : e->corank = corank;
273 : 7841 : for (ref = e->ref; ref; ref = ref->next)
274 : 7841 : if (!ref->next)
275 : : break;
276 : 4039 : if (ref->type != REF_ARRAY)
277 : : {
278 : 923 : ref->next = gfc_get_ref ();
279 : 923 : ref = ref->next;
280 : 923 : ref->type = REF_ARRAY;
281 : 923 : ref->u.ar.type = AR_FULL;
282 : 923 : ref->u.ar.as = as;
283 : : }
284 : 4039 : }
285 : :
286 : :
287 : : /* Unfortunately, class array expressions can appear in various conditions;
288 : : with and without both _data component and an arrayspec. This function
289 : : deals with that variability. The previous reference to 'ref' is to a
290 : : class array. */
291 : :
292 : : static bool
293 : 6482 : class_array_ref_detected (gfc_ref *ref, bool *full_array)
294 : : {
295 : 6482 : bool no_data = false;
296 : 6482 : bool with_data = false;
297 : :
298 : : /* An array reference with no _data component. */
299 : 6482 : if (ref && ref->type == REF_ARRAY
300 : 444 : && !ref->next
301 : 444 : && ref->u.ar.type != AR_ELEMENT)
302 : : {
303 : 444 : if (full_array)
304 : 444 : *full_array = ref->u.ar.type == AR_FULL;
305 : 444 : no_data = true;
306 : : }
307 : :
308 : : /* Cover cases where _data appears, with or without an array ref. */
309 : 6901 : if (ref && ref->type == REF_COMPONENT
310 : 6013 : && strcmp (ref->u.c.component->name, "_data") == 0)
311 : : {
312 : 6007 : if (!ref->next)
313 : : {
314 : 0 : with_data = true;
315 : 0 : if (full_array)
316 : 0 : *full_array = true;
317 : : }
318 : 6007 : else if (ref->next && ref->next->type == REF_ARRAY
319 : : && ref->type == REF_COMPONENT
320 : 6007 : && ref->next->u.ar.type != AR_ELEMENT)
321 : : {
322 : 5779 : with_data = true;
323 : 5779 : if (full_array)
324 : 2624 : *full_array = ref->next->u.ar.type == AR_FULL;
325 : : }
326 : : }
327 : :
328 : 6482 : return no_data || with_data;
329 : : }
330 : :
331 : :
332 : : /* Returns true if the expression contains a reference to a class
333 : : array. Notice that class array elements return false. */
334 : :
335 : : bool
336 : 225494 : gfc_is_class_array_ref (gfc_expr *e, bool *full_array)
337 : : {
338 : 225494 : gfc_ref *ref;
339 : :
340 : 225494 : if (!e->rank)
341 : : return false;
342 : :
343 : 193160 : if (full_array)
344 : 3080 : *full_array= false;
345 : :
346 : : /* Is this a class array object? ie. Is the symbol of type class? */
347 : 193160 : if (e->symtree
348 : 156499 : && e->symtree->n.sym->ts.type == BT_CLASS
349 : 6248 : && CLASS_DATA (e->symtree->n.sym)
350 : 6248 : && CLASS_DATA (e->symtree->n.sym)->attr.dimension
351 : 198628 : && class_array_ref_detected (e->ref, full_array))
352 : : return true;
353 : :
354 : : /* Or is this a class array component reference? */
355 : 346230 : for (ref = e->ref; ref; ref = ref->next)
356 : : {
357 : 159293 : if (ref->type == REF_COMPONENT
358 : 13831 : && ref->u.c.component->ts.type == BT_CLASS
359 : 1076 : && CLASS_DATA (ref->u.c.component)->attr.dimension
360 : 160307 : && class_array_ref_detected (ref->next, full_array))
361 : : return true;
362 : : }
363 : :
364 : : return false;
365 : : }
366 : :
367 : :
368 : : /* Returns true if the expression is a reference to a class
369 : : scalar. This function is necessary because such expressions
370 : : can be dressed with a reference to the _data component and so
371 : : have a type other than BT_CLASS. */
372 : :
373 : : bool
374 : 39958 : gfc_is_class_scalar_expr (gfc_expr *e)
375 : : {
376 : 39958 : gfc_ref *ref;
377 : :
378 : 39958 : if (e->rank)
379 : : return false;
380 : :
381 : : /* Is this a class object? */
382 : 33828 : if (e->symtree && e->symtree->n.sym->ts.type == BT_CLASS
383 : 1913 : && CLASS_DATA (e->symtree->n.sym)
384 : 1913 : && !CLASS_DATA (e->symtree->n.sym)->attr.dimension
385 : 1667 : && (e->ref == NULL
386 : 1278 : || (e->ref->type == REF_COMPONENT
387 : 1276 : && strcmp (e->ref->u.c.component->name, "_data") == 0
388 : 991 : && (e->ref->next == NULL
389 : 31 : || (e->ref->next->type == REF_ARRAY
390 : 31 : && e->ref->next->u.ar.codimen > 0
391 : 31 : && e->ref->next->u.ar.dimen == 0
392 : 31 : && e->ref->next->next == NULL)))))
393 : : return true;
394 : :
395 : : /* Or is the final reference BT_CLASS or _data? */
396 : 34972 : for (ref = e->ref; ref; ref = ref->next)
397 : : {
398 : 2961 : if (ref->type == REF_COMPONENT && ref->u.c.component->ts.type == BT_CLASS
399 : 553 : && CLASS_DATA (ref->u.c.component)
400 : 553 : && !CLASS_DATA (ref->u.c.component)->attr.dimension
401 : 487 : && (ref->next == NULL
402 : 355 : || (ref->next->type == REF_COMPONENT
403 : 353 : && strcmp (ref->next->u.c.component->name, "_data") == 0
404 : 353 : && (ref->next->next == NULL
405 : 42 : || (ref->next->next->type == REF_ARRAY
406 : 6 : && ref->next->next->u.ar.codimen > 0
407 : 6 : && ref->next->next->u.ar.dimen == 0
408 : 6 : && ref->next->next->next == NULL)))))
409 : : return true;
410 : : }
411 : :
412 : : return false;
413 : : }
414 : :
415 : :
416 : : /* Tells whether the expression E is a reference to a (scalar) class container.
417 : : Scalar because array class containers usually have an array reference after
418 : : them, and gfc_fix_class_refs will add the missing "_data" component reference
419 : : in that case. */
420 : :
421 : : bool
422 : 1262 : gfc_is_class_container_ref (gfc_expr *e)
423 : : {
424 : 1262 : gfc_ref *ref;
425 : 1262 : bool result;
426 : :
427 : 1262 : if (e->expr_type != EXPR_VARIABLE)
428 : 152 : return e->ts.type == BT_CLASS;
429 : :
430 : 1110 : if (e->symtree->n.sym->ts.type == BT_CLASS)
431 : : result = true;
432 : : else
433 : 888 : result = false;
434 : :
435 : 2409 : for (ref = e->ref; ref; ref = ref->next)
436 : : {
437 : 1299 : if (ref->type != REF_COMPONENT)
438 : : result = false;
439 : 289 : else if (ref->u.c.component->ts.type == BT_CLASS)
440 : : result = true;
441 : : else
442 : 1299 : result = false;
443 : : }
444 : :
445 : : return result;
446 : : }
447 : :
448 : :
449 : : /* Build an initializer for CLASS pointers,
450 : : initializing the _data component to the init_expr (or NULL) and the _vptr
451 : : component to the corresponding type (or the declared type, given by ts). */
452 : :
453 : : gfc_expr *
454 : 3032 : gfc_class_initializer (gfc_typespec *ts, gfc_expr *init_expr)
455 : : {
456 : 3032 : gfc_expr *init;
457 : 3032 : gfc_component *comp;
458 : 3032 : gfc_symbol *vtab = NULL;
459 : :
460 : 3032 : if (init_expr && init_expr->expr_type != EXPR_NULL)
461 : 1508 : vtab = gfc_find_vtab (&init_expr->ts);
462 : : else
463 : 1524 : vtab = gfc_find_vtab (ts);
464 : :
465 : 6064 : init = gfc_get_structure_constructor_expr (ts->type, ts->kind,
466 : 3032 : &ts->u.derived->declared_at);
467 : 3032 : init->ts = *ts;
468 : :
469 : 9528 : for (comp = ts->u.derived->components; comp; comp = comp->next)
470 : : {
471 : 6496 : gfc_constructor *ctor = gfc_constructor_get();
472 : 6496 : if (strcmp (comp->name, "_vptr") == 0 && vtab)
473 : 3032 : ctor->expr = gfc_lval_expr_from_sym (vtab);
474 : 3464 : else if (init_expr && init_expr->expr_type != EXPR_NULL)
475 : 1712 : ctor->expr = gfc_copy_expr (init_expr);
476 : : else
477 : 1752 : ctor->expr = gfc_get_null_expr (NULL);
478 : 6496 : gfc_constructor_append (&init->value.constructor, ctor);
479 : : }
480 : :
481 : 3032 : return init;
482 : : }
483 : :
484 : :
485 : : /* Create a unique string identifier for a derived type, composed of its name
486 : : and module name. This is used to construct unique names for the class
487 : : containers and vtab symbols. */
488 : :
489 : : static char *
490 : 93256 : get_unique_type_string (gfc_symbol *derived)
491 : : {
492 : 93256 : const char *dt_name;
493 : 93256 : char *string;
494 : 93256 : size_t len;
495 : 93256 : if (derived->attr.unlimited_polymorphic)
496 : : dt_name = "STAR";
497 : : else
498 : 87140 : dt_name = gfc_dt_upper_string (derived->name);
499 : 93256 : len = strlen (dt_name) + 2;
500 : 93256 : if (derived->attr.unlimited_polymorphic)
501 : : {
502 : 6116 : string = XNEWVEC (char, len);
503 : 6116 : sprintf (string, "_%s", dt_name);
504 : : }
505 : 87140 : else if (derived->module)
506 : : {
507 : 34488 : string = XNEWVEC (char, strlen (derived->module) + len);
508 : 34488 : sprintf (string, "%s_%s", derived->module, dt_name);
509 : : }
510 : 52652 : else if (derived->ns->proc_name)
511 : : {
512 : 51874 : string = XNEWVEC (char, strlen (derived->ns->proc_name->name) + len);
513 : 51874 : sprintf (string, "%s_%s", derived->ns->proc_name->name, dt_name);
514 : : }
515 : : else
516 : : {
517 : 778 : string = XNEWVEC (char, len);
518 : 778 : sprintf (string, "_%s", dt_name);
519 : : }
520 : 93256 : return string;
521 : : }
522 : :
523 : :
524 : : /* A relative of 'get_unique_type_string' which makes sure the generated
525 : : string will not be too long (replacing it by a hash string if needed). */
526 : :
527 : : static void
528 : 80889 : get_unique_hashed_string (char *string, gfc_symbol *derived)
529 : : {
530 : : /* Provide sufficient space to hold "symbol.symbol_symbol". */
531 : 80889 : char *tmp;
532 : 80889 : tmp = get_unique_type_string (derived);
533 : : /* If string is too long, use hash value in hex representation (allow for
534 : : extra decoration, cf. gfc_build_class_symbol & gfc_find_derived_vtab).
535 : : We need space to for 15 characters "__class_" + symbol name + "_%d_%da",
536 : : where %d is the (co)rank which can be up to n = 15. */
537 : 80889 : if (strlen (tmp) > GFC_MAX_SYMBOL_LEN - 15)
538 : : {
539 : 133 : int h = gfc_hash_value (derived);
540 : 133 : sprintf (string, "%X", h);
541 : : }
542 : : else
543 : 80756 : strcpy (string, tmp);
544 : 80889 : free (tmp);
545 : 80889 : }
546 : :
547 : :
548 : : /* Assign a hash value for a derived type. The algorithm is that of SDBM. */
549 : :
550 : : unsigned int
551 : 12367 : gfc_hash_value (gfc_symbol *sym)
552 : : {
553 : 12367 : unsigned int hash = 0;
554 : : /* Provide sufficient space to hold "symbol.symbol_symbol". */
555 : 12367 : char *c;
556 : 12367 : int i, len;
557 : :
558 : 12367 : c = get_unique_type_string (sym);
559 : 12367 : len = strlen (c);
560 : :
561 : 172861 : for (i = 0; i < len; i++)
562 : 160494 : hash = (hash << 6) + (hash << 16) - hash + c[i];
563 : :
564 : 12367 : free (c);
565 : : /* Return the hash but take the modulus for the sake of module read,
566 : : even though this slightly increases the chance of collision. */
567 : 12367 : return (hash % 100000000);
568 : : }
569 : :
570 : :
571 : : /* Assign a hash value for an intrinsic type. The algorithm is that of SDBM. */
572 : :
573 : : unsigned int
574 : 777 : gfc_intrinsic_hash_value (gfc_typespec *ts)
575 : : {
576 : 777 : unsigned int hash = 0;
577 : 777 : const char *c = gfc_typename (ts, true);
578 : 777 : int i, len;
579 : :
580 : 777 : len = strlen (c);
581 : :
582 : 8463 : for (i = 0; i < len; i++)
583 : 7686 : hash = (hash << 6) + (hash << 16) - hash + c[i];
584 : :
585 : : /* Return the hash but take the modulus for the sake of module read,
586 : : even though this slightly increases the chance of collision. */
587 : 777 : return (hash % 100000000);
588 : : }
589 : :
590 : :
591 : : /* Get the _len component from a class/derived object storing a string.
592 : : For unlimited polymorphic entities a ref to the _data component is available
593 : : while a ref to the _len component is needed. This routine traverese the
594 : : ref-chain and strips the last ref to a _data from it replacing it with a
595 : : ref to the _len component. */
596 : :
597 : : gfc_expr *
598 : 367 : gfc_get_len_component (gfc_expr *e, int k)
599 : : {
600 : 367 : gfc_expr *ptr;
601 : 367 : gfc_ref *ref, **last;
602 : :
603 : 367 : ptr = gfc_copy_expr (e);
604 : :
605 : : /* We need to remove the last _data component ref from ptr. */
606 : 367 : last = &(ptr->ref);
607 : 367 : ref = ptr->ref;
608 : 367 : while (ref)
609 : : {
610 : 367 : if (!ref->next
611 : 367 : && ref->type == REF_COMPONENT
612 : 367 : && strcmp ("_data", ref->u.c.component->name)== 0)
613 : : {
614 : 367 : gfc_free_ref_list (ref);
615 : 367 : *last = NULL;
616 : 367 : break;
617 : : }
618 : 0 : last = &(ref->next);
619 : 0 : ref = ref->next;
620 : : }
621 : : /* And replace if with a ref to the _len component. */
622 : 367 : gfc_add_len_component (ptr);
623 : 367 : if (k != ptr->ts.kind)
624 : : {
625 : 367 : gfc_typespec ts;
626 : 367 : gfc_clear_ts (&ts);
627 : 367 : ts.type = BT_INTEGER;
628 : 367 : ts.kind = k;
629 : 367 : gfc_convert_type_warn (ptr, &ts, 2, 0);
630 : : }
631 : 367 : return ptr;
632 : : }
633 : :
634 : :
635 : : /* Build a polymorphic CLASS entity, using the symbol that comes from
636 : : build_sym. A CLASS entity is represented by an encapsulating type,
637 : : which contains the declared type as '_data' component, plus a pointer
638 : : component '_vptr' which determines the dynamic type. When this CLASS
639 : : entity is unlimited polymorphic, then also add a component '_len' to
640 : : store the length of string when that is stored in it. */
641 : : static int ctr = 0;
642 : :
643 : : bool
644 : 11812 : gfc_build_class_symbol (gfc_typespec *ts, symbol_attribute *attr,
645 : : gfc_array_spec **as)
646 : : {
647 : 11812 : char tname[GFC_MAX_SYMBOL_LEN+1];
648 : 11812 : char *name;
649 : 11812 : gfc_typespec *orig_ts = ts;
650 : 11812 : gfc_symbol *fclass;
651 : 11812 : gfc_symbol *vtab;
652 : 11812 : gfc_component *c;
653 : 11812 : gfc_namespace *ns;
654 : 11812 : int rank;
655 : :
656 : 11812 : gcc_assert (as);
657 : :
658 : : /* We cannot build the class container now. */
659 : 11812 : if (attr->class_ok && (!ts->u.derived || !ts->u.derived->components))
660 : : return false;
661 : :
662 : : /* Class container has already been built with same name. */
663 : 11811 : if (attr->class_ok
664 : 34 : && ts->u.derived->components->attr.dimension >= attr->dimension
665 : 21 : && ts->u.derived->components->attr.codimension >= attr->codimension
666 : 16 : && ts->u.derived->components->attr.class_pointer >= attr->pointer
667 : 10 : && ts->u.derived->components->attr.allocatable >= attr->allocatable)
668 : : return true;
669 : 11810 : if (attr->class_ok)
670 : : {
671 : 33 : attr->dimension |= ts->u.derived->components->attr.dimension;
672 : 33 : attr->codimension |= ts->u.derived->components->attr.codimension;
673 : 33 : attr->pointer |= ts->u.derived->components->attr.class_pointer;
674 : 33 : attr->allocatable |= ts->u.derived->components->attr.allocatable;
675 : 33 : ts = &ts->u.derived->components->ts;
676 : : }
677 : :
678 : 23620 : attr->class_ok = attr->dummy || attr->pointer || attr->allocatable
679 : 11810 : || attr->select_type_temporary || attr->associate_var;
680 : :
681 : 11810 : if (!attr->class_ok)
682 : : /* We cannot build the class container yet. */
683 : : return true;
684 : :
685 : : /* Determine the name of the encapsulating type. */
686 : 11742 : rank = !(*as) || (*as)->rank == -1 ? GFC_MAX_DIMENSIONS : (*as)->rank;
687 : :
688 : 11742 : if (!ts->u.derived)
689 : : return false;
690 : :
691 : 11737 : get_unique_hashed_string (tname, ts->u.derived);
692 : 11737 : if ((*as) && attr->allocatable)
693 : 1864 : name = xasprintf ("__class_%s_%d_%da", tname, rank, (*as)->corank);
694 : 9873 : else if ((*as) && attr->pointer)
695 : 990 : name = xasprintf ("__class_%s_%d_%dp", tname, rank, (*as)->corank);
696 : 8883 : else if ((*as))
697 : 1072 : name = xasprintf ("__class_%s_%d_%dt", tname, rank, (*as)->corank);
698 : 7811 : else if (attr->pointer)
699 : 1670 : name = xasprintf ("__class_%s_p", tname);
700 : 6141 : else if (attr->allocatable)
701 : 2032 : name = xasprintf ("__class_%s_a", tname);
702 : : else
703 : 4109 : name = xasprintf ("__class_%s_t", tname);
704 : :
705 : 11737 : if (ts->u.derived->attr.unlimited_polymorphic)
706 : : {
707 : : /* Find the top-level namespace. */
708 : 4071 : for (ns = gfc_current_ns; ns; ns = ns->parent)
709 : 4071 : if (!ns->parent)
710 : : break;
711 : : }
712 : : else
713 : 9532 : ns = ts->u.derived->ns;
714 : :
715 : : /* Although this might seem to be counterintuitive, we can build separate
716 : : class types with different array specs because the TKR interface checks
717 : : work on the declared type. All array type other than deferred shape or
718 : : assumed rank are added to the function namespace to ensure that they
719 : : are properly distinguished. */
720 : 11737 : if (attr->dummy && (*as)
721 : 1740 : && ((!attr->codimension
722 : 1584 : && !((*as)->type == AS_DEFERRED || (*as)->type == AS_ASSUMED_RANK))
723 : 1505 : || (attr->codimension
724 : 156 : && !((*as)->cotype == AS_DEFERRED
725 : : || (*as)->cotype == AS_ASSUMED_RANK))))
726 : : {
727 : 324 : char *sname;
728 : 324 : ns = gfc_current_ns;
729 : 324 : gfc_find_symbol (name, ns, 0, &fclass);
730 : : /* If a local class type with this name already exists, update the
731 : : name with an index. */
732 : 324 : if (fclass)
733 : : {
734 : 16 : fclass = NULL;
735 : 16 : sname = xasprintf ("%s_%d", name, ++ctr);
736 : 16 : free (name);
737 : 16 : name = sname;
738 : : }
739 : : }
740 : : else
741 : 11413 : gfc_find_symbol (name, ns, 0, &fclass);
742 : :
743 : 11737 : if (fclass == NULL)
744 : : {
745 : 7101 : gfc_symtree *st;
746 : : /* If not there, create a new symbol. */
747 : 7101 : fclass = gfc_new_symbol (name, ns);
748 : 7101 : st = gfc_new_symtree (&ns->sym_root, name);
749 : 7101 : st->n.sym = fclass;
750 : 7101 : gfc_set_sym_referenced (fclass);
751 : 7101 : fclass->refs++;
752 : 7101 : fclass->ts.type = BT_UNKNOWN;
753 : 7101 : if (!ts->u.derived->attr.unlimited_polymorphic)
754 : 5729 : fclass->attr.abstract = ts->u.derived->attr.abstract;
755 : 7101 : fclass->f2k_derived = gfc_get_namespace (NULL, 0);
756 : 7101 : if (!gfc_add_flavor (&fclass->attr, FL_DERIVED, NULL,
757 : : &gfc_current_locus))
758 : : return false;
759 : :
760 : : /* Add component '_data'. */
761 : 7101 : if (!gfc_add_component (fclass, "_data", &c))
762 : : return false;
763 : 7101 : c->ts = *ts;
764 : 7101 : c->ts.type = BT_DERIVED;
765 : 7101 : c->attr.access = ACCESS_PRIVATE;
766 : 7101 : c->ts.u.derived = ts->u.derived;
767 : 7101 : c->attr.class_pointer = attr->pointer;
768 : 5572 : c->attr.pointer = attr->pointer || (attr->dummy && !attr->allocatable)
769 : 9619 : || attr->select_type_temporary;
770 : 7101 : c->attr.allocatable = attr->allocatable;
771 : 7101 : c->attr.dimension = attr->dimension;
772 : 7101 : c->attr.codimension = attr->codimension;
773 : 7101 : c->attr.abstract = fclass->attr.abstract;
774 : 7101 : c->as = (*as);
775 : 7101 : c->initializer = NULL;
776 : :
777 : : /* Add component '_vptr'. */
778 : 7101 : if (!gfc_add_component (fclass, "_vptr", &c))
779 : : return false;
780 : 7101 : c->ts.type = BT_DERIVED;
781 : 7101 : c->attr.access = ACCESS_PRIVATE;
782 : 7101 : c->attr.pointer = 1;
783 : :
784 : 7101 : if (ts->u.derived->attr.unlimited_polymorphic)
785 : : {
786 : 1372 : vtab = gfc_find_derived_vtab (ts->u.derived);
787 : 1372 : gcc_assert (vtab);
788 : 1372 : c->ts.u.derived = vtab->ts.u.derived;
789 : :
790 : : /* Add component '_len'. Only unlimited polymorphic pointers may
791 : : have a string assigned to them, i.e., only those need the _len
792 : : component. */
793 : 1372 : if (!gfc_add_component (fclass, "_len", &c))
794 : : return false;
795 : 1372 : c->ts.type = BT_INTEGER;
796 : 1372 : c->ts.kind = gfc_charlen_int_kind;
797 : 1372 : c->attr.access = ACCESS_PRIVATE;
798 : 1372 : c->attr.artificial = 1;
799 : : }
800 : : else
801 : : /* Build vtab later. */
802 : 5729 : c->ts.u.derived = NULL;
803 : : }
804 : :
805 : 11737 : if (!ts->u.derived->attr.unlimited_polymorphic)
806 : : {
807 : : /* Since the extension field is 8 bit wide, we can only have
808 : : up to 255 extension levels. */
809 : 9532 : if (ts->u.derived->attr.extension == 255)
810 : : {
811 : 0 : gfc_error ("Maximum extension level reached with type %qs at %L",
812 : : ts->u.derived->name, &ts->u.derived->declared_at);
813 : 0 : return false;
814 : : }
815 : :
816 : 9532 : fclass->attr.extension = ts->u.derived->attr.extension + 1;
817 : 9532 : fclass->attr.alloc_comp = ts->u.derived->attr.alloc_comp;
818 : 9532 : fclass->attr.coarray_comp = ts->u.derived->attr.coarray_comp;
819 : : }
820 : :
821 : 11737 : fclass->attr.is_class = 1;
822 : 11737 : orig_ts->u.derived = fclass;
823 : 11737 : attr->allocatable = attr->pointer = attr->dimension = attr->codimension = 0;
824 : 11737 : (*as) = NULL;
825 : 11737 : free (name);
826 : 11737 : return true;
827 : : }
828 : :
829 : :
830 : : /* Change class, using gfc_build_class_symbol. This is needed for associate
831 : : names, when rank changes or a derived type is produced by resolution. */
832 : :
833 : : void
834 : 31 : gfc_change_class (gfc_typespec *ts, symbol_attribute *sym_attr,
835 : : gfc_array_spec *sym_as, int rank, int corank)
836 : : {
837 : 31 : symbol_attribute attr;
838 : 31 : gfc_component *c;
839 : 31 : gfc_array_spec *as = NULL;
840 : 31 : gfc_symbol *der = ts->u.derived;
841 : :
842 : 31 : ts->type = BT_CLASS;
843 : 31 : attr = *sym_attr;
844 : 31 : attr.class_ok = 0;
845 : 31 : attr.associate_var = 1;
846 : 31 : attr.class_pointer = 1;
847 : 31 : attr.allocatable = 0;
848 : 31 : attr.pointer = 1;
849 : 31 : attr.dimension = rank ? 1 : 0;
850 : 31 : if (rank)
851 : : {
852 : 18 : if (sym_as)
853 : 18 : as = gfc_copy_array_spec (sym_as);
854 : : else
855 : : {
856 : 0 : as = gfc_get_array_spec ();
857 : 0 : as->rank = rank;
858 : 0 : as->type = AS_DEFERRED;
859 : 0 : as->corank = corank;
860 : : }
861 : : }
862 : 31 : if (as && as->corank != 0)
863 : 0 : attr.codimension = 1;
864 : :
865 : 31 : if (!gfc_build_class_symbol (ts, &attr, &as))
866 : 0 : gcc_unreachable ();
867 : :
868 : 31 : gfc_set_sym_referenced (ts->u.derived);
869 : :
870 : : /* Make sure the _vptr is set. */
871 : 31 : c = gfc_find_component (ts->u.derived, "_vptr", true, true, NULL);
872 : 31 : if (c->ts.u.derived == NULL)
873 : 18 : c->ts.u.derived = gfc_find_derived_vtab (der);
874 : : /* _vptr now has the _vtab in it, change it to the _vtype. */
875 : 31 : if (c->ts.u.derived->attr.vtab)
876 : 18 : c->ts.u.derived = c->ts.u.derived->ts.u.derived;
877 : 31 : }
878 : :
879 : :
880 : : /* Add a procedure pointer component to the vtype
881 : : to represent a specific type-bound procedure. */
882 : :
883 : : static void
884 : 4310 : add_proc_comp (gfc_symbol *vtype, const char *name, gfc_typebound_proc *tb)
885 : : {
886 : 4310 : gfc_component *c;
887 : :
888 : 4310 : if (tb->non_overridable && !tb->overridden)
889 : 14 : return;
890 : :
891 : 4296 : c = gfc_find_component (vtype, name, true, true, NULL);
892 : :
893 : 4296 : if (c == NULL)
894 : : {
895 : : /* Add procedure component. */
896 : 3064 : if (!gfc_add_component (vtype, name, &c))
897 : : return;
898 : :
899 : 3064 : if (!c->tb)
900 : 3064 : c->tb = XCNEW (gfc_typebound_proc);
901 : 3064 : *c->tb = *tb;
902 : 3064 : c->tb->ppc = 1;
903 : 3064 : c->attr.procedure = 1;
904 : 3064 : c->attr.proc_pointer = 1;
905 : 3064 : c->attr.flavor = FL_PROCEDURE;
906 : 3064 : c->attr.access = ACCESS_PRIVATE;
907 : 3064 : c->attr.external = 1;
908 : 3064 : c->attr.untyped = 1;
909 : 3064 : c->attr.if_source = IFSRC_IFBODY;
910 : : }
911 : 1232 : else if (c->attr.proc_pointer && c->tb)
912 : : {
913 : 1232 : *c->tb = *tb;
914 : 1232 : c->tb->ppc = 1;
915 : : }
916 : :
917 : 4296 : if (tb->u.specific)
918 : : {
919 : 4296 : gfc_symbol *ifc = tb->u.specific->n.sym;
920 : 4296 : c->ts.interface = ifc;
921 : 4296 : if (!tb->deferred)
922 : 3621 : c->initializer = gfc_get_variable_expr (tb->u.specific);
923 : 4296 : c->attr.pure = ifc->attr.pure;
924 : : }
925 : : }
926 : :
927 : :
928 : : /* Add all specific type-bound procedures in the symtree 'st' to a vtype. */
929 : :
930 : : static void
931 : 4212 : add_procs_to_declared_vtab1 (gfc_symtree *st, gfc_symbol *vtype)
932 : : {
933 : 4212 : if (!st)
934 : : return;
935 : :
936 : 4212 : if (st->left)
937 : 1094 : add_procs_to_declared_vtab1 (st->left, vtype);
938 : :
939 : 4212 : if (st->right)
940 : 1031 : add_procs_to_declared_vtab1 (st->right, vtype);
941 : :
942 : 4212 : if (st->n.tb && !st->n.tb->error
943 : 4211 : && !st->n.tb->is_generic && st->n.tb->u.specific)
944 : 3569 : add_proc_comp (vtype, st->name, st->n.tb);
945 : : }
946 : :
947 : :
948 : : /* Copy procedure pointers components from the parent type. */
949 : :
950 : : static void
951 : 1330 : copy_vtab_proc_comps (gfc_symbol *declared, gfc_symbol *vtype)
952 : : {
953 : 1330 : gfc_component *cmp;
954 : 1330 : gfc_symbol *vtab;
955 : :
956 : 1330 : vtab = gfc_find_derived_vtab (declared);
957 : :
958 : 11403 : for (cmp = vtab->ts.u.derived->components; cmp; cmp = cmp->next)
959 : : {
960 : 10073 : if (gfc_find_component (vtype, cmp->name, true, true, NULL))
961 : 9332 : continue;
962 : :
963 : 741 : add_proc_comp (vtype, cmp->name, cmp->tb);
964 : : }
965 : 1330 : }
966 : :
967 : :
968 : : /* Returns true if any of its nonpointer nonallocatable components or
969 : : their nonpointer nonallocatable subcomponents has a finalization
970 : : subroutine. */
971 : :
972 : : static bool
973 : 9044 : has_finalizer_component (gfc_symbol *derived)
974 : : {
975 : 9044 : gfc_component *c;
976 : :
977 : 19295 : for (c = derived->components; c; c = c->next)
978 : 10275 : if (c->ts.type == BT_DERIVED && !c->attr.pointer && !c->attr.allocatable
979 : 1699 : && c->attr.flavor != FL_PROCEDURE)
980 : : {
981 : 1693 : if (c->ts.u.derived->f2k_derived
982 : 1597 : && c->ts.u.derived->f2k_derived->finalizers)
983 : : return true;
984 : :
985 : : /* Stop infinite recursion through this function by inhibiting
986 : : calls when the derived type and that of the component are
987 : : the same. */
988 : 1669 : if (!gfc_compare_derived_types (derived, c->ts.u.derived)
989 : 1669 : && has_finalizer_component (c->ts.u.derived))
990 : : return true;
991 : : }
992 : : return false;
993 : : }
994 : :
995 : :
996 : : static bool
997 : 5682 : comp_is_finalizable (gfc_component *comp)
998 : : {
999 : 5682 : if (comp->attr.proc_pointer)
1000 : : return false;
1001 : 5628 : else if (comp->attr.allocatable && comp->ts.type != BT_CLASS)
1002 : : return true;
1003 : 841 : else if (comp->ts.type == BT_DERIVED && !comp->attr.pointer
1004 : 3663 : && (comp->ts.u.derived->attr.alloc_comp
1005 : 371 : || has_finalizer_component (comp->ts.u.derived)
1006 : 371 : || (comp->ts.u.derived->f2k_derived
1007 : 371 : && comp->ts.u.derived->f2k_derived->finalizers)))
1008 : 509 : return true;
1009 : 2363 : else if (comp->ts.type == BT_CLASS && CLASS_DATA (comp)
1010 : 554 : && CLASS_DATA (comp)->attr.allocatable)
1011 : : return true;
1012 : : else
1013 : : return false;
1014 : : }
1015 : :
1016 : :
1017 : : /* Call DEALLOCATE for the passed component if it is allocatable, if it is
1018 : : neither allocatable nor a pointer but has a finalizer, call it. If it
1019 : : is a nonpointer component with allocatable components or has finalizers, walk
1020 : : them. Either of them is required; other nonallocatables and pointers aren't
1021 : : handled gracefully.
1022 : : Note: If the component is allocatable, the DEALLOCATE handling takes care
1023 : : of calling the appropriate finalizers, coarray deregistering, and
1024 : : deallocation of allocatable subcomponents. */
1025 : :
1026 : : static void
1027 : 2840 : finalize_component (gfc_expr *expr, gfc_symbol *derived, gfc_component *comp,
1028 : : gfc_symbol *stat, gfc_symbol *fini_coarray, gfc_code **code,
1029 : : gfc_namespace *sub_ns)
1030 : : {
1031 : 2840 : gfc_expr *e;
1032 : 2840 : gfc_ref *ref;
1033 : 2840 : gfc_was_finalized *f;
1034 : :
1035 : 2840 : if (!comp_is_finalizable (comp))
1036 : : return;
1037 : :
1038 : : /* If this expression with this component has been finalized
1039 : : already in this namespace, there is nothing to do. */
1040 : 2541 : for (f = sub_ns->was_finalized; f; f = f->next)
1041 : : {
1042 : 529 : if (f->e == expr && f->c == comp)
1043 : : return;
1044 : : }
1045 : :
1046 : 2012 : e = gfc_copy_expr (expr);
1047 : 2012 : if (!e->ref)
1048 : 1779 : e->ref = ref = gfc_get_ref ();
1049 : : else
1050 : : {
1051 : 300 : for (ref = e->ref; ref->next; ref = ref->next)
1052 : : ;
1053 : 233 : ref->next = gfc_get_ref ();
1054 : 233 : ref = ref->next;
1055 : : }
1056 : 2012 : ref->type = REF_COMPONENT;
1057 : 2012 : ref->u.c.sym = derived;
1058 : 2012 : ref->u.c.component = comp;
1059 : 2012 : e->ts = comp->ts;
1060 : :
1061 : 2012 : if (comp->attr.dimension || comp->attr.codimension
1062 : 913 : || (comp->ts.type == BT_CLASS && CLASS_DATA (comp)
1063 : 278 : && (CLASS_DATA (comp)->attr.dimension
1064 : 278 : || CLASS_DATA (comp)->attr.codimension)))
1065 : : {
1066 : 1212 : ref->next = gfc_get_ref ();
1067 : 1212 : ref->next->type = REF_ARRAY;
1068 : 1212 : ref->next->u.ar.dimen = 0;
1069 : 1212 : ref->next->u.ar.as = comp->ts.type == BT_CLASS ? CLASS_DATA (comp)->as
1070 : : : comp->as;
1071 : 1212 : e->rank = ref->next->u.ar.as->rank;
1072 : 1212 : e->corank = ref->next->u.ar.as->corank;
1073 : 1229 : ref->next->u.ar.type = e->rank ? AR_FULL : AR_ELEMENT;
1074 : : }
1075 : :
1076 : : /* Call DEALLOCATE (comp, stat=ignore). */
1077 : 2012 : if (comp->attr.allocatable
1078 : 546 : || (comp->ts.type == BT_CLASS && CLASS_DATA (comp)
1079 : 278 : && CLASS_DATA (comp)->attr.allocatable))
1080 : : {
1081 : 1744 : gfc_code *dealloc, *block = NULL;
1082 : :
1083 : : /* Add IF (fini_coarray). */
1084 : 1744 : if (comp->attr.codimension
1085 : 1730 : || (comp->ts.type == BT_CLASS && CLASS_DATA (comp)
1086 : 278 : && CLASS_DATA (comp)->attr.codimension))
1087 : : {
1088 : 28 : block = gfc_get_code (EXEC_IF);
1089 : 28 : if (*code)
1090 : : {
1091 : 28 : (*code)->next = block;
1092 : 28 : (*code) = (*code)->next;
1093 : : }
1094 : : else
1095 : 0 : (*code) = block;
1096 : :
1097 : 28 : block->block = gfc_get_code (EXEC_IF);
1098 : 28 : block = block->block;
1099 : 28 : block->expr1 = gfc_lval_expr_from_sym (fini_coarray);
1100 : : }
1101 : :
1102 : 1744 : dealloc = gfc_get_code (EXEC_DEALLOCATE);
1103 : :
1104 : 1744 : dealloc->ext.alloc.list = gfc_get_alloc ();
1105 : 1744 : dealloc->ext.alloc.list->expr = e;
1106 : 1744 : dealloc->expr1 = gfc_lval_expr_from_sym (stat);
1107 : :
1108 : 1744 : gfc_code *cond = gfc_get_code (EXEC_IF);
1109 : 1744 : cond->block = gfc_get_code (EXEC_IF);
1110 : 1744 : cond->block->expr1 = gfc_get_expr ();
1111 : 1744 : cond->block->expr1->expr_type = EXPR_FUNCTION;
1112 : 1744 : cond->block->expr1->where = gfc_current_locus;
1113 : 1744 : gfc_get_sym_tree ("associated", sub_ns, &cond->block->expr1->symtree, false);
1114 : 1744 : cond->block->expr1->symtree->n.sym->attr.flavor = FL_PROCEDURE;
1115 : 1744 : cond->block->expr1->symtree->n.sym->attr.intrinsic = 1;
1116 : 1744 : cond->block->expr1->symtree->n.sym->result = cond->block->expr1->symtree->n.sym;
1117 : 1744 : gfc_commit_symbol (cond->block->expr1->symtree->n.sym);
1118 : 1744 : cond->block->expr1->ts.type = BT_LOGICAL;
1119 : 1744 : cond->block->expr1->ts.kind = gfc_default_logical_kind;
1120 : 1744 : cond->block->expr1->value.function.isym = gfc_intrinsic_function_by_id (GFC_ISYM_ASSOCIATED);
1121 : 1744 : cond->block->expr1->value.function.actual = gfc_get_actual_arglist ();
1122 : 1744 : cond->block->expr1->value.function.actual->expr = gfc_copy_expr (expr);
1123 : 1744 : cond->block->expr1->value.function.actual->next = gfc_get_actual_arglist ();
1124 : 1744 : cond->block->next = dealloc;
1125 : :
1126 : 1744 : if (block)
1127 : 28 : block->next = cond;
1128 : 1716 : else if (*code)
1129 : : {
1130 : 1716 : (*code)->next = cond;
1131 : 1716 : (*code) = (*code)->next;
1132 : : }
1133 : : else
1134 : 0 : (*code) = cond;
1135 : :
1136 : : }
1137 : 268 : else if (comp->ts.type == BT_DERIVED
1138 : 268 : && comp->ts.u.derived->f2k_derived
1139 : 268 : && comp->ts.u.derived->f2k_derived->finalizers)
1140 : : {
1141 : : /* Call FINAL_WRAPPER (comp); */
1142 : 58 : gfc_code *final_wrap;
1143 : 58 : gfc_symbol *vtab, *byte_stride;
1144 : 58 : gfc_expr *scalar, *size_expr, *fini_coarray_expr;
1145 : 58 : gfc_component *c;
1146 : :
1147 : 58 : vtab = gfc_find_derived_vtab (comp->ts.u.derived);
1148 : 348 : for (c = vtab->ts.u.derived->components; c; c = c->next)
1149 : 348 : if (strcmp (c->name, "_final") == 0)
1150 : : break;
1151 : :
1152 : 58 : gcc_assert (c);
1153 : :
1154 : : /* Set scalar argument for storage_size. */
1155 : 58 : gfc_get_symbol ("comp_byte_stride", sub_ns, &byte_stride);
1156 : 58 : byte_stride->ts = e->ts;
1157 : 58 : byte_stride->attr.flavor = FL_VARIABLE;
1158 : 58 : byte_stride->attr.value = 1;
1159 : 58 : byte_stride->attr.artificial = 1;
1160 : 58 : gfc_set_sym_referenced (byte_stride);
1161 : 58 : gfc_commit_symbol (byte_stride);
1162 : 58 : scalar = gfc_lval_expr_from_sym (byte_stride);
1163 : :
1164 : 58 : final_wrap = gfc_get_code (EXEC_CALL);
1165 : 58 : final_wrap->symtree = c->initializer->symtree;
1166 : 58 : final_wrap->resolved_sym = c->initializer->symtree->n.sym;
1167 : 58 : final_wrap->ext.actual = gfc_get_actual_arglist ();
1168 : 58 : final_wrap->ext.actual->expr = e;
1169 : :
1170 : : /* size_expr = STORAGE_SIZE (...) / NUMERIC_STORAGE_SIZE. */
1171 : 58 : size_expr = gfc_get_expr ();
1172 : 58 : size_expr->where = gfc_current_locus;
1173 : 58 : size_expr->expr_type = EXPR_OP;
1174 : 58 : size_expr->value.op.op = INTRINSIC_DIVIDE;
1175 : :
1176 : : /* STORAGE_SIZE (array,kind=c_intptr_t). */
1177 : 58 : size_expr->value.op.op1
1178 : 58 : = gfc_build_intrinsic_call (sub_ns, GFC_ISYM_STORAGE_SIZE,
1179 : : "storage_size", gfc_current_locus, 2,
1180 : : scalar,
1181 : : gfc_get_int_expr (gfc_index_integer_kind,
1182 : : NULL, 0));
1183 : :
1184 : : /* NUMERIC_STORAGE_SIZE. */
1185 : 58 : size_expr->value.op.op2 = gfc_get_int_expr (gfc_index_integer_kind, NULL,
1186 : : gfc_character_storage_size);
1187 : 58 : size_expr->value.op.op1->ts = size_expr->value.op.op2->ts;
1188 : 58 : size_expr->ts = size_expr->value.op.op1->ts;
1189 : :
1190 : : /* Which provides the argument 'byte_stride'..... */
1191 : 58 : final_wrap->ext.actual->next = gfc_get_actual_arglist ();
1192 : 58 : final_wrap->ext.actual->next->expr = size_expr;
1193 : :
1194 : : /* ...and last of all the 'fini_coarray' argument. */
1195 : 58 : fini_coarray_expr = gfc_lval_expr_from_sym (fini_coarray);
1196 : 58 : final_wrap->ext.actual->next->next = gfc_get_actual_arglist ();
1197 : 58 : final_wrap->ext.actual->next->next->expr = fini_coarray_expr;
1198 : :
1199 : :
1200 : :
1201 : 58 : if (*code)
1202 : : {
1203 : 58 : (*code)->next = final_wrap;
1204 : 58 : (*code) = (*code)->next;
1205 : : }
1206 : : else
1207 : 0 : (*code) = final_wrap;
1208 : 58 : }
1209 : : else
1210 : : {
1211 : 210 : gfc_component *c;
1212 : :
1213 : 526 : for (c = comp->ts.u.derived->components; c; c = c->next)
1214 : 316 : finalize_component (e, comp->ts.u.derived, c, stat, fini_coarray, code,
1215 : : sub_ns);
1216 : 210 : gfc_free_expr (e);
1217 : : }
1218 : :
1219 : : /* Record that this was finalized already in this namespace. */
1220 : 2012 : f = sub_ns->was_finalized;
1221 : 2012 : sub_ns->was_finalized = XCNEW (gfc_was_finalized);
1222 : 2012 : sub_ns->was_finalized->e = expr;
1223 : 2012 : sub_ns->was_finalized->c = comp;
1224 : 2012 : sub_ns->was_finalized->next = f;
1225 : : }
1226 : :
1227 : :
1228 : : /* Generate code equivalent to
1229 : : CALL C_F_POINTER (TRANSFER (TRANSFER (C_LOC (array, cptr), c_intptr)
1230 : : + offset, c_ptr), ptr). */
1231 : :
1232 : : static gfc_code *
1233 : 1998 : finalization_scalarizer (gfc_symbol *array, gfc_symbol *ptr,
1234 : : gfc_expr *offset, gfc_namespace *sub_ns)
1235 : : {
1236 : 1998 : gfc_code *block;
1237 : 1998 : gfc_expr *expr, *expr2;
1238 : :
1239 : : /* C_F_POINTER(). */
1240 : 1998 : block = gfc_get_code (EXEC_CALL);
1241 : 1998 : gfc_get_sym_tree ("c_f_pointer", sub_ns, &block->symtree, true);
1242 : 1998 : block->resolved_sym = block->symtree->n.sym;
1243 : 1998 : block->resolved_sym->attr.flavor = FL_PROCEDURE;
1244 : 1998 : block->resolved_sym->attr.intrinsic = 1;
1245 : 1998 : block->resolved_sym->attr.subroutine = 1;
1246 : 1998 : block->resolved_sym->from_intmod = INTMOD_ISO_C_BINDING;
1247 : 1998 : block->resolved_sym->intmod_sym_id = ISOCBINDING_F_POINTER;
1248 : 1998 : block->resolved_isym = gfc_intrinsic_subroutine_by_id (GFC_ISYM_C_F_POINTER);
1249 : 1998 : gfc_commit_symbol (block->resolved_sym);
1250 : :
1251 : : /* C_F_POINTER's first argument: TRANSFER ( <addr>, c_intptr_t). */
1252 : 1998 : block->ext.actual = gfc_get_actual_arglist ();
1253 : 1998 : block->ext.actual->next = gfc_get_actual_arglist ();
1254 : 1998 : block->ext.actual->next->expr = gfc_get_int_expr (gfc_index_integer_kind,
1255 : : NULL, 0);
1256 : 1998 : block->ext.actual->next->next = gfc_get_actual_arglist (); /* SIZE. */
1257 : :
1258 : : /* The <addr> part: TRANSFER (C_LOC (array), c_intptr_t). */
1259 : :
1260 : : /* TRANSFER's first argument: C_LOC (array). */
1261 : 1998 : expr = gfc_get_expr ();
1262 : 1998 : expr->expr_type = EXPR_FUNCTION;
1263 : 1998 : gfc_get_sym_tree ("c_loc", sub_ns, &expr->symtree, false);
1264 : 1998 : expr->symtree->n.sym->attr.flavor = FL_PROCEDURE;
1265 : 1998 : expr->symtree->n.sym->intmod_sym_id = ISOCBINDING_LOC;
1266 : 1998 : expr->symtree->n.sym->attr.intrinsic = 1;
1267 : 1998 : expr->symtree->n.sym->from_intmod = INTMOD_ISO_C_BINDING;
1268 : 1998 : expr->value.function.isym = gfc_intrinsic_function_by_id (GFC_ISYM_C_LOC);
1269 : 1998 : expr->value.function.actual = gfc_get_actual_arglist ();
1270 : 1998 : expr->value.function.actual->expr
1271 : 1998 : = gfc_lval_expr_from_sym (array);
1272 : 1998 : expr->symtree->n.sym->result = expr->symtree->n.sym;
1273 : 1998 : gfc_commit_symbol (expr->symtree->n.sym);
1274 : 1998 : expr->ts.type = BT_INTEGER;
1275 : 1998 : expr->ts.kind = gfc_index_integer_kind;
1276 : 1998 : expr->where = gfc_current_locus;
1277 : :
1278 : : /* TRANSFER. */
1279 : 1998 : expr2 = gfc_build_intrinsic_call (sub_ns, GFC_ISYM_TRANSFER, "transfer",
1280 : : gfc_current_locus, 3, expr,
1281 : : gfc_get_int_expr (gfc_index_integer_kind,
1282 : : NULL, 0), NULL);
1283 : 1998 : expr2->ts.type = BT_INTEGER;
1284 : 1998 : expr2->ts.kind = gfc_index_integer_kind;
1285 : :
1286 : : /* <array addr> + <offset>. */
1287 : 1998 : block->ext.actual->expr = gfc_get_expr ();
1288 : 1998 : block->ext.actual->expr->expr_type = EXPR_OP;
1289 : 1998 : block->ext.actual->expr->value.op.op = INTRINSIC_PLUS;
1290 : 1998 : block->ext.actual->expr->value.op.op1 = expr2;
1291 : 1998 : block->ext.actual->expr->value.op.op2 = offset;
1292 : 1998 : block->ext.actual->expr->ts = expr->ts;
1293 : 1998 : block->ext.actual->expr->where = gfc_current_locus;
1294 : :
1295 : : /* C_F_POINTER's 2nd arg: ptr -- and its absent shape=. */
1296 : 1998 : block->ext.actual->next = gfc_get_actual_arglist ();
1297 : 1998 : block->ext.actual->next->expr = gfc_lval_expr_from_sym (ptr);
1298 : 1998 : block->ext.actual->next->next = gfc_get_actual_arglist ();
1299 : :
1300 : 1998 : return block;
1301 : : }
1302 : :
1303 : :
1304 : : /* Calculates the offset to the (idx+1)th element of an array, taking the
1305 : : stride into account. It generates the code:
1306 : : offset = 0
1307 : : do idx2 = 1, rank
1308 : : offset = offset + mod (idx, sizes(idx2)) / sizes(idx2-1) * strides(idx2)
1309 : : end do
1310 : : offset = offset * byte_stride. */
1311 : :
1312 : : static gfc_code*
1313 : 1790 : finalization_get_offset (gfc_symbol *idx, gfc_symbol *idx2, gfc_symbol *offset,
1314 : : gfc_symbol *strides, gfc_symbol *sizes,
1315 : : gfc_symbol *byte_stride, gfc_expr *rank,
1316 : : gfc_code *block, gfc_namespace *sub_ns)
1317 : : {
1318 : 1790 : gfc_iterator *iter;
1319 : 1790 : gfc_expr *expr, *expr2;
1320 : :
1321 : : /* offset = 0. */
1322 : 1790 : block->next = gfc_get_code (EXEC_ASSIGN);
1323 : 1790 : block = block->next;
1324 : 1790 : block->expr1 = gfc_lval_expr_from_sym (offset);
1325 : 1790 : block->expr2 = gfc_get_int_expr (gfc_index_integer_kind, NULL, 0);
1326 : :
1327 : : /* Create loop. */
1328 : 1790 : iter = gfc_get_iterator ();
1329 : 1790 : iter->var = gfc_lval_expr_from_sym (idx2);
1330 : 1790 : iter->start = gfc_get_int_expr (gfc_index_integer_kind, NULL, 1);
1331 : 1790 : iter->end = gfc_copy_expr (rank);
1332 : 1790 : iter->step = gfc_get_int_expr (gfc_index_integer_kind, NULL, 1);
1333 : 1790 : block->next = gfc_get_code (EXEC_DO);
1334 : 1790 : block = block->next;
1335 : 1790 : block->ext.iterator = iter;
1336 : 1790 : block->block = gfc_get_code (EXEC_DO);
1337 : :
1338 : : /* Loop body: offset = offset + mod (idx, sizes(idx2)) / sizes(idx2-1)
1339 : : * strides(idx2). */
1340 : :
1341 : : /* mod (idx, sizes(idx2)). */
1342 : 1790 : expr = gfc_lval_expr_from_sym (sizes);
1343 : 1790 : expr->ref = gfc_get_ref ();
1344 : 1790 : expr->ref->type = REF_ARRAY;
1345 : 1790 : expr->ref->u.ar.as = sizes->as;
1346 : 1790 : expr->ref->u.ar.type = AR_ELEMENT;
1347 : 1790 : expr->ref->u.ar.dimen = 1;
1348 : 1790 : expr->ref->u.ar.dimen_type[0] = DIMEN_ELEMENT;
1349 : 1790 : expr->ref->u.ar.start[0] = gfc_lval_expr_from_sym (idx2);
1350 : 1790 : expr->where = sizes->declared_at;
1351 : :
1352 : 1790 : expr = gfc_build_intrinsic_call (sub_ns, GFC_ISYM_MOD, "mod",
1353 : : gfc_current_locus, 2,
1354 : : gfc_lval_expr_from_sym (idx), expr);
1355 : 1790 : expr->ts = idx->ts;
1356 : :
1357 : : /* (...) / sizes(idx2-1). */
1358 : 1790 : expr2 = gfc_get_expr ();
1359 : 1790 : expr2->expr_type = EXPR_OP;
1360 : 1790 : expr2->value.op.op = INTRINSIC_DIVIDE;
1361 : 1790 : expr2->value.op.op1 = expr;
1362 : 1790 : expr2->value.op.op2 = gfc_lval_expr_from_sym (sizes);
1363 : 1790 : expr2->value.op.op2->ref = gfc_get_ref ();
1364 : 1790 : expr2->value.op.op2->ref->type = REF_ARRAY;
1365 : 1790 : expr2->value.op.op2->ref->u.ar.as = sizes->as;
1366 : 1790 : expr2->value.op.op2->ref->u.ar.type = AR_ELEMENT;
1367 : 1790 : expr2->value.op.op2->ref->u.ar.dimen = 1;
1368 : 1790 : expr2->value.op.op2->ref->u.ar.dimen_type[0] = DIMEN_ELEMENT;
1369 : 1790 : expr2->value.op.op2->ref->u.ar.start[0] = gfc_get_expr ();
1370 : 1790 : expr2->value.op.op2->ref->u.ar.start[0]->expr_type = EXPR_OP;
1371 : 1790 : expr2->value.op.op2->ref->u.ar.start[0]->where = gfc_current_locus;
1372 : 1790 : expr2->value.op.op2->ref->u.ar.start[0]->value.op.op = INTRINSIC_MINUS;
1373 : 1790 : expr2->value.op.op2->ref->u.ar.start[0]->value.op.op1
1374 : 1790 : = gfc_lval_expr_from_sym (idx2);
1375 : 1790 : expr2->value.op.op2->ref->u.ar.start[0]->value.op.op2
1376 : 1790 : = gfc_get_int_expr (gfc_index_integer_kind, NULL, 1);
1377 : 1790 : expr2->value.op.op2->ref->u.ar.start[0]->ts
1378 : 1790 : = expr2->value.op.op2->ref->u.ar.start[0]->value.op.op1->ts;
1379 : 1790 : expr2->ts = idx->ts;
1380 : 1790 : expr2->where = gfc_current_locus;
1381 : :
1382 : : /* ... * strides(idx2). */
1383 : 1790 : expr = gfc_get_expr ();
1384 : 1790 : expr->expr_type = EXPR_OP;
1385 : 1790 : expr->value.op.op = INTRINSIC_TIMES;
1386 : 1790 : expr->value.op.op1 = expr2;
1387 : 1790 : expr->value.op.op2 = gfc_lval_expr_from_sym (strides);
1388 : 1790 : expr->value.op.op2->ref = gfc_get_ref ();
1389 : 1790 : expr->value.op.op2->ref->type = REF_ARRAY;
1390 : 1790 : expr->value.op.op2->ref->u.ar.type = AR_ELEMENT;
1391 : 1790 : expr->value.op.op2->ref->u.ar.dimen = 1;
1392 : 1790 : expr->value.op.op2->ref->u.ar.dimen_type[0] = DIMEN_ELEMENT;
1393 : 1790 : expr->value.op.op2->ref->u.ar.start[0] = gfc_lval_expr_from_sym (idx2);
1394 : 1790 : expr->value.op.op2->ref->u.ar.as = strides->as;
1395 : 1790 : expr->ts = idx->ts;
1396 : 1790 : expr->where = gfc_current_locus;
1397 : :
1398 : : /* offset = offset + ... */
1399 : 1790 : block->block->next = gfc_get_code (EXEC_ASSIGN);
1400 : 1790 : block->block->next->expr1 = gfc_lval_expr_from_sym (offset);
1401 : 1790 : block->block->next->expr2 = gfc_get_expr ();
1402 : 1790 : block->block->next->expr2->expr_type = EXPR_OP;
1403 : 1790 : block->block->next->expr2->value.op.op = INTRINSIC_PLUS;
1404 : 1790 : block->block->next->expr2->value.op.op1 = gfc_lval_expr_from_sym (offset);
1405 : 1790 : block->block->next->expr2->value.op.op2 = expr;
1406 : 1790 : block->block->next->expr2->ts = idx->ts;
1407 : 1790 : block->block->next->expr2->where = gfc_current_locus;
1408 : :
1409 : : /* After the loop: offset = offset * byte_stride. */
1410 : 1790 : block->next = gfc_get_code (EXEC_ASSIGN);
1411 : 1790 : block = block->next;
1412 : 1790 : block->expr1 = gfc_lval_expr_from_sym (offset);
1413 : 1790 : block->expr2 = gfc_get_expr ();
1414 : 1790 : block->expr2->expr_type = EXPR_OP;
1415 : 1790 : block->expr2->value.op.op = INTRINSIC_TIMES;
1416 : 1790 : block->expr2->value.op.op1 = gfc_lval_expr_from_sym (offset);
1417 : 1790 : block->expr2->value.op.op2 = gfc_lval_expr_from_sym (byte_stride);
1418 : 1790 : block->expr2->ts = block->expr2->value.op.op1->ts;
1419 : 1790 : block->expr2->where = gfc_current_locus;
1420 : 1790 : return block;
1421 : : }
1422 : :
1423 : :
1424 : : /* Insert code of the following form:
1425 : :
1426 : : block
1427 : : integer(c_intptr_t) :: i
1428 : :
1429 : : if ((byte_stride == STORAGE_SIZE (array)/NUMERIC_STORAGE_SIZE
1430 : : && (is_contiguous || !final_rank3->attr.contiguous
1431 : : || final_rank3->as->type != AS_ASSUMED_SHAPE))
1432 : : || 0 == STORAGE_SIZE (array)) then
1433 : : call final_rank3 (array)
1434 : : else
1435 : : block
1436 : : integer(c_intptr_t) :: offset, j
1437 : : type(t) :: tmp(shape (array))
1438 : :
1439 : : do i = 0, size (array)-1
1440 : : offset = obtain_offset(i, strides, sizes, byte_stride)
1441 : : addr = transfer (c_loc (array), addr) + offset
1442 : : call c_f_pointer (transfer (addr, cptr), ptr)
1443 : :
1444 : : addr = transfer (c_loc (tmp), addr)
1445 : : + i * STORAGE_SIZE (array)/NUMERIC_STORAGE_SIZE
1446 : : call c_f_pointer (transfer (addr, cptr), ptr2)
1447 : : ptr2 = ptr
1448 : : end do
1449 : : call final_rank3 (tmp)
1450 : : end block
1451 : : end if
1452 : : block */
1453 : :
1454 : : static void
1455 : 113 : finalizer_insert_packed_call (gfc_code *block, gfc_finalizer *fini,
1456 : : gfc_symbol *array, gfc_symbol *byte_stride,
1457 : : gfc_symbol *idx, gfc_symbol *ptr,
1458 : : gfc_symbol *nelem,
1459 : : gfc_symbol *strides, gfc_symbol *sizes,
1460 : : gfc_symbol *idx2, gfc_symbol *offset,
1461 : : gfc_symbol *is_contiguous, gfc_expr *rank,
1462 : : gfc_namespace *sub_ns)
1463 : : {
1464 : 113 : gfc_symbol *tmp_array, *ptr2;
1465 : 113 : gfc_expr *size_expr, *offset2, *expr;
1466 : 113 : gfc_namespace *ns;
1467 : 113 : gfc_iterator *iter;
1468 : 113 : gfc_code *block2;
1469 : 113 : int i;
1470 : :
1471 : 113 : block->next = gfc_get_code (EXEC_IF);
1472 : 113 : block = block->next;
1473 : :
1474 : 113 : block->block = gfc_get_code (EXEC_IF);
1475 : 113 : block = block->block;
1476 : :
1477 : : /* size_expr = STORAGE_SIZE (...) / NUMERIC_STORAGE_SIZE. */
1478 : 113 : size_expr = gfc_get_expr ();
1479 : 113 : size_expr->where = gfc_current_locus;
1480 : 113 : size_expr->expr_type = EXPR_OP;
1481 : 113 : size_expr->value.op.op = INTRINSIC_DIVIDE;
1482 : :
1483 : : /* STORAGE_SIZE (array,kind=c_intptr_t). */
1484 : 113 : size_expr->value.op.op1
1485 : 113 : = gfc_build_intrinsic_call (sub_ns, GFC_ISYM_STORAGE_SIZE,
1486 : : "storage_size", gfc_current_locus, 2,
1487 : : gfc_lval_expr_from_sym (array),
1488 : : gfc_get_int_expr (gfc_index_integer_kind,
1489 : : NULL, 0));
1490 : :
1491 : : /* NUMERIC_STORAGE_SIZE. */
1492 : 113 : size_expr->value.op.op2 = gfc_get_int_expr (gfc_index_integer_kind, NULL,
1493 : : gfc_character_storage_size);
1494 : 113 : size_expr->value.op.op1->ts = size_expr->value.op.op2->ts;
1495 : 113 : size_expr->ts = size_expr->value.op.op1->ts;
1496 : :
1497 : : /* IF condition: (stride == size_expr
1498 : : && ((fini's as->ASSUMED_SIZE && !fini's attr.contiguous)
1499 : : || is_contiguous)
1500 : : || 0 == size_expr. */
1501 : 113 : block->expr1 = gfc_get_expr ();
1502 : 113 : block->expr1->ts.type = BT_LOGICAL;
1503 : 113 : block->expr1->ts.kind = gfc_default_logical_kind;
1504 : 113 : block->expr1->expr_type = EXPR_OP;
1505 : 113 : block->expr1->where = gfc_current_locus;
1506 : :
1507 : 113 : block->expr1->value.op.op = INTRINSIC_OR;
1508 : :
1509 : : /* byte_stride == size_expr */
1510 : 113 : expr = gfc_get_expr ();
1511 : 113 : expr->ts.type = BT_LOGICAL;
1512 : 113 : expr->ts.kind = gfc_default_logical_kind;
1513 : 113 : expr->expr_type = EXPR_OP;
1514 : 113 : expr->where = gfc_current_locus;
1515 : 113 : expr->value.op.op = INTRINSIC_EQ;
1516 : 113 : expr->value.op.op1
1517 : 113 : = gfc_lval_expr_from_sym (byte_stride);
1518 : 113 : expr->value.op.op2 = size_expr;
1519 : :
1520 : : /* If strides aren't allowed (not assumed shape or CONTIGUOUS),
1521 : : add is_contiguous check. */
1522 : :
1523 : 113 : if (fini->proc_tree->n.sym->formal->sym->as->type != AS_ASSUMED_SHAPE
1524 : 93 : || fini->proc_tree->n.sym->formal->sym->attr.contiguous)
1525 : : {
1526 : 26 : gfc_expr *expr2;
1527 : 26 : expr2 = gfc_get_expr ();
1528 : 26 : expr2->ts.type = BT_LOGICAL;
1529 : 26 : expr2->ts.kind = gfc_default_logical_kind;
1530 : 26 : expr2->expr_type = EXPR_OP;
1531 : 26 : expr2->where = gfc_current_locus;
1532 : 26 : expr2->value.op.op = INTRINSIC_AND;
1533 : 26 : expr2->value.op.op1 = expr;
1534 : 26 : expr2->value.op.op2 = gfc_lval_expr_from_sym (is_contiguous);
1535 : 26 : expr = expr2;
1536 : : }
1537 : :
1538 : 113 : block->expr1->value.op.op1 = expr;
1539 : :
1540 : : /* 0 == size_expr */
1541 : 113 : block->expr1->value.op.op2 = gfc_get_expr ();
1542 : 113 : block->expr1->value.op.op2->ts.type = BT_LOGICAL;
1543 : 113 : block->expr1->value.op.op2->ts.kind = gfc_default_logical_kind;
1544 : 113 : block->expr1->value.op.op2->expr_type = EXPR_OP;
1545 : 113 : block->expr1->value.op.op2->where = gfc_current_locus;
1546 : 113 : block->expr1->value.op.op2->value.op.op = INTRINSIC_EQ;
1547 : 226 : block->expr1->value.op.op2->value.op.op1 =
1548 : 113 : gfc_get_int_expr (gfc_index_integer_kind, NULL, 0);
1549 : 113 : block->expr1->value.op.op2->value.op.op2 = gfc_copy_expr (size_expr);
1550 : :
1551 : : /* IF body: call final subroutine. */
1552 : 113 : block->next = gfc_get_code (EXEC_CALL);
1553 : 113 : block->next->symtree = fini->proc_tree;
1554 : 113 : block->next->resolved_sym = fini->proc_tree->n.sym;
1555 : 113 : block->next->ext.actual = gfc_get_actual_arglist ();
1556 : 113 : block->next->ext.actual->expr = gfc_lval_expr_from_sym (array);
1557 : :
1558 : : /* ELSE. */
1559 : :
1560 : 113 : block->block = gfc_get_code (EXEC_IF);
1561 : 113 : block = block->block;
1562 : :
1563 : : /* BLOCK ... END BLOCK. */
1564 : 113 : block->next = gfc_get_code (EXEC_BLOCK);
1565 : 113 : block = block->next;
1566 : :
1567 : 113 : ns = gfc_build_block_ns (sub_ns);
1568 : 113 : block->ext.block.ns = ns;
1569 : 113 : block->ext.block.assoc = NULL;
1570 : :
1571 : 113 : gfc_get_symbol ("ptr2", ns, &ptr2);
1572 : 113 : ptr2->ts.type = BT_DERIVED;
1573 : 113 : ptr2->ts.u.derived = array->ts.u.derived;
1574 : 113 : ptr2->attr.flavor = FL_VARIABLE;
1575 : 113 : ptr2->attr.pointer = 1;
1576 : 113 : ptr2->attr.artificial = 1;
1577 : 113 : gfc_set_sym_referenced (ptr2);
1578 : 113 : gfc_commit_symbol (ptr2);
1579 : :
1580 : 113 : gfc_get_symbol ("tmp_array", ns, &tmp_array);
1581 : 113 : tmp_array->ts.type = BT_DERIVED;
1582 : 113 : tmp_array->ts.u.derived = array->ts.u.derived;
1583 : 113 : tmp_array->attr.flavor = FL_VARIABLE;
1584 : 113 : tmp_array->attr.dimension = 1;
1585 : 113 : tmp_array->attr.artificial = 1;
1586 : 113 : tmp_array->as = gfc_get_array_spec();
1587 : 113 : tmp_array->attr.intent = INTENT_INOUT;
1588 : 113 : tmp_array->as->type = AS_EXPLICIT;
1589 : 113 : tmp_array->as->rank = fini->proc_tree->n.sym->formal->sym->as->rank;
1590 : :
1591 : 300 : for (i = 0; i < tmp_array->as->rank; i++)
1592 : : {
1593 : 187 : gfc_expr *shape_expr;
1594 : 187 : tmp_array->as->lower[i] = gfc_get_int_expr (gfc_default_integer_kind,
1595 : : NULL, 1);
1596 : : /* SIZE (array, dim=i+1, kind=gfc_index_integer_kind). */
1597 : 187 : shape_expr
1598 : 374 : = gfc_build_intrinsic_call (sub_ns, GFC_ISYM_SIZE, "size",
1599 : : gfc_current_locus, 3,
1600 : : gfc_lval_expr_from_sym (array),
1601 : : gfc_get_int_expr (gfc_default_integer_kind,
1602 : 187 : NULL, i+1),
1603 : : gfc_get_int_expr (gfc_default_integer_kind,
1604 : : NULL,
1605 : : gfc_index_integer_kind));
1606 : 187 : shape_expr->ts.kind = gfc_index_integer_kind;
1607 : 187 : tmp_array->as->upper[i] = shape_expr;
1608 : : }
1609 : 113 : gfc_set_sym_referenced (tmp_array);
1610 : 113 : gfc_commit_symbol (tmp_array);
1611 : :
1612 : : /* Create loop. */
1613 : 113 : iter = gfc_get_iterator ();
1614 : 113 : iter->var = gfc_lval_expr_from_sym (idx);
1615 : 113 : iter->start = gfc_get_int_expr (gfc_index_integer_kind, NULL, 0);
1616 : 113 : iter->end = gfc_lval_expr_from_sym (nelem);
1617 : 113 : iter->step = gfc_get_int_expr (gfc_index_integer_kind, NULL, 1);
1618 : :
1619 : 113 : block = gfc_get_code (EXEC_DO);
1620 : 113 : ns->code = block;
1621 : 113 : block->ext.iterator = iter;
1622 : 113 : block->block = gfc_get_code (EXEC_DO);
1623 : :
1624 : : /* Offset calculation for the new array: idx * size of type (in bytes). */
1625 : 113 : offset2 = gfc_get_expr ();
1626 : 113 : offset2->expr_type = EXPR_OP;
1627 : 113 : offset2->where = gfc_current_locus;
1628 : 113 : offset2->value.op.op = INTRINSIC_TIMES;
1629 : 113 : offset2->value.op.op1 = gfc_lval_expr_from_sym (idx);
1630 : 113 : offset2->value.op.op2 = gfc_copy_expr (size_expr);
1631 : 113 : offset2->ts = byte_stride->ts;
1632 : :
1633 : : /* Offset calculation of "array". */
1634 : 113 : block2 = finalization_get_offset (idx, idx2, offset, strides, sizes,
1635 : : byte_stride, rank, block->block, sub_ns);
1636 : :
1637 : : /* Create code for
1638 : : CALL C_F_POINTER (TRANSFER (TRANSFER (C_LOC (array, cptr), c_intptr)
1639 : : + idx * stride, c_ptr), ptr). */
1640 : 113 : block2->next = finalization_scalarizer (array, ptr,
1641 : : gfc_lval_expr_from_sym (offset),
1642 : : sub_ns);
1643 : 113 : block2 = block2->next;
1644 : 113 : block2->next = finalization_scalarizer (tmp_array, ptr2, offset2, sub_ns);
1645 : 113 : block2 = block2->next;
1646 : :
1647 : : /* ptr2 = ptr. */
1648 : 113 : block2->next = gfc_get_code (EXEC_ASSIGN);
1649 : 113 : block2 = block2->next;
1650 : 113 : block2->expr1 = gfc_lval_expr_from_sym (ptr2);
1651 : 113 : block2->expr2 = gfc_lval_expr_from_sym (ptr);
1652 : :
1653 : : /* Call now the user's final subroutine. */
1654 : 113 : block->next = gfc_get_code (EXEC_CALL);
1655 : 113 : block = block->next;
1656 : 113 : block->symtree = fini->proc_tree;
1657 : 113 : block->resolved_sym = fini->proc_tree->n.sym;
1658 : 113 : block->ext.actual = gfc_get_actual_arglist ();
1659 : 113 : block->ext.actual->expr = gfc_lval_expr_from_sym (tmp_array);
1660 : :
1661 : 113 : if (fini->proc_tree->n.sym->formal->sym->attr.intent == INTENT_IN)
1662 : 18 : return;
1663 : :
1664 : : /* Copy back. */
1665 : :
1666 : : /* Loop. */
1667 : 95 : iter = gfc_get_iterator ();
1668 : 95 : iter->var = gfc_lval_expr_from_sym (idx);
1669 : 95 : iter->start = gfc_get_int_expr (gfc_index_integer_kind, NULL, 0);
1670 : 95 : iter->end = gfc_lval_expr_from_sym (nelem);
1671 : 95 : iter->step = gfc_get_int_expr (gfc_index_integer_kind, NULL, 1);
1672 : :
1673 : 95 : block->next = gfc_get_code (EXEC_DO);
1674 : 95 : block = block->next;
1675 : 95 : block->ext.iterator = iter;
1676 : 95 : block->block = gfc_get_code (EXEC_DO);
1677 : :
1678 : : /* Offset calculation of "array". */
1679 : 95 : block2 = finalization_get_offset (idx, idx2, offset, strides, sizes,
1680 : : byte_stride, rank, block->block, sub_ns);
1681 : :
1682 : : /* Create code for
1683 : : CALL C_F_POINTER (TRANSFER (TRANSFER (C_LOC (array, cptr), c_intptr)
1684 : : + offset, c_ptr), ptr). */
1685 : 95 : block2->next = finalization_scalarizer (array, ptr,
1686 : : gfc_lval_expr_from_sym (offset),
1687 : : sub_ns);
1688 : 95 : block2 = block2->next;
1689 : 95 : block2->next = finalization_scalarizer (tmp_array, ptr2,
1690 : : gfc_copy_expr (offset2), sub_ns);
1691 : 95 : block2 = block2->next;
1692 : :
1693 : : /* ptr = ptr2. */
1694 : 95 : block2->next = gfc_get_code (EXEC_ASSIGN);
1695 : 95 : block2->next->expr1 = gfc_lval_expr_from_sym (ptr);
1696 : 95 : block2->next->expr2 = gfc_lval_expr_from_sym (ptr2);
1697 : : }
1698 : :
1699 : :
1700 : : /* Generate the finalization/polymorphic freeing wrapper subroutine for the
1701 : : derived type "derived". The function first calls the appropriate FINAL
1702 : : subroutine, then it DEALLOCATEs (finalizes/frees) the allocatable
1703 : : components (but not the inherited ones). Last, it calls the wrapper
1704 : : subroutine of the parent. The generated wrapper procedure takes as argument
1705 : : an assumed-rank array.
1706 : : If neither allocatable components nor FINAL subroutines exists, the vtab
1707 : : will contain a NULL pointer.
1708 : : The generated function has the form
1709 : : _final(assumed-rank array, stride, skip_corarray)
1710 : : where the array has to be contiguous (except of the lowest dimension). The
1711 : : stride (in bytes) is used to allow different sizes for ancestor types by
1712 : : skipping over the additionally added components in the scalarizer. If
1713 : : "fini_coarray" is false, coarray components are not finalized to allow for
1714 : : the correct semantic with intrinsic assignment. */
1715 : :
1716 : : static void
1717 : 9234 : generate_finalization_wrapper (gfc_symbol *derived, gfc_namespace *ns,
1718 : : const char *tname, gfc_component *vtab_final)
1719 : : {
1720 : 9234 : gfc_symbol *final, *array, *fini_coarray, *byte_stride, *sizes, *strides;
1721 : 9234 : gfc_symbol *ptr = NULL, *idx, *idx2, *is_contiguous, *offset, *nelem;
1722 : 9234 : gfc_component *comp;
1723 : 9234 : gfc_namespace *sub_ns;
1724 : 9234 : gfc_code *last_code, *block;
1725 : 9234 : char *name;
1726 : 9234 : bool finalizable_comp = false;
1727 : 9234 : gfc_expr *ancestor_wrapper = NULL, *rank;
1728 : 9234 : gfc_iterator *iter;
1729 : :
1730 : 9234 : if (derived->attr.unlimited_polymorphic)
1731 : : {
1732 : 656 : vtab_final->initializer = gfc_get_null_expr (NULL);
1733 : 7441 : return;
1734 : : }
1735 : :
1736 : : /* Search for the ancestor's finalizers. */
1737 : 1231 : if (derived->attr.extension && derived->components
1738 : 9809 : && (!derived->components->ts.u.derived->attr.abstract
1739 : 251 : || has_finalizer_component (derived)))
1740 : : {
1741 : 980 : gfc_symbol *vtab;
1742 : 980 : gfc_component *comp;
1743 : :
1744 : 980 : vtab = gfc_find_derived_vtab (derived->components->ts.u.derived);
1745 : 5880 : for (comp = vtab->ts.u.derived->components; comp; comp = comp->next)
1746 : 5880 : if (comp->name[0] == '_' && comp->name[1] == 'f')
1747 : : {
1748 : 980 : ancestor_wrapper = comp->initializer;
1749 : 980 : break;
1750 : : }
1751 : : }
1752 : :
1753 : : /* No wrapper of the ancestor and no own FINAL subroutines and allocatable
1754 : : components: Return a NULL() expression; we defer this a bit to have
1755 : : an interface declaration. */
1756 : 980 : if ((!ancestor_wrapper || ancestor_wrapper->expr_type == EXPR_NULL)
1757 : 8407 : && !derived->attr.alloc_comp
1758 : 7006 : && (!derived->f2k_derived || !derived->f2k_derived->finalizers)
1759 : 7733 : && !has_finalizer_component (derived))
1760 : : {
1761 : 6729 : vtab_final->initializer = gfc_get_null_expr (NULL);
1762 : 6729 : gcc_assert (vtab_final->ts.interface == NULL);
1763 : : return;
1764 : : }
1765 : : else
1766 : : /* Check whether there are new allocatable components. */
1767 : 4862 : for (comp = derived->components; comp; comp = comp->next)
1768 : : {
1769 : 3013 : if (comp == derived->components && derived->attr.extension
1770 : 305 : && ancestor_wrapper && ancestor_wrapper->expr_type != EXPR_NULL)
1771 : 171 : continue;
1772 : :
1773 : 2842 : finalizable_comp |= comp_is_finalizable (comp);
1774 : : }
1775 : :
1776 : : /* If there is no new finalizer and no new allocatable, return with
1777 : : an expr to the ancestor's one. */
1778 : 1849 : if (!finalizable_comp
1779 : 357 : && (!derived->f2k_derived || !derived->f2k_derived->finalizers))
1780 : : {
1781 : 56 : gcc_assert (ancestor_wrapper && ancestor_wrapper->ref == NULL
1782 : : && ancestor_wrapper->expr_type == EXPR_VARIABLE);
1783 : 56 : vtab_final->initializer = gfc_copy_expr (ancestor_wrapper);
1784 : 56 : vtab_final->ts.interface = vtab_final->initializer->symtree->n.sym;
1785 : 56 : return;
1786 : : }
1787 : :
1788 : : /* We now create a wrapper, which does the following:
1789 : : 1. Call the suitable finalization subroutine for this type
1790 : : 2. Loop over all noninherited allocatable components and noninherited
1791 : : components with allocatable components and DEALLOCATE those; this will
1792 : : take care of finalizers, coarray deregistering and allocatable
1793 : : nested components.
1794 : : 3. Call the ancestor's finalizer. */
1795 : :
1796 : : /* Declare the wrapper function; it takes an assumed-rank array
1797 : : and a VALUE logical as arguments. */
1798 : :
1799 : : /* Set up the namespace. */
1800 : 1793 : sub_ns = gfc_get_namespace (ns, 0);
1801 : 1793 : sub_ns->sibling = ns->contained;
1802 : 1793 : ns->contained = sub_ns;
1803 : 1793 : sub_ns->resolved = 1;
1804 : :
1805 : : /* Set up the procedure symbol. */
1806 : 1793 : name = xasprintf ("__final_%s", tname);
1807 : 1793 : gfc_get_symbol (name, sub_ns, &final);
1808 : 1793 : sub_ns->proc_name = final;
1809 : 1793 : final->attr.flavor = FL_PROCEDURE;
1810 : 1793 : final->attr.function = 1;
1811 : 1793 : final->attr.pure = 0;
1812 : 1793 : final->attr.recursive = 1;
1813 : 1793 : final->result = final;
1814 : 1793 : final->ts.type = BT_INTEGER;
1815 : 1793 : final->ts.kind = 4;
1816 : 1793 : final->attr.artificial = 1;
1817 : 1793 : final->attr.always_explicit = 1;
1818 : 1793 : final->attr.if_source = IFSRC_DECL;
1819 : 1793 : if (ns->proc_name->attr.flavor == FL_MODULE)
1820 : 1522 : final->module = ns->proc_name->name;
1821 : 1793 : gfc_set_sym_referenced (final);
1822 : 1793 : gfc_commit_symbol (final);
1823 : :
1824 : : /* Set up formal argument. */
1825 : 1793 : gfc_get_symbol ("array", sub_ns, &array);
1826 : 1793 : array->ts.type = BT_DERIVED;
1827 : 1793 : array->ts.u.derived = derived;
1828 : 1793 : array->attr.flavor = FL_VARIABLE;
1829 : 1793 : array->attr.dummy = 1;
1830 : 1793 : array->attr.contiguous = 1;
1831 : 1793 : array->attr.dimension = 1;
1832 : 1793 : array->attr.artificial = 1;
1833 : 1793 : array->as = gfc_get_array_spec();
1834 : 1793 : array->as->type = AS_ASSUMED_RANK;
1835 : 1793 : array->as->rank = -1;
1836 : 1793 : array->attr.intent = INTENT_INOUT;
1837 : 1793 : gfc_set_sym_referenced (array);
1838 : 1793 : final->formal = gfc_get_formal_arglist ();
1839 : 1793 : final->formal->sym = array;
1840 : 1793 : gfc_commit_symbol (array);
1841 : :
1842 : : /* Set up formal argument. */
1843 : 1793 : gfc_get_symbol ("byte_stride", sub_ns, &byte_stride);
1844 : 1793 : byte_stride->ts.type = BT_INTEGER;
1845 : 1793 : byte_stride->ts.kind = gfc_index_integer_kind;
1846 : 1793 : byte_stride->attr.flavor = FL_VARIABLE;
1847 : 1793 : byte_stride->attr.dummy = 1;
1848 : 1793 : byte_stride->attr.value = 1;
1849 : 1793 : byte_stride->attr.artificial = 1;
1850 : 1793 : gfc_set_sym_referenced (byte_stride);
1851 : 1793 : final->formal->next = gfc_get_formal_arglist ();
1852 : 1793 : final->formal->next->sym = byte_stride;
1853 : 1793 : gfc_commit_symbol (byte_stride);
1854 : :
1855 : : /* Set up formal argument. */
1856 : 1793 : gfc_get_symbol ("fini_coarray", sub_ns, &fini_coarray);
1857 : 1793 : fini_coarray->ts.type = BT_LOGICAL;
1858 : 1793 : fini_coarray->ts.kind = 1;
1859 : 1793 : fini_coarray->attr.flavor = FL_VARIABLE;
1860 : 1793 : fini_coarray->attr.dummy = 1;
1861 : 1793 : fini_coarray->attr.value = 1;
1862 : 1793 : fini_coarray->attr.artificial = 1;
1863 : 1793 : gfc_set_sym_referenced (fini_coarray);
1864 : 1793 : final->formal->next->next = gfc_get_formal_arglist ();
1865 : 1793 : final->formal->next->next->sym = fini_coarray;
1866 : 1793 : gfc_commit_symbol (fini_coarray);
1867 : :
1868 : : /* Local variables. */
1869 : :
1870 : 1793 : gfc_get_symbol ("idx", sub_ns, &idx);
1871 : 1793 : idx->ts.type = BT_INTEGER;
1872 : 1793 : idx->ts.kind = gfc_index_integer_kind;
1873 : 1793 : idx->attr.flavor = FL_VARIABLE;
1874 : 1793 : idx->attr.artificial = 1;
1875 : 1793 : gfc_set_sym_referenced (idx);
1876 : 1793 : gfc_commit_symbol (idx);
1877 : :
1878 : 1793 : gfc_get_symbol ("idx2", sub_ns, &idx2);
1879 : 1793 : idx2->ts.type = BT_INTEGER;
1880 : 1793 : idx2->ts.kind = gfc_index_integer_kind;
1881 : 1793 : idx2->attr.flavor = FL_VARIABLE;
1882 : 1793 : idx2->attr.artificial = 1;
1883 : 1793 : gfc_set_sym_referenced (idx2);
1884 : 1793 : gfc_commit_symbol (idx2);
1885 : :
1886 : 1793 : gfc_get_symbol ("offset", sub_ns, &offset);
1887 : 1793 : offset->ts.type = BT_INTEGER;
1888 : 1793 : offset->ts.kind = gfc_index_integer_kind;
1889 : 1793 : offset->attr.flavor = FL_VARIABLE;
1890 : 1793 : offset->attr.artificial = 1;
1891 : 1793 : gfc_set_sym_referenced (offset);
1892 : 1793 : gfc_commit_symbol (offset);
1893 : :
1894 : : /* Create RANK expression. */
1895 : 1793 : rank = gfc_build_intrinsic_call (sub_ns, GFC_ISYM_RANK, "rank",
1896 : : gfc_current_locus, 1,
1897 : : gfc_lval_expr_from_sym (array));
1898 : 1793 : if (rank->ts.kind != idx->ts.kind)
1899 : 1793 : gfc_convert_type_warn (rank, &idx->ts, 2, 0);
1900 : :
1901 : : /* Create is_contiguous variable. */
1902 : 1793 : gfc_get_symbol ("is_contiguous", sub_ns, &is_contiguous);
1903 : 1793 : is_contiguous->ts.type = BT_LOGICAL;
1904 : 1793 : is_contiguous->ts.kind = gfc_default_logical_kind;
1905 : 1793 : is_contiguous->attr.flavor = FL_VARIABLE;
1906 : 1793 : is_contiguous->attr.artificial = 1;
1907 : 1793 : gfc_set_sym_referenced (is_contiguous);
1908 : 1793 : gfc_commit_symbol (is_contiguous);
1909 : :
1910 : : /* Create "sizes(0..rank)" variable, which contains the multiplied
1911 : : up extent of the dimensions, i.e. sizes(0) = 1, sizes(1) = extent(dim=1),
1912 : : sizes(2) = sizes(1) * extent(dim=2) etc. */
1913 : 1793 : gfc_get_symbol ("sizes", sub_ns, &sizes);
1914 : 1793 : sizes->ts.type = BT_INTEGER;
1915 : 1793 : sizes->ts.kind = gfc_index_integer_kind;
1916 : 1793 : sizes->attr.flavor = FL_VARIABLE;
1917 : 1793 : sizes->attr.dimension = 1;
1918 : 1793 : sizes->attr.artificial = 1;
1919 : 1793 : sizes->as = gfc_get_array_spec();
1920 : 1793 : sizes->attr.intent = INTENT_INOUT;
1921 : 1793 : sizes->as->type = AS_EXPLICIT;
1922 : 1793 : sizes->as->rank = 1;
1923 : 1793 : sizes->as->lower[0] = gfc_get_int_expr (gfc_index_integer_kind, NULL, 0);
1924 : 1793 : sizes->as->upper[0] = gfc_copy_expr (rank);
1925 : 1793 : gfc_set_sym_referenced (sizes);
1926 : 1793 : gfc_commit_symbol (sizes);
1927 : :
1928 : : /* Create "strides(1..rank)" variable, which contains the strides per
1929 : : dimension. */
1930 : 1793 : gfc_get_symbol ("strides", sub_ns, &strides);
1931 : 1793 : strides->ts.type = BT_INTEGER;
1932 : 1793 : strides->ts.kind = gfc_index_integer_kind;
1933 : 1793 : strides->attr.flavor = FL_VARIABLE;
1934 : 1793 : strides->attr.dimension = 1;
1935 : 1793 : strides->attr.artificial = 1;
1936 : 1793 : strides->as = gfc_get_array_spec();
1937 : 1793 : strides->attr.intent = INTENT_INOUT;
1938 : 1793 : strides->as->type = AS_EXPLICIT;
1939 : 1793 : strides->as->rank = 1;
1940 : 1793 : strides->as->lower[0] = gfc_get_int_expr (gfc_index_integer_kind, NULL, 1);
1941 : 1793 : strides->as->upper[0] = gfc_copy_expr (rank);
1942 : 1793 : gfc_set_sym_referenced (strides);
1943 : 1793 : gfc_commit_symbol (strides);
1944 : :
1945 : :
1946 : : /* Set return value to 0. */
1947 : 1793 : last_code = gfc_get_code (EXEC_ASSIGN);
1948 : 1793 : last_code->expr1 = gfc_lval_expr_from_sym (final);
1949 : 1793 : last_code->expr2 = gfc_get_int_expr (4, NULL, 0);
1950 : 1793 : sub_ns->code = last_code;
1951 : :
1952 : : /* Set: is_contiguous = .true. */
1953 : 1793 : last_code->next = gfc_get_code (EXEC_ASSIGN);
1954 : 1793 : last_code = last_code->next;
1955 : 1793 : last_code->expr1 = gfc_lval_expr_from_sym (is_contiguous);
1956 : 1793 : last_code->expr2 = gfc_get_logical_expr (gfc_default_logical_kind,
1957 : : &gfc_current_locus, true);
1958 : :
1959 : : /* Set: sizes(0) = 1. */
1960 : 1793 : last_code->next = gfc_get_code (EXEC_ASSIGN);
1961 : 1793 : last_code = last_code->next;
1962 : 1793 : last_code->expr1 = gfc_lval_expr_from_sym (sizes);
1963 : 1793 : last_code->expr1->ref = gfc_get_ref ();
1964 : 1793 : last_code->expr1->ref->type = REF_ARRAY;
1965 : 1793 : last_code->expr1->ref->u.ar.type = AR_ELEMENT;
1966 : 1793 : last_code->expr1->ref->u.ar.dimen = 1;
1967 : 1793 : last_code->expr1->ref->u.ar.dimen_type[0] = DIMEN_ELEMENT;
1968 : 1793 : last_code->expr1->ref->u.ar.start[0]
1969 : 1793 : = gfc_get_int_expr (gfc_index_integer_kind, NULL, 0);
1970 : 1793 : last_code->expr1->ref->u.ar.as = sizes->as;
1971 : 1793 : last_code->expr2 = gfc_get_int_expr (gfc_default_integer_kind, NULL, 1);
1972 : :
1973 : : /* Create:
1974 : : DO idx = 1, rank
1975 : : strides(idx) = _F._stride (array, dim=idx)
1976 : : sizes(idx) = sizes(i-1) * size(array, dim=idx, kind=index_kind)
1977 : : if (strides (idx) /= sizes(i-1)) is_contiguous = .false.
1978 : : END DO. */
1979 : :
1980 : : /* Create loop. */
1981 : 1793 : iter = gfc_get_iterator ();
1982 : 1793 : iter->var = gfc_lval_expr_from_sym (idx);
1983 : 1793 : iter->start = gfc_get_int_expr (gfc_index_integer_kind, NULL, 1);
1984 : 1793 : iter->end = gfc_copy_expr (rank);
1985 : 1793 : iter->step = gfc_get_int_expr (gfc_index_integer_kind, NULL, 1);
1986 : 1793 : last_code->next = gfc_get_code (EXEC_DO);
1987 : 1793 : last_code = last_code->next;
1988 : 1793 : last_code->ext.iterator = iter;
1989 : 1793 : last_code->block = gfc_get_code (EXEC_DO);
1990 : :
1991 : : /* strides(idx) = _F._stride(array,dim=idx). */
1992 : 1793 : last_code->block->next = gfc_get_code (EXEC_ASSIGN);
1993 : 1793 : block = last_code->block->next;
1994 : :
1995 : 1793 : block->expr1 = gfc_lval_expr_from_sym (strides);
1996 : 1793 : block->expr1->ref = gfc_get_ref ();
1997 : 1793 : block->expr1->ref->type = REF_ARRAY;
1998 : 1793 : block->expr1->ref->u.ar.type = AR_ELEMENT;
1999 : 1793 : block->expr1->ref->u.ar.dimen = 1;
2000 : 1793 : block->expr1->ref->u.ar.dimen_type[0] = DIMEN_ELEMENT;
2001 : 1793 : block->expr1->ref->u.ar.start[0] = gfc_lval_expr_from_sym (idx);
2002 : 1793 : block->expr1->ref->u.ar.as = strides->as;
2003 : :
2004 : 1793 : block->expr2 = gfc_build_intrinsic_call (sub_ns, GFC_ISYM_STRIDE, "stride",
2005 : : gfc_current_locus, 2,
2006 : : gfc_lval_expr_from_sym (array),
2007 : : gfc_lval_expr_from_sym (idx));
2008 : :
2009 : : /* sizes(idx) = sizes(idx-1) * size(array,dim=idx, kind=index_kind). */
2010 : 1793 : block->next = gfc_get_code (EXEC_ASSIGN);
2011 : 1793 : block = block->next;
2012 : :
2013 : : /* sizes(idx) = ... */
2014 : 1793 : block->expr1 = gfc_lval_expr_from_sym (sizes);
2015 : 1793 : block->expr1->ref = gfc_get_ref ();
2016 : 1793 : block->expr1->ref->type = REF_ARRAY;
2017 : 1793 : block->expr1->ref->u.ar.type = AR_ELEMENT;
2018 : 1793 : block->expr1->ref->u.ar.dimen = 1;
2019 : 1793 : block->expr1->ref->u.ar.dimen_type[0] = DIMEN_ELEMENT;
2020 : 1793 : block->expr1->ref->u.ar.start[0] = gfc_lval_expr_from_sym (idx);
2021 : 1793 : block->expr1->ref->u.ar.as = sizes->as;
2022 : :
2023 : 1793 : block->expr2 = gfc_get_expr ();
2024 : 1793 : block->expr2->expr_type = EXPR_OP;
2025 : 1793 : block->expr2->value.op.op = INTRINSIC_TIMES;
2026 : 1793 : block->expr2->where = gfc_current_locus;
2027 : :
2028 : : /* sizes(idx-1). */
2029 : 1793 : block->expr2->value.op.op1 = gfc_lval_expr_from_sym (sizes);
2030 : 1793 : block->expr2->value.op.op1->ref = gfc_get_ref ();
2031 : 1793 : block->expr2->value.op.op1->ref->type = REF_ARRAY;
2032 : 1793 : block->expr2->value.op.op1->ref->u.ar.as = sizes->as;
2033 : 1793 : block->expr2->value.op.op1->ref->u.ar.type = AR_ELEMENT;
2034 : 1793 : block->expr2->value.op.op1->ref->u.ar.dimen = 1;
2035 : 1793 : block->expr2->value.op.op1->ref->u.ar.dimen_type[0] = DIMEN_ELEMENT;
2036 : 1793 : block->expr2->value.op.op1->ref->u.ar.start[0] = gfc_get_expr ();
2037 : 1793 : block->expr2->value.op.op1->ref->u.ar.start[0]->expr_type = EXPR_OP;
2038 : 1793 : block->expr2->value.op.op1->ref->u.ar.start[0]->where = gfc_current_locus;
2039 : 1793 : block->expr2->value.op.op1->ref->u.ar.start[0]->value.op.op = INTRINSIC_MINUS;
2040 : 1793 : block->expr2->value.op.op1->ref->u.ar.start[0]->value.op.op1
2041 : 1793 : = gfc_lval_expr_from_sym (idx);
2042 : 1793 : block->expr2->value.op.op1->ref->u.ar.start[0]->value.op.op2
2043 : 1793 : = gfc_get_int_expr (gfc_index_integer_kind, NULL, 1);
2044 : 1793 : block->expr2->value.op.op1->ref->u.ar.start[0]->ts
2045 : 1793 : = block->expr2->value.op.op1->ref->u.ar.start[0]->value.op.op1->ts;
2046 : :
2047 : : /* size(array, dim=idx, kind=index_kind). */
2048 : 3586 : block->expr2->value.op.op2
2049 : 1793 : = gfc_build_intrinsic_call (sub_ns, GFC_ISYM_SIZE, "size",
2050 : : gfc_current_locus, 3,
2051 : : gfc_lval_expr_from_sym (array),
2052 : : gfc_lval_expr_from_sym (idx),
2053 : : gfc_get_int_expr (gfc_index_integer_kind,
2054 : : NULL,
2055 : : gfc_index_integer_kind));
2056 : 1793 : block->expr2->value.op.op2->ts.kind = gfc_index_integer_kind;
2057 : 1793 : block->expr2->ts = idx->ts;
2058 : :
2059 : : /* if (strides (idx) /= sizes(idx-1)) is_contiguous = .false. */
2060 : 1793 : block->next = gfc_get_code (EXEC_IF);
2061 : 1793 : block = block->next;
2062 : :
2063 : 1793 : block->block = gfc_get_code (EXEC_IF);
2064 : 1793 : block = block->block;
2065 : :
2066 : : /* if condition: strides(idx) /= sizes(idx-1). */
2067 : 1793 : block->expr1 = gfc_get_expr ();
2068 : 1793 : block->expr1->ts.type = BT_LOGICAL;
2069 : 1793 : block->expr1->ts.kind = gfc_default_logical_kind;
2070 : 1793 : block->expr1->expr_type = EXPR_OP;
2071 : 1793 : block->expr1->where = gfc_current_locus;
2072 : 1793 : block->expr1->value.op.op = INTRINSIC_NE;
2073 : :
2074 : 1793 : block->expr1->value.op.op1 = gfc_lval_expr_from_sym (strides);
2075 : 1793 : block->expr1->value.op.op1->ref = gfc_get_ref ();
2076 : 1793 : block->expr1->value.op.op1->ref->type = REF_ARRAY;
2077 : 1793 : block->expr1->value.op.op1->ref->u.ar.type = AR_ELEMENT;
2078 : 1793 : block->expr1->value.op.op1->ref->u.ar.dimen = 1;
2079 : 1793 : block->expr1->value.op.op1->ref->u.ar.dimen_type[0] = DIMEN_ELEMENT;
2080 : 1793 : block->expr1->value.op.op1->ref->u.ar.start[0] = gfc_lval_expr_from_sym (idx);
2081 : 1793 : block->expr1->value.op.op1->ref->u.ar.as = strides->as;
2082 : :
2083 : 1793 : block->expr1->value.op.op2 = gfc_lval_expr_from_sym (sizes);
2084 : 1793 : block->expr1->value.op.op2->ref = gfc_get_ref ();
2085 : 1793 : block->expr1->value.op.op2->ref->type = REF_ARRAY;
2086 : 1793 : block->expr1->value.op.op2->ref->u.ar.as = sizes->as;
2087 : 1793 : block->expr1->value.op.op2->ref->u.ar.type = AR_ELEMENT;
2088 : 1793 : block->expr1->value.op.op2->ref->u.ar.dimen = 1;
2089 : 1793 : block->expr1->value.op.op2->ref->u.ar.dimen_type[0] = DIMEN_ELEMENT;
2090 : 1793 : block->expr1->value.op.op2->ref->u.ar.start[0] = gfc_get_expr ();
2091 : 1793 : block->expr1->value.op.op2->ref->u.ar.start[0]->expr_type = EXPR_OP;
2092 : 1793 : block->expr1->value.op.op2->ref->u.ar.start[0]->where = gfc_current_locus;
2093 : 1793 : block->expr1->value.op.op2->ref->u.ar.start[0]->value.op.op = INTRINSIC_MINUS;
2094 : 1793 : block->expr1->value.op.op2->ref->u.ar.start[0]->value.op.op1
2095 : 1793 : = gfc_lval_expr_from_sym (idx);
2096 : 1793 : block->expr1->value.op.op2->ref->u.ar.start[0]->value.op.op2
2097 : 1793 : = gfc_get_int_expr (gfc_index_integer_kind, NULL, 1);
2098 : 1793 : block->expr1->value.op.op2->ref->u.ar.start[0]->ts
2099 : 1793 : = block->expr1->value.op.op2->ref->u.ar.start[0]->value.op.op1->ts;
2100 : :
2101 : : /* if body: is_contiguous = .false. */
2102 : 1793 : block->next = gfc_get_code (EXEC_ASSIGN);
2103 : 1793 : block = block->next;
2104 : 1793 : block->expr1 = gfc_lval_expr_from_sym (is_contiguous);
2105 : 1793 : block->expr2 = gfc_get_logical_expr (gfc_default_logical_kind,
2106 : : &gfc_current_locus, false);
2107 : :
2108 : : /* Obtain the size (number of elements) of "array" MINUS ONE,
2109 : : which is used in the scalarization. */
2110 : 1793 : gfc_get_symbol ("nelem", sub_ns, &nelem);
2111 : 1793 : nelem->ts.type = BT_INTEGER;
2112 : 1793 : nelem->ts.kind = gfc_index_integer_kind;
2113 : 1793 : nelem->attr.flavor = FL_VARIABLE;
2114 : 1793 : nelem->attr.artificial = 1;
2115 : 1793 : gfc_set_sym_referenced (nelem);
2116 : 1793 : gfc_commit_symbol (nelem);
2117 : :
2118 : : /* nelem = sizes (rank) - 1. */
2119 : 1793 : last_code->next = gfc_get_code (EXEC_ASSIGN);
2120 : 1793 : last_code = last_code->next;
2121 : :
2122 : 1793 : last_code->expr1 = gfc_lval_expr_from_sym (nelem);
2123 : :
2124 : 1793 : last_code->expr2 = gfc_get_expr ();
2125 : 1793 : last_code->expr2->expr_type = EXPR_OP;
2126 : 1793 : last_code->expr2->value.op.op = INTRINSIC_MINUS;
2127 : 1793 : last_code->expr2->value.op.op2
2128 : 1793 : = gfc_get_int_expr (gfc_index_integer_kind, NULL, 1);
2129 : 1793 : last_code->expr2->ts = last_code->expr2->value.op.op2->ts;
2130 : 1793 : last_code->expr2->where = gfc_current_locus;
2131 : :
2132 : 1793 : last_code->expr2->value.op.op1 = gfc_lval_expr_from_sym (sizes);
2133 : 1793 : last_code->expr2->value.op.op1->ref = gfc_get_ref ();
2134 : 1793 : last_code->expr2->value.op.op1->ref->type = REF_ARRAY;
2135 : 1793 : last_code->expr2->value.op.op1->ref->u.ar.type = AR_ELEMENT;
2136 : 1793 : last_code->expr2->value.op.op1->ref->u.ar.dimen = 1;
2137 : 1793 : last_code->expr2->value.op.op1->ref->u.ar.dimen_type[0] = DIMEN_ELEMENT;
2138 : 1793 : last_code->expr2->value.op.op1->ref->u.ar.start[0] = gfc_copy_expr (rank);
2139 : 1793 : last_code->expr2->value.op.op1->ref->u.ar.as = sizes->as;
2140 : :
2141 : : /* Call final subroutines. We now generate code like:
2142 : : use iso_c_binding
2143 : : integer, pointer :: ptr
2144 : : type(c_ptr) :: cptr
2145 : : integer(c_intptr_t) :: i, addr
2146 : :
2147 : : select case (rank (array))
2148 : : case (3)
2149 : : ! If needed, the array is packed
2150 : : call final_rank3 (array)
2151 : : case default:
2152 : : do i = 0, size (array)-1
2153 : : addr = transfer (c_loc (array), addr) + i * stride
2154 : : call c_f_pointer (transfer (addr, cptr), ptr)
2155 : : call elemental_final (ptr)
2156 : : end do
2157 : : end select */
2158 : :
2159 : 1793 : if (derived->f2k_derived && derived->f2k_derived->finalizers)
2160 : : {
2161 : 346 : gfc_finalizer *fini, *fini_elem = NULL;
2162 : :
2163 : 346 : gfc_get_symbol ("ptr1", sub_ns, &ptr);
2164 : 346 : ptr->ts.type = BT_DERIVED;
2165 : 346 : ptr->ts.u.derived = derived;
2166 : 346 : ptr->attr.flavor = FL_VARIABLE;
2167 : 346 : ptr->attr.pointer = 1;
2168 : 346 : ptr->attr.artificial = 1;
2169 : 346 : gfc_set_sym_referenced (ptr);
2170 : 346 : gfc_commit_symbol (ptr);
2171 : :
2172 : 346 : fini = derived->f2k_derived->finalizers;
2173 : :
2174 : : /* Assumed rank finalizers can be called directly. The call takes care
2175 : : of setting up the descriptor. resolve_finalizers has already checked
2176 : : that this is the only finalizer for this kind/type (F2018: C790). */
2177 : 346 : if (fini->proc_tree && fini->proc_tree->n.sym->formal->sym->as
2178 : 99 : && fini->proc_tree->n.sym->formal->sym->as->type == AS_ASSUMED_RANK)
2179 : : {
2180 : 6 : last_code->next = gfc_get_code (EXEC_CALL);
2181 : 6 : last_code->next->symtree = fini->proc_tree;
2182 : 6 : last_code->next->resolved_sym = fini->proc_tree->n.sym;
2183 : 6 : last_code->next->ext.actual = gfc_get_actual_arglist ();
2184 : 6 : last_code->next->ext.actual->expr = gfc_lval_expr_from_sym (array);
2185 : :
2186 : 6 : last_code = last_code->next;
2187 : 6 : goto finish_assumed_rank;
2188 : : }
2189 : :
2190 : : /* SELECT CASE (RANK (array)). */
2191 : 340 : last_code->next = gfc_get_code (EXEC_SELECT);
2192 : 340 : last_code = last_code->next;
2193 : 340 : last_code->expr1 = gfc_copy_expr (rank);
2194 : 340 : block = NULL;
2195 : :
2196 : :
2197 : 756 : for (; fini; fini = fini->next)
2198 : : {
2199 : 416 : gcc_assert (fini->proc_tree); /* Should have been set in gfc_resolve_finalizers. */
2200 : 416 : if (fini->proc_tree->n.sym->attr.elemental)
2201 : : {
2202 : 90 : fini_elem = fini;
2203 : 90 : continue;
2204 : : }
2205 : :
2206 : : /* CASE (fini_rank). */
2207 : 326 : if (block)
2208 : : {
2209 : 63 : block->block = gfc_get_code (EXEC_SELECT);
2210 : 63 : block = block->block;
2211 : : }
2212 : : else
2213 : : {
2214 : 263 : block = gfc_get_code (EXEC_SELECT);
2215 : 263 : last_code->block = block;
2216 : : }
2217 : 326 : block->ext.block.case_list = gfc_get_case ();
2218 : 326 : block->ext.block.case_list->where = gfc_current_locus;
2219 : 326 : if (fini->proc_tree->n.sym->formal->sym->attr.dimension)
2220 : 113 : block->ext.block.case_list->low
2221 : 113 : = gfc_get_int_expr (gfc_default_integer_kind, NULL,
2222 : 113 : fini->proc_tree->n.sym->formal->sym->as->rank);
2223 : : else
2224 : 213 : block->ext.block.case_list->low
2225 : 213 : = gfc_get_int_expr (gfc_default_integer_kind, NULL, 0);
2226 : 326 : block->ext.block.case_list->high
2227 : 326 : = gfc_copy_expr (block->ext.block.case_list->low);
2228 : :
2229 : : /* CALL fini_rank (array) - possibly with packing. */
2230 : 326 : if (fini->proc_tree->n.sym->formal->sym->attr.dimension)
2231 : 113 : finalizer_insert_packed_call (block, fini, array, byte_stride,
2232 : : idx, ptr, nelem, strides,
2233 : : sizes, idx2, offset, is_contiguous,
2234 : : rank, sub_ns);
2235 : : else
2236 : : {
2237 : 213 : block->next = gfc_get_code (EXEC_CALL);
2238 : 213 : block->next->symtree = fini->proc_tree;
2239 : 213 : block->next->resolved_sym = fini->proc_tree->n.sym;
2240 : 213 : block->next->ext.actual = gfc_get_actual_arglist ();
2241 : 213 : block->next->ext.actual->expr = gfc_lval_expr_from_sym (array);
2242 : : }
2243 : : }
2244 : :
2245 : : /* Elemental call - scalarized. */
2246 : 340 : if (fini_elem)
2247 : : {
2248 : : /* CASE DEFAULT. */
2249 : 90 : if (block)
2250 : : {
2251 : 13 : block->block = gfc_get_code (EXEC_SELECT);
2252 : 13 : block = block->block;
2253 : : }
2254 : : else
2255 : : {
2256 : 77 : block = gfc_get_code (EXEC_SELECT);
2257 : 77 : last_code->block = block;
2258 : : }
2259 : 90 : block->ext.block.case_list = gfc_get_case ();
2260 : :
2261 : : /* Create loop. */
2262 : 90 : iter = gfc_get_iterator ();
2263 : 90 : iter->var = gfc_lval_expr_from_sym (idx);
2264 : 90 : iter->start = gfc_get_int_expr (gfc_index_integer_kind, NULL, 0);
2265 : 90 : iter->end = gfc_lval_expr_from_sym (nelem);
2266 : 90 : iter->step = gfc_get_int_expr (gfc_index_integer_kind, NULL, 1);
2267 : 90 : block->next = gfc_get_code (EXEC_DO);
2268 : 90 : block = block->next;
2269 : 90 : block->ext.iterator = iter;
2270 : 90 : block->block = gfc_get_code (EXEC_DO);
2271 : :
2272 : : /* Offset calculation. */
2273 : 90 : block = finalization_get_offset (idx, idx2, offset, strides, sizes,
2274 : : byte_stride, rank, block->block,
2275 : : sub_ns);
2276 : :
2277 : : /* Create code for
2278 : : CALL C_F_POINTER (TRANSFER (TRANSFER (C_LOC (array, cptr), c_intptr)
2279 : : + offset, c_ptr), ptr). */
2280 : 90 : block->next
2281 : 90 : = finalization_scalarizer (array, ptr,
2282 : : gfc_lval_expr_from_sym (offset),
2283 : : sub_ns);
2284 : 90 : block = block->next;
2285 : :
2286 : : /* CALL final_elemental (array). */
2287 : 90 : block->next = gfc_get_code (EXEC_CALL);
2288 : 90 : block = block->next;
2289 : 90 : block->symtree = fini_elem->proc_tree;
2290 : 90 : block->resolved_sym = fini_elem->proc_sym;
2291 : 90 : block->ext.actual = gfc_get_actual_arglist ();
2292 : 90 : block->ext.actual->expr = gfc_lval_expr_from_sym (ptr);
2293 : : }
2294 : : }
2295 : :
2296 : 1447 : finish_assumed_rank:
2297 : :
2298 : : /* Finalize and deallocate allocatable components. The same manual
2299 : : scalarization is used as above. */
2300 : :
2301 : 1793 : if (finalizable_comp)
2302 : : {
2303 : 1492 : gfc_symbol *stat;
2304 : 1492 : gfc_code *block = NULL;
2305 : :
2306 : 1492 : if (!ptr)
2307 : : {
2308 : 1447 : gfc_get_symbol ("ptr2", sub_ns, &ptr);
2309 : 1447 : ptr->ts.type = BT_DERIVED;
2310 : 1447 : ptr->ts.u.derived = derived;
2311 : 1447 : ptr->attr.flavor = FL_VARIABLE;
2312 : 1447 : ptr->attr.pointer = 1;
2313 : 1447 : ptr->attr.artificial = 1;
2314 : 1447 : gfc_set_sym_referenced (ptr);
2315 : 1447 : gfc_commit_symbol (ptr);
2316 : : }
2317 : :
2318 : 1492 : gfc_get_symbol ("ignore", sub_ns, &stat);
2319 : 1492 : stat->attr.flavor = FL_VARIABLE;
2320 : 1492 : stat->attr.artificial = 1;
2321 : 1492 : stat->ts.type = BT_INTEGER;
2322 : 1492 : stat->ts.kind = gfc_default_integer_kind;
2323 : 1492 : gfc_set_sym_referenced (stat);
2324 : 1492 : gfc_commit_symbol (stat);
2325 : :
2326 : : /* Create loop. */
2327 : 1492 : iter = gfc_get_iterator ();
2328 : 1492 : iter->var = gfc_lval_expr_from_sym (idx);
2329 : 1492 : iter->start = gfc_get_int_expr (gfc_index_integer_kind, NULL, 0);
2330 : 1492 : iter->end = gfc_lval_expr_from_sym (nelem);
2331 : 1492 : iter->step = gfc_get_int_expr (gfc_index_integer_kind, NULL, 1);
2332 : 1492 : last_code->next = gfc_get_code (EXEC_DO);
2333 : 1492 : last_code = last_code->next;
2334 : 1492 : last_code->ext.iterator = iter;
2335 : 1492 : last_code->block = gfc_get_code (EXEC_DO);
2336 : :
2337 : : /* Offset calculation. */
2338 : 1492 : block = finalization_get_offset (idx, idx2, offset, strides, sizes,
2339 : : byte_stride, rank, last_code->block,
2340 : : sub_ns);
2341 : :
2342 : : /* Create code for
2343 : : CALL C_F_POINTER (TRANSFER (TRANSFER (C_LOC (array, cptr), c_intptr)
2344 : : + idx * stride, c_ptr), ptr). */
2345 : 1492 : block->next = finalization_scalarizer (array, ptr,
2346 : : gfc_lval_expr_from_sym(offset),
2347 : : sub_ns);
2348 : 1492 : block = block->next;
2349 : :
2350 : 4070 : for (comp = derived->components; comp; comp = comp->next)
2351 : : {
2352 : 2578 : if (comp == derived->components && derived->attr.extension
2353 : 188 : && ancestor_wrapper && ancestor_wrapper->expr_type != EXPR_NULL)
2354 : 54 : continue;
2355 : :
2356 : 2524 : finalize_component (gfc_lval_expr_from_sym (ptr), derived, comp,
2357 : : stat, fini_coarray, &block, sub_ns);
2358 : 2524 : if (!last_code->block->next)
2359 : 0 : last_code->block->next = block;
2360 : : }
2361 : :
2362 : : }
2363 : :
2364 : : /* Call the finalizer of the ancestor. */
2365 : 1793 : if (ancestor_wrapper && ancestor_wrapper->expr_type != EXPR_NULL)
2366 : : {
2367 : 115 : last_code->next = gfc_get_code (EXEC_CALL);
2368 : 115 : last_code = last_code->next;
2369 : 115 : last_code->symtree = ancestor_wrapper->symtree;
2370 : 115 : last_code->resolved_sym = ancestor_wrapper->symtree->n.sym;
2371 : :
2372 : 115 : last_code->ext.actual = gfc_get_actual_arglist ();
2373 : 115 : last_code->ext.actual->expr = gfc_lval_expr_from_sym (array);
2374 : 115 : last_code->ext.actual->next = gfc_get_actual_arglist ();
2375 : 115 : last_code->ext.actual->next->expr = gfc_lval_expr_from_sym (byte_stride);
2376 : 115 : last_code->ext.actual->next->next = gfc_get_actual_arglist ();
2377 : 115 : last_code->ext.actual->next->next->expr
2378 : 115 : = gfc_lval_expr_from_sym (fini_coarray);
2379 : : }
2380 : :
2381 : 1793 : gfc_free_expr (rank);
2382 : 1793 : vtab_final->initializer = gfc_lval_expr_from_sym (final);
2383 : 1793 : vtab_final->ts.interface = final;
2384 : 1793 : free (name);
2385 : : }
2386 : :
2387 : :
2388 : : /* Add procedure pointers for all type-bound procedures to a vtab. */
2389 : :
2390 : : static void
2391 : 9908 : add_procs_to_declared_vtab (gfc_symbol *derived, gfc_symbol *vtype)
2392 : : {
2393 : 9908 : gfc_symbol* super_type;
2394 : :
2395 : 9908 : super_type = gfc_get_derived_super_type (derived);
2396 : :
2397 : 9908 : if (super_type && (super_type != derived))
2398 : : {
2399 : : /* Make sure that the PPCs appear in the same order as in the parent. */
2400 : 1330 : copy_vtab_proc_comps (super_type, vtype);
2401 : : /* Only needed to get the PPC initializers right. */
2402 : 1330 : add_procs_to_declared_vtab (super_type, vtype);
2403 : : }
2404 : :
2405 : 9908 : if (derived->f2k_derived && derived->f2k_derived->tb_sym_root)
2406 : 2065 : add_procs_to_declared_vtab1 (derived->f2k_derived->tb_sym_root, vtype);
2407 : :
2408 : 9908 : if (derived->f2k_derived && derived->f2k_derived->tb_uop_root)
2409 : 22 : add_procs_to_declared_vtab1 (derived->f2k_derived->tb_uop_root, vtype);
2410 : 9908 : }
2411 : :
2412 : :
2413 : : /* Find or generate the symbol for a derived type's vtab. */
2414 : :
2415 : : gfc_symbol *
2416 : 69166 : gfc_find_derived_vtab (gfc_symbol *derived)
2417 : : {
2418 : 69166 : gfc_namespace *ns;
2419 : 69166 : gfc_symbol *vtab = NULL, *vtype = NULL, *found_sym = NULL, *def_init = NULL;
2420 : 69166 : gfc_symbol *copy = NULL, *src = NULL, *dst = NULL;
2421 : 69166 : gfc_gsymbol *gsym = NULL;
2422 : 69166 : gfc_symbol *dealloc = NULL, *arg = NULL;
2423 : :
2424 : 69166 : if (derived->attr.pdt_template)
2425 : : return NULL;
2426 : :
2427 : : /* Find the top-level namespace. */
2428 : 77412 : for (ns = gfc_current_ns; ns; ns = ns->parent)
2429 : 77412 : if (!ns->parent)
2430 : : break;
2431 : :
2432 : : /* If the type is a class container, use the underlying derived type. */
2433 : 69152 : if (!derived->attr.unlimited_polymorphic && derived->attr.is_class)
2434 : 9432 : derived = gfc_get_derived_super_type (derived);
2435 : :
2436 : 9432 : if (!derived)
2437 : : return NULL;
2438 : :
2439 : 69152 : if (!derived->name)
2440 : : return NULL;
2441 : :
2442 : : /* Find the gsymbol for the module of use associated derived types. */
2443 : 69152 : if ((derived->attr.use_assoc || derived->attr.used_in_submodule)
2444 : 30943 : && !derived->attr.vtype && !derived->attr.is_class)
2445 : 30943 : gsym = gfc_find_gsymbol (gfc_gsym_root, derived->module);
2446 : : else
2447 : : gsym = NULL;
2448 : :
2449 : : /* Work in the gsymbol namespace if the top-level namespace is a module.
2450 : : This ensures that the vtable is unique, which is required since we use
2451 : : its address in SELECT TYPE. */
2452 : 30943 : if (gsym && gsym->ns && ns && ns->proc_name
2453 : 23173 : && ns->proc_name->attr.flavor == FL_MODULE)
2454 : : ns = gsym->ns;
2455 : :
2456 : 50506 : if (ns)
2457 : : {
2458 : 69152 : char tname[GFC_MAX_SYMBOL_LEN+1];
2459 : 69152 : char *name;
2460 : :
2461 : 69152 : get_unique_hashed_string (tname, derived);
2462 : 69152 : name = xasprintf ("__vtab_%s", tname);
2463 : :
2464 : : /* Look for the vtab symbol in various namespaces. */
2465 : 69152 : if (gsym && gsym->ns)
2466 : : {
2467 : 23173 : gfc_find_symbol (name, gsym->ns, 0, &vtab);
2468 : 23173 : if (vtab)
2469 : 22776 : ns = gsym->ns;
2470 : : }
2471 : 69152 : if (vtab == NULL)
2472 : 46376 : gfc_find_symbol (name, gfc_current_ns, 0, &vtab);
2473 : 69152 : if (vtab == NULL)
2474 : 14486 : gfc_find_symbol (name, ns, 0, &vtab);
2475 : 69152 : if (vtab == NULL)
2476 : 9241 : gfc_find_symbol (name, derived->ns, 0, &vtab);
2477 : :
2478 : 69152 : if (vtab == NULL)
2479 : : {
2480 : 9237 : gfc_get_symbol (name, ns, &vtab);
2481 : 9237 : vtab->ts.type = BT_DERIVED;
2482 : 9237 : if (!gfc_add_flavor (&vtab->attr, FL_VARIABLE, NULL,
2483 : : &gfc_current_locus))
2484 : 0 : goto cleanup;
2485 : 9237 : vtab->attr.target = 1;
2486 : 9237 : vtab->attr.save = SAVE_IMPLICIT;
2487 : 9237 : vtab->attr.vtab = 1;
2488 : 9237 : vtab->attr.access = ACCESS_PUBLIC;
2489 : 9237 : gfc_set_sym_referenced (vtab);
2490 : 9237 : free (name);
2491 : 9237 : name = xasprintf ("__vtype_%s", tname);
2492 : :
2493 : 9237 : gfc_find_symbol (name, ns, 0, &vtype);
2494 : 9237 : if (vtype == NULL)
2495 : : {
2496 : 9237 : gfc_component *c;
2497 : 9237 : gfc_symbol *parent = NULL, *parent_vtab = NULL;
2498 : 9237 : bool rdt = false;
2499 : :
2500 : : /* Is this a derived type with recursive allocatable
2501 : : components? */
2502 : 18474 : c = (derived->attr.unlimited_polymorphic
2503 : 9237 : || derived->attr.abstract) ?
2504 : : NULL : derived->components;
2505 : 19988 : for (; c; c= c->next)
2506 : 10852 : if (c->ts.type == BT_DERIVED
2507 : 2402 : && c->ts.u.derived == derived)
2508 : : {
2509 : : rdt = true;
2510 : : break;
2511 : : }
2512 : :
2513 : 9237 : gfc_get_symbol (name, ns, &vtype);
2514 : 9237 : if (!gfc_add_flavor (&vtype->attr, FL_DERIVED, NULL,
2515 : : &gfc_current_locus))
2516 : 0 : goto cleanup;
2517 : 9237 : vtype->attr.access = ACCESS_PUBLIC;
2518 : 9237 : vtype->attr.vtype = 1;
2519 : 9237 : gfc_set_sym_referenced (vtype);
2520 : :
2521 : : /* Add component '_hash'. */
2522 : 9237 : if (!gfc_add_component (vtype, "_hash", &c))
2523 : 0 : goto cleanup;
2524 : 9237 : c->ts.type = BT_INTEGER;
2525 : 9237 : c->ts.kind = 4;
2526 : 9237 : c->attr.access = ACCESS_PRIVATE;
2527 : 18474 : c->initializer = gfc_get_int_expr (gfc_default_integer_kind,
2528 : 9237 : NULL, derived->hash_value);
2529 : :
2530 : : /* Add component '_size'. */
2531 : 9237 : if (!gfc_add_component (vtype, "_size", &c))
2532 : 0 : goto cleanup;
2533 : 9237 : c->ts.type = BT_INTEGER;
2534 : 9237 : c->ts.kind = gfc_size_kind;
2535 : 9237 : c->attr.access = ACCESS_PRIVATE;
2536 : : /* Remember the derived type in ts.u.derived,
2537 : : so that the correct initializer can be set later on
2538 : : (in gfc_conv_structure). */
2539 : 9237 : c->ts.u.derived = derived;
2540 : 9237 : c->initializer = gfc_get_int_expr (gfc_size_kind,
2541 : : NULL, 0);
2542 : :
2543 : : /* Add component _extends. */
2544 : 9237 : if (!gfc_add_component (vtype, "_extends", &c))
2545 : 0 : goto cleanup;
2546 : 9237 : c->attr.pointer = 1;
2547 : 9237 : c->attr.access = ACCESS_PRIVATE;
2548 : 9237 : if (!derived->attr.unlimited_polymorphic)
2549 : 8581 : parent = gfc_get_derived_super_type (derived);
2550 : : else
2551 : : parent = NULL;
2552 : :
2553 : 8581 : if (parent)
2554 : : {
2555 : 1231 : parent_vtab = gfc_find_derived_vtab (parent);
2556 : 1231 : c->ts.type = BT_DERIVED;
2557 : 1231 : c->ts.u.derived = parent_vtab->ts.u.derived;
2558 : 1231 : c->initializer = gfc_get_expr ();
2559 : 1231 : c->initializer->expr_type = EXPR_VARIABLE;
2560 : 1231 : gfc_find_sym_tree (parent_vtab->name, parent_vtab->ns,
2561 : : 0, &c->initializer->symtree);
2562 : : }
2563 : : else
2564 : : {
2565 : 8006 : c->ts.type = BT_DERIVED;
2566 : 8006 : c->ts.u.derived = vtype;
2567 : 8006 : c->initializer = gfc_get_null_expr (NULL);
2568 : : }
2569 : :
2570 : 9237 : if (!derived->attr.unlimited_polymorphic
2571 : 8581 : && derived->components == NULL
2572 : 1025 : && !derived->attr.zero_comp)
2573 : : {
2574 : : /* At this point an error must have occurred.
2575 : : Prevent further errors on the vtype components. */
2576 : 3 : found_sym = vtab;
2577 : 3 : goto have_vtype;
2578 : : }
2579 : :
2580 : : /* Add component _def_init. */
2581 : 9234 : if (!gfc_add_component (vtype, "_def_init", &c))
2582 : 0 : goto cleanup;
2583 : 9234 : c->attr.pointer = 1;
2584 : 9234 : c->attr.artificial = 1;
2585 : 9234 : c->attr.access = ACCESS_PRIVATE;
2586 : 9234 : c->ts.type = BT_DERIVED;
2587 : 9234 : c->ts.u.derived = derived;
2588 : 9234 : if (derived->attr.unlimited_polymorphic
2589 : 9234 : || derived->attr.abstract)
2590 : 899 : c->initializer = gfc_get_null_expr (NULL);
2591 : : else
2592 : : {
2593 : : /* Construct default initialization variable. */
2594 : 8335 : free (name);
2595 : 8335 : name = xasprintf ("__def_init_%s", tname);
2596 : 8335 : gfc_get_symbol (name, ns, &def_init);
2597 : 8335 : def_init->attr.target = 1;
2598 : 8335 : def_init->attr.artificial = 1;
2599 : 8335 : def_init->attr.save = SAVE_IMPLICIT;
2600 : 8335 : def_init->attr.access = ACCESS_PUBLIC;
2601 : 8335 : def_init->attr.flavor = FL_VARIABLE;
2602 : 8335 : gfc_set_sym_referenced (def_init);
2603 : 8335 : def_init->ts.type = BT_DERIVED;
2604 : 8335 : def_init->ts.u.derived = derived;
2605 : 8335 : def_init->value = gfc_default_initializer (&def_init->ts);
2606 : :
2607 : 8335 : c->initializer = gfc_lval_expr_from_sym (def_init);
2608 : : }
2609 : :
2610 : : /* Add component _copy. */
2611 : 9234 : if (!gfc_add_component (vtype, "_copy", &c))
2612 : 0 : goto cleanup;
2613 : 9234 : c->attr.proc_pointer = 1;
2614 : 9234 : c->attr.access = ACCESS_PRIVATE;
2615 : 9234 : c->tb = XCNEW (gfc_typebound_proc);
2616 : 9234 : c->tb->ppc = 1;
2617 : 9234 : if (derived->attr.unlimited_polymorphic
2618 : 9234 : || derived->attr.abstract)
2619 : 899 : c->initializer = gfc_get_null_expr (NULL);
2620 : : else
2621 : : {
2622 : : /* Set up namespace. */
2623 : 8335 : gfc_namespace *sub_ns = gfc_get_namespace (ns, 0);
2624 : 8335 : sub_ns->sibling = ns->contained;
2625 : 8335 : ns->contained = sub_ns;
2626 : 8335 : sub_ns->resolved = 1;
2627 : : /* Set up procedure symbol. */
2628 : 8335 : free (name);
2629 : 8335 : name = xasprintf ("__copy_%s", tname);
2630 : 8335 : gfc_get_symbol (name, sub_ns, ©);
2631 : 8335 : sub_ns->proc_name = copy;
2632 : 8335 : copy->attr.flavor = FL_PROCEDURE;
2633 : 8335 : copy->attr.subroutine = 1;
2634 : 8335 : copy->attr.pure = 1;
2635 : 8335 : copy->attr.artificial = 1;
2636 : 8335 : copy->attr.if_source = IFSRC_DECL;
2637 : : /* This is elemental so that arrays are automatically
2638 : : treated correctly by the scalarizer. */
2639 : 8335 : copy->attr.elemental = 1;
2640 : 8335 : if (ns->proc_name->attr.flavor == FL_MODULE)
2641 : 6813 : copy->module = ns->proc_name->name;
2642 : 8335 : gfc_set_sym_referenced (copy);
2643 : : /* Set up formal arguments. */
2644 : 8335 : gfc_get_symbol ("src", sub_ns, &src);
2645 : 8335 : src->ts.type = BT_DERIVED;
2646 : 8335 : src->ts.u.derived = derived;
2647 : 8335 : src->attr.flavor = FL_VARIABLE;
2648 : 8335 : src->attr.dummy = 1;
2649 : 8335 : src->attr.artificial = 1;
2650 : 8335 : src->attr.intent = INTENT_IN;
2651 : 8335 : gfc_set_sym_referenced (src);
2652 : 8335 : copy->formal = gfc_get_formal_arglist ();
2653 : 8335 : copy->formal->sym = src;
2654 : 8335 : gfc_get_symbol ("dst", sub_ns, &dst);
2655 : 8335 : dst->ts.type = BT_DERIVED;
2656 : 8335 : dst->ts.u.derived = derived;
2657 : 8335 : dst->attr.flavor = FL_VARIABLE;
2658 : 8335 : dst->attr.dummy = 1;
2659 : 8335 : dst->attr.artificial = 1;
2660 : 8335 : dst->attr.intent = INTENT_INOUT;
2661 : 8335 : gfc_set_sym_referenced (dst);
2662 : 8335 : copy->formal->next = gfc_get_formal_arglist ();
2663 : 8335 : copy->formal->next->sym = dst;
2664 : : /* Set up code. */
2665 : 8335 : sub_ns->code = gfc_get_code (EXEC_INIT_ASSIGN);
2666 : 8335 : sub_ns->code->expr1 = gfc_lval_expr_from_sym (dst);
2667 : 8335 : sub_ns->code->expr2 = gfc_lval_expr_from_sym (src);
2668 : : /* Set initializer. */
2669 : 8335 : c->initializer = gfc_lval_expr_from_sym (copy);
2670 : 8335 : c->ts.interface = copy;
2671 : : }
2672 : :
2673 : : /* Add component _final, which contains a procedure pointer to
2674 : : a wrapper which handles both the freeing of allocatable
2675 : : components and the calls to finalization subroutines.
2676 : : Note: The actual wrapper function can only be generated
2677 : : at resolution time. */
2678 : 9234 : if (!gfc_add_component (vtype, "_final", &c))
2679 : 0 : goto cleanup;
2680 : 9234 : c->attr.proc_pointer = 1;
2681 : 9234 : c->attr.access = ACCESS_PRIVATE;
2682 : 9234 : c->attr.artificial = 1;
2683 : 9234 : c->tb = XCNEW (gfc_typebound_proc);
2684 : 9234 : c->tb->ppc = 1;
2685 : 9234 : generate_finalization_wrapper (derived, ns, tname, c);
2686 : :
2687 : : /* Add component _deallocate. */
2688 : 9234 : if (!gfc_add_component (vtype, "_deallocate", &c))
2689 : 0 : goto cleanup;
2690 : 9234 : c->attr.proc_pointer = 1;
2691 : 9234 : c->attr.access = ACCESS_PRIVATE;
2692 : 9234 : c->tb = XCNEW (gfc_typebound_proc);
2693 : 9234 : c->tb->ppc = 1;
2694 : 9234 : if (derived->attr.unlimited_polymorphic
2695 : 9234 : || derived->attr.abstract
2696 : 8335 : || !rdt)
2697 : 9133 : c->initializer = gfc_get_null_expr (NULL);
2698 : : else
2699 : : {
2700 : : /* Set up namespace. */
2701 : 101 : gfc_namespace *sub_ns = gfc_get_namespace (ns, 0);
2702 : :
2703 : 101 : sub_ns->sibling = ns->contained;
2704 : 101 : ns->contained = sub_ns;
2705 : 101 : sub_ns->resolved = 1;
2706 : : /* Set up procedure symbol. */
2707 : 101 : free (name);
2708 : 101 : name = xasprintf ("__deallocate_%s", tname);
2709 : 101 : gfc_get_symbol (name, sub_ns, &dealloc);
2710 : 101 : sub_ns->proc_name = dealloc;
2711 : 101 : dealloc->attr.flavor = FL_PROCEDURE;
2712 : 101 : dealloc->attr.subroutine = 1;
2713 : 101 : dealloc->attr.pure = 1;
2714 : 101 : dealloc->attr.artificial = 1;
2715 : 101 : dealloc->attr.if_source = IFSRC_DECL;
2716 : :
2717 : 101 : if (ns->proc_name->attr.flavor == FL_MODULE)
2718 : 73 : dealloc->module = ns->proc_name->name;
2719 : 101 : gfc_set_sym_referenced (dealloc);
2720 : : /* Set up formal argument. */
2721 : 101 : gfc_get_symbol ("arg", sub_ns, &arg);
2722 : 101 : arg->ts.type = BT_DERIVED;
2723 : 101 : arg->ts.u.derived = derived;
2724 : 101 : arg->attr.flavor = FL_VARIABLE;
2725 : 101 : arg->attr.dummy = 1;
2726 : 101 : arg->attr.artificial = 1;
2727 : 101 : arg->attr.intent = INTENT_INOUT;
2728 : 101 : arg->attr.dimension = 1;
2729 : 101 : arg->attr.allocatable = 1;
2730 : 101 : arg->as = gfc_get_array_spec();
2731 : 101 : arg->as->type = AS_ASSUMED_SHAPE;
2732 : 101 : arg->as->rank = 1;
2733 : 101 : arg->as->lower[0] = gfc_get_int_expr (gfc_default_integer_kind,
2734 : : NULL, 1);
2735 : 101 : gfc_set_sym_referenced (arg);
2736 : 101 : dealloc->formal = gfc_get_formal_arglist ();
2737 : 101 : dealloc->formal->sym = arg;
2738 : : /* Set up code. */
2739 : 101 : sub_ns->code = gfc_get_code (EXEC_DEALLOCATE);
2740 : 101 : sub_ns->code->ext.alloc.list = gfc_get_alloc ();
2741 : 101 : sub_ns->code->ext.alloc.list->expr
2742 : 101 : = gfc_lval_expr_from_sym (arg);
2743 : : /* Set initializer. */
2744 : 101 : c->initializer = gfc_lval_expr_from_sym (dealloc);
2745 : 101 : c->ts.interface = dealloc;
2746 : : }
2747 : :
2748 : : /* Add procedure pointers for type-bound procedures. */
2749 : 9234 : if (!derived->attr.unlimited_polymorphic)
2750 : 8578 : add_procs_to_declared_vtab (derived, vtype);
2751 : : }
2752 : :
2753 : 0 : have_vtype:
2754 : 9237 : vtab->ts.u.derived = vtype;
2755 : 9237 : vtab->value = gfc_default_initializer (&vtab->ts);
2756 : : }
2757 : 69152 : free (name);
2758 : : }
2759 : :
2760 : 69152 : found_sym = vtab;
2761 : :
2762 : 69152 : cleanup:
2763 : : /* It is unexpected to have some symbols added at resolution or code
2764 : : generation time. We commit the changes in order to keep a clean state. */
2765 : 69152 : if (found_sym)
2766 : : {
2767 : 69152 : gfc_commit_symbol (vtab);
2768 : 69152 : if (vtype)
2769 : 9237 : gfc_commit_symbol (vtype);
2770 : 69152 : if (def_init)
2771 : 8335 : gfc_commit_symbol (def_init);
2772 : 69152 : if (copy)
2773 : 8335 : gfc_commit_symbol (copy);
2774 : 69152 : if (src)
2775 : 8335 : gfc_commit_symbol (src);
2776 : 69152 : if (dst)
2777 : 8335 : gfc_commit_symbol (dst);
2778 : 69152 : if (dealloc)
2779 : 101 : gfc_commit_symbol (dealloc);
2780 : 69152 : if (arg)
2781 : 101 : gfc_commit_symbol (arg);
2782 : : }
2783 : : else
2784 : 0 : gfc_undo_symbols ();
2785 : :
2786 : : return found_sym;
2787 : : }
2788 : :
2789 : :
2790 : : /* Check if a derived type is finalizable. That is the case if it
2791 : : (1) has a FINAL subroutine or
2792 : : (2) has a nonpointer nonallocatable component of finalizable type.
2793 : : If it is finalizable, return an expression containing the
2794 : : finalization wrapper. */
2795 : :
2796 : : bool
2797 : 48691 : gfc_is_finalizable (gfc_symbol *derived, gfc_expr **final_expr)
2798 : : {
2799 : 48691 : gfc_symbol *vtab;
2800 : 48691 : gfc_component *c;
2801 : :
2802 : : /* (1) Check for FINAL subroutines. */
2803 : 48691 : if (derived->f2k_derived && derived->f2k_derived->finalizers)
2804 : 4479 : goto yes;
2805 : :
2806 : : /* (2) Check for components of finalizable type. */
2807 : 124543 : for (c = derived->components; c; c = c->next)
2808 : 80772 : if (c->ts.type == BT_DERIVED
2809 : 16950 : && !c->attr.pointer && !c->attr.proc_pointer && !c->attr.allocatable
2810 : 86316 : && gfc_is_finalizable (c->ts.u.derived, NULL))
2811 : 441 : goto yes;
2812 : :
2813 : : return false;
2814 : :
2815 : 4920 : yes:
2816 : : /* Make sure vtab is generated. */
2817 : 4920 : vtab = gfc_find_derived_vtab (derived);
2818 : 4920 : if (final_expr)
2819 : : {
2820 : : /* Return finalizer expression. */
2821 : 704 : gfc_component *final;
2822 : 704 : final = vtab->ts.u.derived->components->next->next->next->next->next;
2823 : 704 : gcc_assert (strcmp (final->name, "_final") == 0);
2824 : 704 : gcc_assert (final->initializer
2825 : : && final->initializer->expr_type != EXPR_NULL);
2826 : 704 : *final_expr = final->initializer;
2827 : : }
2828 : : return true;
2829 : : }
2830 : :
2831 : :
2832 : : bool
2833 : 291255 : gfc_may_be_finalized (gfc_typespec ts)
2834 : : {
2835 : 291255 : return (ts.type == BT_CLASS || (ts.type == BT_DERIVED
2836 : 23056 : && ts.u.derived && gfc_is_finalizable (ts.u.derived, NULL)));
2837 : : }
2838 : :
2839 : :
2840 : : /* Find (or generate) the symbol for an intrinsic type's vtab. This is
2841 : : needed to support unlimited polymorphism. */
2842 : :
2843 : : static gfc_symbol *
2844 : 5749 : find_intrinsic_vtab (gfc_typespec *ts)
2845 : : {
2846 : 5749 : gfc_namespace *ns;
2847 : 5749 : gfc_symbol *vtab = NULL, *vtype = NULL, *found_sym = NULL;
2848 : 5749 : gfc_symbol *copy = NULL, *src = NULL, *dst = NULL;
2849 : :
2850 : : /* Find the top-level namespace. */
2851 : 7393 : for (ns = gfc_current_ns; ns; ns = ns->parent)
2852 : 7393 : if (!ns->parent)
2853 : : break;
2854 : :
2855 : 5749 : if (ns)
2856 : : {
2857 : 5749 : char tname[GFC_MAX_SYMBOL_LEN+1];
2858 : 5749 : char *name;
2859 : :
2860 : : /* Encode all types as TYPENAME_KIND_ including especially character
2861 : : arrays, whose length is now consistently stored in the _len component
2862 : : of the class-variable. */
2863 : 5749 : sprintf (tname, "%s_%d_", gfc_basic_typename (ts->type), ts->kind);
2864 : 5749 : name = xasprintf ("__vtab_%s", tname);
2865 : :
2866 : : /* Look for the vtab symbol in the top-level namespace only. */
2867 : 5749 : gfc_find_symbol (name, ns, 0, &vtab);
2868 : :
2869 : 5749 : if (vtab == NULL)
2870 : : {
2871 : 777 : gfc_get_symbol (name, ns, &vtab);
2872 : 777 : vtab->ts.type = BT_DERIVED;
2873 : 777 : if (!gfc_add_flavor (&vtab->attr, FL_VARIABLE, NULL,
2874 : : &gfc_current_locus))
2875 : 0 : goto cleanup;
2876 : 777 : vtab->attr.target = 1;
2877 : 777 : vtab->attr.save = SAVE_IMPLICIT;
2878 : 777 : vtab->attr.vtab = 1;
2879 : 777 : vtab->attr.access = ACCESS_PUBLIC;
2880 : 777 : gfc_set_sym_referenced (vtab);
2881 : 777 : free (name);
2882 : 777 : name = xasprintf ("__vtype_%s", tname);
2883 : :
2884 : 777 : gfc_find_symbol (name, ns, 0, &vtype);
2885 : 777 : if (vtype == NULL)
2886 : : {
2887 : 777 : gfc_component *c;
2888 : 777 : int hash;
2889 : 777 : gfc_namespace *sub_ns;
2890 : 777 : gfc_namespace *contained;
2891 : 777 : gfc_expr *e;
2892 : 777 : size_t e_size;
2893 : :
2894 : 777 : gfc_get_symbol (name, ns, &vtype);
2895 : 777 : if (!gfc_add_flavor (&vtype->attr, FL_DERIVED, NULL,
2896 : : &gfc_current_locus))
2897 : 0 : goto cleanup;
2898 : 777 : vtype->attr.access = ACCESS_PUBLIC;
2899 : 777 : vtype->attr.vtype = 1;
2900 : 777 : gfc_set_sym_referenced (vtype);
2901 : :
2902 : : /* Add component '_hash'. */
2903 : 777 : if (!gfc_add_component (vtype, "_hash", &c))
2904 : 0 : goto cleanup;
2905 : 777 : c->ts.type = BT_INTEGER;
2906 : 777 : c->ts.kind = 4;
2907 : 777 : c->attr.access = ACCESS_PRIVATE;
2908 : 777 : hash = gfc_intrinsic_hash_value (ts);
2909 : 777 : c->initializer = gfc_get_int_expr (gfc_default_integer_kind,
2910 : : NULL, hash);
2911 : :
2912 : : /* Add component '_size'. */
2913 : 777 : if (!gfc_add_component (vtype, "_size", &c))
2914 : 0 : goto cleanup;
2915 : 777 : c->ts.type = BT_INTEGER;
2916 : 777 : c->ts.kind = gfc_size_kind;
2917 : 777 : c->attr.access = ACCESS_PRIVATE;
2918 : :
2919 : : /* Build a minimal expression to make use of
2920 : : target-memory.cc/gfc_element_size for 'size'. Special handling
2921 : : for character arrays, that are not constant sized: to support
2922 : : len (str) * kind, only the kind information is stored in the
2923 : : vtab. */
2924 : 777 : e = gfc_get_expr ();
2925 : 777 : e->ts = *ts;
2926 : 777 : e->expr_type = EXPR_VARIABLE;
2927 : 777 : if (ts->type == BT_CHARACTER)
2928 : 232 : e_size = ts->kind;
2929 : : else
2930 : 545 : gfc_element_size (e, &e_size);
2931 : 777 : c->initializer = gfc_get_int_expr (gfc_size_kind,
2932 : : NULL,
2933 : : e_size);
2934 : 777 : gfc_free_expr (e);
2935 : :
2936 : : /* Add component _extends. */
2937 : 777 : if (!gfc_add_component (vtype, "_extends", &c))
2938 : 0 : goto cleanup;
2939 : 777 : c->attr.pointer = 1;
2940 : 777 : c->attr.access = ACCESS_PRIVATE;
2941 : 777 : c->ts.type = BT_VOID;
2942 : 777 : c->initializer = gfc_get_null_expr (NULL);
2943 : :
2944 : : /* Add component _def_init. */
2945 : 777 : if (!gfc_add_component (vtype, "_def_init", &c))
2946 : 0 : goto cleanup;
2947 : 777 : c->attr.pointer = 1;
2948 : 777 : c->attr.access = ACCESS_PRIVATE;
2949 : 777 : c->ts.type = BT_VOID;
2950 : 777 : c->initializer = gfc_get_null_expr (NULL);
2951 : :
2952 : : /* Add component _copy. */
2953 : 777 : if (!gfc_add_component (vtype, "_copy", &c))
2954 : 0 : goto cleanup;
2955 : 777 : c->attr.proc_pointer = 1;
2956 : 777 : c->attr.access = ACCESS_PRIVATE;
2957 : 777 : c->tb = XCNEW (gfc_typebound_proc);
2958 : 777 : c->tb->ppc = 1;
2959 : :
2960 : 777 : free (name);
2961 : 777 : if (ts->type != BT_CHARACTER)
2962 : 545 : name = xasprintf ("__copy_%s", tname);
2963 : : else
2964 : : {
2965 : : /* __copy is always the same for characters.
2966 : : Check to see if copy function already exists. */
2967 : 232 : name = xasprintf ("__copy_character_%d", ts->kind);
2968 : 232 : contained = ns->contained;
2969 : 1205 : for (; contained; contained = contained->sibling)
2970 : 973 : if (contained->proc_name
2971 : 973 : && strcmp (name, contained->proc_name->name) == 0)
2972 : : {
2973 : 0 : copy = contained->proc_name;
2974 : 0 : goto got_char_copy;
2975 : : }
2976 : : }
2977 : :
2978 : : /* Set up namespace. */
2979 : 777 : sub_ns = gfc_get_namespace (ns, 0);
2980 : 777 : sub_ns->sibling = ns->contained;
2981 : 777 : ns->contained = sub_ns;
2982 : 777 : sub_ns->resolved = 1;
2983 : : /* Set up procedure symbol. */
2984 : 777 : gfc_get_symbol (name, sub_ns, ©);
2985 : 777 : sub_ns->proc_name = copy;
2986 : 777 : copy->attr.flavor = FL_PROCEDURE;
2987 : 777 : copy->attr.subroutine = 1;
2988 : 777 : copy->attr.pure = 1;
2989 : 777 : copy->attr.if_source = IFSRC_DECL;
2990 : : /* This is elemental so that arrays are automatically
2991 : : treated correctly by the scalarizer. */
2992 : 777 : copy->attr.elemental = 1;
2993 : 777 : if (ns->proc_name && ns->proc_name->attr.flavor == FL_MODULE)
2994 : 172 : copy->module = ns->proc_name->name;
2995 : 777 : gfc_set_sym_referenced (copy);
2996 : : /* Set up formal arguments. */
2997 : 777 : gfc_get_symbol ("src", sub_ns, &src);
2998 : 777 : src->ts.type = ts->type;
2999 : 777 : src->ts.kind = ts->kind;
3000 : 777 : src->attr.flavor = FL_VARIABLE;
3001 : 777 : src->attr.dummy = 1;
3002 : 777 : src->attr.intent = INTENT_IN;
3003 : 777 : gfc_set_sym_referenced (src);
3004 : 777 : copy->formal = gfc_get_formal_arglist ();
3005 : 777 : copy->formal->sym = src;
3006 : 777 : gfc_get_symbol ("dst", sub_ns, &dst);
3007 : 777 : dst->ts.type = ts->type;
3008 : 777 : dst->ts.kind = ts->kind;
3009 : 777 : dst->attr.flavor = FL_VARIABLE;
3010 : 777 : dst->attr.dummy = 1;
3011 : 777 : dst->attr.intent = INTENT_INOUT;
3012 : 777 : gfc_set_sym_referenced (dst);
3013 : 777 : copy->formal->next = gfc_get_formal_arglist ();
3014 : 777 : copy->formal->next->sym = dst;
3015 : : /* Set up code. */
3016 : 777 : sub_ns->code = gfc_get_code (EXEC_INIT_ASSIGN);
3017 : 777 : sub_ns->code->expr1 = gfc_lval_expr_from_sym (dst);
3018 : 777 : sub_ns->code->expr2 = gfc_lval_expr_from_sym (src);
3019 : 777 : got_char_copy:
3020 : : /* Set initializer. */
3021 : 777 : c->initializer = gfc_lval_expr_from_sym (copy);
3022 : 777 : c->ts.interface = copy;
3023 : :
3024 : : /* Add component _final. */
3025 : 777 : if (!gfc_add_component (vtype, "_final", &c))
3026 : 0 : goto cleanup;
3027 : 777 : c->attr.proc_pointer = 1;
3028 : 777 : c->attr.access = ACCESS_PRIVATE;
3029 : 777 : c->attr.artificial = 1;
3030 : 777 : c->tb = XCNEW (gfc_typebound_proc);
3031 : 777 : c->tb->ppc = 1;
3032 : 777 : c->initializer = gfc_get_null_expr (NULL);
3033 : : }
3034 : 777 : vtab->ts.u.derived = vtype;
3035 : 777 : vtab->value = gfc_default_initializer (&vtab->ts);
3036 : : }
3037 : 5749 : free (name);
3038 : : }
3039 : :
3040 : 5749 : found_sym = vtab;
3041 : :
3042 : 5749 : cleanup:
3043 : : /* It is unexpected to have some symbols added at resolution or code
3044 : : generation time. We commit the changes in order to keep a clean state. */
3045 : 5749 : if (found_sym)
3046 : : {
3047 : 5749 : gfc_commit_symbol (vtab);
3048 : 5749 : if (vtype)
3049 : 777 : gfc_commit_symbol (vtype);
3050 : 5749 : if (copy)
3051 : 777 : gfc_commit_symbol (copy);
3052 : 5749 : if (src)
3053 : 777 : gfc_commit_symbol (src);
3054 : 5749 : if (dst)
3055 : 777 : gfc_commit_symbol (dst);
3056 : : }
3057 : : else
3058 : 0 : gfc_undo_symbols ();
3059 : :
3060 : 5749 : return found_sym;
3061 : : }
3062 : :
3063 : :
3064 : : /* Find (or generate) a vtab for an arbitrary type (derived or intrinsic). */
3065 : :
3066 : : gfc_symbol *
3067 : 16987 : gfc_find_vtab (gfc_typespec *ts)
3068 : : {
3069 : 16987 : switch (ts->type)
3070 : : {
3071 : : case BT_UNKNOWN:
3072 : : return NULL;
3073 : 6705 : case BT_DERIVED:
3074 : 6705 : return gfc_find_derived_vtab (ts->u.derived);
3075 : 4499 : case BT_CLASS:
3076 : 4499 : if (ts->u.derived->attr.is_class
3077 : 4495 : && ts->u.derived->components
3078 : 4495 : && ts->u.derived->components->ts.u.derived)
3079 : 4495 : return gfc_find_derived_vtab (ts->u.derived->components->ts.u.derived);
3080 : : else
3081 : : return NULL;
3082 : 5749 : default:
3083 : 5749 : return find_intrinsic_vtab (ts);
3084 : : }
3085 : : }
3086 : :
3087 : :
3088 : : /* General worker function to find either a type-bound procedure or a
3089 : : type-bound user operator. */
3090 : :
3091 : : static gfc_symtree*
3092 : 400210 : find_typebound_proc_uop (gfc_symbol* derived, bool* t,
3093 : : const char* name, bool noaccess, bool uop,
3094 : : locus* where)
3095 : : {
3096 : 400210 : gfc_symtree* res;
3097 : 400210 : gfc_symtree* root;
3098 : :
3099 : : /* Set default to failure. */
3100 : 400210 : if (t)
3101 : 382242 : *t = false;
3102 : :
3103 : 400210 : if (derived->f2k_derived)
3104 : : /* Set correct symbol-root. */
3105 : 302405 : root = (uop ? derived->f2k_derived->tb_uop_root
3106 : : : derived->f2k_derived->tb_sym_root);
3107 : : else
3108 : : return NULL;
3109 : :
3110 : : /* Try to find it in the current type's namespace. */
3111 : 302405 : res = gfc_find_symtree (root, name);
3112 : 302405 : if (res && res->n.tb && !res->n.tb->error)
3113 : : {
3114 : : /* We found one. */
3115 : 9959 : if (t)
3116 : 5655 : *t = true;
3117 : :
3118 : 9959 : if (!noaccess && derived->attr.use_assoc
3119 : 3078 : && res->n.tb->access == ACCESS_PRIVATE)
3120 : : {
3121 : 3 : if (where)
3122 : 2 : gfc_error ("%qs of %qs is PRIVATE at %L",
3123 : : name, derived->name, where);
3124 : 3 : if (t)
3125 : 3 : *t = false;
3126 : : }
3127 : :
3128 : 9959 : return res;
3129 : : }
3130 : :
3131 : : /* Otherwise, recurse on parent type if derived is an extension. */
3132 : 292446 : if (derived->attr.extension)
3133 : : {
3134 : 40883 : gfc_symbol* super_type;
3135 : 40883 : super_type = gfc_get_derived_super_type (derived);
3136 : 40883 : gcc_assert (super_type);
3137 : :
3138 : 40883 : return find_typebound_proc_uop (super_type, t, name,
3139 : 40883 : noaccess, uop, where);
3140 : : }
3141 : :
3142 : : /* Nothing found. */
3143 : : return NULL;
3144 : : }
3145 : :
3146 : :
3147 : : /* Find a type-bound procedure or user operator by name for a derived-type
3148 : : (looking recursively through the super-types). */
3149 : :
3150 : : gfc_symtree*
3151 : 359149 : gfc_find_typebound_proc (gfc_symbol* derived, bool* t,
3152 : : const char* name, bool noaccess, locus* where)
3153 : : {
3154 : 359149 : return find_typebound_proc_uop (derived, t, name, noaccess, false, where);
3155 : : }
3156 : :
3157 : : gfc_symtree*
3158 : 178 : gfc_find_typebound_user_op (gfc_symbol* derived, bool* t,
3159 : : const char* name, bool noaccess, locus* where)
3160 : : {
3161 : 178 : return find_typebound_proc_uop (derived, t, name, noaccess, true, where);
3162 : : }
3163 : :
3164 : :
3165 : : /* Find a type-bound intrinsic operator looking recursively through the
3166 : : super-type hierarchy. */
3167 : :
3168 : : gfc_typebound_proc*
3169 : 19809 : gfc_find_typebound_intrinsic_op (gfc_symbol* derived, bool* t,
3170 : : gfc_intrinsic_op op, bool noaccess,
3171 : : locus* where)
3172 : : {
3173 : 19809 : gfc_typebound_proc* res;
3174 : :
3175 : : /* Set default to failure. */
3176 : 19809 : if (t)
3177 : 19808 : *t = false;
3178 : :
3179 : : /* Try to find it in the current type's namespace. */
3180 : 19809 : if (derived->f2k_derived)
3181 : 16241 : res = derived->f2k_derived->tb_op[op];
3182 : : else
3183 : : res = NULL;
3184 : :
3185 : : /* Check access. */
3186 : 16241 : if (res && !res->error)
3187 : : {
3188 : : /* We found one. */
3189 : 835 : if (t)
3190 : 834 : *t = true;
3191 : :
3192 : 835 : if (!noaccess && derived->attr.use_assoc
3193 : 700 : && res->access == ACCESS_PRIVATE)
3194 : : {
3195 : 2 : if (where)
3196 : 0 : gfc_error ("%qs of %qs is PRIVATE at %L",
3197 : : gfc_op2string (op), derived->name, where);
3198 : 2 : if (t)
3199 : 2 : *t = false;
3200 : : }
3201 : :
3202 : 835 : return res;
3203 : : }
3204 : :
3205 : : /* Otherwise, recurse on parent type if derived is an extension. */
3206 : 18974 : if (derived->attr.extension)
3207 : : {
3208 : 666 : gfc_symbol* super_type;
3209 : 666 : super_type = gfc_get_derived_super_type (derived);
3210 : 666 : gcc_assert (super_type);
3211 : :
3212 : 666 : return gfc_find_typebound_intrinsic_op (super_type, t, op,
3213 : 666 : noaccess, where);
3214 : : }
3215 : :
3216 : : /* Nothing found. */
3217 : : return NULL;
3218 : : }
3219 : :
3220 : :
3221 : : /* Get a typebound-procedure symtree or create and insert it if not yet
3222 : : present. This is like a very simplified version of gfc_get_sym_tree for
3223 : : tbp-symtrees rather than regular ones. */
3224 : :
3225 : : gfc_symtree*
3226 : 7942 : gfc_get_tbp_symtree (gfc_symtree **root, const char *name)
3227 : : {
3228 : 7942 : gfc_symtree *result = gfc_find_symtree (*root, name);
3229 : 7942 : return result ? result : gfc_new_symtree (root, name);
3230 : : }
|