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 : 21675 : gfc_set_implicit_none (bool type, bool external, locus *loc)
126 : : {
127 : 21675 : int i;
128 : :
129 : 21675 : if (external)
130 : 954 : gfc_current_ns->has_implicit_none_export = 1;
131 : :
132 : 21675 : if (type)
133 : : {
134 : 21664 : gfc_current_ns->seen_implicit_none = 1;
135 : 584877 : for (i = 0; i < GFC_LETTERS; i++)
136 : : {
137 : 563215 : 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 : 563213 : gfc_clear_ts (&gfc_current_ns->default_type[i]);
144 : 563213 : gfc_current_ns->set_flag[i] = 1;
145 : : }
146 : : }
147 : : }
148 : :
149 : :
150 : : /* Reset the implicit range flags. */
151 : :
152 : : void
153 : 22319 : gfc_clear_new_implicit (void)
154 : : {
155 : 22319 : int i;
156 : :
157 : 602613 : for (i = 0; i < GFC_LETTERS; i++)
158 : 580294 : new_flag[i] = 0;
159 : 22319 : }
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 : 2618956 : gfc_get_default_type (const char *name, gfc_namespace *ns)
226 : : {
227 : 2618956 : char letter;
228 : :
229 : 2618956 : letter = name[0];
230 : :
231 : 2618956 : 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 : 2618956 : if (letter < 'a' || letter > 'z')
237 : 0 : gfc_internal_error ("gfc_get_default_type(): Bad symbol %qs", name);
238 : :
239 : 2618956 : if (ns == NULL)
240 : 238799 : ns = gfc_current_ns;
241 : :
242 : 2618956 : 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 : 100827 : gfc_set_default_type (gfc_symbol *sym, int error_flag, gfc_namespace *ns)
290 : : {
291 : 100827 : gfc_typespec *ts;
292 : 100827 : gfc_expr *e;
293 : :
294 : : /* Check to see if a function selector of unknown type can be resolved. */
295 : 100827 : if (sym->assoc
296 : 14 : && (e = sym->assoc->target)
297 : 100841 : && 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 : 100827 : if (sym->ts.type != BT_UNKNOWN)
307 : 0 : gfc_internal_error ("gfc_set_default_type(): symbol already has a type");
308 : :
309 : 100827 : ts = gfc_get_default_type (sym->name, ns);
310 : :
311 : 100827 : if (ts->type == BT_UNKNOWN)
312 : : {
313 : 48792 : 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 : 48792 : return false;
327 : : }
328 : :
329 : 52035 : sym->ts = *ts;
330 : 52035 : sym->attr.implicit_type = 1;
331 : :
332 : 52035 : if (ts->type == BT_CHARACTER && ts->u.cl)
333 : 457 : sym->ts.u.cl = gfc_new_charlen (sym->ns, ts->u.cl);
334 : 51578 : else if (ts->type == BT_CLASS
335 : 51578 : && !gfc_build_class_symbol (&sym->ts, &sym->attr, &sym->as))
336 : : return false;
337 : :
338 : 52035 : 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 : 52035 : if (sym->attr.dummy != 0)
348 : : {
349 : 4290 : if (sym->ns->proc_name != NULL
350 : 4289 : && (sym->ns->proc_name->attr.subroutine != 0
351 : 4289 : || sym->ns->proc_name->attr.function != 0)
352 : 4289 : && 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 : 11936 : gfc_check_function_type (gfc_namespace *ns)
377 : : {
378 : 11936 : gfc_symbol *proc = ns->proc_name;
379 : :
380 : 11936 : if (!proc->attr.contained || proc->result->attr.implicit_type)
381 : : return;
382 : :
383 : 9210 : 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 : 15693 : conflict_std (int standard, const char *a1, const char *a2, const char *name,
414 : : locus *where)
415 : : {
416 : 15693 : if (name == NULL)
417 : : {
418 : 9345 : return gfc_notify_std (standard, "%s attribute conflicts "
419 : : "with %s attribute at %L", a1, a2,
420 : 9345 : where);
421 : : }
422 : : else
423 : : {
424 : 6348 : return gfc_notify_std (standard, "%s attribute conflicts "
425 : : "with %s attribute in %qs at %L",
426 : 6348 : 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 : 6224577 : gfc_check_conflict (symbol_attribute *attr, const char *name, locus *where)
441 : : {
442 : 6224577 : 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 : 6224577 : static const char *threadprivate = "THREADPRIVATE";
461 : 6224577 : static const char *omp_declare_target = "OMP DECLARE TARGET";
462 : 6224577 : static const char *omp_declare_target_link = "OMP DECLARE TARGET LINK";
463 : 6224577 : static const char *oacc_declare_copyin = "OACC DECLARE COPYIN";
464 : 6224577 : static const char *oacc_declare_create = "OACC DECLARE CREATE";
465 : 6224577 : static const char *oacc_declare_deviceptr = "OACC DECLARE DEVICEPTR";
466 : 6224577 : static const char *oacc_declare_device_resident =
467 : : "OACC DECLARE DEVICE_RESIDENT";
468 : :
469 : 6224577 : const char *a1, *a2;
470 : :
471 : 6224577 : if (attr->artificial)
472 : : return true;
473 : :
474 : 6224570 : if (where == NULL)
475 : 4068745 : where = &gfc_current_locus;
476 : :
477 : 6224570 : if (attr->pointer && attr->intent != INTENT_UNKNOWN)
478 : 3725 : conf_std (pointer, intent, GFC_STD_F2003);
479 : :
480 : 6224569 : conf_std (in_namelist, allocatable, GFC_STD_F2003);
481 : 6224569 : conf_std (in_namelist, pointer, GFC_STD_F2003);
482 : :
483 : : /* Check for attributes not allowed in a BLOCK DATA. */
484 : 6224568 : 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 : 6224567 : if (attr->save == SAVE_EXPLICIT)
513 : : {
514 : 6542 : conf (dummy, save);
515 : 6540 : conf (in_common, save);
516 : 6532 : conf (result, save);
517 : 6529 : conf (automatic, save);
518 : :
519 : 6527 : 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 : 6224548 : if (name && attr->dummy
547 : 237977 : && (attr->function || attr->subroutine)
548 : 1620 : && gfc_current_state () == COMP_CONTAINS
549 : 10 : && !(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 : 6224548 : conf (dummy, entry);
554 : 6224546 : conf (dummy, intrinsic);
555 : 6224545 : conf (dummy, threadprivate);
556 : 6224545 : conf (dummy, omp_declare_target);
557 : 6224545 : conf (dummy, omp_declare_target_link);
558 : 6224545 : conf (pointer, target);
559 : 6224545 : conf (pointer, intrinsic);
560 : 6224545 : conf (pointer, elemental);
561 : 6224543 : conf (pointer, codimension);
562 : 6224512 : conf (allocatable, elemental);
563 : :
564 : 6224511 : conf (in_common, automatic);
565 : 6224505 : conf (result, automatic);
566 : 6224503 : conf (use_assoc, automatic);
567 : 6224503 : conf (dummy, automatic);
568 : :
569 : 6224501 : conf (target, external);
570 : 6224501 : conf (target, intrinsic);
571 : :
572 : 6224501 : if (!attr->if_source)
573 : 6135224 : conf (external, dimension); /* See Fortran 95's R504. */
574 : :
575 : 6224501 : conf (external, intrinsic);
576 : 6224499 : conf (entry, intrinsic);
577 : 6224498 : conf (abstract, intrinsic);
578 : :
579 : 6224495 : if ((attr->if_source == IFSRC_DECL && !attr->procedure) || attr->contained)
580 : 75566 : conf (external, subroutine);
581 : :
582 : 6224493 : if (attr->proc_pointer && !gfc_notify_std (GFC_STD_F2003,
583 : : "Procedure pointer at %C"))
584 : : return false;
585 : :
586 : 6224487 : conf (allocatable, pointer);
587 : 6224487 : conf_std (allocatable, dummy, GFC_STD_F2003);
588 : 6224487 : conf_std (allocatable, function, GFC_STD_F2003);
589 : 6224487 : conf_std (allocatable, result, GFC_STD_F2003);
590 : 6224487 : conf_std (elemental, recursive, GFC_STD_F2018);
591 : :
592 : 6224487 : conf (in_common, dummy);
593 : 6224487 : conf (in_common, allocatable);
594 : 6224487 : conf (in_common, codimension);
595 : 6224487 : conf (in_common, result);
596 : :
597 : 6224487 : conf (in_equivalence, use_assoc);
598 : 6224486 : conf (in_equivalence, codimension);
599 : 6224486 : conf (in_equivalence, dummy);
600 : 6224485 : conf (in_equivalence, target);
601 : 6224484 : conf (in_equivalence, pointer);
602 : 6224483 : conf (in_equivalence, function);
603 : 6224483 : conf (in_equivalence, result);
604 : 6224483 : conf (in_equivalence, entry);
605 : 6224483 : conf (in_equivalence, allocatable);
606 : 6224480 : conf (in_equivalence, threadprivate);
607 : 6224480 : conf (in_equivalence, omp_declare_target);
608 : 6224480 : conf (in_equivalence, omp_declare_target_link);
609 : 6224480 : conf (in_equivalence, oacc_declare_create);
610 : 6224480 : conf (in_equivalence, oacc_declare_copyin);
611 : 6224480 : conf (in_equivalence, oacc_declare_deviceptr);
612 : 6224480 : conf (in_equivalence, oacc_declare_device_resident);
613 : 6224480 : conf (in_equivalence, is_bind_c);
614 : :
615 : 6224479 : conf (dummy, result);
616 : 6224479 : conf (entry, result);
617 : 6224478 : conf (generic, result);
618 : 6224475 : conf (generic, omp_declare_target);
619 : 6224475 : conf (generic, omp_declare_target_link);
620 : :
621 : 6224475 : conf (function, subroutine);
622 : :
623 : 6224415 : if (!function && !subroutine)
624 : 0 : conf (is_bind_c, dummy);
625 : :
626 : 6224415 : conf (is_bind_c, cray_pointer);
627 : 6224415 : conf (is_bind_c, cray_pointee);
628 : 6224415 : conf (is_bind_c, codimension);
629 : 6224414 : conf (is_bind_c, allocatable);
630 : 6224413 : 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 : 6224411 : conf (cray_pointer, cray_pointee);
638 : 6224410 : conf (cray_pointer, dimension);
639 : 6224409 : conf (cray_pointer, codimension);
640 : 6224409 : conf (cray_pointer, contiguous);
641 : 6224409 : conf (cray_pointer, pointer);
642 : 6224408 : conf (cray_pointer, target);
643 : 6224407 : conf (cray_pointer, allocatable);
644 : 6224407 : conf (cray_pointer, external);
645 : 6224407 : conf (cray_pointer, intrinsic);
646 : 6224407 : conf (cray_pointer, in_namelist);
647 : 6224407 : conf (cray_pointer, function);
648 : 6224407 : conf (cray_pointer, subroutine);
649 : 6224407 : conf (cray_pointer, entry);
650 : :
651 : 6224407 : conf (cray_pointee, allocatable);
652 : 6224407 : conf (cray_pointee, contiguous);
653 : 6224407 : conf (cray_pointee, codimension);
654 : 6224407 : conf (cray_pointee, intent);
655 : 6224407 : conf (cray_pointee, optional);
656 : 6224407 : conf (cray_pointee, dummy);
657 : 6224406 : conf (cray_pointee, target);
658 : 6224405 : conf (cray_pointee, intrinsic);
659 : 6224405 : conf (cray_pointee, pointer);
660 : 6224404 : conf (cray_pointee, entry);
661 : 6224404 : conf (cray_pointee, in_common);
662 : 6224401 : conf (cray_pointee, in_equivalence);
663 : 6224399 : conf (cray_pointee, threadprivate);
664 : 6224398 : conf (cray_pointee, omp_declare_target);
665 : 6224398 : conf (cray_pointee, omp_declare_target_link);
666 : 6224398 : conf (cray_pointee, oacc_declare_create);
667 : 6224398 : conf (cray_pointee, oacc_declare_copyin);
668 : 6224398 : conf (cray_pointee, oacc_declare_deviceptr);
669 : 6224398 : conf (cray_pointee, oacc_declare_device_resident);
670 : :
671 : 6224398 : conf (data, dummy);
672 : 6224395 : conf (data, function);
673 : 6224394 : conf (data, result);
674 : 6224393 : conf (data, allocatable);
675 : :
676 : 6224392 : conf (value, pointer)
677 : 6224391 : conf (value, allocatable)
678 : 6224391 : conf (value, subroutine)
679 : 6224391 : conf (value, function)
680 : 6224390 : conf (value, volatile_)
681 : 6224390 : conf (value, dimension)
682 : 6224386 : conf (value, codimension)
683 : 6224386 : conf (value, external)
684 : :
685 : 6224385 : conf (codimension, result)
686 : :
687 : 6224382 : if (attr->value
688 : 36251 : && (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 : 6224378 : conf (is_protected, intrinsic)
696 : 6224378 : conf (is_protected, in_common)
697 : :
698 : 6224374 : conf (asynchronous, intrinsic)
699 : 6224374 : conf (asynchronous, external)
700 : :
701 : 6224374 : conf (volatile_, intrinsic)
702 : 6224373 : conf (volatile_, external)
703 : :
704 : 6224372 : if (attr->volatile_ && attr->intent == INTENT_IN)
705 : : {
706 : 1 : a1 = volatile_;
707 : 1 : a2 = intent_in;
708 : 1 : goto conflict;
709 : : }
710 : :
711 : 6224371 : conf (procedure, allocatable)
712 : 6224370 : conf (procedure, dimension)
713 : 6224370 : conf (procedure, codimension)
714 : 6224370 : conf (procedure, intrinsic)
715 : 6224370 : conf (procedure, target)
716 : 6224370 : conf (procedure, value)
717 : 6224370 : conf (procedure, volatile_)
718 : 6224370 : conf (procedure, asynchronous)
719 : 6224370 : conf (procedure, entry)
720 : :
721 : 6224369 : conf (proc_pointer, abstract)
722 : 6224367 : conf (proc_pointer, omp_declare_target)
723 : 6224367 : conf (proc_pointer, omp_declare_target_link)
724 : :
725 : 6224367 : conf (entry, omp_declare_target)
726 : 6224367 : conf (entry, omp_declare_target_link)
727 : 6224367 : conf (entry, oacc_declare_create)
728 : 6224367 : conf (entry, oacc_declare_copyin)
729 : 6224367 : conf (entry, oacc_declare_deviceptr)
730 : 6224367 : conf (entry, oacc_declare_device_resident)
731 : :
732 : 6224367 : conf (pdt_kind, allocatable)
733 : 6224366 : conf (pdt_kind, pointer)
734 : 6224365 : conf (pdt_kind, dimension)
735 : 6224364 : conf (pdt_kind, codimension)
736 : :
737 : 6224364 : conf (pdt_len, allocatable)
738 : 6224363 : conf (pdt_len, pointer)
739 : 6224362 : conf (pdt_len, dimension)
740 : 6224361 : conf (pdt_len, codimension)
741 : 6224361 : conf (pdt_len, pdt_kind)
742 : :
743 : 6224359 : if (attr->access == ACCESS_PRIVATE)
744 : : {
745 : 11758 : a1 = privat;
746 : 11758 : conf2 (pdt_kind);
747 : 11757 : conf2 (pdt_len);
748 : : }
749 : :
750 : 6224357 : a1 = gfc_code2string (flavors, attr->flavor);
751 : :
752 : 6224357 : 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 : 6224357 : switch (attr->flavor)
762 : : {
763 : 138553 : case FL_PROGRAM:
764 : 138553 : case FL_BLOCK_DATA:
765 : 138553 : case FL_MODULE:
766 : 138553 : case FL_LABEL:
767 : 138553 : conf2 (codimension);
768 : 138553 : conf2 (dimension);
769 : 138552 : conf2 (dummy);
770 : 138552 : conf2 (volatile_);
771 : 138550 : conf2 (asynchronous);
772 : 138549 : conf2 (contiguous);
773 : 138549 : conf2 (pointer);
774 : 138549 : conf2 (is_protected);
775 : 138548 : conf2 (target);
776 : 138548 : conf2 (external);
777 : 138547 : conf2 (intrinsic);
778 : 138547 : conf2 (allocatable);
779 : 138547 : conf2 (result);
780 : 138547 : conf2 (in_namelist);
781 : 138547 : conf2 (optional);
782 : 138547 : conf2 (function);
783 : 138547 : conf2 (subroutine);
784 : 138546 : conf2 (threadprivate);
785 : 138546 : conf2 (omp_declare_target);
786 : 138546 : conf2 (omp_declare_target_link);
787 : 138546 : conf2 (oacc_declare_create);
788 : 138546 : conf2 (oacc_declare_copyin);
789 : 138546 : conf2 (oacc_declare_deviceptr);
790 : 138546 : conf2 (oacc_declare_device_resident);
791 : :
792 : 138546 : 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 : 138544 : 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 : 3878886 : case FL_PROCEDURE:
816 : : /* Conflicts with INTENT, SAVE and RESULT will be checked
817 : : at resolution stage, see "resolve_fl_procedure". */
818 : :
819 : 3878886 : if (attr->subroutine)
820 : : {
821 : 95206 : a1 = subroutine;
822 : 95206 : conf2 (target);
823 : 95206 : conf2 (allocatable);
824 : 95206 : conf2 (volatile_);
825 : 95205 : conf2 (asynchronous);
826 : 95204 : conf2 (in_namelist);
827 : 95204 : conf2 (codimension);
828 : 95204 : conf2 (dimension);
829 : 95203 : conf2 (function);
830 : 95203 : if (!attr->proc_pointer)
831 : 95041 : conf2 (threadprivate);
832 : : }
833 : :
834 : : /* Procedure pointers in COMMON blocks are allowed in F03,
835 : : * but forbidden per F08:C5100. */
836 : 3878883 : if (!attr->proc_pointer || (gfc_option.allow_std & GFC_STD_F2008))
837 : 3878671 : conf2 (in_common);
838 : :
839 : 3878879 : conf2 (omp_declare_target_link);
840 : :
841 : 3878877 : switch (attr->proc)
842 : : {
843 : 749365 : case PROC_ST_FUNCTION:
844 : 749365 : conf2 (dummy);
845 : 749364 : conf2 (target);
846 : : break;
847 : :
848 : 47860 : case PROC_MODULE:
849 : 47860 : 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 : 32445 : case_fl_struct:
864 : 32445 : conf2 (dummy);
865 : 32445 : conf2 (pointer);
866 : 32445 : conf2 (target);
867 : 32445 : conf2 (external);
868 : 32445 : conf2 (intrinsic);
869 : 32445 : conf2 (allocatable);
870 : 32445 : conf2 (optional);
871 : 32445 : conf2 (entry);
872 : 32445 : conf2 (function);
873 : 32445 : conf2 (subroutine);
874 : 32445 : conf2 (threadprivate);
875 : 32445 : conf2 (result);
876 : 32445 : conf2 (omp_declare_target);
877 : 32445 : conf2 (omp_declare_target_link);
878 : 32445 : conf2 (oacc_declare_create);
879 : 32445 : conf2 (oacc_declare_copyin);
880 : 32445 : conf2 (oacc_declare_deviceptr);
881 : 32445 : conf2 (oacc_declare_device_resident);
882 : :
883 : 32445 : if (attr->intent != INTENT_UNKNOWN)
884 : : {
885 : 0 : a2 = intent;
886 : 0 : goto conflict;
887 : : }
888 : : break;
889 : :
890 : 35579 : case FL_PARAMETER:
891 : 35579 : conf2 (external);
892 : 35579 : conf2 (intrinsic);
893 : 35579 : conf2 (optional);
894 : 35579 : conf2 (allocatable);
895 : 35579 : conf2 (function);
896 : 35579 : conf2 (subroutine);
897 : 35579 : conf2 (entry);
898 : 35579 : conf2 (contiguous);
899 : 35579 : conf2 (pointer);
900 : 35579 : conf2 (is_protected);
901 : 35579 : conf2 (target);
902 : 35579 : conf2 (dummy);
903 : 35579 : conf2 (in_common);
904 : 35579 : conf2 (value);
905 : 35578 : conf2 (volatile_);
906 : 35577 : conf2 (asynchronous);
907 : 35577 : conf2 (threadprivate);
908 : 35577 : conf2 (value);
909 : 35577 : conf2 (codimension);
910 : 35576 : conf2 (result);
911 : 35575 : if (!attr->is_iso_c)
912 : 35559 : 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 : 6863015 : gfc_set_sym_referenced (gfc_symbol *sym)
941 : : {
942 : 6863015 : if (sym->attr.referenced)
943 : : return;
944 : :
945 : 3680984 : sym->attr.referenced = 1;
946 : :
947 : : /* Remember the declaration order. */
948 : 3680984 : 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 : 2073383 : check_used (symbol_attribute *attr, const char *name, locus *where)
959 : : {
960 : :
961 : 2073383 : if (attr->use_assoc == 0)
962 : : return 0;
963 : :
964 : 52 : if (where == NULL)
965 : 25 : where = &gfc_current_locus;
966 : :
967 : 52 : if (name == NULL)
968 : 3 : gfc_error ("Cannot change attributes of USE-associated symbol at %L",
969 : : where);
970 : : else
971 : 49 : 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 : 2486 : gfc_add_ext_attribute (symbol_attribute *attr, ext_attr_id_t ext_attr,
993 : : locus *where ATTRIBUTE_UNUSED)
994 : : {
995 : 2486 : attr->ext_attr |= 1 << ext_attr;
996 : 2486 : return true;
997 : : }
998 : :
999 : :
1000 : : /* Called from decl.cc (attr_decl1) to check attributes, when declared
1001 : : separately. */
1002 : :
1003 : : bool
1004 : 9984 : gfc_add_attribute (symbol_attribute *attr, locus *where)
1005 : : {
1006 : 9984 : if (check_used (attr, NULL, where))
1007 : : return false;
1008 : :
1009 : 9984 : return gfc_check_conflict (attr, NULL, where);
1010 : : }
1011 : :
1012 : :
1013 : : bool
1014 : 28782 : gfc_add_allocatable (symbol_attribute *attr, locus *where)
1015 : : {
1016 : :
1017 : 28782 : if (check_used (attr, NULL, where))
1018 : : return false;
1019 : :
1020 : 28782 : if (attr->allocatable && ! gfc_submodule_procedure(attr))
1021 : : {
1022 : 1 : duplicate_attr ("ALLOCATABLE", where);
1023 : 1 : return false;
1024 : : }
1025 : :
1026 : 28781 : if (attr->flavor == FL_PROCEDURE && attr->if_source == IFSRC_IFBODY
1027 : 28781 : && !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 : 28780 : attr->allocatable = 1;
1035 : 28780 : 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 : 1294 : gfc_add_codimension (symbol_attribute *attr, const char *name, locus *where)
1056 : : {
1057 : :
1058 : 1294 : if (check_used (attr, name, where))
1059 : : return false;
1060 : :
1061 : 1294 : if (attr->codimension)
1062 : : {
1063 : 2 : duplicate_attr ("CODIMENSION", where);
1064 : 2 : return false;
1065 : : }
1066 : :
1067 : 1292 : if (attr->flavor == FL_PROCEDURE && attr->if_source == IFSRC_IFBODY
1068 : 1292 : && !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 : 1292 : attr->codimension = 1;
1076 : 1292 : return gfc_check_conflict (attr, name, where);
1077 : : }
1078 : :
1079 : :
1080 : : bool
1081 : 90348 : gfc_add_dimension (symbol_attribute *attr, const char *name, locus *where)
1082 : : {
1083 : :
1084 : 90348 : if (check_used (attr, name, where))
1085 : : return false;
1086 : :
1087 : 90348 : if (attr->dimension && ! gfc_submodule_procedure(attr))
1088 : : {
1089 : 2 : duplicate_attr ("DIMENSION", where);
1090 : 2 : return false;
1091 : : }
1092 : :
1093 : 90346 : if (attr->flavor == FL_PROCEDURE && attr->if_source == IFSRC_IFBODY
1094 : 90346 : && !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 : 90345 : attr->dimension = 1;
1102 : 90345 : return gfc_check_conflict (attr, name, where);
1103 : : }
1104 : :
1105 : :
1106 : : bool
1107 : 3777 : gfc_add_contiguous (symbol_attribute *attr, const char *name, locus *where)
1108 : : {
1109 : :
1110 : 3777 : if (check_used (attr, name, where))
1111 : : return false;
1112 : :
1113 : 3777 : if (attr->contiguous)
1114 : : {
1115 : 2 : duplicate_attr ("CONTIGUOUS", where);
1116 : 2 : return false;
1117 : : }
1118 : :
1119 : 3775 : attr->contiguous = 1;
1120 : 3775 : return gfc_check_conflict (attr, name, where);
1121 : : }
1122 : :
1123 : :
1124 : : bool
1125 : 17719 : gfc_add_external (symbol_attribute *attr, locus *where)
1126 : : {
1127 : :
1128 : 17719 : if (check_used (attr, NULL, where))
1129 : : return false;
1130 : :
1131 : 17716 : if (attr->external)
1132 : : {
1133 : 4 : duplicate_attr ("EXTERNAL", where);
1134 : 4 : return false;
1135 : : }
1136 : :
1137 : 17712 : if (attr->pointer && attr->if_source != IFSRC_IFBODY)
1138 : : {
1139 : 779 : attr->pointer = 0;
1140 : 779 : attr->proc_pointer = 1;
1141 : : }
1142 : :
1143 : 17712 : attr->external = 1;
1144 : :
1145 : 17712 : 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 : 10815 : gfc_add_optional (symbol_attribute *attr, locus *where)
1170 : : {
1171 : :
1172 : 10815 : if (check_used (attr, NULL, where))
1173 : : return false;
1174 : :
1175 : 10815 : if (attr->optional)
1176 : : {
1177 : 1 : duplicate_attr ("OPTIONAL", where);
1178 : 1 : return false;
1179 : : }
1180 : :
1181 : 10814 : attr->optional = 1;
1182 : 10814 : 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 : 24849 : gfc_add_pointer (symbol_attribute *attr, locus *where)
1214 : : {
1215 : :
1216 : 24849 : 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 : 24850 : && ! gfc_submodule_procedure(attr))
1222 : : {
1223 : 1 : duplicate_attr ("POINTER", where);
1224 : 1 : return false;
1225 : : }
1226 : :
1227 : 24840 : if (attr->procedure || (attr->external && attr->if_source != IFSRC_IFBODY)
1228 : 49667 : || (attr->if_source == IFSRC_IFBODY
1229 : 389 : && !gfc_find_state (COMP_INTERFACE)))
1230 : 36 : attr->proc_pointer = 1;
1231 : : else
1232 : 24812 : attr->pointer = 1;
1233 : :
1234 : 24848 : 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 : 108 : gfc_add_protected (symbol_attribute *attr, const char *name, locus *where)
1271 : : {
1272 : 108 : if (check_used (attr, name, where))
1273 : : return false;
1274 : :
1275 : 108 : 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 : 108 : attr->is_protected = 1;
1284 : 108 : return gfc_check_conflict (attr, name, where);
1285 : : }
1286 : :
1287 : :
1288 : : bool
1289 : 5837 : gfc_add_result (symbol_attribute *attr, const char *name, locus *where)
1290 : : {
1291 : :
1292 : 5837 : if (check_used (attr, name, where))
1293 : : return false;
1294 : :
1295 : 5837 : attr->result = 1;
1296 : 5837 : return gfc_check_conflict (attr, name, where);
1297 : : }
1298 : :
1299 : :
1300 : : bool
1301 : 9694 : gfc_add_save (symbol_attribute *attr, save_state s, const char *name,
1302 : : locus *where)
1303 : : {
1304 : :
1305 : 9694 : if (check_used (attr, name, where))
1306 : : return false;
1307 : :
1308 : 9694 : 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 : 9692 : if (s == SAVE_EXPLICIT)
1316 : 3664 : gfc_unset_implicit_pure (NULL);
1317 : :
1318 : 3664 : 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 : 9689 : attr->save = s;
1333 : 9689 : return gfc_check_conflict (attr, name, where);
1334 : : }
1335 : :
1336 : :
1337 : : bool
1338 : 20118 : gfc_add_value (symbol_attribute *attr, const char *name, locus *where)
1339 : : {
1340 : :
1341 : 20118 : if (check_used (attr, name, where))
1342 : : return false;
1343 : :
1344 : 20118 : 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 : 20118 : attr->value = 1;
1353 : 20118 : 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 : 1136 : gfc_add_omp_declare_target (symbol_attribute *attr, const char *name,
1429 : : locus *where)
1430 : : {
1431 : :
1432 : 1136 : if (check_used (attr, name, where))
1433 : : return false;
1434 : :
1435 : 1110 : if (attr->omp_declare_target)
1436 : : return true;
1437 : :
1438 : 1049 : attr->omp_declare_target = 1;
1439 : 1049 : 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 : 11513 : gfc_add_target (symbol_attribute *attr, locus *where)
1521 : : {
1522 : :
1523 : 11513 : if (check_used (attr, NULL, where))
1524 : : return false;
1525 : :
1526 : 11513 : if (attr->target)
1527 : : {
1528 : 1 : duplicate_attr ("TARGET", where);
1529 : 1 : return false;
1530 : : }
1531 : :
1532 : 11512 : attr->target = 1;
1533 : 11512 : return gfc_check_conflict (attr, NULL, where);
1534 : : }
1535 : :
1536 : :
1537 : : bool
1538 : 91260 : gfc_add_dummy (symbol_attribute *attr, const char *name, locus *where)
1539 : : {
1540 : :
1541 : 91260 : if (check_used (attr, name, where))
1542 : : return false;
1543 : :
1544 : : /* Duplicate dummy arguments are allowed due to ENTRY statements. */
1545 : 91260 : attr->dummy = 1;
1546 : 91260 : return gfc_check_conflict (attr, name, where);
1547 : : }
1548 : :
1549 : :
1550 : : bool
1551 : 11650 : gfc_add_in_common (symbol_attribute *attr, const char *name, locus *where)
1552 : : {
1553 : :
1554 : 11650 : if (check_used (attr, name, where))
1555 : : return false;
1556 : :
1557 : : /* Duplicate attribute already checked for. */
1558 : 11650 : attr->in_common = 1;
1559 : 11650 : 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 : 3029 : gfc_add_data (symbol_attribute *attr, const char *name, locus *where)
1581 : : {
1582 : :
1583 : 3029 : if (check_used (attr, name, where))
1584 : : return false;
1585 : :
1586 : 3028 : attr->data = 1;
1587 : 3028 : 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 : 7469 : gfc_add_elemental (symbol_attribute *attr, locus *where)
1614 : : {
1615 : :
1616 : 7469 : if (check_used (attr, NULL, where))
1617 : : return false;
1618 : :
1619 : 7469 : if (attr->elemental)
1620 : : {
1621 : 2 : duplicate_attr ("ELEMENTAL", where);
1622 : 2 : return false;
1623 : : }
1624 : :
1625 : 7467 : attr->elemental = 1;
1626 : 7467 : return gfc_check_conflict (attr, NULL, where);
1627 : : }
1628 : :
1629 : :
1630 : : bool
1631 : 9974 : gfc_add_pure (symbol_attribute *attr, locus *where)
1632 : : {
1633 : :
1634 : 9974 : if (check_used (attr, NULL, where))
1635 : : return false;
1636 : :
1637 : 9974 : if (attr->pure)
1638 : : {
1639 : 2 : duplicate_attr ("PURE", where);
1640 : 2 : return false;
1641 : : }
1642 : :
1643 : 9972 : attr->pure = 1;
1644 : 9972 : 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 : 909361 : gfc_add_function (symbol_attribute *attr, const char *name, locus *where)
1686 : : {
1687 : :
1688 : 909361 : if (attr->flavor != FL_PROCEDURE
1689 : 909361 : && !gfc_add_flavor (attr, FL_PROCEDURE, name, where))
1690 : : return false;
1691 : :
1692 : 909361 : attr->function = 1;
1693 : 909361 : return gfc_check_conflict (attr, name, where);
1694 : : }
1695 : :
1696 : :
1697 : : bool
1698 : 116731 : gfc_add_subroutine (symbol_attribute *attr, const char *name, locus *where)
1699 : : {
1700 : :
1701 : 116731 : if (attr->flavor != FL_PROCEDURE
1702 : 116731 : && !gfc_add_flavor (attr, FL_PROCEDURE, name, where))
1703 : : return false;
1704 : :
1705 : 116728 : 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 : 116728 : if (name && *name != '_' && gfc_current_state () != COMP_BLOCK_DATA)
1712 : 71241 : return gfc_check_conflict (attr, name, where);
1713 : : else
1714 : : return true;
1715 : : }
1716 : :
1717 : :
1718 : : bool
1719 : 22985 : gfc_add_generic (symbol_attribute *attr, const char *name, locus *where)
1720 : : {
1721 : :
1722 : 22985 : if (attr->flavor != FL_PROCEDURE
1723 : 22985 : && !gfc_add_flavor (attr, FL_PROCEDURE, name, where))
1724 : : return false;
1725 : :
1726 : 22983 : attr->generic = 1;
1727 : 22983 : return gfc_check_conflict (attr, name, where);
1728 : : }
1729 : :
1730 : :
1731 : : bool
1732 : 1545 : gfc_add_proc (symbol_attribute *attr, const char *name, locus *where)
1733 : : {
1734 : :
1735 : 1545 : if (check_used (attr, NULL, where))
1736 : : return false;
1737 : :
1738 : 1545 : if (attr->flavor != FL_PROCEDURE
1739 : 1545 : && !gfc_add_flavor (attr, FL_PROCEDURE, name, where))
1740 : : return false;
1741 : :
1742 : 1545 : if (attr->procedure)
1743 : : {
1744 : 0 : duplicate_attr ("PROCEDURE", where);
1745 : 0 : return false;
1746 : : }
1747 : :
1748 : 1545 : attr->procedure = 1;
1749 : :
1750 : 1545 : return gfc_check_conflict (attr, NULL, where);
1751 : : }
1752 : :
1753 : :
1754 : : bool
1755 : 683 : gfc_add_abstract (symbol_attribute* attr, locus* where)
1756 : : {
1757 : 683 : if (attr->abstract)
1758 : : {
1759 : 1 : duplicate_attr ("ABSTRACT", where);
1760 : 1 : return false;
1761 : : }
1762 : :
1763 : 682 : attr->abstract = 1;
1764 : :
1765 : 682 : 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 : 3445215 : gfc_add_flavor (symbol_attribute *attr, sym_flavor f, const char *name,
1774 : : locus *where)
1775 : : {
1776 : :
1777 : 3445215 : if ((f == FL_PROGRAM || f == FL_BLOCK_DATA || f == FL_MODULE
1778 : 3445215 : || f == FL_PARAMETER || f == FL_LABEL || gfc_fl_struct(f)
1779 : 205060 : || f == FL_NAMELIST) && check_used (attr, name, where))
1780 : : return false;
1781 : :
1782 : 3445215 : 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 : 3445213 : if (attr->flavor == f && f == FL_PROCEDURE
1789 : 464 : && gfc_new_block && gfc_new_block->abr_modproc_decl)
1790 : : return true;
1791 : :
1792 : 3445206 : if (attr->flavor != FL_UNKNOWN)
1793 : : {
1794 : 520 : if (where == NULL)
1795 : 408 : where = &gfc_current_locus;
1796 : :
1797 : 520 : 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 : 690 : gfc_error ("%s attribute conflicts with %s attribute at %L",
1803 : 345 : gfc_code2string (flavors, attr->flavor),
1804 : : gfc_code2string (flavors, f), where);
1805 : :
1806 : 520 : return false;
1807 : : }
1808 : :
1809 : 3444686 : attr->flavor = f;
1810 : :
1811 : 3444686 : return gfc_check_conflict (attr, name, where);
1812 : : }
1813 : :
1814 : :
1815 : : bool
1816 : 1314675 : gfc_add_procedure (symbol_attribute *attr, procedure_type t,
1817 : : const char *name, locus *where)
1818 : : {
1819 : :
1820 : 1314675 : if (check_used (attr, name, where))
1821 : : return false;
1822 : :
1823 : 1314653 : if (attr->flavor != FL_PROCEDURE
1824 : 1314653 : && !gfc_add_flavor (attr, FL_PROCEDURE, name, where))
1825 : : return false;
1826 : :
1827 : 1314603 : if (where == NULL)
1828 : 1298235 : where = &gfc_current_locus;
1829 : :
1830 : 1314603 : if (attr->proc != PROC_UNKNOWN && !attr->module_procedure
1831 : 214 : && attr->access == ACCESS_UNKNOWN)
1832 : : {
1833 : 0 : if (attr->proc == PROC_ST_FUNCTION && t == PROC_INTERNAL
1834 : 187 : && !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 : 187 : gfc_error ("%s procedure at %L is already declared as %s "
1844 : : "procedure", gfc_code2string (procedures, t), where,
1845 : 187 : gfc_code2string (procedures, attr->proc));
1846 : :
1847 : 187 : return false;
1848 : : }
1849 : :
1850 : 1314416 : attr->proc = t;
1851 : :
1852 : : /* Statement functions are always scalar and functions. */
1853 : 1314416 : if (t == PROC_ST_FUNCTION
1854 : 1314416 : && ((!attr->function && !gfc_add_function (attr, name, where))
1855 : 374699 : || attr->dimension))
1856 : 68 : return false;
1857 : :
1858 : 1314348 : return gfc_check_conflict (attr, name, where);
1859 : : }
1860 : :
1861 : :
1862 : : bool
1863 : 53395 : gfc_add_intent (symbol_attribute *attr, sym_intent intent, locus *where)
1864 : : {
1865 : :
1866 : 53395 : if (check_used (attr, NULL, where))
1867 : : return false;
1868 : :
1869 : 53395 : if (attr->intent == INTENT_UNKNOWN)
1870 : : {
1871 : 53395 : attr->intent = intent;
1872 : 53395 : 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 : 5224 : gfc_add_access (symbol_attribute *attr, gfc_access access,
1890 : : const char *name, locus *where)
1891 : : {
1892 : :
1893 : 5224 : if (attr->access == ACCESS_UNKNOWN
1894 : 5 : || (attr->use_assoc && attr->access != ACCESS_PRIVATE))
1895 : : {
1896 : 5220 : attr->access = access;
1897 : 5220 : 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 : 6530 : gfc_add_is_bind_c (symbol_attribute *attr, const char *name, locus *where,
1912 : : int is_proc_lang_bind_spec)
1913 : : {
1914 : :
1915 : 6530 : 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 : 6525 : else if (attr->is_bind_c)
1919 : 1 : gfc_error_now ("Duplicate BIND attribute specified at %L", where);
1920 : : else
1921 : 6524 : attr->is_bind_c = 1;
1922 : :
1923 : 6530 : if (where == NULL)
1924 : 52 : where = &gfc_current_locus;
1925 : :
1926 : 6530 : if (!gfc_notify_std (GFC_STD_F2003, "BIND(C) at %L", where))
1927 : : return false;
1928 : :
1929 : 6530 : return gfc_check_conflict (attr, name, where);
1930 : : }
1931 : :
1932 : :
1933 : : /* Set the extension field for the given symbol_attribute. */
1934 : :
1935 : : bool
1936 : 1358 : gfc_add_extension (symbol_attribute *attr, locus *where)
1937 : : {
1938 : 1358 : if (where == NULL)
1939 : 0 : where = &gfc_current_locus;
1940 : :
1941 : 1358 : if (attr->extension)
1942 : 0 : gfc_error_now ("Duplicate EXTENDS attribute specified at %L", where);
1943 : : else
1944 : 1358 : attr->extension = 1;
1945 : :
1946 : 1358 : if (!gfc_notify_std (GFC_STD_F2003, "EXTENDS at %L", where))
1947 : : return false;
1948 : :
1949 : : return true;
1950 : : }
1951 : :
1952 : :
1953 : : bool
1954 : 133541 : gfc_add_explicit_interface (gfc_symbol *sym, ifsrc source,
1955 : : gfc_formal_arglist * formal, locus *where)
1956 : : {
1957 : 133541 : 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 : 133541 : if (sym->attr.module_procedure == 1
1963 : 1089 : && source == IFSRC_DECL)
1964 : 721 : goto finish;
1965 : :
1966 : 132820 : if (where == NULL)
1967 : 132820 : where = &gfc_current_locus;
1968 : :
1969 : 132820 : if (sym->attr.if_source != IFSRC_UNKNOWN
1970 : 132820 : && 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 : 132820 : 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 : 132818 : finish:
1985 : 133539 : sym->formal = formal;
1986 : 133539 : sym->attr.if_source = source;
1987 : :
1988 : 133539 : return true;
1989 : : }
1990 : :
1991 : :
1992 : : /* Add a type to a symbol. */
1993 : :
1994 : : bool
1995 : 249103 : gfc_add_type (gfc_symbol *sym, gfc_typespec *ts, locus *where)
1996 : : {
1997 : 249103 : sym_flavor flavor;
1998 : 249103 : bt type;
1999 : :
2000 : 249103 : if (where == NULL)
2001 : 5120 : where = &gfc_current_locus;
2002 : :
2003 : 249103 : if (sym->result)
2004 : 7680 : type = sym->result->ts.type;
2005 : : else
2006 : 241423 : type = sym->ts.type;
2007 : :
2008 : 249103 : if (sym->attr.result && type == BT_UNKNOWN && sym->ns->proc_name)
2009 : 3963 : type = sym->ns->proc_name->ts.type;
2010 : :
2011 : 249103 : 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 : 249077 : 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 : 249076 : flavor = sym->attr.flavor;
2037 : :
2038 : 249076 : if (flavor == FL_PROGRAM || flavor == FL_BLOCK_DATA || flavor == FL_MODULE
2039 : 249076 : || flavor == FL_LABEL
2040 : 249074 : || (flavor == FL_PROCEDURE && sym->attr.subroutine)
2041 : 249072 : || 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 : 249072 : sym->ts = *ts;
2050 : 249072 : return true;
2051 : : }
2052 : :
2053 : :
2054 : : /* Clears all attributes. */
2055 : :
2056 : : void
2057 : 6614686 : gfc_clear_attr (symbol_attribute *attr)
2058 : : {
2059 : 6614686 : memset (attr, 0, sizeof (symbol_attribute));
2060 : 6614686 : }
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 : 356147 : gfc_missing_attr (symbol_attribute *attr ATTRIBUTE_UNUSED,
2068 : : locus *where ATTRIBUTE_UNUSED)
2069 : : {
2070 : :
2071 : 356147 : 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 : 247720 : gfc_copy_attr (symbol_attribute *dest, symbol_attribute *src, locus *where)
2081 : : {
2082 : 247720 : 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 : 247720 : dest->ext_attr |= src->ext_attr;
2087 : :
2088 : 247720 : if (src->allocatable && !gfc_add_allocatable (dest, where))
2089 : 4 : goto fail;
2090 : :
2091 : 247716 : if (src->automatic && !gfc_add_automatic (dest, NULL, where))
2092 : 2 : goto fail;
2093 : 247714 : if (src->dimension && !gfc_add_dimension (dest, NULL, where))
2094 : 0 : goto fail;
2095 : 247714 : if (src->codimension && !gfc_add_codimension (dest, NULL, where))
2096 : 0 : goto fail;
2097 : 247714 : if (src->contiguous && !gfc_add_contiguous (dest, NULL, where))
2098 : 2 : goto fail;
2099 : 247712 : if (src->optional && !gfc_add_optional (dest, where))
2100 : 1 : goto fail;
2101 : 247711 : if (src->pointer && !gfc_add_pointer (dest, where))
2102 : 8 : goto fail;
2103 : 247703 : if (src->is_protected && !gfc_add_protected (dest, NULL, where))
2104 : 0 : goto fail;
2105 : 247703 : if (src->save && !gfc_add_save (dest, src->save, NULL, where))
2106 : 4 : goto fail;
2107 : 247699 : if (src->value && !gfc_add_value (dest, NULL, where))
2108 : 2 : goto fail;
2109 : 247697 : if (src->volatile_ && !gfc_add_volatile (dest, NULL, where))
2110 : 0 : goto fail;
2111 : 247697 : if (src->asynchronous && !gfc_add_asynchronous (dest, NULL, where))
2112 : 0 : goto fail;
2113 : 247697 : if (src->threadprivate
2114 : 247697 : && !gfc_add_threadprivate (dest, NULL, where))
2115 : 0 : goto fail;
2116 : 247697 : if (src->omp_declare_target
2117 : 247697 : && !gfc_add_omp_declare_target (dest, NULL, where))
2118 : 0 : goto fail;
2119 : 247697 : if (src->omp_declare_target_link
2120 : 247697 : && !gfc_add_omp_declare_target_link (dest, NULL, where))
2121 : 0 : goto fail;
2122 : 247697 : if (src->oacc_declare_create
2123 : 247697 : && !gfc_add_oacc_declare_create (dest, NULL, where))
2124 : 0 : goto fail;
2125 : 247697 : if (src->oacc_declare_copyin
2126 : 247697 : && !gfc_add_oacc_declare_copyin (dest, NULL, where))
2127 : 0 : goto fail;
2128 : 247697 : if (src->oacc_declare_deviceptr
2129 : 247697 : && !gfc_add_oacc_declare_deviceptr (dest, NULL, where))
2130 : 0 : goto fail;
2131 : 247697 : if (src->oacc_declare_device_resident
2132 : 247697 : && !gfc_add_oacc_declare_device_resident (dest, NULL, where))
2133 : 0 : goto fail;
2134 : 247697 : if (src->target && !gfc_add_target (dest, where))
2135 : 2 : goto fail;
2136 : 247695 : if (src->dummy && !gfc_add_dummy (dest, NULL, where))
2137 : 0 : goto fail;
2138 : 247695 : if (src->result && !gfc_add_result (dest, NULL, where))
2139 : 0 : goto fail;
2140 : 247695 : if (src->entry)
2141 : 0 : dest->entry = 1;
2142 : :
2143 : 247695 : if (src->in_namelist && !gfc_add_in_namelist (dest, NULL, where))
2144 : 0 : goto fail;
2145 : :
2146 : 247695 : if (src->in_common && !gfc_add_in_common (dest, NULL, where))
2147 : 0 : goto fail;
2148 : :
2149 : 247695 : if (src->generic && !gfc_add_generic (dest, NULL, where))
2150 : 0 : goto fail;
2151 : 247695 : if (src->function && !gfc_add_function (dest, NULL, where))
2152 : 0 : goto fail;
2153 : 247695 : if (src->subroutine && !gfc_add_subroutine (dest, NULL, where))
2154 : 0 : goto fail;
2155 : :
2156 : 247695 : if (src->sequence && !gfc_add_sequence (dest, NULL, where))
2157 : 0 : goto fail;
2158 : 247695 : if (src->elemental && !gfc_add_elemental (dest, where))
2159 : 0 : goto fail;
2160 : 247695 : if (src->pure && !gfc_add_pure (dest, where))
2161 : 0 : goto fail;
2162 : 247695 : if (src->recursive && !gfc_add_recursive (dest, where))
2163 : 0 : goto fail;
2164 : :
2165 : 247695 : if (src->flavor != FL_UNKNOWN
2166 : 247695 : && !gfc_add_flavor (dest, src->flavor, NULL, where))
2167 : 347 : goto fail;
2168 : :
2169 : 247348 : if (src->intent != INTENT_UNKNOWN
2170 : 247348 : && !gfc_add_intent (dest, src->intent, where))
2171 : 0 : goto fail;
2172 : :
2173 : 247348 : if (src->access != ACCESS_UNKNOWN
2174 : 247348 : && !gfc_add_access (dest, src->access, NULL, where))
2175 : 1 : goto fail;
2176 : :
2177 : 247347 : if (!gfc_missing_attr (dest, where))
2178 : 0 : goto fail;
2179 : :
2180 : 247347 : if (src->cray_pointer && !gfc_add_cray_pointer (dest, where))
2181 : 0 : goto fail;
2182 : 247347 : if (src->cray_pointee && !gfc_add_cray_pointee (dest, where))
2183 : 0 : goto fail;
2184 : :
2185 : 247347 : is_proc_lang_bind_spec = (src->flavor == FL_PROCEDURE ? 1 : 0);
2186 : 247347 : if (src->is_bind_c
2187 : 247347 : && !gfc_add_is_bind_c (dest, NULL, where, is_proc_lang_bind_spec))
2188 : : return false;
2189 : :
2190 : 247346 : if (src->is_c_interop)
2191 : 0 : dest->is_c_interop = 1;
2192 : 247346 : if (src->is_iso_c)
2193 : 0 : dest->is_iso_c = 1;
2194 : :
2195 : 247346 : if (src->external && !gfc_add_external (dest, where))
2196 : 5 : goto fail;
2197 : 247341 : if (src->intrinsic && !gfc_add_intrinsic (dest, where))
2198 : 4 : goto fail;
2199 : 247337 : if (src->proc_pointer)
2200 : 400 : 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 : 224 : gfc_copy_dummy_sym (gfc_symbol **dsym, gfc_symbol *sym, int result)
2215 : : {
2216 : 224 : int rc;
2217 : :
2218 : 224 : rc = gfc_get_symbol (sym->name, NULL, dsym);
2219 : 224 : if (rc)
2220 : : return rc;
2221 : :
2222 : 224 : if (!gfc_add_type (*dsym, &(sym->ts), &gfc_current_locus))
2223 : : return 1;
2224 : :
2225 : 224 : if (!gfc_copy_attr (&(*dsym)->attr, &(sym->attr),
2226 : : &gfc_current_locus))
2227 : : return 1;
2228 : :
2229 : 224 : if ((*dsym)->attr.dimension)
2230 : 54 : (*dsym)->as = gfc_copy_array_spec (sym->as);
2231 : :
2232 : 224 : (*dsym)->attr.class_ok = sym->attr.class_ok;
2233 : :
2234 : 224 : if ((*dsym) != NULL && !result
2235 : 209 : && (!gfc_add_dummy(&(*dsym)->attr, (*dsym)->name, NULL)
2236 : 209 : || !gfc_missing_attr (&(*dsym)->attr, NULL)))
2237 : 0 : return 1;
2238 : 224 : else if ((*dsym) != NULL && result
2239 : 239 : && (!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 : 115121 : gfc_add_component (gfc_symbol *sym, const char *name,
2261 : : gfc_component **component)
2262 : : {
2263 : 115121 : 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 : 115121 : tail = NULL;
2271 : :
2272 : 373067 : for (p = sym->components; p; p = p->next)
2273 : : {
2274 : 257950 : 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 : 257946 : tail = p;
2282 : : }
2283 : :
2284 : 115117 : if (sym->attr.extension
2285 : 115117 : && 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 : 115115 : p = gfc_get_component ();
2295 : :
2296 : 115115 : if (tail == NULL)
2297 : 36201 : sym->components = p;
2298 : : else
2299 : 78914 : tail->next = p;
2300 : :
2301 : 115115 : p->name = gfc_get_string ("%s", name);
2302 : 115115 : p->loc = gfc_current_locus;
2303 : 115115 : p->ts.type = BT_UNKNOWN;
2304 : :
2305 : 115115 : *component = p;
2306 : 115115 : 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 : 316148 : gfc_use_derived (gfc_symbol *sym)
2350 : : {
2351 : 316148 : gfc_symbol *s;
2352 : 316148 : gfc_typespec *t;
2353 : 316148 : gfc_symtree *st;
2354 : 316148 : int i;
2355 : :
2356 : 316148 : if (!sym)
2357 : : return NULL;
2358 : :
2359 : 316144 : if (sym->attr.unlimited_polymorphic)
2360 : : return sym;
2361 : :
2362 : 314663 : if (sym->attr.generic)
2363 : 0 : sym = gfc_find_dt_in_generic (sym);
2364 : :
2365 : 314663 : 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 : 12266 : find_derived_types (gfc_symbol *sym, gfc_symtree *st, const char *name,
2422 : : bool contained, bool stash)
2423 : : {
2424 : 12266 : if (st->n.sym && st->n.sym->attr.flavor == FL_DERIVED
2425 : 2072 : && !st->n.sym->attr.is_class
2426 : 1584 : && ((contained && st->n.sym->attr.use_assoc) || !contained)
2427 : 13834 : && gfc_find_component (st->n.sym, name, true, true, NULL))
2428 : : {
2429 : : /* Do the stashing, if required. */
2430 : 778 : cts++;
2431 : 778 : if (stash)
2432 : : {
2433 : 706 : if (sym->assoc->derived_types)
2434 : 284 : st->n.sym->dt_next = sym->assoc->derived_types;
2435 : 706 : sym->assoc->derived_types = st->n.sym;
2436 : : }
2437 : : }
2438 : :
2439 : 12266 : if (st->left)
2440 : 4834 : find_derived_types (sym, st->left, name, contained, stash);
2441 : :
2442 : 12266 : if (st->right)
2443 : 5510 : find_derived_types (sym, st->right, name, contained, stash);
2444 : 12266 : }
2445 : :
2446 : : int
2447 : 976 : gfc_find_derived_types (gfc_symbol *sym, gfc_namespace *ns,
2448 : : const char *name, bool stash)
2449 : : {
2450 : 976 : gfc_namespace *encompassing = NULL;
2451 : 976 : gcc_assert (sym->assoc);
2452 : :
2453 : 976 : cts = 0;
2454 : 3008 : while (ns->parent)
2455 : : {
2456 : 2032 : if (!ns->parent->parent && ns->proc_name
2457 : 976 : && (ns->proc_name->attr.function || ns->proc_name->attr.subroutine))
2458 : 2032 : encompassing = ns;
2459 : : ns = ns->parent;
2460 : : }
2461 : :
2462 : : /* Search the top level namespace first. */
2463 : 976 : find_derived_types (sym, ns->sym_root, name, false, stash);
2464 : :
2465 : : /* Then the encompassing namespace. */
2466 : 976 : if (encompassing && encompassing != ns)
2467 : 946 : find_derived_types (sym, encompassing->sym_root, name, true, stash);
2468 : :
2469 : 976 : 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 : 294056 : gfc_find_component (gfc_symbol *sym, const char *name,
2558 : : bool noaccess, bool silent, gfc_ref **ref)
2559 : : {
2560 : 294056 : gfc_component *p, *check;
2561 : 294056 : gfc_ref *sref = NULL, *tmp = NULL;
2562 : :
2563 : 294056 : if (name == NULL || sym == NULL)
2564 : : return NULL;
2565 : :
2566 : 289062 : if (sym->attr.flavor == FL_DERIVED)
2567 : 280299 : sym = gfc_use_derived (sym);
2568 : : else
2569 : 8763 : gcc_assert (gfc_fl_struct (sym->attr.flavor));
2570 : :
2571 : 280299 : if (sym == NULL)
2572 : : return NULL;
2573 : :
2574 : : /* Handle UNIONs specially - mutually recursive with gfc_find_component. */
2575 : 289060 : if (sym->attr.flavor == FL_UNION)
2576 : 500 : return find_union_component (sym, name, noaccess, ref);
2577 : :
2578 : 288560 : if (ref) *ref = NULL;
2579 : 638851 : for (p = sym->components; p; p = p->next)
2580 : : {
2581 : : /* Nest search into union's maps. */
2582 : 606799 : 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 : 605107 : else if (strcmp (p->name, name) == 0)
2601 : : break;
2602 : :
2603 : 350291 : continue;
2604 : : }
2605 : :
2606 : 286868 : if (p && sym->attr.use_assoc && !noaccess)
2607 : : {
2608 : 42611 : bool is_parent_comp = sym->attr.extension && (p == sym->components);
2609 : 42611 : if (p->attr.access == ACCESS_PRIVATE ||
2610 : : (p->attr.access != ACCESS_PUBLIC
2611 : 42008 : && 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 : 32052 : && sym->attr.extension
2623 : 21540 : && sym->components->ts.type == BT_DERIVED)
2624 : : {
2625 : 21540 : p = gfc_find_component (sym->components->ts.u.derived, name,
2626 : : noaccess, silent, ref);
2627 : : /* Do not overwrite the error. */
2628 : 21540 : if (p == NULL)
2629 : : return p;
2630 : : }
2631 : :
2632 : 286458 : 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 : 286458 : if (p != NULL && ref)
2646 : : {
2647 : 225979 : tmp = gfc_get_ref ();
2648 : 225979 : tmp->type = REF_COMPONENT;
2649 : 225979 : tmp->u.c.component = p;
2650 : 225979 : tmp->u.c.sym = sym;
2651 : : /* Link the final component ref to the end of the chain of subrefs. */
2652 : 225979 : if (sref)
2653 : : {
2654 : : *ref = sref;
2655 : : for (; sref->next; sref = sref->next)
2656 : : ;
2657 : : sref->next = tmp;
2658 : : }
2659 : : else
2660 : 225979 : *ref = tmp;
2661 : : }
2662 : :
2663 : : return p;
2664 : 350291 : }
2665 : :
2666 : :
2667 : : /* Given a symbol, free all of the component structures and everything
2668 : : they point to. */
2669 : :
2670 : : static void
2671 : 5416298 : free_components (gfc_component *p)
2672 : : {
2673 : 5416298 : gfc_component *q;
2674 : :
2675 : 5659831 : for (; p; p = q)
2676 : : {
2677 : 243533 : q = p->next;
2678 : :
2679 : 243533 : gfc_free_array_spec (p->as);
2680 : 243533 : gfc_free_expr (p->initializer);
2681 : 243533 : if (p->kind_expr)
2682 : 110 : gfc_free_expr (p->kind_expr);
2683 : 243533 : if (p->param_list)
2684 : 88 : gfc_free_actual_arglist (p->param_list);
2685 : 243533 : free (p->tb);
2686 : 243533 : p->tb = NULL;
2687 : 243533 : free (p);
2688 : : }
2689 : 5416298 : }
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 : 7483 : compare_st_labels (void *a1, void *b1)
2699 : : {
2700 : 7483 : int a = ((gfc_st_label *) a1)->value;
2701 : 7483 : int b = ((gfc_st_label *) b1)->value;
2702 : :
2703 : 7483 : 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 : 464086 : free_st_labels (gfc_st_label *label)
2731 : : {
2732 : :
2733 : 464086 : if (label == NULL)
2734 : : return;
2735 : :
2736 : 4635 : free_st_labels (label->left);
2737 : 4635 : free_st_labels (label->right);
2738 : :
2739 : 4635 : if (label->format != NULL)
2740 : 987 : gfc_free_expr (label->format);
2741 : 4635 : 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 : 13459 : gfc_get_st_label (int labelno)
2750 : : {
2751 : 13459 : gfc_st_label *lp;
2752 : 13459 : gfc_namespace *ns;
2753 : :
2754 : 13459 : 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 : 13456 : ns = gfc_current_ns;
2761 : 13466 : 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 : 13459 : lp = ns->st_labels;
2767 : 30224 : while (lp)
2768 : : {
2769 : 25586 : if (lp->value == labelno)
2770 : 8821 : return lp;
2771 : :
2772 : 16765 : if (lp->value < labelno)
2773 : 12149 : lp = lp->left;
2774 : : else
2775 : 4616 : lp = lp->right;
2776 : : }
2777 : :
2778 : 4638 : lp = XCNEW (gfc_st_label);
2779 : :
2780 : 4638 : lp->value = labelno;
2781 : 4638 : lp->defined = ST_LABEL_UNKNOWN;
2782 : 4638 : lp->referenced = ST_LABEL_UNKNOWN;
2783 : 4638 : lp->ns = ns;
2784 : :
2785 : 4638 : gfc_insert_bbt (&ns->st_labels, lp, compare_st_labels);
2786 : :
2787 : 4638 : 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 : 4607 : gfc_define_st_label (gfc_st_label *lp, gfc_sl_type type, locus *label_locus)
2798 : : {
2799 : 4607 : int labelno;
2800 : :
2801 : 4607 : labelno = lp->value;
2802 : :
2803 : 4607 : 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 : 4605 : lp->where = *label_locus;
2809 : :
2810 : 4605 : switch (type)
2811 : : {
2812 : 987 : case ST_LABEL_FORMAT:
2813 : 987 : if (lp->referenced == ST_LABEL_TARGET
2814 : 987 : || lp->referenced == ST_LABEL_DO_TARGET)
2815 : 0 : gfc_error ("Label %d at %C already referenced as branch target",
2816 : : labelno);
2817 : : else
2818 : 987 : 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 : 17689 : gfc_reference_st_label (gfc_st_label *lp, gfc_sl_type type)
2852 : : {
2853 : 17689 : gfc_sl_type label_type;
2854 : 17689 : int labelno;
2855 : 17689 : bool rc;
2856 : :
2857 : 17689 : if (lp == NULL)
2858 : : return true;
2859 : :
2860 : 7615 : labelno = lp->value;
2861 : :
2862 : 7615 : if (lp->defined != ST_LABEL_UNKNOWN)
2863 : : label_type = lp->defined;
2864 : : else
2865 : : {
2866 : 5978 : label_type = lp->referenced;
2867 : 5978 : lp->where = gfc_current_locus;
2868 : : }
2869 : :
2870 : 7615 : 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 : 7615 : if ((label_type == ST_LABEL_TARGET || label_type == ST_LABEL_DO_TARGET
2879 : 7615 : || 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 : 8156 : && !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 : 7615 : if (type == ST_LABEL_DO_TARGET
2893 : 7615 : && !gfc_notify_std (GFC_STD_F2018_OBS, "Labeled DO statement "
2894 : : "at %L", &gfc_current_locus))
2895 : : return false;
2896 : :
2897 : 7615 : if (lp->referenced != ST_LABEL_DO_TARGET)
2898 : 6995 : 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 : 479275 : gfc_get_namespace (gfc_namespace *parent, int parent_types)
2930 : : {
2931 : 479275 : gfc_namespace *ns;
2932 : 479275 : gfc_typespec *ts;
2933 : 479275 : int in;
2934 : 479275 : int i;
2935 : :
2936 : 479275 : ns = XCNEW (gfc_namespace);
2937 : 479275 : ns->sym_root = NULL;
2938 : 479275 : ns->uop_root = NULL;
2939 : 479275 : ns->tb_sym_root = NULL;
2940 : 479275 : ns->finalizers = NULL;
2941 : 479275 : ns->default_access = ACCESS_UNKNOWN;
2942 : 479275 : ns->parent = parent;
2943 : :
2944 : 13898975 : for (in = GFC_INTRINSIC_BEGIN; in != GFC_INTRINSIC_END; in++)
2945 : : {
2946 : 13419700 : ns->operator_access[in] = ACCESS_UNKNOWN;
2947 : 13419700 : ns->tb_op[in] = NULL;
2948 : : }
2949 : :
2950 : : /* Initialize default implicit types. */
2951 : 12940425 : for (i = 'a'; i <= 'z'; i++)
2952 : : {
2953 : 12461150 : ns->set_flag[i - 'a'] = 0;
2954 : 12461150 : ts = &ns->default_type[i - 'a'];
2955 : :
2956 : 12461150 : if (parent_types && ns->parent != NULL)
2957 : : {
2958 : : /* Copy parent settings. */
2959 : 1562574 : *ts = ns->parent->default_type[i - 'a'];
2960 : 1562574 : continue;
2961 : : }
2962 : :
2963 : 10898576 : if (flag_implicit_none != 0)
2964 : : {
2965 : 108498 : gfc_clear_ts (ts);
2966 : 108498 : continue;
2967 : : }
2968 : :
2969 : 10790078 : if ('i' <= i && i <= 'n')
2970 : : {
2971 : 2490018 : ts->type = BT_INTEGER;
2972 : 2490018 : ts->kind = gfc_default_integer_kind;
2973 : : }
2974 : : else
2975 : : {
2976 : 8300060 : ts->type = BT_REAL;
2977 : 8300060 : ts->kind = gfc_default_real_kind;
2978 : : }
2979 : : }
2980 : :
2981 : 479275 : ns->refs = 1;
2982 : :
2983 : 479275 : return ns;
2984 : : }
2985 : :
2986 : :
2987 : : /* Comparison function for symtree nodes. */
2988 : :
2989 : : static int
2990 : 30830724 : compare_symtree (void *_st1, void *_st2)
2991 : : {
2992 : 30830724 : gfc_symtree *st1, *st2;
2993 : :
2994 : 30830724 : st1 = (gfc_symtree *) _st1;
2995 : 30830724 : st2 = (gfc_symtree *) _st2;
2996 : :
2997 : 30830724 : 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 : 5576762 : gfc_new_symtree (gfc_symtree **root, const char *name)
3005 : : {
3006 : 5576762 : gfc_symtree *st;
3007 : :
3008 : 5576762 : st = XCNEW (gfc_symtree);
3009 : 5576762 : st->name = gfc_get_string ("%s", name);
3010 : :
3011 : 5576762 : gfc_insert_bbt (root, st, compare_symtree);
3012 : 5576762 : return st;
3013 : : }
3014 : :
3015 : :
3016 : : /* Delete a symbol from the tree. Does not free the symbol itself! */
3017 : :
3018 : : static void
3019 : 3697481 : gfc_delete_symtree (gfc_symtree **root, const char *name)
3020 : : {
3021 : 3697481 : gfc_symtree st, *st0;
3022 : 3697481 : 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 : 3697481 : p = strrchr(name, '.');
3028 : 3697481 : if (p)
3029 : 0 : p++;
3030 : : else
3031 : : p = name;
3032 : :
3033 : 3697481 : st.name = gfc_get_string ("%s", p);
3034 : 3697481 : st0 = (gfc_symtree *) gfc_delete_bbt (root, &st, compare_symtree);
3035 : :
3036 : 3697481 : free (st0);
3037 : 3697481 : }
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 : 24533651 : gfc_find_symtree (gfc_symtree *st, const char *name)
3045 : : {
3046 : 24533651 : int c;
3047 : :
3048 : 106860403 : while (st != NULL)
3049 : : {
3050 : 92238600 : c = strcmp (name, st->name);
3051 : 92238600 : if (c == 0)
3052 : 9911848 : return st;
3053 : :
3054 : 82326752 : 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 : 553940 : gfc_get_unique_symtree (gfc_namespace *ns)
3066 : : {
3067 : 553940 : char name[GFC_MAX_SYMBOL_LEN + 1];
3068 : 553940 : static int serial = 0;
3069 : :
3070 : 553940 : sprintf (name, "@%d", serial++);
3071 : 553940 : 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 : 6546353 : set_symbol_common_block (gfc_symbol *sym, gfc_common_head *common_block)
3124 : : {
3125 : 6546353 : if (sym->common_block == common_block)
3126 : : return;
3127 : :
3128 : 5860 : if (sym->common_block && sym->common_block->name[0] != '\0')
3129 : : {
3130 : 5517 : sym->common_block->refs--;
3131 : 5517 : if (sym->common_block->refs == 0)
3132 : 1754 : free (sym->common_block);
3133 : : }
3134 : 5860 : sym->common_block = common_block;
3135 : : }
3136 : :
3137 : :
3138 : : /* Remove a gfc_symbol structure and everything it points to. */
3139 : :
3140 : : void
3141 : 5547151 : gfc_free_symbol (gfc_symbol *&sym)
3142 : : {
3143 : :
3144 : 5547151 : if (sym == NULL)
3145 : : return;
3146 : :
3147 : 5416298 : gfc_free_array_spec (sym->as);
3148 : :
3149 : 5416298 : free_components (sym->components);
3150 : :
3151 : 5416298 : gfc_free_expr (sym->value);
3152 : :
3153 : 5416298 : gfc_free_namelist (sym->namelist);
3154 : :
3155 : 5416298 : if (sym->ns != sym->formal_ns)
3156 : 5374641 : gfc_free_namespace (sym->formal_ns);
3157 : :
3158 : 5416298 : if (!sym->attr.generic_copy)
3159 : 5416298 : gfc_free_interface (sym->generic);
3160 : :
3161 : 5416298 : gfc_free_formal_arglist (sym->formal);
3162 : :
3163 : 5416298 : gfc_free_namespace (sym->f2k_derived);
3164 : :
3165 : 5416298 : set_symbol_common_block (sym, NULL);
3166 : :
3167 : 5416298 : if (sym->param_list)
3168 : 522 : gfc_free_actual_arglist (sym->param_list);
3169 : :
3170 : 5416298 : free (sym);
3171 : 5416298 : 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 : 5476911 : cyclic_reference_break_needed (gfc_symbol *sym)
3189 : : {
3190 : : /* Normal symbols don't reference themselves. */
3191 : 5476911 : 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 : 257726 : 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 : 249311 : 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 : 42282 : if (sym->attr.host_assoc && sym->attr.used_in_submodule)
3213 : 284 : 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 : 5477425 : gfc_release_symbol (gfc_symbol *&sym)
3231 : : {
3232 : 5477425 : if (sym == NULL)
3233 : : return false;
3234 : :
3235 : 5476911 : 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 : 41998 : gfc_namespace *ns = sym->formal_ns;
3240 : 41998 : sym->formal_ns = NULL;
3241 : 41998 : gfc_free_namespace (ns);
3242 : : }
3243 : :
3244 : 5476911 : sym->refs--;
3245 : 5476911 : if (sym->refs > 0)
3246 : : return false;
3247 : :
3248 : 5373800 : gcc_assert (sym->refs == 0);
3249 : 5373800 : gfc_free_symbol (sym);
3250 : 5373800 : return true;
3251 : : }
3252 : :
3253 : :
3254 : : /* Allocate and initialize a new symbol node. */
3255 : :
3256 : : gfc_symbol *
3257 : 5482619 : gfc_new_symbol (const char *name, gfc_namespace *ns)
3258 : : {
3259 : 5482619 : gfc_symbol *p;
3260 : :
3261 : 5482619 : p = XCNEW (gfc_symbol);
3262 : :
3263 : 5482619 : gfc_clear_ts (&p->ts);
3264 : 5482619 : gfc_clear_attr (&p->attr);
3265 : 5482619 : p->ns = ns;
3266 : 5482619 : p->declared_at = gfc_current_locus;
3267 : 5482619 : p->name = gfc_get_string ("%s", name);
3268 : :
3269 : 5482619 : 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 : 8732827 : select_type_insert_tmp (gfc_symtree **st)
3299 : : {
3300 : 8780398 : gfc_select_type_stack *stack = select_type_stack;
3301 : 8943013 : for (; stack; stack = stack->prev)
3302 : 210186 : if ((*st)->n.sym == stack->selector && stack->tmp)
3303 : : {
3304 : 47571 : *st = stack->tmp;
3305 : 47571 : select_type_insert_tmp (st);
3306 : 47571 : 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 : 235 : 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 : 15222098 : gfc_find_sym_tree (const char *name, gfc_namespace *ns, int parent_flag,
3338 : : gfc_symtree **result)
3339 : : {
3340 : 15222098 : gfc_symtree *st;
3341 : :
3342 : 15222098 : if (ns == NULL)
3343 : 5610771 : ns = gfc_current_ns;
3344 : :
3345 : 17148545 : do
3346 : : {
3347 : 17148545 : st = gfc_find_symtree (ns->sym_root, name);
3348 : 17148545 : if (st != NULL)
3349 : : {
3350 : 8732827 : select_type_insert_tmp (&st);
3351 : :
3352 : 8732827 : *result = st;
3353 : : /* Ambiguous generic interfaces are permitted, as long
3354 : : as the specific interfaces are different. */
3355 : 8732827 : 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 : 8415718 : if (!parent_flag)
3365 : : break;
3366 : :
3367 : : /* Don't escape an interface block. */
3368 : 5857166 : if (ns && !ns->has_import_set
3369 : 5850104 : && ns->proc_name && ns->proc_name->attr.if_source == IFSRC_IFBODY)
3370 : : break;
3371 : :
3372 : 5708032 : ns = ns->parent;
3373 : : }
3374 : 5708032 : while (ns != NULL);
3375 : :
3376 : 6489271 : if (gfc_current_state() == COMP_DERIVED
3377 : 165069 : && 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 : 6483459 : *result = NULL;
3394 : :
3395 : 6483459 : return false;
3396 : : }
3397 : :
3398 : :
3399 : : /* Same, but returns the symbol instead. */
3400 : :
3401 : : int
3402 : 2054068 : gfc_find_symbol (const char *name, gfc_namespace *ns, int parent_flag,
3403 : : gfc_symbol **result)
3404 : : {
3405 : 2054068 : gfc_symtree *st;
3406 : 2054068 : int i;
3407 : :
3408 : 2054068 : i = gfc_find_sym_tree (name, ns, parent_flag, &st);
3409 : :
3410 : 2054068 : if (st == NULL)
3411 : 1545725 : *result = NULL;
3412 : : else
3413 : 508343 : *result = st->n.sym;
3414 : :
3415 : 2054068 : return i;
3416 : : }
3417 : :
3418 : :
3419 : : /* Tells whether there is only one set of changes in the stack. */
3420 : :
3421 : : static bool
3422 : 35552848 : single_undo_checkpoint_p (void)
3423 : : {
3424 : 35552848 : if (latest_undo_chgset == &default_undo_chgset_var)
3425 : : {
3426 : 35552848 : 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 : 5061286 : gfc_save_symbol_data (gfc_symbol *sym)
3440 : : {
3441 : 5061286 : gfc_symbol *s;
3442 : 5061286 : unsigned i;
3443 : :
3444 : 5061286 : 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 : 5061286 : return;
3453 : : }
3454 : : }
3455 : 5061286 : else if (sym->gfc_new || sym->old_symbol != NULL)
3456 : : return;
3457 : :
3458 : 2464843 : s = XCNEW (gfc_symbol);
3459 : 2464843 : *s = *sym;
3460 : 2464843 : sym->old_symbol = s;
3461 : 2464843 : sym->gfc_new = 0;
3462 : :
3463 : 2464843 : 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 : 5350537 : gfc_get_sym_tree (const char *name, gfc_namespace *ns, gfc_symtree **result,
3480 : : bool allow_subroutine)
3481 : : {
3482 : 5350537 : gfc_symtree *st;
3483 : 5350537 : gfc_symbol *p;
3484 : :
3485 : : /* This doesn't usually happen during resolution. */
3486 : 5350537 : if (ns == NULL)
3487 : 2666581 : ns = gfc_current_ns;
3488 : :
3489 : : /* Try to find the symbol in ns. */
3490 : 5350537 : st = gfc_find_symtree (ns->sym_root, name);
3491 : :
3492 : 5350537 : 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 : 4565365 : if (st == NULL)
3499 : : {
3500 : : /* If not there, create a new symbol. */
3501 : 4565235 : p = gfc_new_symbol (name, ns);
3502 : :
3503 : : /* Add to the list of tentative symbols. */
3504 : 4565235 : p->old_symbol = NULL;
3505 : 4565235 : p->mark = 1;
3506 : 4565235 : p->gfc_new = 1;
3507 : 4565235 : latest_undo_chgset->syms.safe_push (p);
3508 : :
3509 : 4565235 : st = gfc_new_symtree (&ns->sym_root, name);
3510 : 4565235 : st->n.sym = p;
3511 : 4565235 : 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 : 785302 : if (st->ambiguous && !st->n.sym->attr.generic)
3520 : : {
3521 : 4 : ambiguous_symbol (name, st);
3522 : 4 : return 1;
3523 : : }
3524 : :
3525 : 785298 : p = st->n.sym;
3526 : 785298 : if (p->ns != ns && (!p->attr.function || ns->proc_name != p)
3527 : 7426 : && !(allow_subroutine && p->attr.subroutine)
3528 : 7418 : && !(ns->proc_name && ns->proc_name->attr.if_source == IFSRC_IFBODY
3529 : 7388 : && (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 : 785267 : p->mark = 1;
3538 : :
3539 : : /* Copy in case this symbol is changed. */
3540 : 785267 : gfc_save_symbol_data (p);
3541 : : }
3542 : :
3543 : 5350502 : *result = st;
3544 : 5350502 : return 0;
3545 : : }
3546 : :
3547 : :
3548 : : int
3549 : 869343 : gfc_get_symbol (const char *name, gfc_namespace *ns, gfc_symbol **result)
3550 : : {
3551 : 869343 : gfc_symtree *st;
3552 : 869343 : int i;
3553 : :
3554 : 869343 : i = gfc_get_sym_tree (name, ns, &st, false);
3555 : 869343 : if (i != 0)
3556 : : return i;
3557 : :
3558 : 869338 : if (st)
3559 : 869338 : *result = st->n.sym;
3560 : : else
3561 : 0 : *result = NULL;
3562 : : return i;
3563 : : }
3564 : :
3565 : :
3566 : : /* Subroutine that searches for a symbol, creating it if it doesn't
3567 : : exist, but tries to host-associate the symbol if possible. */
3568 : :
3569 : : int
3570 : 6649387 : gfc_get_ha_sym_tree (const char *name, gfc_symtree **result)
3571 : : {
3572 : 6649387 : gfc_symtree *st;
3573 : 6649387 : int i;
3574 : :
3575 : 6649387 : i = gfc_find_sym_tree (name, gfc_current_ns, 0, &st);
3576 : :
3577 : 6649387 : if (st != NULL)
3578 : : {
3579 : 4217793 : gfc_save_symbol_data (st->n.sym);
3580 : 4217793 : *result = st;
3581 : 4217793 : return i;
3582 : : }
3583 : :
3584 : 2431594 : i = gfc_find_sym_tree (name, gfc_current_ns, 1, &st);
3585 : 2431594 : if (i)
3586 : : return i;
3587 : :
3588 : 2431594 : if (st != NULL)
3589 : : {
3590 : 243410 : *result = st;
3591 : 243410 : return 0;
3592 : : }
3593 : :
3594 : 2188184 : return gfc_get_sym_tree (name, gfc_current_ns, result, false);
3595 : : }
3596 : :
3597 : :
3598 : : int
3599 : 28779 : gfc_get_ha_symbol (const char *name, gfc_symbol **result)
3600 : : {
3601 : 28779 : int i;
3602 : 28779 : gfc_symtree *st = NULL;
3603 : :
3604 : 28779 : i = gfc_get_ha_sym_tree (name, &st);
3605 : :
3606 : 28779 : if (st)
3607 : 28779 : *result = st->n.sym;
3608 : : else
3609 : 0 : *result = NULL;
3610 : :
3611 : 28779 : return i;
3612 : : }
3613 : :
3614 : :
3615 : : /* Search for the symtree belonging to a gfc_common_head; we cannot use
3616 : : head->name as the common_root symtree's name might be mangled. */
3617 : :
3618 : : static gfc_symtree *
3619 : 17 : find_common_symtree (gfc_symtree *st, gfc_common_head *head)
3620 : : {
3621 : :
3622 : 20 : gfc_symtree *result;
3623 : :
3624 : 20 : if (st == NULL)
3625 : : return NULL;
3626 : :
3627 : 14 : if (st->n.common == head)
3628 : : return st;
3629 : :
3630 : 3 : result = find_common_symtree (st->left, head);
3631 : 3 : if (!result)
3632 : 3 : result = find_common_symtree (st->right, head);
3633 : :
3634 : : return result;
3635 : : }
3636 : :
3637 : :
3638 : : /* Restore previous state of symbol. Just copy simple stuff. */
3639 : :
3640 : : static void
3641 : 1130055 : restore_old_symbol (gfc_symbol *p)
3642 : : {
3643 : 1130055 : gfc_symbol *old;
3644 : :
3645 : 1130055 : p->mark = 0;
3646 : 1130055 : old = p->old_symbol;
3647 : :
3648 : 1130055 : p->ts.type = old->ts.type;
3649 : 1130055 : p->ts.kind = old->ts.kind;
3650 : :
3651 : 1130055 : p->attr = old->attr;
3652 : :
3653 : 1130055 : if (p->value != old->value)
3654 : : {
3655 : 1 : gcc_checking_assert (old->value == NULL);
3656 : 1 : gfc_free_expr (p->value);
3657 : 1 : p->value = NULL;
3658 : : }
3659 : :
3660 : 1130055 : if (p->as != old->as)
3661 : : {
3662 : 7 : if (p->as)
3663 : 7 : gfc_free_array_spec (p->as);
3664 : 7 : p->as = old->as;
3665 : : }
3666 : :
3667 : 1130055 : p->generic = old->generic;
3668 : 1130055 : p->component_access = old->component_access;
3669 : :
3670 : 1130055 : if (p->namelist != NULL && old->namelist == NULL)
3671 : : {
3672 : 0 : gfc_free_namelist (p->namelist);
3673 : 0 : p->namelist = NULL;
3674 : : }
3675 : : else
3676 : : {
3677 : 1130055 : if (p->namelist_tail != old->namelist_tail)
3678 : : {
3679 : 1 : gfc_free_namelist (old->namelist_tail->next);
3680 : 1 : old->namelist_tail->next = NULL;
3681 : : }
3682 : : }
3683 : :
3684 : 1130055 : p->namelist_tail = old->namelist_tail;
3685 : :
3686 : 1130055 : if (p->formal != old->formal)
3687 : : {
3688 : 16 : gfc_free_formal_arglist (p->formal);
3689 : 16 : p->formal = old->formal;
3690 : : }
3691 : :
3692 : 1130055 : set_symbol_common_block (p, old->common_block);
3693 : 1130055 : p->common_head = old->common_head;
3694 : :
3695 : 1130055 : p->old_symbol = old->old_symbol;
3696 : 1130055 : free (old);
3697 : 1130055 : }
3698 : :
3699 : :
3700 : : /* Frees the internal data of a gfc_undo_change_set structure. Doesn't free
3701 : : the structure itself. */
3702 : :
3703 : : static void
3704 : 76829 : free_undo_change_set_data (gfc_undo_change_set &cs)
3705 : : {
3706 : 0 : cs.syms.release ();
3707 : 76829 : cs.tbps.release ();
3708 : 0 : }
3709 : :
3710 : :
3711 : : /* Given a change set pointer, free its target's contents and update it with
3712 : : the address of the previous change set. Note that only the contents are
3713 : : freed, not the target itself (the contents' container). It is not a problem
3714 : : as the latter will be a local variable usually. */
3715 : :
3716 : : static void
3717 : 0 : pop_undo_change_set (gfc_undo_change_set *&cs)
3718 : : {
3719 : 0 : free_undo_change_set_data (*cs);
3720 : 0 : cs = cs->previous;
3721 : 0 : }
3722 : :
3723 : :
3724 : : static void free_old_symbol (gfc_symbol *sym);
3725 : :
3726 : :
3727 : : /* Merges the current change set into the previous one. The changes themselves
3728 : : are left untouched; only one checkpoint is forgotten. */
3729 : :
3730 : : void
3731 : 0 : gfc_drop_last_undo_checkpoint (void)
3732 : : {
3733 : 0 : gfc_symbol *s, *t;
3734 : 0 : unsigned i, j;
3735 : :
3736 : 0 : FOR_EACH_VEC_ELT (latest_undo_chgset->syms, i, s)
3737 : : {
3738 : : /* No need to loop in this case. */
3739 : 0 : if (s->old_symbol == NULL)
3740 : 0 : continue;
3741 : :
3742 : : /* Remove the duplicate symbols. */
3743 : 0 : FOR_EACH_VEC_ELT (latest_undo_chgset->previous->syms, j, t)
3744 : 0 : if (t == s)
3745 : : {
3746 : 0 : latest_undo_chgset->previous->syms.unordered_remove (j);
3747 : :
3748 : : /* S->OLD_SYMBOL is the backup symbol for S as it was at the
3749 : : last checkpoint. We drop that checkpoint, so S->OLD_SYMBOL
3750 : : shall contain from now on the backup symbol for S as it was
3751 : : at the checkpoint before. */
3752 : 0 : if (s->old_symbol->gfc_new)
3753 : : {
3754 : 0 : gcc_assert (s->old_symbol->old_symbol == NULL);
3755 : 0 : s->gfc_new = s->old_symbol->gfc_new;
3756 : 0 : free_old_symbol (s);
3757 : : }
3758 : : else
3759 : 0 : restore_old_symbol (s->old_symbol);
3760 : : break;
3761 : : }
3762 : : }
3763 : :
3764 : 0 : latest_undo_chgset->previous->syms.safe_splice (latest_undo_chgset->syms);
3765 : 0 : latest_undo_chgset->previous->tbps.safe_splice (latest_undo_chgset->tbps);
3766 : :
3767 : 0 : pop_undo_change_set (latest_undo_chgset);
3768 : 0 : }
3769 : :
3770 : :
3771 : : /* Remove the reference to the symbol SYM in the symbol tree held by NS
3772 : : and free SYM if the last reference to it has been removed.
3773 : : Returns whether the symbol has been freed. */
3774 : :
3775 : : static bool
3776 : 3697517 : delete_symbol_from_ns (gfc_symbol *sym, gfc_namespace *ns)
3777 : : {
3778 : 3697517 : if (ns == nullptr)
3779 : : return false;
3780 : :
3781 : : /* The derived type is saved in the symtree with the first
3782 : : letter capitalized; the all lower-case version to the
3783 : : derived type contains its associated generic function. */
3784 : 3697481 : const char *sym_name = gfc_fl_struct (sym->attr.flavor)
3785 : 3697481 : ? gfc_dt_upper_string (sym->name)
3786 : 3697481 : : sym->name;
3787 : :
3788 : 3697481 : gfc_delete_symtree (&ns->sym_root, sym_name);
3789 : :
3790 : 3697481 : return gfc_release_symbol (sym);
3791 : : }
3792 : :
3793 : :
3794 : : /* Undoes all the changes made to symbols since the previous checkpoint.
3795 : : This subroutine is made simpler due to the fact that attributes are
3796 : : never removed once added. */
3797 : :
3798 : : void
3799 : 11457619 : gfc_restore_last_undo_checkpoint (void)
3800 : : {
3801 : 11457619 : gfc_symbol *p;
3802 : 11457619 : unsigned i;
3803 : :
3804 : 27713862 : FOR_EACH_VEC_ELT_REVERSE (latest_undo_chgset->syms, i, p)
3805 : : {
3806 : : /* Symbol in a common block was new. Or was old and just put in common */
3807 : 4827508 : if (p->common_block
3808 : 3809 : && (p->gfc_new || !p->old_symbol->common_block))
3809 : : {
3810 : : /* If the symbol was added to any common block, it
3811 : : needs to be removed to stop the resolver looking
3812 : : for a (possibly) dead symbol. */
3813 : 80 : if (p->common_block->head == p && !p->common_next)
3814 : : {
3815 : 14 : gfc_symtree st, *st0;
3816 : 14 : st0 = find_common_symtree (p->ns->common_root,
3817 : : p->common_block);
3818 : 14 : if (st0)
3819 : : {
3820 : 11 : st.name = st0->name;
3821 : 11 : gfc_delete_bbt (&p->ns->common_root, &st, compare_symtree);
3822 : 11 : free (st0);
3823 : : }
3824 : : }
3825 : :
3826 : 80 : if (p->common_block->head == p)
3827 : 14 : p->common_block->head = p->common_next;
3828 : : else
3829 : : {
3830 : 66 : gfc_symbol *cparent, *csym;
3831 : :
3832 : 66 : cparent = p->common_block->head;
3833 : 66 : csym = cparent->common_next;
3834 : :
3835 : 290 : while (csym != p)
3836 : : {
3837 : 224 : cparent = csym;
3838 : 224 : csym = csym->common_next;
3839 : : }
3840 : :
3841 : 66 : gcc_assert(cparent->common_next == p);
3842 : 66 : cparent->common_next = csym->common_next;
3843 : : }
3844 : 80 : p->common_next = NULL;
3845 : : }
3846 : 4827508 : if (p->gfc_new)
3847 : : {
3848 : 3697453 : bool freed = delete_symbol_from_ns (p, p->ns);
3849 : :
3850 : : /* If the symbol is a procedure (function or subroutine), remove
3851 : : it from the procedure body namespace as well as from the outer
3852 : : namespace. */
3853 : 3697453 : if (!freed
3854 : 36 : && p->formal_ns != p->ns)
3855 : 36 : freed = delete_symbol_from_ns (p, p->formal_ns);
3856 : :
3857 : : /* If the formal_ns field has not been set yet, the previous
3858 : : conditional does nothing. In that case, we can assume that
3859 : : gfc_current_ns is the procedure body namespace, and remove the
3860 : : symbol from there. */
3861 : 36 : if (!freed
3862 : 36 : && gfc_current_ns != p->ns
3863 : 28 : && gfc_current_ns != p->formal_ns)
3864 : 28 : freed = delete_symbol_from_ns (p, gfc_current_ns);
3865 : : }
3866 : : else
3867 : 1130055 : restore_old_symbol (p);
3868 : : }
3869 : :
3870 : 11457619 : latest_undo_chgset->syms.truncate (0);
3871 : 11457619 : latest_undo_chgset->tbps.truncate (0);
3872 : :
3873 : 11457619 : if (!single_undo_checkpoint_p ())
3874 : 0 : pop_undo_change_set (latest_undo_chgset);
3875 : 11457619 : }
3876 : :
3877 : :
3878 : : /* Makes sure that there is only one set of changes; in other words we haven't
3879 : : forgotten to pair a call to gfc_new_checkpoint with a call to either
3880 : : gfc_drop_last_undo_checkpoint or gfc_restore_last_undo_checkpoint. */
3881 : :
3882 : : static void
3883 : 19033943 : enforce_single_undo_checkpoint (void)
3884 : : {
3885 : 19033943 : gcc_checking_assert (single_undo_checkpoint_p ());
3886 : 19033943 : }
3887 : :
3888 : :
3889 : : /* Undoes all the changes made to symbols in the current statement. */
3890 : :
3891 : : void
3892 : 11457619 : gfc_undo_symbols (void)
3893 : : {
3894 : 11457619 : enforce_single_undo_checkpoint ();
3895 : 11457619 : gfc_restore_last_undo_checkpoint ();
3896 : 11457619 : }
3897 : :
3898 : :
3899 : : /* Free sym->old_symbol. sym->old_symbol is mostly a shallow copy of sym; the
3900 : : components of old_symbol that might need deallocation are the "allocatables"
3901 : : that are restored in gfc_undo_symbols(), with two exceptions: namelist and
3902 : : namelist_tail. In case these differ between old_symbol and sym, it's just
3903 : : because sym->namelist has gotten a few more items. */
3904 : :
3905 : : static void
3906 : 2269339 : free_old_symbol (gfc_symbol *sym)
3907 : : {
3908 : :
3909 : 2269339 : if (sym->old_symbol == NULL)
3910 : : return;
3911 : :
3912 : 1334788 : if (sym->old_symbol->as != NULL
3913 : 242155 : && sym->old_symbol->as != sym->as
3914 : 2 : && !(sym->ts.type == BT_CLASS
3915 : 2 : && sym->ts.u.derived->attr.is_class
3916 : 2 : && sym->old_symbol->as == CLASS_DATA (sym)->as))
3917 : 0 : gfc_free_array_spec (sym->old_symbol->as);
3918 : :
3919 : 1334788 : if (sym->old_symbol->value != sym->value)
3920 : 7103 : gfc_free_expr (sym->old_symbol->value);
3921 : :
3922 : 1334788 : if (sym->old_symbol->formal != sym->formal)
3923 : 15449 : gfc_free_formal_arglist (sym->old_symbol->formal);
3924 : :
3925 : 1334788 : free (sym->old_symbol);
3926 : 1334788 : sym->old_symbol = NULL;
3927 : : }
3928 : :
3929 : :
3930 : : /* Makes the changes made in the current statement permanent-- gets
3931 : : rid of undo information. */
3932 : :
3933 : : void
3934 : 1331620 : gfc_commit_symbols (void)
3935 : : {
3936 : 1331620 : gfc_symbol *p;
3937 : 1331620 : gfc_typebound_proc *tbp;
3938 : 1331620 : unsigned i;
3939 : :
3940 : 1331620 : enforce_single_undo_checkpoint ();
3941 : :
3942 : 4406662 : FOR_EACH_VEC_ELT (latest_undo_chgset->syms, i, p)
3943 : : {
3944 : 1743422 : p->mark = 0;
3945 : 1743422 : p->gfc_new = 0;
3946 : 1743422 : free_old_symbol (p);
3947 : : }
3948 : 1331620 : latest_undo_chgset->syms.truncate (0);
3949 : :
3950 : 2716290 : FOR_EACH_VEC_ELT (latest_undo_chgset->tbps, i, tbp)
3951 : 53050 : tbp->error = 0;
3952 : 1331620 : latest_undo_chgset->tbps.truncate (0);
3953 : 1331620 : }
3954 : :
3955 : :
3956 : : /* Makes the changes made in one symbol permanent -- gets rid of undo
3957 : : information. */
3958 : :
3959 : : void
3960 : 525917 : gfc_commit_symbol (gfc_symbol *sym)
3961 : : {
3962 : 525917 : gfc_symbol *p;
3963 : 525917 : unsigned i;
3964 : :
3965 : 525917 : enforce_single_undo_checkpoint ();
3966 : :
3967 : 1888795 : FOR_EACH_VEC_ELT (latest_undo_chgset->syms, i, p)
3968 : 1292930 : if (p == sym)
3969 : : {
3970 : 455969 : latest_undo_chgset->syms.unordered_remove (i);
3971 : 455969 : break;
3972 : : }
3973 : :
3974 : 525917 : sym->mark = 0;
3975 : 525917 : sym->gfc_new = 0;
3976 : :
3977 : 525917 : free_old_symbol (sym);
3978 : 525917 : }
3979 : :
3980 : :
3981 : : /* Recursively free trees containing type-bound procedures. */
3982 : :
3983 : : static void
3984 : 922844 : free_tb_tree (gfc_symtree *t)
3985 : : {
3986 : 922844 : if (t == NULL)
3987 : : return;
3988 : :
3989 : 6606 : free_tb_tree (t->left);
3990 : 6606 : free_tb_tree (t->right);
3991 : :
3992 : : /* TODO: Free type-bound procedure u.generic */
3993 : 6606 : free (t->n.tb);
3994 : 6606 : t->n.tb = NULL;
3995 : 6606 : free (t);
3996 : : }
3997 : :
3998 : :
3999 : : /* Recursive function that deletes an entire tree and all the common
4000 : : head structures it points to. */
4001 : :
4002 : : static void
4003 : 458674 : free_common_tree (gfc_symtree * common_tree)
4004 : : {
4005 : 458674 : if (common_tree == NULL)
4006 : : return;
4007 : :
4008 : 1929 : free_common_tree (common_tree->left);
4009 : 1929 : free_common_tree (common_tree->right);
4010 : :
4011 : 1929 : free (common_tree);
4012 : : }
4013 : :
4014 : :
4015 : : /* Recursive function that deletes an entire tree and all the common
4016 : : head structures it points to. */
4017 : :
4018 : : static void
4019 : 455824 : free_omp_udr_tree (gfc_symtree * omp_udr_tree)
4020 : : {
4021 : 455824 : if (omp_udr_tree == NULL)
4022 : : return;
4023 : :
4024 : 504 : free_omp_udr_tree (omp_udr_tree->left);
4025 : 504 : free_omp_udr_tree (omp_udr_tree->right);
4026 : :
4027 : 504 : gfc_free_omp_udr (omp_udr_tree->n.omp_udr);
4028 : 504 : free (omp_udr_tree);
4029 : : }
4030 : :
4031 : :
4032 : : /* Recursive function that deletes an entire tree and all the user
4033 : : operator nodes that it contains. */
4034 : :
4035 : : static void
4036 : 455482 : free_uop_tree (gfc_symtree *uop_tree)
4037 : : {
4038 : 455482 : if (uop_tree == NULL)
4039 : : return;
4040 : :
4041 : 333 : free_uop_tree (uop_tree->left);
4042 : 333 : free_uop_tree (uop_tree->right);
4043 : :
4044 : 333 : gfc_free_interface (uop_tree->n.uop->op);
4045 : 333 : free (uop_tree->n.uop);
4046 : 333 : free (uop_tree);
4047 : : }
4048 : :
4049 : :
4050 : : /* Recursive function that deletes an entire tree and all the symbols
4051 : : that it contains. */
4052 : :
4053 : : static void
4054 : 4005516 : free_sym_tree (gfc_symtree *sym_tree)
4055 : : {
4056 : 4005516 : if (sym_tree == NULL)
4057 : : return;
4058 : :
4059 : 1775350 : free_sym_tree (sym_tree->left);
4060 : 1775350 : free_sym_tree (sym_tree->right);
4061 : :
4062 : 1775350 : gfc_release_symbol (sym_tree->n.sym);
4063 : 1775350 : free (sym_tree);
4064 : : }
4065 : :
4066 : :
4067 : : /* Free the gfc_equiv_info's. */
4068 : :
4069 : : static void
4070 : 14872 : gfc_free_equiv_infos (gfc_equiv_info *s)
4071 : : {
4072 : 14872 : if (s == NULL)
4073 : : return;
4074 : 8224 : gfc_free_equiv_infos (s->next);
4075 : 8224 : free (s);
4076 : : }
4077 : :
4078 : :
4079 : : /* Free the gfc_equiv_lists. */
4080 : :
4081 : : static void
4082 : 461464 : gfc_free_equiv_lists (gfc_equiv_list *l)
4083 : : {
4084 : 461464 : if (l == NULL)
4085 : : return;
4086 : 6648 : gfc_free_equiv_lists (l->next);
4087 : 6648 : gfc_free_equiv_infos (l->equiv);
4088 : 6648 : free (l);
4089 : : }
4090 : :
4091 : :
4092 : : /* Free a finalizer procedure list. */
4093 : :
4094 : : void
4095 : 875 : gfc_free_finalizer (gfc_finalizer* el)
4096 : : {
4097 : 875 : if (el)
4098 : : {
4099 : 875 : gfc_release_symbol (el->proc_sym);
4100 : 875 : free (el);
4101 : : }
4102 : 875 : }
4103 : :
4104 : : static void
4105 : 454816 : gfc_free_finalizer_list (gfc_finalizer* list)
4106 : : {
4107 : 455677 : while (list)
4108 : : {
4109 : 861 : gfc_finalizer* current = list;
4110 : 861 : list = list->next;
4111 : 861 : gfc_free_finalizer (current);
4112 : : }
4113 : 454816 : }
4114 : :
4115 : :
4116 : : /* Create a new gfc_charlen structure and add it to a namespace.
4117 : : If 'old_cl' is given, the newly created charlen will be a copy of it. */
4118 : :
4119 : : gfc_charlen*
4120 : 271232 : gfc_new_charlen (gfc_namespace *ns, gfc_charlen *old_cl)
4121 : : {
4122 : 271232 : gfc_charlen *cl;
4123 : :
4124 : 271232 : cl = gfc_get_charlen ();
4125 : :
4126 : : /* Copy old_cl. */
4127 : 271232 : if (old_cl)
4128 : : {
4129 : 14170 : cl->length = gfc_copy_expr (old_cl->length);
4130 : 14170 : cl->length_from_typespec = old_cl->length_from_typespec;
4131 : 14170 : cl->backend_decl = old_cl->backend_decl;
4132 : 14170 : cl->passed_length = old_cl->passed_length;
4133 : 14170 : cl->resolved = old_cl->resolved;
4134 : : }
4135 : :
4136 : : /* Put into namespace. */
4137 : 271232 : cl->next = ns->cl_list;
4138 : 271232 : ns->cl_list = cl;
4139 : :
4140 : 271232 : return cl;
4141 : : }
4142 : :
4143 : :
4144 : : /* Free the charlen list from cl to end (end is not freed).
4145 : : Free the whole list if end is NULL. */
4146 : :
4147 : : static void
4148 : 454816 : gfc_free_charlen (gfc_charlen *cl, gfc_charlen *end)
4149 : : {
4150 : 454816 : gfc_charlen *cl2;
4151 : :
4152 : 725740 : for (; cl != end; cl = cl2)
4153 : : {
4154 : 270924 : gcc_assert (cl);
4155 : :
4156 : 270924 : cl2 = cl->next;
4157 : 270924 : gfc_free_expr (cl->length);
4158 : 270924 : free (cl);
4159 : : }
4160 : 454816 : }
4161 : :
4162 : :
4163 : : /* Free entry list structs. */
4164 : :
4165 : : static void
4166 : 0 : free_entry_list (gfc_entry_list *el)
4167 : : {
4168 : 456236 : gfc_entry_list *next;
4169 : :
4170 : 456236 : if (el == NULL)
4171 : 0 : return;
4172 : :
4173 : 1420 : next = el->next;
4174 : 1420 : free (el);
4175 : 1420 : free_entry_list (next);
4176 : : }
4177 : :
4178 : :
4179 : : /* Free a namespace structure and everything below it. Interface
4180 : : lists associated with intrinsic operators are not freed. These are
4181 : : taken care of when a specific name is freed. */
4182 : :
4183 : : void
4184 : 11027041 : gfc_free_namespace (gfc_namespace *&ns)
4185 : : {
4186 : 11027041 : gfc_namespace *p, *q;
4187 : 11027041 : int i;
4188 : 11027041 : gfc_was_finalized *f;
4189 : :
4190 : 11027041 : if (ns == NULL)
4191 : 10572225 : return;
4192 : :
4193 : 478877 : ns->refs--;
4194 : 478877 : if (ns->refs > 0)
4195 : : return;
4196 : :
4197 : 454816 : gcc_assert (ns->refs == 0);
4198 : :
4199 : 454816 : gfc_free_statements (ns->code);
4200 : :
4201 : 454816 : free_sym_tree (ns->sym_root);
4202 : 454816 : free_uop_tree (ns->uop_root);
4203 : 454816 : free_common_tree (ns->common_root);
4204 : 454816 : free_omp_udr_tree (ns->omp_udr_root);
4205 : 454816 : free_tb_tree (ns->tb_sym_root);
4206 : 454816 : free_tb_tree (ns->tb_uop_root);
4207 : 454816 : gfc_free_finalizer_list (ns->finalizers);
4208 : 454816 : gfc_free_omp_declare_simd_list (ns->omp_declare_simd);
4209 : 454816 : gfc_free_omp_declare_variant_list (ns->omp_declare_variant);
4210 : 454816 : gfc_free_charlen (ns->cl_list, NULL);
4211 : 454816 : free_st_labels (ns->st_labels);
4212 : :
4213 : 454816 : free_entry_list (ns->entries);
4214 : 454816 : gfc_free_equiv (ns->equiv);
4215 : 454816 : gfc_free_equiv_lists (ns->equiv_lists);
4216 : 454816 : gfc_free_use_stmts (ns->use_stmts);
4217 : :
4218 : 13644480 : for (i = GFC_INTRINSIC_BEGIN; i != GFC_INTRINSIC_END; i++)
4219 : 12734848 : gfc_free_interface (ns->op[i]);
4220 : :
4221 : 454816 : gfc_free_data (ns->data);
4222 : :
4223 : : /* Free all the expr + component combinations that have been
4224 : : finalized. */
4225 : 454816 : f = ns->was_finalized;
4226 : 456828 : while (f)
4227 : : {
4228 : 2012 : gfc_was_finalized* current = f;
4229 : 2012 : f = f->next;
4230 : 2012 : free (current);
4231 : : }
4232 : 454816 : if (ns->omp_assumes)
4233 : : {
4234 : 19 : free (ns->omp_assumes->absent);
4235 : 19 : free (ns->omp_assumes->contains);
4236 : 19 : gfc_free_expr_list (ns->omp_assumes->holds);
4237 : 19 : free (ns->omp_assumes);
4238 : : }
4239 : 454816 : p = ns->contained;
4240 : 454816 : free (ns);
4241 : 454816 : ns = NULL;
4242 : :
4243 : : /* Recursively free any contained namespaces. */
4244 : 497808 : while (p != NULL)
4245 : : {
4246 : 42992 : q = p;
4247 : 42992 : p = p->sibling;
4248 : 42992 : gfc_free_namespace (q);
4249 : : }
4250 : : }
4251 : :
4252 : :
4253 : : void
4254 : 76531 : gfc_symbol_init_2 (void)
4255 : : {
4256 : :
4257 : 76531 : gfc_current_ns = gfc_get_namespace (NULL, 0);
4258 : 76531 : }
4259 : :
4260 : :
4261 : : void
4262 : 76829 : gfc_symbol_done_2 (void)
4263 : : {
4264 : 76829 : if (gfc_current_ns != NULL)
4265 : : {
4266 : : /* free everything from the root. */
4267 : 76839 : while (gfc_current_ns->parent != NULL)
4268 : 10 : gfc_current_ns = gfc_current_ns->parent;
4269 : 76829 : gfc_free_namespace (gfc_current_ns);
4270 : 76829 : gfc_current_ns = NULL;
4271 : : }
4272 : 76829 : gfc_derived_types = NULL;
4273 : :
4274 : 76829 : enforce_single_undo_checkpoint ();
4275 : 76829 : free_undo_change_set_data (*latest_undo_chgset);
4276 : 76829 : }
4277 : :
4278 : :
4279 : : /* Count how many nodes a symtree has. */
4280 : :
4281 : : static unsigned
4282 : 22671550 : count_st_nodes (const gfc_symtree *st)
4283 : : {
4284 : 42319921 : unsigned nodes;
4285 : 42319921 : if (!st)
4286 : 22671550 : return 0;
4287 : :
4288 : 19648371 : nodes = count_st_nodes (st->left);
4289 : 19648371 : nodes++;
4290 : 19648371 : nodes += count_st_nodes (st->right);
4291 : :
4292 : 19648371 : return nodes;
4293 : : }
4294 : :
4295 : :
4296 : : /* Convert symtree tree into symtree vector. */
4297 : :
4298 : : static unsigned
4299 : 22671550 : fill_st_vector (gfc_symtree *st, gfc_symtree **st_vec, unsigned node_cntr)
4300 : : {
4301 : 42319921 : if (!st)
4302 : 22671550 : return node_cntr;
4303 : :
4304 : 19648371 : node_cntr = fill_st_vector (st->left, st_vec, node_cntr);
4305 : 19648371 : st_vec[node_cntr++] = st;
4306 : 19648371 : node_cntr = fill_st_vector (st->right, st_vec, node_cntr);
4307 : :
4308 : 19648371 : return node_cntr;
4309 : : }
4310 : :
4311 : :
4312 : : /* Traverse namespace. As the functions might modify the symtree, we store the
4313 : : symtree as a vector and operate on this vector. Note: We assume that
4314 : : sym_func or st_func never deletes nodes from the symtree - only adding is
4315 : : allowed. Additionally, newly added nodes are not traversed. */
4316 : :
4317 : : static void
4318 : 3023179 : do_traverse_symtree (gfc_symtree *st, void (*st_func) (gfc_symtree *),
4319 : : void (*sym_func) (gfc_symbol *))
4320 : : {
4321 : 3023179 : gfc_symtree **st_vec;
4322 : 3023179 : unsigned nodes, i, node_cntr;
4323 : :
4324 : 3023179 : gcc_assert ((st_func && !sym_func) || (!st_func && sym_func));
4325 : 3023179 : nodes = count_st_nodes (st);
4326 : 3023179 : st_vec = XALLOCAVEC (gfc_symtree *, nodes);
4327 : 3023179 : node_cntr = 0;
4328 : 3023179 : fill_st_vector (st, st_vec, node_cntr);
4329 : :
4330 : 3023179 : if (sym_func)
4331 : : {
4332 : : /* Clear marks. */
4333 : 22399852 : for (i = 0; i < nodes; i++)
4334 : 19497531 : st_vec[i]->n.sym->mark = 0;
4335 : 22399852 : for (i = 0; i < nodes; i++)
4336 : 19497531 : if (!st_vec[i]->n.sym->mark)
4337 : : {
4338 : 18955998 : (*sym_func) (st_vec[i]->n.sym);
4339 : 18955998 : st_vec[i]->n.sym->mark = 1;
4340 : : }
4341 : : }
4342 : : else
4343 : 271698 : for (i = 0; i < nodes; i++)
4344 : 150840 : (*st_func) (st_vec[i]);
4345 : 3023179 : }
4346 : :
4347 : :
4348 : : /* Recursively traverse the symtree nodes. */
4349 : :
4350 : : void
4351 : 120858 : gfc_traverse_symtree (gfc_symtree *st, void (*st_func) (gfc_symtree *))
4352 : : {
4353 : 120858 : do_traverse_symtree (st, st_func, NULL);
4354 : 120858 : }
4355 : :
4356 : :
4357 : : /* Call a given function for all symbols in the namespace. We take
4358 : : care that each gfc_symbol node is called exactly once. */
4359 : :
4360 : : void
4361 : 2902321 : gfc_traverse_ns (gfc_namespace *ns, void (*sym_func) (gfc_symbol *))
4362 : : {
4363 : 2902321 : do_traverse_symtree (ns->sym_root, NULL, sym_func);
4364 : 2902321 : }
4365 : :
4366 : :
4367 : : /* Return TRUE when name is the name of an intrinsic type. */
4368 : :
4369 : : bool
4370 : 12309 : gfc_is_intrinsic_typename (const char *name)
4371 : : {
4372 : 12309 : if (strcmp (name, "integer") == 0
4373 : 12306 : || strcmp (name, "real") == 0
4374 : 12303 : || strcmp (name, "character") == 0
4375 : 12301 : || strcmp (name, "logical") == 0
4376 : 12299 : || strcmp (name, "complex") == 0
4377 : 12295 : || strcmp (name, "doubleprecision") == 0
4378 : 12292 : || strcmp (name, "doublecomplex") == 0)
4379 : : return true;
4380 : : else
4381 : 12289 : return false;
4382 : : }
4383 : :
4384 : :
4385 : : /* Return TRUE if the symbol is an automatic variable. */
4386 : :
4387 : : static bool
4388 : 869 : gfc_is_var_automatic (gfc_symbol *sym)
4389 : : {
4390 : : /* Pointer and allocatable variables are never automatic. */
4391 : 869 : if (sym->attr.pointer || sym->attr.allocatable)
4392 : : return false;
4393 : : /* Check for arrays with non-constant size. */
4394 : 75 : if (sym->attr.dimension && sym->as
4395 : 871 : && !gfc_is_compile_time_shape (sym->as))
4396 : : return true;
4397 : : /* Check for non-constant length character variables. */
4398 : 781 : if (sym->ts.type == BT_CHARACTER
4399 : 82 : && sym->ts.u.cl
4400 : 863 : && !gfc_is_constant_expr (sym->ts.u.cl->length))
4401 : : return true;
4402 : : /* Variables with explicit AUTOMATIC attribute. */
4403 : 773 : if (sym->attr.automatic)
4404 : : return true;
4405 : :
4406 : : return false;
4407 : : }
4408 : :
4409 : : /* Given a symbol, mark it as SAVEd if it is allowed. */
4410 : :
4411 : : static void
4412 : 2791 : save_symbol (gfc_symbol *sym)
4413 : : {
4414 : :
4415 : 2791 : if (sym->attr.use_assoc)
4416 : : return;
4417 : :
4418 : 2408 : if (sym->attr.in_common
4419 : : || sym->attr.in_equivalence
4420 : : || sym->attr.dummy
4421 : 2408 : || sym->attr.result
4422 : 1976 : || sym->attr.flavor != FL_VARIABLE)
4423 : : return;
4424 : : /* Automatic objects are not saved. */
4425 : 869 : if (gfc_is_var_automatic (sym))
4426 : : return;
4427 : 828 : gfc_add_save (&sym->attr, SAVE_EXPLICIT, sym->name, &sym->declared_at);
4428 : : }
4429 : :
4430 : :
4431 : : /* Mark those symbols which can be SAVEd as such. */
4432 : :
4433 : : void
4434 : 345 : gfc_save_all (gfc_namespace *ns)
4435 : : {
4436 : 345 : gfc_traverse_ns (ns, save_symbol);
4437 : 345 : }
4438 : :
4439 : :
4440 : : /* Make sure that no changes to symbols are pending. */
4441 : :
4442 : : void
4443 : 5641958 : gfc_enforce_clean_symbol_state(void)
4444 : : {
4445 : 5641958 : enforce_single_undo_checkpoint ();
4446 : 5641958 : gcc_assert (latest_undo_chgset->syms.is_empty ());
4447 : 5641958 : }
4448 : :
4449 : :
4450 : : /************** Global symbol handling ************/
4451 : :
4452 : :
4453 : : /* Search a tree for the global symbol. */
4454 : :
4455 : : gfc_gsymbol *
4456 : 353959 : gfc_find_gsymbol (gfc_gsymbol *symbol, const char *name)
4457 : : {
4458 : 353959 : int c;
4459 : :
4460 : 353959 : if (symbol == NULL)
4461 : : return NULL;
4462 : :
4463 : 1129201 : while (symbol)
4464 : : {
4465 : 931734 : c = strcmp (name, symbol->name);
4466 : 931734 : if (!c)
4467 : 116770 : return symbol;
4468 : :
4469 : 814964 : symbol = (c < 0) ? symbol->left : symbol->right;
4470 : : }
4471 : :
4472 : : return NULL;
4473 : : }
4474 : :
4475 : :
4476 : : /* Case insensitive search a tree for the global symbol. */
4477 : :
4478 : : gfc_gsymbol *
4479 : 27225 : gfc_find_case_gsymbol (gfc_gsymbol *symbol, const char *name)
4480 : : {
4481 : 27225 : int c;
4482 : :
4483 : 27225 : if (symbol == NULL)
4484 : : return NULL;
4485 : :
4486 : 103860 : while (symbol)
4487 : : {
4488 : 86675 : c = strcasecmp (name, symbol->name);
4489 : 86675 : if (!c)
4490 : 9700 : return symbol;
4491 : :
4492 : 76975 : symbol = (c < 0) ? symbol->left : symbol->right;
4493 : : }
4494 : :
4495 : : return NULL;
4496 : : }
4497 : :
4498 : :
4499 : : /* Compare two global symbols. Used for managing the BB tree. */
4500 : :
4501 : : static int
4502 : 137532 : gsym_compare (void *_s1, void *_s2)
4503 : : {
4504 : 137532 : gfc_gsymbol *s1, *s2;
4505 : :
4506 : 137532 : s1 = (gfc_gsymbol *) _s1;
4507 : 137532 : s2 = (gfc_gsymbol *) _s2;
4508 : 137532 : return strcmp (s1->name, s2->name);
4509 : : }
4510 : :
4511 : :
4512 : : /* Get a global symbol, creating it if it doesn't exist. */
4513 : :
4514 : : gfc_gsymbol *
4515 : 103371 : gfc_get_gsymbol (const char *name, bool bind_c)
4516 : : {
4517 : 103371 : gfc_gsymbol *s;
4518 : :
4519 : 103371 : s = gfc_find_gsymbol (gfc_gsym_root, name);
4520 : 103371 : if (s != NULL)
4521 : : return s;
4522 : :
4523 : 78692 : s = XCNEW (gfc_gsymbol);
4524 : 78692 : s->type = GSYM_UNKNOWN;
4525 : 78692 : s->name = gfc_get_string ("%s", name);
4526 : 78692 : s->bind_c = bind_c;
4527 : :
4528 : 78692 : gfc_insert_bbt (&gfc_gsym_root, s, gsym_compare);
4529 : :
4530 : 78692 : return s;
4531 : : }
4532 : :
4533 : : void
4534 : 0 : gfc_traverse_gsymbol (gfc_gsymbol *gsym,
4535 : : void (*do_something) (gfc_gsymbol *, void *),
4536 : : void *data)
4537 : : {
4538 : 0 : if (gsym->left)
4539 : 0 : gfc_traverse_gsymbol (gsym->left, do_something, data);
4540 : :
4541 : 0 : (*do_something) (gsym, data);
4542 : :
4543 : 0 : if (gsym->right)
4544 : : gfc_traverse_gsymbol (gsym->right, do_something, data);
4545 : 0 : }
4546 : :
4547 : : static gfc_symbol *
4548 : 52 : get_iso_c_binding_dt (int sym_id)
4549 : : {
4550 : 52 : gfc_symbol *dt_list = gfc_derived_types;
4551 : :
4552 : : /* Loop through the derived types in the name list, searching for
4553 : : the desired symbol from iso_c_binding. Search the parent namespaces
4554 : : if necessary and requested to (parent_flag). */
4555 : 52 : if (dt_list)
4556 : : {
4557 : 25 : while (dt_list->dt_next != gfc_derived_types)
4558 : : {
4559 : 0 : if (dt_list->from_intmod != INTMOD_NONE
4560 : 0 : && dt_list->intmod_sym_id == sym_id)
4561 : 0 : return dt_list;
4562 : :
4563 : : dt_list = dt_list->dt_next;
4564 : : }
4565 : : }
4566 : :
4567 : : return NULL;
4568 : : }
4569 : :
4570 : :
4571 : : /* Verifies that the given derived type symbol, derived_sym, is interoperable
4572 : : with C. This is necessary for any derived type that is BIND(C) and for
4573 : : derived types that are parameters to functions that are BIND(C). All
4574 : : fields of the derived type are required to be interoperable, and are tested
4575 : : for such. If an error occurs, the errors are reported here, allowing for
4576 : : multiple errors to be handled for a single derived type. */
4577 : :
4578 : : bool
4579 : 23209 : verify_bind_c_derived_type (gfc_symbol *derived_sym)
4580 : : {
4581 : 23209 : gfc_component *curr_comp = NULL;
4582 : 23209 : bool is_c_interop = false;
4583 : 23209 : bool retval = true;
4584 : :
4585 : 23209 : if (derived_sym == NULL)
4586 : 0 : gfc_internal_error ("verify_bind_c_derived_type(): Given symbol is "
4587 : : "unexpectedly NULL");
4588 : :
4589 : : /* If we've already looked at this derived symbol, do not look at it again
4590 : : so we don't repeat warnings/errors. */
4591 : 23209 : if (derived_sym->ts.is_c_interop)
4592 : : return true;
4593 : :
4594 : : /* The derived type must have the BIND attribute to be interoperable
4595 : : J3/04-007, Section 15.2.3. */
4596 : 399 : if (derived_sym->attr.is_bind_c != 1)
4597 : : {
4598 : 2 : derived_sym->ts.is_c_interop = 0;
4599 : 2 : gfc_error_now ("Derived type %qs declared at %L must have the BIND "
4600 : : "attribute to be C interoperable", derived_sym->name,
4601 : : &(derived_sym->declared_at));
4602 : 2 : retval = false;
4603 : : }
4604 : :
4605 : 399 : curr_comp = derived_sym->components;
4606 : :
4607 : : /* Fortran 2003 allows an empty derived type. C99 appears to disallow an
4608 : : empty struct. Section 15.2 in Fortran 2003 states: "The following
4609 : : subclauses define the conditions under which a Fortran entity is
4610 : : interoperable. If a Fortran entity is interoperable, an equivalent
4611 : : entity may be defined by means of C and the Fortran entity is said
4612 : : to be interoperable with the C entity. There does not have to be such
4613 : : an interoperating C entity."
4614 : : */
4615 : 399 : if (curr_comp == NULL)
4616 : : {
4617 : 1 : gfc_warning (0, "Derived type %qs with BIND(C) attribute at %L is empty, "
4618 : : "and may be inaccessible by the C companion processor",
4619 : : derived_sym->name, &(derived_sym->declared_at));
4620 : 1 : derived_sym->ts.is_c_interop = 1;
4621 : 1 : derived_sym->attr.is_bind_c = 1;
4622 : 1 : return true;
4623 : : }
4624 : :
4625 : :
4626 : : /* Initialize the derived type as being C interoperable.
4627 : : If we find an error in the components, this will be set false. */
4628 : 398 : derived_sym->ts.is_c_interop = 1;
4629 : :
4630 : : /* Loop through the list of components to verify that the kind of
4631 : : each is a C interoperable type. */
4632 : 835 : do
4633 : : {
4634 : : /* The components cannot be pointers (fortran sense).
4635 : : J3/04-007, Section 15.2.3, C1505. */
4636 : 835 : if (curr_comp->attr.pointer != 0)
4637 : : {
4638 : 3 : gfc_error ("Component %qs at %L cannot have the "
4639 : : "POINTER attribute because it is a member "
4640 : : "of the BIND(C) derived type %qs at %L",
4641 : : curr_comp->name, &(curr_comp->loc),
4642 : : derived_sym->name, &(derived_sym->declared_at));
4643 : 3 : retval = false;
4644 : : }
4645 : :
4646 : 835 : if (curr_comp->attr.proc_pointer != 0)
4647 : : {
4648 : 1 : gfc_error ("Procedure pointer component %qs at %L cannot be a member"
4649 : : " of the BIND(C) derived type %qs at %L", curr_comp->name,
4650 : : &curr_comp->loc, derived_sym->name,
4651 : : &derived_sym->declared_at);
4652 : 1 : retval = false;
4653 : : }
4654 : :
4655 : : /* The components cannot be allocatable.
4656 : : J3/04-007, Section 15.2.3, C1505. */
4657 : 835 : if (curr_comp->attr.allocatable != 0)
4658 : : {
4659 : 3 : gfc_error ("Component %qs at %L cannot have the "
4660 : : "ALLOCATABLE attribute because it is a member "
4661 : : "of the BIND(C) derived type %qs at %L",
4662 : : curr_comp->name, &(curr_comp->loc),
4663 : : derived_sym->name, &(derived_sym->declared_at));
4664 : 3 : retval = false;
4665 : : }
4666 : :
4667 : : /* BIND(C) derived types must have interoperable components. */
4668 : 835 : if (curr_comp->ts.type == BT_DERIVED
4669 : 71 : && curr_comp->ts.u.derived->ts.is_iso_c != 1
4670 : 17 : && curr_comp->ts.u.derived != derived_sym)
4671 : : {
4672 : : /* This should be allowed; the draft says a derived-type cannot
4673 : : have type parameters if it is has the BIND attribute. Type
4674 : : parameters seem to be for making parameterized derived types.
4675 : : There's no need to verify the type if it is c_ptr/c_funptr. */
4676 : 16 : retval = verify_bind_c_derived_type (curr_comp->ts.u.derived);
4677 : : }
4678 : : else
4679 : : {
4680 : : /* Grab the typespec for the given component and test the kind. */
4681 : 819 : is_c_interop = gfc_verify_c_interop (&(curr_comp->ts));
4682 : :
4683 : 819 : if (!is_c_interop)
4684 : : {
4685 : : /* Report warning and continue since not fatal. The
4686 : : draft does specify a constraint that requires all fields
4687 : : to interoperate, but if the user says real(4), etc., it
4688 : : may interoperate with *something* in C, but the compiler
4689 : : most likely won't know exactly what. Further, it may not
4690 : : interoperate with the same data type(s) in C if the user
4691 : : recompiles with different flags (e.g., -m32 and -m64 on
4692 : : x86_64 and using integer(4) to claim interop with a
4693 : : C_LONG). */
4694 : 16 : if (derived_sym->attr.is_bind_c == 1 && warn_c_binding_type)
4695 : : /* If the derived type is bind(c), all fields must be
4696 : : interop. */
4697 : 1 : gfc_warning (OPT_Wc_binding_type,
4698 : : "Component %qs in derived type %qs at %L "
4699 : : "may not be C interoperable, even though "
4700 : : "derived type %qs is BIND(C)",
4701 : : curr_comp->name, derived_sym->name,
4702 : : &(curr_comp->loc), derived_sym->name);
4703 : 15 : else if (warn_c_binding_type)
4704 : : /* If derived type is param to bind(c) routine, or to one
4705 : : of the iso_c_binding procs, it must be interoperable, so
4706 : : all fields must interop too. */
4707 : 0 : gfc_warning (OPT_Wc_binding_type,
4708 : : "Component %qs in derived type %qs at %L "
4709 : : "may not be C interoperable",
4710 : : curr_comp->name, derived_sym->name,
4711 : : &(curr_comp->loc));
4712 : : }
4713 : : }
4714 : :
4715 : 835 : curr_comp = curr_comp->next;
4716 : 835 : } while (curr_comp != NULL);
4717 : :
4718 : 398 : if (derived_sym->attr.sequence != 0)
4719 : : {
4720 : 0 : gfc_error ("Derived type %qs at %L cannot have the SEQUENCE "
4721 : : "attribute because it is BIND(C)", derived_sym->name,
4722 : : &(derived_sym->declared_at));
4723 : 0 : retval = false;
4724 : : }
4725 : :
4726 : : /* Mark the derived type as not being C interoperable if we found an
4727 : : error. If there were only warnings, proceed with the assumption
4728 : : it's interoperable. */
4729 : 398 : if (!retval)
4730 : 8 : derived_sym->ts.is_c_interop = 0;
4731 : :
4732 : : return retval;
4733 : : }
4734 : :
4735 : :
4736 : : /* Generate symbols for the named constants c_null_ptr and c_null_funptr. */
4737 : :
4738 : : static bool
4739 : 5844 : gen_special_c_interop_ptr (gfc_symbol *tmp_sym, gfc_symtree *dt_symtree)
4740 : : {
4741 : 5844 : gfc_constructor *c;
4742 : :
4743 : 5844 : gcc_assert (tmp_sym && dt_symtree && dt_symtree->n.sym);
4744 : 5844 : dt_symtree->n.sym->attr.referenced = 1;
4745 : :
4746 : 5844 : tmp_sym->attr.is_c_interop = 1;
4747 : 5844 : tmp_sym->attr.is_bind_c = 1;
4748 : 5844 : tmp_sym->ts.is_c_interop = 1;
4749 : 5844 : tmp_sym->ts.is_iso_c = 1;
4750 : 5844 : tmp_sym->ts.type = BT_DERIVED;
4751 : 5844 : tmp_sym->ts.f90_type = BT_VOID;
4752 : 5844 : tmp_sym->attr.flavor = FL_PARAMETER;
4753 : 5844 : tmp_sym->ts.u.derived = dt_symtree->n.sym;
4754 : :
4755 : : /* Set the c_address field of c_null_ptr and c_null_funptr to
4756 : : the value of NULL. */
4757 : 5844 : tmp_sym->value = gfc_get_expr ();
4758 : 5844 : tmp_sym->value->expr_type = EXPR_STRUCTURE;
4759 : 5844 : tmp_sym->value->ts.type = BT_DERIVED;
4760 : 5844 : tmp_sym->value->ts.f90_type = BT_VOID;
4761 : 5844 : tmp_sym->value->ts.u.derived = tmp_sym->ts.u.derived;
4762 : 5844 : gfc_constructor_append_expr (&tmp_sym->value->value.constructor, NULL, NULL);
4763 : 5844 : c = gfc_constructor_first (tmp_sym->value->value.constructor);
4764 : 5844 : c->expr = gfc_get_int_expr (gfc_index_integer_kind, NULL, 0);
4765 : 5844 : c->expr->ts.is_iso_c = 1;
4766 : :
4767 : 5844 : return true;
4768 : : }
4769 : :
4770 : :
4771 : : /* Add a formal argument, gfc_formal_arglist, to the
4772 : : end of the given list of arguments. Set the reference to the
4773 : : provided symbol, param_sym, in the argument. */
4774 : :
4775 : : static void
4776 : 68741 : add_formal_arg (gfc_formal_arglist **head,
4777 : : gfc_formal_arglist **tail,
4778 : : gfc_formal_arglist *formal_arg,
4779 : : gfc_symbol *param_sym)
4780 : : {
4781 : : /* Put in list, either as first arg or at the tail (curr arg). */
4782 : 0 : if (*head == NULL)
4783 : 0 : *head = *tail = formal_arg;
4784 : : else
4785 : : {
4786 : 39602 : (*tail)->next = formal_arg;
4787 : 39602 : (*tail) = formal_arg;
4788 : : }
4789 : :
4790 : 68741 : (*tail)->sym = param_sym;
4791 : 68741 : (*tail)->next = NULL;
4792 : :
4793 : 68741 : return;
4794 : : }
4795 : :
4796 : :
4797 : : /* Add a procedure interface to the given symbol (i.e., store a
4798 : : reference to the list of formal arguments). */
4799 : :
4800 : : static void
4801 : 29807 : add_proc_interface (gfc_symbol *sym, ifsrc source, gfc_formal_arglist *formal)
4802 : : {
4803 : :
4804 : 29807 : sym->formal = formal;
4805 : 29807 : sym->attr.if_source = source;
4806 : 0 : }
4807 : :
4808 : :
4809 : : /* Copy the formal args from an existing symbol, src, into a new
4810 : : symbol, dest. New formal args are created, and the description of
4811 : : each arg is set according to the existing ones. This function is
4812 : : used when creating procedure declaration variables from a procedure
4813 : : declaration statement (see match_proc_decl()) to create the formal
4814 : : args based on the args of a given named interface.
4815 : :
4816 : : When an actual argument list is provided, skip the absent arguments
4817 : : unless copy_type is true.
4818 : : To be used together with gfc_se->ignore_optional. */
4819 : :
4820 : : void
4821 : 29807 : gfc_copy_formal_args_intr (gfc_symbol *dest, gfc_intrinsic_sym *src,
4822 : : gfc_actual_arglist *actual, bool copy_type)
4823 : : {
4824 : 29807 : gfc_formal_arglist *head = NULL;
4825 : 29807 : gfc_formal_arglist *tail = NULL;
4826 : 29807 : gfc_formal_arglist *formal_arg = NULL;
4827 : 29807 : gfc_intrinsic_arg *curr_arg = NULL;
4828 : 29807 : gfc_formal_arglist *formal_prev = NULL;
4829 : 29807 : gfc_actual_arglist *act_arg = actual;
4830 : : /* Save current namespace so we can change it for formal args. */
4831 : 29807 : gfc_namespace *parent_ns = gfc_current_ns;
4832 : :
4833 : : /* Create a new namespace, which will be the formal ns (namespace
4834 : : of the formal args). */
4835 : 29807 : gfc_current_ns = gfc_get_namespace (parent_ns, 0);
4836 : 29807 : gfc_current_ns->proc_name = dest;
4837 : :
4838 : 100801 : for (curr_arg = src->formal; curr_arg; curr_arg = curr_arg->next)
4839 : : {
4840 : : /* Skip absent arguments. */
4841 : 70994 : if (actual)
4842 : : {
4843 : 12696 : gcc_assert (act_arg != NULL);
4844 : 12696 : if (act_arg->expr == NULL)
4845 : : {
4846 : 2253 : act_arg = act_arg->next;
4847 : 2253 : continue;
4848 : : }
4849 : : }
4850 : 68741 : formal_arg = gfc_get_formal_arglist ();
4851 : 68741 : gfc_get_symbol (curr_arg->name, gfc_current_ns, &(formal_arg->sym));
4852 : :
4853 : : /* May need to copy more info for the symbol. */
4854 : 68741 : if (copy_type && act_arg->expr != NULL)
4855 : : {
4856 : 4604 : formal_arg->sym->ts = act_arg->expr->ts;
4857 : 4604 : if (act_arg->expr->rank > 0)
4858 : : {
4859 : 2167 : formal_arg->sym->attr.dimension = 1;
4860 : 2167 : formal_arg->sym->as = gfc_get_array_spec();
4861 : 2167 : formal_arg->sym->as->rank = -1;
4862 : 2167 : formal_arg->sym->as->type = AS_ASSUMED_RANK;
4863 : : }
4864 : 4604 : if (act_arg->name && strcmp (act_arg->name, "%VAL") == 0)
4865 : 976 : formal_arg->sym->pass_as_value = 1;
4866 : : }
4867 : : else
4868 : 64137 : formal_arg->sym->ts = curr_arg->ts;
4869 : :
4870 : 68741 : formal_arg->sym->attr.optional = curr_arg->optional;
4871 : 68741 : formal_arg->sym->attr.value = curr_arg->value;
4872 : 68741 : formal_arg->sym->attr.intent = curr_arg->intent;
4873 : 68741 : formal_arg->sym->attr.flavor = FL_VARIABLE;
4874 : 68741 : formal_arg->sym->attr.dummy = 1;
4875 : :
4876 : : /* Do not treat an actual deferred-length character argument wrongly
4877 : : as template for the formal argument. */
4878 : 68741 : if (formal_arg->sym->ts.type == BT_CHARACTER
4879 : 1491 : && !(formal_arg->sym->attr.allocatable
4880 : : || formal_arg->sym->attr.pointer))
4881 : 1491 : formal_arg->sym->ts.deferred = false;
4882 : :
4883 : 68741 : if (formal_arg->sym->ts.type == BT_CHARACTER)
4884 : 1491 : formal_arg->sym->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
4885 : :
4886 : : /* If this isn't the first arg, set up the next ptr. For the
4887 : : last arg built, the formal_arg->next will never get set to
4888 : : anything other than NULL. */
4889 : 68741 : if (formal_prev != NULL)
4890 : 39602 : formal_prev->next = formal_arg;
4891 : : else
4892 : : formal_arg->next = NULL;
4893 : :
4894 : 68741 : formal_prev = formal_arg;
4895 : :
4896 : : /* Add arg to list of formal args. */
4897 : 68741 : add_formal_arg (&head, &tail, formal_arg, formal_arg->sym);
4898 : :
4899 : : /* Validate changes. */
4900 : 68741 : gfc_commit_symbol (formal_arg->sym);
4901 : 68741 : if (actual)
4902 : 10443 : act_arg = act_arg->next;
4903 : : }
4904 : :
4905 : : /* Add the interface to the symbol. */
4906 : 29807 : add_proc_interface (dest, IFSRC_DECL, head);
4907 : :
4908 : : /* Store the formal namespace information. */
4909 : 29807 : if (dest->formal != NULL)
4910 : : /* The current ns should be that for the dest proc. */
4911 : 29139 : dest->formal_ns = gfc_current_ns;
4912 : : /* Restore the current namespace to what it was on entry. */
4913 : 29807 : gfc_current_ns = parent_ns;
4914 : 29807 : }
4915 : :
4916 : :
4917 : : static int
4918 : 141076 : std_for_isocbinding_symbol (int id)
4919 : : {
4920 : 141076 : switch (id)
4921 : : {
4922 : : #define NAMED_INTCST(a,b,c,d) \
4923 : : case a:\
4924 : : return d;
4925 : : #include "iso-c-binding.def"
4926 : : #undef NAMED_INTCST
4927 : :
4928 : : #define NAMED_FUNCTION(a,b,c,d) \
4929 : : case a:\
4930 : : return d;
4931 : : #define NAMED_SUBROUTINE(a,b,c,d) \
4932 : : case a:\
4933 : : return d;
4934 : : #include "iso-c-binding.def"
4935 : : #undef NAMED_FUNCTION
4936 : : #undef NAMED_SUBROUTINE
4937 : :
4938 : : default:
4939 : : return GFC_STD_F2003;
4940 : : }
4941 : : }
4942 : :
4943 : : /* Generate the given set of C interoperable kind objects, or all
4944 : : interoperable kinds. This function will only be given kind objects
4945 : : for valid iso_c_binding defined types because this is verified when
4946 : : the 'use' statement is parsed. If the user gives an 'only' clause,
4947 : : the specific kinds are looked up; if they don't exist, an error is
4948 : : reported. If the user does not give an 'only' clause, all
4949 : : iso_c_binding symbols are generated. If a list of specific kinds
4950 : : is given, it must have a NULL in the first empty spot to mark the
4951 : : end of the list. For C_null_(fun)ptr, dt_symtree has to be set and
4952 : : point to the symtree for c_(fun)ptr. */
4953 : :
4954 : : gfc_symtree *
4955 : 141076 : generate_isocbinding_symbol (const char *mod_name, iso_c_binding_symbol s,
4956 : : const char *local_name, gfc_symtree *dt_symtree,
4957 : : bool hidden)
4958 : : {
4959 : 7807 : const char *const name = (local_name && local_name[0])
4960 : 141076 : ? local_name : c_interop_kinds_table[s].name;
4961 : 141076 : gfc_symtree *tmp_symtree;
4962 : 141076 : gfc_symbol *tmp_sym = NULL;
4963 : 141076 : int index;
4964 : :
4965 : 141076 : if (gfc_notification_std (std_for_isocbinding_symbol (s)) == ERROR)
4966 : : return NULL;
4967 : :
4968 : 141076 : tmp_symtree = gfc_find_symtree (gfc_current_ns->sym_root, name);
4969 : 141076 : if (hidden
4970 : 48 : && (!tmp_symtree || !tmp_symtree->n.sym
4971 : 14 : || tmp_symtree->n.sym->from_intmod != INTMOD_ISO_C_BINDING
4972 : 14 : || tmp_symtree->n.sym->intmod_sym_id != s))
4973 : 34 : tmp_symtree = NULL;
4974 : :
4975 : : /* Already exists in this scope so don't re-add it. */
4976 : 318 : if (tmp_symtree != NULL && (tmp_sym = tmp_symtree->n.sym) != NULL
4977 : 318 : && (!tmp_sym->attr.generic
4978 : 52 : || (tmp_sym = gfc_find_dt_in_generic (tmp_sym)) != NULL)
4979 : 141394 : && tmp_sym->from_intmod == INTMOD_ISO_C_BINDING)
4980 : : {
4981 : 318 : if (tmp_sym->attr.flavor == FL_DERIVED
4982 : 318 : && !get_iso_c_binding_dt (tmp_sym->intmod_sym_id))
4983 : : {
4984 : 52 : if (gfc_derived_types)
4985 : : {
4986 : 25 : tmp_sym->dt_next = gfc_derived_types->dt_next;
4987 : 25 : gfc_derived_types->dt_next = tmp_sym;
4988 : : }
4989 : : else
4990 : : {
4991 : 27 : tmp_sym->dt_next = tmp_sym;
4992 : : }
4993 : 52 : gfc_derived_types = tmp_sym;
4994 : : }
4995 : :
4996 : 318 : return tmp_symtree;
4997 : : }
4998 : :
4999 : : /* Create the sym tree in the current ns. */
5000 : 140758 : if (hidden)
5001 : : {
5002 : 34 : tmp_symtree = gfc_get_unique_symtree (gfc_current_ns);
5003 : 34 : tmp_sym = gfc_new_symbol (name, gfc_current_ns);
5004 : :
5005 : : /* Add to the list of tentative symbols. */
5006 : 34 : latest_undo_chgset->syms.safe_push (tmp_sym);
5007 : 34 : tmp_sym->old_symbol = NULL;
5008 : 34 : tmp_sym->mark = 1;
5009 : 34 : tmp_sym->gfc_new = 1;
5010 : :
5011 : 34 : tmp_symtree->n.sym = tmp_sym;
5012 : 34 : tmp_sym->refs++;
5013 : : }
5014 : : else
5015 : : {
5016 : 140724 : gfc_get_sym_tree (name, gfc_current_ns, &tmp_symtree, false);
5017 : 140724 : gcc_assert (tmp_symtree);
5018 : 140724 : tmp_sym = tmp_symtree->n.sym;
5019 : : }
5020 : :
5021 : : /* Say what module this symbol belongs to. */
5022 : 140758 : tmp_sym->module = gfc_get_string ("%s", mod_name);
5023 : 140758 : tmp_sym->from_intmod = INTMOD_ISO_C_BINDING;
5024 : 140758 : tmp_sym->intmod_sym_id = s;
5025 : 140758 : tmp_sym->attr.is_iso_c = 1;
5026 : 140758 : tmp_sym->attr.use_assoc = 1;
5027 : :
5028 : 140758 : gcc_assert (dt_symtree == NULL || s == ISOCBINDING_NULL_FUNPTR
5029 : : || s == ISOCBINDING_NULL_PTR);
5030 : :
5031 : 137810 : switch (s)
5032 : : {
5033 : :
5034 : : #define NAMED_INTCST(a,b,c,d) case a :
5035 : : #define NAMED_REALCST(a,b,c,d) case a :
5036 : : #define NAMED_CMPXCST(a,b,c,d) case a :
5037 : : #define NAMED_LOGCST(a,b,c) case a :
5038 : : #define NAMED_CHARKNDCST(a,b,c) case a :
5039 : : #include "iso-c-binding.def"
5040 : :
5041 : 207994 : tmp_sym->value = gfc_get_int_expr (gfc_default_integer_kind, NULL,
5042 : 103997 : c_interop_kinds_table[s].value);
5043 : :
5044 : : /* Initialize an integer constant expression node. */
5045 : 103997 : tmp_sym->attr.flavor = FL_PARAMETER;
5046 : 103997 : tmp_sym->ts.type = BT_INTEGER;
5047 : 103997 : tmp_sym->ts.kind = gfc_default_integer_kind;
5048 : :
5049 : : /* Mark this type as a C interoperable one. */
5050 : 103997 : tmp_sym->ts.is_c_interop = 1;
5051 : 103997 : tmp_sym->ts.is_iso_c = 1;
5052 : 103997 : tmp_sym->value->ts.is_c_interop = 1;
5053 : 103997 : tmp_sym->value->ts.is_iso_c = 1;
5054 : 103997 : tmp_sym->attr.is_c_interop = 1;
5055 : :
5056 : : /* Tell what f90 type this c interop kind is valid. */
5057 : 103997 : tmp_sym->ts.f90_type = c_interop_kinds_table[s].f90_type;
5058 : :
5059 : 103997 : break;
5060 : :
5061 : :
5062 : : #define NAMED_CHARCST(a,b,c) case a :
5063 : : #include "iso-c-binding.def"
5064 : :
5065 : : /* Initialize an integer constant expression node for the
5066 : : length of the character. */
5067 : 23168 : tmp_sym->value = gfc_get_character_expr (gfc_default_character_kind,
5068 : : &gfc_current_locus, NULL, 1);
5069 : 23168 : tmp_sym->value->ts.is_c_interop = 1;
5070 : 23168 : tmp_sym->value->ts.is_iso_c = 1;
5071 : 23168 : tmp_sym->value->value.character.length = 1;
5072 : 23168 : tmp_sym->value->value.character.string[0]
5073 : 23168 : = (gfc_char_t) c_interop_kinds_table[s].value;
5074 : 23168 : tmp_sym->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
5075 : 23168 : tmp_sym->ts.u.cl->length = gfc_get_int_expr (gfc_charlen_int_kind,
5076 : : NULL, 1);
5077 : :
5078 : : /* May not need this in both attr and ts, but do need in
5079 : : attr for writing module file. */
5080 : 23168 : tmp_sym->attr.is_c_interop = 1;
5081 : :
5082 : 23168 : tmp_sym->attr.flavor = FL_PARAMETER;
5083 : 23168 : tmp_sym->ts.type = BT_CHARACTER;
5084 : :
5085 : : /* Need to set it to the C_CHAR kind. */
5086 : 23168 : tmp_sym->ts.kind = gfc_default_character_kind;
5087 : :
5088 : : /* Mark this type as a C interoperable one. */
5089 : 23168 : tmp_sym->ts.is_c_interop = 1;
5090 : 23168 : tmp_sym->ts.is_iso_c = 1;
5091 : :
5092 : : /* Tell what f90 type this c interop kind is valid. */
5093 : 23168 : tmp_sym->ts.f90_type = BT_CHARACTER;
5094 : :
5095 : 23168 : break;
5096 : :
5097 : 7749 : case ISOCBINDING_PTR:
5098 : 7749 : case ISOCBINDING_FUNPTR:
5099 : 7749 : {
5100 : 7749 : gfc_symbol *dt_sym;
5101 : 7749 : gfc_component *tmp_comp = NULL;
5102 : :
5103 : : /* Generate real derived type. */
5104 : 7749 : if (hidden)
5105 : : dt_sym = tmp_sym;
5106 : : else
5107 : : {
5108 : 7715 : const char *hidden_name;
5109 : 7715 : gfc_interface *intr, *head;
5110 : :
5111 : 7715 : hidden_name = gfc_dt_upper_string (tmp_sym->name);
5112 : 7715 : tmp_symtree = gfc_find_symtree (gfc_current_ns->sym_root,
5113 : : hidden_name);
5114 : 7715 : gcc_assert (tmp_symtree == NULL);
5115 : 7715 : gfc_get_sym_tree (hidden_name, gfc_current_ns, &tmp_symtree, false);
5116 : 7715 : dt_sym = tmp_symtree->n.sym;
5117 : 10699 : dt_sym->name = gfc_get_string (s == ISOCBINDING_PTR
5118 : : ? "c_ptr" : "c_funptr");
5119 : :
5120 : : /* Generate an artificial generic function. */
5121 : 7715 : head = tmp_sym->generic;
5122 : 7715 : intr = gfc_get_interface ();
5123 : 7715 : intr->sym = dt_sym;
5124 : 7715 : intr->where = gfc_current_locus;
5125 : 7715 : intr->next = head;
5126 : 7715 : tmp_sym->generic = intr;
5127 : :
5128 : 7715 : if (!tmp_sym->attr.generic
5129 : 7715 : && !gfc_add_generic (&tmp_sym->attr, tmp_sym->name, NULL))
5130 : 0 : return NULL;
5131 : :
5132 : 7715 : if (!tmp_sym->attr.function
5133 : 7715 : && !gfc_add_function (&tmp_sym->attr, tmp_sym->name, NULL))
5134 : : return NULL;
5135 : : }
5136 : :
5137 : : /* Say what module this symbol belongs to. */
5138 : 7749 : dt_sym->module = gfc_get_string ("%s", mod_name);
5139 : 7749 : dt_sym->from_intmod = INTMOD_ISO_C_BINDING;
5140 : 7749 : dt_sym->intmod_sym_id = s;
5141 : 7749 : dt_sym->attr.use_assoc = 1;
5142 : :
5143 : : /* Initialize an integer constant expression node. */
5144 : 7749 : dt_sym->attr.flavor = FL_DERIVED;
5145 : 7749 : dt_sym->ts.is_c_interop = 1;
5146 : 7749 : dt_sym->attr.is_c_interop = 1;
5147 : 7749 : dt_sym->attr.private_comp = 1;
5148 : 7749 : dt_sym->component_access = ACCESS_PRIVATE;
5149 : 7749 : dt_sym->ts.is_iso_c = 1;
5150 : 7749 : dt_sym->ts.type = BT_DERIVED;
5151 : 7749 : dt_sym->ts.f90_type = BT_VOID;
5152 : :
5153 : : /* A derived type must have the bind attribute to be
5154 : : interoperable (J3/04-007, Section 15.2.3), even though
5155 : : the binding label is not used. */
5156 : 7749 : dt_sym->attr.is_bind_c = 1;
5157 : :
5158 : 7749 : dt_sym->attr.referenced = 1;
5159 : 7749 : dt_sym->ts.u.derived = dt_sym;
5160 : :
5161 : : /* Add the symbol created for the derived type to the current ns. */
5162 : 7749 : if (gfc_derived_types)
5163 : : {
5164 : 5859 : dt_sym->dt_next = gfc_derived_types->dt_next;
5165 : 5859 : gfc_derived_types->dt_next = dt_sym;
5166 : : }
5167 : : else
5168 : : {
5169 : 1890 : dt_sym->dt_next = dt_sym;
5170 : : }
5171 : 7749 : gfc_derived_types = dt_sym;
5172 : :
5173 : 7749 : gfc_add_component (dt_sym, "c_address", &tmp_comp);
5174 : 7749 : if (tmp_comp == NULL)
5175 : 0 : gcc_unreachable ();
5176 : :
5177 : 7749 : tmp_comp->ts.type = BT_INTEGER;
5178 : :
5179 : : /* Set this because the module will need to read/write this field. */
5180 : 7749 : tmp_comp->ts.f90_type = BT_INTEGER;
5181 : :
5182 : : /* The kinds for c_ptr and c_funptr are the same. */
5183 : 7749 : index = get_c_kind ("c_ptr", c_interop_kinds_table);
5184 : 7749 : tmp_comp->ts.kind = c_interop_kinds_table[index].value;
5185 : 7749 : tmp_comp->attr.access = ACCESS_PRIVATE;
5186 : :
5187 : : /* Mark the component as C interoperable. */
5188 : 7749 : tmp_comp->ts.is_c_interop = 1;
5189 : : }
5190 : :
5191 : 7749 : break;
5192 : :
5193 : 5844 : case ISOCBINDING_NULL_PTR:
5194 : 5844 : case ISOCBINDING_NULL_FUNPTR:
5195 : 5844 : gen_special_c_interop_ptr (tmp_sym, dt_symtree);
5196 : 5844 : break;
5197 : :
5198 : 0 : default:
5199 : 0 : gcc_unreachable ();
5200 : : }
5201 : 140758 : gfc_commit_symbol (tmp_sym);
5202 : 140758 : return tmp_symtree;
5203 : : }
5204 : :
5205 : :
5206 : : /* Check that a symbol is already typed. If strict is not set, an untyped
5207 : : symbol is acceptable for non-standard-conforming mode. */
5208 : :
5209 : : bool
5210 : 13671 : gfc_check_symbol_typed (gfc_symbol* sym, gfc_namespace* ns,
5211 : : bool strict, locus where)
5212 : : {
5213 : 13671 : gcc_assert (sym);
5214 : :
5215 : 13671 : if (gfc_matching_prefix)
5216 : : return true;
5217 : :
5218 : : /* Check for the type and try to give it an implicit one. */
5219 : 13632 : if (sym->ts.type == BT_UNKNOWN
5220 : 13632 : && !gfc_set_default_type (sym, 0, ns))
5221 : : {
5222 : 451 : if (strict)
5223 : : {
5224 : 11 : gfc_error ("Symbol %qs is used before it is typed at %L",
5225 : : sym->name, &where);
5226 : 11 : return false;
5227 : : }
5228 : :
5229 : 440 : if (!gfc_notify_std (GFC_STD_GNU, "Symbol %qs is used before"
5230 : : " it is typed at %L", sym->name, &where))
5231 : : return false;
5232 : : }
5233 : :
5234 : : /* Everything is ok. */
5235 : : return true;
5236 : : }
5237 : :
5238 : :
5239 : : /* Construct a typebound-procedure structure. Those are stored in a tentative
5240 : : list and marked `error' until symbols are committed. */
5241 : :
5242 : : gfc_typebound_proc*
5243 : 53064 : gfc_get_typebound_proc (gfc_typebound_proc *tb0)
5244 : : {
5245 : 53064 : gfc_typebound_proc *result;
5246 : :
5247 : 53064 : result = XCNEW (gfc_typebound_proc);
5248 : 53064 : if (tb0)
5249 : 2903 : *result = *tb0;
5250 : 53064 : result->error = 1;
5251 : :
5252 : 53064 : latest_undo_chgset->tbps.safe_push (result);
5253 : :
5254 : 53064 : return result;
5255 : : }
5256 : :
5257 : :
5258 : : /* Get the super-type of a given derived type. */
5259 : :
5260 : : gfc_symbol*
5261 : 733765 : gfc_get_derived_super_type (gfc_symbol* derived)
5262 : : {
5263 : 733765 : gcc_assert (derived);
5264 : :
5265 : 733765 : if (derived->attr.generic)
5266 : 2 : derived = gfc_find_dt_in_generic (derived);
5267 : :
5268 : 733765 : if (!derived->attr.extension)
5269 : : return NULL;
5270 : :
5271 : 112395 : gcc_assert (derived->components);
5272 : 112395 : gcc_assert (derived->components->ts.type == BT_DERIVED);
5273 : 112395 : gcc_assert (derived->components->ts.u.derived);
5274 : :
5275 : 112395 : if (derived->components->ts.u.derived->attr.generic)
5276 : 0 : return gfc_find_dt_in_generic (derived->components->ts.u.derived);
5277 : :
5278 : : return derived->components->ts.u.derived;
5279 : : }
5280 : :
5281 : :
5282 : : /* Check if a derived type t2 is an extension of (or equal to) a type t1. */
5283 : :
5284 : : bool
5285 : 27163 : gfc_type_is_extension_of (gfc_symbol *t1, gfc_symbol *t2)
5286 : : {
5287 : 31021 : while (!gfc_compare_derived_types (t1, t2) && t2->attr.extension)
5288 : 3858 : t2 = gfc_get_derived_super_type (t2);
5289 : 27163 : return gfc_compare_derived_types (t1, t2);
5290 : : }
5291 : :
5292 : : /* Check if parameterized derived type t2 is an instance of pdt template t1
5293 : :
5294 : : gfc_symbol *t1 -> pdt template to verify t2 against.
5295 : : gfc_symbol *t2 -> pdt instance to be verified.
5296 : :
5297 : : In decl.cc, gfc_get_pdt_instance, a pdt instance is given a 3 character
5298 : : prefix "Pdt", followed by an underscore list of the kind parameters,
5299 : : up to a maximum of 8 kind parameters. To verify if a PDT Type corresponds
5300 : : to the template, this functions extracts t2's derive_type name,
5301 : : and compares it to the derive_type name of t1 for compatibility.
5302 : :
5303 : : For example:
5304 : :
5305 : : t2->name = Pdtf_2_2; extract out the 'f' and compare with t1->name. */
5306 : :
5307 : : bool
5308 : 30 : gfc_pdt_is_instance_of (gfc_symbol *t1, gfc_symbol *t2)
5309 : : {
5310 : 30 : if ( !t1->attr.pdt_template || !t2->attr.pdt_type )
5311 : : return false;
5312 : :
5313 : : /* Limit comparison to length of t1->name to ignore new kind params. */
5314 : 30 : if ( !(strncmp (&(t2->name[3]), t1->name, strlen (t1->name)) == 0) )
5315 : 0 : return false;
5316 : :
5317 : : return true;
5318 : : }
5319 : :
5320 : : /* Check if two typespecs are type compatible (F03:5.1.1.2):
5321 : : If ts1 is nonpolymorphic, ts2 must be the same type.
5322 : : If ts1 is polymorphic (CLASS), ts2 must be an extension of ts1. */
5323 : :
5324 : : bool
5325 : 254262 : gfc_type_compatible (gfc_typespec *ts1, gfc_typespec *ts2)
5326 : : {
5327 : 254262 : bool is_class1 = (ts1->type == BT_CLASS);
5328 : 254262 : bool is_class2 = (ts2->type == BT_CLASS);
5329 : 254262 : bool is_derived1 = (ts1->type == BT_DERIVED);
5330 : 254262 : bool is_derived2 = (ts2->type == BT_DERIVED);
5331 : 254262 : bool is_union1 = (ts1->type == BT_UNION);
5332 : 254262 : bool is_union2 = (ts2->type == BT_UNION);
5333 : :
5334 : : /* A boz-literal-constant has no type. */
5335 : 254262 : if (ts1->type == BT_BOZ || ts2->type == BT_BOZ)
5336 : : return false;
5337 : :
5338 : 254260 : if (is_class1
5339 : 25819 : && ts1->u.derived->components
5340 : 25659 : && ((ts1->u.derived->attr.is_class
5341 : 25652 : && ts1->u.derived->components->ts.u.derived->attr
5342 : 25652 : .unlimited_polymorphic)
5343 : 24875 : || ts1->u.derived->attr.unlimited_polymorphic))
5344 : : return 1;
5345 : :
5346 : 253476 : if (!is_derived1 && !is_derived2 && !is_class1 && !is_class2
5347 : 2092 : && !is_union1 && !is_union2)
5348 : 2092 : return (ts1->type == ts2->type);
5349 : :
5350 : 251384 : if ((is_derived1 && is_derived2) || (is_union1 && is_union2))
5351 : 225368 : return gfc_compare_derived_types (ts1->u.derived, ts2->u.derived);
5352 : :
5353 : 26016 : if (is_derived1 && is_class2)
5354 : 977 : return gfc_compare_derived_types (ts1->u.derived,
5355 : 977 : ts2->u.derived->attr.is_class ?
5356 : 974 : ts2->u.derived->components->ts.u.derived
5357 : 977 : : ts2->u.derived);
5358 : 25039 : if (is_class1 && is_derived2)
5359 : 17133 : return gfc_type_is_extension_of (ts1->u.derived->attr.is_class ?
5360 : 8566 : ts1->u.derived->components->ts.u.derived
5361 : : : ts1->u.derived,
5362 : 8567 : ts2->u.derived);
5363 : 16472 : else if (is_class1 && is_class2)
5364 : 32770 : return gfc_type_is_extension_of (ts1->u.derived->attr.is_class ?
5365 : 16302 : ts1->u.derived->components->ts.u.derived
5366 : : : ts1->u.derived,
5367 : 16468 : ts2->u.derived->attr.is_class ?
5368 : 16303 : ts2->u.derived->components->ts.u.derived
5369 : 16468 : : ts2->u.derived);
5370 : : else
5371 : : return 0;
5372 : : }
5373 : :
5374 : :
5375 : : /* Find the parent-namespace of the current function. If we're inside
5376 : : BLOCK constructs, it may not be the current one. */
5377 : :
5378 : : gfc_namespace*
5379 : 58719 : gfc_find_proc_namespace (gfc_namespace* ns)
5380 : : {
5381 : 59287 : while (ns->construct_entities)
5382 : : {
5383 : 568 : ns = ns->parent;
5384 : 568 : gcc_assert (ns);
5385 : : }
5386 : :
5387 : 58719 : return ns;
5388 : : }
5389 : :
5390 : :
5391 : : /* Check if an associate-variable should be translated as an `implicit' pointer
5392 : : internally (if it is associated to a variable and not an array with
5393 : : descriptor). */
5394 : :
5395 : : bool
5396 : 435027 : gfc_is_associate_pointer (gfc_symbol* sym)
5397 : : {
5398 : 435027 : if (!sym->assoc)
5399 : : return false;
5400 : :
5401 : 10841 : if (sym->ts.type == BT_CLASS)
5402 : : return true;
5403 : :
5404 : 6049 : if (sym->ts.type == BT_CHARACTER
5405 : 1140 : && sym->ts.deferred
5406 : 56 : && sym->assoc->target
5407 : 56 : && sym->assoc->target->expr_type == EXPR_FUNCTION)
5408 : : return true;
5409 : :
5410 : 6043 : if (!sym->assoc->variable)
5411 : : return false;
5412 : :
5413 : 5445 : if ((sym->attr.dimension || sym->attr.codimension)
5414 : 0 : && sym->as->type != AS_EXPLICIT)
5415 : 0 : return false;
5416 : :
5417 : : return true;
5418 : : }
5419 : :
5420 : :
5421 : : gfc_symbol *
5422 : 30466 : gfc_find_dt_in_generic (gfc_symbol *sym)
5423 : : {
5424 : 30466 : gfc_interface *intr = NULL;
5425 : :
5426 : 30466 : if (!sym || gfc_fl_struct (sym->attr.flavor))
5427 : : return sym;
5428 : :
5429 : 30466 : if (sym->attr.generic)
5430 : 32053 : for (intr = sym->generic; intr; intr = intr->next)
5431 : 20262 : if (gfc_fl_struct (intr->sym->attr.flavor))
5432 : : break;
5433 : 30464 : return intr ? intr->sym : NULL;
5434 : : }
5435 : :
5436 : :
5437 : : /* Get the dummy arguments from a procedure symbol. If it has been declared
5438 : : via a PROCEDURE statement with a named interface, ts.interface will be set
5439 : : and the arguments need to be taken from there. */
5440 : :
5441 : : gfc_formal_arglist *
5442 : 3237776 : gfc_sym_get_dummy_args (gfc_symbol *sym)
5443 : : {
5444 : 3237776 : gfc_formal_arglist *dummies;
5445 : :
5446 : 3237776 : if (sym == NULL)
5447 : : return NULL;
5448 : :
5449 : 3237775 : dummies = sym->formal;
5450 : 3237775 : if (dummies == NULL && sym->ts.interface != NULL)
5451 : 6408 : dummies = sym->ts.interface->formal;
5452 : :
5453 : : return dummies;
5454 : : }
5455 : :
5456 : :
5457 : : /* Given a procedure, returns the associated namespace.
5458 : : The resulting NS should match the condition NS->PROC_NAME == SYM. */
5459 : :
5460 : : gfc_namespace *
5461 : 645583 : gfc_get_procedure_ns (gfc_symbol *sym)
5462 : : {
5463 : 645583 : if (sym->formal_ns
5464 : 486845 : && sym->formal_ns->proc_name == sym)
5465 : : return sym->formal_ns;
5466 : :
5467 : : /* The above should have worked in most cases. If it hasn't, try some other
5468 : : heuristics, eventually returning SYM->NS. */
5469 : 159158 : if (gfc_current_ns->proc_name == sym)
5470 : : return gfc_current_ns;
5471 : :
5472 : : /* For contained procedures, the symbol's NS field is the
5473 : : hosting namespace, not the procedure namespace. */
5474 : 136214 : if (sym->attr.flavor == FL_PROCEDURE && sym->attr.contained)
5475 : 146572 : for (gfc_namespace *ns = sym->ns->contained; ns; ns = ns->sibling)
5476 : 146220 : if (ns->proc_name == sym)
5477 : 36773 : return ns;
5478 : :
5479 : 99441 : if (sym->formal)
5480 : 3876 : for (gfc_formal_arglist *f = sym->formal; f != nullptr; f = f->next)
5481 : 2246 : if (f->sym)
5482 : : {
5483 : 2199 : gfc_namespace *ns = f->sym->ns;
5484 : 2199 : if (ns && ns->proc_name == sym)
5485 : 0 : return ns;
5486 : : }
5487 : :
5488 : 99441 : return sym->ns;
5489 : : }
5490 : :
5491 : :
5492 : : /* Given a symbol, returns the namespace in which the symbol is specified.
5493 : : In most cases, it is the namespace hosting the symbol. This is the case
5494 : : for variables. For functions, however, it is the function namespace
5495 : : itself. This specification namespace is used to check conformance of
5496 : : array spec bound expressions. */
5497 : :
5498 : : gfc_namespace *
5499 : 1507543 : gfc_get_spec_ns (gfc_symbol *sym)
5500 : : {
5501 : 1507543 : if (sym->attr.flavor == FL_PROCEDURE
5502 : 409686 : && sym->attr.function)
5503 : : {
5504 : 272553 : if (sym->result == sym)
5505 : 196727 : return gfc_get_procedure_ns (sym);
5506 : : /* Generic and intrinsic functions can have a null result. */
5507 : 75826 : else if (sym->result != nullptr)
5508 : 32522 : return sym->result->ns;
5509 : : }
5510 : :
5511 : 1278294 : return sym->ns;
5512 : : }
|