2015-03-03 Andrew Sutton <andrew.n.sutton@gmail.com>
[official-gcc.git] / gcc / fortran / symbol.c
blob3eb58f4c8f429a0a08d50d5aa610bf7f4175aeaa
1 /* Maintain binary trees of symbols.
2 Copyright (C) 2000-2014 Free Software Foundation, Inc.
3 Contributed by Andy Vaught
5 This file is part of GCC.
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.
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.
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/>. */
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "flags.h"
26 #include "gfortran.h"
27 #include "parse.h"
28 #include "match.h"
29 #include "constructor.h"
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. */
36 const mstring flavors[] =
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 (NULL, -1)
46 const mstring procedures[] =
48 minit ("UNKNOWN-PROC", PROC_UNKNOWN),
49 minit ("MODULE-PROC", PROC_MODULE),
50 minit ("INTERNAL-PROC", PROC_INTERNAL),
51 minit ("DUMMY-PROC", PROC_DUMMY),
52 minit ("INTRINSIC-PROC", PROC_INTRINSIC),
53 minit ("EXTERNAL-PROC", PROC_EXTERNAL),
54 minit ("STATEMENT-PROC", PROC_ST_FUNCTION),
55 minit (NULL, -1)
58 const mstring intents[] =
60 minit ("UNKNOWN-INTENT", INTENT_UNKNOWN),
61 minit ("IN", INTENT_IN),
62 minit ("OUT", INTENT_OUT),
63 minit ("INOUT", INTENT_INOUT),
64 minit (NULL, -1)
67 const mstring access_types[] =
69 minit ("UNKNOWN-ACCESS", ACCESS_UNKNOWN),
70 minit ("PUBLIC", ACCESS_PUBLIC),
71 minit ("PRIVATE", ACCESS_PRIVATE),
72 minit (NULL, -1)
75 const mstring ifsrc_types[] =
77 minit ("UNKNOWN", IFSRC_UNKNOWN),
78 minit ("DECL", IFSRC_DECL),
79 minit ("BODY", IFSRC_IFBODY)
82 const mstring save_status[] =
84 minit ("UNKNOWN", SAVE_NONE),
85 minit ("EXPLICIT-SAVE", SAVE_EXPLICIT),
86 minit ("IMPLICIT-SAVE", SAVE_IMPLICIT),
89 /* This is to make sure the backend generates setup code in the correct
90 order. */
92 static int next_dummy_order = 1;
95 gfc_namespace *gfc_current_ns;
96 gfc_namespace *gfc_global_ns_list;
98 gfc_gsymbol *gfc_gsym_root = NULL;
100 gfc_dt_list *gfc_derived_types;
102 static gfc_undo_change_set default_undo_chgset_var = { vNULL, vNULL, NULL };
103 static gfc_undo_change_set *latest_undo_chgset = &default_undo_chgset_var;
106 /*********** IMPLICIT NONE and IMPLICIT statement handlers ***********/
108 /* The following static variable indicates whether a particular element has
109 been explicitly set or not. */
111 static int new_flag[GFC_LETTERS];
114 /* Handle a correctly parsed IMPLICIT NONE. */
116 void
117 gfc_set_implicit_none (bool type, bool external, locus *loc)
119 int i;
121 if (external)
122 gfc_current_ns->has_implicit_none_export = 1;
124 if (type)
126 gfc_current_ns->seen_implicit_none = 1;
127 for (i = 0; i < GFC_LETTERS; i++)
129 if (gfc_current_ns->set_flag[i])
131 gfc_error_now ("IMPLICIT NONE (type) statement at %L following an "
132 "IMPLICIT statement", loc);
133 return;
135 gfc_clear_ts (&gfc_current_ns->default_type[i]);
136 gfc_current_ns->set_flag[i] = 1;
142 /* Reset the implicit range flags. */
144 void
145 gfc_clear_new_implicit (void)
147 int i;
149 for (i = 0; i < GFC_LETTERS; i++)
150 new_flag[i] = 0;
154 /* Prepare for a new implicit range. Sets flags in new_flag[]. */
156 bool
157 gfc_add_new_implicit_range (int c1, int c2)
159 int i;
161 c1 -= 'a';
162 c2 -= 'a';
164 for (i = c1; i <= c2; i++)
166 if (new_flag[i])
168 gfc_error ("Letter '%c' already set in IMPLICIT statement at %C",
169 i + 'A');
170 return false;
173 new_flag[i] = 1;
176 return true;
180 /* Add a matched implicit range for gfc_set_implicit(). Check if merging
181 the new implicit types back into the existing types will work. */
183 bool
184 gfc_merge_new_implicit (gfc_typespec *ts)
186 int i;
188 if (gfc_current_ns->seen_implicit_none)
190 gfc_error ("Cannot specify IMPLICIT at %C after IMPLICIT NONE");
191 return false;
194 for (i = 0; i < GFC_LETTERS; i++)
196 if (new_flag[i])
198 if (gfc_current_ns->set_flag[i])
200 gfc_error ("Letter %c already has an IMPLICIT type at %C",
201 i + 'A');
202 return false;
205 gfc_current_ns->default_type[i] = *ts;
206 gfc_current_ns->implicit_loc[i] = gfc_current_locus;
207 gfc_current_ns->set_flag[i] = 1;
210 return true;
214 /* Given a symbol, return a pointer to the typespec for its default type. */
216 gfc_typespec *
217 gfc_get_default_type (const char *name, gfc_namespace *ns)
219 char letter;
221 letter = name[0];
223 if (gfc_option.flag_allow_leading_underscore && letter == '_')
224 gfc_internal_error ("Option -fallow-leading-underscore is for use only by "
225 "gfortran developers, and should not be used for "
226 "implicitly typed variables");
228 if (letter < 'a' || letter > 'z')
229 gfc_internal_error ("gfc_get_default_type(): Bad symbol '%s'", name);
231 if (ns == NULL)
232 ns = gfc_current_ns;
234 return &ns->default_type[letter - 'a'];
238 /* Given a pointer to a symbol, set its type according to the first
239 letter of its name. Fails if the letter in question has no default
240 type. */
242 bool
243 gfc_set_default_type (gfc_symbol *sym, int error_flag, gfc_namespace *ns)
245 gfc_typespec *ts;
247 if (sym->ts.type != BT_UNKNOWN)
248 gfc_internal_error ("gfc_set_default_type(): symbol already has a type");
250 ts = gfc_get_default_type (sym->name, ns);
252 if (ts->type == BT_UNKNOWN)
254 if (error_flag && !sym->attr.untyped)
256 gfc_error ("Symbol '%s' at %L has no IMPLICIT type",
257 sym->name, &sym->declared_at);
258 sym->attr.untyped = 1; /* Ensure we only give an error once. */
261 return false;
264 sym->ts = *ts;
265 sym->attr.implicit_type = 1;
267 if (ts->type == BT_CHARACTER && ts->u.cl)
268 sym->ts.u.cl = gfc_new_charlen (sym->ns, ts->u.cl);
269 else if (ts->type == BT_CLASS
270 && !gfc_build_class_symbol (&sym->ts, &sym->attr, &sym->as))
271 return false;
273 if (sym->attr.is_bind_c == 1 && gfc_option.warn_c_binding_type)
275 /* BIND(C) variables should not be implicitly declared. */
276 gfc_warning_now ("Implicitly declared BIND(C) variable '%s' at %L may "
277 "not be C interoperable", sym->name, &sym->declared_at);
278 sym->ts.f90_type = sym->ts.type;
281 if (sym->attr.dummy != 0)
283 if (sym->ns->proc_name != NULL
284 && (sym->ns->proc_name->attr.subroutine != 0
285 || sym->ns->proc_name->attr.function != 0)
286 && sym->ns->proc_name->attr.is_bind_c != 0
287 && gfc_option.warn_c_binding_type)
289 /* Dummy args to a BIND(C) routine may not be interoperable if
290 they are implicitly typed. */
291 gfc_warning_now ("Implicitly declared variable '%s' at %L may not "
292 "be C interoperable but it is a dummy argument to "
293 "the BIND(C) procedure '%s' at %L", sym->name,
294 &(sym->declared_at), sym->ns->proc_name->name,
295 &(sym->ns->proc_name->declared_at));
296 sym->ts.f90_type = sym->ts.type;
300 return true;
304 /* This function is called from parse.c(parse_progunit) to check the
305 type of the function is not implicitly typed in the host namespace
306 and to implicitly type the function result, if necessary. */
308 void
309 gfc_check_function_type (gfc_namespace *ns)
311 gfc_symbol *proc = ns->proc_name;
313 if (!proc->attr.contained || proc->result->attr.implicit_type)
314 return;
316 if (proc->result->ts.type == BT_UNKNOWN && proc->result->ts.interface == NULL)
318 if (gfc_set_default_type (proc->result, 0, gfc_current_ns))
320 if (proc->result != proc)
322 proc->ts = proc->result->ts;
323 proc->as = gfc_copy_array_spec (proc->result->as);
324 proc->attr.dimension = proc->result->attr.dimension;
325 proc->attr.pointer = proc->result->attr.pointer;
326 proc->attr.allocatable = proc->result->attr.allocatable;
329 else if (!proc->result->attr.proc_pointer)
331 gfc_error ("Function result '%s' at %L has no IMPLICIT type",
332 proc->result->name, &proc->result->declared_at);
333 proc->result->attr.untyped = 1;
339 /******************** Symbol attribute stuff *********************/
341 /* This is a generic conflict-checker. We do this to avoid having a
342 single conflict in two places. */
344 #define conf(a, b) if (attr->a && attr->b) { a1 = a; a2 = b; goto conflict; }
345 #define conf2(a) if (attr->a) { a2 = a; goto conflict; }
346 #define conf_std(a, b, std) if (attr->a && attr->b)\
348 a1 = a;\
349 a2 = b;\
350 standard = std;\
351 goto conflict_std;\
354 static bool
355 check_conflict (symbol_attribute *attr, const char *name, locus *where)
357 static const char *dummy = "DUMMY", *save = "SAVE", *pointer = "POINTER",
358 *target = "TARGET", *external = "EXTERNAL", *intent = "INTENT",
359 *intent_in = "INTENT(IN)", *intrinsic = "INTRINSIC",
360 *intent_out = "INTENT(OUT)", *intent_inout = "INTENT(INOUT)",
361 *allocatable = "ALLOCATABLE", *elemental = "ELEMENTAL",
362 *privat = "PRIVATE", *recursive = "RECURSIVE",
363 *in_common = "COMMON", *result = "RESULT", *in_namelist = "NAMELIST",
364 *publik = "PUBLIC", *optional = "OPTIONAL", *entry = "ENTRY",
365 *function = "FUNCTION", *subroutine = "SUBROUTINE",
366 *dimension = "DIMENSION", *in_equivalence = "EQUIVALENCE",
367 *use_assoc = "USE ASSOCIATED", *cray_pointer = "CRAY POINTER",
368 *cray_pointee = "CRAY POINTEE", *data = "DATA", *value = "VALUE",
369 *volatile_ = "VOLATILE", *is_protected = "PROTECTED",
370 *is_bind_c = "BIND(C)", *procedure = "PROCEDURE",
371 *proc_pointer = "PROCEDURE POINTER", *abstract = "ABSTRACT",
372 *asynchronous = "ASYNCHRONOUS", *codimension = "CODIMENSION",
373 *contiguous = "CONTIGUOUS", *generic = "GENERIC";
374 static const char *threadprivate = "THREADPRIVATE";
375 static const char *omp_declare_target = "OMP DECLARE TARGET";
377 const char *a1, *a2;
378 int standard;
380 if (where == NULL)
381 where = &gfc_current_locus;
383 if (attr->pointer && attr->intent != INTENT_UNKNOWN)
385 a1 = pointer;
386 a2 = intent;
387 standard = GFC_STD_F2003;
388 goto conflict_std;
391 if (attr->in_namelist && (attr->allocatable || attr->pointer))
393 a1 = in_namelist;
394 a2 = attr->allocatable ? allocatable : pointer;
395 standard = GFC_STD_F2003;
396 goto conflict_std;
399 /* Check for attributes not allowed in a BLOCK DATA. */
400 if (gfc_current_state () == COMP_BLOCK_DATA)
402 a1 = NULL;
404 if (attr->in_namelist)
405 a1 = in_namelist;
406 if (attr->allocatable)
407 a1 = allocatable;
408 if (attr->external)
409 a1 = external;
410 if (attr->optional)
411 a1 = optional;
412 if (attr->access == ACCESS_PRIVATE)
413 a1 = privat;
414 if (attr->access == ACCESS_PUBLIC)
415 a1 = publik;
416 if (attr->intent != INTENT_UNKNOWN)
417 a1 = intent;
419 if (a1 != NULL)
421 gfc_error
422 ("%s attribute not allowed in BLOCK DATA program unit at %L",
423 a1, where);
424 return false;
428 if (attr->save == SAVE_EXPLICIT)
430 conf (dummy, save);
431 conf (in_common, save);
432 conf (result, save);
434 switch (attr->flavor)
436 case FL_PROGRAM:
437 case FL_BLOCK_DATA:
438 case FL_MODULE:
439 case FL_LABEL:
440 case FL_DERIVED:
441 case FL_PARAMETER:
442 a1 = gfc_code2string (flavors, attr->flavor);
443 a2 = save;
444 goto conflict;
445 case FL_NAMELIST:
446 gfc_error ("Namelist group name at %L cannot have the "
447 "SAVE attribute", where);
448 return false;
449 break;
450 case FL_PROCEDURE:
451 /* Conflicts between SAVE and PROCEDURE will be checked at
452 resolution stage, see "resolve_fl_procedure". */
453 case FL_VARIABLE:
454 default:
455 break;
459 conf (dummy, entry);
460 conf (dummy, intrinsic);
461 conf (dummy, threadprivate);
462 conf (dummy, omp_declare_target);
463 conf (pointer, target);
464 conf (pointer, intrinsic);
465 conf (pointer, elemental);
466 conf (pointer, codimension);
467 conf (allocatable, elemental);
469 conf (target, external);
470 conf (target, intrinsic);
472 if (!attr->if_source)
473 conf (external, dimension); /* See Fortran 95's R504. */
475 conf (external, intrinsic);
476 conf (entry, intrinsic);
478 if ((attr->if_source == IFSRC_DECL && !attr->procedure) || attr->contained)
479 conf (external, subroutine);
481 if (attr->proc_pointer && !gfc_notify_std (GFC_STD_F2003,
482 "Procedure pointer at %C"))
483 return false;
485 conf (allocatable, pointer);
486 conf_std (allocatable, dummy, GFC_STD_F2003);
487 conf_std (allocatable, function, GFC_STD_F2003);
488 conf_std (allocatable, result, GFC_STD_F2003);
489 conf (elemental, recursive);
491 conf (in_common, dummy);
492 conf (in_common, allocatable);
493 conf (in_common, codimension);
494 conf (in_common, result);
496 conf (in_equivalence, use_assoc);
497 conf (in_equivalence, codimension);
498 conf (in_equivalence, dummy);
499 conf (in_equivalence, target);
500 conf (in_equivalence, pointer);
501 conf (in_equivalence, function);
502 conf (in_equivalence, result);
503 conf (in_equivalence, entry);
504 conf (in_equivalence, allocatable);
505 conf (in_equivalence, threadprivate);
506 conf (in_equivalence, omp_declare_target);
508 conf (dummy, result);
509 conf (entry, result);
510 conf (generic, result);
512 conf (function, subroutine);
514 if (!function && !subroutine)
515 conf (is_bind_c, dummy);
517 conf (is_bind_c, cray_pointer);
518 conf (is_bind_c, cray_pointee);
519 conf (is_bind_c, codimension);
520 conf (is_bind_c, allocatable);
521 conf (is_bind_c, elemental);
523 /* Need to also get volatile attr, according to 5.1 of F2003 draft.
524 Parameter conflict caught below. Also, value cannot be specified
525 for a dummy procedure. */
527 /* Cray pointer/pointee conflicts. */
528 conf (cray_pointer, cray_pointee);
529 conf (cray_pointer, dimension);
530 conf (cray_pointer, codimension);
531 conf (cray_pointer, contiguous);
532 conf (cray_pointer, pointer);
533 conf (cray_pointer, target);
534 conf (cray_pointer, allocatable);
535 conf (cray_pointer, external);
536 conf (cray_pointer, intrinsic);
537 conf (cray_pointer, in_namelist);
538 conf (cray_pointer, function);
539 conf (cray_pointer, subroutine);
540 conf (cray_pointer, entry);
542 conf (cray_pointee, allocatable);
543 conf (cray_pointee, contiguous);
544 conf (cray_pointee, codimension);
545 conf (cray_pointee, intent);
546 conf (cray_pointee, optional);
547 conf (cray_pointee, dummy);
548 conf (cray_pointee, target);
549 conf (cray_pointee, intrinsic);
550 conf (cray_pointee, pointer);
551 conf (cray_pointee, entry);
552 conf (cray_pointee, in_common);
553 conf (cray_pointee, in_equivalence);
554 conf (cray_pointee, threadprivate);
555 conf (cray_pointee, omp_declare_target);
557 conf (data, dummy);
558 conf (data, function);
559 conf (data, result);
560 conf (data, allocatable);
562 conf (value, pointer)
563 conf (value, allocatable)
564 conf (value, subroutine)
565 conf (value, function)
566 conf (value, volatile_)
567 conf (value, dimension)
568 conf (value, codimension)
569 conf (value, external)
571 conf (codimension, result)
573 if (attr->value
574 && (attr->intent == INTENT_OUT || attr->intent == INTENT_INOUT))
576 a1 = value;
577 a2 = attr->intent == INTENT_OUT ? intent_out : intent_inout;
578 goto conflict;
581 conf (is_protected, intrinsic)
582 conf (is_protected, in_common)
584 conf (asynchronous, intrinsic)
585 conf (asynchronous, external)
587 conf (volatile_, intrinsic)
588 conf (volatile_, external)
590 if (attr->volatile_ && attr->intent == INTENT_IN)
592 a1 = volatile_;
593 a2 = intent_in;
594 goto conflict;
597 conf (procedure, allocatable)
598 conf (procedure, dimension)
599 conf (procedure, codimension)
600 conf (procedure, intrinsic)
601 conf (procedure, target)
602 conf (procedure, value)
603 conf (procedure, volatile_)
604 conf (procedure, asynchronous)
605 conf (procedure, entry)
607 conf (proc_pointer, abstract)
609 conf (entry, omp_declare_target)
611 a1 = gfc_code2string (flavors, attr->flavor);
613 if (attr->in_namelist
614 && attr->flavor != FL_VARIABLE
615 && attr->flavor != FL_PROCEDURE
616 && attr->flavor != FL_UNKNOWN)
618 a2 = in_namelist;
619 goto conflict;
622 switch (attr->flavor)
624 case FL_PROGRAM:
625 case FL_BLOCK_DATA:
626 case FL_MODULE:
627 case FL_LABEL:
628 conf2 (codimension);
629 conf2 (dimension);
630 conf2 (dummy);
631 conf2 (volatile_);
632 conf2 (asynchronous);
633 conf2 (contiguous);
634 conf2 (pointer);
635 conf2 (is_protected);
636 conf2 (target);
637 conf2 (external);
638 conf2 (intrinsic);
639 conf2 (allocatable);
640 conf2 (result);
641 conf2 (in_namelist);
642 conf2 (optional);
643 conf2 (function);
644 conf2 (subroutine);
645 conf2 (threadprivate);
646 conf2 (omp_declare_target);
648 if (attr->access == ACCESS_PUBLIC || attr->access == ACCESS_PRIVATE)
650 a2 = attr->access == ACCESS_PUBLIC ? publik : privat;
651 gfc_error ("%s attribute applied to %s %s at %L", a2, a1,
652 name, where);
653 return false;
656 if (attr->is_bind_c)
658 gfc_error_now ("BIND(C) applied to %s %s at %L", a1, name, where);
659 return false;
662 break;
664 case FL_VARIABLE:
665 break;
667 case FL_NAMELIST:
668 conf2 (result);
669 break;
671 case FL_PROCEDURE:
672 /* Conflicts with INTENT, SAVE and RESULT will be checked
673 at resolution stage, see "resolve_fl_procedure". */
675 if (attr->subroutine)
677 a1 = subroutine;
678 conf2 (target);
679 conf2 (allocatable);
680 conf2 (volatile_);
681 conf2 (asynchronous);
682 conf2 (in_namelist);
683 conf2 (codimension);
684 conf2 (dimension);
685 conf2 (function);
686 if (!attr->proc_pointer)
687 conf2 (threadprivate);
690 if (!attr->proc_pointer)
691 conf2 (in_common);
693 switch (attr->proc)
695 case PROC_ST_FUNCTION:
696 conf2 (dummy);
697 conf2 (target);
698 break;
700 case PROC_MODULE:
701 conf2 (dummy);
702 break;
704 case PROC_DUMMY:
705 conf2 (result);
706 conf2 (threadprivate);
707 break;
709 default:
710 break;
713 break;
715 case FL_DERIVED:
716 conf2 (dummy);
717 conf2 (pointer);
718 conf2 (target);
719 conf2 (external);
720 conf2 (intrinsic);
721 conf2 (allocatable);
722 conf2 (optional);
723 conf2 (entry);
724 conf2 (function);
725 conf2 (subroutine);
726 conf2 (threadprivate);
727 conf2 (result);
728 conf2 (omp_declare_target);
730 if (attr->intent != INTENT_UNKNOWN)
732 a2 = intent;
733 goto conflict;
735 break;
737 case FL_PARAMETER:
738 conf2 (external);
739 conf2 (intrinsic);
740 conf2 (optional);
741 conf2 (allocatable);
742 conf2 (function);
743 conf2 (subroutine);
744 conf2 (entry);
745 conf2 (contiguous);
746 conf2 (pointer);
747 conf2 (is_protected);
748 conf2 (target);
749 conf2 (dummy);
750 conf2 (in_common);
751 conf2 (value);
752 conf2 (volatile_);
753 conf2 (asynchronous);
754 conf2 (threadprivate);
755 conf2 (value);
756 conf2 (codimension);
757 conf2 (result);
758 if (!attr->is_iso_c)
759 conf2 (is_bind_c);
760 break;
762 default:
763 break;
766 return true;
768 conflict:
769 if (name == NULL)
770 gfc_error ("%s attribute conflicts with %s attribute at %L",
771 a1, a2, where);
772 else
773 gfc_error ("%s attribute conflicts with %s attribute in '%s' at %L",
774 a1, a2, name, where);
776 return false;
778 conflict_std:
779 if (name == NULL)
781 return gfc_notify_std (standard, "%s attribute "
782 "with %s attribute at %L", a1, a2,
783 where);
785 else
787 return gfc_notify_std (standard, "%s attribute "
788 "with %s attribute in '%s' at %L",
789 a1, a2, name, where);
793 #undef conf
794 #undef conf2
795 #undef conf_std
798 /* Mark a symbol as referenced. */
800 void
801 gfc_set_sym_referenced (gfc_symbol *sym)
804 if (sym->attr.referenced)
805 return;
807 sym->attr.referenced = 1;
809 /* Remember which order dummy variables are accessed in. */
810 if (sym->attr.dummy)
811 sym->dummy_order = next_dummy_order++;
815 /* Common subroutine called by attribute changing subroutines in order
816 to prevent them from changing a symbol that has been
817 use-associated. Returns zero if it is OK to change the symbol,
818 nonzero if not. */
820 static int
821 check_used (symbol_attribute *attr, const char *name, locus *where)
824 if (attr->use_assoc == 0)
825 return 0;
827 if (where == NULL)
828 where = &gfc_current_locus;
830 if (name == NULL)
831 gfc_error ("Cannot change attributes of USE-associated symbol at %L",
832 where);
833 else
834 gfc_error ("Cannot change attributes of USE-associated symbol %s at %L",
835 name, where);
837 return 1;
841 /* Generate an error because of a duplicate attribute. */
843 static void
844 duplicate_attr (const char *attr, locus *where)
847 if (where == NULL)
848 where = &gfc_current_locus;
850 gfc_error ("Duplicate %s attribute specified at %L", attr, where);
854 bool
855 gfc_add_ext_attribute (symbol_attribute *attr, ext_attr_id_t ext_attr,
856 locus *where ATTRIBUTE_UNUSED)
858 attr->ext_attr |= 1 << ext_attr;
859 return true;
863 /* Called from decl.c (attr_decl1) to check attributes, when declared
864 separately. */
866 bool
867 gfc_add_attribute (symbol_attribute *attr, locus *where)
869 if (check_used (attr, NULL, where))
870 return false;
872 return check_conflict (attr, NULL, where);
876 bool
877 gfc_add_allocatable (symbol_attribute *attr, locus *where)
880 if (check_used (attr, NULL, where))
881 return false;
883 if (attr->allocatable)
885 duplicate_attr ("ALLOCATABLE", where);
886 return false;
889 if (attr->flavor == FL_PROCEDURE && attr->if_source == IFSRC_IFBODY
890 && !gfc_find_state (COMP_INTERFACE))
892 gfc_error ("ALLOCATABLE specified outside of INTERFACE body at %L",
893 where);
894 return false;
897 attr->allocatable = 1;
898 return check_conflict (attr, NULL, where);
902 bool
903 gfc_add_codimension (symbol_attribute *attr, const char *name, locus *where)
906 if (check_used (attr, name, where))
907 return false;
909 if (attr->codimension)
911 duplicate_attr ("CODIMENSION", where);
912 return false;
915 if (attr->flavor == FL_PROCEDURE && attr->if_source == IFSRC_IFBODY
916 && !gfc_find_state (COMP_INTERFACE))
918 gfc_error ("CODIMENSION specified for '%s' outside its INTERFACE body "
919 "at %L", name, where);
920 return false;
923 attr->codimension = 1;
924 return check_conflict (attr, name, where);
928 bool
929 gfc_add_dimension (symbol_attribute *attr, const char *name, locus *where)
932 if (check_used (attr, name, where))
933 return false;
935 if (attr->dimension)
937 duplicate_attr ("DIMENSION", where);
938 return false;
941 if (attr->flavor == FL_PROCEDURE && attr->if_source == IFSRC_IFBODY
942 && !gfc_find_state (COMP_INTERFACE))
944 gfc_error ("DIMENSION specified for '%s' outside its INTERFACE body "
945 "at %L", name, where);
946 return false;
949 attr->dimension = 1;
950 return check_conflict (attr, name, where);
954 bool
955 gfc_add_contiguous (symbol_attribute *attr, const char *name, locus *where)
958 if (check_used (attr, name, where))
959 return false;
961 attr->contiguous = 1;
962 return check_conflict (attr, name, where);
966 bool
967 gfc_add_external (symbol_attribute *attr, locus *where)
970 if (check_used (attr, NULL, where))
971 return false;
973 if (attr->external)
975 duplicate_attr ("EXTERNAL", where);
976 return false;
979 if (attr->pointer && attr->if_source != IFSRC_IFBODY)
981 attr->pointer = 0;
982 attr->proc_pointer = 1;
985 attr->external = 1;
987 return check_conflict (attr, NULL, where);
991 bool
992 gfc_add_intrinsic (symbol_attribute *attr, locus *where)
995 if (check_used (attr, NULL, where))
996 return false;
998 if (attr->intrinsic)
1000 duplicate_attr ("INTRINSIC", where);
1001 return false;
1004 attr->intrinsic = 1;
1006 return check_conflict (attr, NULL, where);
1010 bool
1011 gfc_add_optional (symbol_attribute *attr, locus *where)
1014 if (check_used (attr, NULL, where))
1015 return false;
1017 if (attr->optional)
1019 duplicate_attr ("OPTIONAL", where);
1020 return false;
1023 attr->optional = 1;
1024 return check_conflict (attr, NULL, where);
1028 bool
1029 gfc_add_pointer (symbol_attribute *attr, locus *where)
1032 if (check_used (attr, NULL, where))
1033 return false;
1035 if (attr->pointer && !(attr->if_source == IFSRC_IFBODY
1036 && !gfc_find_state (COMP_INTERFACE)))
1038 duplicate_attr ("POINTER", where);
1039 return false;
1042 if (attr->procedure || (attr->external && attr->if_source != IFSRC_IFBODY)
1043 || (attr->if_source == IFSRC_IFBODY
1044 && !gfc_find_state (COMP_INTERFACE)))
1045 attr->proc_pointer = 1;
1046 else
1047 attr->pointer = 1;
1049 return check_conflict (attr, NULL, where);
1053 bool
1054 gfc_add_cray_pointer (symbol_attribute *attr, locus *where)
1057 if (check_used (attr, NULL, where))
1058 return false;
1060 attr->cray_pointer = 1;
1061 return check_conflict (attr, NULL, where);
1065 bool
1066 gfc_add_cray_pointee (symbol_attribute *attr, locus *where)
1069 if (check_used (attr, NULL, where))
1070 return false;
1072 if (attr->cray_pointee)
1074 gfc_error ("Cray Pointee at %L appears in multiple pointer()"
1075 " statements", where);
1076 return false;
1079 attr->cray_pointee = 1;
1080 return check_conflict (attr, NULL, where);
1084 bool
1085 gfc_add_protected (symbol_attribute *attr, const char *name, locus *where)
1087 if (check_used (attr, name, where))
1088 return false;
1090 if (attr->is_protected)
1092 if (!gfc_notify_std (GFC_STD_LEGACY,
1093 "Duplicate PROTECTED attribute specified at %L",
1094 where))
1095 return false;
1098 attr->is_protected = 1;
1099 return check_conflict (attr, name, where);
1103 bool
1104 gfc_add_result (symbol_attribute *attr, const char *name, locus *where)
1107 if (check_used (attr, name, where))
1108 return false;
1110 attr->result = 1;
1111 return check_conflict (attr, name, where);
1115 bool
1116 gfc_add_save (symbol_attribute *attr, save_state s, const char *name,
1117 locus *where)
1120 if (check_used (attr, name, where))
1121 return false;
1123 if (s == SAVE_EXPLICIT && gfc_pure (NULL))
1125 gfc_error
1126 ("SAVE attribute at %L cannot be specified in a PURE procedure",
1127 where);
1128 return false;
1131 if (s == SAVE_EXPLICIT)
1132 gfc_unset_implicit_pure (NULL);
1134 if (s == SAVE_EXPLICIT && attr->save == SAVE_EXPLICIT)
1136 if (!gfc_notify_std (GFC_STD_LEGACY,
1137 "Duplicate SAVE attribute specified at %L",
1138 where))
1139 return false;
1142 attr->save = s;
1143 return check_conflict (attr, name, where);
1147 bool
1148 gfc_add_value (symbol_attribute *attr, const char *name, locus *where)
1151 if (check_used (attr, name, where))
1152 return false;
1154 if (attr->value)
1156 if (!gfc_notify_std (GFC_STD_LEGACY,
1157 "Duplicate VALUE attribute specified at %L",
1158 where))
1159 return false;
1162 attr->value = 1;
1163 return check_conflict (attr, name, where);
1167 bool
1168 gfc_add_volatile (symbol_attribute *attr, const char *name, locus *where)
1170 /* No check_used needed as 11.2.1 of the F2003 standard allows
1171 that the local identifier made accessible by a use statement can be
1172 given a VOLATILE attribute - unless it is a coarray (F2008, C560). */
1174 if (attr->volatile_ && attr->volatile_ns == gfc_current_ns)
1175 if (!gfc_notify_std (GFC_STD_LEGACY,
1176 "Duplicate VOLATILE attribute specified at %L",
1177 where))
1178 return false;
1180 attr->volatile_ = 1;
1181 attr->volatile_ns = gfc_current_ns;
1182 return check_conflict (attr, name, where);
1186 bool
1187 gfc_add_asynchronous (symbol_attribute *attr, const char *name, locus *where)
1189 /* No check_used needed as 11.2.1 of the F2003 standard allows
1190 that the local identifier made accessible by a use statement can be
1191 given a ASYNCHRONOUS attribute. */
1193 if (attr->asynchronous && attr->asynchronous_ns == gfc_current_ns)
1194 if (!gfc_notify_std (GFC_STD_LEGACY,
1195 "Duplicate ASYNCHRONOUS attribute specified at %L",
1196 where))
1197 return false;
1199 attr->asynchronous = 1;
1200 attr->asynchronous_ns = gfc_current_ns;
1201 return check_conflict (attr, name, where);
1205 bool
1206 gfc_add_threadprivate (symbol_attribute *attr, const char *name, locus *where)
1209 if (check_used (attr, name, where))
1210 return false;
1212 if (attr->threadprivate)
1214 duplicate_attr ("THREADPRIVATE", where);
1215 return false;
1218 attr->threadprivate = 1;
1219 return check_conflict (attr, name, where);
1223 bool
1224 gfc_add_omp_declare_target (symbol_attribute *attr, const char *name,
1225 locus *where)
1228 if (check_used (attr, name, where))
1229 return false;
1231 if (attr->omp_declare_target)
1232 return true;
1234 attr->omp_declare_target = 1;
1235 return check_conflict (attr, name, where);
1239 bool
1240 gfc_add_target (symbol_attribute *attr, locus *where)
1243 if (check_used (attr, NULL, where))
1244 return false;
1246 if (attr->target)
1248 duplicate_attr ("TARGET", where);
1249 return false;
1252 attr->target = 1;
1253 return check_conflict (attr, NULL, where);
1257 bool
1258 gfc_add_dummy (symbol_attribute *attr, const char *name, locus *where)
1261 if (check_used (attr, name, where))
1262 return false;
1264 /* Duplicate dummy arguments are allowed due to ENTRY statements. */
1265 attr->dummy = 1;
1266 return check_conflict (attr, name, where);
1270 bool
1271 gfc_add_in_common (symbol_attribute *attr, const char *name, locus *where)
1274 if (check_used (attr, name, where))
1275 return false;
1277 /* Duplicate attribute already checked for. */
1278 attr->in_common = 1;
1279 return check_conflict (attr, name, where);
1283 bool
1284 gfc_add_in_equivalence (symbol_attribute *attr, const char *name, locus *where)
1287 /* Duplicate attribute already checked for. */
1288 attr->in_equivalence = 1;
1289 if (!check_conflict (attr, name, where))
1290 return false;
1292 if (attr->flavor == FL_VARIABLE)
1293 return true;
1295 return gfc_add_flavor (attr, FL_VARIABLE, name, where);
1299 bool
1300 gfc_add_data (symbol_attribute *attr, const char *name, locus *where)
1303 if (check_used (attr, name, where))
1304 return false;
1306 attr->data = 1;
1307 return check_conflict (attr, name, where);
1311 bool
1312 gfc_add_in_namelist (symbol_attribute *attr, const char *name, locus *where)
1315 attr->in_namelist = 1;
1316 return check_conflict (attr, name, where);
1320 bool
1321 gfc_add_sequence (symbol_attribute *attr, const char *name, locus *where)
1324 if (check_used (attr, name, where))
1325 return false;
1327 attr->sequence = 1;
1328 return check_conflict (attr, name, where);
1332 bool
1333 gfc_add_elemental (symbol_attribute *attr, locus *where)
1336 if (check_used (attr, NULL, where))
1337 return false;
1339 if (attr->elemental)
1341 duplicate_attr ("ELEMENTAL", where);
1342 return false;
1345 attr->elemental = 1;
1346 return check_conflict (attr, NULL, where);
1350 bool
1351 gfc_add_pure (symbol_attribute *attr, locus *where)
1354 if (check_used (attr, NULL, where))
1355 return false;
1357 if (attr->pure)
1359 duplicate_attr ("PURE", where);
1360 return false;
1363 attr->pure = 1;
1364 return check_conflict (attr, NULL, where);
1368 bool
1369 gfc_add_recursive (symbol_attribute *attr, locus *where)
1372 if (check_used (attr, NULL, where))
1373 return false;
1375 if (attr->recursive)
1377 duplicate_attr ("RECURSIVE", where);
1378 return false;
1381 attr->recursive = 1;
1382 return check_conflict (attr, NULL, where);
1386 bool
1387 gfc_add_entry (symbol_attribute *attr, const char *name, locus *where)
1390 if (check_used (attr, name, where))
1391 return false;
1393 if (attr->entry)
1395 duplicate_attr ("ENTRY", where);
1396 return false;
1399 attr->entry = 1;
1400 return check_conflict (attr, name, where);
1404 bool
1405 gfc_add_function (symbol_attribute *attr, const char *name, locus *where)
1408 if (attr->flavor != FL_PROCEDURE
1409 && !gfc_add_flavor (attr, FL_PROCEDURE, name, where))
1410 return false;
1412 attr->function = 1;
1413 return check_conflict (attr, name, where);
1417 bool
1418 gfc_add_subroutine (symbol_attribute *attr, const char *name, locus *where)
1421 if (attr->flavor != FL_PROCEDURE
1422 && !gfc_add_flavor (attr, FL_PROCEDURE, name, where))
1423 return false;
1425 attr->subroutine = 1;
1426 return check_conflict (attr, name, where);
1430 bool
1431 gfc_add_generic (symbol_attribute *attr, const char *name, locus *where)
1434 if (attr->flavor != FL_PROCEDURE
1435 && !gfc_add_flavor (attr, FL_PROCEDURE, name, where))
1436 return false;
1438 attr->generic = 1;
1439 return check_conflict (attr, name, where);
1443 bool
1444 gfc_add_proc (symbol_attribute *attr, const char *name, locus *where)
1447 if (check_used (attr, NULL, where))
1448 return false;
1450 if (attr->flavor != FL_PROCEDURE
1451 && !gfc_add_flavor (attr, FL_PROCEDURE, name, where))
1452 return false;
1454 if (attr->procedure)
1456 duplicate_attr ("PROCEDURE", where);
1457 return false;
1460 attr->procedure = 1;
1462 return check_conflict (attr, NULL, where);
1466 bool
1467 gfc_add_abstract (symbol_attribute* attr, locus* where)
1469 if (attr->abstract)
1471 duplicate_attr ("ABSTRACT", where);
1472 return false;
1475 attr->abstract = 1;
1477 return check_conflict (attr, NULL, where);
1481 /* Flavors are special because some flavors are not what Fortran
1482 considers attributes and can be reaffirmed multiple times. */
1484 bool
1485 gfc_add_flavor (symbol_attribute *attr, sym_flavor f, const char *name,
1486 locus *where)
1489 if ((f == FL_PROGRAM || f == FL_BLOCK_DATA || f == FL_MODULE
1490 || f == FL_PARAMETER || f == FL_LABEL || f == FL_DERIVED
1491 || f == FL_NAMELIST) && check_used (attr, name, where))
1492 return false;
1494 if (attr->flavor == f && f == FL_VARIABLE)
1495 return true;
1497 if (attr->flavor != FL_UNKNOWN)
1499 if (where == NULL)
1500 where = &gfc_current_locus;
1502 if (name)
1503 gfc_error ("%s attribute of '%s' conflicts with %s attribute at %L",
1504 gfc_code2string (flavors, attr->flavor), name,
1505 gfc_code2string (flavors, f), where);
1506 else
1507 gfc_error ("%s attribute conflicts with %s attribute at %L",
1508 gfc_code2string (flavors, attr->flavor),
1509 gfc_code2string (flavors, f), where);
1511 return false;
1514 attr->flavor = f;
1516 return check_conflict (attr, name, where);
1520 bool
1521 gfc_add_procedure (symbol_attribute *attr, procedure_type t,
1522 const char *name, locus *where)
1525 if (check_used (attr, name, where))
1526 return false;
1528 if (attr->flavor != FL_PROCEDURE
1529 && !gfc_add_flavor (attr, FL_PROCEDURE, name, where))
1530 return false;
1532 if (where == NULL)
1533 where = &gfc_current_locus;
1535 if (attr->proc != PROC_UNKNOWN)
1537 gfc_error ("%s procedure at %L is already declared as %s procedure",
1538 gfc_code2string (procedures, t), where,
1539 gfc_code2string (procedures, attr->proc));
1541 return false;
1544 attr->proc = t;
1546 /* Statement functions are always scalar and functions. */
1547 if (t == PROC_ST_FUNCTION
1548 && ((!attr->function && !gfc_add_function (attr, name, where))
1549 || attr->dimension))
1550 return false;
1552 return check_conflict (attr, name, where);
1556 bool
1557 gfc_add_intent (symbol_attribute *attr, sym_intent intent, locus *where)
1560 if (check_used (attr, NULL, where))
1561 return false;
1563 if (attr->intent == INTENT_UNKNOWN)
1565 attr->intent = intent;
1566 return check_conflict (attr, NULL, where);
1569 if (where == NULL)
1570 where = &gfc_current_locus;
1572 gfc_error ("INTENT (%s) conflicts with INTENT(%s) at %L",
1573 gfc_intent_string (attr->intent),
1574 gfc_intent_string (intent), where);
1576 return false;
1580 /* No checks for use-association in public and private statements. */
1582 bool
1583 gfc_add_access (symbol_attribute *attr, gfc_access access,
1584 const char *name, locus *where)
1587 if (attr->access == ACCESS_UNKNOWN
1588 || (attr->use_assoc && attr->access != ACCESS_PRIVATE))
1590 attr->access = access;
1591 return check_conflict (attr, name, where);
1594 if (where == NULL)
1595 where = &gfc_current_locus;
1596 gfc_error ("ACCESS specification at %L was already specified", where);
1598 return false;
1602 /* Set the is_bind_c field for the given symbol_attribute. */
1604 bool
1605 gfc_add_is_bind_c (symbol_attribute *attr, const char *name, locus *where,
1606 int is_proc_lang_bind_spec)
1609 if (is_proc_lang_bind_spec == 0 && attr->flavor == FL_PROCEDURE)
1610 gfc_error_now ("BIND(C) attribute at %L can only be used for "
1611 "variables or common blocks", where);
1612 else if (attr->is_bind_c)
1613 gfc_error_now ("Duplicate BIND attribute specified at %L", where);
1614 else
1615 attr->is_bind_c = 1;
1617 if (where == NULL)
1618 where = &gfc_current_locus;
1620 if (!gfc_notify_std (GFC_STD_F2003, "BIND(C) at %L", where))
1621 return false;
1623 return check_conflict (attr, name, where);
1627 /* Set the extension field for the given symbol_attribute. */
1629 bool
1630 gfc_add_extension (symbol_attribute *attr, locus *where)
1632 if (where == NULL)
1633 where = &gfc_current_locus;
1635 if (attr->extension)
1636 gfc_error_now ("Duplicate EXTENDS attribute specified at %L", where);
1637 else
1638 attr->extension = 1;
1640 if (!gfc_notify_std (GFC_STD_F2003, "EXTENDS at %L", where))
1641 return false;
1643 return true;
1647 bool
1648 gfc_add_explicit_interface (gfc_symbol *sym, ifsrc source,
1649 gfc_formal_arglist * formal, locus *where)
1652 if (check_used (&sym->attr, sym->name, where))
1653 return false;
1655 if (where == NULL)
1656 where = &gfc_current_locus;
1658 if (sym->attr.if_source != IFSRC_UNKNOWN
1659 && sym->attr.if_source != IFSRC_DECL)
1661 gfc_error ("Symbol '%s' at %L already has an explicit interface",
1662 sym->name, where);
1663 return false;
1666 if (source == IFSRC_IFBODY && (sym->attr.dimension || sym->attr.allocatable))
1668 gfc_error ("'%s' at %L has attributes specified outside its INTERFACE "
1669 "body", sym->name, where);
1670 return false;
1673 sym->formal = formal;
1674 sym->attr.if_source = source;
1676 return true;
1680 /* Add a type to a symbol. */
1682 bool
1683 gfc_add_type (gfc_symbol *sym, gfc_typespec *ts, locus *where)
1685 sym_flavor flavor;
1686 bt type;
1688 if (where == NULL)
1689 where = &gfc_current_locus;
1691 if (sym->result)
1692 type = sym->result->ts.type;
1693 else
1694 type = sym->ts.type;
1696 if (sym->attr.result && type == BT_UNKNOWN && sym->ns->proc_name)
1697 type = sym->ns->proc_name->ts.type;
1699 if (type != BT_UNKNOWN && !(sym->attr.function && sym->attr.implicit_type))
1701 if (sym->attr.use_assoc)
1702 gfc_error ("Symbol '%s' at %L conflicts with symbol from module '%s', "
1703 "use-associated at %L", sym->name, where, sym->module,
1704 &sym->declared_at);
1705 else
1706 gfc_error ("Symbol '%s' at %L already has basic type of %s", sym->name,
1707 where, gfc_basic_typename (type));
1708 return false;
1711 if (sym->attr.procedure && sym->ts.interface)
1713 gfc_error ("Procedure '%s' at %L may not have basic type of %s",
1714 sym->name, where, gfc_basic_typename (ts->type));
1715 return false;
1718 flavor = sym->attr.flavor;
1720 if (flavor == FL_PROGRAM || flavor == FL_BLOCK_DATA || flavor == FL_MODULE
1721 || flavor == FL_LABEL
1722 || (flavor == FL_PROCEDURE && sym->attr.subroutine)
1723 || flavor == FL_DERIVED || flavor == FL_NAMELIST)
1725 gfc_error ("Symbol '%s' at %L cannot have a type", sym->name, where);
1726 return false;
1729 sym->ts = *ts;
1730 return true;
1734 /* Clears all attributes. */
1736 void
1737 gfc_clear_attr (symbol_attribute *attr)
1739 memset (attr, 0, sizeof (symbol_attribute));
1743 /* Check for missing attributes in the new symbol. Currently does
1744 nothing, but it's not clear that it is unnecessary yet. */
1746 bool
1747 gfc_missing_attr (symbol_attribute *attr ATTRIBUTE_UNUSED,
1748 locus *where ATTRIBUTE_UNUSED)
1751 return true;
1755 /* Copy an attribute to a symbol attribute, bit by bit. Some
1756 attributes have a lot of side-effects but cannot be present given
1757 where we are called from, so we ignore some bits. */
1759 bool
1760 gfc_copy_attr (symbol_attribute *dest, symbol_attribute *src, locus *where)
1762 int is_proc_lang_bind_spec;
1764 /* In line with the other attributes, we only add bits but do not remove
1765 them; cf. also PR 41034. */
1766 dest->ext_attr |= src->ext_attr;
1768 if (src->allocatable && !gfc_add_allocatable (dest, where))
1769 goto fail;
1771 if (src->dimension && !gfc_add_dimension (dest, NULL, where))
1772 goto fail;
1773 if (src->codimension && !gfc_add_codimension (dest, NULL, where))
1774 goto fail;
1775 if (src->contiguous && !gfc_add_contiguous (dest, NULL, where))
1776 goto fail;
1777 if (src->optional && !gfc_add_optional (dest, where))
1778 goto fail;
1779 if (src->pointer && !gfc_add_pointer (dest, where))
1780 goto fail;
1781 if (src->is_protected && !gfc_add_protected (dest, NULL, where))
1782 goto fail;
1783 if (src->save && !gfc_add_save (dest, src->save, NULL, where))
1784 goto fail;
1785 if (src->value && !gfc_add_value (dest, NULL, where))
1786 goto fail;
1787 if (src->volatile_ && !gfc_add_volatile (dest, NULL, where))
1788 goto fail;
1789 if (src->asynchronous && !gfc_add_asynchronous (dest, NULL, where))
1790 goto fail;
1791 if (src->threadprivate
1792 && !gfc_add_threadprivate (dest, NULL, where))
1793 goto fail;
1794 if (src->omp_declare_target
1795 && !gfc_add_omp_declare_target (dest, NULL, where))
1796 goto fail;
1797 if (src->target && !gfc_add_target (dest, where))
1798 goto fail;
1799 if (src->dummy && !gfc_add_dummy (dest, NULL, where))
1800 goto fail;
1801 if (src->result && !gfc_add_result (dest, NULL, where))
1802 goto fail;
1803 if (src->entry)
1804 dest->entry = 1;
1806 if (src->in_namelist && !gfc_add_in_namelist (dest, NULL, where))
1807 goto fail;
1809 if (src->in_common && !gfc_add_in_common (dest, NULL, where))
1810 goto fail;
1812 if (src->generic && !gfc_add_generic (dest, NULL, where))
1813 goto fail;
1814 if (src->function && !gfc_add_function (dest, NULL, where))
1815 goto fail;
1816 if (src->subroutine && !gfc_add_subroutine (dest, NULL, where))
1817 goto fail;
1819 if (src->sequence && !gfc_add_sequence (dest, NULL, where))
1820 goto fail;
1821 if (src->elemental && !gfc_add_elemental (dest, where))
1822 goto fail;
1823 if (src->pure && !gfc_add_pure (dest, where))
1824 goto fail;
1825 if (src->recursive && !gfc_add_recursive (dest, where))
1826 goto fail;
1828 if (src->flavor != FL_UNKNOWN
1829 && !gfc_add_flavor (dest, src->flavor, NULL, where))
1830 goto fail;
1832 if (src->intent != INTENT_UNKNOWN
1833 && !gfc_add_intent (dest, src->intent, where))
1834 goto fail;
1836 if (src->access != ACCESS_UNKNOWN
1837 && !gfc_add_access (dest, src->access, NULL, where))
1838 goto fail;
1840 if (!gfc_missing_attr (dest, where))
1841 goto fail;
1843 if (src->cray_pointer && !gfc_add_cray_pointer (dest, where))
1844 goto fail;
1845 if (src->cray_pointee && !gfc_add_cray_pointee (dest, where))
1846 goto fail;
1848 is_proc_lang_bind_spec = (src->flavor == FL_PROCEDURE ? 1 : 0);
1849 if (src->is_bind_c
1850 && !gfc_add_is_bind_c (dest, NULL, where, is_proc_lang_bind_spec))
1851 return false;
1853 if (src->is_c_interop)
1854 dest->is_c_interop = 1;
1855 if (src->is_iso_c)
1856 dest->is_iso_c = 1;
1858 if (src->external && !gfc_add_external (dest, where))
1859 goto fail;
1860 if (src->intrinsic && !gfc_add_intrinsic (dest, where))
1861 goto fail;
1862 if (src->proc_pointer)
1863 dest->proc_pointer = 1;
1865 return true;
1867 fail:
1868 return false;
1872 /************** Component name management ************/
1874 /* Component names of a derived type form their own little namespaces
1875 that are separate from all other spaces. The space is composed of
1876 a singly linked list of gfc_component structures whose head is
1877 located in the parent symbol. */
1880 /* Add a component name to a symbol. The call fails if the name is
1881 already present. On success, the component pointer is modified to
1882 point to the additional component structure. */
1884 bool
1885 gfc_add_component (gfc_symbol *sym, const char *name,
1886 gfc_component **component)
1888 gfc_component *p, *tail;
1890 tail = NULL;
1892 for (p = sym->components; p; p = p->next)
1894 if (strcmp (p->name, name) == 0)
1896 gfc_error ("Component '%s' at %C already declared at %L",
1897 name, &p->loc);
1898 return false;
1901 tail = p;
1904 if (sym->attr.extension
1905 && gfc_find_component (sym->components->ts.u.derived, name, true, true))
1907 gfc_error ("Component '%s' at %C already in the parent type "
1908 "at %L", name, &sym->components->ts.u.derived->declared_at);
1909 return false;
1912 /* Allocate a new component. */
1913 p = gfc_get_component ();
1915 if (tail == NULL)
1916 sym->components = p;
1917 else
1918 tail->next = p;
1920 p->name = gfc_get_string (name);
1921 p->loc = gfc_current_locus;
1922 p->ts.type = BT_UNKNOWN;
1924 *component = p;
1925 return true;
1929 /* Recursive function to switch derived types of all symbol in a
1930 namespace. */
1932 static void
1933 switch_types (gfc_symtree *st, gfc_symbol *from, gfc_symbol *to)
1935 gfc_symbol *sym;
1937 if (st == NULL)
1938 return;
1940 sym = st->n.sym;
1941 if (sym->ts.type == BT_DERIVED && sym->ts.u.derived == from)
1942 sym->ts.u.derived = to;
1944 switch_types (st->left, from, to);
1945 switch_types (st->right, from, to);
1949 /* This subroutine is called when a derived type is used in order to
1950 make the final determination about which version to use. The
1951 standard requires that a type be defined before it is 'used', but
1952 such types can appear in IMPLICIT statements before the actual
1953 definition. 'Using' in this context means declaring a variable to
1954 be that type or using the type constructor.
1956 If a type is used and the components haven't been defined, then we
1957 have to have a derived type in a parent unit. We find the node in
1958 the other namespace and point the symtree node in this namespace to
1959 that node. Further reference to this name point to the correct
1960 node. If we can't find the node in a parent namespace, then we have
1961 an error.
1963 This subroutine takes a pointer to a symbol node and returns a
1964 pointer to the translated node or NULL for an error. Usually there
1965 is no translation and we return the node we were passed. */
1967 gfc_symbol *
1968 gfc_use_derived (gfc_symbol *sym)
1970 gfc_symbol *s;
1971 gfc_typespec *t;
1972 gfc_symtree *st;
1973 int i;
1975 if (!sym)
1976 return NULL;
1978 if (sym->attr.unlimited_polymorphic)
1979 return sym;
1981 if (sym->attr.generic)
1982 sym = gfc_find_dt_in_generic (sym);
1984 if (sym->components != NULL || sym->attr.zero_comp)
1985 return sym; /* Already defined. */
1987 if (sym->ns->parent == NULL)
1988 goto bad;
1990 if (gfc_find_symbol (sym->name, sym->ns->parent, 1, &s))
1992 gfc_error ("Symbol '%s' at %C is ambiguous", sym->name);
1993 return NULL;
1996 if (s == NULL || s->attr.flavor != FL_DERIVED)
1997 goto bad;
1999 /* Get rid of symbol sym, translating all references to s. */
2000 for (i = 0; i < GFC_LETTERS; i++)
2002 t = &sym->ns->default_type[i];
2003 if (t->u.derived == sym)
2004 t->u.derived = s;
2007 st = gfc_find_symtree (sym->ns->sym_root, sym->name);
2008 st->n.sym = s;
2010 s->refs++;
2012 /* Unlink from list of modified symbols. */
2013 gfc_commit_symbol (sym);
2015 switch_types (sym->ns->sym_root, sym, s);
2017 /* TODO: Also have to replace sym -> s in other lists like
2018 namelists, common lists and interface lists. */
2019 gfc_free_symbol (sym);
2021 return s;
2023 bad:
2024 gfc_error ("Derived type '%s' at %C is being used before it is defined",
2025 sym->name);
2026 return NULL;
2030 /* Given a derived type node and a component name, try to locate the
2031 component structure. Returns the NULL pointer if the component is
2032 not found or the components are private. If noaccess is set, no access
2033 checks are done. */
2035 gfc_component *
2036 gfc_find_component (gfc_symbol *sym, const char *name,
2037 bool noaccess, bool silent)
2039 gfc_component *p;
2041 if (name == NULL || sym == NULL)
2042 return NULL;
2044 sym = gfc_use_derived (sym);
2046 if (sym == NULL)
2047 return NULL;
2049 for (p = sym->components; p; p = p->next)
2050 if (strcmp (p->name, name) == 0)
2051 break;
2053 if (p && sym->attr.use_assoc && !noaccess)
2055 bool is_parent_comp = sym->attr.extension && (p == sym->components);
2056 if (p->attr.access == ACCESS_PRIVATE ||
2057 (p->attr.access != ACCESS_PUBLIC
2058 && sym->component_access == ACCESS_PRIVATE
2059 && !is_parent_comp))
2061 if (!silent)
2062 gfc_error ("Component '%s' at %C is a PRIVATE component of '%s'",
2063 name, sym->name);
2064 return NULL;
2068 if (p == NULL
2069 && sym->attr.extension
2070 && sym->components->ts.type == BT_DERIVED)
2072 p = gfc_find_component (sym->components->ts.u.derived, name,
2073 noaccess, silent);
2074 /* Do not overwrite the error. */
2075 if (p == NULL)
2076 return p;
2079 if (p == NULL && !silent)
2080 gfc_error ("'%s' at %C is not a member of the '%s' structure",
2081 name, sym->name);
2083 return p;
2087 /* Given a symbol, free all of the component structures and everything
2088 they point to. */
2090 static void
2091 free_components (gfc_component *p)
2093 gfc_component *q;
2095 for (; p; p = q)
2097 q = p->next;
2099 gfc_free_array_spec (p->as);
2100 gfc_free_expr (p->initializer);
2101 free (p->tb);
2103 free (p);
2108 /******************** Statement label management ********************/
2110 /* Comparison function for statement labels, used for managing the
2111 binary tree. */
2113 static int
2114 compare_st_labels (void *a1, void *b1)
2116 int a = ((gfc_st_label *) a1)->value;
2117 int b = ((gfc_st_label *) b1)->value;
2119 return (b - a);
2123 /* Free a single gfc_st_label structure, making sure the tree is not
2124 messed up. This function is called only when some parse error
2125 occurs. */
2127 void
2128 gfc_free_st_label (gfc_st_label *label)
2131 if (label == NULL)
2132 return;
2134 gfc_delete_bbt (&gfc_current_ns->st_labels, label, compare_st_labels);
2136 if (label->format != NULL)
2137 gfc_free_expr (label->format);
2139 free (label);
2143 /* Free a whole tree of gfc_st_label structures. */
2145 static void
2146 free_st_labels (gfc_st_label *label)
2149 if (label == NULL)
2150 return;
2152 free_st_labels (label->left);
2153 free_st_labels (label->right);
2155 if (label->format != NULL)
2156 gfc_free_expr (label->format);
2157 free (label);
2161 /* Given a label number, search for and return a pointer to the label
2162 structure, creating it if it does not exist. */
2164 gfc_st_label *
2165 gfc_get_st_label (int labelno)
2167 gfc_st_label *lp;
2168 gfc_namespace *ns;
2170 if (gfc_current_state () == COMP_DERIVED)
2171 ns = gfc_current_block ()->f2k_derived;
2172 else
2174 /* Find the namespace of the scoping unit:
2175 If we're in a BLOCK construct, jump to the parent namespace. */
2176 ns = gfc_current_ns;
2177 while (ns->proc_name && ns->proc_name->attr.flavor == FL_LABEL)
2178 ns = ns->parent;
2181 /* First see if the label is already in this namespace. */
2182 lp = ns->st_labels;
2183 while (lp)
2185 if (lp->value == labelno)
2186 return lp;
2188 if (lp->value < labelno)
2189 lp = lp->left;
2190 else
2191 lp = lp->right;
2194 lp = XCNEW (gfc_st_label);
2196 lp->value = labelno;
2197 lp->defined = ST_LABEL_UNKNOWN;
2198 lp->referenced = ST_LABEL_UNKNOWN;
2200 gfc_insert_bbt (&ns->st_labels, lp, compare_st_labels);
2202 return lp;
2206 /* Called when a statement with a statement label is about to be
2207 accepted. We add the label to the list of the current namespace,
2208 making sure it hasn't been defined previously and referenced
2209 correctly. */
2211 void
2212 gfc_define_st_label (gfc_st_label *lp, gfc_sl_type type, locus *label_locus)
2214 int labelno;
2216 labelno = lp->value;
2218 if (lp->defined != ST_LABEL_UNKNOWN)
2219 gfc_error ("Duplicate statement label %d at %L and %L", labelno,
2220 &lp->where, label_locus);
2221 else
2223 lp->where = *label_locus;
2225 switch (type)
2227 case ST_LABEL_FORMAT:
2228 if (lp->referenced == ST_LABEL_TARGET
2229 || lp->referenced == ST_LABEL_DO_TARGET)
2230 gfc_error ("Label %d at %C already referenced as branch target",
2231 labelno);
2232 else
2233 lp->defined = ST_LABEL_FORMAT;
2235 break;
2237 case ST_LABEL_TARGET:
2238 case ST_LABEL_DO_TARGET:
2239 if (lp->referenced == ST_LABEL_FORMAT)
2240 gfc_error ("Label %d at %C already referenced as a format label",
2241 labelno);
2242 else
2243 lp->defined = type;
2245 if (lp->referenced == ST_LABEL_DO_TARGET && type != ST_LABEL_DO_TARGET
2246 && !gfc_notify_std (GFC_STD_F95_OBS, "DO termination statement "
2247 "which is not END DO or CONTINUE with "
2248 "label %d at %C", labelno))
2249 return;
2250 break;
2252 default:
2253 lp->defined = ST_LABEL_BAD_TARGET;
2254 lp->referenced = ST_LABEL_BAD_TARGET;
2260 /* Reference a label. Given a label and its type, see if that
2261 reference is consistent with what is known about that label,
2262 updating the unknown state. Returns false if something goes
2263 wrong. */
2265 bool
2266 gfc_reference_st_label (gfc_st_label *lp, gfc_sl_type type)
2268 gfc_sl_type label_type;
2269 int labelno;
2270 bool rc;
2272 if (lp == NULL)
2273 return true;
2275 labelno = lp->value;
2277 if (lp->defined != ST_LABEL_UNKNOWN)
2278 label_type = lp->defined;
2279 else
2281 label_type = lp->referenced;
2282 lp->where = gfc_current_locus;
2285 if (label_type == ST_LABEL_FORMAT
2286 && (type == ST_LABEL_TARGET || type == ST_LABEL_DO_TARGET))
2288 gfc_error ("Label %d at %C previously used as a FORMAT label", labelno);
2289 rc = false;
2290 goto done;
2293 if ((label_type == ST_LABEL_TARGET || label_type == ST_LABEL_DO_TARGET
2294 || label_type == ST_LABEL_BAD_TARGET)
2295 && type == ST_LABEL_FORMAT)
2297 gfc_error ("Label %d at %C previously used as branch target", labelno);
2298 rc = false;
2299 goto done;
2302 if (lp->referenced == ST_LABEL_DO_TARGET && type == ST_LABEL_DO_TARGET
2303 && !gfc_notify_std (GFC_STD_F95_OBS, "Shared DO termination label %d "
2304 "at %C", labelno))
2305 return false;
2307 if (lp->referenced != ST_LABEL_DO_TARGET)
2308 lp->referenced = type;
2309 rc = true;
2311 done:
2312 return rc;
2316 /************** Symbol table management subroutines ****************/
2318 /* Basic details: Fortran 95 requires a potentially unlimited number
2319 of distinct namespaces when compiling a program unit. This case
2320 occurs during a compilation of internal subprograms because all of
2321 the internal subprograms must be read before we can start
2322 generating code for the host.
2324 Given the tricky nature of the Fortran grammar, we must be able to
2325 undo changes made to a symbol table if the current interpretation
2326 of a statement is found to be incorrect. Whenever a symbol is
2327 looked up, we make a copy of it and link to it. All of these
2328 symbols are kept in a vector so that we can commit or
2329 undo the changes at a later time.
2331 A symtree may point to a symbol node outside of its namespace. In
2332 this case, that symbol has been used as a host associated variable
2333 at some previous time. */
2335 /* Allocate a new namespace structure. Copies the implicit types from
2336 PARENT if PARENT_TYPES is set. */
2338 gfc_namespace *
2339 gfc_get_namespace (gfc_namespace *parent, int parent_types)
2341 gfc_namespace *ns;
2342 gfc_typespec *ts;
2343 int in;
2344 int i;
2346 ns = XCNEW (gfc_namespace);
2347 ns->sym_root = NULL;
2348 ns->uop_root = NULL;
2349 ns->tb_sym_root = NULL;
2350 ns->finalizers = NULL;
2351 ns->default_access = ACCESS_UNKNOWN;
2352 ns->parent = parent;
2354 for (in = GFC_INTRINSIC_BEGIN; in != GFC_INTRINSIC_END; in++)
2356 ns->operator_access[in] = ACCESS_UNKNOWN;
2357 ns->tb_op[in] = NULL;
2360 /* Initialize default implicit types. */
2361 for (i = 'a'; i <= 'z'; i++)
2363 ns->set_flag[i - 'a'] = 0;
2364 ts = &ns->default_type[i - 'a'];
2366 if (parent_types && ns->parent != NULL)
2368 /* Copy parent settings. */
2369 *ts = ns->parent->default_type[i - 'a'];
2370 continue;
2373 if (gfc_option.flag_implicit_none != 0)
2375 gfc_clear_ts (ts);
2376 continue;
2379 if ('i' <= i && i <= 'n')
2381 ts->type = BT_INTEGER;
2382 ts->kind = gfc_default_integer_kind;
2384 else
2386 ts->type = BT_REAL;
2387 ts->kind = gfc_default_real_kind;
2391 if (parent_types && ns->parent != NULL)
2392 ns->has_implicit_none_export = ns->parent->has_implicit_none_export;
2394 ns->refs = 1;
2396 return ns;
2400 /* Comparison function for symtree nodes. */
2402 static int
2403 compare_symtree (void *_st1, void *_st2)
2405 gfc_symtree *st1, *st2;
2407 st1 = (gfc_symtree *) _st1;
2408 st2 = (gfc_symtree *) _st2;
2410 return strcmp (st1->name, st2->name);
2414 /* Allocate a new symtree node and associate it with the new symbol. */
2416 gfc_symtree *
2417 gfc_new_symtree (gfc_symtree **root, const char *name)
2419 gfc_symtree *st;
2421 st = XCNEW (gfc_symtree);
2422 st->name = gfc_get_string (name);
2424 gfc_insert_bbt (root, st, compare_symtree);
2425 return st;
2429 /* Delete a symbol from the tree. Does not free the symbol itself! */
2431 void
2432 gfc_delete_symtree (gfc_symtree **root, const char *name)
2434 gfc_symtree st, *st0;
2436 st0 = gfc_find_symtree (*root, name);
2438 st.name = gfc_get_string (name);
2439 gfc_delete_bbt (root, &st, compare_symtree);
2441 free (st0);
2445 /* Given a root symtree node and a name, try to find the symbol within
2446 the namespace. Returns NULL if the symbol is not found. */
2448 gfc_symtree *
2449 gfc_find_symtree (gfc_symtree *st, const char *name)
2451 int c;
2453 while (st != NULL)
2455 c = strcmp (name, st->name);
2456 if (c == 0)
2457 return st;
2459 st = (c < 0) ? st->left : st->right;
2462 return NULL;
2466 /* Return a symtree node with a name that is guaranteed to be unique
2467 within the namespace and corresponds to an illegal fortran name. */
2469 gfc_symtree *
2470 gfc_get_unique_symtree (gfc_namespace *ns)
2472 char name[GFC_MAX_SYMBOL_LEN + 1];
2473 static int serial = 0;
2475 sprintf (name, "@%d", serial++);
2476 return gfc_new_symtree (&ns->sym_root, name);
2480 /* Given a name find a user operator node, creating it if it doesn't
2481 exist. These are much simpler than symbols because they can't be
2482 ambiguous with one another. */
2484 gfc_user_op *
2485 gfc_get_uop (const char *name)
2487 gfc_user_op *uop;
2488 gfc_symtree *st;
2489 gfc_namespace *ns = gfc_current_ns;
2491 if (ns->omp_udr_ns)
2492 ns = ns->parent;
2493 st = gfc_find_symtree (ns->uop_root, name);
2494 if (st != NULL)
2495 return st->n.uop;
2497 st = gfc_new_symtree (&ns->uop_root, name);
2499 uop = st->n.uop = XCNEW (gfc_user_op);
2500 uop->name = gfc_get_string (name);
2501 uop->access = ACCESS_UNKNOWN;
2502 uop->ns = ns;
2504 return uop;
2508 /* Given a name find the user operator node. Returns NULL if it does
2509 not exist. */
2511 gfc_user_op *
2512 gfc_find_uop (const char *name, gfc_namespace *ns)
2514 gfc_symtree *st;
2516 if (ns == NULL)
2517 ns = gfc_current_ns;
2519 st = gfc_find_symtree (ns->uop_root, name);
2520 return (st == NULL) ? NULL : st->n.uop;
2524 /* Remove a gfc_symbol structure and everything it points to. */
2526 void
2527 gfc_free_symbol (gfc_symbol *sym)
2530 if (sym == NULL)
2531 return;
2533 gfc_free_array_spec (sym->as);
2535 free_components (sym->components);
2537 gfc_free_expr (sym->value);
2539 gfc_free_namelist (sym->namelist);
2541 if (sym->ns != sym->formal_ns)
2542 gfc_free_namespace (sym->formal_ns);
2544 if (!sym->attr.generic_copy)
2545 gfc_free_interface (sym->generic);
2547 gfc_free_formal_arglist (sym->formal);
2549 gfc_free_namespace (sym->f2k_derived);
2551 if (sym->common_block && sym->common_block->name[0] != '\0')
2553 sym->common_block->refs--;
2554 if (sym->common_block->refs == 0)
2555 free (sym->common_block);
2558 free (sym);
2562 /* Decrease the reference counter and free memory when we reach zero. */
2564 void
2565 gfc_release_symbol (gfc_symbol *sym)
2567 if (sym == NULL)
2568 return;
2570 if (sym->formal_ns != NULL && sym->refs == 2 && sym->formal_ns != sym->ns
2571 && (!sym->attr.entry || !sym->module))
2573 /* As formal_ns contains a reference to sym, delete formal_ns just
2574 before the deletion of sym. */
2575 gfc_namespace *ns = sym->formal_ns;
2576 sym->formal_ns = NULL;
2577 gfc_free_namespace (ns);
2580 sym->refs--;
2581 if (sym->refs > 0)
2582 return;
2584 gcc_assert (sym->refs == 0);
2585 gfc_free_symbol (sym);
2589 /* Allocate and initialize a new symbol node. */
2591 gfc_symbol *
2592 gfc_new_symbol (const char *name, gfc_namespace *ns)
2594 gfc_symbol *p;
2596 p = XCNEW (gfc_symbol);
2598 gfc_clear_ts (&p->ts);
2599 gfc_clear_attr (&p->attr);
2600 p->ns = ns;
2602 p->declared_at = gfc_current_locus;
2604 if (strlen (name) > GFC_MAX_SYMBOL_LEN)
2605 gfc_internal_error ("new_symbol(): Symbol name too long");
2607 p->name = gfc_get_string (name);
2609 /* Make sure flags for symbol being C bound are clear initially. */
2610 p->attr.is_bind_c = 0;
2611 p->attr.is_iso_c = 0;
2613 /* Clear the ptrs we may need. */
2614 p->common_block = NULL;
2615 p->f2k_derived = NULL;
2616 p->assoc = NULL;
2618 return p;
2622 /* Generate an error if a symbol is ambiguous. */
2624 static void
2625 ambiguous_symbol (const char *name, gfc_symtree *st)
2628 if (st->n.sym->module)
2629 gfc_error ("Name '%s' at %C is an ambiguous reference to '%s' "
2630 "from module '%s'", name, st->n.sym->name, st->n.sym->module);
2631 else
2632 gfc_error ("Name '%s' at %C is an ambiguous reference to '%s' "
2633 "from current program unit", name, st->n.sym->name);
2637 /* If we're in a SELECT TYPE block, check if the variable 'st' matches any
2638 selector on the stack. If yes, replace it by the corresponding temporary. */
2640 static void
2641 select_type_insert_tmp (gfc_symtree **st)
2643 gfc_select_type_stack *stack = select_type_stack;
2644 for (; stack; stack = stack->prev)
2645 if ((*st)->n.sym == stack->selector && stack->tmp)
2646 *st = stack->tmp;
2650 /* Look for a symtree in the current procedure -- that is, go up to
2651 parent namespaces but only if inside a BLOCK. Returns NULL if not found. */
2653 gfc_symtree*
2654 gfc_find_symtree_in_proc (const char* name, gfc_namespace* ns)
2656 while (ns)
2658 gfc_symtree* st = gfc_find_symtree (ns->sym_root, name);
2659 if (st)
2660 return st;
2662 if (!ns->construct_entities)
2663 break;
2664 ns = ns->parent;
2667 return NULL;
2671 /* Search for a symtree starting in the current namespace, resorting to
2672 any parent namespaces if requested by a nonzero parent_flag.
2673 Returns nonzero if the name is ambiguous. */
2676 gfc_find_sym_tree (const char *name, gfc_namespace *ns, int parent_flag,
2677 gfc_symtree **result)
2679 gfc_symtree *st;
2681 if (ns == NULL)
2682 ns = gfc_current_ns;
2686 st = gfc_find_symtree (ns->sym_root, name);
2687 if (st != NULL)
2689 select_type_insert_tmp (&st);
2691 *result = st;
2692 /* Ambiguous generic interfaces are permitted, as long
2693 as the specific interfaces are different. */
2694 if (st->ambiguous && !st->n.sym->attr.generic)
2696 ambiguous_symbol (name, st);
2697 return 1;
2700 return 0;
2703 if (!parent_flag)
2704 break;
2706 /* Don't escape an interface block. */
2707 if (ns && !ns->has_import_set
2708 && ns->proc_name && ns->proc_name->attr.if_source == IFSRC_IFBODY)
2709 break;
2711 ns = ns->parent;
2713 while (ns != NULL);
2715 *result = NULL;
2716 return 0;
2720 /* Same, but returns the symbol instead. */
2723 gfc_find_symbol (const char *name, gfc_namespace *ns, int parent_flag,
2724 gfc_symbol **result)
2726 gfc_symtree *st;
2727 int i;
2729 i = gfc_find_sym_tree (name, ns, parent_flag, &st);
2731 if (st == NULL)
2732 *result = NULL;
2733 else
2734 *result = st->n.sym;
2736 return i;
2740 /* Tells whether there is only one set of changes in the stack. */
2742 static bool
2743 single_undo_checkpoint_p (void)
2745 if (latest_undo_chgset == &default_undo_chgset_var)
2747 gcc_assert (latest_undo_chgset->previous == NULL);
2748 return true;
2750 else
2752 gcc_assert (latest_undo_chgset->previous != NULL);
2753 return false;
2757 /* Save symbol with the information necessary to back it out. */
2759 static void
2760 save_symbol_data (gfc_symbol *sym)
2762 gfc_symbol *s;
2763 unsigned i;
2765 if (!single_undo_checkpoint_p ())
2767 /* If there is more than one change set, look for the symbol in the
2768 current one. If it is found there, we can reuse it. */
2769 FOR_EACH_VEC_ELT (latest_undo_chgset->syms, i, s)
2770 if (s == sym)
2772 gcc_assert (sym->gfc_new || sym->old_symbol != NULL);
2773 return;
2776 else if (sym->gfc_new || sym->old_symbol != NULL)
2777 return;
2779 s = XCNEW (gfc_symbol);
2780 *s = *sym;
2781 sym->old_symbol = s;
2782 sym->gfc_new = 0;
2784 latest_undo_chgset->syms.safe_push (sym);
2788 /* Given a name, find a symbol, or create it if it does not exist yet
2789 in the current namespace. If the symbol is found we make sure that
2790 it's OK.
2792 The integer return code indicates
2793 0 All OK
2794 1 The symbol name was ambiguous
2795 2 The name meant to be established was already host associated.
2797 So if the return value is nonzero, then an error was issued. */
2800 gfc_get_sym_tree (const char *name, gfc_namespace *ns, gfc_symtree **result,
2801 bool allow_subroutine)
2803 gfc_symtree *st;
2804 gfc_symbol *p;
2806 /* This doesn't usually happen during resolution. */
2807 if (ns == NULL)
2808 ns = gfc_current_ns;
2810 /* Try to find the symbol in ns. */
2811 st = gfc_find_symtree (ns->sym_root, name);
2813 if (st == NULL && ns->omp_udr_ns)
2815 ns = ns->parent;
2816 st = gfc_find_symtree (ns->sym_root, name);
2819 if (st == NULL)
2821 /* If not there, create a new symbol. */
2822 p = gfc_new_symbol (name, ns);
2824 /* Add to the list of tentative symbols. */
2825 p->old_symbol = NULL;
2826 p->mark = 1;
2827 p->gfc_new = 1;
2828 latest_undo_chgset->syms.safe_push (p);
2830 st = gfc_new_symtree (&ns->sym_root, name);
2831 st->n.sym = p;
2832 p->refs++;
2835 else
2837 /* Make sure the existing symbol is OK. Ambiguous
2838 generic interfaces are permitted, as long as the
2839 specific interfaces are different. */
2840 if (st->ambiguous && !st->n.sym->attr.generic)
2842 ambiguous_symbol (name, st);
2843 return 1;
2846 p = st->n.sym;
2847 if (p->ns != ns && (!p->attr.function || ns->proc_name != p)
2848 && !(allow_subroutine && p->attr.subroutine)
2849 && !(ns->proc_name && ns->proc_name->attr.if_source == IFSRC_IFBODY
2850 && (ns->has_import_set || p->attr.imported)))
2852 /* Symbol is from another namespace. */
2853 gfc_error ("Symbol '%s' at %C has already been host associated",
2854 name);
2855 return 2;
2858 p->mark = 1;
2860 /* Copy in case this symbol is changed. */
2861 save_symbol_data (p);
2864 *result = st;
2865 return 0;
2870 gfc_get_symbol (const char *name, gfc_namespace *ns, gfc_symbol **result)
2872 gfc_symtree *st;
2873 int i;
2875 i = gfc_get_sym_tree (name, ns, &st, false);
2876 if (i != 0)
2877 return i;
2879 if (st)
2880 *result = st->n.sym;
2881 else
2882 *result = NULL;
2883 return i;
2887 /* Subroutine that searches for a symbol, creating it if it doesn't
2888 exist, but tries to host-associate the symbol if possible. */
2891 gfc_get_ha_sym_tree (const char *name, gfc_symtree **result)
2893 gfc_symtree *st;
2894 int i;
2896 i = gfc_find_sym_tree (name, gfc_current_ns, 0, &st);
2898 if (st != NULL)
2900 save_symbol_data (st->n.sym);
2901 *result = st;
2902 return i;
2905 i = gfc_find_sym_tree (name, gfc_current_ns, 1, &st);
2906 if (i)
2907 return i;
2909 if (st != NULL)
2911 *result = st;
2912 return 0;
2915 return gfc_get_sym_tree (name, gfc_current_ns, result, false);
2920 gfc_get_ha_symbol (const char *name, gfc_symbol **result)
2922 int i;
2923 gfc_symtree *st;
2925 i = gfc_get_ha_sym_tree (name, &st);
2927 if (st)
2928 *result = st->n.sym;
2929 else
2930 *result = NULL;
2932 return i;
2936 /* Search for the symtree belonging to a gfc_common_head; we cannot use
2937 head->name as the common_root symtree's name might be mangled. */
2939 static gfc_symtree *
2940 find_common_symtree (gfc_symtree *st, gfc_common_head *head)
2943 gfc_symtree *result;
2945 if (st == NULL)
2946 return NULL;
2948 if (st->n.common == head)
2949 return st;
2951 result = find_common_symtree (st->left, head);
2952 if (!result)
2953 result = find_common_symtree (st->right, head);
2955 return result;
2959 /* Clear the given storage, and make it the current change set for registering
2960 changed symbols. Its contents are freed after a call to
2961 gfc_restore_last_undo_checkpoint or gfc_drop_last_undo_checkpoint, but
2962 it is up to the caller to free the storage itself. It is usually a local
2963 variable, so there is nothing to do anyway. */
2965 void
2966 gfc_new_undo_checkpoint (gfc_undo_change_set &chg_syms)
2968 chg_syms.syms = vNULL;
2969 chg_syms.tbps = vNULL;
2970 chg_syms.previous = latest_undo_chgset;
2971 latest_undo_chgset = &chg_syms;
2975 /* Restore previous state of symbol. Just copy simple stuff. */
2977 static void
2978 restore_old_symbol (gfc_symbol *p)
2980 gfc_symbol *old;
2982 p->mark = 0;
2983 old = p->old_symbol;
2985 p->ts.type = old->ts.type;
2986 p->ts.kind = old->ts.kind;
2988 p->attr = old->attr;
2990 if (p->value != old->value)
2992 gcc_checking_assert (old->value == NULL);
2993 gfc_free_expr (p->value);
2994 p->value = NULL;
2997 if (p->as != old->as)
2999 if (p->as)
3000 gfc_free_array_spec (p->as);
3001 p->as = old->as;
3004 p->generic = old->generic;
3005 p->component_access = old->component_access;
3007 if (p->namelist != NULL && old->namelist == NULL)
3009 gfc_free_namelist (p->namelist);
3010 p->namelist = NULL;
3012 else
3014 if (p->namelist_tail != old->namelist_tail)
3016 gfc_free_namelist (old->namelist_tail->next);
3017 old->namelist_tail->next = NULL;
3021 p->namelist_tail = old->namelist_tail;
3023 if (p->formal != old->formal)
3025 gfc_free_formal_arglist (p->formal);
3026 p->formal = old->formal;
3029 p->old_symbol = old->old_symbol;
3030 free (old);
3034 /* Frees the internal data of a gfc_undo_change_set structure. Doesn't free
3035 the structure itself. */
3037 static void
3038 free_undo_change_set_data (gfc_undo_change_set &cs)
3040 cs.syms.release ();
3041 cs.tbps.release ();
3045 /* Given a change set pointer, free its target's contents and update it with
3046 the address of the previous change set. Note that only the contents are
3047 freed, not the target itself (the contents' container). It is not a problem
3048 as the latter will be a local variable usually. */
3050 static void
3051 pop_undo_change_set (gfc_undo_change_set *&cs)
3053 free_undo_change_set_data (*cs);
3054 cs = cs->previous;
3058 static void free_old_symbol (gfc_symbol *sym);
3061 /* Merges the current change set into the previous one. The changes themselves
3062 are left untouched; only one checkpoint is forgotten. */
3064 void
3065 gfc_drop_last_undo_checkpoint (void)
3067 gfc_symbol *s, *t;
3068 unsigned i, j;
3070 FOR_EACH_VEC_ELT (latest_undo_chgset->syms, i, s)
3072 /* No need to loop in this case. */
3073 if (s->old_symbol == NULL)
3074 continue;
3076 /* Remove the duplicate symbols. */
3077 FOR_EACH_VEC_ELT (latest_undo_chgset->previous->syms, j, t)
3078 if (t == s)
3080 latest_undo_chgset->previous->syms.unordered_remove (j);
3082 /* S->OLD_SYMBOL is the backup symbol for S as it was at the
3083 last checkpoint. We drop that checkpoint, so S->OLD_SYMBOL
3084 shall contain from now on the backup symbol for S as it was
3085 at the checkpoint before. */
3086 if (s->old_symbol->gfc_new)
3088 gcc_assert (s->old_symbol->old_symbol == NULL);
3089 s->gfc_new = s->old_symbol->gfc_new;
3090 free_old_symbol (s);
3092 else
3093 restore_old_symbol (s->old_symbol);
3094 break;
3098 latest_undo_chgset->previous->syms.safe_splice (latest_undo_chgset->syms);
3099 latest_undo_chgset->previous->tbps.safe_splice (latest_undo_chgset->tbps);
3101 pop_undo_change_set (latest_undo_chgset);
3105 /* Undoes all the changes made to symbols since the previous checkpoint.
3106 This subroutine is made simpler due to the fact that attributes are
3107 never removed once added. */
3109 void
3110 gfc_restore_last_undo_checkpoint (void)
3112 gfc_symbol *p;
3113 unsigned i;
3115 FOR_EACH_VEC_ELT (latest_undo_chgset->syms, i, p)
3117 if (p->gfc_new)
3119 /* Symbol was new. */
3120 if (p->attr.in_common && p->common_block && p->common_block->head)
3122 /* If the symbol was added to any common block, it
3123 needs to be removed to stop the resolver looking
3124 for a (possibly) dead symbol. */
3126 if (p->common_block->head == p && !p->common_next)
3128 gfc_symtree st, *st0;
3129 st0 = find_common_symtree (p->ns->common_root,
3130 p->common_block);
3131 if (st0)
3133 st.name = st0->name;
3134 gfc_delete_bbt (&p->ns->common_root, &st, compare_symtree);
3135 free (st0);
3139 if (p->common_block->head == p)
3140 p->common_block->head = p->common_next;
3141 else
3143 gfc_symbol *cparent, *csym;
3145 cparent = p->common_block->head;
3146 csym = cparent->common_next;
3148 while (csym != p)
3150 cparent = csym;
3151 csym = csym->common_next;
3154 gcc_assert(cparent->common_next == p);
3156 cparent->common_next = csym->common_next;
3160 /* The derived type is saved in the symtree with the first
3161 letter capitalized; the all lower-case version to the
3162 derived type contains its associated generic function. */
3163 if (p->attr.flavor == FL_DERIVED)
3164 gfc_delete_symtree (&p->ns->sym_root, gfc_get_string ("%c%s",
3165 (char) TOUPPER ((unsigned char) p->name[0]),
3166 &p->name[1]));
3167 else
3168 gfc_delete_symtree (&p->ns->sym_root, p->name);
3170 gfc_release_symbol (p);
3172 else
3173 restore_old_symbol (p);
3176 latest_undo_chgset->syms.truncate (0);
3177 latest_undo_chgset->tbps.truncate (0);
3179 if (!single_undo_checkpoint_p ())
3180 pop_undo_change_set (latest_undo_chgset);
3184 /* Makes sure that there is only one set of changes; in other words we haven't
3185 forgotten to pair a call to gfc_new_checkpoint with a call to either
3186 gfc_drop_last_undo_checkpoint or gfc_restore_last_undo_checkpoint. */
3188 static void
3189 enforce_single_undo_checkpoint (void)
3191 gcc_checking_assert (single_undo_checkpoint_p ());
3195 /* Undoes all the changes made to symbols in the current statement. */
3197 void
3198 gfc_undo_symbols (void)
3200 enforce_single_undo_checkpoint ();
3201 gfc_restore_last_undo_checkpoint ();
3205 /* Free sym->old_symbol. sym->old_symbol is mostly a shallow copy of sym; the
3206 components of old_symbol that might need deallocation are the "allocatables"
3207 that are restored in gfc_undo_symbols(), with two exceptions: namelist and
3208 namelist_tail. In case these differ between old_symbol and sym, it's just
3209 because sym->namelist has gotten a few more items. */
3211 static void
3212 free_old_symbol (gfc_symbol *sym)
3215 if (sym->old_symbol == NULL)
3216 return;
3218 if (sym->old_symbol->as != sym->as)
3219 gfc_free_array_spec (sym->old_symbol->as);
3221 if (sym->old_symbol->value != sym->value)
3222 gfc_free_expr (sym->old_symbol->value);
3224 if (sym->old_symbol->formal != sym->formal)
3225 gfc_free_formal_arglist (sym->old_symbol->formal);
3227 free (sym->old_symbol);
3228 sym->old_symbol = NULL;
3232 /* Makes the changes made in the current statement permanent-- gets
3233 rid of undo information. */
3235 void
3236 gfc_commit_symbols (void)
3238 gfc_symbol *p;
3239 gfc_typebound_proc *tbp;
3240 unsigned i;
3242 enforce_single_undo_checkpoint ();
3244 FOR_EACH_VEC_ELT (latest_undo_chgset->syms, i, p)
3246 p->mark = 0;
3247 p->gfc_new = 0;
3248 free_old_symbol (p);
3250 latest_undo_chgset->syms.truncate (0);
3252 FOR_EACH_VEC_ELT (latest_undo_chgset->tbps, i, tbp)
3253 tbp->error = 0;
3254 latest_undo_chgset->tbps.truncate (0);
3258 /* Makes the changes made in one symbol permanent -- gets rid of undo
3259 information. */
3261 void
3262 gfc_commit_symbol (gfc_symbol *sym)
3264 gfc_symbol *p;
3265 unsigned i;
3267 enforce_single_undo_checkpoint ();
3269 FOR_EACH_VEC_ELT (latest_undo_chgset->syms, i, p)
3270 if (p == sym)
3272 latest_undo_chgset->syms.unordered_remove (i);
3273 break;
3276 sym->mark = 0;
3277 sym->gfc_new = 0;
3279 free_old_symbol (sym);
3283 /* Recursively free trees containing type-bound procedures. */
3285 static void
3286 free_tb_tree (gfc_symtree *t)
3288 if (t == NULL)
3289 return;
3291 free_tb_tree (t->left);
3292 free_tb_tree (t->right);
3294 /* TODO: Free type-bound procedure structs themselves; probably needs some
3295 sort of ref-counting mechanism. */
3297 free (t);
3301 /* Recursive function that deletes an entire tree and all the common
3302 head structures it points to. */
3304 static void
3305 free_common_tree (gfc_symtree * common_tree)
3307 if (common_tree == NULL)
3308 return;
3310 free_common_tree (common_tree->left);
3311 free_common_tree (common_tree->right);
3313 free (common_tree);
3317 /* Recursive function that deletes an entire tree and all the common
3318 head structures it points to. */
3320 static void
3321 free_omp_udr_tree (gfc_symtree * omp_udr_tree)
3323 if (omp_udr_tree == NULL)
3324 return;
3326 free_omp_udr_tree (omp_udr_tree->left);
3327 free_omp_udr_tree (omp_udr_tree->right);
3329 gfc_free_omp_udr (omp_udr_tree->n.omp_udr);
3330 free (omp_udr_tree);
3334 /* Recursive function that deletes an entire tree and all the user
3335 operator nodes that it contains. */
3337 static void
3338 free_uop_tree (gfc_symtree *uop_tree)
3340 if (uop_tree == NULL)
3341 return;
3343 free_uop_tree (uop_tree->left);
3344 free_uop_tree (uop_tree->right);
3346 gfc_free_interface (uop_tree->n.uop->op);
3347 free (uop_tree->n.uop);
3348 free (uop_tree);
3352 /* Recursive function that deletes an entire tree and all the symbols
3353 that it contains. */
3355 static void
3356 free_sym_tree (gfc_symtree *sym_tree)
3358 if (sym_tree == NULL)
3359 return;
3361 free_sym_tree (sym_tree->left);
3362 free_sym_tree (sym_tree->right);
3364 gfc_release_symbol (sym_tree->n.sym);
3365 free (sym_tree);
3369 /* Free the derived type list. */
3371 void
3372 gfc_free_dt_list (void)
3374 gfc_dt_list *dt, *n;
3376 for (dt = gfc_derived_types; dt; dt = n)
3378 n = dt->next;
3379 free (dt);
3382 gfc_derived_types = NULL;
3386 /* Free the gfc_equiv_info's. */
3388 static void
3389 gfc_free_equiv_infos (gfc_equiv_info *s)
3391 if (s == NULL)
3392 return;
3393 gfc_free_equiv_infos (s->next);
3394 free (s);
3398 /* Free the gfc_equiv_lists. */
3400 static void
3401 gfc_free_equiv_lists (gfc_equiv_list *l)
3403 if (l == NULL)
3404 return;
3405 gfc_free_equiv_lists (l->next);
3406 gfc_free_equiv_infos (l->equiv);
3407 free (l);
3411 /* Free a finalizer procedure list. */
3413 void
3414 gfc_free_finalizer (gfc_finalizer* el)
3416 if (el)
3418 gfc_release_symbol (el->proc_sym);
3419 free (el);
3423 static void
3424 gfc_free_finalizer_list (gfc_finalizer* list)
3426 while (list)
3428 gfc_finalizer* current = list;
3429 list = list->next;
3430 gfc_free_finalizer (current);
3435 /* Create a new gfc_charlen structure and add it to a namespace.
3436 If 'old_cl' is given, the newly created charlen will be a copy of it. */
3438 gfc_charlen*
3439 gfc_new_charlen (gfc_namespace *ns, gfc_charlen *old_cl)
3441 gfc_charlen *cl;
3442 cl = gfc_get_charlen ();
3444 /* Copy old_cl. */
3445 if (old_cl)
3447 /* Put into namespace, but don't allow reject_statement
3448 to free it if old_cl is given. */
3449 gfc_charlen **prev = &ns->cl_list;
3450 cl->next = ns->old_cl_list;
3451 while (*prev != ns->old_cl_list)
3452 prev = &(*prev)->next;
3453 *prev = cl;
3454 ns->old_cl_list = cl;
3455 cl->length = gfc_copy_expr (old_cl->length);
3456 cl->length_from_typespec = old_cl->length_from_typespec;
3457 cl->backend_decl = old_cl->backend_decl;
3458 cl->passed_length = old_cl->passed_length;
3459 cl->resolved = old_cl->resolved;
3461 else
3463 /* Put into namespace. */
3464 cl->next = ns->cl_list;
3465 ns->cl_list = cl;
3468 return cl;
3472 /* Free the charlen list from cl to end (end is not freed).
3473 Free the whole list if end is NULL. */
3475 void
3476 gfc_free_charlen (gfc_charlen *cl, gfc_charlen *end)
3478 gfc_charlen *cl2;
3480 for (; cl != end; cl = cl2)
3482 gcc_assert (cl);
3484 cl2 = cl->next;
3485 gfc_free_expr (cl->length);
3486 free (cl);
3491 /* Free entry list structs. */
3493 static void
3494 free_entry_list (gfc_entry_list *el)
3496 gfc_entry_list *next;
3498 if (el == NULL)
3499 return;
3501 next = el->next;
3502 free (el);
3503 free_entry_list (next);
3507 /* Free a namespace structure and everything below it. Interface
3508 lists associated with intrinsic operators are not freed. These are
3509 taken care of when a specific name is freed. */
3511 void
3512 gfc_free_namespace (gfc_namespace *ns)
3514 gfc_namespace *p, *q;
3515 int i;
3517 if (ns == NULL)
3518 return;
3520 ns->refs--;
3521 if (ns->refs > 0)
3522 return;
3523 gcc_assert (ns->refs == 0);
3525 gfc_free_statements (ns->code);
3527 free_sym_tree (ns->sym_root);
3528 free_uop_tree (ns->uop_root);
3529 free_common_tree (ns->common_root);
3530 free_omp_udr_tree (ns->omp_udr_root);
3531 free_tb_tree (ns->tb_sym_root);
3532 free_tb_tree (ns->tb_uop_root);
3533 gfc_free_finalizer_list (ns->finalizers);
3534 gfc_free_omp_declare_simd_list (ns->omp_declare_simd);
3535 gfc_free_charlen (ns->cl_list, NULL);
3536 free_st_labels (ns->st_labels);
3538 free_entry_list (ns->entries);
3539 gfc_free_equiv (ns->equiv);
3540 gfc_free_equiv_lists (ns->equiv_lists);
3541 gfc_free_use_stmts (ns->use_stmts);
3543 for (i = GFC_INTRINSIC_BEGIN; i != GFC_INTRINSIC_END; i++)
3544 gfc_free_interface (ns->op[i]);
3546 gfc_free_data (ns->data);
3547 p = ns->contained;
3548 free (ns);
3550 /* Recursively free any contained namespaces. */
3551 while (p != NULL)
3553 q = p;
3554 p = p->sibling;
3555 gfc_free_namespace (q);
3560 void
3561 gfc_symbol_init_2 (void)
3564 gfc_current_ns = gfc_get_namespace (NULL, 0);
3568 void
3569 gfc_symbol_done_2 (void)
3571 gfc_free_namespace (gfc_current_ns);
3572 gfc_current_ns = NULL;
3573 gfc_free_dt_list ();
3575 enforce_single_undo_checkpoint ();
3576 free_undo_change_set_data (*latest_undo_chgset);
3580 /* Count how many nodes a symtree has. */
3582 static unsigned
3583 count_st_nodes (const gfc_symtree *st)
3585 unsigned nodes;
3586 if (!st)
3587 return 0;
3589 nodes = count_st_nodes (st->left);
3590 nodes++;
3591 nodes += count_st_nodes (st->right);
3593 return nodes;
3597 /* Convert symtree tree into symtree vector. */
3599 static unsigned
3600 fill_st_vector (gfc_symtree *st, gfc_symtree **st_vec, unsigned node_cntr)
3602 if (!st)
3603 return node_cntr;
3605 node_cntr = fill_st_vector (st->left, st_vec, node_cntr);
3606 st_vec[node_cntr++] = st;
3607 node_cntr = fill_st_vector (st->right, st_vec, node_cntr);
3609 return node_cntr;
3613 /* Traverse namespace. As the functions might modify the symtree, we store the
3614 symtree as a vector and operate on this vector. Note: We assume that
3615 sym_func or st_func never deletes nodes from the symtree - only adding is
3616 allowed. Additionally, newly added nodes are not traversed. */
3618 static void
3619 do_traverse_symtree (gfc_symtree *st, void (*st_func) (gfc_symtree *),
3620 void (*sym_func) (gfc_symbol *))
3622 gfc_symtree **st_vec;
3623 unsigned nodes, i, node_cntr;
3625 gcc_assert ((st_func && !sym_func) || (!st_func && sym_func));
3626 nodes = count_st_nodes (st);
3627 st_vec = XALLOCAVEC (gfc_symtree *, nodes);
3628 node_cntr = 0;
3629 fill_st_vector (st, st_vec, node_cntr);
3631 if (sym_func)
3633 /* Clear marks. */
3634 for (i = 0; i < nodes; i++)
3635 st_vec[i]->n.sym->mark = 0;
3636 for (i = 0; i < nodes; i++)
3637 if (!st_vec[i]->n.sym->mark)
3639 (*sym_func) (st_vec[i]->n.sym);
3640 st_vec[i]->n.sym->mark = 1;
3643 else
3644 for (i = 0; i < nodes; i++)
3645 (*st_func) (st_vec[i]);
3649 /* Recursively traverse the symtree nodes. */
3651 void
3652 gfc_traverse_symtree (gfc_symtree *st, void (*st_func) (gfc_symtree *))
3654 do_traverse_symtree (st, st_func, NULL);
3658 /* Call a given function for all symbols in the namespace. We take
3659 care that each gfc_symbol node is called exactly once. */
3661 void
3662 gfc_traverse_ns (gfc_namespace *ns, void (*sym_func) (gfc_symbol *))
3664 do_traverse_symtree (ns->sym_root, NULL, sym_func);
3668 /* Return TRUE when name is the name of an intrinsic type. */
3670 bool
3671 gfc_is_intrinsic_typename (const char *name)
3673 if (strcmp (name, "integer") == 0
3674 || strcmp (name, "real") == 0
3675 || strcmp (name, "character") == 0
3676 || strcmp (name, "logical") == 0
3677 || strcmp (name, "complex") == 0
3678 || strcmp (name, "doubleprecision") == 0
3679 || strcmp (name, "doublecomplex") == 0)
3680 return true;
3681 else
3682 return false;
3686 /* Return TRUE if the symbol is an automatic variable. */
3688 static bool
3689 gfc_is_var_automatic (gfc_symbol *sym)
3691 /* Pointer and allocatable variables are never automatic. */
3692 if (sym->attr.pointer || sym->attr.allocatable)
3693 return false;
3694 /* Check for arrays with non-constant size. */
3695 if (sym->attr.dimension && sym->as
3696 && !gfc_is_compile_time_shape (sym->as))
3697 return true;
3698 /* Check for non-constant length character variables. */
3699 if (sym->ts.type == BT_CHARACTER
3700 && sym->ts.u.cl
3701 && !gfc_is_constant_expr (sym->ts.u.cl->length))
3702 return true;
3703 return false;
3706 /* Given a symbol, mark it as SAVEd if it is allowed. */
3708 static void
3709 save_symbol (gfc_symbol *sym)
3712 if (sym->attr.use_assoc)
3713 return;
3715 if (sym->attr.in_common
3716 || sym->attr.dummy
3717 || sym->attr.result
3718 || sym->attr.flavor != FL_VARIABLE)
3719 return;
3720 /* Automatic objects are not saved. */
3721 if (gfc_is_var_automatic (sym))
3722 return;
3723 gfc_add_save (&sym->attr, SAVE_EXPLICIT, sym->name, &sym->declared_at);
3727 /* Mark those symbols which can be SAVEd as such. */
3729 void
3730 gfc_save_all (gfc_namespace *ns)
3732 gfc_traverse_ns (ns, save_symbol);
3736 /* Make sure that no changes to symbols are pending. */
3738 void
3739 gfc_enforce_clean_symbol_state(void)
3741 enforce_single_undo_checkpoint ();
3742 gcc_assert (latest_undo_chgset->syms.is_empty ());
3746 /************** Global symbol handling ************/
3749 /* Search a tree for the global symbol. */
3751 gfc_gsymbol *
3752 gfc_find_gsymbol (gfc_gsymbol *symbol, const char *name)
3754 int c;
3756 if (symbol == NULL)
3757 return NULL;
3759 while (symbol)
3761 c = strcmp (name, symbol->name);
3762 if (!c)
3763 return symbol;
3765 symbol = (c < 0) ? symbol->left : symbol->right;
3768 return NULL;
3772 /* Compare two global symbols. Used for managing the BB tree. */
3774 static int
3775 gsym_compare (void *_s1, void *_s2)
3777 gfc_gsymbol *s1, *s2;
3779 s1 = (gfc_gsymbol *) _s1;
3780 s2 = (gfc_gsymbol *) _s2;
3781 return strcmp (s1->name, s2->name);
3785 /* Get a global symbol, creating it if it doesn't exist. */
3787 gfc_gsymbol *
3788 gfc_get_gsymbol (const char *name)
3790 gfc_gsymbol *s;
3792 s = gfc_find_gsymbol (gfc_gsym_root, name);
3793 if (s != NULL)
3794 return s;
3796 s = XCNEW (gfc_gsymbol);
3797 s->type = GSYM_UNKNOWN;
3798 s->name = gfc_get_string (name);
3800 gfc_insert_bbt (&gfc_gsym_root, s, gsym_compare);
3802 return s;
3806 static gfc_symbol *
3807 get_iso_c_binding_dt (int sym_id)
3809 gfc_dt_list *dt_list;
3811 dt_list = gfc_derived_types;
3813 /* Loop through the derived types in the name list, searching for
3814 the desired symbol from iso_c_binding. Search the parent namespaces
3815 if necessary and requested to (parent_flag). */
3816 while (dt_list != NULL)
3818 if (dt_list->derived->from_intmod != INTMOD_NONE
3819 && dt_list->derived->intmod_sym_id == sym_id)
3820 return dt_list->derived;
3822 dt_list = dt_list->next;
3825 return NULL;
3829 /* Verifies that the given derived type symbol, derived_sym, is interoperable
3830 with C. This is necessary for any derived type that is BIND(C) and for
3831 derived types that are parameters to functions that are BIND(C). All
3832 fields of the derived type are required to be interoperable, and are tested
3833 for such. If an error occurs, the errors are reported here, allowing for
3834 multiple errors to be handled for a single derived type. */
3836 bool
3837 verify_bind_c_derived_type (gfc_symbol *derived_sym)
3839 gfc_component *curr_comp = NULL;
3840 bool is_c_interop = false;
3841 bool retval = true;
3843 if (derived_sym == NULL)
3844 gfc_internal_error ("verify_bind_c_derived_type(): Given symbol is "
3845 "unexpectedly NULL");
3847 /* If we've already looked at this derived symbol, do not look at it again
3848 so we don't repeat warnings/errors. */
3849 if (derived_sym->ts.is_c_interop)
3850 return true;
3852 /* The derived type must have the BIND attribute to be interoperable
3853 J3/04-007, Section 15.2.3. */
3854 if (derived_sym->attr.is_bind_c != 1)
3856 derived_sym->ts.is_c_interop = 0;
3857 gfc_error_now ("Derived type '%s' declared at %L must have the BIND "
3858 "attribute to be C interoperable", derived_sym->name,
3859 &(derived_sym->declared_at));
3860 retval = false;
3863 curr_comp = derived_sym->components;
3865 /* Fortran 2003 allows an empty derived type. C99 appears to disallow an
3866 empty struct. Section 15.2 in Fortran 2003 states: "The following
3867 subclauses define the conditions under which a Fortran entity is
3868 interoperable. If a Fortran entity is interoperable, an equivalent
3869 entity may be defined by means of C and the Fortran entity is said
3870 to be interoperable with the C entity. There does not have to be such
3871 an interoperating C entity."
3873 if (curr_comp == NULL)
3875 gfc_warning ("Derived type '%s' with BIND(C) attribute at %L is empty, "
3876 "and may be inaccessible by the C companion processor",
3877 derived_sym->name, &(derived_sym->declared_at));
3878 derived_sym->ts.is_c_interop = 1;
3879 derived_sym->attr.is_bind_c = 1;
3880 return true;
3884 /* Initialize the derived type as being C interoperable.
3885 If we find an error in the components, this will be set false. */
3886 derived_sym->ts.is_c_interop = 1;
3888 /* Loop through the list of components to verify that the kind of
3889 each is a C interoperable type. */
3892 /* The components cannot be pointers (fortran sense).
3893 J3/04-007, Section 15.2.3, C1505. */
3894 if (curr_comp->attr.pointer != 0)
3896 gfc_error ("Component '%s' at %L cannot have the "
3897 "POINTER attribute because it is a member "
3898 "of the BIND(C) derived type '%s' at %L",
3899 curr_comp->name, &(curr_comp->loc),
3900 derived_sym->name, &(derived_sym->declared_at));
3901 retval = false;
3904 if (curr_comp->attr.proc_pointer != 0)
3906 gfc_error ("Procedure pointer component '%s' at %L cannot be a member"
3907 " of the BIND(C) derived type '%s' at %L", curr_comp->name,
3908 &curr_comp->loc, derived_sym->name,
3909 &derived_sym->declared_at);
3910 retval = false;
3913 /* The components cannot be allocatable.
3914 J3/04-007, Section 15.2.3, C1505. */
3915 if (curr_comp->attr.allocatable != 0)
3917 gfc_error ("Component '%s' at %L cannot have the "
3918 "ALLOCATABLE attribute because it is a member "
3919 "of the BIND(C) derived type '%s' at %L",
3920 curr_comp->name, &(curr_comp->loc),
3921 derived_sym->name, &(derived_sym->declared_at));
3922 retval = false;
3925 /* BIND(C) derived types must have interoperable components. */
3926 if (curr_comp->ts.type == BT_DERIVED
3927 && curr_comp->ts.u.derived->ts.is_iso_c != 1
3928 && curr_comp->ts.u.derived != derived_sym)
3930 /* This should be allowed; the draft says a derived-type can not
3931 have type parameters if it is has the BIND attribute. Type
3932 parameters seem to be for making parameterized derived types.
3933 There's no need to verify the type if it is c_ptr/c_funptr. */
3934 retval = verify_bind_c_derived_type (curr_comp->ts.u.derived);
3936 else
3938 /* Grab the typespec for the given component and test the kind. */
3939 is_c_interop = gfc_verify_c_interop (&(curr_comp->ts));
3941 if (!is_c_interop)
3943 /* Report warning and continue since not fatal. The
3944 draft does specify a constraint that requires all fields
3945 to interoperate, but if the user says real(4), etc., it
3946 may interoperate with *something* in C, but the compiler
3947 most likely won't know exactly what. Further, it may not
3948 interoperate with the same data type(s) in C if the user
3949 recompiles with different flags (e.g., -m32 and -m64 on
3950 x86_64 and using integer(4) to claim interop with a
3951 C_LONG). */
3952 if (derived_sym->attr.is_bind_c == 1
3953 && gfc_option.warn_c_binding_type)
3954 /* If the derived type is bind(c), all fields must be
3955 interop. */
3956 gfc_warning ("Component '%s' in derived type '%s' at %L "
3957 "may not be C interoperable, even though "
3958 "derived type '%s' is BIND(C)",
3959 curr_comp->name, derived_sym->name,
3960 &(curr_comp->loc), derived_sym->name);
3961 else if (gfc_option.warn_c_binding_type)
3962 /* If derived type is param to bind(c) routine, or to one
3963 of the iso_c_binding procs, it must be interoperable, so
3964 all fields must interop too. */
3965 gfc_warning ("Component '%s' in derived type '%s' at %L "
3966 "may not be C interoperable",
3967 curr_comp->name, derived_sym->name,
3968 &(curr_comp->loc));
3972 curr_comp = curr_comp->next;
3973 } while (curr_comp != NULL);
3976 /* Make sure we don't have conflicts with the attributes. */
3977 if (derived_sym->attr.access == ACCESS_PRIVATE)
3979 gfc_error ("Derived type '%s' at %L cannot be declared with both "
3980 "PRIVATE and BIND(C) attributes", derived_sym->name,
3981 &(derived_sym->declared_at));
3982 retval = false;
3985 if (derived_sym->attr.sequence != 0)
3987 gfc_error ("Derived type '%s' at %L cannot have the SEQUENCE "
3988 "attribute because it is BIND(C)", derived_sym->name,
3989 &(derived_sym->declared_at));
3990 retval = false;
3993 /* Mark the derived type as not being C interoperable if we found an
3994 error. If there were only warnings, proceed with the assumption
3995 it's interoperable. */
3996 if (!retval)
3997 derived_sym->ts.is_c_interop = 0;
3999 return retval;
4003 /* Generate symbols for the named constants c_null_ptr and c_null_funptr. */
4005 static bool
4006 gen_special_c_interop_ptr (gfc_symbol *tmp_sym, gfc_symtree *dt_symtree)
4008 gfc_constructor *c;
4010 gcc_assert (tmp_sym && dt_symtree && dt_symtree->n.sym);
4011 dt_symtree->n.sym->attr.referenced = 1;
4013 tmp_sym->attr.is_c_interop = 1;
4014 tmp_sym->attr.is_bind_c = 1;
4015 tmp_sym->ts.is_c_interop = 1;
4016 tmp_sym->ts.is_iso_c = 1;
4017 tmp_sym->ts.type = BT_DERIVED;
4018 tmp_sym->ts.f90_type = BT_VOID;
4019 tmp_sym->attr.flavor = FL_PARAMETER;
4020 tmp_sym->ts.u.derived = dt_symtree->n.sym;
4022 /* Set the c_address field of c_null_ptr and c_null_funptr to
4023 the value of NULL. */
4024 tmp_sym->value = gfc_get_expr ();
4025 tmp_sym->value->expr_type = EXPR_STRUCTURE;
4026 tmp_sym->value->ts.type = BT_DERIVED;
4027 tmp_sym->value->ts.f90_type = BT_VOID;
4028 tmp_sym->value->ts.u.derived = tmp_sym->ts.u.derived;
4029 gfc_constructor_append_expr (&tmp_sym->value->value.constructor, NULL, NULL);
4030 c = gfc_constructor_first (tmp_sym->value->value.constructor);
4031 c->expr = gfc_get_int_expr (gfc_index_integer_kind, NULL, 0);
4032 c->expr->ts.is_iso_c = 1;
4034 return true;
4038 /* Add a formal argument, gfc_formal_arglist, to the
4039 end of the given list of arguments. Set the reference to the
4040 provided symbol, param_sym, in the argument. */
4042 static void
4043 add_formal_arg (gfc_formal_arglist **head,
4044 gfc_formal_arglist **tail,
4045 gfc_formal_arglist *formal_arg,
4046 gfc_symbol *param_sym)
4048 /* Put in list, either as first arg or at the tail (curr arg). */
4049 if (*head == NULL)
4050 *head = *tail = formal_arg;
4051 else
4053 (*tail)->next = formal_arg;
4054 (*tail) = formal_arg;
4057 (*tail)->sym = param_sym;
4058 (*tail)->next = NULL;
4060 return;
4064 /* Add a procedure interface to the given symbol (i.e., store a
4065 reference to the list of formal arguments). */
4067 static void
4068 add_proc_interface (gfc_symbol *sym, ifsrc source, gfc_formal_arglist *formal)
4071 sym->formal = formal;
4072 sym->attr.if_source = source;
4076 /* Copy the formal args from an existing symbol, src, into a new
4077 symbol, dest. New formal args are created, and the description of
4078 each arg is set according to the existing ones. This function is
4079 used when creating procedure declaration variables from a procedure
4080 declaration statement (see match_proc_decl()) to create the formal
4081 args based on the args of a given named interface.
4083 When an actual argument list is provided, skip the absent arguments.
4084 To be used together with gfc_se->ignore_optional. */
4086 void
4087 gfc_copy_formal_args_intr (gfc_symbol *dest, gfc_intrinsic_sym *src,
4088 gfc_actual_arglist *actual)
4090 gfc_formal_arglist *head = NULL;
4091 gfc_formal_arglist *tail = NULL;
4092 gfc_formal_arglist *formal_arg = NULL;
4093 gfc_intrinsic_arg *curr_arg = NULL;
4094 gfc_formal_arglist *formal_prev = NULL;
4095 gfc_actual_arglist *act_arg = actual;
4096 /* Save current namespace so we can change it for formal args. */
4097 gfc_namespace *parent_ns = gfc_current_ns;
4099 /* Create a new namespace, which will be the formal ns (namespace
4100 of the formal args). */
4101 gfc_current_ns = gfc_get_namespace (parent_ns, 0);
4102 gfc_current_ns->proc_name = dest;
4104 for (curr_arg = src->formal; curr_arg; curr_arg = curr_arg->next)
4106 /* Skip absent arguments. */
4107 if (actual)
4109 gcc_assert (act_arg != NULL);
4110 if (act_arg->expr == NULL)
4112 act_arg = act_arg->next;
4113 continue;
4115 act_arg = act_arg->next;
4117 formal_arg = gfc_get_formal_arglist ();
4118 gfc_get_symbol (curr_arg->name, gfc_current_ns, &(formal_arg->sym));
4120 /* May need to copy more info for the symbol. */
4121 formal_arg->sym->ts = curr_arg->ts;
4122 formal_arg->sym->attr.optional = curr_arg->optional;
4123 formal_arg->sym->attr.value = curr_arg->value;
4124 formal_arg->sym->attr.intent = curr_arg->intent;
4125 formal_arg->sym->attr.flavor = FL_VARIABLE;
4126 formal_arg->sym->attr.dummy = 1;
4128 if (formal_arg->sym->ts.type == BT_CHARACTER)
4129 formal_arg->sym->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
4131 /* If this isn't the first arg, set up the next ptr. For the
4132 last arg built, the formal_arg->next will never get set to
4133 anything other than NULL. */
4134 if (formal_prev != NULL)
4135 formal_prev->next = formal_arg;
4136 else
4137 formal_arg->next = NULL;
4139 formal_prev = formal_arg;
4141 /* Add arg to list of formal args. */
4142 add_formal_arg (&head, &tail, formal_arg, formal_arg->sym);
4144 /* Validate changes. */
4145 gfc_commit_symbol (formal_arg->sym);
4148 /* Add the interface to the symbol. */
4149 add_proc_interface (dest, IFSRC_DECL, head);
4151 /* Store the formal namespace information. */
4152 if (dest->formal != NULL)
4153 /* The current ns should be that for the dest proc. */
4154 dest->formal_ns = gfc_current_ns;
4155 /* Restore the current namespace to what it was on entry. */
4156 gfc_current_ns = parent_ns;
4160 static int
4161 std_for_isocbinding_symbol (int id)
4163 switch (id)
4165 #define NAMED_INTCST(a,b,c,d) \
4166 case a:\
4167 return d;
4168 #include "iso-c-binding.def"
4169 #undef NAMED_INTCST
4171 #define NAMED_FUNCTION(a,b,c,d) \
4172 case a:\
4173 return d;
4174 #define NAMED_SUBROUTINE(a,b,c,d) \
4175 case a:\
4176 return d;
4177 #include "iso-c-binding.def"
4178 #undef NAMED_FUNCTION
4179 #undef NAMED_SUBROUTINE
4181 default:
4182 return GFC_STD_F2003;
4186 /* Generate the given set of C interoperable kind objects, or all
4187 interoperable kinds. This function will only be given kind objects
4188 for valid iso_c_binding defined types because this is verified when
4189 the 'use' statement is parsed. If the user gives an 'only' clause,
4190 the specific kinds are looked up; if they don't exist, an error is
4191 reported. If the user does not give an 'only' clause, all
4192 iso_c_binding symbols are generated. If a list of specific kinds
4193 is given, it must have a NULL in the first empty spot to mark the
4194 end of the list. For C_null_(fun)ptr, dt_symtree has to be set and
4195 point to the symtree for c_(fun)ptr. */
4197 gfc_symtree *
4198 generate_isocbinding_symbol (const char *mod_name, iso_c_binding_symbol s,
4199 const char *local_name, gfc_symtree *dt_symtree,
4200 bool hidden)
4202 const char *const name = (local_name && local_name[0])
4203 ? local_name : c_interop_kinds_table[s].name;
4204 gfc_symtree *tmp_symtree;
4205 gfc_symbol *tmp_sym = NULL;
4206 int index;
4208 if (gfc_notification_std (std_for_isocbinding_symbol (s)) == ERROR)
4209 return NULL;
4211 tmp_symtree = gfc_find_symtree (gfc_current_ns->sym_root, name);
4212 if (hidden
4213 && (!tmp_symtree || !tmp_symtree->n.sym
4214 || tmp_symtree->n.sym->from_intmod != INTMOD_ISO_C_BINDING
4215 || tmp_symtree->n.sym->intmod_sym_id != s))
4216 tmp_symtree = NULL;
4218 /* Already exists in this scope so don't re-add it. */
4219 if (tmp_symtree != NULL && (tmp_sym = tmp_symtree->n.sym) != NULL
4220 && (!tmp_sym->attr.generic
4221 || (tmp_sym = gfc_find_dt_in_generic (tmp_sym)) != NULL)
4222 && tmp_sym->from_intmod == INTMOD_ISO_C_BINDING)
4224 if (tmp_sym->attr.flavor == FL_DERIVED
4225 && !get_iso_c_binding_dt (tmp_sym->intmod_sym_id))
4227 gfc_dt_list *dt_list;
4228 dt_list = gfc_get_dt_list ();
4229 dt_list->derived = tmp_sym;
4230 dt_list->next = gfc_derived_types;
4231 gfc_derived_types = dt_list;
4234 return tmp_symtree;
4237 /* Create the sym tree in the current ns. */
4238 if (hidden)
4240 tmp_symtree = gfc_get_unique_symtree (gfc_current_ns);
4241 tmp_sym = gfc_new_symbol (name, gfc_current_ns);
4243 /* Add to the list of tentative symbols. */
4244 latest_undo_chgset->syms.safe_push (tmp_sym);
4245 tmp_sym->old_symbol = NULL;
4246 tmp_sym->mark = 1;
4247 tmp_sym->gfc_new = 1;
4249 tmp_symtree->n.sym = tmp_sym;
4250 tmp_sym->refs++;
4252 else
4254 gfc_get_sym_tree (name, gfc_current_ns, &tmp_symtree, false);
4255 gcc_assert (tmp_symtree);
4256 tmp_sym = tmp_symtree->n.sym;
4259 /* Say what module this symbol belongs to. */
4260 tmp_sym->module = gfc_get_string (mod_name);
4261 tmp_sym->from_intmod = INTMOD_ISO_C_BINDING;
4262 tmp_sym->intmod_sym_id = s;
4263 tmp_sym->attr.is_iso_c = 1;
4264 tmp_sym->attr.use_assoc = 1;
4266 gcc_assert (dt_symtree == NULL || s == ISOCBINDING_NULL_FUNPTR
4267 || s == ISOCBINDING_NULL_PTR);
4269 switch (s)
4272 #define NAMED_INTCST(a,b,c,d) case a :
4273 #define NAMED_REALCST(a,b,c,d) case a :
4274 #define NAMED_CMPXCST(a,b,c,d) case a :
4275 #define NAMED_LOGCST(a,b,c) case a :
4276 #define NAMED_CHARKNDCST(a,b,c) case a :
4277 #include "iso-c-binding.def"
4279 tmp_sym->value = gfc_get_int_expr (gfc_default_integer_kind, NULL,
4280 c_interop_kinds_table[s].value);
4282 /* Initialize an integer constant expression node. */
4283 tmp_sym->attr.flavor = FL_PARAMETER;
4284 tmp_sym->ts.type = BT_INTEGER;
4285 tmp_sym->ts.kind = gfc_default_integer_kind;
4287 /* Mark this type as a C interoperable one. */
4288 tmp_sym->ts.is_c_interop = 1;
4289 tmp_sym->ts.is_iso_c = 1;
4290 tmp_sym->value->ts.is_c_interop = 1;
4291 tmp_sym->value->ts.is_iso_c = 1;
4292 tmp_sym->attr.is_c_interop = 1;
4294 /* Tell what f90 type this c interop kind is valid. */
4295 tmp_sym->ts.f90_type = c_interop_kinds_table[s].f90_type;
4297 break;
4300 #define NAMED_CHARCST(a,b,c) case a :
4301 #include "iso-c-binding.def"
4303 /* Initialize an integer constant expression node for the
4304 length of the character. */
4305 tmp_sym->value = gfc_get_character_expr (gfc_default_character_kind,
4306 &gfc_current_locus, NULL, 1);
4307 tmp_sym->value->ts.is_c_interop = 1;
4308 tmp_sym->value->ts.is_iso_c = 1;
4309 tmp_sym->value->value.character.length = 1;
4310 tmp_sym->value->value.character.string[0]
4311 = (gfc_char_t) c_interop_kinds_table[s].value;
4312 tmp_sym->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
4313 tmp_sym->ts.u.cl->length = gfc_get_int_expr (gfc_default_integer_kind,
4314 NULL, 1);
4316 /* May not need this in both attr and ts, but do need in
4317 attr for writing module file. */
4318 tmp_sym->attr.is_c_interop = 1;
4320 tmp_sym->attr.flavor = FL_PARAMETER;
4321 tmp_sym->ts.type = BT_CHARACTER;
4323 /* Need to set it to the C_CHAR kind. */
4324 tmp_sym->ts.kind = gfc_default_character_kind;
4326 /* Mark this type as a C interoperable one. */
4327 tmp_sym->ts.is_c_interop = 1;
4328 tmp_sym->ts.is_iso_c = 1;
4330 /* Tell what f90 type this c interop kind is valid. */
4331 tmp_sym->ts.f90_type = BT_CHARACTER;
4333 break;
4335 case ISOCBINDING_PTR:
4336 case ISOCBINDING_FUNPTR:
4338 gfc_symbol *dt_sym;
4339 gfc_dt_list **dt_list_ptr = NULL;
4340 gfc_component *tmp_comp = NULL;
4342 /* Generate real derived type. */
4343 if (hidden)
4344 dt_sym = tmp_sym;
4345 else
4347 const char *hidden_name;
4348 gfc_interface *intr, *head;
4350 hidden_name = gfc_get_string ("%c%s",
4351 (char) TOUPPER ((unsigned char)
4352 tmp_sym->name[0]),
4353 &tmp_sym->name[1]);
4354 tmp_symtree = gfc_find_symtree (gfc_current_ns->sym_root,
4355 hidden_name);
4356 gcc_assert (tmp_symtree == NULL);
4357 gfc_get_sym_tree (hidden_name, gfc_current_ns, &tmp_symtree, false);
4358 dt_sym = tmp_symtree->n.sym;
4359 dt_sym->name = gfc_get_string (s == ISOCBINDING_PTR
4360 ? "c_ptr" : "c_funptr");
4362 /* Generate an artificial generic function. */
4363 head = tmp_sym->generic;
4364 intr = gfc_get_interface ();
4365 intr->sym = dt_sym;
4366 intr->where = gfc_current_locus;
4367 intr->next = head;
4368 tmp_sym->generic = intr;
4370 if (!tmp_sym->attr.generic
4371 && !gfc_add_generic (&tmp_sym->attr, tmp_sym->name, NULL))
4372 return NULL;
4374 if (!tmp_sym->attr.function
4375 && !gfc_add_function (&tmp_sym->attr, tmp_sym->name, NULL))
4376 return NULL;
4379 /* Say what module this symbol belongs to. */
4380 dt_sym->module = gfc_get_string (mod_name);
4381 dt_sym->from_intmod = INTMOD_ISO_C_BINDING;
4382 dt_sym->intmod_sym_id = s;
4383 dt_sym->attr.use_assoc = 1;
4385 /* Initialize an integer constant expression node. */
4386 dt_sym->attr.flavor = FL_DERIVED;
4387 dt_sym->ts.is_c_interop = 1;
4388 dt_sym->attr.is_c_interop = 1;
4389 dt_sym->attr.private_comp = 1;
4390 dt_sym->component_access = ACCESS_PRIVATE;
4391 dt_sym->ts.is_iso_c = 1;
4392 dt_sym->ts.type = BT_DERIVED;
4393 dt_sym->ts.f90_type = BT_VOID;
4395 /* A derived type must have the bind attribute to be
4396 interoperable (J3/04-007, Section 15.2.3), even though
4397 the binding label is not used. */
4398 dt_sym->attr.is_bind_c = 1;
4400 dt_sym->attr.referenced = 1;
4401 dt_sym->ts.u.derived = dt_sym;
4403 /* Add the symbol created for the derived type to the current ns. */
4404 dt_list_ptr = &(gfc_derived_types);
4405 while (*dt_list_ptr != NULL && (*dt_list_ptr)->next != NULL)
4406 dt_list_ptr = &((*dt_list_ptr)->next);
4408 /* There is already at least one derived type in the list, so append
4409 the one we're currently building for c_ptr or c_funptr. */
4410 if (*dt_list_ptr != NULL)
4411 dt_list_ptr = &((*dt_list_ptr)->next);
4412 (*dt_list_ptr) = gfc_get_dt_list ();
4413 (*dt_list_ptr)->derived = dt_sym;
4414 (*dt_list_ptr)->next = NULL;
4416 gfc_add_component (dt_sym, "c_address", &tmp_comp);
4417 if (tmp_comp == NULL)
4418 gcc_unreachable ();
4420 tmp_comp->ts.type = BT_INTEGER;
4422 /* Set this because the module will need to read/write this field. */
4423 tmp_comp->ts.f90_type = BT_INTEGER;
4425 /* The kinds for c_ptr and c_funptr are the same. */
4426 index = get_c_kind ("c_ptr", c_interop_kinds_table);
4427 tmp_comp->ts.kind = c_interop_kinds_table[index].value;
4428 tmp_comp->attr.access = ACCESS_PRIVATE;
4430 /* Mark the component as C interoperable. */
4431 tmp_comp->ts.is_c_interop = 1;
4434 break;
4436 case ISOCBINDING_NULL_PTR:
4437 case ISOCBINDING_NULL_FUNPTR:
4438 gen_special_c_interop_ptr (tmp_sym, dt_symtree);
4439 break;
4441 default:
4442 gcc_unreachable ();
4444 gfc_commit_symbol (tmp_sym);
4445 return tmp_symtree;
4449 /* Check that a symbol is already typed. If strict is not set, an untyped
4450 symbol is acceptable for non-standard-conforming mode. */
4452 bool
4453 gfc_check_symbol_typed (gfc_symbol* sym, gfc_namespace* ns,
4454 bool strict, locus where)
4456 gcc_assert (sym);
4458 if (gfc_matching_prefix)
4459 return true;
4461 /* Check for the type and try to give it an implicit one. */
4462 if (sym->ts.type == BT_UNKNOWN
4463 && !gfc_set_default_type (sym, 0, ns))
4465 if (strict)
4467 gfc_error ("Symbol '%s' is used before it is typed at %L",
4468 sym->name, &where);
4469 return false;
4472 if (!gfc_notify_std (GFC_STD_GNU, "Symbol '%s' is used before"
4473 " it is typed at %L", sym->name, &where))
4474 return false;
4477 /* Everything is ok. */
4478 return true;
4482 /* Construct a typebound-procedure structure. Those are stored in a tentative
4483 list and marked `error' until symbols are committed. */
4485 gfc_typebound_proc*
4486 gfc_get_typebound_proc (gfc_typebound_proc *tb0)
4488 gfc_typebound_proc *result;
4490 result = XCNEW (gfc_typebound_proc);
4491 if (tb0)
4492 *result = *tb0;
4493 result->error = 1;
4495 latest_undo_chgset->tbps.safe_push (result);
4497 return result;
4501 /* Get the super-type of a given derived type. */
4503 gfc_symbol*
4504 gfc_get_derived_super_type (gfc_symbol* derived)
4506 gcc_assert (derived);
4508 if (derived->attr.generic)
4509 derived = gfc_find_dt_in_generic (derived);
4511 if (!derived->attr.extension)
4512 return NULL;
4514 gcc_assert (derived->components);
4515 gcc_assert (derived->components->ts.type == BT_DERIVED);
4516 gcc_assert (derived->components->ts.u.derived);
4518 if (derived->components->ts.u.derived->attr.generic)
4519 return gfc_find_dt_in_generic (derived->components->ts.u.derived);
4521 return derived->components->ts.u.derived;
4525 /* Get the ultimate super-type of a given derived type. */
4527 gfc_symbol*
4528 gfc_get_ultimate_derived_super_type (gfc_symbol* derived)
4530 if (!derived->attr.extension)
4531 return NULL;
4533 derived = gfc_get_derived_super_type (derived);
4535 if (derived->attr.extension)
4536 return gfc_get_ultimate_derived_super_type (derived);
4537 else
4538 return derived;
4542 /* Check if a derived type t2 is an extension of (or equal to) a type t1. */
4544 bool
4545 gfc_type_is_extension_of (gfc_symbol *t1, gfc_symbol *t2)
4547 while (!gfc_compare_derived_types (t1, t2) && t2->attr.extension)
4548 t2 = gfc_get_derived_super_type (t2);
4549 return gfc_compare_derived_types (t1, t2);
4553 /* Check if two typespecs are type compatible (F03:5.1.1.2):
4554 If ts1 is nonpolymorphic, ts2 must be the same type.
4555 If ts1 is polymorphic (CLASS), ts2 must be an extension of ts1. */
4557 bool
4558 gfc_type_compatible (gfc_typespec *ts1, gfc_typespec *ts2)
4560 bool is_class1 = (ts1->type == BT_CLASS);
4561 bool is_class2 = (ts2->type == BT_CLASS);
4562 bool is_derived1 = (ts1->type == BT_DERIVED);
4563 bool is_derived2 = (ts2->type == BT_DERIVED);
4565 if (is_class1
4566 && ts1->u.derived->components
4567 && ts1->u.derived->components->ts.u.derived->attr.unlimited_polymorphic)
4568 return 1;
4570 if (!is_derived1 && !is_derived2 && !is_class1 && !is_class2)
4571 return (ts1->type == ts2->type);
4573 if (is_derived1 && is_derived2)
4574 return gfc_compare_derived_types (ts1->u.derived, ts2->u.derived);
4576 if (is_derived1 && is_class2)
4577 return gfc_compare_derived_types (ts1->u.derived,
4578 ts2->u.derived->components->ts.u.derived);
4579 if (is_class1 && is_derived2)
4580 return gfc_type_is_extension_of (ts1->u.derived->components->ts.u.derived,
4581 ts2->u.derived);
4582 else if (is_class1 && is_class2)
4583 return gfc_type_is_extension_of (ts1->u.derived->components->ts.u.derived,
4584 ts2->u.derived->components->ts.u.derived);
4585 else
4586 return 0;
4590 /* Find the parent-namespace of the current function. If we're inside
4591 BLOCK constructs, it may not be the current one. */
4593 gfc_namespace*
4594 gfc_find_proc_namespace (gfc_namespace* ns)
4596 while (ns->construct_entities)
4598 ns = ns->parent;
4599 gcc_assert (ns);
4602 return ns;
4606 /* Check if an associate-variable should be translated as an `implicit' pointer
4607 internally (if it is associated to a variable and not an array with
4608 descriptor). */
4610 bool
4611 gfc_is_associate_pointer (gfc_symbol* sym)
4613 if (!sym->assoc)
4614 return false;
4616 if (sym->ts.type == BT_CLASS)
4617 return true;
4619 if (!sym->assoc->variable)
4620 return false;
4622 if (sym->attr.dimension && sym->as->type != AS_EXPLICIT)
4623 return false;
4625 return true;
4629 gfc_symbol *
4630 gfc_find_dt_in_generic (gfc_symbol *sym)
4632 gfc_interface *intr = NULL;
4634 if (!sym || sym->attr.flavor == FL_DERIVED)
4635 return sym;
4637 if (sym->attr.generic)
4638 for (intr = sym->generic; intr; intr = intr->next)
4639 if (intr->sym->attr.flavor == FL_DERIVED)
4640 break;
4641 return intr ? intr->sym : NULL;
4645 /* Get the dummy arguments from a procedure symbol. If it has been declared
4646 via a PROCEDURE statement with a named interface, ts.interface will be set
4647 and the arguments need to be taken from there. */
4649 gfc_formal_arglist *
4650 gfc_sym_get_dummy_args (gfc_symbol *sym)
4652 gfc_formal_arglist *dummies;
4654 dummies = sym->formal;
4655 if (dummies == NULL && sym->ts.interface != NULL)
4656 dummies = sym->ts.interface->formal;
4658 return dummies;