Branch data Line data Source code
1 : : /* Maintain binary trees of symbols.
2 : : Copyright (C) 2000-2024 Free Software Foundation, Inc.
3 : : Contributed by Andy Vaught
4 : :
5 : : This file is part of GCC.
6 : :
7 : : GCC is free software; you can redistribute it and/or modify it under
8 : : the terms of the GNU General Public License as published by the Free
9 : : Software Foundation; either version 3, or (at your option) any later
10 : : version.
11 : :
12 : : GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 : : WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 : : FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 : : for more details.
16 : :
17 : : You should have received a copy of the GNU General Public License
18 : : along with GCC; see the file COPYING3. If not see
19 : : <http://www.gnu.org/licenses/>. */
20 : :
21 : :
22 : : #include "config.h"
23 : : #include "system.h"
24 : : #include "coretypes.h"
25 : : #include "options.h"
26 : : #include "gfortran.h"
27 : : #include "parse.h"
28 : : #include "match.h"
29 : : #include "constructor.h"
30 : :
31 : :
32 : : /* Strings for all symbol attributes. We use these for dumping the
33 : : parse tree, in error messages, and also when reading and writing
34 : : modules. */
35 : :
36 : : const mstring flavors[] =
37 : : {
38 : : minit ("UNKNOWN-FL", FL_UNKNOWN), minit ("PROGRAM", FL_PROGRAM),
39 : : minit ("BLOCK-DATA", FL_BLOCK_DATA), minit ("MODULE", FL_MODULE),
40 : : minit ("VARIABLE", FL_VARIABLE), minit ("PARAMETER", FL_PARAMETER),
41 : : minit ("LABEL", FL_LABEL), minit ("PROCEDURE", FL_PROCEDURE),
42 : : minit ("DERIVED", FL_DERIVED), minit ("NAMELIST", FL_NAMELIST),
43 : : minit ("UNION", FL_UNION), minit ("STRUCTURE", FL_STRUCT),
44 : : minit (NULL, -1)
45 : : };
46 : :
47 : : const mstring procedures[] =
48 : : {
49 : : minit ("UNKNOWN-PROC", PROC_UNKNOWN),
50 : : minit ("MODULE-PROC", PROC_MODULE),
51 : : minit ("INTERNAL-PROC", PROC_INTERNAL),
52 : : minit ("DUMMY-PROC", PROC_DUMMY),
53 : : minit ("INTRINSIC-PROC", PROC_INTRINSIC),
54 : : minit ("EXTERNAL-PROC", PROC_EXTERNAL),
55 : : minit ("STATEMENT-PROC", PROC_ST_FUNCTION),
56 : : minit (NULL, -1)
57 : : };
58 : :
59 : : const mstring intents[] =
60 : : {
61 : : minit ("UNKNOWN-INTENT", INTENT_UNKNOWN),
62 : : minit ("IN", INTENT_IN),
63 : : minit ("OUT", INTENT_OUT),
64 : : minit ("INOUT", INTENT_INOUT),
65 : : minit (NULL, -1)
66 : : };
67 : :
68 : : const mstring access_types[] =
69 : : {
70 : : minit ("UNKNOWN-ACCESS", ACCESS_UNKNOWN),
71 : : minit ("PUBLIC", ACCESS_PUBLIC),
72 : : minit ("PRIVATE", ACCESS_PRIVATE),
73 : : minit (NULL, -1)
74 : : };
75 : :
76 : : const mstring ifsrc_types[] =
77 : : {
78 : : minit ("UNKNOWN", IFSRC_UNKNOWN),
79 : : minit ("DECL", IFSRC_DECL),
80 : : minit ("BODY", IFSRC_IFBODY)
81 : : };
82 : :
83 : : const mstring save_status[] =
84 : : {
85 : : minit ("UNKNOWN", SAVE_NONE),
86 : : minit ("EXPLICIT-SAVE", SAVE_EXPLICIT),
87 : : minit ("IMPLICIT-SAVE", SAVE_IMPLICIT),
88 : : };
89 : :
90 : : /* Set the mstrings for DTIO procedure names. */
91 : : const mstring dtio_procs[] =
92 : : {
93 : : minit ("_dtio_formatted_read", DTIO_RF),
94 : : minit ("_dtio_formatted_write", DTIO_WF),
95 : : minit ("_dtio_unformatted_read", DTIO_RUF),
96 : : minit ("_dtio_unformatted_write", DTIO_WUF),
97 : : };
98 : :
99 : : /* This is to make sure the backend generates setup code in the correct
100 : : order. */
101 : : static int next_decl_order = 1;
102 : :
103 : : gfc_namespace *gfc_current_ns;
104 : : gfc_namespace *gfc_global_ns_list;
105 : :
106 : : gfc_gsymbol *gfc_gsym_root = NULL;
107 : :
108 : : gfc_symbol *gfc_derived_types;
109 : :
110 : : static gfc_undo_change_set default_undo_chgset_var = { vNULL, vNULL, NULL };
111 : : static gfc_undo_change_set *latest_undo_chgset = &default_undo_chgset_var;
112 : :
113 : :
114 : : /*********** IMPLICIT NONE and IMPLICIT statement handlers ***********/
115 : :
116 : : /* The following static variable indicates whether a particular element has
117 : : been explicitly set or not. */
118 : :
119 : : static int new_flag[GFC_LETTERS];
120 : :
121 : :
122 : : /* Handle a correctly parsed IMPLICIT NONE. */
123 : :
124 : : void
125 : 22129 : gfc_set_implicit_none (bool type, bool external, locus *loc)
126 : : {
127 : 22129 : int i;
128 : :
129 : 22129 : if (external)
130 : 973 : gfc_current_ns->has_implicit_none_export = 1;
131 : :
132 : 22129 : if (type)
133 : : {
134 : 22118 : gfc_current_ns->seen_implicit_none = 1;
135 : 597135 : for (i = 0; i < GFC_LETTERS; i++)
136 : : {
137 : 575019 : if (gfc_current_ns->set_flag[i])
138 : : {
139 : 2 : gfc_error_now ("IMPLICIT NONE (type) statement at %L following an "
140 : : "IMPLICIT statement", loc);
141 : 2 : return;
142 : : }
143 : 575017 : gfc_clear_ts (&gfc_current_ns->default_type[i]);
144 : 575017 : gfc_current_ns->set_flag[i] = 1;
145 : : }
146 : : }
147 : : }
148 : :
149 : :
150 : : /* Reset the implicit range flags. */
151 : :
152 : : void
153 : 22773 : gfc_clear_new_implicit (void)
154 : : {
155 : 22773 : int i;
156 : :
157 : 614871 : for (i = 0; i < GFC_LETTERS; i++)
158 : 592098 : new_flag[i] = 0;
159 : 22773 : }
160 : :
161 : :
162 : : /* Prepare for a new implicit range. Sets flags in new_flag[]. */
163 : :
164 : : bool
165 : 672 : gfc_add_new_implicit_range (int c1, int c2)
166 : : {
167 : 672 : int i;
168 : :
169 : 672 : c1 -= 'a';
170 : 672 : c2 -= 'a';
171 : :
172 : 6241 : for (i = c1; i <= c2; i++)
173 : : {
174 : 5569 : if (new_flag[i])
175 : : {
176 : 0 : gfc_error ("Letter %qc already set in IMPLICIT statement at %C",
177 : : i + 'A');
178 : 0 : return false;
179 : : }
180 : :
181 : 5569 : new_flag[i] = 1;
182 : : }
183 : :
184 : : return true;
185 : : }
186 : :
187 : :
188 : : /* Add a matched implicit range for gfc_set_implicit(). Check if merging
189 : : the new implicit types back into the existing types will work. */
190 : :
191 : : bool
192 : 465 : gfc_merge_new_implicit (gfc_typespec *ts)
193 : : {
194 : 465 : int i;
195 : :
196 : 465 : if (gfc_current_ns->seen_implicit_none)
197 : : {
198 : 0 : gfc_error ("Cannot specify IMPLICIT at %C after IMPLICIT NONE");
199 : 0 : return false;
200 : : }
201 : :
202 : 12509 : for (i = 0; i < GFC_LETTERS; i++)
203 : : {
204 : 12046 : if (new_flag[i])
205 : : {
206 : 5531 : if (gfc_current_ns->set_flag[i])
207 : : {
208 : 2 : gfc_error ("Letter %qc already has an IMPLICIT type at %C",
209 : : i + 'A');
210 : 2 : return false;
211 : : }
212 : :
213 : 5529 : gfc_current_ns->default_type[i] = *ts;
214 : 5529 : gfc_current_ns->implicit_loc[i] = gfc_current_locus;
215 : 5529 : gfc_current_ns->set_flag[i] = 1;
216 : : }
217 : : }
218 : : return true;
219 : : }
220 : :
221 : :
222 : : /* Given a symbol, return a pointer to the typespec for its default type. */
223 : :
224 : : gfc_typespec *
225 : 2746751 : gfc_get_default_type (const char *name, gfc_namespace *ns)
226 : : {
227 : 2746751 : char letter;
228 : :
229 : 2746751 : letter = name[0];
230 : :
231 : 2746751 : if (flag_allow_leading_underscore && letter == '_')
232 : 0 : gfc_fatal_error ("Option %<-fallow-leading-underscore%> is for use only by "
233 : : "gfortran developers, and should not be used for "
234 : : "implicitly typed variables");
235 : :
236 : 2746751 : if (letter < 'a' || letter > 'z')
237 : 0 : gfc_internal_error ("gfc_get_default_type(): Bad symbol %qs", name);
238 : :
239 : 2746751 : if (ns == NULL)
240 : 265389 : ns = gfc_current_ns;
241 : :
242 : 2746751 : return &ns->default_type[letter - 'a'];
243 : : }
244 : :
245 : :
246 : : /* Recursively append candidate SYM to CANDIDATES. Store the number of
247 : : candidates in CANDIDATES_LEN. */
248 : :
249 : : static void
250 : 496 : lookup_symbol_fuzzy_find_candidates (gfc_symtree *sym,
251 : : char **&candidates,
252 : : size_t &candidates_len)
253 : : {
254 : 877 : gfc_symtree *p;
255 : :
256 : 877 : if (sym == NULL)
257 : : return;
258 : :
259 : 877 : if (sym->n.sym->ts.type != BT_UNKNOWN && sym->n.sym->ts.type != BT_PROCEDURE)
260 : 480 : vec_push (candidates, candidates_len, sym->name);
261 : 877 : p = sym->left;
262 : 877 : if (p)
263 : 372 : lookup_symbol_fuzzy_find_candidates (p, candidates, candidates_len);
264 : :
265 : 877 : p = sym->right;
266 : 877 : if (p)
267 : : lookup_symbol_fuzzy_find_candidates (p, candidates, candidates_len);
268 : : }
269 : :
270 : :
271 : : /* Lookup symbol SYM_NAME fuzzily, taking names in SYMBOL into account. */
272 : :
273 : : static const char*
274 : 124 : lookup_symbol_fuzzy (const char *sym_name, gfc_symbol *symbol)
275 : : {
276 : 124 : char **candidates = NULL;
277 : 124 : size_t candidates_len = 0;
278 : 124 : lookup_symbol_fuzzy_find_candidates (symbol->ns->sym_root, candidates,
279 : : candidates_len);
280 : 124 : return gfc_closest_fuzzy_match (sym_name, candidates);
281 : : }
282 : :
283 : :
284 : : /* Given a pointer to a symbol, set its type according to the first
285 : : letter of its name. Fails if the letter in question has no default
286 : : type. */
287 : :
288 : : bool
289 : 110013 : gfc_set_default_type (gfc_symbol *sym, int error_flag, gfc_namespace *ns)
290 : : {
291 : 110013 : gfc_typespec *ts;
292 : 110013 : gfc_expr *e;
293 : :
294 : : /* Check to see if a function selector of unknown type can be resolved. */
295 : 110013 : if (sym->assoc
296 : 14 : && (e = sym->assoc->target)
297 : 110027 : && e->expr_type == EXPR_FUNCTION)
298 : : {
299 : 1 : if (e->ts.type == BT_UNKNOWN)
300 : 1 : gfc_resolve_expr (e);
301 : 1 : sym->ts = e->ts;
302 : 1 : if (sym->ts.type != BT_UNKNOWN)
303 : : return true;
304 : : }
305 : :
306 : 110013 : if (sym->ts.type != BT_UNKNOWN)
307 : 0 : gfc_internal_error ("gfc_set_default_type(): symbol already has a type");
308 : :
309 : 110013 : ts = gfc_get_default_type (sym->name, ns);
310 : :
311 : 110013 : if (ts->type == BT_UNKNOWN)
312 : : {
313 : 56681 : if (error_flag && !sym->attr.untyped && !gfc_query_suppress_errors ())
314 : : {
315 : 124 : const char *guessed = lookup_symbol_fuzzy (sym->name, sym);
316 : 124 : if (guessed)
317 : 20 : gfc_error ("Symbol %qs at %L has no IMPLICIT type"
318 : : "; did you mean %qs?",
319 : : sym->name, &sym->declared_at, guessed);
320 : : else
321 : 104 : gfc_error ("Symbol %qs at %L has no IMPLICIT type",
322 : : sym->name, &sym->declared_at);
323 : 124 : sym->attr.untyped = 1; /* Ensure we only give an error once. */
324 : : }
325 : :
326 : 56681 : return false;
327 : : }
328 : :
329 : 53332 : sym->ts = *ts;
330 : 53332 : sym->attr.implicit_type = 1;
331 : :
332 : 53332 : if (ts->type == BT_CHARACTER && ts->u.cl)
333 : 457 : sym->ts.u.cl = gfc_new_charlen (sym->ns, ts->u.cl);
334 : 52875 : else if (ts->type == BT_CLASS
335 : 52875 : && !gfc_build_class_symbol (&sym->ts, &sym->attr, &sym->as))
336 : : return false;
337 : :
338 : 53332 : if (sym->attr.is_bind_c == 1 && warn_c_binding_type)
339 : : {
340 : : /* BIND(C) variables should not be implicitly declared. */
341 : 1 : gfc_warning_now (OPT_Wc_binding_type, "Implicitly declared BIND(C) "
342 : : "variable %qs at %L may not be C interoperable",
343 : : sym->name, &sym->declared_at);
344 : 1 : sym->ts.f90_type = sym->ts.type;
345 : : }
346 : :
347 : 53332 : if (sym->attr.dummy != 0)
348 : : {
349 : 4289 : if (sym->ns->proc_name != NULL
350 : 4288 : && (sym->ns->proc_name->attr.subroutine != 0
351 : 4288 : || sym->ns->proc_name->attr.function != 0)
352 : 4288 : && sym->ns->proc_name->attr.is_bind_c != 0
353 : 56 : && warn_c_binding_type)
354 : : {
355 : : /* Dummy args to a BIND(C) routine may not be interoperable if
356 : : they are implicitly typed. */
357 : 1 : gfc_warning_now (OPT_Wc_binding_type, "Implicitly declared variable "
358 : : "%qs at %L may not be C interoperable but it is a "
359 : : "dummy argument to the BIND(C) procedure %qs at %L",
360 : : sym->name, &(sym->declared_at),
361 : : sym->ns->proc_name->name,
362 : : &(sym->ns->proc_name->declared_at));
363 : 1 : sym->ts.f90_type = sym->ts.type;
364 : : }
365 : : }
366 : :
367 : : return true;
368 : : }
369 : :
370 : :
371 : : /* This function is called from parse.cc(parse_progunit) to check the
372 : : type of the function is not implicitly typed in the host namespace
373 : : and to implicitly type the function result, if necessary. */
374 : :
375 : : void
376 : 12095 : gfc_check_function_type (gfc_namespace *ns)
377 : : {
378 : 12095 : gfc_symbol *proc = ns->proc_name;
379 : :
380 : 12095 : if (!proc->attr.contained || proc->result->attr.implicit_type)
381 : : return;
382 : :
383 : 9355 : if (proc->result->ts.type == BT_UNKNOWN && proc->result->ts.interface == NULL)
384 : : {
385 : 100 : if (gfc_set_default_type (proc->result, 0, gfc_current_ns))
386 : : {
387 : 80 : if (proc->result != proc)
388 : : {
389 : 16 : proc->ts = proc->result->ts;
390 : 16 : proc->as = gfc_copy_array_spec (proc->result->as);
391 : 16 : proc->attr.dimension = proc->result->attr.dimension;
392 : 16 : proc->attr.pointer = proc->result->attr.pointer;
393 : 16 : proc->attr.allocatable = proc->result->attr.allocatable;
394 : : }
395 : : }
396 : 20 : else if (!proc->result->attr.proc_pointer)
397 : : {
398 : 2 : gfc_error ("Function result %qs at %L has no IMPLICIT type",
399 : : proc->result->name, &proc->result->declared_at);
400 : 2 : proc->result->attr.untyped = 1;
401 : : }
402 : : }
403 : : }
404 : :
405 : :
406 : : /******************** Symbol attribute stuff *********************/
407 : :
408 : : /* Older standards produced conflicts for some attributes that are allowed
409 : : in newer standards. Check for the conflict and issue an error depending
410 : : on the standard in play. */
411 : :
412 : : static bool
413 : 16648 : conflict_std (int standard, const char *a1, const char *a2, const char *name,
414 : : locus *where)
415 : : {
416 : 16648 : if (name == NULL)
417 : : {
418 : 9951 : return gfc_notify_std (standard, "%s attribute conflicts "
419 : : "with %s attribute at %L", a1, a2,
420 : 9951 : where);
421 : : }
422 : : else
423 : : {
424 : 6697 : return gfc_notify_std (standard, "%s attribute conflicts "
425 : : "with %s attribute in %qs at %L",
426 : 6697 : a1, a2, name, where);
427 : : }
428 : : }
429 : :
430 : : /* This is a generic conflict-checker. We do this to avoid having a
431 : : single conflict in two places. */
432 : :
433 : : #define conf(a, b) if (attr->a && attr->b) { a1 = a; a2 = b; goto conflict; }
434 : : #define conf2(a) if (attr->a) { a2 = a; goto conflict; }
435 : : #define conf_std(a, b, std) if (attr->a && attr->b \
436 : : && !conflict_std (std, a, b, name, where)) \
437 : : return false;
438 : :
439 : : bool
440 : 6494835 : gfc_check_conflict (symbol_attribute *attr, const char *name, locus *where)
441 : : {
442 : 6494835 : static const char *dummy = "DUMMY", *save = "SAVE", *pointer = "POINTER",
443 : : *target = "TARGET", *external = "EXTERNAL", *intent = "INTENT",
444 : : *intent_in = "INTENT(IN)", *intrinsic = "INTRINSIC",
445 : : *intent_out = "INTENT(OUT)", *intent_inout = "INTENT(INOUT)",
446 : : *allocatable = "ALLOCATABLE", *elemental = "ELEMENTAL",
447 : : *privat = "PRIVATE", *recursive = "RECURSIVE",
448 : : *in_common = "COMMON", *result = "RESULT", *in_namelist = "NAMELIST",
449 : : *publik = "PUBLIC", *optional = "OPTIONAL", *entry = "ENTRY",
450 : : *function = "FUNCTION", *subroutine = "SUBROUTINE",
451 : : *dimension = "DIMENSION", *in_equivalence = "EQUIVALENCE",
452 : : *use_assoc = "USE ASSOCIATED", *cray_pointer = "CRAY POINTER",
453 : : *cray_pointee = "CRAY POINTEE", *data = "DATA", *value = "VALUE",
454 : : *volatile_ = "VOLATILE", *is_protected = "PROTECTED",
455 : : *is_bind_c = "BIND(C)", *procedure = "PROCEDURE",
456 : : *proc_pointer = "PROCEDURE POINTER", *abstract = "ABSTRACT",
457 : : *asynchronous = "ASYNCHRONOUS", *codimension = "CODIMENSION",
458 : : *contiguous = "CONTIGUOUS", *generic = "GENERIC", *automatic = "AUTOMATIC",
459 : : *pdt_len = "LEN", *pdt_kind = "KIND";
460 : 6494835 : static const char *threadprivate = "THREADPRIVATE";
461 : 6494835 : static const char *omp_declare_target = "OMP DECLARE TARGET";
462 : 6494835 : static const char *omp_declare_target_link = "OMP DECLARE TARGET LINK";
463 : 6494835 : static const char *oacc_declare_copyin = "OACC DECLARE COPYIN";
464 : 6494835 : static const char *oacc_declare_create = "OACC DECLARE CREATE";
465 : 6494835 : static const char *oacc_declare_deviceptr = "OACC DECLARE DEVICEPTR";
466 : 6494835 : static const char *oacc_declare_device_resident =
467 : : "OACC DECLARE DEVICE_RESIDENT";
468 : :
469 : 6494835 : const char *a1, *a2;
470 : :
471 : 6494835 : if (attr->artificial)
472 : : return true;
473 : :
474 : 6494828 : if (where == NULL)
475 : 4248494 : where = &gfc_current_locus;
476 : :
477 : 6494828 : if (attr->pointer && attr->intent != INTENT_UNKNOWN)
478 : 4271 : conf_std (pointer, intent, GFC_STD_F2003);
479 : :
480 : 6494827 : conf_std (in_namelist, allocatable, GFC_STD_F2003);
481 : 6494827 : conf_std (in_namelist, pointer, GFC_STD_F2003);
482 : :
483 : : /* Check for attributes not allowed in a BLOCK DATA. */
484 : 6494826 : if (gfc_current_state () == COMP_BLOCK_DATA)
485 : : {
486 : 3308 : a1 = NULL;
487 : :
488 : 3308 : if (attr->in_namelist)
489 : 1 : a1 = in_namelist;
490 : 3308 : if (attr->allocatable)
491 : 0 : a1 = allocatable;
492 : 3308 : if (attr->external)
493 : 0 : a1 = external;
494 : 3308 : if (attr->optional)
495 : 0 : a1 = optional;
496 : 3308 : if (attr->access == ACCESS_PRIVATE)
497 : 0 : a1 = privat;
498 : 3308 : if (attr->access == ACCESS_PUBLIC)
499 : 0 : a1 = publik;
500 : 3308 : if (attr->intent != INTENT_UNKNOWN)
501 : 0 : a1 = intent;
502 : :
503 : 3308 : if (a1 != NULL)
504 : : {
505 : 1 : gfc_error
506 : 1 : ("%s attribute not allowed in BLOCK DATA program unit at %L",
507 : : a1, where);
508 : 1 : return false;
509 : : }
510 : : }
511 : :
512 : 6494825 : if (attr->save == SAVE_EXPLICIT)
513 : : {
514 : 6560 : conf (dummy, save);
515 : 6558 : conf (in_common, save);
516 : 6550 : conf (result, save);
517 : 6547 : conf (automatic, save);
518 : :
519 : 6545 : switch (attr->flavor)
520 : : {
521 : 2 : case FL_PROGRAM:
522 : 2 : case FL_BLOCK_DATA:
523 : 2 : case FL_MODULE:
524 : 2 : case FL_LABEL:
525 : 2 : case_fl_struct:
526 : 2 : case FL_PARAMETER:
527 : 2 : a1 = gfc_code2string (flavors, attr->flavor);
528 : 2 : a2 = save;
529 : 2 : goto conflict;
530 : 2 : case FL_NAMELIST:
531 : 2 : gfc_error ("Namelist group name at %L cannot have the "
532 : : "SAVE attribute", where);
533 : 2 : return false;
534 : : case FL_PROCEDURE:
535 : : /* Conflicts between SAVE and PROCEDURE will be checked at
536 : : resolution stage, see "resolve_fl_procedure". */
537 : : case FL_VARIABLE:
538 : : default:
539 : : break;
540 : : }
541 : : }
542 : :
543 : : /* The copying of procedure dummy arguments for module procedures in
544 : : a submodule occur whilst the current state is COMP_CONTAINS. It
545 : : is necessary, therefore, to let this through. */
546 : 6494806 : if (name && attr->dummy
547 : 243553 : && (attr->function || attr->subroutine)
548 : 1626 : && gfc_current_state () == COMP_CONTAINS
549 : 12 : && !(gfc_new_block && gfc_new_block->abr_modproc_decl))
550 : 3 : gfc_error_now ("internal procedure %qs at %L conflicts with "
551 : : "DUMMY argument", name, where);
552 : :
553 : 6494806 : conf (dummy, entry);
554 : 6494804 : conf (dummy, intrinsic);
555 : 6494803 : conf (dummy, threadprivate);
556 : 6494803 : conf (dummy, omp_declare_target);
557 : 6494803 : conf (dummy, omp_declare_target_link);
558 : 6494803 : conf (pointer, target);
559 : 6494803 : conf (pointer, intrinsic);
560 : 6494803 : conf (pointer, elemental);
561 : 6494801 : conf (pointer, codimension);
562 : 6494770 : conf (allocatable, elemental);
563 : :
564 : 6494769 : conf (in_common, automatic);
565 : 6494763 : conf (result, automatic);
566 : 6494761 : conf (use_assoc, automatic);
567 : 6494761 : conf (dummy, automatic);
568 : :
569 : 6494759 : conf (target, external);
570 : 6494759 : conf (target, intrinsic);
571 : :
572 : 6494759 : if (!attr->if_source)
573 : 6398314 : conf (external, dimension); /* See Fortran 95's R504. */
574 : :
575 : 6494759 : conf (external, intrinsic);
576 : 6494757 : conf (entry, intrinsic);
577 : 6494756 : conf (abstract, intrinsic);
578 : :
579 : 6494753 : if ((attr->if_source == IFSRC_DECL && !attr->procedure) || attr->contained)
580 : 81763 : conf (external, subroutine);
581 : :
582 : 6494751 : if (attr->proc_pointer && !gfc_notify_std (GFC_STD_F2003,
583 : : "Procedure pointer at %C"))
584 : : return false;
585 : :
586 : 6494745 : conf (allocatable, pointer);
587 : 6494745 : conf_std (allocatable, dummy, GFC_STD_F2003);
588 : 6494745 : conf_std (allocatable, function, GFC_STD_F2003);
589 : 6494745 : conf_std (allocatable, result, GFC_STD_F2003);
590 : 6494745 : conf_std (elemental, recursive, GFC_STD_F2018);
591 : :
592 : 6494745 : conf (in_common, dummy);
593 : 6494745 : conf (in_common, allocatable);
594 : 6494745 : conf (in_common, codimension);
595 : 6494745 : conf (in_common, result);
596 : :
597 : 6494745 : conf (in_equivalence, use_assoc);
598 : 6494744 : conf (in_equivalence, codimension);
599 : 6494744 : conf (in_equivalence, dummy);
600 : 6494743 : conf (in_equivalence, target);
601 : 6494742 : conf (in_equivalence, pointer);
602 : 6494741 : conf (in_equivalence, function);
603 : 6494741 : conf (in_equivalence, result);
604 : 6494741 : conf (in_equivalence, entry);
605 : 6494741 : conf (in_equivalence, allocatable);
606 : 6494738 : conf (in_equivalence, threadprivate);
607 : 6494738 : conf (in_equivalence, omp_declare_target);
608 : 6494738 : conf (in_equivalence, omp_declare_target_link);
609 : 6494738 : conf (in_equivalence, oacc_declare_create);
610 : 6494738 : conf (in_equivalence, oacc_declare_copyin);
611 : 6494738 : conf (in_equivalence, oacc_declare_deviceptr);
612 : 6494738 : conf (in_equivalence, oacc_declare_device_resident);
613 : 6494738 : conf (in_equivalence, is_bind_c);
614 : :
615 : 6494737 : conf (dummy, result);
616 : 6494737 : conf (entry, result);
617 : 6494736 : conf (generic, result);
618 : 6494733 : conf (generic, omp_declare_target);
619 : 6494733 : conf (generic, omp_declare_target_link);
620 : :
621 : 6494733 : conf (function, subroutine);
622 : :
623 : 6494673 : if (!function && !subroutine)
624 : 0 : conf (is_bind_c, dummy);
625 : :
626 : 6494673 : conf (is_bind_c, cray_pointer);
627 : 6494673 : conf (is_bind_c, cray_pointee);
628 : 6494673 : conf (is_bind_c, codimension);
629 : 6494672 : conf (is_bind_c, allocatable);
630 : 6494671 : conf (is_bind_c, elemental);
631 : :
632 : : /* Need to also get volatile attr, according to 5.1 of F2003 draft.
633 : : Parameter conflict caught below. Also, value cannot be specified
634 : : for a dummy procedure. */
635 : :
636 : : /* Cray pointer/pointee conflicts. */
637 : 6494669 : conf (cray_pointer, cray_pointee);
638 : 6494668 : conf (cray_pointer, dimension);
639 : 6494667 : conf (cray_pointer, codimension);
640 : 6494667 : conf (cray_pointer, contiguous);
641 : 6494667 : conf (cray_pointer, pointer);
642 : 6494666 : conf (cray_pointer, target);
643 : 6494665 : conf (cray_pointer, allocatable);
644 : 6494665 : conf (cray_pointer, external);
645 : 6494665 : conf (cray_pointer, intrinsic);
646 : 6494665 : conf (cray_pointer, in_namelist);
647 : 6494665 : conf (cray_pointer, function);
648 : 6494665 : conf (cray_pointer, subroutine);
649 : 6494665 : conf (cray_pointer, entry);
650 : :
651 : 6494665 : conf (cray_pointee, allocatable);
652 : 6494665 : conf (cray_pointee, contiguous);
653 : 6494665 : conf (cray_pointee, codimension);
654 : 6494665 : conf (cray_pointee, intent);
655 : 6494665 : conf (cray_pointee, optional);
656 : 6494665 : conf (cray_pointee, dummy);
657 : 6494664 : conf (cray_pointee, target);
658 : 6494663 : conf (cray_pointee, intrinsic);
659 : 6494663 : conf (cray_pointee, pointer);
660 : 6494662 : conf (cray_pointee, entry);
661 : 6494662 : conf (cray_pointee, in_common);
662 : 6494659 : conf (cray_pointee, in_equivalence);
663 : 6494657 : conf (cray_pointee, threadprivate);
664 : 6494656 : conf (cray_pointee, omp_declare_target);
665 : 6494656 : conf (cray_pointee, omp_declare_target_link);
666 : 6494656 : conf (cray_pointee, oacc_declare_create);
667 : 6494656 : conf (cray_pointee, oacc_declare_copyin);
668 : 6494656 : conf (cray_pointee, oacc_declare_deviceptr);
669 : 6494656 : conf (cray_pointee, oacc_declare_device_resident);
670 : :
671 : 6494656 : conf (data, dummy);
672 : 6494653 : conf (data, function);
673 : 6494652 : conf (data, result);
674 : 6494651 : conf (data, allocatable);
675 : :
676 : 6494650 : conf (value, pointer)
677 : 6494649 : conf (value, allocatable)
678 : 6494649 : conf (value, subroutine)
679 : 6494649 : conf (value, function)
680 : 6494648 : conf (value, volatile_)
681 : 6494648 : conf (value, dimension)
682 : 6494644 : conf (value, codimension)
683 : 6494644 : conf (value, external)
684 : :
685 : 6494643 : conf (codimension, result)
686 : :
687 : 6494640 : if (attr->value
688 : 37069 : && (attr->intent == INTENT_OUT || attr->intent == INTENT_INOUT))
689 : : {
690 : 4 : a1 = value;
691 : 4 : a2 = attr->intent == INTENT_OUT ? intent_out : intent_inout;
692 : 4 : goto conflict;
693 : : }
694 : :
695 : 6494636 : conf (is_protected, intrinsic)
696 : 6494636 : conf (is_protected, in_common)
697 : :
698 : 6494632 : conf (asynchronous, intrinsic)
699 : 6494632 : conf (asynchronous, external)
700 : :
701 : 6494632 : conf (volatile_, intrinsic)
702 : 6494631 : conf (volatile_, external)
703 : :
704 : 6494630 : if (attr->volatile_ && attr->intent == INTENT_IN)
705 : : {
706 : 1 : a1 = volatile_;
707 : 1 : a2 = intent_in;
708 : 1 : goto conflict;
709 : : }
710 : :
711 : 6494629 : conf (procedure, allocatable)
712 : 6494628 : conf (procedure, dimension)
713 : 6494628 : conf (procedure, codimension)
714 : 6494628 : conf (procedure, intrinsic)
715 : 6494628 : conf (procedure, target)
716 : 6494628 : conf (procedure, value)
717 : 6494628 : conf (procedure, volatile_)
718 : 6494628 : conf (procedure, asynchronous)
719 : 6494628 : conf (procedure, entry)
720 : :
721 : 6494627 : conf (proc_pointer, abstract)
722 : 6494625 : conf (proc_pointer, omp_declare_target)
723 : 6494625 : conf (proc_pointer, omp_declare_target_link)
724 : :
725 : 6494625 : conf (entry, omp_declare_target)
726 : 6494625 : conf (entry, omp_declare_target_link)
727 : 6494625 : conf (entry, oacc_declare_create)
728 : 6494625 : conf (entry, oacc_declare_copyin)
729 : 6494625 : conf (entry, oacc_declare_deviceptr)
730 : 6494625 : conf (entry, oacc_declare_device_resident)
731 : :
732 : 6494625 : conf (pdt_kind, allocatable)
733 : 6494624 : conf (pdt_kind, pointer)
734 : 6494623 : conf (pdt_kind, dimension)
735 : 6494622 : conf (pdt_kind, codimension)
736 : :
737 : 6494622 : conf (pdt_len, allocatable)
738 : 6494621 : conf (pdt_len, pointer)
739 : 6494620 : conf (pdt_len, dimension)
740 : 6494619 : conf (pdt_len, codimension)
741 : 6494619 : conf (pdt_len, pdt_kind)
742 : :
743 : 6494617 : if (attr->access == ACCESS_PRIVATE)
744 : : {
745 : 12147 : a1 = privat;
746 : 12147 : conf2 (pdt_kind);
747 : 12146 : conf2 (pdt_len);
748 : : }
749 : :
750 : 6494615 : a1 = gfc_code2string (flavors, attr->flavor);
751 : :
752 : 6494615 : if (attr->in_namelist
753 : 4393 : && attr->flavor != FL_VARIABLE
754 : 1948 : && attr->flavor != FL_PROCEDURE
755 : 1939 : && attr->flavor != FL_UNKNOWN)
756 : : {
757 : 0 : a2 = in_namelist;
758 : 0 : goto conflict;
759 : : }
760 : :
761 : 6494615 : switch (attr->flavor)
762 : : {
763 : 142826 : case FL_PROGRAM:
764 : 142826 : case FL_BLOCK_DATA:
765 : 142826 : case FL_MODULE:
766 : 142826 : case FL_LABEL:
767 : 142826 : conf2 (codimension);
768 : 142826 : conf2 (dimension);
769 : 142825 : conf2 (dummy);
770 : 142825 : conf2 (volatile_);
771 : 142823 : conf2 (asynchronous);
772 : 142822 : conf2 (contiguous);
773 : 142822 : conf2 (pointer);
774 : 142822 : conf2 (is_protected);
775 : 142821 : conf2 (target);
776 : 142821 : conf2 (external);
777 : 142820 : conf2 (intrinsic);
778 : 142820 : conf2 (allocatable);
779 : 142820 : conf2 (result);
780 : 142820 : conf2 (in_namelist);
781 : 142820 : conf2 (optional);
782 : 142820 : conf2 (function);
783 : 142820 : conf2 (subroutine);
784 : 142819 : conf2 (threadprivate);
785 : 142819 : conf2 (omp_declare_target);
786 : 142819 : conf2 (omp_declare_target_link);
787 : 142819 : conf2 (oacc_declare_create);
788 : 142819 : conf2 (oacc_declare_copyin);
789 : 142819 : conf2 (oacc_declare_deviceptr);
790 : 142819 : conf2 (oacc_declare_device_resident);
791 : :
792 : 142819 : if (attr->access == ACCESS_PUBLIC || attr->access == ACCESS_PRIVATE)
793 : : {
794 : 2 : a2 = attr->access == ACCESS_PUBLIC ? publik : privat;
795 : 2 : gfc_error ("%s attribute applied to %s %s at %L", a2, a1,
796 : : name, where);
797 : 2 : return false;
798 : : }
799 : :
800 : 142817 : if (attr->is_bind_c)
801 : : {
802 : 2 : gfc_error_now ("BIND(C) applied to %s %s at %L", a1, name, where);
803 : 2 : return false;
804 : : }
805 : :
806 : : break;
807 : :
808 : : case FL_VARIABLE:
809 : : break;
810 : :
811 : 763 : case FL_NAMELIST:
812 : 763 : conf2 (result);
813 : : break;
814 : :
815 : 4055078 : case FL_PROCEDURE:
816 : : /* Conflicts with INTENT, SAVE and RESULT will be checked
817 : : at resolution stage, see "resolve_fl_procedure". */
818 : :
819 : 4055078 : if (attr->subroutine)
820 : : {
821 : 105329 : a1 = subroutine;
822 : 105329 : conf2 (target);
823 : 105329 : conf2 (allocatable);
824 : 105329 : conf2 (volatile_);
825 : 105328 : conf2 (asynchronous);
826 : 105327 : conf2 (in_namelist);
827 : 105327 : conf2 (codimension);
828 : 105327 : conf2 (dimension);
829 : 105326 : conf2 (function);
830 : 105326 : if (!attr->proc_pointer)
831 : 105138 : conf2 (threadprivate);
832 : : }
833 : :
834 : : /* Procedure pointers in COMMON blocks are allowed in F03,
835 : : * but forbidden per F08:C5100. */
836 : 4055075 : if (!attr->proc_pointer || (gfc_option.allow_std & GFC_STD_F2008))
837 : 4054858 : conf2 (in_common);
838 : :
839 : 4055071 : conf2 (omp_declare_target_link);
840 : :
841 : 4055069 : switch (attr->proc)
842 : : {
843 : 778297 : case PROC_ST_FUNCTION:
844 : 778297 : conf2 (dummy);
845 : 778296 : conf2 (target);
846 : : break;
847 : :
848 : 48645 : case PROC_MODULE:
849 : 48645 : conf2 (dummy);
850 : : break;
851 : :
852 : 0 : case PROC_DUMMY:
853 : 0 : conf2 (result);
854 : 0 : conf2 (threadprivate);
855 : : break;
856 : :
857 : : default:
858 : : break;
859 : : }
860 : :
861 : : break;
862 : :
863 : 33358 : case_fl_struct:
864 : 33358 : conf2 (dummy);
865 : 33358 : conf2 (pointer);
866 : 33358 : conf2 (target);
867 : 33358 : conf2 (external);
868 : 33358 : conf2 (intrinsic);
869 : 33358 : conf2 (allocatable);
870 : 33358 : conf2 (optional);
871 : 33358 : conf2 (entry);
872 : 33358 : conf2 (function);
873 : 33358 : conf2 (subroutine);
874 : 33358 : conf2 (threadprivate);
875 : 33358 : conf2 (result);
876 : 33358 : conf2 (omp_declare_target);
877 : 33358 : conf2 (omp_declare_target_link);
878 : 33358 : conf2 (oacc_declare_create);
879 : 33358 : conf2 (oacc_declare_copyin);
880 : 33358 : conf2 (oacc_declare_deviceptr);
881 : 33358 : conf2 (oacc_declare_device_resident);
882 : :
883 : 33358 : if (attr->intent != INTENT_UNKNOWN)
884 : : {
885 : 0 : a2 = intent;
886 : 0 : goto conflict;
887 : : }
888 : : break;
889 : :
890 : 37665 : case FL_PARAMETER:
891 : 37665 : conf2 (external);
892 : 37665 : conf2 (intrinsic);
893 : 37665 : conf2 (optional);
894 : 37665 : conf2 (allocatable);
895 : 37665 : conf2 (function);
896 : 37665 : conf2 (subroutine);
897 : 37665 : conf2 (entry);
898 : 37665 : conf2 (contiguous);
899 : 37665 : conf2 (pointer);
900 : 37665 : conf2 (is_protected);
901 : 37665 : conf2 (target);
902 : 37665 : conf2 (dummy);
903 : 37665 : conf2 (in_common);
904 : 37665 : conf2 (value);
905 : 37664 : conf2 (volatile_);
906 : 37663 : conf2 (asynchronous);
907 : 37663 : conf2 (threadprivate);
908 : 37663 : conf2 (value);
909 : 37663 : conf2 (codimension);
910 : 37662 : conf2 (result);
911 : 37661 : if (!attr->is_iso_c)
912 : 37641 : conf2 (is_bind_c);
913 : : break;
914 : :
915 : : default:
916 : : break;
917 : : }
918 : :
919 : : return true;
920 : :
921 : 227 : conflict:
922 : 227 : if (name == NULL)
923 : 58 : gfc_error ("%s attribute conflicts with %s attribute at %L",
924 : : a1, a2, where);
925 : : else
926 : 169 : gfc_error ("%s attribute conflicts with %s attribute in %qs at %L",
927 : : a1, a2, name, where);
928 : :
929 : : return false;
930 : : }
931 : :
932 : : #undef conf
933 : : #undef conf2
934 : : #undef conf_std
935 : :
936 : :
937 : : /* Mark a symbol as referenced. */
938 : :
939 : : void
940 : 7150661 : gfc_set_sym_referenced (gfc_symbol *sym)
941 : : {
942 : 7150661 : if (sym->attr.referenced)
943 : : return;
944 : :
945 : 3840263 : sym->attr.referenced = 1;
946 : :
947 : : /* Remember the declaration order. */
948 : 3840263 : sym->decl_order = next_decl_order++;
949 : : }
950 : :
951 : :
952 : : /* Common subroutine called by attribute changing subroutines in order
953 : : to prevent them from changing a symbol that has been
954 : : use-associated. Returns zero if it is OK to change the symbol,
955 : : nonzero if not. */
956 : :
957 : : static int
958 : 2157899 : check_used (symbol_attribute *attr, const char *name, locus *where)
959 : : {
960 : :
961 : 2157899 : if (attr->use_assoc == 0)
962 : : return 0;
963 : :
964 : 58 : if (where == NULL)
965 : 31 : where = &gfc_current_locus;
966 : :
967 : 58 : if (name == NULL)
968 : 3 : gfc_error ("Cannot change attributes of USE-associated symbol at %L",
969 : : where);
970 : : else
971 : 55 : gfc_error ("Cannot change attributes of USE-associated symbol %s at %L",
972 : : name, where);
973 : :
974 : : return 1;
975 : : }
976 : :
977 : :
978 : : /* Generate an error because of a duplicate attribute. */
979 : :
980 : : static void
981 : 21 : duplicate_attr (const char *attr, locus *where)
982 : : {
983 : :
984 : 0 : if (where == NULL)
985 : 7 : where = &gfc_current_locus;
986 : :
987 : 0 : gfc_error ("Duplicate %s attribute specified at %L", attr, where);
988 : 0 : }
989 : :
990 : :
991 : : bool
992 : 2690 : gfc_add_ext_attribute (symbol_attribute *attr, ext_attr_id_t ext_attr,
993 : : locus *where ATTRIBUTE_UNUSED)
994 : : {
995 : 2690 : attr->ext_attr |= 1 << ext_attr;
996 : 2690 : return true;
997 : : }
998 : :
999 : :
1000 : : /* Called from decl.cc (attr_decl1) to check attributes, when declared
1001 : : separately. */
1002 : :
1003 : : bool
1004 : 10094 : gfc_add_attribute (symbol_attribute *attr, locus *where)
1005 : : {
1006 : 10094 : if (check_used (attr, NULL, where))
1007 : : return false;
1008 : :
1009 : 10094 : return gfc_check_conflict (attr, NULL, where);
1010 : : }
1011 : :
1012 : :
1013 : : bool
1014 : 34425 : gfc_add_allocatable (symbol_attribute *attr, locus *where)
1015 : : {
1016 : :
1017 : 34425 : if (check_used (attr, NULL, where))
1018 : : return false;
1019 : :
1020 : 34425 : if (attr->allocatable && ! gfc_submodule_procedure(attr))
1021 : : {
1022 : 1 : duplicate_attr ("ALLOCATABLE", where);
1023 : 1 : return false;
1024 : : }
1025 : :
1026 : 34424 : if (attr->flavor == FL_PROCEDURE && attr->if_source == IFSRC_IFBODY
1027 : 34424 : && !gfc_find_state (COMP_INTERFACE))
1028 : : {
1029 : 1 : gfc_error ("ALLOCATABLE specified outside of INTERFACE body at %L",
1030 : : where);
1031 : 1 : return false;
1032 : : }
1033 : :
1034 : 34423 : attr->allocatable = 1;
1035 : 34423 : return gfc_check_conflict (attr, NULL, where);
1036 : : }
1037 : :
1038 : :
1039 : : bool
1040 : 82 : gfc_add_automatic (symbol_attribute *attr, const char *name, locus *where)
1041 : : {
1042 : 82 : if (check_used (attr, name, where))
1043 : : return false;
1044 : :
1045 : 82 : if (attr->automatic && !gfc_notify_std (GFC_STD_LEGACY,
1046 : : "Duplicate AUTOMATIC attribute specified at %L", where))
1047 : : return false;
1048 : :
1049 : 82 : attr->automatic = 1;
1050 : 82 : return gfc_check_conflict (attr, name, where);
1051 : : }
1052 : :
1053 : :
1054 : : bool
1055 : 1323 : gfc_add_codimension (symbol_attribute *attr, const char *name, locus *where)
1056 : : {
1057 : :
1058 : 1323 : if (check_used (attr, name, where))
1059 : : return false;
1060 : :
1061 : 1323 : if (attr->codimension)
1062 : : {
1063 : 2 : duplicate_attr ("CODIMENSION", where);
1064 : 2 : return false;
1065 : : }
1066 : :
1067 : 1321 : if (attr->flavor == FL_PROCEDURE && attr->if_source == IFSRC_IFBODY
1068 : 1321 : && !gfc_find_state (COMP_INTERFACE))
1069 : : {
1070 : 0 : gfc_error ("CODIMENSION specified for %qs outside its INTERFACE body "
1071 : : "at %L", name, where);
1072 : 0 : return false;
1073 : : }
1074 : :
1075 : 1321 : attr->codimension = 1;
1076 : 1321 : return gfc_check_conflict (attr, name, where);
1077 : : }
1078 : :
1079 : :
1080 : : bool
1081 : 97282 : gfc_add_dimension (symbol_attribute *attr, const char *name, locus *where)
1082 : : {
1083 : :
1084 : 97282 : if (check_used (attr, name, where))
1085 : : return false;
1086 : :
1087 : 97282 : if (attr->dimension && ! gfc_submodule_procedure(attr))
1088 : : {
1089 : 2 : duplicate_attr ("DIMENSION", where);
1090 : 2 : return false;
1091 : : }
1092 : :
1093 : 97280 : if (attr->flavor == FL_PROCEDURE && attr->if_source == IFSRC_IFBODY
1094 : 97280 : && !gfc_find_state (COMP_INTERFACE))
1095 : : {
1096 : 1 : gfc_error ("DIMENSION specified for %qs outside its INTERFACE body "
1097 : : "at %L", name, where);
1098 : 1 : return false;
1099 : : }
1100 : :
1101 : 97279 : attr->dimension = 1;
1102 : 97279 : return gfc_check_conflict (attr, name, where);
1103 : : }
1104 : :
1105 : :
1106 : : bool
1107 : 4019 : gfc_add_contiguous (symbol_attribute *attr, const char *name, locus *where)
1108 : : {
1109 : :
1110 : 4019 : if (check_used (attr, name, where))
1111 : : return false;
1112 : :
1113 : 4019 : if (attr->contiguous)
1114 : : {
1115 : 2 : duplicate_attr ("CONTIGUOUS", where);
1116 : 2 : return false;
1117 : : }
1118 : :
1119 : 4017 : attr->contiguous = 1;
1120 : 4017 : return gfc_check_conflict (attr, name, where);
1121 : : }
1122 : :
1123 : :
1124 : : bool
1125 : 18369 : gfc_add_external (symbol_attribute *attr, locus *where)
1126 : : {
1127 : :
1128 : 18369 : if (check_used (attr, NULL, where))
1129 : : return false;
1130 : :
1131 : 18366 : if (attr->external)
1132 : : {
1133 : 4 : duplicate_attr ("EXTERNAL", where);
1134 : 4 : return false;
1135 : : }
1136 : :
1137 : 18362 : if (attr->pointer && attr->if_source != IFSRC_IFBODY)
1138 : : {
1139 : 782 : attr->pointer = 0;
1140 : 782 : attr->proc_pointer = 1;
1141 : : }
1142 : :
1143 : 18362 : attr->external = 1;
1144 : :
1145 : 18362 : return gfc_check_conflict (attr, NULL, where);
1146 : : }
1147 : :
1148 : :
1149 : : bool
1150 : 1690 : gfc_add_intrinsic (symbol_attribute *attr, locus *where)
1151 : : {
1152 : :
1153 : 1690 : if (check_used (attr, NULL, where))
1154 : : return false;
1155 : :
1156 : 1690 : if (attr->intrinsic)
1157 : : {
1158 : 0 : duplicate_attr ("INTRINSIC", where);
1159 : 0 : return false;
1160 : : }
1161 : :
1162 : 1690 : attr->intrinsic = 1;
1163 : :
1164 : 1690 : return gfc_check_conflict (attr, NULL, where);
1165 : : }
1166 : :
1167 : :
1168 : : bool
1169 : 11250 : gfc_add_optional (symbol_attribute *attr, locus *where)
1170 : : {
1171 : :
1172 : 11250 : if (check_used (attr, NULL, where))
1173 : : return false;
1174 : :
1175 : 11250 : if (attr->optional)
1176 : : {
1177 : 1 : duplicate_attr ("OPTIONAL", where);
1178 : 1 : return false;
1179 : : }
1180 : :
1181 : 11249 : attr->optional = 1;
1182 : 11249 : return gfc_check_conflict (attr, NULL, where);
1183 : : }
1184 : :
1185 : : bool
1186 : 131 : gfc_add_kind (symbol_attribute *attr, locus *where)
1187 : : {
1188 : 131 : if (attr->pdt_kind)
1189 : : {
1190 : 0 : duplicate_attr ("KIND", where);
1191 : 0 : return false;
1192 : : }
1193 : :
1194 : 131 : attr->pdt_kind = 1;
1195 : 131 : return gfc_check_conflict (attr, NULL, where);
1196 : : }
1197 : :
1198 : : bool
1199 : 177 : gfc_add_len (symbol_attribute *attr, locus *where)
1200 : : {
1201 : 177 : if (attr->pdt_len)
1202 : : {
1203 : 0 : duplicate_attr ("LEN", where);
1204 : 0 : return false;
1205 : : }
1206 : :
1207 : 177 : attr->pdt_len = 1;
1208 : 177 : return gfc_check_conflict (attr, NULL, where);
1209 : : }
1210 : :
1211 : :
1212 : : bool
1213 : 25717 : gfc_add_pointer (symbol_attribute *attr, locus *where)
1214 : : {
1215 : :
1216 : 25717 : if (check_used (attr, NULL, where))
1217 : : return false;
1218 : :
1219 : 3 : if (attr->pointer && !(attr->if_source == IFSRC_IFBODY
1220 : 1 : && !gfc_find_state (COMP_INTERFACE))
1221 : 25718 : && ! gfc_submodule_procedure(attr))
1222 : : {
1223 : 1 : duplicate_attr ("POINTER", where);
1224 : 1 : return false;
1225 : : }
1226 : :
1227 : 25708 : if (attr->procedure || (attr->external && attr->if_source != IFSRC_IFBODY)
1228 : 51403 : || (attr->if_source == IFSRC_IFBODY
1229 : 499 : && !gfc_find_state (COMP_INTERFACE)))
1230 : 36 : attr->proc_pointer = 1;
1231 : : else
1232 : 25680 : attr->pointer = 1;
1233 : :
1234 : 25716 : return gfc_check_conflict (attr, NULL, where);
1235 : : }
1236 : :
1237 : :
1238 : : bool
1239 : 642 : gfc_add_cray_pointer (symbol_attribute *attr, locus *where)
1240 : : {
1241 : :
1242 : 642 : if (check_used (attr, NULL, where))
1243 : : return false;
1244 : :
1245 : 642 : attr->cray_pointer = 1;
1246 : 642 : return gfc_check_conflict (attr, NULL, where);
1247 : : }
1248 : :
1249 : :
1250 : : bool
1251 : 626 : gfc_add_cray_pointee (symbol_attribute *attr, locus *where)
1252 : : {
1253 : :
1254 : 626 : if (check_used (attr, NULL, where))
1255 : : return false;
1256 : :
1257 : 626 : if (attr->cray_pointee)
1258 : : {
1259 : 1 : gfc_error ("Cray Pointee at %L appears in multiple pointer()"
1260 : : " statements", where);
1261 : 1 : return false;
1262 : : }
1263 : :
1264 : 625 : attr->cray_pointee = 1;
1265 : 625 : return gfc_check_conflict (attr, NULL, where);
1266 : : }
1267 : :
1268 : :
1269 : : bool
1270 : 114 : gfc_add_protected (symbol_attribute *attr, const char *name, locus *where)
1271 : : {
1272 : 114 : if (check_used (attr, name, where))
1273 : : return false;
1274 : :
1275 : 114 : if (attr->is_protected)
1276 : : {
1277 : 0 : if (!gfc_notify_std (GFC_STD_LEGACY,
1278 : : "Duplicate PROTECTED attribute specified at %L",
1279 : : where))
1280 : : return false;
1281 : : }
1282 : :
1283 : 114 : attr->is_protected = 1;
1284 : 114 : return gfc_check_conflict (attr, name, where);
1285 : : }
1286 : :
1287 : :
1288 : : bool
1289 : 5925 : gfc_add_result (symbol_attribute *attr, const char *name, locus *where)
1290 : : {
1291 : :
1292 : 5925 : if (check_used (attr, name, where))
1293 : : return false;
1294 : :
1295 : 5925 : attr->result = 1;
1296 : 5925 : return gfc_check_conflict (attr, name, where);
1297 : : }
1298 : :
1299 : :
1300 : : bool
1301 : 9893 : gfc_add_save (symbol_attribute *attr, save_state s, const char *name,
1302 : : locus *where)
1303 : : {
1304 : :
1305 : 9893 : if (check_used (attr, name, where))
1306 : : return false;
1307 : :
1308 : 9893 : if (s == SAVE_EXPLICIT && gfc_pure (NULL))
1309 : : {
1310 : 2 : gfc_error ("SAVE attribute at %L cannot be specified in a PURE "
1311 : : "procedure", where);
1312 : 2 : return false;
1313 : : }
1314 : :
1315 : 9891 : if (s == SAVE_EXPLICIT)
1316 : 3676 : gfc_unset_implicit_pure (NULL);
1317 : :
1318 : 3676 : if (s == SAVE_EXPLICIT && attr->save == SAVE_EXPLICIT
1319 : 58 : && (flag_automatic || pedantic))
1320 : : {
1321 : 21 : if (!where)
1322 : : {
1323 : 1 : gfc_error ("Duplicate SAVE attribute specified near %C");
1324 : 1 : return false;
1325 : : }
1326 : :
1327 : 20 : if (!gfc_notify_std (GFC_STD_LEGACY, "Duplicate SAVE attribute "
1328 : : "specified at %L", where))
1329 : : return false;
1330 : : }
1331 : :
1332 : 9888 : attr->save = s;
1333 : 9888 : return gfc_check_conflict (attr, name, where);
1334 : : }
1335 : :
1336 : :
1337 : : bool
1338 : 20590 : gfc_add_value (symbol_attribute *attr, const char *name, locus *where)
1339 : : {
1340 : :
1341 : 20590 : if (check_used (attr, name, where))
1342 : : return false;
1343 : :
1344 : 20590 : if (attr->value)
1345 : : {
1346 : 0 : if (!gfc_notify_std (GFC_STD_LEGACY,
1347 : : "Duplicate VALUE attribute specified at %L",
1348 : : where))
1349 : : return false;
1350 : : }
1351 : :
1352 : 20590 : attr->value = 1;
1353 : 20590 : return gfc_check_conflict (attr, name, where);
1354 : : }
1355 : :
1356 : :
1357 : : bool
1358 : 1275 : gfc_add_volatile (symbol_attribute *attr, const char *name, locus *where)
1359 : : {
1360 : : /* No check_used needed as 11.2.1 of the F2003 standard allows
1361 : : that the local identifier made accessible by a use statement can be
1362 : : given a VOLATILE attribute - unless it is a coarray (F2008, C560). */
1363 : :
1364 : 1275 : if (attr->volatile_ && attr->volatile_ns == gfc_current_ns)
1365 : 1 : if (!gfc_notify_std (GFC_STD_LEGACY,
1366 : : "Duplicate VOLATILE attribute specified at %L",
1367 : : where))
1368 : : return false;
1369 : :
1370 : : /* F2008: C1282 A designator of a variable with the VOLATILE attribute
1371 : : shall not appear in a pure subprogram.
1372 : :
1373 : : F2018: C1588 A local variable of a pure subprogram, or of a BLOCK
1374 : : construct within a pure subprogram, shall not have the SAVE or
1375 : : VOLATILE attribute. */
1376 : 1275 : if (gfc_pure (NULL))
1377 : : {
1378 : 2 : gfc_error ("VOLATILE attribute at %L cannot be specified in a "
1379 : : "PURE procedure", where);
1380 : 2 : return false;
1381 : : }
1382 : :
1383 : :
1384 : 1273 : attr->volatile_ = 1;
1385 : 1273 : attr->volatile_ns = gfc_current_ns;
1386 : 1273 : return gfc_check_conflict (attr, name, where);
1387 : : }
1388 : :
1389 : :
1390 : : bool
1391 : 57 : gfc_add_asynchronous (symbol_attribute *attr, const char *name, locus *where)
1392 : : {
1393 : : /* No check_used needed as 11.2.1 of the F2003 standard allows
1394 : : that the local identifier made accessible by a use statement can be
1395 : : given a ASYNCHRONOUS attribute. */
1396 : :
1397 : 57 : if (attr->asynchronous && attr->asynchronous_ns == gfc_current_ns)
1398 : 0 : if (!gfc_notify_std (GFC_STD_LEGACY,
1399 : : "Duplicate ASYNCHRONOUS attribute specified at %L",
1400 : : where))
1401 : : return false;
1402 : :
1403 : 57 : attr->asynchronous = 1;
1404 : 57 : attr->asynchronous_ns = gfc_current_ns;
1405 : 57 : return gfc_check_conflict (attr, name, where);
1406 : : }
1407 : :
1408 : :
1409 : : bool
1410 : 281 : gfc_add_threadprivate (symbol_attribute *attr, const char *name, locus *where)
1411 : : {
1412 : :
1413 : 281 : if (check_used (attr, name, where))
1414 : : return false;
1415 : :
1416 : 281 : if (attr->threadprivate)
1417 : : {
1418 : 0 : duplicate_attr ("THREADPRIVATE", where);
1419 : 0 : return false;
1420 : : }
1421 : :
1422 : 281 : attr->threadprivate = 1;
1423 : 281 : return gfc_check_conflict (attr, name, where);
1424 : : }
1425 : :
1426 : :
1427 : : bool
1428 : 1138 : gfc_add_omp_declare_target (symbol_attribute *attr, const char *name,
1429 : : locus *where)
1430 : : {
1431 : :
1432 : 1138 : if (check_used (attr, name, where))
1433 : : return false;
1434 : :
1435 : 1112 : if (attr->omp_declare_target)
1436 : : return true;
1437 : :
1438 : 1051 : attr->omp_declare_target = 1;
1439 : 1051 : return gfc_check_conflict (attr, name, where);
1440 : : }
1441 : :
1442 : :
1443 : : bool
1444 : 46 : gfc_add_omp_declare_target_link (symbol_attribute *attr, const char *name,
1445 : : locus *where)
1446 : : {
1447 : :
1448 : 46 : if (check_used (attr, name, where))
1449 : : return false;
1450 : :
1451 : 46 : if (attr->omp_declare_target_link)
1452 : : return true;
1453 : :
1454 : 32 : attr->omp_declare_target_link = 1;
1455 : 32 : return gfc_check_conflict (attr, name, where);
1456 : : }
1457 : :
1458 : :
1459 : : bool
1460 : 0 : gfc_add_oacc_declare_create (symbol_attribute *attr, const char *name,
1461 : : locus *where)
1462 : : {
1463 : 0 : if (check_used (attr, name, where))
1464 : : return false;
1465 : :
1466 : 0 : if (attr->oacc_declare_create)
1467 : : return true;
1468 : :
1469 : 0 : attr->oacc_declare_create = 1;
1470 : 0 : return gfc_check_conflict (attr, name, where);
1471 : : }
1472 : :
1473 : :
1474 : : bool
1475 : 0 : gfc_add_oacc_declare_copyin (symbol_attribute *attr, const char *name,
1476 : : locus *where)
1477 : : {
1478 : 0 : if (check_used (attr, name, where))
1479 : : return false;
1480 : :
1481 : 0 : if (attr->oacc_declare_copyin)
1482 : : return true;
1483 : :
1484 : 0 : attr->oacc_declare_copyin = 1;
1485 : 0 : return gfc_check_conflict (attr, name, where);
1486 : : }
1487 : :
1488 : :
1489 : : bool
1490 : 0 : gfc_add_oacc_declare_deviceptr (symbol_attribute *attr, const char *name,
1491 : : locus *where)
1492 : : {
1493 : 0 : if (check_used (attr, name, where))
1494 : : return false;
1495 : :
1496 : 0 : if (attr->oacc_declare_deviceptr)
1497 : : return true;
1498 : :
1499 : 0 : attr->oacc_declare_deviceptr = 1;
1500 : 0 : return gfc_check_conflict (attr, name, where);
1501 : : }
1502 : :
1503 : :
1504 : : bool
1505 : 0 : gfc_add_oacc_declare_device_resident (symbol_attribute *attr, const char *name,
1506 : : locus *where)
1507 : : {
1508 : 0 : if (check_used (attr, name, where))
1509 : : return false;
1510 : :
1511 : 0 : if (attr->oacc_declare_device_resident)
1512 : : return true;
1513 : :
1514 : 0 : attr->oacc_declare_device_resident = 1;
1515 : 0 : return gfc_check_conflict (attr, name, where);
1516 : : }
1517 : :
1518 : :
1519 : : bool
1520 : 11669 : gfc_add_target (symbol_attribute *attr, locus *where)
1521 : : {
1522 : :
1523 : 11669 : if (check_used (attr, NULL, where))
1524 : : return false;
1525 : :
1526 : 11669 : if (attr->target)
1527 : : {
1528 : 1 : duplicate_attr ("TARGET", where);
1529 : 1 : return false;
1530 : : }
1531 : :
1532 : 11668 : attr->target = 1;
1533 : 11668 : return gfc_check_conflict (attr, NULL, where);
1534 : : }
1535 : :
1536 : :
1537 : : bool
1538 : 93485 : gfc_add_dummy (symbol_attribute *attr, const char *name, locus *where)
1539 : : {
1540 : :
1541 : 93485 : if (check_used (attr, name, where))
1542 : : return false;
1543 : :
1544 : : /* Duplicate dummy arguments are allowed due to ENTRY statements. */
1545 : 93485 : attr->dummy = 1;
1546 : 93485 : return gfc_check_conflict (attr, name, where);
1547 : : }
1548 : :
1549 : :
1550 : : bool
1551 : 11662 : gfc_add_in_common (symbol_attribute *attr, const char *name, locus *where)
1552 : : {
1553 : :
1554 : 11662 : if (check_used (attr, name, where))
1555 : : return false;
1556 : :
1557 : : /* Duplicate attribute already checked for. */
1558 : 11662 : attr->in_common = 1;
1559 : 11662 : return gfc_check_conflict (attr, name, where);
1560 : : }
1561 : :
1562 : :
1563 : : bool
1564 : 2977 : gfc_add_in_equivalence (symbol_attribute *attr, const char *name, locus *where)
1565 : : {
1566 : :
1567 : : /* Duplicate attribute already checked for. */
1568 : 2977 : attr->in_equivalence = 1;
1569 : 2977 : if (!gfc_check_conflict (attr, name, where))
1570 : : return false;
1571 : :
1572 : 2968 : if (attr->flavor == FL_VARIABLE)
1573 : : return true;
1574 : :
1575 : 109 : return gfc_add_flavor (attr, FL_VARIABLE, name, where);
1576 : : }
1577 : :
1578 : :
1579 : : bool
1580 : 3044 : gfc_add_data (symbol_attribute *attr, const char *name, locus *where)
1581 : : {
1582 : :
1583 : 3044 : if (check_used (attr, name, where))
1584 : : return false;
1585 : :
1586 : 3043 : attr->data = 1;
1587 : 3043 : return gfc_check_conflict (attr, name, where);
1588 : : }
1589 : :
1590 : :
1591 : : bool
1592 : 1990 : gfc_add_in_namelist (symbol_attribute *attr, const char *name, locus *where)
1593 : : {
1594 : :
1595 : 1990 : attr->in_namelist = 1;
1596 : 1990 : return gfc_check_conflict (attr, name, where);
1597 : : }
1598 : :
1599 : :
1600 : : bool
1601 : 958 : gfc_add_sequence (symbol_attribute *attr, const char *name, locus *where)
1602 : : {
1603 : :
1604 : 958 : if (check_used (attr, name, where))
1605 : : return false;
1606 : :
1607 : 958 : attr->sequence = 1;
1608 : 958 : return gfc_check_conflict (attr, name, where);
1609 : : }
1610 : :
1611 : :
1612 : : bool
1613 : 7677 : gfc_add_elemental (symbol_attribute *attr, locus *where)
1614 : : {
1615 : :
1616 : 7677 : if (check_used (attr, NULL, where))
1617 : : return false;
1618 : :
1619 : 7677 : if (attr->elemental)
1620 : : {
1621 : 2 : duplicate_attr ("ELEMENTAL", where);
1622 : 2 : return false;
1623 : : }
1624 : :
1625 : 7675 : attr->elemental = 1;
1626 : 7675 : return gfc_check_conflict (attr, NULL, where);
1627 : : }
1628 : :
1629 : :
1630 : : bool
1631 : 10268 : gfc_add_pure (symbol_attribute *attr, locus *where)
1632 : : {
1633 : :
1634 : 10268 : if (check_used (attr, NULL, where))
1635 : : return false;
1636 : :
1637 : 10268 : if (attr->pure)
1638 : : {
1639 : 2 : duplicate_attr ("PURE", where);
1640 : 2 : return false;
1641 : : }
1642 : :
1643 : 10266 : attr->pure = 1;
1644 : 10266 : return gfc_check_conflict (attr, NULL, where);
1645 : : }
1646 : :
1647 : :
1648 : : bool
1649 : 727 : gfc_add_recursive (symbol_attribute *attr, locus *where)
1650 : : {
1651 : :
1652 : 727 : if (check_used (attr, NULL, where))
1653 : : return false;
1654 : :
1655 : 727 : if (attr->recursive)
1656 : : {
1657 : 2 : duplicate_attr ("RECURSIVE", where);
1658 : 2 : return false;
1659 : : }
1660 : :
1661 : 725 : attr->recursive = 1;
1662 : 725 : return gfc_check_conflict (attr, NULL, where);
1663 : : }
1664 : :
1665 : :
1666 : : bool
1667 : 759 : gfc_add_entry (symbol_attribute *attr, const char *name, locus *where)
1668 : : {
1669 : :
1670 : 759 : if (check_used (attr, name, where))
1671 : : return false;
1672 : :
1673 : 759 : if (attr->entry)
1674 : : {
1675 : 0 : duplicate_attr ("ENTRY", where);
1676 : 0 : return false;
1677 : : }
1678 : :
1679 : 759 : attr->entry = 1;
1680 : 759 : return gfc_check_conflict (attr, name, where);
1681 : : }
1682 : :
1683 : :
1684 : : bool
1685 : 954425 : gfc_add_function (symbol_attribute *attr, const char *name, locus *where)
1686 : : {
1687 : :
1688 : 954425 : if (attr->flavor != FL_PROCEDURE
1689 : 954425 : && !gfc_add_flavor (attr, FL_PROCEDURE, name, where))
1690 : : return false;
1691 : :
1692 : 954425 : attr->function = 1;
1693 : 954425 : return gfc_check_conflict (attr, name, where);
1694 : : }
1695 : :
1696 : :
1697 : : bool
1698 : 126777 : gfc_add_subroutine (symbol_attribute *attr, const char *name, locus *where)
1699 : : {
1700 : :
1701 : 126777 : if (attr->flavor != FL_PROCEDURE
1702 : 126777 : && !gfc_add_flavor (attr, FL_PROCEDURE, name, where))
1703 : : return false;
1704 : :
1705 : 126774 : attr->subroutine = 1;
1706 : :
1707 : : /* If we are looking at a BLOCK DATA statement and we encounter a
1708 : : name with a leading underscore (which must be
1709 : : compiler-generated), do not check. See PR 84394. */
1710 : :
1711 : 126774 : if (name && *name != '_' && gfc_current_state () != COMP_BLOCK_DATA)
1712 : 78584 : return gfc_check_conflict (attr, name, where);
1713 : : else
1714 : : return true;
1715 : : }
1716 : :
1717 : :
1718 : : bool
1719 : 23885 : gfc_add_generic (symbol_attribute *attr, const char *name, locus *where)
1720 : : {
1721 : :
1722 : 23885 : if (attr->flavor != FL_PROCEDURE
1723 : 23885 : && !gfc_add_flavor (attr, FL_PROCEDURE, name, where))
1724 : : return false;
1725 : :
1726 : 23883 : attr->generic = 1;
1727 : 23883 : return gfc_check_conflict (attr, name, where);
1728 : : }
1729 : :
1730 : :
1731 : : bool
1732 : 1556 : gfc_add_proc (symbol_attribute *attr, const char *name, locus *where)
1733 : : {
1734 : :
1735 : 1556 : if (check_used (attr, NULL, where))
1736 : : return false;
1737 : :
1738 : 1556 : if (attr->flavor != FL_PROCEDURE
1739 : 1556 : && !gfc_add_flavor (attr, FL_PROCEDURE, name, where))
1740 : : return false;
1741 : :
1742 : 1556 : if (attr->procedure)
1743 : : {
1744 : 0 : duplicate_attr ("PROCEDURE", where);
1745 : 0 : return false;
1746 : : }
1747 : :
1748 : 1556 : attr->procedure = 1;
1749 : :
1750 : 1556 : return gfc_check_conflict (attr, NULL, where);
1751 : : }
1752 : :
1753 : :
1754 : : bool
1755 : 767 : gfc_add_abstract (symbol_attribute* attr, locus* where)
1756 : : {
1757 : 767 : if (attr->abstract)
1758 : : {
1759 : 1 : duplicate_attr ("ABSTRACT", where);
1760 : 1 : return false;
1761 : : }
1762 : :
1763 : 766 : attr->abstract = 1;
1764 : :
1765 : 766 : return gfc_check_conflict (attr, NULL, where);
1766 : : }
1767 : :
1768 : :
1769 : : /* Flavors are special because some flavors are not what Fortran
1770 : : considers attributes and can be reaffirmed multiple times. */
1771 : :
1772 : : bool
1773 : 3590706 : gfc_add_flavor (symbol_attribute *attr, sym_flavor f, const char *name,
1774 : : locus *where)
1775 : : {
1776 : :
1777 : 3590706 : if ((f == FL_PROGRAM || f == FL_BLOCK_DATA || f == FL_MODULE
1778 : 3590706 : || f == FL_PARAMETER || f == FL_LABEL || gfc_fl_struct(f)
1779 : 212259 : || f == FL_NAMELIST) && check_used (attr, name, where))
1780 : : return false;
1781 : :
1782 : 3590706 : if (attr->flavor == f && f == FL_VARIABLE)
1783 : : return true;
1784 : :
1785 : : /* Copying a procedure dummy argument for a module procedure in a
1786 : : submodule results in the flavor being copied and would result in
1787 : : an error without this. */
1788 : 3590704 : if (attr->flavor == f && f == FL_PROCEDURE
1789 : 474 : && gfc_new_block && gfc_new_block->abr_modproc_decl)
1790 : : return true;
1791 : :
1792 : 3590695 : if (attr->flavor != FL_UNKNOWN)
1793 : : {
1794 : 528 : if (where == NULL)
1795 : 416 : where = &gfc_current_locus;
1796 : :
1797 : 528 : if (name)
1798 : 350 : gfc_error ("%s attribute of %qs conflicts with %s attribute at %L",
1799 : 175 : gfc_code2string (flavors, attr->flavor), name,
1800 : : gfc_code2string (flavors, f), where);
1801 : : else
1802 : 706 : gfc_error ("%s attribute conflicts with %s attribute at %L",
1803 : 353 : gfc_code2string (flavors, attr->flavor),
1804 : : gfc_code2string (flavors, f), where);
1805 : :
1806 : 528 : return false;
1807 : : }
1808 : :
1809 : 3590167 : attr->flavor = f;
1810 : :
1811 : 3590167 : return gfc_check_conflict (attr, name, where);
1812 : : }
1813 : :
1814 : :
1815 : : bool
1816 : 1365441 : gfc_add_procedure (symbol_attribute *attr, procedure_type t,
1817 : : const char *name, locus *where)
1818 : : {
1819 : :
1820 : 1365441 : if (check_used (attr, name, where))
1821 : : return false;
1822 : :
1823 : 1365413 : if (attr->flavor != FL_PROCEDURE
1824 : 1365413 : && !gfc_add_flavor (attr, FL_PROCEDURE, name, where))
1825 : : return false;
1826 : :
1827 : 1365363 : if (where == NULL)
1828 : 1346749 : where = &gfc_current_locus;
1829 : :
1830 : 1365363 : if (attr->proc != PROC_UNKNOWN && !attr->module_procedure
1831 : 217 : && attr->access == ACCESS_UNKNOWN)
1832 : : {
1833 : 0 : if (attr->proc == PROC_ST_FUNCTION && t == PROC_INTERNAL
1834 : 190 : && !gfc_notification_std (GFC_STD_F2008))
1835 : 0 : gfc_error ("%s procedure at %L is already declared as %s "
1836 : : "procedure. \nF2008: A pointer function assignment "
1837 : : "is ambiguous if it is the first executable statement "
1838 : : "after the specification block. Please add any other "
1839 : : "kind of executable statement before it. FIXME",
1840 : : gfc_code2string (procedures, t), where,
1841 : 0 : gfc_code2string (procedures, attr->proc));
1842 : : else
1843 : 190 : gfc_error ("%s procedure at %L is already declared as %s "
1844 : : "procedure", gfc_code2string (procedures, t), where,
1845 : 190 : gfc_code2string (procedures, attr->proc));
1846 : :
1847 : 190 : return false;
1848 : : }
1849 : :
1850 : 1365173 : attr->proc = t;
1851 : :
1852 : : /* Statement functions are always scalar and functions. */
1853 : 1365173 : if (t == PROC_ST_FUNCTION
1854 : 1365173 : && ((!attr->function && !gfc_add_function (attr, name, where))
1855 : 389165 : || attr->dimension))
1856 : 68 : return false;
1857 : :
1858 : 1365105 : return gfc_check_conflict (attr, name, where);
1859 : : }
1860 : :
1861 : :
1862 : : bool
1863 : 55088 : gfc_add_intent (symbol_attribute *attr, sym_intent intent, locus *where)
1864 : : {
1865 : :
1866 : 55088 : if (check_used (attr, NULL, where))
1867 : : return false;
1868 : :
1869 : 55088 : if (attr->intent == INTENT_UNKNOWN)
1870 : : {
1871 : 55088 : attr->intent = intent;
1872 : 55088 : return gfc_check_conflict (attr, NULL, where);
1873 : : }
1874 : :
1875 : 0 : if (where == NULL)
1876 : 0 : where = &gfc_current_locus;
1877 : :
1878 : 0 : gfc_error ("INTENT (%s) conflicts with INTENT(%s) at %L",
1879 : 0 : gfc_intent_string (attr->intent),
1880 : : gfc_intent_string (intent), where);
1881 : :
1882 : 0 : return false;
1883 : : }
1884 : :
1885 : :
1886 : : /* No checks for use-association in public and private statements. */
1887 : :
1888 : : bool
1889 : 5465 : gfc_add_access (symbol_attribute *attr, gfc_access access,
1890 : : const char *name, locus *where)
1891 : : {
1892 : :
1893 : 5465 : if (attr->access == ACCESS_UNKNOWN
1894 : 5 : || (attr->use_assoc && attr->access != ACCESS_PRIVATE))
1895 : : {
1896 : 5461 : attr->access = access;
1897 : 5461 : return gfc_check_conflict (attr, name, where);
1898 : : }
1899 : :
1900 : 4 : if (where == NULL)
1901 : 3 : where = &gfc_current_locus;
1902 : 4 : gfc_error ("ACCESS specification at %L was already specified", where);
1903 : :
1904 : 4 : return false;
1905 : : }
1906 : :
1907 : :
1908 : : /* Set the is_bind_c field for the given symbol_attribute. */
1909 : :
1910 : : bool
1911 : 6626 : gfc_add_is_bind_c (symbol_attribute *attr, const char *name, locus *where,
1912 : : int is_proc_lang_bind_spec)
1913 : : {
1914 : :
1915 : 6626 : if (is_proc_lang_bind_spec == 0 && attr->flavor == FL_PROCEDURE)
1916 : 5 : gfc_error_now ("BIND(C) attribute at %L can only be used for "
1917 : : "variables or common blocks", where);
1918 : 6621 : else if (attr->is_bind_c)
1919 : 1 : gfc_error_now ("Duplicate BIND attribute specified at %L", where);
1920 : : else
1921 : 6620 : attr->is_bind_c = 1;
1922 : :
1923 : 6626 : if (where == NULL)
1924 : 52 : where = &gfc_current_locus;
1925 : :
1926 : 6626 : if (!gfc_notify_std (GFC_STD_F2003, "BIND(C) at %L", where))
1927 : : return false;
1928 : :
1929 : 6626 : return gfc_check_conflict (attr, name, where);
1930 : : }
1931 : :
1932 : :
1933 : : /* Set the extension field for the given symbol_attribute. */
1934 : :
1935 : : bool
1936 : 1429 : gfc_add_extension (symbol_attribute *attr, locus *where)
1937 : : {
1938 : 1429 : if (where == NULL)
1939 : 0 : where = &gfc_current_locus;
1940 : :
1941 : 1429 : if (attr->extension)
1942 : 0 : gfc_error_now ("Duplicate EXTENDS attribute specified at %L", where);
1943 : : else
1944 : 1429 : attr->extension = 1;
1945 : :
1946 : 1429 : if (!gfc_notify_std (GFC_STD_F2003, "EXTENDS at %L", where))
1947 : : return false;
1948 : :
1949 : : return true;
1950 : : }
1951 : :
1952 : :
1953 : : bool
1954 : 139800 : gfc_add_explicit_interface (gfc_symbol *sym, ifsrc source,
1955 : : gfc_formal_arglist * formal, locus *where)
1956 : : {
1957 : 139800 : if (check_used (&sym->attr, sym->name, where))
1958 : : return false;
1959 : :
1960 : : /* Skip the following checks in the case of a module_procedures in a
1961 : : submodule since they will manifestly fail. */
1962 : 139800 : if (sym->attr.module_procedure == 1
1963 : 1113 : && source == IFSRC_DECL)
1964 : 737 : goto finish;
1965 : :
1966 : 139063 : if (where == NULL)
1967 : 139063 : where = &gfc_current_locus;
1968 : :
1969 : 139063 : if (sym->attr.if_source != IFSRC_UNKNOWN
1970 : 139063 : && sym->attr.if_source != IFSRC_DECL)
1971 : : {
1972 : 0 : gfc_error ("Symbol %qs at %L already has an explicit interface",
1973 : : sym->name, where);
1974 : 0 : return false;
1975 : : }
1976 : :
1977 : 139063 : if (source == IFSRC_IFBODY && (sym->attr.dimension || sym->attr.allocatable))
1978 : : {
1979 : 2 : gfc_error ("%qs at %L has attributes specified outside its INTERFACE "
1980 : : "body", sym->name, where);
1981 : 2 : return false;
1982 : : }
1983 : :
1984 : 139061 : finish:
1985 : 139798 : sym->formal = formal;
1986 : 139798 : sym->attr.if_source = source;
1987 : :
1988 : 139798 : return true;
1989 : : }
1990 : :
1991 : :
1992 : : /* Add a type to a symbol. */
1993 : :
1994 : : bool
1995 : 258546 : gfc_add_type (gfc_symbol *sym, gfc_typespec *ts, locus *where)
1996 : : {
1997 : 258546 : sym_flavor flavor;
1998 : 258546 : bt type;
1999 : :
2000 : 258546 : if (where == NULL)
2001 : 5350 : where = &gfc_current_locus;
2002 : :
2003 : 258546 : if (sym->result)
2004 : 7794 : type = sym->result->ts.type;
2005 : : else
2006 : 250752 : type = sym->ts.type;
2007 : :
2008 : 258546 : if (sym->attr.result && type == BT_UNKNOWN && sym->ns->proc_name)
2009 : 4051 : type = sym->ns->proc_name->ts.type;
2010 : :
2011 : 258546 : if (type != BT_UNKNOWN && !(sym->attr.function && sym->attr.implicit_type)
2012 : 78 : && !(gfc_state_stack->previous && gfc_state_stack->previous->previous
2013 : 60 : && gfc_state_stack->previous->previous->state == COMP_SUBMODULE)
2014 : 44 : && !sym->attr.module_procedure)
2015 : : {
2016 : 26 : if (sym->attr.use_assoc)
2017 : 2 : gfc_error ("Symbol %qs at %L conflicts with symbol from module %qs, "
2018 : : "use-associated at %L", sym->name, where, sym->module,
2019 : : &sym->declared_at);
2020 : 24 : else if (sym->attr.function && sym->attr.result)
2021 : 1 : gfc_error ("Symbol %qs at %L already has basic type of %s",
2022 : 1 : sym->ns->proc_name->name, where, gfc_basic_typename (type));
2023 : : else
2024 : 23 : gfc_error ("Symbol %qs at %L already has basic type of %s", sym->name,
2025 : : where, gfc_basic_typename (type));
2026 : 26 : return false;
2027 : : }
2028 : :
2029 : 258520 : if (sym->attr.procedure && sym->ts.interface)
2030 : : {
2031 : 1 : gfc_error ("Procedure %qs at %L may not have basic type of %s",
2032 : : sym->name, where, gfc_basic_typename (ts->type));
2033 : 1 : return false;
2034 : : }
2035 : :
2036 : 258519 : flavor = sym->attr.flavor;
2037 : :
2038 : 258519 : if (flavor == FL_PROGRAM || flavor == FL_BLOCK_DATA || flavor == FL_MODULE
2039 : 258519 : || flavor == FL_LABEL
2040 : 258517 : || (flavor == FL_PROCEDURE && sym->attr.subroutine)
2041 : 258515 : || flavor == FL_DERIVED || flavor == FL_NAMELIST)
2042 : : {
2043 : 4 : gfc_error ("Symbol %qs at %L cannot have a type",
2044 : 4 : sym->ns->proc_name ? sym->ns->proc_name->name : sym->name,
2045 : : where);
2046 : 4 : return false;
2047 : : }
2048 : :
2049 : 258515 : sym->ts = *ts;
2050 : 258515 : return true;
2051 : : }
2052 : :
2053 : :
2054 : : /* Clears all attributes. */
2055 : :
2056 : : void
2057 : 6929621 : gfc_clear_attr (symbol_attribute *attr)
2058 : : {
2059 : 6929621 : memset (attr, 0, sizeof (symbol_attribute));
2060 : 6929621 : }
2061 : :
2062 : :
2063 : : /* Check for missing attributes in the new symbol. Currently does
2064 : : nothing, but it's not clear that it is unnecessary yet. */
2065 : :
2066 : : bool
2067 : 367895 : gfc_missing_attr (symbol_attribute *attr ATTRIBUTE_UNUSED,
2068 : : locus *where ATTRIBUTE_UNUSED)
2069 : : {
2070 : :
2071 : 367895 : return true;
2072 : : }
2073 : :
2074 : :
2075 : : /* Copy an attribute to a symbol attribute, bit by bit. Some
2076 : : attributes have a lot of side-effects but cannot be present given
2077 : : where we are called from, so we ignore some bits. */
2078 : :
2079 : : bool
2080 : 256835 : gfc_copy_attr (symbol_attribute *dest, symbol_attribute *src, locus *where)
2081 : : {
2082 : 256835 : int is_proc_lang_bind_spec;
2083 : :
2084 : : /* In line with the other attributes, we only add bits but do not remove
2085 : : them; cf. also PR 41034. */
2086 : 256835 : dest->ext_attr |= src->ext_attr;
2087 : :
2088 : 256835 : if (src->allocatable && !gfc_add_allocatable (dest, where))
2089 : 4 : goto fail;
2090 : :
2091 : 256831 : if (src->automatic && !gfc_add_automatic (dest, NULL, where))
2092 : 2 : goto fail;
2093 : 256829 : if (src->dimension && !gfc_add_dimension (dest, NULL, where))
2094 : 0 : goto fail;
2095 : 256829 : if (src->codimension && !gfc_add_codimension (dest, NULL, where))
2096 : 0 : goto fail;
2097 : 256829 : if (src->contiguous && !gfc_add_contiguous (dest, NULL, where))
2098 : 2 : goto fail;
2099 : 256827 : if (src->optional && !gfc_add_optional (dest, where))
2100 : 1 : goto fail;
2101 : 256826 : if (src->pointer && !gfc_add_pointer (dest, where))
2102 : 8 : goto fail;
2103 : 256818 : if (src->is_protected && !gfc_add_protected (dest, NULL, where))
2104 : 0 : goto fail;
2105 : 256818 : if (src->save && !gfc_add_save (dest, src->save, NULL, where))
2106 : 4 : goto fail;
2107 : 256814 : if (src->value && !gfc_add_value (dest, NULL, where))
2108 : 2 : goto fail;
2109 : 256812 : if (src->volatile_ && !gfc_add_volatile (dest, NULL, where))
2110 : 0 : goto fail;
2111 : 256812 : if (src->asynchronous && !gfc_add_asynchronous (dest, NULL, where))
2112 : 0 : goto fail;
2113 : 256812 : if (src->threadprivate
2114 : 256812 : && !gfc_add_threadprivate (dest, NULL, where))
2115 : 0 : goto fail;
2116 : 256812 : if (src->omp_declare_target
2117 : 256812 : && !gfc_add_omp_declare_target (dest, NULL, where))
2118 : 0 : goto fail;
2119 : 256812 : if (src->omp_declare_target_link
2120 : 256812 : && !gfc_add_omp_declare_target_link (dest, NULL, where))
2121 : 0 : goto fail;
2122 : 256812 : if (src->oacc_declare_create
2123 : 256812 : && !gfc_add_oacc_declare_create (dest, NULL, where))
2124 : 0 : goto fail;
2125 : 256812 : if (src->oacc_declare_copyin
2126 : 256812 : && !gfc_add_oacc_declare_copyin (dest, NULL, where))
2127 : 0 : goto fail;
2128 : 256812 : if (src->oacc_declare_deviceptr
2129 : 256812 : && !gfc_add_oacc_declare_deviceptr (dest, NULL, where))
2130 : 0 : goto fail;
2131 : 256812 : if (src->oacc_declare_device_resident
2132 : 256812 : && !gfc_add_oacc_declare_device_resident (dest, NULL, where))
2133 : 0 : goto fail;
2134 : 256812 : if (src->target && !gfc_add_target (dest, where))
2135 : 2 : goto fail;
2136 : 256810 : if (src->dummy && !gfc_add_dummy (dest, NULL, where))
2137 : 0 : goto fail;
2138 : 256810 : if (src->result && !gfc_add_result (dest, NULL, where))
2139 : 0 : goto fail;
2140 : 256810 : if (src->entry)
2141 : 0 : dest->entry = 1;
2142 : :
2143 : 256810 : if (src->in_namelist && !gfc_add_in_namelist (dest, NULL, where))
2144 : 0 : goto fail;
2145 : :
2146 : 256810 : if (src->in_common && !gfc_add_in_common (dest, NULL, where))
2147 : 0 : goto fail;
2148 : :
2149 : 256810 : if (src->generic && !gfc_add_generic (dest, NULL, where))
2150 : 0 : goto fail;
2151 : 256810 : if (src->function && !gfc_add_function (dest, NULL, where))
2152 : 0 : goto fail;
2153 : 256810 : if (src->subroutine && !gfc_add_subroutine (dest, NULL, where))
2154 : 0 : goto fail;
2155 : :
2156 : 256810 : if (src->sequence && !gfc_add_sequence (dest, NULL, where))
2157 : 0 : goto fail;
2158 : 256810 : if (src->elemental && !gfc_add_elemental (dest, where))
2159 : 0 : goto fail;
2160 : 256810 : if (src->pure && !gfc_add_pure (dest, where))
2161 : 0 : goto fail;
2162 : 256810 : if (src->recursive && !gfc_add_recursive (dest, where))
2163 : 0 : goto fail;
2164 : :
2165 : 256810 : if (src->flavor != FL_UNKNOWN
2166 : 256810 : && !gfc_add_flavor (dest, src->flavor, NULL, where))
2167 : 355 : goto fail;
2168 : :
2169 : 256455 : if (src->intent != INTENT_UNKNOWN
2170 : 256455 : && !gfc_add_intent (dest, src->intent, where))
2171 : 0 : goto fail;
2172 : :
2173 : 256455 : if (src->access != ACCESS_UNKNOWN
2174 : 256455 : && !gfc_add_access (dest, src->access, NULL, where))
2175 : 1 : goto fail;
2176 : :
2177 : 256454 : if (!gfc_missing_attr (dest, where))
2178 : 0 : goto fail;
2179 : :
2180 : 256454 : if (src->cray_pointer && !gfc_add_cray_pointer (dest, where))
2181 : 0 : goto fail;
2182 : 256454 : if (src->cray_pointee && !gfc_add_cray_pointee (dest, where))
2183 : 0 : goto fail;
2184 : :
2185 : 256454 : is_proc_lang_bind_spec = (src->flavor == FL_PROCEDURE ? 1 : 0);
2186 : 256454 : if (src->is_bind_c
2187 : 256454 : && !gfc_add_is_bind_c (dest, NULL, where, is_proc_lang_bind_spec))
2188 : : return false;
2189 : :
2190 : 256453 : if (src->is_c_interop)
2191 : 0 : dest->is_c_interop = 1;
2192 : 256453 : if (src->is_iso_c)
2193 : 0 : dest->is_iso_c = 1;
2194 : :
2195 : 256453 : if (src->external && !gfc_add_external (dest, where))
2196 : 5 : goto fail;
2197 : 256448 : if (src->intrinsic && !gfc_add_intrinsic (dest, where))
2198 : 4 : goto fail;
2199 : 256444 : if (src->proc_pointer)
2200 : 405 : dest->proc_pointer = 1;
2201 : :
2202 : : return true;
2203 : :
2204 : : fail:
2205 : : return false;
2206 : : }
2207 : :
2208 : :
2209 : : /* A function to generate a dummy argument symbol using that from the
2210 : : interface declaration. Can be used for the result symbol as well if
2211 : : the flag is set. */
2212 : :
2213 : : int
2214 : 228 : gfc_copy_dummy_sym (gfc_symbol **dsym, gfc_symbol *sym, int result)
2215 : : {
2216 : 228 : int rc;
2217 : :
2218 : 228 : rc = gfc_get_symbol (sym->name, NULL, dsym);
2219 : 228 : if (rc)
2220 : : return rc;
2221 : :
2222 : 228 : if (!gfc_add_type (*dsym, &(sym->ts), &gfc_current_locus))
2223 : : return 1;
2224 : :
2225 : 228 : if (!gfc_copy_attr (&(*dsym)->attr, &(sym->attr),
2226 : : &gfc_current_locus))
2227 : : return 1;
2228 : :
2229 : 228 : if ((*dsym)->attr.dimension)
2230 : 56 : (*dsym)->as = gfc_copy_array_spec (sym->as);
2231 : :
2232 : 228 : (*dsym)->attr.class_ok = sym->attr.class_ok;
2233 : :
2234 : 228 : if ((*dsym) != NULL && !result
2235 : 213 : && (!gfc_add_dummy(&(*dsym)->attr, (*dsym)->name, NULL)
2236 : 213 : || !gfc_missing_attr (&(*dsym)->attr, NULL)))
2237 : 0 : return 1;
2238 : 228 : else if ((*dsym) != NULL && result
2239 : 243 : && (!gfc_add_result(&(*dsym)->attr, (*dsym)->name, NULL)
2240 : 15 : || !gfc_missing_attr (&(*dsym)->attr, NULL)))
2241 : 0 : return 1;
2242 : :
2243 : : return 0;
2244 : : }
2245 : :
2246 : :
2247 : : /************** Component name management ************/
2248 : :
2249 : : /* Component names of a derived type form their own little namespaces
2250 : : that are separate from all other spaces. The space is composed of
2251 : : a singly linked list of gfc_component structures whose head is
2252 : : located in the parent symbol. */
2253 : :
2254 : :
2255 : : /* Add a component name to a symbol. The call fails if the name is
2256 : : already present. On success, the component pointer is modified to
2257 : : point to the additional component structure. */
2258 : :
2259 : : bool
2260 : 118646 : gfc_add_component (gfc_symbol *sym, const char *name,
2261 : : gfc_component **component)
2262 : : {
2263 : 118646 : gfc_component *p, *tail;
2264 : :
2265 : : /* Check for existing components with the same name, but not for union
2266 : : components or containers. Unions and maps are anonymous so they have
2267 : : unique internal names which will never conflict.
2268 : : Don't use gfc_find_component here because it calls gfc_use_derived,
2269 : : but the derived type may not be fully defined yet. */
2270 : 118646 : tail = NULL;
2271 : :
2272 : 384067 : for (p = sym->components; p; p = p->next)
2273 : : {
2274 : 265425 : if (strcmp (p->name, name) == 0)
2275 : : {
2276 : 4 : gfc_error ("Component %qs at %C already declared at %L",
2277 : : name, &p->loc);
2278 : 4 : return false;
2279 : : }
2280 : :
2281 : 265421 : tail = p;
2282 : : }
2283 : :
2284 : 118642 : if (sym->attr.extension
2285 : 118642 : && gfc_find_component (sym->components->ts.u.derived,
2286 : : name, true, true, NULL))
2287 : : {
2288 : 2 : gfc_error ("Component %qs at %C already in the parent type "
2289 : 2 : "at %L", name, &sym->components->ts.u.derived->declared_at);
2290 : 2 : return false;
2291 : : }
2292 : :
2293 : : /* Allocate a new component. */
2294 : 118640 : p = gfc_get_component ();
2295 : :
2296 : 118640 : if (tail == NULL)
2297 : 37433 : sym->components = p;
2298 : : else
2299 : 81207 : tail->next = p;
2300 : :
2301 : 118640 : p->name = gfc_get_string ("%s", name);
2302 : 118640 : p->loc = gfc_current_locus;
2303 : 118640 : p->ts.type = BT_UNKNOWN;
2304 : :
2305 : 118640 : *component = p;
2306 : 118640 : return true;
2307 : : }
2308 : :
2309 : :
2310 : : /* Recursive function to switch derived types of all symbol in a
2311 : : namespace. */
2312 : :
2313 : : static void
2314 : 0 : switch_types (gfc_symtree *st, gfc_symbol *from, gfc_symbol *to)
2315 : : {
2316 : 0 : gfc_symbol *sym;
2317 : :
2318 : 0 : if (st == NULL)
2319 : 0 : return;
2320 : :
2321 : 0 : sym = st->n.sym;
2322 : 0 : if (sym->ts.type == BT_DERIVED && sym->ts.u.derived == from)
2323 : 0 : sym->ts.u.derived = to;
2324 : :
2325 : 0 : switch_types (st->left, from, to);
2326 : 0 : switch_types (st->right, from, to);
2327 : : }
2328 : :
2329 : :
2330 : : /* This subroutine is called when a derived type is used in order to
2331 : : make the final determination about which version to use. The
2332 : : standard requires that a type be defined before it is 'used', but
2333 : : such types can appear in IMPLICIT statements before the actual
2334 : : definition. 'Using' in this context means declaring a variable to
2335 : : be that type or using the type constructor.
2336 : :
2337 : : If a type is used and the components haven't been defined, then we
2338 : : have to have a derived type in a parent unit. We find the node in
2339 : : the other namespace and point the symtree node in this namespace to
2340 : : that node. Further reference to this name point to the correct
2341 : : node. If we can't find the node in a parent namespace, then we have
2342 : : an error.
2343 : :
2344 : : This subroutine takes a pointer to a symbol node and returns a
2345 : : pointer to the translated node or NULL for an error. Usually there
2346 : : is no translation and we return the node we were passed. */
2347 : :
2348 : : gfc_symbol *
2349 : 326781 : gfc_use_derived (gfc_symbol *sym)
2350 : : {
2351 : 326781 : gfc_symbol *s;
2352 : 326781 : gfc_typespec *t;
2353 : 326781 : gfc_symtree *st;
2354 : 326781 : int i;
2355 : :
2356 : 326781 : if (!sym)
2357 : : return NULL;
2358 : :
2359 : 326777 : if (sym->attr.unlimited_polymorphic)
2360 : : return sym;
2361 : :
2362 : 325225 : if (sym->attr.generic)
2363 : 0 : sym = gfc_find_dt_in_generic (sym);
2364 : :
2365 : 325225 : if (sym->components != NULL || sym->attr.zero_comp)
2366 : : return sym; /* Already defined. */
2367 : :
2368 : 18 : if (sym->ns->parent == NULL)
2369 : 9 : goto bad;
2370 : :
2371 : 9 : if (gfc_find_symbol (sym->name, sym->ns->parent, 1, &s))
2372 : : {
2373 : 0 : gfc_error ("Symbol %qs at %C is ambiguous", sym->name);
2374 : 0 : return NULL;
2375 : : }
2376 : :
2377 : 9 : if (s == NULL || !gfc_fl_struct (s->attr.flavor))
2378 : 9 : goto bad;
2379 : :
2380 : : /* Get rid of symbol sym, translating all references to s. */
2381 : 0 : for (i = 0; i < GFC_LETTERS; i++)
2382 : : {
2383 : 0 : t = &sym->ns->default_type[i];
2384 : 0 : if (t->u.derived == sym)
2385 : 0 : t->u.derived = s;
2386 : : }
2387 : :
2388 : 0 : st = gfc_find_symtree (sym->ns->sym_root, sym->name);
2389 : 0 : st->n.sym = s;
2390 : :
2391 : 0 : s->refs++;
2392 : :
2393 : : /* Unlink from list of modified symbols. */
2394 : 0 : gfc_commit_symbol (sym);
2395 : :
2396 : 0 : switch_types (sym->ns->sym_root, sym, s);
2397 : :
2398 : : /* TODO: Also have to replace sym -> s in other lists like
2399 : : namelists, common lists and interface lists. */
2400 : 0 : gfc_free_symbol (sym);
2401 : :
2402 : 0 : return s;
2403 : :
2404 : 18 : bad:
2405 : 18 : gfc_error ("Derived type %qs at %C is being used before it is defined",
2406 : : sym->name);
2407 : 18 : return NULL;
2408 : : }
2409 : :
2410 : :
2411 : : /* Find all derived types in the uppermost namespace that have a component
2412 : : a component called name and stash them in the assoc field of an
2413 : : associate name variable.
2414 : : This is used to infer the derived type of an associate name, whose selector
2415 : : is a sibling derived type function that has not yet been parsed. Either
2416 : : the derived type is use associated in both contained and sibling procedures
2417 : : or it appears in the uppermost namespace. */
2418 : :
2419 : : static int cts = 0;
2420 : : static void
2421 : 12356 : find_derived_types (gfc_symbol *sym, gfc_symtree *st, const char *name,
2422 : : bool contained, bool stash)
2423 : : {
2424 : 12356 : if (st->n.sym && st->n.sym->attr.flavor == FL_DERIVED
2425 : 2084 : && !st->n.sym->attr.is_class
2426 : 1596 : && ((contained && st->n.sym->attr.use_assoc) || !contained)
2427 : 13936 : && gfc_find_component (st->n.sym, name, true, true, NULL))
2428 : : {
2429 : : /* Do the stashing, if required. */
2430 : 790 : cts++;
2431 : 790 : if (stash)
2432 : : {
2433 : 718 : if (sym->assoc->derived_types)
2434 : 284 : st->n.sym->dt_next = sym->assoc->derived_types;
2435 : 718 : sym->assoc->derived_types = st->n.sym;
2436 : : }
2437 : : }
2438 : :
2439 : 12356 : if (st->left)
2440 : 4882 : find_derived_types (sym, st->left, name, contained, stash);
2441 : :
2442 : 12356 : if (st->right)
2443 : 5540 : find_derived_types (sym, st->right, name, contained, stash);
2444 : 12356 : }
2445 : :
2446 : : int
2447 : 988 : gfc_find_derived_types (gfc_symbol *sym, gfc_namespace *ns,
2448 : : const char *name, bool stash)
2449 : : {
2450 : 988 : gfc_namespace *encompassing = NULL;
2451 : 988 : gcc_assert (sym->assoc);
2452 : :
2453 : 988 : cts = 0;
2454 : 3032 : while (ns->parent)
2455 : : {
2456 : 2044 : if (!ns->parent->parent && ns->proc_name
2457 : 988 : && (ns->proc_name->attr.function || ns->proc_name->attr.subroutine))
2458 : 2044 : encompassing = ns;
2459 : : ns = ns->parent;
2460 : : }
2461 : :
2462 : : /* Search the top level namespace first. */
2463 : 988 : find_derived_types (sym, ns->sym_root, name, false, stash);
2464 : :
2465 : : /* Then the encompassing namespace. */
2466 : 988 : if (encompassing && encompassing != ns)
2467 : 946 : find_derived_types (sym, encompassing->sym_root, name, true, stash);
2468 : :
2469 : 988 : return cts;
2470 : : }
2471 : :
2472 : : /* Find the component with the given name in the union type symbol.
2473 : : If ref is not NULL it will be set to the chain of components through which
2474 : : the component can actually be accessed. This is necessary for unions because
2475 : : intermediate structures may be maps, nested structures, or other unions,
2476 : : all of which may (or must) be 'anonymous' to user code. */
2477 : :
2478 : : static gfc_component *
2479 : 2192 : find_union_component (gfc_symbol *un, const char *name,
2480 : : bool noaccess, gfc_ref **ref)
2481 : : {
2482 : 2192 : gfc_component *m, *check;
2483 : 2192 : gfc_ref *sref, *tmp;
2484 : :
2485 : 3983 : for (m = un->components; m; m = m->next)
2486 : : {
2487 : 3483 : check = gfc_find_component (m->ts.u.derived, name, noaccess, true, &tmp);
2488 : 3483 : if (check == NULL)
2489 : 1791 : continue;
2490 : :
2491 : : /* Found component somewhere in m; chain the refs together. */
2492 : 1692 : if (ref)
2493 : : {
2494 : : /* Map ref. */
2495 : 1692 : sref = gfc_get_ref ();
2496 : 1692 : sref->type = REF_COMPONENT;
2497 : 1692 : sref->u.c.component = m;
2498 : 1692 : sref->u.c.sym = m->ts.u.derived;
2499 : 1692 : sref->next = tmp;
2500 : :
2501 : 1692 : *ref = sref;
2502 : : }
2503 : : /* Other checks (such as access) were done in the recursive calls. */
2504 : : return check;
2505 : : }
2506 : : return NULL;
2507 : : }
2508 : :
2509 : :
2510 : : /* Recursively append candidate COMPONENT structures to CANDIDATES. Store
2511 : : the number of total candidates in CANDIDATES_LEN. */
2512 : :
2513 : : static void
2514 : 34 : lookup_component_fuzzy_find_candidates (gfc_component *component,
2515 : : char **&candidates,
2516 : : size_t &candidates_len)
2517 : : {
2518 : 81 : for (gfc_component *p = component; p; p = p->next)
2519 : 47 : vec_push (candidates, candidates_len, p->name);
2520 : 34 : }
2521 : :
2522 : :
2523 : : /* Lookup component MEMBER fuzzily, taking names in COMPONENT into account. */
2524 : :
2525 : : static const char*
2526 : 34 : lookup_component_fuzzy (const char *member, gfc_component *component)
2527 : : {
2528 : 34 : char **candidates = NULL;
2529 : 34 : size_t candidates_len = 0;
2530 : 34 : lookup_component_fuzzy_find_candidates (component, candidates,
2531 : : candidates_len);
2532 : 34 : return gfc_closest_fuzzy_match (member, candidates);
2533 : : }
2534 : :
2535 : :
2536 : : /* Given a derived type node and a component name, try to locate the
2537 : : component structure. Returns the NULL pointer if the component is
2538 : : not found or the components are private. If noaccess is set, no access
2539 : : checks are done. If silent is set, an error will not be generated if
2540 : : the component cannot be found or accessed.
2541 : :
2542 : : If ref is not NULL, *ref is set to represent the chain of components
2543 : : required to get to the ultimate component.
2544 : :
2545 : : If the component is simply a direct subcomponent, or is inherited from a
2546 : : parent derived type in the given derived type, this is a single ref with its
2547 : : component set to the returned component.
2548 : :
2549 : : Otherwise, *ref is constructed as a chain of subcomponents. This occurs
2550 : : when the component is found through an implicit chain of nested union and
2551 : : map components. Unions and maps are "anonymous" substructures in FORTRAN
2552 : : which cannot be explicitly referenced, but the reference chain must be
2553 : : considered as in C for backend translation to correctly compute layouts.
2554 : : (For example, x.a may refer to x->(UNION)->(MAP)->(UNION)->(MAP)->a). */
2555 : :
2556 : : gfc_component *
2557 : 303798 : gfc_find_component (gfc_symbol *sym, const char *name,
2558 : : bool noaccess, bool silent, gfc_ref **ref)
2559 : : {
2560 : 303798 : gfc_component *p, *check;
2561 : 303798 : gfc_ref *sref = NULL, *tmp = NULL;
2562 : :
2563 : 303798 : if (name == NULL || sym == NULL)
2564 : : return NULL;
2565 : :
2566 : 298804 : if (sym->attr.flavor == FL_DERIVED)
2567 : 290041 : sym = gfc_use_derived (sym);
2568 : : else
2569 : 8763 : gcc_assert (gfc_fl_struct (sym->attr.flavor));
2570 : :
2571 : 290041 : if (sym == NULL)
2572 : : return NULL;
2573 : :
2574 : : /* Handle UNIONs specially - mutually recursive with gfc_find_component. */
2575 : 298802 : if (sym->attr.flavor == FL_UNION)
2576 : 500 : return find_union_component (sym, name, noaccess, ref);
2577 : :
2578 : 298302 : if (ref) *ref = NULL;
2579 : 661670 : for (p = sym->components; p; p = p->next)
2580 : : {
2581 : : /* Nest search into union's maps. */
2582 : 628388 : if (p->ts.type == BT_UNION)
2583 : : {
2584 : 1692 : check = find_union_component (p->ts.u.derived, name, noaccess, &tmp);
2585 : 1692 : if (check != NULL)
2586 : : {
2587 : : /* Union ref. */
2588 : 1692 : if (ref)
2589 : : {
2590 : 1252 : sref = gfc_get_ref ();
2591 : 1252 : sref->type = REF_COMPONENT;
2592 : 1252 : sref->u.c.component = p;
2593 : 1252 : sref->u.c.sym = p->ts.u.derived;
2594 : 1252 : sref->next = tmp;
2595 : 1252 : *ref = sref;
2596 : : }
2597 : 1692 : return check;
2598 : : }
2599 : : }
2600 : 626696 : else if (strcmp (p->name, name) == 0)
2601 : : break;
2602 : :
2603 : 363368 : continue;
2604 : : }
2605 : :
2606 : 296610 : if (p && sym->attr.use_assoc && !noaccess)
2607 : : {
2608 : 43169 : bool is_parent_comp = sym->attr.extension && (p == sym->components);
2609 : 43169 : if (p->attr.access == ACCESS_PRIVATE ||
2610 : : (p->attr.access != ACCESS_PUBLIC
2611 : 42530 : && sym->component_access == ACCESS_PRIVATE
2612 : 8 : && !is_parent_comp))
2613 : : {
2614 : 14 : if (!silent)
2615 : 14 : gfc_error ("Component %qs at %C is a PRIVATE component of %qs",
2616 : : name, sym->name);
2617 : 14 : return NULL;
2618 : : }
2619 : : }
2620 : :
2621 : : if (p == NULL
2622 : 33282 : && sym->attr.extension
2623 : 22364 : && sym->components->ts.type == BT_DERIVED)
2624 : : {
2625 : 22364 : p = gfc_find_component (sym->components->ts.u.derived, name,
2626 : : noaccess, silent, ref);
2627 : : /* Do not overwrite the error. */
2628 : 22364 : if (p == NULL)
2629 : : return p;
2630 : : }
2631 : :
2632 : 296169 : if (p == NULL && !silent)
2633 : : {
2634 : 34 : const char *guessed = lookup_component_fuzzy (name, sym->components);
2635 : 34 : if (guessed)
2636 : 10 : gfc_error ("%qs at %C is not a member of the %qs structure"
2637 : : "; did you mean %qs?",
2638 : : name, sym->name, guessed);
2639 : : else
2640 : 24 : gfc_error ("%qs at %C is not a member of the %qs structure",
2641 : : name, sym->name);
2642 : : }
2643 : :
2644 : : /* Component was found; build the ultimate component reference. */
2645 : 296169 : if (p != NULL && ref)
2646 : : {
2647 : 233004 : tmp = gfc_get_ref ();
2648 : 233004 : tmp->type = REF_COMPONENT;
2649 : 233004 : tmp->u.c.component = p;
2650 : 233004 : tmp->u.c.sym = sym;
2651 : : /* Link the final component ref to the end of the chain of subrefs. */
2652 : 233004 : if (sref)
2653 : : {
2654 : : *ref = sref;
2655 : : for (; sref->next; sref = sref->next)
2656 : : ;
2657 : : sref->next = tmp;
2658 : : }
2659 : : else
2660 : 233004 : *ref = tmp;
2661 : : }
2662 : :
2663 : : return p;
2664 : 363368 : }
2665 : :
2666 : :
2667 : : /* Given a symbol, free all of the component structures and everything
2668 : : they point to. */
2669 : :
2670 : : static void
2671 : 5674337 : free_components (gfc_component *p)
2672 : : {
2673 : 5674337 : gfc_component *q;
2674 : :
2675 : 5928602 : for (; p; p = q)
2676 : : {
2677 : 254265 : q = p->next;
2678 : :
2679 : 254265 : gfc_free_array_spec (p->as);
2680 : 254265 : gfc_free_expr (p->initializer);
2681 : 254265 : if (p->kind_expr)
2682 : 110 : gfc_free_expr (p->kind_expr);
2683 : 254265 : if (p->param_list)
2684 : 88 : gfc_free_actual_arglist (p->param_list);
2685 : 254265 : free (p->tb);
2686 : 254265 : p->tb = NULL;
2687 : 254265 : free (p);
2688 : : }
2689 : 5674337 : }
2690 : :
2691 : :
2692 : : /******************** Statement label management ********************/
2693 : :
2694 : : /* Comparison function for statement labels, used for managing the
2695 : : binary tree. */
2696 : :
2697 : : static int
2698 : 7609 : compare_st_labels (void *a1, void *b1)
2699 : : {
2700 : 7609 : int a = ((gfc_st_label *) a1)->value;
2701 : 7609 : int b = ((gfc_st_label *) b1)->value;
2702 : :
2703 : 7609 : return (b - a);
2704 : : }
2705 : :
2706 : :
2707 : : /* Free a single gfc_st_label structure, making sure the tree is not
2708 : : messed up. This function is called only when some parse error
2709 : : occurs. */
2710 : :
2711 : : void
2712 : 3 : gfc_free_st_label (gfc_st_label *label)
2713 : : {
2714 : :
2715 : 3 : if (label == NULL)
2716 : : return;
2717 : :
2718 : 3 : gfc_delete_bbt (&label->ns->st_labels, label, compare_st_labels);
2719 : :
2720 : 3 : if (label->format != NULL)
2721 : 0 : gfc_free_expr (label->format);
2722 : :
2723 : 3 : free (label);
2724 : : }
2725 : :
2726 : :
2727 : : /* Free a whole tree of gfc_st_label structures. */
2728 : :
2729 : : static void
2730 : 490994 : free_st_labels (gfc_st_label *label)
2731 : : {
2732 : :
2733 : 490994 : if (label == NULL)
2734 : : return;
2735 : :
2736 : 4659 : free_st_labels (label->left);
2737 : 4659 : free_st_labels (label->right);
2738 : :
2739 : 4659 : if (label->format != NULL)
2740 : 1011 : gfc_free_expr (label->format);
2741 : 4659 : free (label);
2742 : : }
2743 : :
2744 : :
2745 : : /* Given a label number, search for and return a pointer to the label
2746 : : structure, creating it if it does not exist. */
2747 : :
2748 : : gfc_st_label *
2749 : 13507 : gfc_get_st_label (int labelno)
2750 : : {
2751 : 13507 : gfc_st_label *lp;
2752 : 13507 : gfc_namespace *ns;
2753 : :
2754 : 13507 : if (gfc_current_state () == COMP_DERIVED)
2755 : 3 : ns = gfc_current_block ()->f2k_derived;
2756 : : else
2757 : : {
2758 : : /* Find the namespace of the scoping unit:
2759 : : If we're in a BLOCK construct, jump to the parent namespace. */
2760 : 13504 : ns = gfc_current_ns;
2761 : 13514 : while (ns->proc_name && ns->proc_name->attr.flavor == FL_LABEL)
2762 : 10 : ns = ns->parent;
2763 : : }
2764 : :
2765 : : /* First see if the label is already in this namespace. */
2766 : 13507 : lp = ns->st_labels;
2767 : 31268 : while (lp)
2768 : : {
2769 : 26606 : if (lp->value == labelno)
2770 : : return lp;
2771 : :
2772 : 17761 : if (lp->value < labelno)
2773 : 12953 : lp = lp->left;
2774 : : else
2775 : 4808 : lp = lp->right;
2776 : : }
2777 : :
2778 : 4662 : lp = XCNEW (gfc_st_label);
2779 : :
2780 : 4662 : lp->value = labelno;
2781 : 4662 : lp->defined = ST_LABEL_UNKNOWN;
2782 : 4662 : lp->referenced = ST_LABEL_UNKNOWN;
2783 : 4662 : lp->ns = ns;
2784 : :
2785 : 4662 : gfc_insert_bbt (&ns->st_labels, lp, compare_st_labels);
2786 : :
2787 : 4662 : return lp;
2788 : : }
2789 : :
2790 : :
2791 : : /* Called when a statement with a statement label is about to be
2792 : : accepted. We add the label to the list of the current namespace,
2793 : : making sure it hasn't been defined previously and referenced
2794 : : correctly. */
2795 : :
2796 : : void
2797 : 4631 : gfc_define_st_label (gfc_st_label *lp, gfc_sl_type type, locus *label_locus)
2798 : : {
2799 : 4631 : int labelno;
2800 : :
2801 : 4631 : labelno = lp->value;
2802 : :
2803 : 4631 : if (lp->defined != ST_LABEL_UNKNOWN)
2804 : 2 : gfc_error ("Duplicate statement label %d at %L and %L", labelno,
2805 : : &lp->where, label_locus);
2806 : : else
2807 : : {
2808 : 4629 : lp->where = *label_locus;
2809 : :
2810 : 4629 : switch (type)
2811 : : {
2812 : 1011 : case ST_LABEL_FORMAT:
2813 : 1011 : if (lp->referenced == ST_LABEL_TARGET
2814 : 1011 : || lp->referenced == ST_LABEL_DO_TARGET)
2815 : 0 : gfc_error ("Label %d at %C already referenced as branch target",
2816 : : labelno);
2817 : : else
2818 : 1011 : lp->defined = ST_LABEL_FORMAT;
2819 : :
2820 : : break;
2821 : :
2822 : 3611 : case ST_LABEL_TARGET:
2823 : 3611 : case ST_LABEL_DO_TARGET:
2824 : 3611 : if (lp->referenced == ST_LABEL_FORMAT)
2825 : 0 : gfc_error ("Label %d at %C already referenced as a format label",
2826 : : labelno);
2827 : : else
2828 : 3611 : lp->defined = type;
2829 : :
2830 : 1696 : if (lp->referenced == ST_LABEL_DO_TARGET && type != ST_LABEL_DO_TARGET
2831 : 3743 : && !gfc_notify_std (GFC_STD_F95_OBS | GFC_STD_F2018_DEL,
2832 : : "DO termination statement which is not END DO"
2833 : : " or CONTINUE with label %d at %C", labelno))
2834 : : return;
2835 : : break;
2836 : :
2837 : 7 : default:
2838 : 7 : lp->defined = ST_LABEL_BAD_TARGET;
2839 : 7 : lp->referenced = ST_LABEL_BAD_TARGET;
2840 : : }
2841 : : }
2842 : : }
2843 : :
2844 : :
2845 : : /* Reference a label. Given a label and its type, see if that
2846 : : reference is consistent with what is known about that label,
2847 : : updating the unknown state. Returns false if something goes
2848 : : wrong. */
2849 : :
2850 : : bool
2851 : 17875 : gfc_reference_st_label (gfc_st_label *lp, gfc_sl_type type)
2852 : : {
2853 : 17875 : gfc_sl_type label_type;
2854 : 17875 : int labelno;
2855 : 17875 : bool rc;
2856 : :
2857 : 17875 : if (lp == NULL)
2858 : : return true;
2859 : :
2860 : 7639 : labelno = lp->value;
2861 : :
2862 : 7639 : if (lp->defined != ST_LABEL_UNKNOWN)
2863 : : label_type = lp->defined;
2864 : : else
2865 : : {
2866 : 6002 : label_type = lp->referenced;
2867 : 6002 : lp->where = gfc_current_locus;
2868 : : }
2869 : :
2870 : 7639 : if (label_type == ST_LABEL_FORMAT
2871 : 1182 : && (type == ST_LABEL_TARGET || type == ST_LABEL_DO_TARGET))
2872 : : {
2873 : 0 : gfc_error ("Label %d at %C previously used as a FORMAT label", labelno);
2874 : 0 : rc = false;
2875 : 0 : goto done;
2876 : : }
2877 : :
2878 : 7639 : if ((label_type == ST_LABEL_TARGET || label_type == ST_LABEL_DO_TARGET
2879 : 7639 : || label_type == ST_LABEL_BAD_TARGET)
2880 : 2422 : && type == ST_LABEL_FORMAT)
2881 : : {
2882 : 0 : gfc_error ("Label %d at %C previously used as branch target", labelno);
2883 : 0 : rc = false;
2884 : 0 : goto done;
2885 : : }
2886 : :
2887 : 620 : if (lp->referenced == ST_LABEL_DO_TARGET && type == ST_LABEL_DO_TARGET
2888 : 8180 : && !gfc_notify_std (GFC_STD_F95_OBS | GFC_STD_F2018_DEL,
2889 : : "Shared DO termination label %d at %C", labelno))
2890 : : return false;
2891 : :
2892 : 7639 : if (type == ST_LABEL_DO_TARGET
2893 : 7639 : && !gfc_notify_std (GFC_STD_F2018_OBS, "Labeled DO statement "
2894 : : "at %L", &gfc_current_locus))
2895 : : return false;
2896 : :
2897 : 7639 : if (lp->referenced != ST_LABEL_DO_TARGET)
2898 : 7019 : lp->referenced = type;
2899 : : rc = true;
2900 : :
2901 : : done:
2902 : : return rc;
2903 : : }
2904 : :
2905 : :
2906 : : /************** Symbol table management subroutines ****************/
2907 : :
2908 : : /* Basic details: Fortran 95 requires a potentially unlimited number
2909 : : of distinct namespaces when compiling a program unit. This case
2910 : : occurs during a compilation of internal subprograms because all of
2911 : : the internal subprograms must be read before we can start
2912 : : generating code for the host.
2913 : :
2914 : : Given the tricky nature of the Fortran grammar, we must be able to
2915 : : undo changes made to a symbol table if the current interpretation
2916 : : of a statement is found to be incorrect. Whenever a symbol is
2917 : : looked up, we make a copy of it and link to it. All of these
2918 : : symbols are kept in a vector so that we can commit or
2919 : : undo the changes at a later time.
2920 : :
2921 : : A symtree may point to a symbol node outside of its namespace. In
2922 : : this case, that symbol has been used as a host associated variable
2923 : : at some previous time. */
2924 : :
2925 : : /* Allocate a new namespace structure. Copies the implicit types from
2926 : : PARENT if PARENT_TYPES is set. */
2927 : :
2928 : : gfc_namespace *
2929 : 506563 : gfc_get_namespace (gfc_namespace *parent, int parent_types)
2930 : : {
2931 : 506563 : gfc_namespace *ns;
2932 : 506563 : gfc_typespec *ts;
2933 : 506563 : int in;
2934 : 506563 : int i;
2935 : :
2936 : 506563 : ns = XCNEW (gfc_namespace);
2937 : 506563 : ns->sym_root = NULL;
2938 : 506563 : ns->uop_root = NULL;
2939 : 506563 : ns->tb_sym_root = NULL;
2940 : 506563 : ns->finalizers = NULL;
2941 : 506563 : ns->default_access = ACCESS_UNKNOWN;
2942 : 506563 : ns->parent = parent;
2943 : :
2944 : 14690327 : for (in = GFC_INTRINSIC_BEGIN; in != GFC_INTRINSIC_END; in++)
2945 : : {
2946 : 14183764 : ns->operator_access[in] = ACCESS_UNKNOWN;
2947 : 14183764 : ns->tb_op[in] = NULL;
2948 : : }
2949 : :
2950 : : /* Initialize default implicit types. */
2951 : 13677201 : for (i = 'a'; i <= 'z'; i++)
2952 : : {
2953 : 13170638 : ns->set_flag[i - 'a'] = 0;
2954 : 13170638 : ts = &ns->default_type[i - 'a'];
2955 : :
2956 : 13170638 : if (parent_types && ns->parent != NULL)
2957 : : {
2958 : : /* Copy parent settings. */
2959 : 1647698 : *ts = ns->parent->default_type[i - 'a'];
2960 : 1647698 : continue;
2961 : : }
2962 : :
2963 : 11522940 : if (flag_implicit_none != 0)
2964 : : {
2965 : 108498 : gfc_clear_ts (ts);
2966 : 108498 : continue;
2967 : : }
2968 : :
2969 : 11414442 : if ('i' <= i && i <= 'n')
2970 : : {
2971 : 2634102 : ts->type = BT_INTEGER;
2972 : 2634102 : ts->kind = gfc_default_integer_kind;
2973 : : }
2974 : : else
2975 : : {
2976 : 8780340 : ts->type = BT_REAL;
2977 : 8780340 : ts->kind = gfc_default_real_kind;
2978 : : }
2979 : : }
2980 : :
2981 : 506563 : ns->refs = 1;
2982 : :
2983 : 506563 : return ns;
2984 : : }
2985 : :
2986 : :
2987 : : /* Comparison function for symtree nodes. */
2988 : :
2989 : : static int
2990 : 31950174 : compare_symtree (void *_st1, void *_st2)
2991 : : {
2992 : 31950174 : gfc_symtree *st1, *st2;
2993 : :
2994 : 31950174 : st1 = (gfc_symtree *) _st1;
2995 : 31950174 : st2 = (gfc_symtree *) _st2;
2996 : :
2997 : 31950174 : return strcmp (st1->name, st2->name);
2998 : : }
2999 : :
3000 : :
3001 : : /* Allocate a new symtree node and associate it with the new symbol. */
3002 : :
3003 : : gfc_symtree *
3004 : 5839439 : gfc_new_symtree (gfc_symtree **root, const char *name)
3005 : : {
3006 : 5839439 : gfc_symtree *st;
3007 : :
3008 : 5839439 : st = XCNEW (gfc_symtree);
3009 : 5839439 : st->name = gfc_get_string ("%s", name);
3010 : :
3011 : 5839439 : gfc_insert_bbt (root, st, compare_symtree);
3012 : 5839439 : return st;
3013 : : }
3014 : :
3015 : :
3016 : : /* Delete a symbol from the tree. Does not free the symbol itself! */
3017 : :
3018 : : static void
3019 : 3844872 : gfc_delete_symtree (gfc_symtree **root, const char *name)
3020 : : {
3021 : 3844872 : gfc_symtree st, *st0;
3022 : 3844872 : const char *p;
3023 : :
3024 : : /* Submodules are marked as mod.submod. When freeing a submodule
3025 : : symbol, the symtree only has "submod", so adjust that here. */
3026 : :
3027 : 3844872 : p = strrchr(name, '.');
3028 : 3844872 : if (p)
3029 : 0 : p++;
3030 : : else
3031 : : p = name;
3032 : :
3033 : 3844872 : st.name = gfc_get_string ("%s", p);
3034 : 3844872 : st0 = (gfc_symtree *) gfc_delete_bbt (root, &st, compare_symtree);
3035 : :
3036 : 3844872 : free (st0);
3037 : 3844872 : }
3038 : :
3039 : :
3040 : : /* Given a root symtree node and a name, try to find the symbol within
3041 : : the namespace. Returns NULL if the symbol is not found. */
3042 : :
3043 : : gfc_symtree *
3044 : 25742496 : gfc_find_symtree (gfc_symtree *st, const char *name)
3045 : : {
3046 : 25742496 : int c;
3047 : :
3048 : 111433696 : while (st != NULL)
3049 : : {
3050 : 96009389 : c = strcmp (name, st->name);
3051 : 96009389 : if (c == 0)
3052 : : return st;
3053 : :
3054 : 85691200 : st = (c < 0) ? st->left : st->right;
3055 : : }
3056 : :
3057 : : return NULL;
3058 : : }
3059 : :
3060 : :
3061 : : /* Return a symtree node with a name that is guaranteed to be unique
3062 : : within the namespace and corresponds to an illegal fortran name. */
3063 : :
3064 : : gfc_symtree *
3065 : 596037 : gfc_get_unique_symtree (gfc_namespace *ns)
3066 : : {
3067 : 596037 : char name[GFC_MAX_SYMBOL_LEN + 1];
3068 : 596037 : static int serial = 0;
3069 : :
3070 : 596037 : sprintf (name, "@%d", serial++);
3071 : 596037 : return gfc_new_symtree (&ns->sym_root, name);
3072 : : }
3073 : :
3074 : :
3075 : : /* Given a name find a user operator node, creating it if it doesn't
3076 : : exist. These are much simpler than symbols because they can't be
3077 : : ambiguous with one another. */
3078 : :
3079 : : gfc_user_op *
3080 : 755 : gfc_get_uop (const char *name)
3081 : : {
3082 : 755 : gfc_user_op *uop;
3083 : 755 : gfc_symtree *st;
3084 : 755 : gfc_namespace *ns = gfc_current_ns;
3085 : :
3086 : 755 : if (ns->omp_udr_ns)
3087 : 35 : ns = ns->parent;
3088 : 755 : st = gfc_find_symtree (ns->uop_root, name);
3089 : 755 : if (st != NULL)
3090 : 422 : return st->n.uop;
3091 : :
3092 : 333 : st = gfc_new_symtree (&ns->uop_root, name);
3093 : :
3094 : 333 : uop = st->n.uop = XCNEW (gfc_user_op);
3095 : 333 : uop->name = gfc_get_string ("%s", name);
3096 : 333 : uop->access = ACCESS_UNKNOWN;
3097 : 333 : uop->ns = ns;
3098 : :
3099 : 333 : return uop;
3100 : : }
3101 : :
3102 : :
3103 : : /* Given a name find the user operator node. Returns NULL if it does
3104 : : not exist. */
3105 : :
3106 : : gfc_user_op *
3107 : 6759 : gfc_find_uop (const char *name, gfc_namespace *ns)
3108 : : {
3109 : 6759 : gfc_symtree *st;
3110 : :
3111 : 6759 : if (ns == NULL)
3112 : 18 : ns = gfc_current_ns;
3113 : :
3114 : 6759 : st = gfc_find_symtree (ns->uop_root, name);
3115 : 6759 : return (st == NULL) ? NULL : st->n.uop;
3116 : : }
3117 : :
3118 : :
3119 : : /* Update a symbol's common_block field, and take care of the associated
3120 : : memory management. */
3121 : :
3122 : : static void
3123 : 6847347 : set_symbol_common_block (gfc_symbol *sym, gfc_common_head *common_block)
3124 : : {
3125 : 6847347 : if (sym->common_block == common_block)
3126 : : return;
3127 : :
3128 : 5866 : if (sym->common_block && sym->common_block->name[0] != '\0')
3129 : : {
3130 : 5523 : sym->common_block->refs--;
3131 : 5523 : if (sym->common_block->refs == 0)
3132 : 1757 : free (sym->common_block);
3133 : : }
3134 : 5866 : sym->common_block = common_block;
3135 : : }
3136 : :
3137 : :
3138 : : /* Remove a gfc_symbol structure and everything it points to. */
3139 : :
3140 : : void
3141 : 5805968 : gfc_free_symbol (gfc_symbol *&sym)
3142 : : {
3143 : :
3144 : 5805968 : if (sym == NULL)
3145 : : return;
3146 : :
3147 : 5674337 : gfc_free_array_spec (sym->as);
3148 : :
3149 : 5674337 : free_components (sym->components);
3150 : :
3151 : 5674337 : gfc_free_expr (sym->value);
3152 : :
3153 : 5674337 : gfc_free_namelist (sym->namelist);
3154 : :
3155 : 5674337 : if (sym->ns != sym->formal_ns)
3156 : 5627073 : gfc_free_namespace (sym->formal_ns);
3157 : :
3158 : 5674337 : if (!sym->attr.generic_copy)
3159 : 5674337 : gfc_free_interface (sym->generic);
3160 : :
3161 : 5674337 : gfc_free_formal_arglist (sym->formal);
3162 : :
3163 : 5674337 : gfc_free_namespace (sym->f2k_derived);
3164 : :
3165 : 5674337 : set_symbol_common_block (sym, NULL);
3166 : :
3167 : 5674337 : if (sym->param_list)
3168 : 522 : gfc_free_actual_arglist (sym->param_list);
3169 : :
3170 : 5674337 : free (sym);
3171 : 5674337 : sym = NULL;
3172 : : }
3173 : :
3174 : :
3175 : : /* Returns true if the symbol SYM has, through its FORMAL_NS field, a reference
3176 : : to itself which should be eliminated for the symbol memory to be released
3177 : : via normal reference counting.
3178 : :
3179 : : The implementation is crucial as it controls the proper release of symbols,
3180 : : especially (contained) procedure symbols, which can represent a lot of memory
3181 : : through the namespace of their body.
3182 : :
3183 : : We try to avoid freeing too much memory (causing dangling pointers), to not
3184 : : leak too much (wasting memory), and to avoid expensive walks of the symbol
3185 : : tree (which would be the correct way to check for a cycle). */
3186 : :
3187 : : bool
3188 : 5731934 : cyclic_reference_break_needed (gfc_symbol *sym)
3189 : : {
3190 : : /* Normal symbols don't reference themselves. */
3191 : 5731934 : if (sym->formal_ns == nullptr)
3192 : : return false;
3193 : :
3194 : : /* Procedures at the root of the file do have a self reference, but they don't
3195 : : have a reference in a parent namespace preventing the release of the
3196 : : procedure namespace, so they can use the normal reference counting. */
3197 : 275080 : if (sym->formal_ns == sym->ns)
3198 : : return false;
3199 : :
3200 : : /* If sym->refs == 1, we can use normal reference counting. If sym->refs > 2,
3201 : : the symbol won't be freed anyway, with or without cyclic reference. */
3202 : 266642 : if (sym->refs != 2)
3203 : : return false;
3204 : :
3205 : : /* Procedure symbols host-associated from a module in submodules are special,
3206 : : because the namespace of the procedure block in the submodule is different
3207 : : from the FORMAL_NS namespace generated by host-association. So there are
3208 : : two different namespaces representing the same procedure namespace. As
3209 : : FORMAL_NS comes from host-association, which only imports symbols visible
3210 : : from the outside (dummy arguments basically), we can assume there is no
3211 : : self reference through FORMAL_NS in that case. */
3212 : 43693 : if (sym->attr.host_assoc && sym->attr.used_in_submodule)
3213 : 292 : return false;
3214 : :
3215 : : /* We can assume that contained procedures have cyclic references, because
3216 : : the symbol of the procedure itself is accessible in the procedure body
3217 : : namespace. So we assume that symbols with a formal namespace different
3218 : : from the declaration namespace and two references, one of which is about
3219 : : to be removed, are procedures with just the self reference left. At this
3220 : : point, the symbol SYM matches that pattern, so we return true here to
3221 : : permit the release of SYM. */
3222 : : return true;
3223 : : }
3224 : :
3225 : :
3226 : : /* Decrease the reference counter and free memory when we reach zero.
3227 : : Returns true if the symbol has been freed, false otherwise. */
3228 : :
3229 : : bool
3230 : 5732461 : gfc_release_symbol (gfc_symbol *&sym)
3231 : : {
3232 : 5732461 : if (sym == NULL)
3233 : : return false;
3234 : :
3235 : 5731934 : if (cyclic_reference_break_needed (sym))
3236 : : {
3237 : : /* As formal_ns contains a reference to sym, delete formal_ns just
3238 : : before the deletion of sym. */
3239 : 43401 : gfc_namespace *ns = sym->formal_ns;
3240 : 43401 : sym->formal_ns = NULL;
3241 : 43401 : gfc_free_namespace (ns);
3242 : : }
3243 : :
3244 : 5731934 : sym->refs--;
3245 : 5731934 : if (sym->refs > 0)
3246 : : return false;
3247 : :
3248 : 5624244 : gcc_assert (sym->refs == 0);
3249 : 5624244 : gfc_free_symbol (sym);
3250 : 5624244 : return true;
3251 : : }
3252 : :
3253 : :
3254 : : /* Allocate and initialize a new symbol node. */
3255 : :
3256 : : gfc_symbol *
3257 : 5743629 : gfc_new_symbol (const char *name, gfc_namespace *ns, locus *where)
3258 : : {
3259 : 5743629 : gfc_symbol *p;
3260 : :
3261 : 5743629 : p = XCNEW (gfc_symbol);
3262 : :
3263 : 5743629 : gfc_clear_ts (&p->ts);
3264 : 5743629 : gfc_clear_attr (&p->attr);
3265 : 5743629 : p->ns = ns;
3266 : 5743629 : p->declared_at = where ? *where : gfc_current_locus;
3267 : 5743629 : p->name = gfc_get_string ("%s", name);
3268 : :
3269 : 5743629 : return p;
3270 : : }
3271 : :
3272 : :
3273 : : /* Generate an error if a symbol is ambiguous, and set the error flag
3274 : : on it. */
3275 : :
3276 : : static void
3277 : 40 : ambiguous_symbol (const char *name, gfc_symtree *st)
3278 : : {
3279 : :
3280 : 40 : if (st->n.sym->error)
3281 : : return;
3282 : :
3283 : 20 : if (st->n.sym->module)
3284 : 17 : gfc_error ("Name %qs at %C is an ambiguous reference to %qs "
3285 : : "from module %qs", name, st->n.sym->name, st->n.sym->module);
3286 : : else
3287 : 3 : gfc_error ("Name %qs at %C is an ambiguous reference to %qs "
3288 : : "from current program unit", name, st->n.sym->name);
3289 : :
3290 : 20 : st->n.sym->error = 1;
3291 : : }
3292 : :
3293 : :
3294 : : /* If we're in a SELECT TYPE block, check if the variable 'st' matches any
3295 : : selector on the stack. If yes, replace it by the corresponding temporary. */
3296 : :
3297 : : static void
3298 : 9081320 : select_type_insert_tmp (gfc_symtree **st)
3299 : : {
3300 : 9131017 : gfc_select_type_stack *stack = select_type_stack;
3301 : 9303249 : for (; stack; stack = stack->prev)
3302 : 221929 : if ((*st)->n.sym == stack->selector && stack->tmp)
3303 : : {
3304 : 49697 : *st = stack->tmp;
3305 : 49697 : select_type_insert_tmp (st);
3306 : 49697 : return;
3307 : : }
3308 : : }
3309 : :
3310 : :
3311 : : /* Look for a symtree in the current procedure -- that is, go up to
3312 : : parent namespaces but only if inside a BLOCK. Returns NULL if not found. */
3313 : :
3314 : : gfc_symtree*
3315 : 237 : gfc_find_symtree_in_proc (const char* name, gfc_namespace* ns)
3316 : : {
3317 : 284 : while (ns)
3318 : : {
3319 : 284 : gfc_symtree* st = gfc_find_symtree (ns->sym_root, name);
3320 : 284 : if (st)
3321 : : return st;
3322 : :
3323 : 49 : if (!ns->construct_entities)
3324 : : break;
3325 : 47 : ns = ns->parent;
3326 : : }
3327 : :
3328 : : return NULL;
3329 : : }
3330 : :
3331 : :
3332 : : /* Search for a symtree starting in the current namespace, resorting to
3333 : : any parent namespaces if requested by a nonzero parent_flag.
3334 : : Returns true if the name is ambiguous. */
3335 : :
3336 : : bool
3337 : 15907748 : gfc_find_sym_tree (const char *name, gfc_namespace *ns, int parent_flag,
3338 : : gfc_symtree **result)
3339 : : {
3340 : 15907748 : gfc_symtree *st;
3341 : :
3342 : 15907748 : if (ns == NULL)
3343 : 5853699 : ns = gfc_current_ns;
3344 : :
3345 : 18021151 : do
3346 : : {
3347 : 18021151 : st = gfc_find_symtree (ns->sym_root, name);
3348 : 18021151 : if (st != NULL)
3349 : : {
3350 : 9081320 : select_type_insert_tmp (&st);
3351 : :
3352 : 9081320 : *result = st;
3353 : : /* Ambiguous generic interfaces are permitted, as long
3354 : : as the specific interfaces are different. */
3355 : 9081320 : if (st->ambiguous && !st->n.sym->attr.generic)
3356 : : {
3357 : 36 : ambiguous_symbol (name, st);
3358 : 36 : return true;
3359 : : }
3360 : :
3361 : : return false;
3362 : : }
3363 : :
3364 : 8939831 : if (!parent_flag)
3365 : : break;
3366 : :
3367 : : /* Don't escape an interface block. */
3368 : 6262757 : if (ns && !ns->has_import_set
3369 : 6255617 : && ns->proc_name && ns->proc_name->attr.if_source == IFSRC_IFBODY)
3370 : : break;
3371 : :
3372 : 6105223 : ns = ns->parent;
3373 : : }
3374 : 6105223 : while (ns != NULL);
3375 : :
3376 : 6826428 : if (gfc_current_state() == COMP_DERIVED
3377 : 167841 : && gfc_current_block ()->attr.pdt_template)
3378 : : {
3379 : : gfc_symbol *der = gfc_current_block ();
3380 : 10848 : for (; der; der = gfc_get_derived_super_type (der))
3381 : : {
3382 : 6203 : if (der->f2k_derived && der->f2k_derived->sym_root)
3383 : : {
3384 : 6197 : st = gfc_find_symtree (der->f2k_derived->sym_root, name);
3385 : 6197 : if (st)
3386 : : break;
3387 : : }
3388 : : }
3389 : 5812 : *result = st;
3390 : 5812 : return false;
3391 : : }
3392 : :
3393 : 6820616 : *result = NULL;
3394 : :
3395 : 6820616 : return false;
3396 : : }
3397 : :
3398 : :
3399 : : /* Same, but returns the symbol instead. */
3400 : :
3401 : : int
3402 : 2162588 : gfc_find_symbol (const char *name, gfc_namespace *ns, int parent_flag,
3403 : : gfc_symbol **result)
3404 : : {
3405 : 2162588 : gfc_symtree *st;
3406 : 2162588 : int i;
3407 : :
3408 : 2162588 : i = gfc_find_sym_tree (name, ns, parent_flag, &st);
3409 : :
3410 : 2162588 : if (st == NULL)
3411 : 1636345 : *result = NULL;
3412 : : else
3413 : 526243 : *result = st->n.sym;
3414 : :
3415 : 2162588 : return i;
3416 : : }
3417 : :
3418 : :
3419 : : /* Tells whether there is only one set of changes in the stack. */
3420 : :
3421 : : static bool
3422 : 36765421 : single_undo_checkpoint_p (void)
3423 : : {
3424 : 36765421 : if (latest_undo_chgset == &default_undo_chgset_var)
3425 : : {
3426 : 36765421 : gcc_assert (latest_undo_chgset->previous == NULL);
3427 : : return true;
3428 : : }
3429 : : else
3430 : : {
3431 : 0 : gcc_assert (latest_undo_chgset->previous != NULL);
3432 : : return false;
3433 : : }
3434 : : }
3435 : :
3436 : : /* Save symbol with the information necessary to back it out. */
3437 : :
3438 : : void
3439 : 5265523 : gfc_save_symbol_data (gfc_symbol *sym)
3440 : : {
3441 : 5265523 : gfc_symbol *s;
3442 : 5265523 : unsigned i;
3443 : :
3444 : 5265523 : if (!single_undo_checkpoint_p ())
3445 : : {
3446 : : /* If there is more than one change set, look for the symbol in the
3447 : : current one. If it is found there, we can reuse it. */
3448 : 0 : FOR_EACH_VEC_ELT (latest_undo_chgset->syms, i, s)
3449 : 0 : if (s == sym)
3450 : : {
3451 : 0 : gcc_assert (sym->gfc_new || sym->old_symbol != NULL);
3452 : 5265523 : return;
3453 : : }
3454 : : }
3455 : 5265523 : else if (sym->gfc_new || sym->old_symbol != NULL)
3456 : : return;
3457 : :
3458 : 2558458 : s = XCNEW (gfc_symbol);
3459 : 2558458 : *s = *sym;
3460 : 2558458 : sym->old_symbol = s;
3461 : 2558458 : sym->gfc_new = 0;
3462 : :
3463 : 2558458 : latest_undo_chgset->syms.safe_push (sym);
3464 : : }
3465 : :
3466 : :
3467 : : /* Given a name, find a symbol, or create it if it does not exist yet
3468 : : in the current namespace. If the symbol is found we make sure that
3469 : : it's OK.
3470 : :
3471 : : The integer return code indicates
3472 : : 0 All OK
3473 : : 1 The symbol name was ambiguous
3474 : : 2 The name meant to be established was already host associated.
3475 : :
3476 : : So if the return value is nonzero, then an error was issued. */
3477 : :
3478 : : int
3479 : 5595255 : gfc_get_sym_tree (const char *name, gfc_namespace *ns, gfc_symtree **result,
3480 : : bool allow_subroutine, locus *where)
3481 : : {
3482 : 5595255 : gfc_symtree *st;
3483 : 5595255 : gfc_symbol *p;
3484 : :
3485 : : /* This doesn't usually happen during resolution. */
3486 : 5595255 : if (ns == NULL)
3487 : 2777768 : ns = gfc_current_ns;
3488 : :
3489 : : /* Try to find the symbol in ns. */
3490 : 5595255 : st = gfc_find_symtree (ns->sym_root, name);
3491 : :
3492 : 5595255 : if (st == NULL && ns->omp_udr_ns)
3493 : : {
3494 : 319 : ns = ns->parent;
3495 : 319 : st = gfc_find_symtree (ns->sym_root, name);
3496 : : }
3497 : :
3498 : 4768702 : if (st == NULL)
3499 : : {
3500 : : /* If not there, create a new symbol. */
3501 : 4768572 : p = gfc_new_symbol (name, ns, where);
3502 : :
3503 : : /* Add to the list of tentative symbols. */
3504 : 4768572 : p->old_symbol = NULL;
3505 : 4768572 : p->mark = 1;
3506 : 4768572 : p->gfc_new = 1;
3507 : 4768572 : latest_undo_chgset->syms.safe_push (p);
3508 : :
3509 : 4768572 : st = gfc_new_symtree (&ns->sym_root, name);
3510 : 4768572 : st->n.sym = p;
3511 : 4768572 : p->refs++;
3512 : :
3513 : : }
3514 : : else
3515 : : {
3516 : : /* Make sure the existing symbol is OK. Ambiguous
3517 : : generic interfaces are permitted, as long as the
3518 : : specific interfaces are different. */
3519 : 826683 : if (st->ambiguous && !st->n.sym->attr.generic)
3520 : : {
3521 : 4 : ambiguous_symbol (name, st);
3522 : 4 : return 1;
3523 : : }
3524 : :
3525 : 826679 : p = st->n.sym;
3526 : 826679 : if (p->ns != ns && (!p->attr.function || ns->proc_name != p)
3527 : 8021 : && !(allow_subroutine && p->attr.subroutine)
3528 : 8013 : && !(ns->proc_name && ns->proc_name->attr.if_source == IFSRC_IFBODY
3529 : 7983 : && (ns->has_import_set || p->attr.imported)))
3530 : : {
3531 : : /* Symbol is from another namespace. */
3532 : 31 : gfc_error ("Symbol %qs at %C has already been host associated",
3533 : : name);
3534 : 31 : return 2;
3535 : : }
3536 : :
3537 : 826648 : p->mark = 1;
3538 : :
3539 : : /* Copy in case this symbol is changed. */
3540 : 826648 : gfc_save_symbol_data (p);
3541 : : }
3542 : :
3543 : 5595220 : *result = st;
3544 : 5595220 : return 0;
3545 : : }
3546 : :
3547 : :
3548 : : int
3549 : 913630 : gfc_get_symbol (const char *name, gfc_namespace *ns, gfc_symbol **result,
3550 : : locus *where)
3551 : : {
3552 : 913630 : gfc_symtree *st;
3553 : 913630 : int i;
3554 : :
3555 : 913630 : i = gfc_get_sym_tree (name, ns, &st, false, where);
3556 : 913630 : if (i != 0)
3557 : : return i;
3558 : :
3559 : 913625 : if (st)
3560 : 913625 : *result = st->n.sym;
3561 : : else
3562 : 0 : *result = NULL;
3563 : : return i;
3564 : : }
3565 : :
3566 : :
3567 : : /* Subroutine that searches for a symbol, creating it if it doesn't
3568 : : exist, but tries to host-associate the symbol if possible. */
3569 : :
3570 : : int
3571 : 6924425 : gfc_get_ha_sym_tree (const char *name, gfc_symtree **result, locus *where)
3572 : : {
3573 : 6924425 : gfc_symtree *st;
3574 : 6924425 : int i;
3575 : :
3576 : 6924425 : i = gfc_find_sym_tree (name, gfc_current_ns, 0, &st);
3577 : :
3578 : 6924425 : if (st != NULL)
3579 : : {
3580 : 4379225 : gfc_save_symbol_data (st->n.sym);
3581 : 4379225 : *result = st;
3582 : 4379225 : return i;
3583 : : }
3584 : :
3585 : 2545200 : i = gfc_find_sym_tree (name, gfc_current_ns, 1, &st);
3586 : 2545200 : if (i)
3587 : : return i;
3588 : :
3589 : 2545200 : if (st != NULL)
3590 : : {
3591 : 260271 : *result = st;
3592 : 260271 : return 0;
3593 : : }
3594 : :
3595 : 2284929 : return gfc_get_sym_tree (name, gfc_current_ns, result, false, where);
3596 : : }
3597 : :
3598 : :
3599 : : int
3600 : 29464 : gfc_get_ha_symbol (const char *name, gfc_symbol **result, locus *where)
3601 : : {
3602 : 29464 : int i;
3603 : 29464 : gfc_symtree *st = NULL;
3604 : :
3605 : 29464 : i = gfc_get_ha_sym_tree (name, &st, where);
3606 : :
3607 : 29464 : if (st)
3608 : 29464 : *result = st->n.sym;
3609 : : else
3610 : 0 : *result = NULL;
3611 : :
3612 : 29464 : return i;
3613 : : }
3614 : :
3615 : :
3616 : : /* Search for the symtree belonging to a gfc_common_head; we cannot use
3617 : : head->name as the common_root symtree's name might be mangled. */
3618 : :
3619 : : static gfc_symtree *
3620 : 17 : find_common_symtree (gfc_symtree *st, gfc_common_head *head)
3621 : : {
3622 : :
3623 : 20 : gfc_symtree *result;
3624 : :
3625 : 20 : if (st == NULL)
3626 : : return NULL;
3627 : :
3628 : 14 : if (st->n.common == head)
3629 : : return st;
3630 : :
3631 : 3 : result = find_common_symtree (st->left, head);
3632 : 3 : if (!result)
3633 : 3 : result = find_common_symtree (st->right, head);
3634 : :
3635 : : return result;
3636 : : }
3637 : :
3638 : :
3639 : : /* Restore previous state of symbol. Just copy simple stuff. */
3640 : :
3641 : : static void
3642 : 1173010 : restore_old_symbol (gfc_symbol *p)
3643 : : {
3644 : 1173010 : gfc_symbol *old;
3645 : :
3646 : 1173010 : p->mark = 0;
3647 : 1173010 : old = p->old_symbol;
3648 : :
3649 : 1173010 : p->ts.type = old->ts.type;
3650 : 1173010 : p->ts.kind = old->ts.kind;
3651 : :
3652 : 1173010 : p->attr = old->attr;
3653 : :
3654 : 1173010 : if (p->value != old->value)
3655 : : {
3656 : 1 : gcc_checking_assert (old->value == NULL);
3657 : 1 : gfc_free_expr (p->value);
3658 : 1 : p->value = NULL;
3659 : : }
3660 : :
3661 : 1173010 : if (p->as != old->as)
3662 : : {
3663 : 7 : if (p->as)
3664 : 7 : gfc_free_array_spec (p->as);
3665 : 7 : p->as = old->as;
3666 : : }
3667 : :
3668 : 1173010 : p->generic = old->generic;
3669 : 1173010 : p->component_access = old->component_access;
3670 : :
3671 : 1173010 : if (p->namelist != NULL && old->namelist == NULL)
3672 : : {
3673 : 0 : gfc_free_namelist (p->namelist);
3674 : 0 : p->namelist = NULL;
3675 : : }
3676 : : else
3677 : : {
3678 : 1173010 : if (p->namelist_tail != old->namelist_tail)
3679 : : {
3680 : 1 : gfc_free_namelist (old->namelist_tail->next);
3681 : 1 : old->namelist_tail->next = NULL;
3682 : : }
3683 : : }
3684 : :
3685 : 1173010 : p->namelist_tail = old->namelist_tail;
3686 : :
3687 : 1173010 : if (p->formal != old->formal)
3688 : : {
3689 : 16 : gfc_free_formal_arglist (p->formal);
3690 : 16 : p->formal = old->formal;
3691 : : }
3692 : :
3693 : 1173010 : set_symbol_common_block (p, old->common_block);
3694 : 1173010 : p->common_head = old->common_head;
3695 : :
3696 : 1173010 : p->old_symbol = old->old_symbol;
3697 : 1173010 : free (old);
3698 : 1173010 : }
3699 : :
3700 : :
3701 : : /* Frees the internal data of a gfc_undo_change_set structure. Doesn't free
3702 : : the structure itself. */
3703 : :
3704 : : static void
3705 : 78069 : free_undo_change_set_data (gfc_undo_change_set &cs)
3706 : : {
3707 : 0 : cs.syms.release ();
3708 : 78069 : cs.tbps.release ();
3709 : 0 : }
3710 : :
3711 : :
3712 : : /* Given a change set pointer, free its target's contents and update it with
3713 : : the address of the previous change set. Note that only the contents are
3714 : : freed, not the target itself (the contents' container). It is not a problem
3715 : : as the latter will be a local variable usually. */
3716 : :
3717 : : static void
3718 : 0 : pop_undo_change_set (gfc_undo_change_set *&cs)
3719 : : {
3720 : 0 : free_undo_change_set_data (*cs);
3721 : 0 : cs = cs->previous;
3722 : 0 : }
3723 : :
3724 : :
3725 : : static void free_old_symbol (gfc_symbol *sym);
3726 : :
3727 : :
3728 : : /* Merges the current change set into the previous one. The changes themselves
3729 : : are left untouched; only one checkpoint is forgotten. */
3730 : :
3731 : : void
3732 : 0 : gfc_drop_last_undo_checkpoint (void)
3733 : : {
3734 : 0 : gfc_symbol *s, *t;
3735 : 0 : unsigned i, j;
3736 : :
3737 : 0 : FOR_EACH_VEC_ELT (latest_undo_chgset->syms, i, s)
3738 : : {
3739 : : /* No need to loop in this case. */
3740 : 0 : if (s->old_symbol == NULL)
3741 : 0 : continue;
3742 : :
3743 : : /* Remove the duplicate symbols. */
3744 : 0 : FOR_EACH_VEC_ELT (latest_undo_chgset->previous->syms, j, t)
3745 : 0 : if (t == s)
3746 : : {
3747 : 0 : latest_undo_chgset->previous->syms.unordered_remove (j);
3748 : :
3749 : : /* S->OLD_SYMBOL is the backup symbol for S as it was at the
3750 : : last checkpoint. We drop that checkpoint, so S->OLD_SYMBOL
3751 : : shall contain from now on the backup symbol for S as it was
3752 : : at the checkpoint before. */
3753 : 0 : if (s->old_symbol->gfc_new)
3754 : : {
3755 : 0 : gcc_assert (s->old_symbol->old_symbol == NULL);
3756 : 0 : s->gfc_new = s->old_symbol->gfc_new;
3757 : 0 : free_old_symbol (s);
3758 : : }
3759 : : else
3760 : 0 : restore_old_symbol (s->old_symbol);
3761 : : break;
3762 : : }
3763 : : }
3764 : :
3765 : 0 : latest_undo_chgset->previous->syms.safe_splice (latest_undo_chgset->syms);
3766 : 0 : latest_undo_chgset->previous->tbps.safe_splice (latest_undo_chgset->tbps);
3767 : :
3768 : 0 : pop_undo_change_set (latest_undo_chgset);
3769 : 0 : }
3770 : :
3771 : :
3772 : : /* Remove the reference to the symbol SYM in the symbol tree held by NS
3773 : : and free SYM if the last reference to it has been removed.
3774 : : Returns whether the symbol has been freed. */
3775 : :
3776 : : static bool
3777 : 3844908 : delete_symbol_from_ns (gfc_symbol *sym, gfc_namespace *ns)
3778 : : {
3779 : 3844908 : if (ns == nullptr)
3780 : : return false;
3781 : :
3782 : : /* The derived type is saved in the symtree with the first
3783 : : letter capitalized; the all lower-case version to the
3784 : : derived type contains its associated generic function. */
3785 : 3844872 : const char *sym_name = gfc_fl_struct (sym->attr.flavor)
3786 : 3844872 : ? gfc_dt_upper_string (sym->name)
3787 : 3844872 : : sym->name;
3788 : :
3789 : 3844872 : gfc_delete_symtree (&ns->sym_root, sym_name);
3790 : :
3791 : 3844872 : return gfc_release_symbol (sym);
3792 : : }
3793 : :
3794 : :
3795 : : /* Undoes all the changes made to symbols since the previous checkpoint.
3796 : : This subroutine is made simpler due to the fact that attributes are
3797 : : never removed once added. */
3798 : :
3799 : : void
3800 : 11842757 : gfc_restore_last_undo_checkpoint (void)
3801 : : {
3802 : 11842757 : gfc_symbol *p;
3803 : 11842757 : unsigned i;
3804 : :
3805 : 28673962 : FOR_EACH_VEC_ELT_REVERSE (latest_undo_chgset->syms, i, p)
3806 : : {
3807 : : /* Symbol in a common block was new. Or was old and just put in common */
3808 : 5017854 : if (p->common_block
3809 : 3809 : && (p->gfc_new || !p->old_symbol->common_block))
3810 : : {
3811 : : /* If the symbol was added to any common block, it
3812 : : needs to be removed to stop the resolver looking
3813 : : for a (possibly) dead symbol. */
3814 : 80 : if (p->common_block->head == p && !p->common_next)
3815 : : {
3816 : 14 : gfc_symtree st, *st0;
3817 : 14 : st0 = find_common_symtree (p->ns->common_root,
3818 : : p->common_block);
3819 : 14 : if (st0)
3820 : : {
3821 : 11 : st.name = st0->name;
3822 : 11 : gfc_delete_bbt (&p->ns->common_root, &st, compare_symtree);
3823 : 11 : free (st0);
3824 : : }
3825 : : }
3826 : :
3827 : 80 : if (p->common_block->head == p)
3828 : 14 : p->common_block->head = p->common_next;
3829 : : else
3830 : : {
3831 : 66 : gfc_symbol *cparent, *csym;
3832 : :
3833 : 66 : cparent = p->common_block->head;
3834 : 66 : csym = cparent->common_next;
3835 : :
3836 : 290 : while (csym != p)
3837 : : {
3838 : 224 : cparent = csym;
3839 : 224 : csym = csym->common_next;
3840 : : }
3841 : :
3842 : 66 : gcc_assert(cparent->common_next == p);
3843 : 66 : cparent->common_next = csym->common_next;
3844 : : }
3845 : 80 : p->common_next = NULL;
3846 : : }
3847 : 5017854 : if (p->gfc_new)
3848 : : {
3849 : 3844844 : bool freed = delete_symbol_from_ns (p, p->ns);
3850 : :
3851 : : /* If the symbol is a procedure (function or subroutine), remove
3852 : : it from the procedure body namespace as well as from the outer
3853 : : namespace. */
3854 : 3844844 : if (!freed
3855 : 36 : && p->formal_ns != p->ns)
3856 : 36 : freed = delete_symbol_from_ns (p, p->formal_ns);
3857 : :
3858 : : /* If the formal_ns field has not been set yet, the previous
3859 : : conditional does nothing. In that case, we can assume that
3860 : : gfc_current_ns is the procedure body namespace, and remove the
3861 : : symbol from there. */
3862 : 36 : if (!freed
3863 : 36 : && gfc_current_ns != p->ns
3864 : 28 : && gfc_current_ns != p->formal_ns)
3865 : 28 : freed = delete_symbol_from_ns (p, gfc_current_ns);
3866 : : }
3867 : : else
3868 : 1173010 : restore_old_symbol (p);
3869 : : }
3870 : :
3871 : 11842757 : latest_undo_chgset->syms.truncate (0);
3872 : 11842757 : latest_undo_chgset->tbps.truncate (0);
3873 : :
3874 : 11842757 : if (!single_undo_checkpoint_p ())
3875 : 0 : pop_undo_change_set (latest_undo_chgset);
3876 : 11842757 : }
3877 : :
3878 : :
3879 : : /* Makes sure that there is only one set of changes; in other words we haven't
3880 : : forgotten to pair a call to gfc_new_checkpoint with a call to either
3881 : : gfc_drop_last_undo_checkpoint or gfc_restore_last_undo_checkpoint. */
3882 : :
3883 : : static void
3884 : 19657141 : enforce_single_undo_checkpoint (void)
3885 : : {
3886 : 19657141 : gcc_checking_assert (single_undo_checkpoint_p ());
3887 : 19657141 : }
3888 : :
3889 : :
3890 : : /* Undoes all the changes made to symbols in the current statement. */
3891 : :
3892 : : void
3893 : 11842757 : gfc_undo_symbols (void)
3894 : : {
3895 : 11842757 : enforce_single_undo_checkpoint ();
3896 : 11842757 : gfc_restore_last_undo_checkpoint ();
3897 : 11842757 : }
3898 : :
3899 : :
3900 : : /* Free sym->old_symbol. sym->old_symbol is mostly a shallow copy of sym; the
3901 : : components of old_symbol that might need deallocation are the "allocatables"
3902 : : that are restored in gfc_undo_symbols(), with two exceptions: namelist and
3903 : : namelist_tail. In case these differ between old_symbol and sym, it's just
3904 : : because sym->namelist has gotten a few more items. */
3905 : :
3906 : : static void
3907 : 2381004 : free_old_symbol (gfc_symbol *sym)
3908 : : {
3909 : :
3910 : 2381004 : if (sym->old_symbol == NULL)
3911 : : return;
3912 : :
3913 : 1385448 : if (sym->old_symbol->as != NULL
3914 : 259981 : && sym->old_symbol->as != sym->as
3915 : 2 : && !(sym->ts.type == BT_CLASS
3916 : 2 : && sym->ts.u.derived->attr.is_class
3917 : 2 : && sym->old_symbol->as == CLASS_DATA (sym)->as))
3918 : 0 : gfc_free_array_spec (sym->old_symbol->as);
3919 : :
3920 : 1385448 : if (sym->old_symbol->value != sym->value)
3921 : 7115 : gfc_free_expr (sym->old_symbol->value);
3922 : :
3923 : 1385448 : if (sym->old_symbol->formal != sym->formal)
3924 : 16001 : gfc_free_formal_arglist (sym->old_symbol->formal);
3925 : :
3926 : 1385448 : free (sym->old_symbol);
3927 : 1385448 : sym->old_symbol = NULL;
3928 : : }
3929 : :
3930 : :
3931 : : /* Makes the changes made in the current statement permanent-- gets
3932 : : rid of undo information. */
3933 : :
3934 : : void
3935 : 1383448 : gfc_commit_symbols (void)
3936 : : {
3937 : 1383448 : gfc_symbol *p;
3938 : 1383448 : gfc_typebound_proc *tbp;
3939 : 1383448 : unsigned i;
3940 : :
3941 : 1383448 : enforce_single_undo_checkpoint ();
3942 : :
3943 : 4581305 : FOR_EACH_VEC_ELT (latest_undo_chgset->syms, i, p)
3944 : : {
3945 : 1814409 : p->mark = 0;
3946 : 1814409 : p->gfc_new = 0;
3947 : 1814409 : free_old_symbol (p);
3948 : : }
3949 : 1383448 : latest_undo_chgset->syms.truncate (0);
3950 : :
3951 : 2821936 : FOR_EACH_VEC_ELT (latest_undo_chgset->tbps, i, tbp)
3952 : 55040 : tbp->error = 0;
3953 : 1383448 : latest_undo_chgset->tbps.truncate (0);
3954 : 1383448 : }
3955 : :
3956 : :
3957 : : /* Makes the changes made in one symbol permanent -- gets rid of undo
3958 : : information. */
3959 : :
3960 : : void
3961 : 566595 : gfc_commit_symbol (gfc_symbol *sym)
3962 : : {
3963 : 566595 : gfc_symbol *p;
3964 : 566595 : unsigned i;
3965 : :
3966 : 566595 : enforce_single_undo_checkpoint ();
3967 : :
3968 : 2005287 : FOR_EACH_VEC_ELT (latest_undo_chgset->syms, i, p)
3969 : 1363847 : if (p == sym)
3970 : : {
3971 : 491750 : latest_undo_chgset->syms.unordered_remove (i);
3972 : 491750 : break;
3973 : : }
3974 : :
3975 : 566595 : sym->mark = 0;
3976 : 566595 : sym->gfc_new = 0;
3977 : :
3978 : 566595 : free_old_symbol (sym);
3979 : 566595 : }
3980 : :
3981 : :
3982 : : /* Recursively free trees containing type-bound procedures. */
3983 : :
3984 : : static void
3985 : 976976 : free_tb_tree (gfc_symtree *t)
3986 : : {
3987 : 976976 : if (t == NULL)
3988 : : return;
3989 : :
3990 : 6812 : free_tb_tree (t->left);
3991 : 6812 : free_tb_tree (t->right);
3992 : :
3993 : : /* TODO: Free type-bound procedure u.generic */
3994 : 6812 : free (t->n.tb);
3995 : 6812 : t->n.tb = NULL;
3996 : 6812 : free (t);
3997 : : }
3998 : :
3999 : :
4000 : : /* Recursive function that deletes an entire tree and all the common
4001 : : head structures it points to. */
4002 : :
4003 : : static void
4004 : 485540 : free_common_tree (gfc_symtree * common_tree)
4005 : : {
4006 : 485540 : if (common_tree == NULL)
4007 : : return;
4008 : :
4009 : 1932 : free_common_tree (common_tree->left);
4010 : 1932 : free_common_tree (common_tree->right);
4011 : :
4012 : 1932 : free (common_tree);
4013 : : }
4014 : :
4015 : :
4016 : : /* Recursive function that deletes an entire tree and all the common
4017 : : head structures it points to. */
4018 : :
4019 : : static void
4020 : 482684 : free_omp_udr_tree (gfc_symtree * omp_udr_tree)
4021 : : {
4022 : 482684 : if (omp_udr_tree == NULL)
4023 : : return;
4024 : :
4025 : 504 : free_omp_udr_tree (omp_udr_tree->left);
4026 : 504 : free_omp_udr_tree (omp_udr_tree->right);
4027 : :
4028 : 504 : gfc_free_omp_udr (omp_udr_tree->n.omp_udr);
4029 : 504 : free (omp_udr_tree);
4030 : : }
4031 : :
4032 : :
4033 : : /* Recursive function that deletes an entire tree and all the user
4034 : : operator nodes that it contains. */
4035 : :
4036 : : static void
4037 : 482342 : free_uop_tree (gfc_symtree *uop_tree)
4038 : : {
4039 : 482342 : if (uop_tree == NULL)
4040 : : return;
4041 : :
4042 : 333 : free_uop_tree (uop_tree->left);
4043 : 333 : free_uop_tree (uop_tree->right);
4044 : :
4045 : 333 : gfc_free_interface (uop_tree->n.uop->op);
4046 : 333 : free (uop_tree->n.uop);
4047 : 333 : free (uop_tree);
4048 : : }
4049 : :
4050 : :
4051 : : /* Recursive function that deletes an entire tree and all the symbols
4052 : : that it contains. */
4053 : :
4054 : : static void
4055 : 4247384 : free_sym_tree (gfc_symtree *sym_tree)
4056 : : {
4057 : 4247384 : if (sym_tree == NULL)
4058 : : return;
4059 : :
4060 : 1882854 : free_sym_tree (sym_tree->left);
4061 : 1882854 : free_sym_tree (sym_tree->right);
4062 : :
4063 : 1882854 : gfc_release_symbol (sym_tree->n.sym);
4064 : 1882854 : free (sym_tree);
4065 : : }
4066 : :
4067 : :
4068 : : /* Free the gfc_equiv_info's. */
4069 : :
4070 : : static void
4071 : 14884 : gfc_free_equiv_infos (gfc_equiv_info *s)
4072 : : {
4073 : 14884 : if (s == NULL)
4074 : : return;
4075 : 8230 : gfc_free_equiv_infos (s->next);
4076 : 8230 : free (s);
4077 : : }
4078 : :
4079 : :
4080 : : /* Free the gfc_equiv_lists. */
4081 : :
4082 : : static void
4083 : 488330 : gfc_free_equiv_lists (gfc_equiv_list *l)
4084 : : {
4085 : 488330 : if (l == NULL)
4086 : : return;
4087 : 6654 : gfc_free_equiv_lists (l->next);
4088 : 6654 : gfc_free_equiv_infos (l->equiv);
4089 : 6654 : free (l);
4090 : : }
4091 : :
4092 : :
4093 : : /* Free a finalizer procedure list. */
4094 : :
4095 : : void
4096 : 901 : gfc_free_finalizer (gfc_finalizer* el)
4097 : : {
4098 : 901 : if (el)
4099 : : {
4100 : 901 : gfc_release_symbol (el->proc_sym);
4101 : 901 : free (el);
4102 : : }
4103 : 901 : }
4104 : :
4105 : : static void
4106 : 481676 : gfc_free_finalizer_list (gfc_finalizer* list)
4107 : : {
4108 : 482563 : while (list)
4109 : : {
4110 : 887 : gfc_finalizer* current = list;
4111 : 887 : list = list->next;
4112 : 887 : gfc_free_finalizer (current);
4113 : : }
4114 : 481676 : }
4115 : :
4116 : :
4117 : : /* Create a new gfc_charlen structure and add it to a namespace.
4118 : : If 'old_cl' is given, the newly created charlen will be a copy of it. */
4119 : :
4120 : : gfc_charlen*
4121 : 278378 : gfc_new_charlen (gfc_namespace *ns, gfc_charlen *old_cl)
4122 : : {
4123 : 278378 : gfc_charlen *cl;
4124 : :
4125 : 278378 : cl = gfc_get_charlen ();
4126 : :
4127 : : /* Copy old_cl. */
4128 : 278378 : if (old_cl)
4129 : : {
4130 : 14284 : cl->length = gfc_copy_expr (old_cl->length);
4131 : 14284 : cl->length_from_typespec = old_cl->length_from_typespec;
4132 : 14284 : cl->backend_decl = old_cl->backend_decl;
4133 : 14284 : cl->passed_length = old_cl->passed_length;
4134 : 14284 : cl->resolved = old_cl->resolved;
4135 : : }
4136 : :
4137 : : /* Put into namespace. */
4138 : 278378 : cl->next = ns->cl_list;
4139 : 278378 : ns->cl_list = cl;
4140 : :
4141 : 278378 : return cl;
4142 : : }
4143 : :
4144 : :
4145 : : /* Free the charlen list from cl to end (end is not freed).
4146 : : Free the whole list if end is NULL. */
4147 : :
4148 : : static void
4149 : 481676 : gfc_free_charlen (gfc_charlen *cl, gfc_charlen *end)
4150 : : {
4151 : 481676 : gfc_charlen *cl2;
4152 : :
4153 : 759854 : for (; cl != end; cl = cl2)
4154 : : {
4155 : 278178 : gcc_assert (cl);
4156 : :
4157 : 278178 : cl2 = cl->next;
4158 : 278178 : gfc_free_expr (cl->length);
4159 : 278178 : free (cl);
4160 : : }
4161 : 481676 : }
4162 : :
4163 : :
4164 : : /* Free entry list structs. */
4165 : :
4166 : : static void
4167 : 0 : free_entry_list (gfc_entry_list *el)
4168 : : {
4169 : 483096 : gfc_entry_list *next;
4170 : :
4171 : 483096 : if (el == NULL)
4172 : 0 : return;
4173 : :
4174 : 1420 : next = el->next;
4175 : 1420 : free (el);
4176 : 1420 : free_entry_list (next);
4177 : : }
4178 : :
4179 : :
4180 : : /* Free a namespace structure and everything below it. Interface
4181 : : lists associated with intrinsic operators are not freed. These are
4182 : : taken care of when a specific name is freed. */
4183 : :
4184 : : void
4185 : 11546152 : gfc_free_namespace (gfc_namespace *&ns)
4186 : : {
4187 : 11546152 : gfc_namespace *p, *q;
4188 : 11546152 : int i;
4189 : 11546152 : gfc_was_finalized *f;
4190 : :
4191 : 11546152 : if (ns == NULL)
4192 : 11064476 : return;
4193 : :
4194 : 506460 : ns->refs--;
4195 : 506460 : if (ns->refs > 0)
4196 : : return;
4197 : :
4198 : 481676 : gcc_assert (ns->refs == 0);
4199 : :
4200 : 481676 : gfc_free_statements (ns->code);
4201 : :
4202 : 481676 : free_sym_tree (ns->sym_root);
4203 : 481676 : free_uop_tree (ns->uop_root);
4204 : 481676 : free_common_tree (ns->common_root);
4205 : 481676 : free_omp_udr_tree (ns->omp_udr_root);
4206 : 481676 : free_tb_tree (ns->tb_sym_root);
4207 : 481676 : free_tb_tree (ns->tb_uop_root);
4208 : 481676 : gfc_free_finalizer_list (ns->finalizers);
4209 : 481676 : gfc_free_omp_declare_simd_list (ns->omp_declare_simd);
4210 : 481676 : gfc_free_omp_declare_variant_list (ns->omp_declare_variant);
4211 : 481676 : gfc_free_charlen (ns->cl_list, NULL);
4212 : 481676 : free_st_labels (ns->st_labels);
4213 : :
4214 : 481676 : free_entry_list (ns->entries);
4215 : 481676 : gfc_free_equiv (ns->equiv);
4216 : 481676 : gfc_free_equiv_lists (ns->equiv_lists);
4217 : 481676 : gfc_free_use_stmts (ns->use_stmts);
4218 : :
4219 : 14450280 : for (i = GFC_INTRINSIC_BEGIN; i != GFC_INTRINSIC_END; i++)
4220 : 13486928 : gfc_free_interface (ns->op[i]);
4221 : :
4222 : 481676 : gfc_free_data (ns->data);
4223 : :
4224 : : /* Free all the expr + component combinations that have been
4225 : : finalized. */
4226 : 481676 : f = ns->was_finalized;
4227 : 483822 : while (f)
4228 : : {
4229 : 2146 : gfc_was_finalized* current = f;
4230 : 2146 : f = f->next;
4231 : 2146 : free (current);
4232 : : }
4233 : 481676 : if (ns->omp_assumes)
4234 : : {
4235 : 19 : free (ns->omp_assumes->absent);
4236 : 19 : free (ns->omp_assumes->contains);
4237 : 19 : gfc_free_expr_list (ns->omp_assumes->holds);
4238 : 19 : free (ns->omp_assumes);
4239 : : }
4240 : 481676 : p = ns->contained;
4241 : 481676 : free (ns);
4242 : 481676 : ns = NULL;
4243 : :
4244 : : /* Recursively free any contained namespaces. */
4245 : 528231 : while (p != NULL)
4246 : : {
4247 : 46555 : q = p;
4248 : 46555 : p = p->sibling;
4249 : 46555 : gfc_free_namespace (q);
4250 : : }
4251 : : }
4252 : :
4253 : :
4254 : : void
4255 : 77736 : gfc_symbol_init_2 (void)
4256 : : {
4257 : :
4258 : 77736 : gfc_current_ns = gfc_get_namespace (NULL, 0);
4259 : 77736 : }
4260 : :
4261 : :
4262 : : void
4263 : 78069 : gfc_symbol_done_2 (void)
4264 : : {
4265 : 78069 : if (gfc_current_ns != NULL)
4266 : : {
4267 : : /* free everything from the root. */
4268 : 78079 : while (gfc_current_ns->parent != NULL)
4269 : 10 : gfc_current_ns = gfc_current_ns->parent;
4270 : 78069 : gfc_free_namespace (gfc_current_ns);
4271 : 78069 : gfc_current_ns = NULL;
4272 : : }
4273 : 78069 : gfc_derived_types = NULL;
4274 : :
4275 : 78069 : enforce_single_undo_checkpoint ();
4276 : 78069 : free_undo_change_set_data (*latest_undo_chgset);
4277 : 78069 : }
4278 : :
4279 : :
4280 : : /* Count how many nodes a symtree has. */
4281 : :
4282 : : static unsigned
4283 : 23867503 : count_st_nodes (const gfc_symtree *st)
4284 : : {
4285 : 44528827 : unsigned nodes;
4286 : 44528827 : if (!st)
4287 : 23867503 : return 0;
4288 : :
4289 : 20661324 : nodes = count_st_nodes (st->left);
4290 : 20661324 : nodes++;
4291 : 20661324 : nodes += count_st_nodes (st->right);
4292 : :
4293 : 20661324 : return nodes;
4294 : : }
4295 : :
4296 : :
4297 : : /* Convert symtree tree into symtree vector. */
4298 : :
4299 : : static unsigned
4300 : 23867503 : fill_st_vector (gfc_symtree *st, gfc_symtree **st_vec, unsigned node_cntr)
4301 : : {
4302 : 44528827 : if (!st)
4303 : 23867503 : return node_cntr;
4304 : :
4305 : 20661324 : node_cntr = fill_st_vector (st->left, st_vec, node_cntr);
4306 : 20661324 : st_vec[node_cntr++] = st;
4307 : 20661324 : node_cntr = fill_st_vector (st->right, st_vec, node_cntr);
4308 : :
4309 : 20661324 : return node_cntr;
4310 : : }
4311 : :
4312 : :
4313 : : /* Traverse namespace. As the functions might modify the symtree, we store the
4314 : : symtree as a vector and operate on this vector. Note: We assume that
4315 : : sym_func or st_func never deletes nodes from the symtree - only adding is
4316 : : allowed. Additionally, newly added nodes are not traversed. */
4317 : :
4318 : : static void
4319 : 3206179 : do_traverse_symtree (gfc_symtree *st, void (*st_func) (gfc_symtree *),
4320 : : void (*sym_func) (gfc_symbol *))
4321 : : {
4322 : 3206179 : gfc_symtree **st_vec;
4323 : 3206179 : unsigned nodes, i, node_cntr;
4324 : :
4325 : 3206179 : gcc_assert ((st_func && !sym_func) || (!st_func && sym_func));
4326 : 3206179 : nodes = count_st_nodes (st);
4327 : 3206179 : st_vec = XALLOCAVEC (gfc_symtree *, nodes);
4328 : 3206179 : node_cntr = 0;
4329 : 3206179 : fill_st_vector (st, st_vec, node_cntr);
4330 : :
4331 : 3206179 : if (sym_func)
4332 : : {
4333 : : /* Clear marks. */
4334 : 23587156 : for (i = 0; i < nodes; i++)
4335 : 20507123 : st_vec[i]->n.sym->mark = 0;
4336 : 23587156 : for (i = 0; i < nodes; i++)
4337 : 20507123 : if (!st_vec[i]->n.sym->mark)
4338 : : {
4339 : 19964971 : (*sym_func) (st_vec[i]->n.sym);
4340 : 19964971 : st_vec[i]->n.sym->mark = 1;
4341 : : }
4342 : : }
4343 : : else
4344 : 280347 : for (i = 0; i < nodes; i++)
4345 : 154201 : (*st_func) (st_vec[i]);
4346 : 3206179 : }
4347 : :
4348 : :
4349 : : /* Recursively traverse the symtree nodes. */
4350 : :
4351 : : void
4352 : 126146 : gfc_traverse_symtree (gfc_symtree *st, void (*st_func) (gfc_symtree *))
4353 : : {
4354 : 126146 : do_traverse_symtree (st, st_func, NULL);
4355 : 126146 : }
4356 : :
4357 : :
4358 : : /* Call a given function for all symbols in the namespace. We take
4359 : : care that each gfc_symbol node is called exactly once. */
4360 : :
4361 : : void
4362 : 3080033 : gfc_traverse_ns (gfc_namespace *ns, void (*sym_func) (gfc_symbol *))
4363 : : {
4364 : 3080033 : do_traverse_symtree (ns->sym_root, NULL, sym_func);
4365 : 3080033 : }
4366 : :
4367 : :
4368 : : /* Return TRUE when name is the name of an intrinsic type. */
4369 : :
4370 : : bool
4371 : 12550 : gfc_is_intrinsic_typename (const char *name)
4372 : : {
4373 : 12550 : if (strcmp (name, "integer") == 0
4374 : 12547 : || strcmp (name, "real") == 0
4375 : 12544 : || strcmp (name, "character") == 0
4376 : 12542 : || strcmp (name, "logical") == 0
4377 : 12540 : || strcmp (name, "complex") == 0
4378 : 12536 : || strcmp (name, "doubleprecision") == 0
4379 : 12533 : || strcmp (name, "doublecomplex") == 0)
4380 : : return true;
4381 : : else
4382 : 12530 : return false;
4383 : : }
4384 : :
4385 : :
4386 : : /* Return TRUE if the symbol is an automatic variable. */
4387 : :
4388 : : static bool
4389 : 869 : gfc_is_var_automatic (gfc_symbol *sym)
4390 : : {
4391 : : /* Pointer and allocatable variables are never automatic. */
4392 : 869 : if (sym->attr.pointer || sym->attr.allocatable)
4393 : : return false;
4394 : : /* Check for arrays with non-constant size. */
4395 : 75 : if (sym->attr.dimension && sym->as
4396 : 871 : && !gfc_is_compile_time_shape (sym->as))
4397 : : return true;
4398 : : /* Check for non-constant length character variables. */
4399 : 781 : if (sym->ts.type == BT_CHARACTER
4400 : 82 : && sym->ts.u.cl
4401 : 863 : && !gfc_is_constant_expr (sym->ts.u.cl->length))
4402 : : return true;
4403 : : /* Variables with explicit AUTOMATIC attribute. */
4404 : 773 : if (sym->attr.automatic)
4405 : : return true;
4406 : :
4407 : : return false;
4408 : : }
4409 : :
4410 : : /* Given a symbol, mark it as SAVEd if it is allowed. */
4411 : :
4412 : : static void
4413 : 2794 : save_symbol (gfc_symbol *sym)
4414 : : {
4415 : :
4416 : 2794 : if (sym->attr.use_assoc)
4417 : : return;
4418 : :
4419 : 2408 : if (sym->attr.in_common
4420 : : || sym->attr.in_equivalence
4421 : : || sym->attr.dummy
4422 : 2408 : || sym->attr.result
4423 : 1976 : || sym->attr.flavor != FL_VARIABLE)
4424 : : return;
4425 : : /* Automatic objects are not saved. */
4426 : 869 : if (gfc_is_var_automatic (sym))
4427 : : return;
4428 : 828 : gfc_add_save (&sym->attr, SAVE_EXPLICIT, sym->name, &sym->declared_at);
4429 : : }
4430 : :
4431 : :
4432 : : /* Mark those symbols which can be SAVEd as such. */
4433 : :
4434 : : void
4435 : 345 : gfc_save_all (gfc_namespace *ns)
4436 : : {
4437 : 345 : gfc_traverse_ns (ns, save_symbol);
4438 : 345 : }
4439 : :
4440 : :
4441 : : /* Make sure that no changes to symbols are pending. */
4442 : :
4443 : : void
4444 : 5786272 : gfc_enforce_clean_symbol_state(void)
4445 : : {
4446 : 5786272 : enforce_single_undo_checkpoint ();
4447 : 5786272 : gcc_assert (latest_undo_chgset->syms.is_empty ());
4448 : 5786272 : }
4449 : :
4450 : :
4451 : : /************** Global symbol handling ************/
4452 : :
4453 : :
4454 : : /* Search a tree for the global symbol. */
4455 : :
4456 : : gfc_gsymbol *
4457 : 361260 : gfc_find_gsymbol (gfc_gsymbol *symbol, const char *name)
4458 : : {
4459 : 361260 : int c;
4460 : :
4461 : 361260 : if (symbol == NULL)
4462 : : return NULL;
4463 : :
4464 : 1163627 : while (symbol)
4465 : : {
4466 : 961333 : c = strcmp (name, symbol->name);
4467 : 961333 : if (!c)
4468 : : return symbol;
4469 : :
4470 : 842505 : symbol = (c < 0) ? symbol->left : symbol->right;
4471 : : }
4472 : :
4473 : : return NULL;
4474 : : }
4475 : :
4476 : :
4477 : : /* Case insensitive search a tree for the global symbol. */
4478 : :
4479 : : gfc_gsymbol *
4480 : 27431 : gfc_find_case_gsymbol (gfc_gsymbol *symbol, const char *name)
4481 : : {
4482 : 27431 : int c;
4483 : :
4484 : 27431 : if (symbol == NULL)
4485 : : return NULL;
4486 : :
4487 : 103982 : while (symbol)
4488 : : {
4489 : 86675 : c = strcasecmp (name, symbol->name);
4490 : 86675 : if (!c)
4491 : : return symbol;
4492 : :
4493 : 76897 : symbol = (c < 0) ? symbol->left : symbol->right;
4494 : : }
4495 : :
4496 : : return NULL;
4497 : : }
4498 : :
4499 : :
4500 : : /* Compare two global symbols. Used for managing the BB tree. */
4501 : :
4502 : : static int
4503 : 138791 : gsym_compare (void *_s1, void *_s2)
4504 : : {
4505 : 138791 : gfc_gsymbol *s1, *s2;
4506 : :
4507 : 138791 : s1 = (gfc_gsymbol *) _s1;
4508 : 138791 : s2 = (gfc_gsymbol *) _s2;
4509 : 138791 : return strcmp (s1->name, s2->name);
4510 : : }
4511 : :
4512 : :
4513 : : /* Get a global symbol, creating it if it doesn't exist. */
4514 : :
4515 : : gfc_gsymbol *
4516 : 104701 : gfc_get_gsymbol (const char *name, bool bind_c)
4517 : : {
4518 : 104701 : gfc_gsymbol *s;
4519 : :
4520 : 104701 : s = gfc_find_gsymbol (gfc_gsym_root, name);
4521 : 104701 : if (s != NULL)
4522 : : return s;
4523 : :
4524 : 79913 : s = XCNEW (gfc_gsymbol);
4525 : 79913 : s->type = GSYM_UNKNOWN;
4526 : 79913 : s->name = gfc_get_string ("%s", name);
4527 : 79913 : s->bind_c = bind_c;
4528 : :
4529 : 79913 : gfc_insert_bbt (&gfc_gsym_root, s, gsym_compare);
4530 : :
4531 : 79913 : return s;
4532 : : }
4533 : :
4534 : : void
4535 : 0 : gfc_traverse_gsymbol (gfc_gsymbol *gsym,
4536 : : void (*do_something) (gfc_gsymbol *, void *),
4537 : : void *data)
4538 : : {
4539 : 0 : if (gsym->left)
4540 : 0 : gfc_traverse_gsymbol (gsym->left, do_something, data);
4541 : :
4542 : 0 : (*do_something) (gsym, data);
4543 : :
4544 : 0 : if (gsym->right)
4545 : : gfc_traverse_gsymbol (gsym->right, do_something, data);
4546 : 0 : }
4547 : :
4548 : : static gfc_symbol *
4549 : 52 : get_iso_c_binding_dt (int sym_id)
4550 : : {
4551 : 52 : gfc_symbol *dt_list = gfc_derived_types;
4552 : :
4553 : : /* Loop through the derived types in the name list, searching for
4554 : : the desired symbol from iso_c_binding. Search the parent namespaces
4555 : : if necessary and requested to (parent_flag). */
4556 : 52 : if (dt_list)
4557 : : {
4558 : 25 : while (dt_list->dt_next != gfc_derived_types)
4559 : : {
4560 : 0 : if (dt_list->from_intmod != INTMOD_NONE
4561 : 0 : && dt_list->intmod_sym_id == sym_id)
4562 : : return dt_list;
4563 : :
4564 : : dt_list = dt_list->dt_next;
4565 : : }
4566 : : }
4567 : :
4568 : : return NULL;
4569 : : }
4570 : :
4571 : :
4572 : : /* Verifies that the given derived type symbol, derived_sym, is interoperable
4573 : : with C. This is necessary for any derived type that is BIND(C) and for
4574 : : derived types that are parameters to functions that are BIND(C). All
4575 : : fields of the derived type are required to be interoperable, and are tested
4576 : : for such. If an error occurs, the errors are reported here, allowing for
4577 : : multiple errors to be handled for a single derived type. */
4578 : :
4579 : : bool
4580 : 23680 : verify_bind_c_derived_type (gfc_symbol *derived_sym)
4581 : : {
4582 : 23680 : gfc_component *curr_comp = NULL;
4583 : 23680 : bool is_c_interop = false;
4584 : 23680 : bool retval = true;
4585 : :
4586 : 23680 : if (derived_sym == NULL)
4587 : 0 : gfc_internal_error ("verify_bind_c_derived_type(): Given symbol is "
4588 : : "unexpectedly NULL");
4589 : :
4590 : : /* If we've already looked at this derived symbol, do not look at it again
4591 : : so we don't repeat warnings/errors. */
4592 : 23680 : if (derived_sym->ts.is_c_interop)
4593 : : return true;
4594 : :
4595 : : /* The derived type must have the BIND attribute to be interoperable
4596 : : J3/04-007, Section 15.2.3. */
4597 : 399 : if (derived_sym->attr.is_bind_c != 1)
4598 : : {
4599 : 2 : derived_sym->ts.is_c_interop = 0;
4600 : 2 : gfc_error_now ("Derived type %qs declared at %L must have the BIND "
4601 : : "attribute to be C interoperable", derived_sym->name,
4602 : : &(derived_sym->declared_at));
4603 : 2 : retval = false;
4604 : : }
4605 : :
4606 : 399 : curr_comp = derived_sym->components;
4607 : :
4608 : : /* Fortran 2003 allows an empty derived type. C99 appears to disallow an
4609 : : empty struct. Section 15.2 in Fortran 2003 states: "The following
4610 : : subclauses define the conditions under which a Fortran entity is
4611 : : interoperable. If a Fortran entity is interoperable, an equivalent
4612 : : entity may be defined by means of C and the Fortran entity is said
4613 : : to be interoperable with the C entity. There does not have to be such
4614 : : an interoperating C entity."
4615 : : */
4616 : 399 : if (curr_comp == NULL)
4617 : : {
4618 : 1 : gfc_warning (0, "Derived type %qs with BIND(C) attribute at %L is empty, "
4619 : : "and may be inaccessible by the C companion processor",
4620 : : derived_sym->name, &(derived_sym->declared_at));
4621 : 1 : derived_sym->ts.is_c_interop = 1;
4622 : 1 : derived_sym->attr.is_bind_c = 1;
4623 : 1 : return true;
4624 : : }
4625 : :
4626 : :
4627 : : /* Initialize the derived type as being C interoperable.
4628 : : If we find an error in the components, this will be set false. */
4629 : 398 : derived_sym->ts.is_c_interop = 1;
4630 : :
4631 : : /* Loop through the list of components to verify that the kind of
4632 : : each is a C interoperable type. */
4633 : 835 : do
4634 : : {
4635 : : /* The components cannot be pointers (fortran sense).
4636 : : J3/04-007, Section 15.2.3, C1505. */
4637 : 835 : if (curr_comp->attr.pointer != 0)
4638 : : {
4639 : 3 : gfc_error ("Component %qs at %L cannot have the "
4640 : : "POINTER attribute because it is a member "
4641 : : "of the BIND(C) derived type %qs at %L",
4642 : : curr_comp->name, &(curr_comp->loc),
4643 : : derived_sym->name, &(derived_sym->declared_at));
4644 : 3 : retval = false;
4645 : : }
4646 : :
4647 : 835 : if (curr_comp->attr.proc_pointer != 0)
4648 : : {
4649 : 1 : gfc_error ("Procedure pointer component %qs at %L cannot be a member"
4650 : : " of the BIND(C) derived type %qs at %L", curr_comp->name,
4651 : : &curr_comp->loc, derived_sym->name,
4652 : : &derived_sym->declared_at);
4653 : 1 : retval = false;
4654 : : }
4655 : :
4656 : : /* The components cannot be allocatable.
4657 : : J3/04-007, Section 15.2.3, C1505. */
4658 : 835 : if (curr_comp->attr.allocatable != 0)
4659 : : {
4660 : 3 : gfc_error ("Component %qs at %L cannot have the "
4661 : : "ALLOCATABLE attribute because it is a member "
4662 : : "of the BIND(C) derived type %qs at %L",
4663 : : curr_comp->name, &(curr_comp->loc),
4664 : : derived_sym->name, &(derived_sym->declared_at));
4665 : 3 : retval = false;
4666 : : }
4667 : :
4668 : : /* BIND(C) derived types must have interoperable components. */
4669 : 835 : if (curr_comp->ts.type == BT_DERIVED
4670 : 71 : && curr_comp->ts.u.derived->ts.is_iso_c != 1
4671 : 17 : && curr_comp->ts.u.derived != derived_sym)
4672 : : {
4673 : : /* This should be allowed; the draft says a derived-type cannot
4674 : : have type parameters if it is has the BIND attribute. Type
4675 : : parameters seem to be for making parameterized derived types.
4676 : : There's no need to verify the type if it is c_ptr/c_funptr. */
4677 : 16 : retval = verify_bind_c_derived_type (curr_comp->ts.u.derived);
4678 : : }
4679 : : else
4680 : : {
4681 : : /* Grab the typespec for the given component and test the kind. */
4682 : 819 : is_c_interop = gfc_verify_c_interop (&(curr_comp->ts));
4683 : :
4684 : 819 : if (!is_c_interop)
4685 : : {
4686 : : /* Report warning and continue since not fatal. The
4687 : : draft does specify a constraint that requires all fields
4688 : : to interoperate, but if the user says real(4), etc., it
4689 : : may interoperate with *something* in C, but the compiler
4690 : : most likely won't know exactly what. Further, it may not
4691 : : interoperate with the same data type(s) in C if the user
4692 : : recompiles with different flags (e.g., -m32 and -m64 on
4693 : : x86_64 and using integer(4) to claim interop with a
4694 : : C_LONG). */
4695 : 16 : if (derived_sym->attr.is_bind_c == 1 && warn_c_binding_type)
4696 : : /* If the derived type is bind(c), all fields must be
4697 : : interop. */
4698 : 1 : gfc_warning (OPT_Wc_binding_type,
4699 : : "Component %qs in derived type %qs at %L "
4700 : : "may not be C interoperable, even though "
4701 : : "derived type %qs is BIND(C)",
4702 : : curr_comp->name, derived_sym->name,
4703 : : &(curr_comp->loc), derived_sym->name);
4704 : 15 : else if (warn_c_binding_type)
4705 : : /* If derived type is param to bind(c) routine, or to one
4706 : : of the iso_c_binding procs, it must be interoperable, so
4707 : : all fields must interop too. */
4708 : 0 : gfc_warning (OPT_Wc_binding_type,
4709 : : "Component %qs in derived type %qs at %L "
4710 : : "may not be C interoperable",
4711 : : curr_comp->name, derived_sym->name,
4712 : : &(curr_comp->loc));
4713 : : }
4714 : : }
4715 : :
4716 : 835 : curr_comp = curr_comp->next;
4717 : 835 : } while (curr_comp != NULL);
4718 : :
4719 : 398 : if (derived_sym->attr.sequence != 0)
4720 : : {
4721 : 0 : gfc_error ("Derived type %qs at %L cannot have the SEQUENCE "
4722 : : "attribute because it is BIND(C)", derived_sym->name,
4723 : : &(derived_sym->declared_at));
4724 : 0 : retval = false;
4725 : : }
4726 : :
4727 : : /* Mark the derived type as not being C interoperable if we found an
4728 : : error. If there were only warnings, proceed with the assumption
4729 : : it's interoperable. */
4730 : 398 : if (!retval)
4731 : 8 : derived_sym->ts.is_c_interop = 0;
4732 : :
4733 : : return retval;
4734 : : }
4735 : :
4736 : :
4737 : : /* Generate symbols for the named constants c_null_ptr and c_null_funptr. */
4738 : :
4739 : : static bool
4740 : 6194 : gen_special_c_interop_ptr (gfc_symbol *tmp_sym, gfc_symtree *dt_symtree)
4741 : : {
4742 : 6194 : gfc_constructor *c;
4743 : :
4744 : 6194 : gcc_assert (tmp_sym && dt_symtree && dt_symtree->n.sym);
4745 : 6194 : dt_symtree->n.sym->attr.referenced = 1;
4746 : :
4747 : 6194 : tmp_sym->attr.is_c_interop = 1;
4748 : 6194 : tmp_sym->attr.is_bind_c = 1;
4749 : 6194 : tmp_sym->ts.is_c_interop = 1;
4750 : 6194 : tmp_sym->ts.is_iso_c = 1;
4751 : 6194 : tmp_sym->ts.type = BT_DERIVED;
4752 : 6194 : tmp_sym->ts.f90_type = BT_VOID;
4753 : 6194 : tmp_sym->attr.flavor = FL_PARAMETER;
4754 : 6194 : tmp_sym->ts.u.derived = dt_symtree->n.sym;
4755 : :
4756 : : /* Set the c_address field of c_null_ptr and c_null_funptr to
4757 : : the value of NULL. */
4758 : 6194 : tmp_sym->value = gfc_get_expr ();
4759 : 6194 : tmp_sym->value->expr_type = EXPR_STRUCTURE;
4760 : 6194 : tmp_sym->value->ts.type = BT_DERIVED;
4761 : 6194 : tmp_sym->value->ts.f90_type = BT_VOID;
4762 : 6194 : tmp_sym->value->ts.u.derived = tmp_sym->ts.u.derived;
4763 : 6194 : gfc_constructor_append_expr (&tmp_sym->value->value.constructor, NULL, NULL);
4764 : 6194 : c = gfc_constructor_first (tmp_sym->value->value.constructor);
4765 : 6194 : c->expr = gfc_get_int_expr (gfc_index_integer_kind, NULL, 0);
4766 : 6194 : c->expr->ts.is_iso_c = 1;
4767 : :
4768 : 6194 : return true;
4769 : : }
4770 : :
4771 : :
4772 : : /* Add a formal argument, gfc_formal_arglist, to the
4773 : : end of the given list of arguments. Set the reference to the
4774 : : provided symbol, param_sym, in the argument. */
4775 : :
4776 : : static void
4777 : 78127 : add_formal_arg (gfc_formal_arglist **head,
4778 : : gfc_formal_arglist **tail,
4779 : : gfc_formal_arglist *formal_arg,
4780 : : gfc_symbol *param_sym)
4781 : : {
4782 : : /* Put in list, either as first arg or at the tail (curr arg). */
4783 : 0 : if (*head == NULL)
4784 : 0 : *head = *tail = formal_arg;
4785 : : else
4786 : : {
4787 : 46158 : (*tail)->next = formal_arg;
4788 : 46158 : (*tail) = formal_arg;
4789 : : }
4790 : :
4791 : 78127 : (*tail)->sym = param_sym;
4792 : 78127 : (*tail)->next = NULL;
4793 : :
4794 : 78127 : return;
4795 : : }
4796 : :
4797 : :
4798 : : /* Add a procedure interface to the given symbol (i.e., store a
4799 : : reference to the list of formal arguments). */
4800 : :
4801 : : static void
4802 : 32639 : add_proc_interface (gfc_symbol *sym, ifsrc source, gfc_formal_arglist *formal)
4803 : : {
4804 : :
4805 : 32639 : sym->formal = formal;
4806 : 32639 : sym->attr.if_source = source;
4807 : 0 : }
4808 : :
4809 : :
4810 : : /* Copy the formal args from an existing symbol, src, into a new
4811 : : symbol, dest. New formal args are created, and the description of
4812 : : each arg is set according to the existing ones. This function is
4813 : : used when creating procedure declaration variables from a procedure
4814 : : declaration statement (see match_proc_decl()) to create the formal
4815 : : args based on the args of a given named interface.
4816 : :
4817 : : When an actual argument list is provided, skip the absent arguments
4818 : : unless copy_type is true.
4819 : : To be used together with gfc_se->ignore_optional. */
4820 : :
4821 : : void
4822 : 32639 : gfc_copy_formal_args_intr (gfc_symbol *dest, gfc_intrinsic_sym *src,
4823 : : gfc_actual_arglist *actual, bool copy_type)
4824 : : {
4825 : 32639 : gfc_formal_arglist *head = NULL;
4826 : 32639 : gfc_formal_arglist *tail = NULL;
4827 : 32639 : gfc_formal_arglist *formal_arg = NULL;
4828 : 32639 : gfc_intrinsic_arg *curr_arg = NULL;
4829 : 32639 : gfc_formal_arglist *formal_prev = NULL;
4830 : 32639 : gfc_actual_arglist *act_arg = actual;
4831 : : /* Save current namespace so we can change it for formal args. */
4832 : 32639 : gfc_namespace *parent_ns = gfc_current_ns;
4833 : :
4834 : : /* Create a new namespace, which will be the formal ns (namespace
4835 : : of the formal args). */
4836 : 32639 : gfc_current_ns = gfc_get_namespace (parent_ns, 0);
4837 : 32639 : gfc_current_ns->proc_name = dest;
4838 : :
4839 : 112993 : for (curr_arg = src->formal; curr_arg; curr_arg = curr_arg->next)
4840 : : {
4841 : : /* Skip absent arguments. */
4842 : 80354 : if (actual)
4843 : : {
4844 : 12824 : gcc_assert (act_arg != NULL);
4845 : 12824 : if (act_arg->expr == NULL)
4846 : : {
4847 : 2227 : act_arg = act_arg->next;
4848 : 2227 : continue;
4849 : : }
4850 : : }
4851 : 78127 : formal_arg = gfc_get_formal_arglist ();
4852 : 78127 : gfc_get_symbol (curr_arg->name, gfc_current_ns, &(formal_arg->sym));
4853 : :
4854 : : /* May need to copy more info for the symbol. */
4855 : 78127 : if (copy_type && act_arg->expr != NULL)
4856 : : {
4857 : 4480 : formal_arg->sym->ts = act_arg->expr->ts;
4858 : 4480 : if (act_arg->expr->rank > 0)
4859 : : {
4860 : 2090 : formal_arg->sym->attr.dimension = 1;
4861 : 2090 : formal_arg->sym->as = gfc_get_array_spec();
4862 : 2090 : formal_arg->sym->as->rank = -1;
4863 : 2090 : formal_arg->sym->as->type = AS_ASSUMED_RANK;
4864 : : }
4865 : 4480 : if (act_arg->name && strcmp (act_arg->name, "%VAL") == 0)
4866 : 934 : formal_arg->sym->pass_as_value = 1;
4867 : : }
4868 : : else
4869 : 73647 : formal_arg->sym->ts = curr_arg->ts;
4870 : :
4871 : 78127 : formal_arg->sym->attr.optional = curr_arg->optional;
4872 : 78127 : formal_arg->sym->attr.value = curr_arg->value;
4873 : 78127 : formal_arg->sym->attr.intent = curr_arg->intent;
4874 : 78127 : formal_arg->sym->attr.flavor = FL_VARIABLE;
4875 : 78127 : formal_arg->sym->attr.dummy = 1;
4876 : :
4877 : : /* Do not treat an actual deferred-length character argument wrongly
4878 : : as template for the formal argument. */
4879 : 78127 : if (formal_arg->sym->ts.type == BT_CHARACTER
4880 : 1491 : && !(formal_arg->sym->attr.allocatable
4881 : : || formal_arg->sym->attr.pointer))
4882 : 1491 : formal_arg->sym->ts.deferred = false;
4883 : :
4884 : 78127 : if (formal_arg->sym->ts.type == BT_CHARACTER)
4885 : 1491 : formal_arg->sym->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
4886 : :
4887 : : /* If this isn't the first arg, set up the next ptr. For the
4888 : : last arg built, the formal_arg->next will never get set to
4889 : : anything other than NULL. */
4890 : 78127 : if (formal_prev != NULL)
4891 : 46158 : formal_prev->next = formal_arg;
4892 : : else
4893 : : formal_arg->next = NULL;
4894 : :
4895 : 78127 : formal_prev = formal_arg;
4896 : :
4897 : : /* Add arg to list of formal args. */
4898 : 78127 : add_formal_arg (&head, &tail, formal_arg, formal_arg->sym);
4899 : :
4900 : : /* Validate changes. */
4901 : 78127 : gfc_commit_symbol (formal_arg->sym);
4902 : 78127 : if (actual)
4903 : 10597 : act_arg = act_arg->next;
4904 : : }
4905 : :
4906 : : /* Add the interface to the symbol. */
4907 : 32639 : add_proc_interface (dest, IFSRC_DECL, head);
4908 : :
4909 : : /* Store the formal namespace information. */
4910 : 32639 : if (dest->formal != NULL)
4911 : : /* The current ns should be that for the dest proc. */
4912 : 31969 : dest->formal_ns = gfc_current_ns;
4913 : : else
4914 : 670 : gfc_free_namespace (gfc_current_ns);
4915 : : /* Restore the current namespace to what it was on entry. */
4916 : 32639 : gfc_current_ns = parent_ns;
4917 : 32639 : }
4918 : :
4919 : :
4920 : : static int
4921 : 149452 : std_for_isocbinding_symbol (int id)
4922 : : {
4923 : 149452 : switch (id)
4924 : : {
4925 : : #define NAMED_INTCST(a,b,c,d) \
4926 : : case a:\
4927 : : return d;
4928 : : #include "iso-c-binding.def"
4929 : : #undef NAMED_INTCST
4930 : :
4931 : : #define NAMED_UINTCST(a,b,c,d) \
4932 : : case a:\
4933 : : return d;
4934 : : #include "iso-c-binding.def"
4935 : : #undef NAMED_UINTCST
4936 : :
4937 : : #define NAMED_FUNCTION(a,b,c,d) \
4938 : : case a:\
4939 : : return d;
4940 : : #define NAMED_SUBROUTINE(a,b,c,d) \
4941 : : case a:\
4942 : : return d;
4943 : : #include "iso-c-binding.def"
4944 : : #undef NAMED_FUNCTION
4945 : : #undef NAMED_SUBROUTINE
4946 : :
4947 : : default:
4948 : : return GFC_STD_F2003;
4949 : : }
4950 : : }
4951 : :
4952 : : /* Generate the given set of C interoperable kind objects, or all
4953 : : interoperable kinds. This function will only be given kind objects
4954 : : for valid iso_c_binding defined types because this is verified when
4955 : : the 'use' statement is parsed. If the user gives an 'only' clause,
4956 : : the specific kinds are looked up; if they don't exist, an error is
4957 : : reported. If the user does not give an 'only' clause, all
4958 : : iso_c_binding symbols are generated. If a list of specific kinds
4959 : : is given, it must have a NULL in the first empty spot to mark the
4960 : : end of the list. For C_null_(fun)ptr, dt_symtree has to be set and
4961 : : point to the symtree for c_(fun)ptr. */
4962 : :
4963 : : gfc_symtree *
4964 : 149452 : generate_isocbinding_symbol (const char *mod_name, iso_c_binding_symbol s,
4965 : : const char *local_name, gfc_symtree *dt_symtree,
4966 : : bool hidden)
4967 : : {
4968 : 8112 : const char *const name = (local_name && local_name[0])
4969 : 149452 : ? local_name : c_interop_kinds_table[s].name;
4970 : 149452 : gfc_symtree *tmp_symtree;
4971 : 149452 : gfc_symbol *tmp_sym = NULL;
4972 : 149452 : int index;
4973 : :
4974 : 149452 : if (gfc_notification_std (std_for_isocbinding_symbol (s)) == ERROR)
4975 : : return NULL;
4976 : :
4977 : 149452 : tmp_symtree = gfc_find_symtree (gfc_current_ns->sym_root, name);
4978 : 149452 : if (hidden
4979 : 48 : && (!tmp_symtree || !tmp_symtree->n.sym
4980 : 14 : || tmp_symtree->n.sym->from_intmod != INTMOD_ISO_C_BINDING
4981 : 14 : || tmp_symtree->n.sym->intmod_sym_id != s))
4982 : 34 : tmp_symtree = NULL;
4983 : :
4984 : : /* Already exists in this scope so don't re-add it. */
4985 : 318 : if (tmp_symtree != NULL && (tmp_sym = tmp_symtree->n.sym) != NULL
4986 : 318 : && (!tmp_sym->attr.generic
4987 : 52 : || (tmp_sym = gfc_find_dt_in_generic (tmp_sym)) != NULL)
4988 : 149770 : && tmp_sym->from_intmod == INTMOD_ISO_C_BINDING)
4989 : : {
4990 : 318 : if (tmp_sym->attr.flavor == FL_DERIVED
4991 : 318 : && !get_iso_c_binding_dt (tmp_sym->intmod_sym_id))
4992 : : {
4993 : 52 : if (gfc_derived_types)
4994 : : {
4995 : 25 : tmp_sym->dt_next = gfc_derived_types->dt_next;
4996 : 25 : gfc_derived_types->dt_next = tmp_sym;
4997 : : }
4998 : : else
4999 : : {
5000 : 27 : tmp_sym->dt_next = tmp_sym;
5001 : : }
5002 : 52 : gfc_derived_types = tmp_sym;
5003 : : }
5004 : :
5005 : 318 : return tmp_symtree;
5006 : : }
5007 : :
5008 : : /* Create the sym tree in the current ns. */
5009 : 149134 : if (hidden)
5010 : : {
5011 : 34 : tmp_symtree = gfc_get_unique_symtree (gfc_current_ns);
5012 : 34 : tmp_sym = gfc_new_symbol (name, gfc_current_ns);
5013 : :
5014 : : /* Add to the list of tentative symbols. */
5015 : 34 : latest_undo_chgset->syms.safe_push (tmp_sym);
5016 : 34 : tmp_sym->old_symbol = NULL;
5017 : 34 : tmp_sym->mark = 1;
5018 : 34 : tmp_sym->gfc_new = 1;
5019 : :
5020 : 34 : tmp_symtree->n.sym = tmp_sym;
5021 : 34 : tmp_sym->refs++;
5022 : : }
5023 : : else
5024 : : {
5025 : 149100 : gfc_get_sym_tree (name, gfc_current_ns, &tmp_symtree, false);
5026 : 149100 : gcc_assert (tmp_symtree);
5027 : 149100 : tmp_sym = tmp_symtree->n.sym;
5028 : : }
5029 : :
5030 : : /* Say what module this symbol belongs to. */
5031 : 149134 : tmp_sym->module = gfc_get_string ("%s", mod_name);
5032 : 149134 : tmp_sym->from_intmod = INTMOD_ISO_C_BINDING;
5033 : 149134 : tmp_sym->intmod_sym_id = s;
5034 : 149134 : tmp_sym->attr.is_iso_c = 1;
5035 : 149134 : tmp_sym->attr.use_assoc = 1;
5036 : :
5037 : 149134 : gcc_assert (dt_symtree == NULL || s == ISOCBINDING_NULL_FUNPTR
5038 : : || s == ISOCBINDING_NULL_PTR);
5039 : :
5040 : 146011 : switch (s)
5041 : : {
5042 : :
5043 : : #define NAMED_INTCST(a,b,c,d) case a :
5044 : : #define NAMED_UINTCST(a,b,c,d) case a :
5045 : : #define NAMED_REALCST(a,b,c,d) case a :
5046 : : #define NAMED_CMPXCST(a,b,c,d) case a :
5047 : : #define NAMED_LOGCST(a,b,c) case a :
5048 : : #define NAMED_CHARKNDCST(a,b,c) case a :
5049 : : #include "iso-c-binding.def"
5050 : :
5051 : 220438 : tmp_sym->value = gfc_get_int_expr (gfc_default_integer_kind, NULL,
5052 : 110219 : c_interop_kinds_table[s].value);
5053 : :
5054 : : /* Initialize an integer constant expression node. */
5055 : 110219 : tmp_sym->attr.flavor = FL_PARAMETER;
5056 : 110219 : tmp_sym->ts.type = BT_INTEGER;
5057 : 110219 : tmp_sym->ts.kind = gfc_default_integer_kind;
5058 : :
5059 : : /* Mark this type as a C interoperable one. */
5060 : 110219 : tmp_sym->ts.is_c_interop = 1;
5061 : 110219 : tmp_sym->ts.is_iso_c = 1;
5062 : 110219 : tmp_sym->value->ts.is_c_interop = 1;
5063 : 110219 : tmp_sym->value->ts.is_iso_c = 1;
5064 : 110219 : tmp_sym->attr.is_c_interop = 1;
5065 : :
5066 : : /* Tell what f90 type this c interop kind is valid. */
5067 : 110219 : tmp_sym->ts.f90_type = c_interop_kinds_table[s].f90_type;
5068 : :
5069 : 110219 : break;
5070 : :
5071 : :
5072 : : #define NAMED_CHARCST(a,b,c) case a :
5073 : : #include "iso-c-binding.def"
5074 : :
5075 : : /* Initialize an integer constant expression node for the
5076 : : length of the character. */
5077 : 24568 : tmp_sym->value = gfc_get_character_expr (gfc_default_character_kind,
5078 : : &gfc_current_locus, NULL, 1);
5079 : 24568 : tmp_sym->value->ts.is_c_interop = 1;
5080 : 24568 : tmp_sym->value->ts.is_iso_c = 1;
5081 : 24568 : tmp_sym->value->value.character.length = 1;
5082 : 24568 : tmp_sym->value->value.character.string[0]
5083 : 24568 : = (gfc_char_t) c_interop_kinds_table[s].value;
5084 : 24568 : tmp_sym->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
5085 : 24568 : tmp_sym->ts.u.cl->length = gfc_get_int_expr (gfc_charlen_int_kind,
5086 : : NULL, 1);
5087 : :
5088 : : /* May not need this in both attr and ts, but do need in
5089 : : attr for writing module file. */
5090 : 24568 : tmp_sym->attr.is_c_interop = 1;
5091 : :
5092 : 24568 : tmp_sym->attr.flavor = FL_PARAMETER;
5093 : 24568 : tmp_sym->ts.type = BT_CHARACTER;
5094 : :
5095 : : /* Need to set it to the C_CHAR kind. */
5096 : 24568 : tmp_sym->ts.kind = gfc_default_character_kind;
5097 : :
5098 : : /* Mark this type as a C interoperable one. */
5099 : 24568 : tmp_sym->ts.is_c_interop = 1;
5100 : 24568 : tmp_sym->ts.is_iso_c = 1;
5101 : :
5102 : : /* Tell what f90 type this c interop kind is valid. */
5103 : 24568 : tmp_sym->ts.f90_type = BT_CHARACTER;
5104 : :
5105 : 24568 : break;
5106 : :
5107 : 8153 : case ISOCBINDING_PTR:
5108 : 8153 : case ISOCBINDING_FUNPTR:
5109 : 8153 : {
5110 : 8153 : gfc_symbol *dt_sym;
5111 : 8153 : gfc_component *tmp_comp = NULL;
5112 : :
5113 : : /* Generate real derived type. */
5114 : 8153 : if (hidden)
5115 : : dt_sym = tmp_sym;
5116 : : else
5117 : : {
5118 : 8119 : const char *hidden_name;
5119 : 8119 : gfc_interface *intr, *head;
5120 : :
5121 : 8119 : hidden_name = gfc_dt_upper_string (tmp_sym->name);
5122 : 8119 : tmp_symtree = gfc_find_symtree (gfc_current_ns->sym_root,
5123 : : hidden_name);
5124 : 8119 : gcc_assert (tmp_symtree == NULL);
5125 : 8119 : gfc_get_sym_tree (hidden_name, gfc_current_ns, &tmp_symtree, false);
5126 : 8119 : dt_sym = tmp_symtree->n.sym;
5127 : 11278 : dt_sym->name = gfc_get_string (s == ISOCBINDING_PTR
5128 : : ? "c_ptr" : "c_funptr");
5129 : :
5130 : : /* Generate an artificial generic function. */
5131 : 8119 : head = tmp_sym->generic;
5132 : 8119 : intr = gfc_get_interface ();
5133 : 8119 : intr->sym = dt_sym;
5134 : 8119 : intr->where = gfc_current_locus;
5135 : 8119 : intr->next = head;
5136 : 8119 : tmp_sym->generic = intr;
5137 : :
5138 : 8119 : if (!tmp_sym->attr.generic
5139 : 8119 : && !gfc_add_generic (&tmp_sym->attr, tmp_sym->name, NULL))
5140 : 0 : return NULL;
5141 : :
5142 : 8119 : if (!tmp_sym->attr.function
5143 : 8119 : && !gfc_add_function (&tmp_sym->attr, tmp_sym->name, NULL))
5144 : : return NULL;
5145 : : }
5146 : :
5147 : : /* Say what module this symbol belongs to. */
5148 : 8153 : dt_sym->module = gfc_get_string ("%s", mod_name);
5149 : 8153 : dt_sym->from_intmod = INTMOD_ISO_C_BINDING;
5150 : 8153 : dt_sym->intmod_sym_id = s;
5151 : 8153 : dt_sym->attr.use_assoc = 1;
5152 : :
5153 : : /* Initialize an integer constant expression node. */
5154 : 8153 : dt_sym->attr.flavor = FL_DERIVED;
5155 : 8153 : dt_sym->ts.is_c_interop = 1;
5156 : 8153 : dt_sym->attr.is_c_interop = 1;
5157 : 8153 : dt_sym->attr.private_comp = 1;
5158 : 8153 : dt_sym->component_access = ACCESS_PRIVATE;
5159 : 8153 : dt_sym->ts.is_iso_c = 1;
5160 : 8153 : dt_sym->ts.type = BT_DERIVED;
5161 : 8153 : dt_sym->ts.f90_type = BT_VOID;
5162 : :
5163 : : /* A derived type must have the bind attribute to be
5164 : : interoperable (J3/04-007, Section 15.2.3), even though
5165 : : the binding label is not used. */
5166 : 8153 : dt_sym->attr.is_bind_c = 1;
5167 : :
5168 : 8153 : dt_sym->attr.referenced = 1;
5169 : 8153 : dt_sym->ts.u.derived = dt_sym;
5170 : :
5171 : : /* Add the symbol created for the derived type to the current ns. */
5172 : 8153 : if (gfc_derived_types)
5173 : : {
5174 : 6247 : dt_sym->dt_next = gfc_derived_types->dt_next;
5175 : 6247 : gfc_derived_types->dt_next = dt_sym;
5176 : : }
5177 : : else
5178 : : {
5179 : 1906 : dt_sym->dt_next = dt_sym;
5180 : : }
5181 : 8153 : gfc_derived_types = dt_sym;
5182 : :
5183 : 8153 : gfc_add_component (dt_sym, "c_address", &tmp_comp);
5184 : 8153 : if (tmp_comp == NULL)
5185 : 0 : gcc_unreachable ();
5186 : :
5187 : 8153 : tmp_comp->ts.type = BT_INTEGER;
5188 : :
5189 : : /* Set this because the module will need to read/write this field. */
5190 : 8153 : tmp_comp->ts.f90_type = BT_INTEGER;
5191 : :
5192 : : /* The kinds for c_ptr and c_funptr are the same. */
5193 : 8153 : index = get_c_kind ("c_ptr", c_interop_kinds_table);
5194 : 8153 : tmp_comp->ts.kind = c_interop_kinds_table[index].value;
5195 : 8153 : tmp_comp->attr.access = ACCESS_PRIVATE;
5196 : :
5197 : : /* Mark the component as C interoperable. */
5198 : 8153 : tmp_comp->ts.is_c_interop = 1;
5199 : : }
5200 : :
5201 : 8153 : break;
5202 : :
5203 : 6194 : case ISOCBINDING_NULL_PTR:
5204 : 6194 : case ISOCBINDING_NULL_FUNPTR:
5205 : 6194 : gen_special_c_interop_ptr (tmp_sym, dt_symtree);
5206 : 6194 : break;
5207 : :
5208 : 0 : default:
5209 : 0 : gcc_unreachable ();
5210 : : }
5211 : 149134 : gfc_commit_symbol (tmp_sym);
5212 : 149134 : return tmp_symtree;
5213 : : }
5214 : :
5215 : :
5216 : : /* Check that a symbol is already typed. If strict is not set, an untyped
5217 : : symbol is acceptable for non-standard-conforming mode. */
5218 : :
5219 : : bool
5220 : 13704 : gfc_check_symbol_typed (gfc_symbol* sym, gfc_namespace* ns,
5221 : : bool strict, locus where)
5222 : : {
5223 : 13704 : gcc_assert (sym);
5224 : :
5225 : 13704 : if (gfc_matching_prefix)
5226 : : return true;
5227 : :
5228 : : /* Check for the type and try to give it an implicit one. */
5229 : 13665 : if (sym->ts.type == BT_UNKNOWN
5230 : 13665 : && !gfc_set_default_type (sym, 0, ns))
5231 : : {
5232 : 451 : if (strict)
5233 : : {
5234 : 11 : gfc_error ("Symbol %qs is used before it is typed at %L",
5235 : : sym->name, &where);
5236 : 11 : return false;
5237 : : }
5238 : :
5239 : 440 : if (!gfc_notify_std (GFC_STD_GNU, "Symbol %qs is used before"
5240 : : " it is typed at %L", sym->name, &where))
5241 : : return false;
5242 : : }
5243 : :
5244 : : /* Everything is ok. */
5245 : : return true;
5246 : : }
5247 : :
5248 : :
5249 : : /* Construct a typebound-procedure structure. Those are stored in a tentative
5250 : : list and marked `error' until symbols are committed. */
5251 : :
5252 : : gfc_typebound_proc*
5253 : 55054 : gfc_get_typebound_proc (gfc_typebound_proc *tb0)
5254 : : {
5255 : 55054 : gfc_typebound_proc *result;
5256 : :
5257 : 55054 : result = XCNEW (gfc_typebound_proc);
5258 : 55054 : if (tb0)
5259 : 3027 : *result = *tb0;
5260 : 55054 : result->error = 1;
5261 : :
5262 : 55054 : latest_undo_chgset->tbps.safe_push (result);
5263 : :
5264 : 55054 : return result;
5265 : : }
5266 : :
5267 : :
5268 : : /* Get the super-type of a given derived type. */
5269 : :
5270 : : gfc_symbol*
5271 : 762130 : gfc_get_derived_super_type (gfc_symbol* derived)
5272 : : {
5273 : 762130 : gcc_assert (derived);
5274 : :
5275 : 762130 : if (derived->attr.generic)
5276 : 2 : derived = gfc_find_dt_in_generic (derived);
5277 : :
5278 : 762130 : if (!derived->attr.extension)
5279 : : return NULL;
5280 : :
5281 : 117970 : gcc_assert (derived->components);
5282 : 117970 : gcc_assert (derived->components->ts.type == BT_DERIVED);
5283 : 117970 : gcc_assert (derived->components->ts.u.derived);
5284 : :
5285 : 117970 : if (derived->components->ts.u.derived->attr.generic)
5286 : 0 : return gfc_find_dt_in_generic (derived->components->ts.u.derived);
5287 : :
5288 : : return derived->components->ts.u.derived;
5289 : : }
5290 : :
5291 : :
5292 : : /* Check if a derived type t2 is an extension of (or equal to) a type t1. */
5293 : :
5294 : : bool
5295 : 28142 : gfc_type_is_extension_of (gfc_symbol *t1, gfc_symbol *t2)
5296 : : {
5297 : 32132 : while (!gfc_compare_derived_types (t1, t2) && t2->attr.extension)
5298 : 3990 : t2 = gfc_get_derived_super_type (t2);
5299 : 28142 : return gfc_compare_derived_types (t1, t2);
5300 : : }
5301 : :
5302 : : /* Check if parameterized derived type t2 is an instance of pdt template t1
5303 : :
5304 : : gfc_symbol *t1 -> pdt template to verify t2 against.
5305 : : gfc_symbol *t2 -> pdt instance to be verified.
5306 : :
5307 : : In decl.cc, gfc_get_pdt_instance, a pdt instance is given a 3 character
5308 : : prefix "Pdt", followed by an underscore list of the kind parameters,
5309 : : up to a maximum of 8 kind parameters. To verify if a PDT Type corresponds
5310 : : to the template, this functions extracts t2's derive_type name,
5311 : : and compares it to the derive_type name of t1 for compatibility.
5312 : :
5313 : : For example:
5314 : :
5315 : : t2->name = Pdtf_2_2; extract out the 'f' and compare with t1->name. */
5316 : :
5317 : : bool
5318 : 30 : gfc_pdt_is_instance_of (gfc_symbol *t1, gfc_symbol *t2)
5319 : : {
5320 : 30 : if ( !t1->attr.pdt_template || !t2->attr.pdt_type )
5321 : : return false;
5322 : :
5323 : : /* Limit comparison to length of t1->name to ignore new kind params. */
5324 : 30 : if ( !(strncmp (&(t2->name[3]), t1->name, strlen (t1->name)) == 0) )
5325 : 0 : return false;
5326 : :
5327 : : return true;
5328 : : }
5329 : :
5330 : : /* Check if two typespecs are type compatible (F03:5.1.1.2):
5331 : : If ts1 is nonpolymorphic, ts2 must be the same type.
5332 : : If ts1 is polymorphic (CLASS), ts2 must be an extension of ts1. */
5333 : :
5334 : : bool
5335 : 265440 : gfc_type_compatible (gfc_typespec *ts1, gfc_typespec *ts2)
5336 : : {
5337 : 265440 : bool is_class1 = (ts1->type == BT_CLASS);
5338 : 265440 : bool is_class2 = (ts2->type == BT_CLASS);
5339 : 265440 : bool is_derived1 = (ts1->type == BT_DERIVED);
5340 : 265440 : bool is_derived2 = (ts2->type == BT_DERIVED);
5341 : 265440 : bool is_union1 = (ts1->type == BT_UNION);
5342 : 265440 : bool is_union2 = (ts2->type == BT_UNION);
5343 : :
5344 : : /* A boz-literal-constant has no type. */
5345 : 265440 : if (ts1->type == BT_BOZ || ts2->type == BT_BOZ)
5346 : : return false;
5347 : :
5348 : 265438 : if (is_class1
5349 : 26772 : && ts1->u.derived->components
5350 : 26612 : && ((ts1->u.derived->attr.is_class
5351 : 26605 : && ts1->u.derived->components->ts.u.derived->attr
5352 : 26605 : .unlimited_polymorphic)
5353 : 25821 : || ts1->u.derived->attr.unlimited_polymorphic))
5354 : : return 1;
5355 : :
5356 : 264647 : if (!is_derived1 && !is_derived2 && !is_class1 && !is_class2
5357 : 2156 : && !is_union1 && !is_union2)
5358 : 2156 : return (ts1->type == ts2->type);
5359 : :
5360 : 262491 : if ((is_derived1 && is_derived2) || (is_union1 && is_union2))
5361 : 235515 : return gfc_compare_derived_types (ts1->u.derived, ts2->u.derived);
5362 : :
5363 : 26976 : if (is_derived1 && is_class2)
5364 : 991 : return gfc_compare_derived_types (ts1->u.derived,
5365 : 991 : ts2->u.derived->attr.is_class ?
5366 : 988 : ts2->u.derived->components->ts.u.derived
5367 : 991 : : ts2->u.derived);
5368 : 25985 : if (is_class1 && is_derived2)
5369 : 17737 : return gfc_type_is_extension_of (ts1->u.derived->attr.is_class ?
5370 : 8868 : ts1->u.derived->components->ts.u.derived
5371 : : : ts1->u.derived,
5372 : 8869 : ts2->u.derived);
5373 : 17116 : else if (is_class1 && is_class2)
5374 : 34058 : return gfc_type_is_extension_of (ts1->u.derived->attr.is_class ?
5375 : 16946 : ts1->u.derived->components->ts.u.derived
5376 : : : ts1->u.derived,
5377 : 17112 : ts2->u.derived->attr.is_class ?
5378 : 16947 : ts2->u.derived->components->ts.u.derived
5379 : 17112 : : ts2->u.derived);
5380 : : else
5381 : : return 0;
5382 : : }
5383 : :
5384 : :
5385 : : /* Find the parent-namespace of the current function. If we're inside
5386 : : BLOCK constructs, it may not be the current one. */
5387 : :
5388 : : gfc_namespace*
5389 : 61025 : gfc_find_proc_namespace (gfc_namespace* ns)
5390 : : {
5391 : 61598 : while (ns->construct_entities)
5392 : : {
5393 : 573 : ns = ns->parent;
5394 : 573 : gcc_assert (ns);
5395 : : }
5396 : :
5397 : 61025 : return ns;
5398 : : }
5399 : :
5400 : :
5401 : : /* Check if an associate-variable should be translated as an `implicit' pointer
5402 : : internally (if it is associated to a variable and not an array with
5403 : : descriptor). */
5404 : :
5405 : : bool
5406 : 454611 : gfc_is_associate_pointer (gfc_symbol* sym)
5407 : : {
5408 : 454611 : if (!sym->assoc)
5409 : : return false;
5410 : :
5411 : 11182 : if (sym->ts.type == BT_CLASS)
5412 : : return true;
5413 : :
5414 : 6084 : if (sym->ts.type == BT_CHARACTER
5415 : 1140 : && sym->ts.deferred
5416 : 56 : && sym->assoc->target
5417 : 56 : && sym->assoc->target->expr_type == EXPR_FUNCTION)
5418 : : return true;
5419 : :
5420 : 6078 : if (!sym->assoc->variable)
5421 : : return false;
5422 : :
5423 : 5468 : if ((sym->attr.dimension || sym->attr.codimension)
5424 : 0 : && sym->as->type != AS_EXPLICIT)
5425 : 0 : return false;
5426 : :
5427 : : return true;
5428 : : }
5429 : :
5430 : :
5431 : : gfc_symbol *
5432 : 31266 : gfc_find_dt_in_generic (gfc_symbol *sym)
5433 : : {
5434 : 31266 : gfc_interface *intr = NULL;
5435 : :
5436 : 31266 : if (!sym || gfc_fl_struct (sym->attr.flavor))
5437 : : return sym;
5438 : :
5439 : 31266 : if (sym->attr.generic)
5440 : 32857 : for (intr = sym->generic; intr; intr = intr->next)
5441 : 20847 : if (gfc_fl_struct (intr->sym->attr.flavor))
5442 : : break;
5443 : 31264 : return intr ? intr->sym : NULL;
5444 : : }
5445 : :
5446 : :
5447 : : /* Get the dummy arguments from a procedure symbol. If it has been declared
5448 : : via a PROCEDURE statement with a named interface, ts.interface will be set
5449 : : and the arguments need to be taken from there. */
5450 : :
5451 : : gfc_formal_arglist *
5452 : 3535307 : gfc_sym_get_dummy_args (gfc_symbol *sym)
5453 : : {
5454 : 3535307 : gfc_formal_arglist *dummies;
5455 : :
5456 : 3535307 : if (sym == NULL)
5457 : : return NULL;
5458 : :
5459 : 3535306 : dummies = sym->formal;
5460 : 3535306 : if (dummies == NULL && sym->ts.interface != NULL)
5461 : 6447 : dummies = sym->ts.interface->formal;
5462 : :
5463 : : return dummies;
5464 : : }
5465 : :
5466 : :
5467 : : /* Given a procedure, returns the associated namespace.
5468 : : The resulting NS should match the condition NS->PROC_NAME == SYM. */
5469 : :
5470 : : gfc_namespace *
5471 : 697445 : gfc_get_procedure_ns (gfc_symbol *sym)
5472 : : {
5473 : 697445 : if (sym->formal_ns
5474 : 525643 : && sym->formal_ns->proc_name == sym)
5475 : : return sym->formal_ns;
5476 : :
5477 : : /* The above should have worked in most cases. If it hasn't, try some other
5478 : : heuristics, eventually returning SYM->NS. */
5479 : 172222 : if (gfc_current_ns->proc_name == sym)
5480 : : return gfc_current_ns;
5481 : :
5482 : : /* For contained procedures, the symbol's NS field is the
5483 : : hosting namespace, not the procedure namespace. */
5484 : 149035 : if (sym->attr.flavor == FL_PROCEDURE && sym->attr.contained)
5485 : 169864 : for (gfc_namespace *ns = sym->ns->contained; ns; ns = ns->sibling)
5486 : 169512 : if (ns->proc_name == sym)
5487 : : return ns;
5488 : :
5489 : 109670 : if (sym->formal)
5490 : 3917 : for (gfc_formal_arglist *f = sym->formal; f != nullptr; f = f->next)
5491 : 2274 : if (f->sym)
5492 : : {
5493 : 2227 : gfc_namespace *ns = f->sym->ns;
5494 : 2227 : if (ns && ns->proc_name == sym)
5495 : : return ns;
5496 : : }
5497 : :
5498 : 109670 : return sym->ns;
5499 : : }
5500 : :
5501 : :
5502 : : /* Given a symbol, returns the namespace in which the symbol is specified.
5503 : : In most cases, it is the namespace hosting the symbol. This is the case
5504 : : for variables. For functions, however, it is the function namespace
5505 : : itself. This specification namespace is used to check conformance of
5506 : : array spec bound expressions. */
5507 : :
5508 : : gfc_namespace *
5509 : 1594336 : gfc_get_spec_ns (gfc_symbol *sym)
5510 : : {
5511 : 1594336 : if (sym->attr.flavor == FL_PROCEDURE
5512 : 442065 : && sym->attr.function)
5513 : : {
5514 : 298372 : if (sym->result == sym)
5515 : 217244 : return gfc_get_procedure_ns (sym);
5516 : : /* Generic and intrinsic functions can have a null result. */
5517 : 81128 : else if (sym->result != nullptr)
5518 : 36210 : return sym->result->ns;
5519 : : }
5520 : :
5521 : 1340882 : return sym->ns;
5522 : : }
|