2011-04-04 Tobias Burnus <burnus@net-b.de>
[official-gcc.git] / gcc / fortran / symbol.c
blob71aa518ee31b980bc036746bd600d54f3f2658c7
1 /* Maintain binary trees of symbols.
2 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
3 2009, 2010, 2011
4 Free Software Foundation, Inc.
5 Contributed by Andy Vaught
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify it under
10 the terms of the GNU General Public License as published by the Free
11 Software Foundation; either version 3, or (at your option) any later
12 version.
14 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 for more details.
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
24 #include "config.h"
25 #include "system.h"
26 #include "flags.h"
27 #include "gfortran.h"
28 #include "parse.h"
29 #include "match.h"
30 #include "constructor.h"
33 /* Strings for all symbol attributes. We use these for dumping the
34 parse tree, in error messages, and also when reading and writing
35 modules. */
37 const mstring flavors[] =
39 minit ("UNKNOWN-FL", FL_UNKNOWN), minit ("PROGRAM", FL_PROGRAM),
40 minit ("BLOCK-DATA", FL_BLOCK_DATA), minit ("MODULE", FL_MODULE),
41 minit ("VARIABLE", FL_VARIABLE), minit ("PARAMETER", FL_PARAMETER),
42 minit ("LABEL", FL_LABEL), minit ("PROCEDURE", FL_PROCEDURE),
43 minit ("DERIVED", FL_DERIVED), minit ("NAMELIST", FL_NAMELIST),
44 minit (NULL, -1)
47 const mstring procedures[] =
49 minit ("UNKNOWN-PROC", PROC_UNKNOWN),
50 minit ("MODULE-PROC", PROC_MODULE),
51 minit ("INTERNAL-PROC", PROC_INTERNAL),
52 minit ("DUMMY-PROC", PROC_DUMMY),
53 minit ("INTRINSIC-PROC", PROC_INTRINSIC),
54 minit ("EXTERNAL-PROC", PROC_EXTERNAL),
55 minit ("STATEMENT-PROC", PROC_ST_FUNCTION),
56 minit (NULL, -1)
59 const mstring intents[] =
61 minit ("UNKNOWN-INTENT", INTENT_UNKNOWN),
62 minit ("IN", INTENT_IN),
63 minit ("OUT", INTENT_OUT),
64 minit ("INOUT", INTENT_INOUT),
65 minit (NULL, -1)
68 const mstring access_types[] =
70 minit ("UNKNOWN-ACCESS", ACCESS_UNKNOWN),
71 minit ("PUBLIC", ACCESS_PUBLIC),
72 minit ("PRIVATE", ACCESS_PRIVATE),
73 minit (NULL, -1)
76 const mstring ifsrc_types[] =
78 minit ("UNKNOWN", IFSRC_UNKNOWN),
79 minit ("DECL", IFSRC_DECL),
80 minit ("BODY", IFSRC_IFBODY)
83 const mstring save_status[] =
85 minit ("UNKNOWN", SAVE_NONE),
86 minit ("EXPLICIT-SAVE", SAVE_EXPLICIT),
87 minit ("IMPLICIT-SAVE", SAVE_IMPLICIT),
90 /* This is to make sure the backend generates setup code in the correct
91 order. */
93 static int next_dummy_order = 1;
96 gfc_namespace *gfc_current_ns;
97 gfc_namespace *gfc_global_ns_list;
99 gfc_gsymbol *gfc_gsym_root = NULL;
101 static gfc_symbol *changed_syms = NULL;
103 gfc_dt_list *gfc_derived_types;
106 /* List of tentative typebound-procedures. */
108 typedef struct tentative_tbp
110 gfc_typebound_proc *proc;
111 struct tentative_tbp *next;
113 tentative_tbp;
115 static tentative_tbp *tentative_tbp_list = NULL;
118 /*********** IMPLICIT NONE and IMPLICIT statement handlers ***********/
120 /* The following static variable indicates whether a particular element has
121 been explicitly set or not. */
123 static int new_flag[GFC_LETTERS];
126 /* Handle a correctly parsed IMPLICIT NONE. */
128 void
129 gfc_set_implicit_none (void)
131 int i;
133 if (gfc_current_ns->seen_implicit_none)
135 gfc_error ("Duplicate IMPLICIT NONE statement at %C");
136 return;
139 gfc_current_ns->seen_implicit_none = 1;
141 for (i = 0; i < GFC_LETTERS; i++)
143 gfc_clear_ts (&gfc_current_ns->default_type[i]);
144 gfc_current_ns->set_flag[i] = 1;
149 /* Reset the implicit range flags. */
151 void
152 gfc_clear_new_implicit (void)
154 int i;
156 for (i = 0; i < GFC_LETTERS; i++)
157 new_flag[i] = 0;
161 /* Prepare for a new implicit range. Sets flags in new_flag[]. */
163 gfc_try
164 gfc_add_new_implicit_range (int c1, int c2)
166 int i;
168 c1 -= 'a';
169 c2 -= 'a';
171 for (i = c1; i <= c2; i++)
173 if (new_flag[i])
175 gfc_error ("Letter '%c' already set in IMPLICIT statement at %C",
176 i + 'A');
177 return FAILURE;
180 new_flag[i] = 1;
183 return SUCCESS;
187 /* Add a matched implicit range for gfc_set_implicit(). Check if merging
188 the new implicit types back into the existing types will work. */
190 gfc_try
191 gfc_merge_new_implicit (gfc_typespec *ts)
193 int i;
195 if (gfc_current_ns->seen_implicit_none)
197 gfc_error ("Cannot specify IMPLICIT at %C after IMPLICIT NONE");
198 return FAILURE;
201 for (i = 0; i < GFC_LETTERS; i++)
203 if (new_flag[i])
205 if (gfc_current_ns->set_flag[i])
207 gfc_error ("Letter %c already has an IMPLICIT type at %C",
208 i + 'A');
209 return FAILURE;
212 gfc_current_ns->default_type[i] = *ts;
213 gfc_current_ns->implicit_loc[i] = gfc_current_locus;
214 gfc_current_ns->set_flag[i] = 1;
217 return SUCCESS;
221 /* Given a symbol, return a pointer to the typespec for its default type. */
223 gfc_typespec *
224 gfc_get_default_type (const char *name, gfc_namespace *ns)
226 char letter;
228 letter = name[0];
230 if (gfc_option.flag_allow_leading_underscore && letter == '_')
231 gfc_internal_error ("Option -fallow-leading-underscore is for use only by "
232 "gfortran developers, and should not be used for "
233 "implicitly typed variables");
235 if (letter < 'a' || letter > 'z')
236 gfc_internal_error ("gfc_get_default_type(): Bad symbol '%s'", name);
238 if (ns == NULL)
239 ns = gfc_current_ns;
241 return &ns->default_type[letter - 'a'];
245 /* Given a pointer to a symbol, set its type according to the first
246 letter of its name. Fails if the letter in question has no default
247 type. */
249 gfc_try
250 gfc_set_default_type (gfc_symbol *sym, int error_flag, gfc_namespace *ns)
252 gfc_typespec *ts;
254 if (sym->ts.type != BT_UNKNOWN)
255 gfc_internal_error ("gfc_set_default_type(): symbol already has a type");
257 ts = gfc_get_default_type (sym->name, ns);
259 if (ts->type == BT_UNKNOWN)
261 if (error_flag && !sym->attr.untyped)
263 gfc_error ("Symbol '%s' at %L has no IMPLICIT type",
264 sym->name, &sym->declared_at);
265 sym->attr.untyped = 1; /* Ensure we only give an error once. */
268 return FAILURE;
271 sym->ts = *ts;
272 sym->attr.implicit_type = 1;
274 if (ts->type == BT_CHARACTER && ts->u.cl)
275 sym->ts.u.cl = gfc_new_charlen (sym->ns, ts->u.cl);
277 if (sym->attr.is_bind_c == 1)
279 /* BIND(C) variables should not be implicitly declared. */
280 gfc_warning_now ("Implicitly declared BIND(C) variable '%s' at %L may "
281 "not be C interoperable", sym->name, &sym->declared_at);
282 sym->ts.f90_type = sym->ts.type;
285 if (sym->attr.dummy != 0)
287 if (sym->ns->proc_name != NULL
288 && (sym->ns->proc_name->attr.subroutine != 0
289 || sym->ns->proc_name->attr.function != 0)
290 && sym->ns->proc_name->attr.is_bind_c != 0)
292 /* Dummy args to a BIND(C) routine may not be interoperable if
293 they are implicitly typed. */
294 gfc_warning_now ("Implicitly declared variable '%s' at %L may not "
295 "be C interoperable but it is a dummy argument to "
296 "the BIND(C) procedure '%s' at %L", sym->name,
297 &(sym->declared_at), sym->ns->proc_name->name,
298 &(sym->ns->proc_name->declared_at));
299 sym->ts.f90_type = sym->ts.type;
303 return SUCCESS;
307 /* This function is called from parse.c(parse_progunit) to check the
308 type of the function is not implicitly typed in the host namespace
309 and to implicitly type the function result, if necessary. */
311 void
312 gfc_check_function_type (gfc_namespace *ns)
314 gfc_symbol *proc = ns->proc_name;
316 if (!proc->attr.contained || proc->result->attr.implicit_type)
317 return;
319 if (proc->result->ts.type == BT_UNKNOWN && proc->result->ts.interface == NULL)
321 if (gfc_set_default_type (proc->result, 0, gfc_current_ns)
322 == SUCCESS)
324 if (proc->result != proc)
326 proc->ts = proc->result->ts;
327 proc->as = gfc_copy_array_spec (proc->result->as);
328 proc->attr.dimension = proc->result->attr.dimension;
329 proc->attr.pointer = proc->result->attr.pointer;
330 proc->attr.allocatable = proc->result->attr.allocatable;
333 else if (!proc->result->attr.proc_pointer)
335 gfc_error ("Function result '%s' at %L has no IMPLICIT type",
336 proc->result->name, &proc->result->declared_at);
337 proc->result->attr.untyped = 1;
343 /******************** Symbol attribute stuff *********************/
345 /* This is a generic conflict-checker. We do this to avoid having a
346 single conflict in two places. */
348 #define conf(a, b) if (attr->a && attr->b) { a1 = a; a2 = b; goto conflict; }
349 #define conf2(a) if (attr->a) { a2 = a; goto conflict; }
350 #define conf_std(a, b, std) if (attr->a && attr->b)\
352 a1 = a;\
353 a2 = b;\
354 standard = std;\
355 goto conflict_std;\
358 static gfc_try
359 check_conflict (symbol_attribute *attr, const char *name, locus *where)
361 static const char *dummy = "DUMMY", *save = "SAVE", *pointer = "POINTER",
362 *target = "TARGET", *external = "EXTERNAL", *intent = "INTENT",
363 *intent_in = "INTENT(IN)", *intrinsic = "INTRINSIC",
364 *intent_out = "INTENT(OUT)", *intent_inout = "INTENT(INOUT)",
365 *allocatable = "ALLOCATABLE", *elemental = "ELEMENTAL",
366 *privat = "PRIVATE", *recursive = "RECURSIVE",
367 *in_common = "COMMON", *result = "RESULT", *in_namelist = "NAMELIST",
368 *publik = "PUBLIC", *optional = "OPTIONAL", *entry = "ENTRY",
369 *function = "FUNCTION", *subroutine = "SUBROUTINE",
370 *dimension = "DIMENSION", *in_equivalence = "EQUIVALENCE",
371 *use_assoc = "USE ASSOCIATED", *cray_pointer = "CRAY POINTER",
372 *cray_pointee = "CRAY POINTEE", *data = "DATA", *value = "VALUE",
373 *volatile_ = "VOLATILE", *is_protected = "PROTECTED",
374 *is_bind_c = "BIND(C)", *procedure = "PROCEDURE",
375 *asynchronous = "ASYNCHRONOUS", *codimension = "CODIMENSION",
376 *contiguous = "CONTIGUOUS";
377 static const char *threadprivate = "THREADPRIVATE";
379 const char *a1, *a2;
380 int standard;
382 if (where == NULL)
383 where = &gfc_current_locus;
385 if (attr->pointer && attr->intent != INTENT_UNKNOWN)
387 a1 = pointer;
388 a2 = intent;
389 standard = GFC_STD_F2003;
390 goto conflict_std;
393 if (attr->in_namelist && (attr->allocatable || attr->pointer))
395 a1 = in_namelist;
396 a2 = attr->allocatable ? allocatable : pointer;
397 standard = GFC_STD_F2003;
398 goto conflict_std;
401 /* Check for attributes not allowed in a BLOCK DATA. */
402 if (gfc_current_state () == COMP_BLOCK_DATA)
404 a1 = NULL;
406 if (attr->in_namelist)
407 a1 = in_namelist;
408 if (attr->allocatable)
409 a1 = allocatable;
410 if (attr->external)
411 a1 = external;
412 if (attr->optional)
413 a1 = optional;
414 if (attr->access == ACCESS_PRIVATE)
415 a1 = privat;
416 if (attr->access == ACCESS_PUBLIC)
417 a1 = publik;
418 if (attr->intent != INTENT_UNKNOWN)
419 a1 = intent;
421 if (a1 != NULL)
423 gfc_error
424 ("%s attribute not allowed in BLOCK DATA program unit at %L",
425 a1, where);
426 return FAILURE;
430 if (attr->save == SAVE_EXPLICIT)
432 conf (dummy, save);
433 conf (in_common, save);
434 conf (result, save);
436 switch (attr->flavor)
438 case FL_PROGRAM:
439 case FL_BLOCK_DATA:
440 case FL_MODULE:
441 case FL_LABEL:
442 case FL_DERIVED:
443 case FL_PARAMETER:
444 a1 = gfc_code2string (flavors, attr->flavor);
445 a2 = save;
446 goto conflict;
448 case FL_PROCEDURE:
449 /* Conflicts between SAVE and PROCEDURE will be checked at
450 resolution stage, see "resolve_fl_procedure". */
451 case FL_VARIABLE:
452 case FL_NAMELIST:
453 default:
454 break;
458 conf (dummy, entry);
459 conf (dummy, intrinsic);
460 conf (dummy, threadprivate);
461 conf (pointer, target);
462 conf (pointer, intrinsic);
463 conf (pointer, elemental);
464 conf (allocatable, elemental);
466 conf (target, external);
467 conf (target, intrinsic);
469 if (!attr->if_source)
470 conf (external, dimension); /* See Fortran 95's R504. */
472 conf (external, intrinsic);
473 conf (entry, intrinsic);
475 if ((attr->if_source == IFSRC_DECL && !attr->procedure) || attr->contained)
476 conf (external, subroutine);
478 if (attr->proc_pointer && gfc_notify_std (GFC_STD_F2003,
479 "Fortran 2003: Procedure pointer at %C") == FAILURE)
480 return FAILURE;
482 conf (allocatable, pointer);
483 conf_std (allocatable, dummy, GFC_STD_F2003);
484 conf_std (allocatable, function, GFC_STD_F2003);
485 conf_std (allocatable, result, GFC_STD_F2003);
486 conf (elemental, recursive);
488 conf (in_common, dummy);
489 conf (in_common, allocatable);
490 conf (in_common, codimension);
491 conf (in_common, result);
493 conf (dummy, result);
495 conf (in_equivalence, use_assoc);
496 conf (in_equivalence, codimension);
497 conf (in_equivalence, dummy);
498 conf (in_equivalence, target);
499 conf (in_equivalence, pointer);
500 conf (in_equivalence, function);
501 conf (in_equivalence, result);
502 conf (in_equivalence, entry);
503 conf (in_equivalence, allocatable);
504 conf (in_equivalence, threadprivate);
506 conf (entry, result);
508 conf (function, subroutine);
510 if (!function && !subroutine)
511 conf (is_bind_c, dummy);
513 conf (is_bind_c, cray_pointer);
514 conf (is_bind_c, cray_pointee);
515 conf (is_bind_c, codimension);
516 conf (is_bind_c, allocatable);
517 conf (is_bind_c, elemental);
519 /* Need to also get volatile attr, according to 5.1 of F2003 draft.
520 Parameter conflict caught below. Also, value cannot be specified
521 for a dummy procedure. */
523 /* Cray pointer/pointee conflicts. */
524 conf (cray_pointer, cray_pointee);
525 conf (cray_pointer, dimension);
526 conf (cray_pointer, codimension);
527 conf (cray_pointer, contiguous);
528 conf (cray_pointer, pointer);
529 conf (cray_pointer, target);
530 conf (cray_pointer, allocatable);
531 conf (cray_pointer, external);
532 conf (cray_pointer, intrinsic);
533 conf (cray_pointer, in_namelist);
534 conf (cray_pointer, function);
535 conf (cray_pointer, subroutine);
536 conf (cray_pointer, entry);
538 conf (cray_pointee, allocatable);
539 conf (cray_pointer, contiguous);
540 conf (cray_pointer, codimension);
541 conf (cray_pointee, intent);
542 conf (cray_pointee, optional);
543 conf (cray_pointee, dummy);
544 conf (cray_pointee, target);
545 conf (cray_pointee, intrinsic);
546 conf (cray_pointee, pointer);
547 conf (cray_pointee, entry);
548 conf (cray_pointee, in_common);
549 conf (cray_pointee, in_equivalence);
550 conf (cray_pointee, threadprivate);
552 conf (data, dummy);
553 conf (data, function);
554 conf (data, result);
555 conf (data, allocatable);
557 conf (value, pointer)
558 conf (value, allocatable)
559 conf (value, subroutine)
560 conf (value, function)
561 conf (value, volatile_)
562 conf (value, dimension)
563 conf (value, codimension)
564 conf (value, external)
566 conf (codimension, result)
568 if (attr->value
569 && (attr->intent == INTENT_OUT || attr->intent == INTENT_INOUT))
571 a1 = value;
572 a2 = attr->intent == INTENT_OUT ? intent_out : intent_inout;
573 goto conflict;
576 conf (is_protected, intrinsic)
577 conf (is_protected, in_common)
579 conf (asynchronous, intrinsic)
580 conf (asynchronous, external)
582 conf (volatile_, intrinsic)
583 conf (volatile_, external)
585 if (attr->volatile_ && attr->intent == INTENT_IN)
587 a1 = volatile_;
588 a2 = intent_in;
589 goto conflict;
592 conf (procedure, allocatable)
593 conf (procedure, dimension)
594 conf (procedure, codimension)
595 conf (procedure, intrinsic)
596 conf (procedure, target)
597 conf (procedure, value)
598 conf (procedure, volatile_)
599 conf (procedure, asynchronous)
600 conf (procedure, entry)
602 a1 = gfc_code2string (flavors, attr->flavor);
604 if (attr->in_namelist
605 && attr->flavor != FL_VARIABLE
606 && attr->flavor != FL_PROCEDURE
607 && attr->flavor != FL_UNKNOWN)
609 a2 = in_namelist;
610 goto conflict;
613 switch (attr->flavor)
615 case FL_PROGRAM:
616 case FL_BLOCK_DATA:
617 case FL_MODULE:
618 case FL_LABEL:
619 conf2 (codimension);
620 conf2 (dimension);
621 conf2 (dummy);
622 conf2 (volatile_);
623 conf2 (asynchronous);
624 conf2 (contiguous);
625 conf2 (pointer);
626 conf2 (is_protected);
627 conf2 (target);
628 conf2 (external);
629 conf2 (intrinsic);
630 conf2 (allocatable);
631 conf2 (result);
632 conf2 (in_namelist);
633 conf2 (optional);
634 conf2 (function);
635 conf2 (subroutine);
636 conf2 (threadprivate);
638 if (attr->access == ACCESS_PUBLIC || attr->access == ACCESS_PRIVATE)
640 a2 = attr->access == ACCESS_PUBLIC ? publik : privat;
641 gfc_error ("%s attribute applied to %s %s at %L", a2, a1,
642 name, where);
643 return FAILURE;
646 if (attr->is_bind_c)
648 gfc_error_now ("BIND(C) applied to %s %s at %L", a1, name, where);
649 return FAILURE;
652 break;
654 case FL_VARIABLE:
655 break;
657 case FL_NAMELIST:
658 conf2 (result);
659 break;
661 case FL_PROCEDURE:
662 /* Conflicts with INTENT, SAVE and RESULT will be checked
663 at resolution stage, see "resolve_fl_procedure". */
665 if (attr->subroutine)
667 a1 = subroutine;
668 conf2 (target);
669 conf2 (allocatable);
670 conf2 (volatile_);
671 conf2 (asynchronous);
672 conf2 (in_namelist);
673 conf2 (codimension);
674 conf2 (dimension);
675 conf2 (function);
676 conf2 (threadprivate);
679 if (!attr->proc_pointer)
680 conf2 (in_common);
682 switch (attr->proc)
684 case PROC_ST_FUNCTION:
685 conf2 (dummy);
686 break;
688 case PROC_MODULE:
689 conf2 (dummy);
690 break;
692 case PROC_DUMMY:
693 conf2 (result);
694 conf2 (threadprivate);
695 break;
697 default:
698 break;
701 break;
703 case FL_DERIVED:
704 conf2 (dummy);
705 conf2 (pointer);
706 conf2 (target);
707 conf2 (external);
708 conf2 (intrinsic);
709 conf2 (allocatable);
710 conf2 (optional);
711 conf2 (entry);
712 conf2 (function);
713 conf2 (subroutine);
714 conf2 (threadprivate);
715 conf2 (result);
717 if (attr->intent != INTENT_UNKNOWN)
719 a2 = intent;
720 goto conflict;
722 break;
724 case FL_PARAMETER:
725 conf2 (external);
726 conf2 (intrinsic);
727 conf2 (optional);
728 conf2 (allocatable);
729 conf2 (function);
730 conf2 (subroutine);
731 conf2 (entry);
732 conf2 (contiguous);
733 conf2 (pointer);
734 conf2 (is_protected);
735 conf2 (target);
736 conf2 (dummy);
737 conf2 (in_common);
738 conf2 (value);
739 conf2 (volatile_);
740 conf2 (asynchronous);
741 conf2 (threadprivate);
742 conf2 (value);
743 conf2 (is_bind_c);
744 conf2 (codimension);
745 conf2 (result);
746 break;
748 default:
749 break;
752 return SUCCESS;
754 conflict:
755 if (name == NULL)
756 gfc_error ("%s attribute conflicts with %s attribute at %L",
757 a1, a2, where);
758 else
759 gfc_error ("%s attribute conflicts with %s attribute in '%s' at %L",
760 a1, a2, name, where);
762 return FAILURE;
764 conflict_std:
765 if (name == NULL)
767 return gfc_notify_std (standard, "Fortran 2003: %s attribute "
768 "with %s attribute at %L", a1, a2,
769 where);
771 else
773 return gfc_notify_std (standard, "Fortran 2003: %s attribute "
774 "with %s attribute in '%s' at %L",
775 a1, a2, name, where);
779 #undef conf
780 #undef conf2
781 #undef conf_std
784 /* Mark a symbol as referenced. */
786 void
787 gfc_set_sym_referenced (gfc_symbol *sym)
790 if (sym->attr.referenced)
791 return;
793 sym->attr.referenced = 1;
795 /* Remember which order dummy variables are accessed in. */
796 if (sym->attr.dummy)
797 sym->dummy_order = next_dummy_order++;
801 /* Common subroutine called by attribute changing subroutines in order
802 to prevent them from changing a symbol that has been
803 use-associated. Returns zero if it is OK to change the symbol,
804 nonzero if not. */
806 static int
807 check_used (symbol_attribute *attr, const char *name, locus *where)
810 if (attr->use_assoc == 0)
811 return 0;
813 if (where == NULL)
814 where = &gfc_current_locus;
816 if (name == NULL)
817 gfc_error ("Cannot change attributes of USE-associated symbol at %L",
818 where);
819 else
820 gfc_error ("Cannot change attributes of USE-associated symbol %s at %L",
821 name, where);
823 return 1;
827 /* Generate an error because of a duplicate attribute. */
829 static void
830 duplicate_attr (const char *attr, locus *where)
833 if (where == NULL)
834 where = &gfc_current_locus;
836 gfc_error ("Duplicate %s attribute specified at %L", attr, where);
840 gfc_try
841 gfc_add_ext_attribute (symbol_attribute *attr, ext_attr_id_t ext_attr,
842 locus *where ATTRIBUTE_UNUSED)
844 attr->ext_attr |= 1 << ext_attr;
845 return SUCCESS;
849 /* Called from decl.c (attr_decl1) to check attributes, when declared
850 separately. */
852 gfc_try
853 gfc_add_attribute (symbol_attribute *attr, locus *where)
855 if (check_used (attr, NULL, where))
856 return FAILURE;
858 return check_conflict (attr, NULL, where);
862 gfc_try
863 gfc_add_allocatable (symbol_attribute *attr, locus *where)
866 if (check_used (attr, NULL, where))
867 return FAILURE;
869 if (attr->allocatable)
871 duplicate_attr ("ALLOCATABLE", where);
872 return FAILURE;
875 if (attr->flavor == FL_PROCEDURE && attr->if_source == IFSRC_IFBODY
876 && gfc_find_state (COMP_INTERFACE) == FAILURE)
878 gfc_error ("ALLOCATABLE specified outside of INTERFACE body at %L",
879 where);
880 return FAILURE;
883 attr->allocatable = 1;
884 return check_conflict (attr, NULL, where);
888 gfc_try
889 gfc_add_codimension (symbol_attribute *attr, const char *name, locus *where)
892 if (check_used (attr, name, where))
893 return FAILURE;
895 if (attr->codimension)
897 duplicate_attr ("CODIMENSION", where);
898 return FAILURE;
901 if (attr->flavor == FL_PROCEDURE && attr->if_source == IFSRC_IFBODY
902 && gfc_find_state (COMP_INTERFACE) == FAILURE)
904 gfc_error ("CODIMENSION specified for '%s' outside its INTERFACE body "
905 "at %L", name, where);
906 return FAILURE;
909 attr->codimension = 1;
910 return check_conflict (attr, name, where);
914 gfc_try
915 gfc_add_dimension (symbol_attribute *attr, const char *name, locus *where)
918 if (check_used (attr, name, where))
919 return FAILURE;
921 if (attr->dimension)
923 duplicate_attr ("DIMENSION", where);
924 return FAILURE;
927 if (attr->flavor == FL_PROCEDURE && attr->if_source == IFSRC_IFBODY
928 && gfc_find_state (COMP_INTERFACE) == FAILURE)
930 gfc_error ("DIMENSION specified for '%s' outside its INTERFACE body "
931 "at %L", name, where);
932 return FAILURE;
935 attr->dimension = 1;
936 return check_conflict (attr, name, where);
940 gfc_try
941 gfc_add_contiguous (symbol_attribute *attr, const char *name, locus *where)
944 if (check_used (attr, name, where))
945 return FAILURE;
947 attr->contiguous = 1;
948 return check_conflict (attr, name, where);
952 gfc_try
953 gfc_add_external (symbol_attribute *attr, locus *where)
956 if (check_used (attr, NULL, where))
957 return FAILURE;
959 if (attr->external)
961 duplicate_attr ("EXTERNAL", where);
962 return FAILURE;
965 if (attr->pointer && attr->if_source != IFSRC_IFBODY)
967 attr->pointer = 0;
968 attr->proc_pointer = 1;
971 attr->external = 1;
973 return check_conflict (attr, NULL, where);
977 gfc_try
978 gfc_add_intrinsic (symbol_attribute *attr, locus *where)
981 if (check_used (attr, NULL, where))
982 return FAILURE;
984 if (attr->intrinsic)
986 duplicate_attr ("INTRINSIC", where);
987 return FAILURE;
990 attr->intrinsic = 1;
992 return check_conflict (attr, NULL, where);
996 gfc_try
997 gfc_add_optional (symbol_attribute *attr, locus *where)
1000 if (check_used (attr, NULL, where))
1001 return FAILURE;
1003 if (attr->optional)
1005 duplicate_attr ("OPTIONAL", where);
1006 return FAILURE;
1009 attr->optional = 1;
1010 return check_conflict (attr, NULL, where);
1014 gfc_try
1015 gfc_add_pointer (symbol_attribute *attr, locus *where)
1018 if (check_used (attr, NULL, where))
1019 return FAILURE;
1021 if (attr->pointer && !(attr->if_source == IFSRC_IFBODY
1022 && gfc_find_state (COMP_INTERFACE) == FAILURE))
1024 duplicate_attr ("POINTER", where);
1025 return FAILURE;
1028 if (attr->procedure || (attr->external && attr->if_source != IFSRC_IFBODY)
1029 || (attr->if_source == IFSRC_IFBODY
1030 && gfc_find_state (COMP_INTERFACE) == FAILURE))
1031 attr->proc_pointer = 1;
1032 else
1033 attr->pointer = 1;
1035 return check_conflict (attr, NULL, where);
1039 gfc_try
1040 gfc_add_cray_pointer (symbol_attribute *attr, locus *where)
1043 if (check_used (attr, NULL, where))
1044 return FAILURE;
1046 attr->cray_pointer = 1;
1047 return check_conflict (attr, NULL, where);
1051 gfc_try
1052 gfc_add_cray_pointee (symbol_attribute *attr, locus *where)
1055 if (check_used (attr, NULL, where))
1056 return FAILURE;
1058 if (attr->cray_pointee)
1060 gfc_error ("Cray Pointee at %L appears in multiple pointer()"
1061 " statements", where);
1062 return FAILURE;
1065 attr->cray_pointee = 1;
1066 return check_conflict (attr, NULL, where);
1070 gfc_try
1071 gfc_add_protected (symbol_attribute *attr, const char *name, locus *where)
1073 if (check_used (attr, name, where))
1074 return FAILURE;
1076 if (attr->is_protected)
1078 if (gfc_notify_std (GFC_STD_LEGACY,
1079 "Duplicate PROTECTED attribute specified at %L",
1080 where)
1081 == FAILURE)
1082 return FAILURE;
1085 attr->is_protected = 1;
1086 return check_conflict (attr, name, where);
1090 gfc_try
1091 gfc_add_result (symbol_attribute *attr, const char *name, locus *where)
1094 if (check_used (attr, name, where))
1095 return FAILURE;
1097 attr->result = 1;
1098 return check_conflict (attr, name, where);
1102 gfc_try
1103 gfc_add_save (symbol_attribute *attr, save_state s, const char *name,
1104 locus *where)
1107 if (check_used (attr, name, where))
1108 return FAILURE;
1110 if (s == SAVE_EXPLICIT && gfc_pure (NULL))
1112 gfc_error
1113 ("SAVE attribute at %L cannot be specified in a PURE procedure",
1114 where);
1115 return FAILURE;
1118 if (s == SAVE_EXPLICIT && gfc_implicit_pure (NULL))
1119 gfc_current_ns->proc_name->attr.implicit_pure = 0;
1121 if (s == SAVE_EXPLICIT && attr->save == SAVE_EXPLICIT)
1123 if (gfc_notify_std (GFC_STD_LEGACY,
1124 "Duplicate SAVE attribute specified at %L",
1125 where)
1126 == FAILURE)
1127 return FAILURE;
1130 attr->save = s;
1131 return check_conflict (attr, name, where);
1135 gfc_try
1136 gfc_add_value (symbol_attribute *attr, const char *name, locus *where)
1139 if (check_used (attr, name, where))
1140 return FAILURE;
1142 if (attr->value)
1144 if (gfc_notify_std (GFC_STD_LEGACY,
1145 "Duplicate VALUE attribute specified at %L",
1146 where)
1147 == FAILURE)
1148 return FAILURE;
1151 attr->value = 1;
1152 return check_conflict (attr, name, where);
1156 gfc_try
1157 gfc_add_volatile (symbol_attribute *attr, const char *name, locus *where)
1159 /* No check_used needed as 11.2.1 of the F2003 standard allows
1160 that the local identifier made accessible by a use statement can be
1161 given a VOLATILE attribute - unless it is a coarray (F2008, C560). */
1163 if (attr->volatile_ && attr->volatile_ns == gfc_current_ns)
1164 if (gfc_notify_std (GFC_STD_LEGACY,
1165 "Duplicate VOLATILE attribute specified at %L", where)
1166 == FAILURE)
1167 return FAILURE;
1169 attr->volatile_ = 1;
1170 attr->volatile_ns = gfc_current_ns;
1171 return check_conflict (attr, name, where);
1175 gfc_try
1176 gfc_add_asynchronous (symbol_attribute *attr, const char *name, locus *where)
1178 /* No check_used needed as 11.2.1 of the F2003 standard allows
1179 that the local identifier made accessible by a use statement can be
1180 given a ASYNCHRONOUS attribute. */
1182 if (attr->asynchronous && attr->asynchronous_ns == gfc_current_ns)
1183 if (gfc_notify_std (GFC_STD_LEGACY,
1184 "Duplicate ASYNCHRONOUS attribute specified at %L",
1185 where) == FAILURE)
1186 return FAILURE;
1188 attr->asynchronous = 1;
1189 attr->asynchronous_ns = gfc_current_ns;
1190 return check_conflict (attr, name, where);
1194 gfc_try
1195 gfc_add_threadprivate (symbol_attribute *attr, const char *name, locus *where)
1198 if (check_used (attr, name, where))
1199 return FAILURE;
1201 if (attr->threadprivate)
1203 duplicate_attr ("THREADPRIVATE", where);
1204 return FAILURE;
1207 attr->threadprivate = 1;
1208 return check_conflict (attr, name, where);
1212 gfc_try
1213 gfc_add_target (symbol_attribute *attr, locus *where)
1216 if (check_used (attr, NULL, where))
1217 return FAILURE;
1219 if (attr->target)
1221 duplicate_attr ("TARGET", where);
1222 return FAILURE;
1225 attr->target = 1;
1226 return check_conflict (attr, NULL, where);
1230 gfc_try
1231 gfc_add_dummy (symbol_attribute *attr, const char *name, locus *where)
1234 if (check_used (attr, name, where))
1235 return FAILURE;
1237 /* Duplicate dummy arguments are allowed due to ENTRY statements. */
1238 attr->dummy = 1;
1239 return check_conflict (attr, name, where);
1243 gfc_try
1244 gfc_add_in_common (symbol_attribute *attr, const char *name, locus *where)
1247 if (check_used (attr, name, where))
1248 return FAILURE;
1250 /* Duplicate attribute already checked for. */
1251 attr->in_common = 1;
1252 return check_conflict (attr, name, where);
1256 gfc_try
1257 gfc_add_in_equivalence (symbol_attribute *attr, const char *name, locus *where)
1260 /* Duplicate attribute already checked for. */
1261 attr->in_equivalence = 1;
1262 if (check_conflict (attr, name, where) == FAILURE)
1263 return FAILURE;
1265 if (attr->flavor == FL_VARIABLE)
1266 return SUCCESS;
1268 return gfc_add_flavor (attr, FL_VARIABLE, name, where);
1272 gfc_try
1273 gfc_add_data (symbol_attribute *attr, const char *name, locus *where)
1276 if (check_used (attr, name, where))
1277 return FAILURE;
1279 attr->data = 1;
1280 return check_conflict (attr, name, where);
1284 gfc_try
1285 gfc_add_in_namelist (symbol_attribute *attr, const char *name, locus *where)
1288 attr->in_namelist = 1;
1289 return check_conflict (attr, name, where);
1293 gfc_try
1294 gfc_add_sequence (symbol_attribute *attr, const char *name, locus *where)
1297 if (check_used (attr, name, where))
1298 return FAILURE;
1300 attr->sequence = 1;
1301 return check_conflict (attr, name, where);
1305 gfc_try
1306 gfc_add_elemental (symbol_attribute *attr, locus *where)
1309 if (check_used (attr, NULL, where))
1310 return FAILURE;
1312 if (attr->elemental)
1314 duplicate_attr ("ELEMENTAL", where);
1315 return FAILURE;
1318 attr->elemental = 1;
1319 return check_conflict (attr, NULL, where);
1323 gfc_try
1324 gfc_add_pure (symbol_attribute *attr, locus *where)
1327 if (check_used (attr, NULL, where))
1328 return FAILURE;
1330 if (attr->pure)
1332 duplicate_attr ("PURE", where);
1333 return FAILURE;
1336 attr->pure = 1;
1337 return check_conflict (attr, NULL, where);
1341 gfc_try
1342 gfc_add_recursive (symbol_attribute *attr, locus *where)
1345 if (check_used (attr, NULL, where))
1346 return FAILURE;
1348 if (attr->recursive)
1350 duplicate_attr ("RECURSIVE", where);
1351 return FAILURE;
1354 attr->recursive = 1;
1355 return check_conflict (attr, NULL, where);
1359 gfc_try
1360 gfc_add_entry (symbol_attribute *attr, const char *name, locus *where)
1363 if (check_used (attr, name, where))
1364 return FAILURE;
1366 if (attr->entry)
1368 duplicate_attr ("ENTRY", where);
1369 return FAILURE;
1372 attr->entry = 1;
1373 return check_conflict (attr, name, where);
1377 gfc_try
1378 gfc_add_function (symbol_attribute *attr, const char *name, locus *where)
1381 if (attr->flavor != FL_PROCEDURE
1382 && gfc_add_flavor (attr, FL_PROCEDURE, name, where) == FAILURE)
1383 return FAILURE;
1385 attr->function = 1;
1386 return check_conflict (attr, name, where);
1390 gfc_try
1391 gfc_add_subroutine (symbol_attribute *attr, const char *name, locus *where)
1394 if (attr->flavor != FL_PROCEDURE
1395 && gfc_add_flavor (attr, FL_PROCEDURE, name, where) == FAILURE)
1396 return FAILURE;
1398 attr->subroutine = 1;
1399 return check_conflict (attr, name, where);
1403 gfc_try
1404 gfc_add_generic (symbol_attribute *attr, const char *name, locus *where)
1407 if (attr->flavor != FL_PROCEDURE
1408 && gfc_add_flavor (attr, FL_PROCEDURE, name, where) == FAILURE)
1409 return FAILURE;
1411 attr->generic = 1;
1412 return check_conflict (attr, name, where);
1416 gfc_try
1417 gfc_add_proc (symbol_attribute *attr, const char *name, locus *where)
1420 if (check_used (attr, NULL, where))
1421 return FAILURE;
1423 if (attr->flavor != FL_PROCEDURE
1424 && gfc_add_flavor (attr, FL_PROCEDURE, name, where) == FAILURE)
1425 return FAILURE;
1427 if (attr->procedure)
1429 duplicate_attr ("PROCEDURE", where);
1430 return FAILURE;
1433 attr->procedure = 1;
1435 return check_conflict (attr, NULL, where);
1439 gfc_try
1440 gfc_add_abstract (symbol_attribute* attr, locus* where)
1442 if (attr->abstract)
1444 duplicate_attr ("ABSTRACT", where);
1445 return FAILURE;
1448 attr->abstract = 1;
1449 return SUCCESS;
1453 /* Flavors are special because some flavors are not what Fortran
1454 considers attributes and can be reaffirmed multiple times. */
1456 gfc_try
1457 gfc_add_flavor (symbol_attribute *attr, sym_flavor f, const char *name,
1458 locus *where)
1461 if ((f == FL_PROGRAM || f == FL_BLOCK_DATA || f == FL_MODULE
1462 || f == FL_PARAMETER || f == FL_LABEL || f == FL_DERIVED
1463 || f == FL_NAMELIST) && check_used (attr, name, where))
1464 return FAILURE;
1466 if (attr->flavor == f && f == FL_VARIABLE)
1467 return SUCCESS;
1469 if (attr->flavor != FL_UNKNOWN)
1471 if (where == NULL)
1472 where = &gfc_current_locus;
1474 if (name)
1475 gfc_error ("%s attribute of '%s' conflicts with %s attribute at %L",
1476 gfc_code2string (flavors, attr->flavor), name,
1477 gfc_code2string (flavors, f), where);
1478 else
1479 gfc_error ("%s attribute conflicts with %s attribute at %L",
1480 gfc_code2string (flavors, attr->flavor),
1481 gfc_code2string (flavors, f), where);
1483 return FAILURE;
1486 attr->flavor = f;
1488 return check_conflict (attr, name, where);
1492 gfc_try
1493 gfc_add_procedure (symbol_attribute *attr, procedure_type t,
1494 const char *name, locus *where)
1497 if (check_used (attr, name, where))
1498 return FAILURE;
1500 if (attr->flavor != FL_PROCEDURE
1501 && gfc_add_flavor (attr, FL_PROCEDURE, name, where) == FAILURE)
1502 return FAILURE;
1504 if (where == NULL)
1505 where = &gfc_current_locus;
1507 if (attr->proc != PROC_UNKNOWN)
1509 gfc_error ("%s procedure at %L is already declared as %s procedure",
1510 gfc_code2string (procedures, t), where,
1511 gfc_code2string (procedures, attr->proc));
1513 return FAILURE;
1516 attr->proc = t;
1518 /* Statement functions are always scalar and functions. */
1519 if (t == PROC_ST_FUNCTION
1520 && ((!attr->function && gfc_add_function (attr, name, where) == FAILURE)
1521 || attr->dimension))
1522 return FAILURE;
1524 return check_conflict (attr, name, where);
1528 gfc_try
1529 gfc_add_intent (symbol_attribute *attr, sym_intent intent, locus *where)
1532 if (check_used (attr, NULL, where))
1533 return FAILURE;
1535 if (attr->intent == INTENT_UNKNOWN)
1537 attr->intent = intent;
1538 return check_conflict (attr, NULL, where);
1541 if (where == NULL)
1542 where = &gfc_current_locus;
1544 gfc_error ("INTENT (%s) conflicts with INTENT(%s) at %L",
1545 gfc_intent_string (attr->intent),
1546 gfc_intent_string (intent), where);
1548 return FAILURE;
1552 /* No checks for use-association in public and private statements. */
1554 gfc_try
1555 gfc_add_access (symbol_attribute *attr, gfc_access access,
1556 const char *name, locus *where)
1559 if (attr->access == ACCESS_UNKNOWN
1560 || (attr->use_assoc && attr->access != ACCESS_PRIVATE))
1562 attr->access = access;
1563 return check_conflict (attr, name, where);
1566 if (where == NULL)
1567 where = &gfc_current_locus;
1568 gfc_error ("ACCESS specification at %L was already specified", where);
1570 return FAILURE;
1574 /* Set the is_bind_c field for the given symbol_attribute. */
1576 gfc_try
1577 gfc_add_is_bind_c (symbol_attribute *attr, const char *name, locus *where,
1578 int is_proc_lang_bind_spec)
1581 if (is_proc_lang_bind_spec == 0 && attr->flavor == FL_PROCEDURE)
1582 gfc_error_now ("BIND(C) attribute at %L can only be used for "
1583 "variables or common blocks", where);
1584 else if (attr->is_bind_c)
1585 gfc_error_now ("Duplicate BIND attribute specified at %L", where);
1586 else
1587 attr->is_bind_c = 1;
1589 if (where == NULL)
1590 where = &gfc_current_locus;
1592 if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: BIND(C) at %L", where)
1593 == FAILURE)
1594 return FAILURE;
1596 return check_conflict (attr, name, where);
1600 /* Set the extension field for the given symbol_attribute. */
1602 gfc_try
1603 gfc_add_extension (symbol_attribute *attr, locus *where)
1605 if (where == NULL)
1606 where = &gfc_current_locus;
1608 if (attr->extension)
1609 gfc_error_now ("Duplicate EXTENDS attribute specified at %L", where);
1610 else
1611 attr->extension = 1;
1613 if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: EXTENDS at %L", where)
1614 == FAILURE)
1615 return FAILURE;
1617 return SUCCESS;
1621 gfc_try
1622 gfc_add_explicit_interface (gfc_symbol *sym, ifsrc source,
1623 gfc_formal_arglist * formal, locus *where)
1626 if (check_used (&sym->attr, sym->name, where))
1627 return FAILURE;
1629 if (where == NULL)
1630 where = &gfc_current_locus;
1632 if (sym->attr.if_source != IFSRC_UNKNOWN
1633 && sym->attr.if_source != IFSRC_DECL)
1635 gfc_error ("Symbol '%s' at %L already has an explicit interface",
1636 sym->name, where);
1637 return FAILURE;
1640 if (source == IFSRC_IFBODY && (sym->attr.dimension || sym->attr.allocatable))
1642 gfc_error ("'%s' at %L has attributes specified outside its INTERFACE "
1643 "body", sym->name, where);
1644 return FAILURE;
1647 sym->formal = formal;
1648 sym->attr.if_source = source;
1650 return SUCCESS;
1654 /* Add a type to a symbol. */
1656 gfc_try
1657 gfc_add_type (gfc_symbol *sym, gfc_typespec *ts, locus *where)
1659 sym_flavor flavor;
1660 bt type;
1662 if (where == NULL)
1663 where = &gfc_current_locus;
1665 if (sym->result)
1666 type = sym->result->ts.type;
1667 else
1668 type = sym->ts.type;
1670 if (sym->attr.result && type == BT_UNKNOWN && sym->ns->proc_name)
1671 type = sym->ns->proc_name->ts.type;
1673 if (type != BT_UNKNOWN && !(sym->attr.function && sym->attr.implicit_type))
1675 gfc_error ("Symbol '%s' at %L already has basic type of %s", sym->name,
1676 where, gfc_basic_typename (type));
1677 return FAILURE;
1680 if (sym->attr.procedure && sym->ts.interface)
1682 gfc_error ("Procedure '%s' at %L may not have basic type of %s",
1683 sym->name, where, gfc_basic_typename (ts->type));
1684 return FAILURE;
1687 flavor = sym->attr.flavor;
1689 if (flavor == FL_PROGRAM || flavor == FL_BLOCK_DATA || flavor == FL_MODULE
1690 || flavor == FL_LABEL
1691 || (flavor == FL_PROCEDURE && sym->attr.subroutine)
1692 || flavor == FL_DERIVED || flavor == FL_NAMELIST)
1694 gfc_error ("Symbol '%s' at %L cannot have a type", sym->name, where);
1695 return FAILURE;
1698 sym->ts = *ts;
1699 return SUCCESS;
1703 /* Clears all attributes. */
1705 void
1706 gfc_clear_attr (symbol_attribute *attr)
1708 memset (attr, 0, sizeof (symbol_attribute));
1712 /* Check for missing attributes in the new symbol. Currently does
1713 nothing, but it's not clear that it is unnecessary yet. */
1715 gfc_try
1716 gfc_missing_attr (symbol_attribute *attr ATTRIBUTE_UNUSED,
1717 locus *where ATTRIBUTE_UNUSED)
1720 return SUCCESS;
1724 /* Copy an attribute to a symbol attribute, bit by bit. Some
1725 attributes have a lot of side-effects but cannot be present given
1726 where we are called from, so we ignore some bits. */
1728 gfc_try
1729 gfc_copy_attr (symbol_attribute *dest, symbol_attribute *src, locus *where)
1731 int is_proc_lang_bind_spec;
1733 /* In line with the other attributes, we only add bits but do not remove
1734 them; cf. also PR 41034. */
1735 dest->ext_attr |= src->ext_attr;
1737 if (src->allocatable && gfc_add_allocatable (dest, where) == FAILURE)
1738 goto fail;
1740 if (src->dimension && gfc_add_dimension (dest, NULL, where) == FAILURE)
1741 goto fail;
1742 if (src->codimension && gfc_add_codimension (dest, NULL, where) == FAILURE)
1743 goto fail;
1744 if (src->contiguous && gfc_add_contiguous (dest, NULL, where) == FAILURE)
1745 goto fail;
1746 if (src->optional && gfc_add_optional (dest, where) == FAILURE)
1747 goto fail;
1748 if (src->pointer && gfc_add_pointer (dest, where) == FAILURE)
1749 goto fail;
1750 if (src->is_protected && gfc_add_protected (dest, NULL, where) == FAILURE)
1751 goto fail;
1752 if (src->save && gfc_add_save (dest, src->save, NULL, where) == FAILURE)
1753 goto fail;
1754 if (src->value && gfc_add_value (dest, NULL, where) == FAILURE)
1755 goto fail;
1756 if (src->volatile_ && gfc_add_volatile (dest, NULL, where) == FAILURE)
1757 goto fail;
1758 if (src->asynchronous && gfc_add_asynchronous (dest, NULL, where) == FAILURE)
1759 goto fail;
1760 if (src->threadprivate
1761 && gfc_add_threadprivate (dest, NULL, where) == FAILURE)
1762 goto fail;
1763 if (src->target && gfc_add_target (dest, where) == FAILURE)
1764 goto fail;
1765 if (src->dummy && gfc_add_dummy (dest, NULL, where) == FAILURE)
1766 goto fail;
1767 if (src->result && gfc_add_result (dest, NULL, where) == FAILURE)
1768 goto fail;
1769 if (src->entry)
1770 dest->entry = 1;
1772 if (src->in_namelist && gfc_add_in_namelist (dest, NULL, where) == FAILURE)
1773 goto fail;
1775 if (src->in_common && gfc_add_in_common (dest, NULL, where) == FAILURE)
1776 goto fail;
1778 if (src->generic && gfc_add_generic (dest, NULL, where) == FAILURE)
1779 goto fail;
1780 if (src->function && gfc_add_function (dest, NULL, where) == FAILURE)
1781 goto fail;
1782 if (src->subroutine && gfc_add_subroutine (dest, NULL, where) == FAILURE)
1783 goto fail;
1785 if (src->sequence && gfc_add_sequence (dest, NULL, where) == FAILURE)
1786 goto fail;
1787 if (src->elemental && gfc_add_elemental (dest, where) == FAILURE)
1788 goto fail;
1789 if (src->pure && gfc_add_pure (dest, where) == FAILURE)
1790 goto fail;
1791 if (src->recursive && gfc_add_recursive (dest, where) == FAILURE)
1792 goto fail;
1794 if (src->flavor != FL_UNKNOWN
1795 && gfc_add_flavor (dest, src->flavor, NULL, where) == FAILURE)
1796 goto fail;
1798 if (src->intent != INTENT_UNKNOWN
1799 && gfc_add_intent (dest, src->intent, where) == FAILURE)
1800 goto fail;
1802 if (src->access != ACCESS_UNKNOWN
1803 && gfc_add_access (dest, src->access, NULL, where) == FAILURE)
1804 goto fail;
1806 if (gfc_missing_attr (dest, where) == FAILURE)
1807 goto fail;
1809 if (src->cray_pointer && gfc_add_cray_pointer (dest, where) == FAILURE)
1810 goto fail;
1811 if (src->cray_pointee && gfc_add_cray_pointee (dest, where) == FAILURE)
1812 goto fail;
1814 is_proc_lang_bind_spec = (src->flavor == FL_PROCEDURE ? 1 : 0);
1815 if (src->is_bind_c
1816 && gfc_add_is_bind_c (dest, NULL, where, is_proc_lang_bind_spec)
1817 != SUCCESS)
1818 return FAILURE;
1820 if (src->is_c_interop)
1821 dest->is_c_interop = 1;
1822 if (src->is_iso_c)
1823 dest->is_iso_c = 1;
1825 if (src->external && gfc_add_external (dest, where) == FAILURE)
1826 goto fail;
1827 if (src->intrinsic && gfc_add_intrinsic (dest, where) == FAILURE)
1828 goto fail;
1829 if (src->proc_pointer)
1830 dest->proc_pointer = 1;
1832 return SUCCESS;
1834 fail:
1835 return FAILURE;
1839 /************** Component name management ************/
1841 /* Component names of a derived type form their own little namespaces
1842 that are separate from all other spaces. The space is composed of
1843 a singly linked list of gfc_component structures whose head is
1844 located in the parent symbol. */
1847 /* Add a component name to a symbol. The call fails if the name is
1848 already present. On success, the component pointer is modified to
1849 point to the additional component structure. */
1851 gfc_try
1852 gfc_add_component (gfc_symbol *sym, const char *name,
1853 gfc_component **component)
1855 gfc_component *p, *tail;
1857 tail = NULL;
1859 for (p = sym->components; p; p = p->next)
1861 if (strcmp (p->name, name) == 0)
1863 gfc_error ("Component '%s' at %C already declared at %L",
1864 name, &p->loc);
1865 return FAILURE;
1868 tail = p;
1871 if (sym->attr.extension
1872 && gfc_find_component (sym->components->ts.u.derived, name, true, true))
1874 gfc_error ("Component '%s' at %C already in the parent type "
1875 "at %L", name, &sym->components->ts.u.derived->declared_at);
1876 return FAILURE;
1879 /* Allocate a new component. */
1880 p = gfc_get_component ();
1882 if (tail == NULL)
1883 sym->components = p;
1884 else
1885 tail->next = p;
1887 p->name = gfc_get_string (name);
1888 p->loc = gfc_current_locus;
1889 p->ts.type = BT_UNKNOWN;
1891 *component = p;
1892 return SUCCESS;
1896 /* Recursive function to switch derived types of all symbol in a
1897 namespace. */
1899 static void
1900 switch_types (gfc_symtree *st, gfc_symbol *from, gfc_symbol *to)
1902 gfc_symbol *sym;
1904 if (st == NULL)
1905 return;
1907 sym = st->n.sym;
1908 if (sym->ts.type == BT_DERIVED && sym->ts.u.derived == from)
1909 sym->ts.u.derived = to;
1911 switch_types (st->left, from, to);
1912 switch_types (st->right, from, to);
1916 /* This subroutine is called when a derived type is used in order to
1917 make the final determination about which version to use. The
1918 standard requires that a type be defined before it is 'used', but
1919 such types can appear in IMPLICIT statements before the actual
1920 definition. 'Using' in this context means declaring a variable to
1921 be that type or using the type constructor.
1923 If a type is used and the components haven't been defined, then we
1924 have to have a derived type in a parent unit. We find the node in
1925 the other namespace and point the symtree node in this namespace to
1926 that node. Further reference to this name point to the correct
1927 node. If we can't find the node in a parent namespace, then we have
1928 an error.
1930 This subroutine takes a pointer to a symbol node and returns a
1931 pointer to the translated node or NULL for an error. Usually there
1932 is no translation and we return the node we were passed. */
1934 gfc_symbol *
1935 gfc_use_derived (gfc_symbol *sym)
1937 gfc_symbol *s;
1938 gfc_typespec *t;
1939 gfc_symtree *st;
1940 int i;
1942 if (sym->components != NULL || sym->attr.zero_comp)
1943 return sym; /* Already defined. */
1945 if (sym->ns->parent == NULL)
1946 goto bad;
1948 if (gfc_find_symbol (sym->name, sym->ns->parent, 1, &s))
1950 gfc_error ("Symbol '%s' at %C is ambiguous", sym->name);
1951 return NULL;
1954 if (s == NULL || s->attr.flavor != FL_DERIVED)
1955 goto bad;
1957 /* Get rid of symbol sym, translating all references to s. */
1958 for (i = 0; i < GFC_LETTERS; i++)
1960 t = &sym->ns->default_type[i];
1961 if (t->u.derived == sym)
1962 t->u.derived = s;
1965 st = gfc_find_symtree (sym->ns->sym_root, sym->name);
1966 st->n.sym = s;
1968 s->refs++;
1970 /* Unlink from list of modified symbols. */
1971 gfc_commit_symbol (sym);
1973 switch_types (sym->ns->sym_root, sym, s);
1975 /* TODO: Also have to replace sym -> s in other lists like
1976 namelists, common lists and interface lists. */
1977 gfc_free_symbol (sym);
1979 return s;
1981 bad:
1982 gfc_error ("Derived type '%s' at %C is being used before it is defined",
1983 sym->name);
1984 return NULL;
1988 /* Given a derived type node and a component name, try to locate the
1989 component structure. Returns the NULL pointer if the component is
1990 not found or the components are private. If noaccess is set, no access
1991 checks are done. */
1993 gfc_component *
1994 gfc_find_component (gfc_symbol *sym, const char *name,
1995 bool noaccess, bool silent)
1997 gfc_component *p;
1999 if (name == NULL)
2000 return NULL;
2002 sym = gfc_use_derived (sym);
2004 if (sym == NULL)
2005 return NULL;
2007 for (p = sym->components; p; p = p->next)
2008 if (strcmp (p->name, name) == 0)
2009 break;
2011 if (p == NULL
2012 && sym->attr.extension
2013 && sym->components->ts.type == BT_DERIVED)
2015 p = gfc_find_component (sym->components->ts.u.derived, name,
2016 noaccess, silent);
2017 /* Do not overwrite the error. */
2018 if (p == NULL)
2019 return p;
2022 if (p == NULL && !silent)
2023 gfc_error ("'%s' at %C is not a member of the '%s' structure",
2024 name, sym->name);
2026 else if (sym->attr.use_assoc && !noaccess)
2028 bool is_parent_comp = sym->attr.extension && (p == sym->components);
2029 if (p->attr.access == ACCESS_PRIVATE ||
2030 (p->attr.access != ACCESS_PUBLIC
2031 && sym->component_access == ACCESS_PRIVATE
2032 && !is_parent_comp))
2034 if (!silent)
2035 gfc_error ("Component '%s' at %C is a PRIVATE component of '%s'",
2036 name, sym->name);
2037 return NULL;
2041 return p;
2045 /* Given a symbol, free all of the component structures and everything
2046 they point to. */
2048 static void
2049 free_components (gfc_component *p)
2051 gfc_component *q;
2053 for (; p; p = q)
2055 q = p->next;
2057 gfc_free_array_spec (p->as);
2058 gfc_free_expr (p->initializer);
2060 gfc_free_formal_arglist (p->formal);
2061 gfc_free_namespace (p->formal_ns);
2063 gfc_free (p);
2068 /******************** Statement label management ********************/
2070 /* Comparison function for statement labels, used for managing the
2071 binary tree. */
2073 static int
2074 compare_st_labels (void *a1, void *b1)
2076 int a = ((gfc_st_label *) a1)->value;
2077 int b = ((gfc_st_label *) b1)->value;
2079 return (b - a);
2083 /* Free a single gfc_st_label structure, making sure the tree is not
2084 messed up. This function is called only when some parse error
2085 occurs. */
2087 void
2088 gfc_free_st_label (gfc_st_label *label)
2091 if (label == NULL)
2092 return;
2094 gfc_delete_bbt (&gfc_current_ns->st_labels, label, compare_st_labels);
2096 if (label->format != NULL)
2097 gfc_free_expr (label->format);
2099 gfc_free (label);
2103 /* Free a whole tree of gfc_st_label structures. */
2105 static void
2106 free_st_labels (gfc_st_label *label)
2109 if (label == NULL)
2110 return;
2112 free_st_labels (label->left);
2113 free_st_labels (label->right);
2115 if (label->format != NULL)
2116 gfc_free_expr (label->format);
2117 gfc_free (label);
2121 /* Given a label number, search for and return a pointer to the label
2122 structure, creating it if it does not exist. */
2124 gfc_st_label *
2125 gfc_get_st_label (int labelno)
2127 gfc_st_label *lp;
2128 gfc_namespace *ns;
2130 /* Find the namespace of the scoping unit:
2131 If we're in a BLOCK construct, jump to the parent namespace. */
2132 ns = gfc_current_ns;
2133 while (ns->proc_name && ns->proc_name->attr.flavor == FL_LABEL)
2134 ns = ns->parent;
2136 /* First see if the label is already in this namespace. */
2137 lp = ns->st_labels;
2138 while (lp)
2140 if (lp->value == labelno)
2141 return lp;
2143 if (lp->value < labelno)
2144 lp = lp->left;
2145 else
2146 lp = lp->right;
2149 lp = XCNEW (gfc_st_label);
2151 lp->value = labelno;
2152 lp->defined = ST_LABEL_UNKNOWN;
2153 lp->referenced = ST_LABEL_UNKNOWN;
2155 gfc_insert_bbt (&ns->st_labels, lp, compare_st_labels);
2157 return lp;
2161 /* Called when a statement with a statement label is about to be
2162 accepted. We add the label to the list of the current namespace,
2163 making sure it hasn't been defined previously and referenced
2164 correctly. */
2166 void
2167 gfc_define_st_label (gfc_st_label *lp, gfc_sl_type type, locus *label_locus)
2169 int labelno;
2171 labelno = lp->value;
2173 if (lp->defined != ST_LABEL_UNKNOWN)
2174 gfc_error ("Duplicate statement label %d at %L and %L", labelno,
2175 &lp->where, label_locus);
2176 else
2178 lp->where = *label_locus;
2180 switch (type)
2182 case ST_LABEL_FORMAT:
2183 if (lp->referenced == ST_LABEL_TARGET)
2184 gfc_error ("Label %d at %C already referenced as branch target",
2185 labelno);
2186 else
2187 lp->defined = ST_LABEL_FORMAT;
2189 break;
2191 case ST_LABEL_TARGET:
2192 if (lp->referenced == ST_LABEL_FORMAT)
2193 gfc_error ("Label %d at %C already referenced as a format label",
2194 labelno);
2195 else
2196 lp->defined = ST_LABEL_TARGET;
2198 break;
2200 default:
2201 lp->defined = ST_LABEL_BAD_TARGET;
2202 lp->referenced = ST_LABEL_BAD_TARGET;
2208 /* Reference a label. Given a label and its type, see if that
2209 reference is consistent with what is known about that label,
2210 updating the unknown state. Returns FAILURE if something goes
2211 wrong. */
2213 gfc_try
2214 gfc_reference_st_label (gfc_st_label *lp, gfc_sl_type type)
2216 gfc_sl_type label_type;
2217 int labelno;
2218 gfc_try rc;
2220 if (lp == NULL)
2221 return SUCCESS;
2223 labelno = lp->value;
2225 if (lp->defined != ST_LABEL_UNKNOWN)
2226 label_type = lp->defined;
2227 else
2229 label_type = lp->referenced;
2230 lp->where = gfc_current_locus;
2233 if (label_type == ST_LABEL_FORMAT && type == ST_LABEL_TARGET)
2235 gfc_error ("Label %d at %C previously used as a FORMAT label", labelno);
2236 rc = FAILURE;
2237 goto done;
2240 if ((label_type == ST_LABEL_TARGET || label_type == ST_LABEL_BAD_TARGET)
2241 && type == ST_LABEL_FORMAT)
2243 gfc_error ("Label %d at %C previously used as branch target", labelno);
2244 rc = FAILURE;
2245 goto done;
2248 lp->referenced = type;
2249 rc = SUCCESS;
2251 done:
2252 return rc;
2256 /************** Symbol table management subroutines ****************/
2258 /* Basic details: Fortran 95 requires a potentially unlimited number
2259 of distinct namespaces when compiling a program unit. This case
2260 occurs during a compilation of internal subprograms because all of
2261 the internal subprograms must be read before we can start
2262 generating code for the host.
2264 Given the tricky nature of the Fortran grammar, we must be able to
2265 undo changes made to a symbol table if the current interpretation
2266 of a statement is found to be incorrect. Whenever a symbol is
2267 looked up, we make a copy of it and link to it. All of these
2268 symbols are kept in a singly linked list so that we can commit or
2269 undo the changes at a later time.
2271 A symtree may point to a symbol node outside of its namespace. In
2272 this case, that symbol has been used as a host associated variable
2273 at some previous time. */
2275 /* Allocate a new namespace structure. Copies the implicit types from
2276 PARENT if PARENT_TYPES is set. */
2278 gfc_namespace *
2279 gfc_get_namespace (gfc_namespace *parent, int parent_types)
2281 gfc_namespace *ns;
2282 gfc_typespec *ts;
2283 int in;
2284 int i;
2286 ns = XCNEW (gfc_namespace);
2287 ns->sym_root = NULL;
2288 ns->uop_root = NULL;
2289 ns->tb_sym_root = NULL;
2290 ns->finalizers = NULL;
2291 ns->default_access = ACCESS_UNKNOWN;
2292 ns->parent = parent;
2294 for (in = GFC_INTRINSIC_BEGIN; in != GFC_INTRINSIC_END; in++)
2296 ns->operator_access[in] = ACCESS_UNKNOWN;
2297 ns->tb_op[in] = NULL;
2300 /* Initialize default implicit types. */
2301 for (i = 'a'; i <= 'z'; i++)
2303 ns->set_flag[i - 'a'] = 0;
2304 ts = &ns->default_type[i - 'a'];
2306 if (parent_types && ns->parent != NULL)
2308 /* Copy parent settings. */
2309 *ts = ns->parent->default_type[i - 'a'];
2310 continue;
2313 if (gfc_option.flag_implicit_none != 0)
2315 gfc_clear_ts (ts);
2316 continue;
2319 if ('i' <= i && i <= 'n')
2321 ts->type = BT_INTEGER;
2322 ts->kind = gfc_default_integer_kind;
2324 else
2326 ts->type = BT_REAL;
2327 ts->kind = gfc_default_real_kind;
2331 ns->refs = 1;
2333 return ns;
2337 /* Comparison function for symtree nodes. */
2339 static int
2340 compare_symtree (void *_st1, void *_st2)
2342 gfc_symtree *st1, *st2;
2344 st1 = (gfc_symtree *) _st1;
2345 st2 = (gfc_symtree *) _st2;
2347 return strcmp (st1->name, st2->name);
2351 /* Allocate a new symtree node and associate it with the new symbol. */
2353 gfc_symtree *
2354 gfc_new_symtree (gfc_symtree **root, const char *name)
2356 gfc_symtree *st;
2358 st = XCNEW (gfc_symtree);
2359 st->name = gfc_get_string (name);
2361 gfc_insert_bbt (root, st, compare_symtree);
2362 return st;
2366 /* Delete a symbol from the tree. Does not free the symbol itself! */
2368 void
2369 gfc_delete_symtree (gfc_symtree **root, const char *name)
2371 gfc_symtree st, *st0;
2373 st0 = gfc_find_symtree (*root, name);
2375 st.name = gfc_get_string (name);
2376 gfc_delete_bbt (root, &st, compare_symtree);
2378 gfc_free (st0);
2382 /* Given a root symtree node and a name, try to find the symbol within
2383 the namespace. Returns NULL if the symbol is not found. */
2385 gfc_symtree *
2386 gfc_find_symtree (gfc_symtree *st, const char *name)
2388 int c;
2390 while (st != NULL)
2392 c = strcmp (name, st->name);
2393 if (c == 0)
2394 return st;
2396 st = (c < 0) ? st->left : st->right;
2399 return NULL;
2403 /* Return a symtree node with a name that is guaranteed to be unique
2404 within the namespace and corresponds to an illegal fortran name. */
2406 gfc_symtree *
2407 gfc_get_unique_symtree (gfc_namespace *ns)
2409 char name[GFC_MAX_SYMBOL_LEN + 1];
2410 static int serial = 0;
2412 sprintf (name, "@%d", serial++);
2413 return gfc_new_symtree (&ns->sym_root, name);
2417 /* Given a name find a user operator node, creating it if it doesn't
2418 exist. These are much simpler than symbols because they can't be
2419 ambiguous with one another. */
2421 gfc_user_op *
2422 gfc_get_uop (const char *name)
2424 gfc_user_op *uop;
2425 gfc_symtree *st;
2427 st = gfc_find_symtree (gfc_current_ns->uop_root, name);
2428 if (st != NULL)
2429 return st->n.uop;
2431 st = gfc_new_symtree (&gfc_current_ns->uop_root, name);
2433 uop = st->n.uop = XCNEW (gfc_user_op);
2434 uop->name = gfc_get_string (name);
2435 uop->access = ACCESS_UNKNOWN;
2436 uop->ns = gfc_current_ns;
2438 return uop;
2442 /* Given a name find the user operator node. Returns NULL if it does
2443 not exist. */
2445 gfc_user_op *
2446 gfc_find_uop (const char *name, gfc_namespace *ns)
2448 gfc_symtree *st;
2450 if (ns == NULL)
2451 ns = gfc_current_ns;
2453 st = gfc_find_symtree (ns->uop_root, name);
2454 return (st == NULL) ? NULL : st->n.uop;
2458 /* Remove a gfc_symbol structure and everything it points to. */
2460 void
2461 gfc_free_symbol (gfc_symbol *sym)
2464 if (sym == NULL)
2465 return;
2467 gfc_free_array_spec (sym->as);
2469 free_components (sym->components);
2471 gfc_free_expr (sym->value);
2473 gfc_free_namelist (sym->namelist);
2475 gfc_free_namespace (sym->formal_ns);
2477 if (!sym->attr.generic_copy)
2478 gfc_free_interface (sym->generic);
2480 gfc_free_formal_arglist (sym->formal);
2482 gfc_free_namespace (sym->f2k_derived);
2484 gfc_free (sym);
2488 /* Decrease the reference counter and free memory when we reach zero. */
2490 void
2491 gfc_release_symbol (gfc_symbol *sym)
2493 if (sym == NULL)
2494 return;
2496 if (sym->formal_ns != NULL && sym->refs == 2)
2498 /* As formal_ns contains a reference to sym, delete formal_ns just
2499 before the deletion of sym. */
2500 gfc_namespace *ns = sym->formal_ns;
2501 sym->formal_ns = NULL;
2502 gfc_free_namespace (ns);
2505 sym->refs--;
2506 if (sym->refs > 0)
2507 return;
2509 gcc_assert (sym->refs == 0);
2510 gfc_free_symbol (sym);
2514 /* Allocate and initialize a new symbol node. */
2516 gfc_symbol *
2517 gfc_new_symbol (const char *name, gfc_namespace *ns)
2519 gfc_symbol *p;
2521 p = XCNEW (gfc_symbol);
2523 gfc_clear_ts (&p->ts);
2524 gfc_clear_attr (&p->attr);
2525 p->ns = ns;
2527 p->declared_at = gfc_current_locus;
2529 if (strlen (name) > GFC_MAX_SYMBOL_LEN)
2530 gfc_internal_error ("new_symbol(): Symbol name too long");
2532 p->name = gfc_get_string (name);
2534 /* Make sure flags for symbol being C bound are clear initially. */
2535 p->attr.is_bind_c = 0;
2536 p->attr.is_iso_c = 0;
2537 /* Make sure the binding label field has a Nul char to start. */
2538 p->binding_label[0] = '\0';
2540 /* Clear the ptrs we may need. */
2541 p->common_block = NULL;
2542 p->f2k_derived = NULL;
2543 p->assoc = NULL;
2545 return p;
2549 /* Generate an error if a symbol is ambiguous. */
2551 static void
2552 ambiguous_symbol (const char *name, gfc_symtree *st)
2555 if (st->n.sym->module)
2556 gfc_error ("Name '%s' at %C is an ambiguous reference to '%s' "
2557 "from module '%s'", name, st->n.sym->name, st->n.sym->module);
2558 else
2559 gfc_error ("Name '%s' at %C is an ambiguous reference to '%s' "
2560 "from current program unit", name, st->n.sym->name);
2564 /* If we're in a SELECT TYPE block, check if the variable 'st' matches any
2565 selector on the stack. If yes, replace it by the corresponding temporary. */
2567 static void
2568 select_type_insert_tmp (gfc_symtree **st)
2570 gfc_select_type_stack *stack = select_type_stack;
2571 for (; stack; stack = stack->prev)
2572 if ((*st)->n.sym == stack->selector && stack->tmp)
2573 *st = stack->tmp;
2577 /* Look for a symtree in the current procedure -- that is, go up to
2578 parent namespaces but only if inside a BLOCK. Returns NULL if not found. */
2580 gfc_symtree*
2581 gfc_find_symtree_in_proc (const char* name, gfc_namespace* ns)
2583 while (ns)
2585 gfc_symtree* st = gfc_find_symtree (ns->sym_root, name);
2586 if (st)
2587 return st;
2589 if (!ns->construct_entities)
2590 break;
2591 ns = ns->parent;
2594 return NULL;
2598 /* Search for a symtree starting in the current namespace, resorting to
2599 any parent namespaces if requested by a nonzero parent_flag.
2600 Returns nonzero if the name is ambiguous. */
2603 gfc_find_sym_tree (const char *name, gfc_namespace *ns, int parent_flag,
2604 gfc_symtree **result)
2606 gfc_symtree *st;
2608 if (ns == NULL)
2609 ns = gfc_current_ns;
2613 st = gfc_find_symtree (ns->sym_root, name);
2614 if (st != NULL)
2616 select_type_insert_tmp (&st);
2618 *result = st;
2619 /* Ambiguous generic interfaces are permitted, as long
2620 as the specific interfaces are different. */
2621 if (st->ambiguous && !st->n.sym->attr.generic)
2623 ambiguous_symbol (name, st);
2624 return 1;
2627 return 0;
2630 if (!parent_flag)
2631 break;
2633 ns = ns->parent;
2635 while (ns != NULL);
2637 *result = NULL;
2638 return 0;
2642 /* Same, but returns the symbol instead. */
2645 gfc_find_symbol (const char *name, gfc_namespace *ns, int parent_flag,
2646 gfc_symbol **result)
2648 gfc_symtree *st;
2649 int i;
2651 i = gfc_find_sym_tree (name, ns, parent_flag, &st);
2653 if (st == NULL)
2654 *result = NULL;
2655 else
2656 *result = st->n.sym;
2658 return i;
2662 /* Save symbol with the information necessary to back it out. */
2664 static void
2665 save_symbol_data (gfc_symbol *sym)
2668 if (sym->gfc_new || sym->old_symbol != NULL)
2669 return;
2671 sym->old_symbol = XCNEW (gfc_symbol);
2672 *(sym->old_symbol) = *sym;
2674 sym->tlink = changed_syms;
2675 changed_syms = sym;
2679 /* Given a name, find a symbol, or create it if it does not exist yet
2680 in the current namespace. If the symbol is found we make sure that
2681 it's OK.
2683 The integer return code indicates
2684 0 All OK
2685 1 The symbol name was ambiguous
2686 2 The name meant to be established was already host associated.
2688 So if the return value is nonzero, then an error was issued. */
2691 gfc_get_sym_tree (const char *name, gfc_namespace *ns, gfc_symtree **result,
2692 bool allow_subroutine)
2694 gfc_symtree *st;
2695 gfc_symbol *p;
2697 /* This doesn't usually happen during resolution. */
2698 if (ns == NULL)
2699 ns = gfc_current_ns;
2701 /* Try to find the symbol in ns. */
2702 st = gfc_find_symtree (ns->sym_root, name);
2704 if (st == NULL)
2706 /* If not there, create a new symbol. */
2707 p = gfc_new_symbol (name, ns);
2709 /* Add to the list of tentative symbols. */
2710 p->old_symbol = NULL;
2711 p->tlink = changed_syms;
2712 p->mark = 1;
2713 p->gfc_new = 1;
2714 changed_syms = p;
2716 st = gfc_new_symtree (&ns->sym_root, name);
2717 st->n.sym = p;
2718 p->refs++;
2721 else
2723 /* Make sure the existing symbol is OK. Ambiguous
2724 generic interfaces are permitted, as long as the
2725 specific interfaces are different. */
2726 if (st->ambiguous && !st->n.sym->attr.generic)
2728 ambiguous_symbol (name, st);
2729 return 1;
2732 p = st->n.sym;
2733 if (p->ns != ns && (!p->attr.function || ns->proc_name != p)
2734 && !(allow_subroutine && p->attr.subroutine)
2735 && !(ns->proc_name && ns->proc_name->attr.if_source == IFSRC_IFBODY
2736 && (ns->has_import_set || p->attr.imported)))
2738 /* Symbol is from another namespace. */
2739 gfc_error ("Symbol '%s' at %C has already been host associated",
2740 name);
2741 return 2;
2744 p->mark = 1;
2746 /* Copy in case this symbol is changed. */
2747 save_symbol_data (p);
2750 *result = st;
2751 return 0;
2756 gfc_get_symbol (const char *name, gfc_namespace *ns, gfc_symbol **result)
2758 gfc_symtree *st;
2759 int i;
2761 i = gfc_get_sym_tree (name, ns, &st, false);
2762 if (i != 0)
2763 return i;
2765 if (st)
2766 *result = st->n.sym;
2767 else
2768 *result = NULL;
2769 return i;
2773 /* Subroutine that searches for a symbol, creating it if it doesn't
2774 exist, but tries to host-associate the symbol if possible. */
2777 gfc_get_ha_sym_tree (const char *name, gfc_symtree **result)
2779 gfc_symtree *st;
2780 int i;
2782 i = gfc_find_sym_tree (name, gfc_current_ns, 0, &st);
2784 if (st != NULL)
2786 save_symbol_data (st->n.sym);
2787 *result = st;
2788 return i;
2791 if (gfc_current_ns->parent != NULL)
2793 i = gfc_find_sym_tree (name, gfc_current_ns->parent, 1, &st);
2794 if (i)
2795 return i;
2797 if (st != NULL)
2799 *result = st;
2800 return 0;
2804 return gfc_get_sym_tree (name, gfc_current_ns, result, false);
2809 gfc_get_ha_symbol (const char *name, gfc_symbol **result)
2811 int i;
2812 gfc_symtree *st;
2814 i = gfc_get_ha_sym_tree (name, &st);
2816 if (st)
2817 *result = st->n.sym;
2818 else
2819 *result = NULL;
2821 return i;
2824 /* Undoes all the changes made to symbols in the current statement.
2825 This subroutine is made simpler due to the fact that attributes are
2826 never removed once added. */
2828 void
2829 gfc_undo_symbols (void)
2831 gfc_symbol *p, *q, *old;
2832 tentative_tbp *tbp, *tbq;
2834 for (p = changed_syms; p; p = q)
2836 q = p->tlink;
2838 if (p->gfc_new)
2840 /* Symbol was new. */
2841 if (p->attr.in_common && p->common_block && p->common_block->head)
2843 /* If the symbol was added to any common block, it
2844 needs to be removed to stop the resolver looking
2845 for a (possibly) dead symbol. */
2847 if (p->common_block->head == p)
2848 p->common_block->head = p->common_next;
2849 else
2851 gfc_symbol *cparent, *csym;
2853 cparent = p->common_block->head;
2854 csym = cparent->common_next;
2856 while (csym != p)
2858 cparent = csym;
2859 csym = csym->common_next;
2862 gcc_assert(cparent->common_next == p);
2864 cparent->common_next = csym->common_next;
2868 gfc_delete_symtree (&p->ns->sym_root, p->name);
2870 gfc_release_symbol (p);
2871 continue;
2874 /* Restore previous state of symbol. Just copy simple stuff. */
2875 p->mark = 0;
2876 old = p->old_symbol;
2878 p->ts.type = old->ts.type;
2879 p->ts.kind = old->ts.kind;
2881 p->attr = old->attr;
2883 if (p->value != old->value)
2885 gfc_free_expr (old->value);
2886 p->value = NULL;
2889 if (p->as != old->as)
2891 if (p->as)
2892 gfc_free_array_spec (p->as);
2893 p->as = old->as;
2896 p->generic = old->generic;
2897 p->component_access = old->component_access;
2899 if (p->namelist != NULL && old->namelist == NULL)
2901 gfc_free_namelist (p->namelist);
2902 p->namelist = NULL;
2904 else
2906 if (p->namelist_tail != old->namelist_tail)
2908 gfc_free_namelist (old->namelist_tail);
2909 old->namelist_tail->next = NULL;
2913 p->namelist_tail = old->namelist_tail;
2915 if (p->formal != old->formal)
2917 gfc_free_formal_arglist (p->formal);
2918 p->formal = old->formal;
2921 gfc_free (p->old_symbol);
2922 p->old_symbol = NULL;
2923 p->tlink = NULL;
2926 changed_syms = NULL;
2928 for (tbp = tentative_tbp_list; tbp; tbp = tbq)
2930 tbq = tbp->next;
2931 /* Procedure is already marked `error' by default. */
2932 gfc_free (tbp);
2934 tentative_tbp_list = NULL;
2938 /* Free sym->old_symbol. sym->old_symbol is mostly a shallow copy of sym; the
2939 components of old_symbol that might need deallocation are the "allocatables"
2940 that are restored in gfc_undo_symbols(), with two exceptions: namelist and
2941 namelist_tail. In case these differ between old_symbol and sym, it's just
2942 because sym->namelist has gotten a few more items. */
2944 static void
2945 free_old_symbol (gfc_symbol *sym)
2948 if (sym->old_symbol == NULL)
2949 return;
2951 if (sym->old_symbol->as != sym->as)
2952 gfc_free_array_spec (sym->old_symbol->as);
2954 if (sym->old_symbol->value != sym->value)
2955 gfc_free_expr (sym->old_symbol->value);
2957 if (sym->old_symbol->formal != sym->formal)
2958 gfc_free_formal_arglist (sym->old_symbol->formal);
2960 gfc_free (sym->old_symbol);
2961 sym->old_symbol = NULL;
2965 /* Makes the changes made in the current statement permanent-- gets
2966 rid of undo information. */
2968 void
2969 gfc_commit_symbols (void)
2971 gfc_symbol *p, *q;
2972 tentative_tbp *tbp, *tbq;
2974 for (p = changed_syms; p; p = q)
2976 q = p->tlink;
2977 p->tlink = NULL;
2978 p->mark = 0;
2979 p->gfc_new = 0;
2980 free_old_symbol (p);
2982 changed_syms = NULL;
2984 for (tbp = tentative_tbp_list; tbp; tbp = tbq)
2986 tbq = tbp->next;
2987 tbp->proc->error = 0;
2988 gfc_free (tbp);
2990 tentative_tbp_list = NULL;
2994 /* Makes the changes made in one symbol permanent -- gets rid of undo
2995 information. */
2997 void
2998 gfc_commit_symbol (gfc_symbol *sym)
3000 gfc_symbol *p;
3002 if (changed_syms == sym)
3003 changed_syms = sym->tlink;
3004 else
3006 for (p = changed_syms; p; p = p->tlink)
3007 if (p->tlink == sym)
3009 p->tlink = sym->tlink;
3010 break;
3014 sym->tlink = NULL;
3015 sym->mark = 0;
3016 sym->gfc_new = 0;
3018 free_old_symbol (sym);
3022 /* Recursively free trees containing type-bound procedures. */
3024 static void
3025 free_tb_tree (gfc_symtree *t)
3027 if (t == NULL)
3028 return;
3030 free_tb_tree (t->left);
3031 free_tb_tree (t->right);
3033 /* TODO: Free type-bound procedure structs themselves; probably needs some
3034 sort of ref-counting mechanism. */
3036 gfc_free (t);
3040 /* Recursive function that deletes an entire tree and all the common
3041 head structures it points to. */
3043 static void
3044 free_common_tree (gfc_symtree * common_tree)
3046 if (common_tree == NULL)
3047 return;
3049 free_common_tree (common_tree->left);
3050 free_common_tree (common_tree->right);
3052 gfc_free (common_tree);
3056 /* Recursive function that deletes an entire tree and all the user
3057 operator nodes that it contains. */
3059 static void
3060 free_uop_tree (gfc_symtree *uop_tree)
3062 if (uop_tree == NULL)
3063 return;
3065 free_uop_tree (uop_tree->left);
3066 free_uop_tree (uop_tree->right);
3068 gfc_free_interface (uop_tree->n.uop->op);
3069 gfc_free (uop_tree->n.uop);
3070 gfc_free (uop_tree);
3074 /* Recursive function that deletes an entire tree and all the symbols
3075 that it contains. */
3077 static void
3078 free_sym_tree (gfc_symtree *sym_tree)
3080 if (sym_tree == NULL)
3081 return;
3083 free_sym_tree (sym_tree->left);
3084 free_sym_tree (sym_tree->right);
3086 gfc_release_symbol (sym_tree->n.sym);
3087 gfc_free (sym_tree);
3091 /* Free the derived type list. */
3093 void
3094 gfc_free_dt_list (void)
3096 gfc_dt_list *dt, *n;
3098 for (dt = gfc_derived_types; dt; dt = n)
3100 n = dt->next;
3101 gfc_free (dt);
3104 gfc_derived_types = NULL;
3108 /* Free the gfc_equiv_info's. */
3110 static void
3111 gfc_free_equiv_infos (gfc_equiv_info *s)
3113 if (s == NULL)
3114 return;
3115 gfc_free_equiv_infos (s->next);
3116 gfc_free (s);
3120 /* Free the gfc_equiv_lists. */
3122 static void
3123 gfc_free_equiv_lists (gfc_equiv_list *l)
3125 if (l == NULL)
3126 return;
3127 gfc_free_equiv_lists (l->next);
3128 gfc_free_equiv_infos (l->equiv);
3129 gfc_free (l);
3133 /* Free a finalizer procedure list. */
3135 void
3136 gfc_free_finalizer (gfc_finalizer* el)
3138 if (el)
3140 gfc_release_symbol (el->proc_sym);
3141 gfc_free (el);
3145 static void
3146 gfc_free_finalizer_list (gfc_finalizer* list)
3148 while (list)
3150 gfc_finalizer* current = list;
3151 list = list->next;
3152 gfc_free_finalizer (current);
3157 /* Create a new gfc_charlen structure and add it to a namespace.
3158 If 'old_cl' is given, the newly created charlen will be a copy of it. */
3160 gfc_charlen*
3161 gfc_new_charlen (gfc_namespace *ns, gfc_charlen *old_cl)
3163 gfc_charlen *cl;
3164 cl = gfc_get_charlen ();
3166 /* Copy old_cl. */
3167 if (old_cl)
3169 /* Put into namespace, but don't allow reject_statement
3170 to free it if old_cl is given. */
3171 gfc_charlen **prev = &ns->cl_list;
3172 cl->next = ns->old_cl_list;
3173 while (*prev != ns->old_cl_list)
3174 prev = &(*prev)->next;
3175 *prev = cl;
3176 ns->old_cl_list = cl;
3177 cl->length = gfc_copy_expr (old_cl->length);
3178 cl->length_from_typespec = old_cl->length_from_typespec;
3179 cl->backend_decl = old_cl->backend_decl;
3180 cl->passed_length = old_cl->passed_length;
3181 cl->resolved = old_cl->resolved;
3183 else
3185 /* Put into namespace. */
3186 cl->next = ns->cl_list;
3187 ns->cl_list = cl;
3190 return cl;
3194 /* Free the charlen list from cl to end (end is not freed).
3195 Free the whole list if end is NULL. */
3197 void gfc_free_charlen (gfc_charlen *cl, gfc_charlen *end)
3199 gfc_charlen *cl2;
3201 for (; cl != end; cl = cl2)
3203 gcc_assert (cl);
3205 cl2 = cl->next;
3206 gfc_free_expr (cl->length);
3207 gfc_free (cl);
3212 /* Free entry list structs. */
3214 static void
3215 free_entry_list (gfc_entry_list *el)
3217 gfc_entry_list *next;
3219 if (el == NULL)
3220 return;
3222 next = el->next;
3223 gfc_free (el);
3224 free_entry_list (next);
3228 /* Free a namespace structure and everything below it. Interface
3229 lists associated with intrinsic operators are not freed. These are
3230 taken care of when a specific name is freed. */
3232 void
3233 gfc_free_namespace (gfc_namespace *ns)
3235 gfc_namespace *p, *q;
3236 int i;
3238 if (ns == NULL)
3239 return;
3241 ns->refs--;
3242 if (ns->refs > 0)
3243 return;
3244 gcc_assert (ns->refs == 0);
3246 gfc_free_statements (ns->code);
3248 free_sym_tree (ns->sym_root);
3249 free_uop_tree (ns->uop_root);
3250 free_common_tree (ns->common_root);
3251 free_tb_tree (ns->tb_sym_root);
3252 free_tb_tree (ns->tb_uop_root);
3253 gfc_free_finalizer_list (ns->finalizers);
3254 gfc_free_charlen (ns->cl_list, NULL);
3255 free_st_labels (ns->st_labels);
3257 free_entry_list (ns->entries);
3258 gfc_free_equiv (ns->equiv);
3259 gfc_free_equiv_lists (ns->equiv_lists);
3260 gfc_free_use_stmts (ns->use_stmts);
3262 for (i = GFC_INTRINSIC_BEGIN; i != GFC_INTRINSIC_END; i++)
3263 gfc_free_interface (ns->op[i]);
3265 gfc_free_data (ns->data);
3266 p = ns->contained;
3267 gfc_free (ns);
3269 /* Recursively free any contained namespaces. */
3270 while (p != NULL)
3272 q = p;
3273 p = p->sibling;
3274 gfc_free_namespace (q);
3279 void
3280 gfc_symbol_init_2 (void)
3283 gfc_current_ns = gfc_get_namespace (NULL, 0);
3287 void
3288 gfc_symbol_done_2 (void)
3291 gfc_free_namespace (gfc_current_ns);
3292 gfc_current_ns = NULL;
3293 gfc_free_dt_list ();
3297 /* Clear mark bits from symbol nodes associated with a symtree node. */
3299 static void
3300 clear_sym_mark (gfc_symtree *st)
3303 st->n.sym->mark = 0;
3307 /* Recursively traverse the symtree nodes. */
3309 void
3310 gfc_traverse_symtree (gfc_symtree *st, void (*func) (gfc_symtree *))
3312 if (!st)
3313 return;
3315 gfc_traverse_symtree (st->left, func);
3316 (*func) (st);
3317 gfc_traverse_symtree (st->right, func);
3321 /* Recursive namespace traversal function. */
3323 static void
3324 traverse_ns (gfc_symtree *st, void (*func) (gfc_symbol *))
3327 if (st == NULL)
3328 return;
3330 traverse_ns (st->left, func);
3332 if (st->n.sym->mark == 0)
3333 (*func) (st->n.sym);
3334 st->n.sym->mark = 1;
3336 traverse_ns (st->right, func);
3340 /* Call a given function for all symbols in the namespace. We take
3341 care that each gfc_symbol node is called exactly once. */
3343 void
3344 gfc_traverse_ns (gfc_namespace *ns, void (*func) (gfc_symbol *))
3347 gfc_traverse_symtree (ns->sym_root, clear_sym_mark);
3349 traverse_ns (ns->sym_root, func);
3353 /* Return TRUE when name is the name of an intrinsic type. */
3355 bool
3356 gfc_is_intrinsic_typename (const char *name)
3358 if (strcmp (name, "integer") == 0
3359 || strcmp (name, "real") == 0
3360 || strcmp (name, "character") == 0
3361 || strcmp (name, "logical") == 0
3362 || strcmp (name, "complex") == 0
3363 || strcmp (name, "doubleprecision") == 0
3364 || strcmp (name, "doublecomplex") == 0)
3365 return true;
3366 else
3367 return false;
3371 /* Return TRUE if the symbol is an automatic variable. */
3373 static bool
3374 gfc_is_var_automatic (gfc_symbol *sym)
3376 /* Pointer and allocatable variables are never automatic. */
3377 if (sym->attr.pointer || sym->attr.allocatable)
3378 return false;
3379 /* Check for arrays with non-constant size. */
3380 if (sym->attr.dimension && sym->as
3381 && !gfc_is_compile_time_shape (sym->as))
3382 return true;
3383 /* Check for non-constant length character variables. */
3384 if (sym->ts.type == BT_CHARACTER
3385 && sym->ts.u.cl
3386 && !gfc_is_constant_expr (sym->ts.u.cl->length))
3387 return true;
3388 return false;
3391 /* Given a symbol, mark it as SAVEd if it is allowed. */
3393 static void
3394 save_symbol (gfc_symbol *sym)
3397 if (sym->attr.use_assoc)
3398 return;
3400 if (sym->attr.in_common
3401 || sym->attr.dummy
3402 || sym->attr.result
3403 || sym->attr.flavor != FL_VARIABLE)
3404 return;
3405 /* Automatic objects are not saved. */
3406 if (gfc_is_var_automatic (sym))
3407 return;
3408 gfc_add_save (&sym->attr, SAVE_EXPLICIT, sym->name, &sym->declared_at);
3412 /* Mark those symbols which can be SAVEd as such. */
3414 void
3415 gfc_save_all (gfc_namespace *ns)
3417 gfc_traverse_ns (ns, save_symbol);
3421 /* Make sure that no changes to symbols are pending. */
3423 void
3424 gfc_enforce_clean_symbol_state(void)
3426 gcc_assert (changed_syms == NULL);
3430 /************** Global symbol handling ************/
3433 /* Search a tree for the global symbol. */
3435 gfc_gsymbol *
3436 gfc_find_gsymbol (gfc_gsymbol *symbol, const char *name)
3438 int c;
3440 if (symbol == NULL)
3441 return NULL;
3443 while (symbol)
3445 c = strcmp (name, symbol->name);
3446 if (!c)
3447 return symbol;
3449 symbol = (c < 0) ? symbol->left : symbol->right;
3452 return NULL;
3456 /* Compare two global symbols. Used for managing the BB tree. */
3458 static int
3459 gsym_compare (void *_s1, void *_s2)
3461 gfc_gsymbol *s1, *s2;
3463 s1 = (gfc_gsymbol *) _s1;
3464 s2 = (gfc_gsymbol *) _s2;
3465 return strcmp (s1->name, s2->name);
3469 /* Get a global symbol, creating it if it doesn't exist. */
3471 gfc_gsymbol *
3472 gfc_get_gsymbol (const char *name)
3474 gfc_gsymbol *s;
3476 s = gfc_find_gsymbol (gfc_gsym_root, name);
3477 if (s != NULL)
3478 return s;
3480 s = XCNEW (gfc_gsymbol);
3481 s->type = GSYM_UNKNOWN;
3482 s->name = gfc_get_string (name);
3484 gfc_insert_bbt (&gfc_gsym_root, s, gsym_compare);
3486 return s;
3490 static gfc_symbol *
3491 get_iso_c_binding_dt (int sym_id)
3493 gfc_dt_list *dt_list;
3495 dt_list = gfc_derived_types;
3497 /* Loop through the derived types in the name list, searching for
3498 the desired symbol from iso_c_binding. Search the parent namespaces
3499 if necessary and requested to (parent_flag). */
3500 while (dt_list != NULL)
3502 if (dt_list->derived->from_intmod != INTMOD_NONE
3503 && dt_list->derived->intmod_sym_id == sym_id)
3504 return dt_list->derived;
3506 dt_list = dt_list->next;
3509 return NULL;
3513 /* Verifies that the given derived type symbol, derived_sym, is interoperable
3514 with C. This is necessary for any derived type that is BIND(C) and for
3515 derived types that are parameters to functions that are BIND(C). All
3516 fields of the derived type are required to be interoperable, and are tested
3517 for such. If an error occurs, the errors are reported here, allowing for
3518 multiple errors to be handled for a single derived type. */
3520 gfc_try
3521 verify_bind_c_derived_type (gfc_symbol *derived_sym)
3523 gfc_component *curr_comp = NULL;
3524 gfc_try is_c_interop = FAILURE;
3525 gfc_try retval = SUCCESS;
3527 if (derived_sym == NULL)
3528 gfc_internal_error ("verify_bind_c_derived_type(): Given symbol is "
3529 "unexpectedly NULL");
3531 /* If we've already looked at this derived symbol, do not look at it again
3532 so we don't repeat warnings/errors. */
3533 if (derived_sym->ts.is_c_interop)
3534 return SUCCESS;
3536 /* The derived type must have the BIND attribute to be interoperable
3537 J3/04-007, Section 15.2.3. */
3538 if (derived_sym->attr.is_bind_c != 1)
3540 derived_sym->ts.is_c_interop = 0;
3541 gfc_error_now ("Derived type '%s' declared at %L must have the BIND "
3542 "attribute to be C interoperable", derived_sym->name,
3543 &(derived_sym->declared_at));
3544 retval = FAILURE;
3547 curr_comp = derived_sym->components;
3549 /* Fortran 2003 allows an empty derived type. C99 appears to disallow an
3550 empty struct. Section 15.2 in Fortran 2003 states: "The following
3551 subclauses define the conditions under which a Fortran entity is
3552 interoperable. If a Fortran entity is interoperable, an equivalent
3553 entity may be defined by means of C and the Fortran entity is said
3554 to be interoperable with the C entity. There does not have to be such
3555 an interoperating C entity."
3557 if (curr_comp == NULL)
3559 gfc_warning ("Derived type '%s' with BIND(C) attribute at %L is empty, "
3560 "and may be inaccessible by the C companion processor",
3561 derived_sym->name, &(derived_sym->declared_at));
3562 derived_sym->ts.is_c_interop = 1;
3563 derived_sym->attr.is_bind_c = 1;
3564 return SUCCESS;
3568 /* Initialize the derived type as being C interoperable.
3569 If we find an error in the components, this will be set false. */
3570 derived_sym->ts.is_c_interop = 1;
3572 /* Loop through the list of components to verify that the kind of
3573 each is a C interoperable type. */
3576 /* The components cannot be pointers (fortran sense).
3577 J3/04-007, Section 15.2.3, C1505. */
3578 if (curr_comp->attr.pointer != 0)
3580 gfc_error ("Component '%s' at %L cannot have the "
3581 "POINTER attribute because it is a member "
3582 "of the BIND(C) derived type '%s' at %L",
3583 curr_comp->name, &(curr_comp->loc),
3584 derived_sym->name, &(derived_sym->declared_at));
3585 retval = FAILURE;
3588 if (curr_comp->attr.proc_pointer != 0)
3590 gfc_error ("Procedure pointer component '%s' at %L cannot be a member"
3591 " of the BIND(C) derived type '%s' at %L", curr_comp->name,
3592 &curr_comp->loc, derived_sym->name,
3593 &derived_sym->declared_at);
3594 retval = FAILURE;
3597 /* The components cannot be allocatable.
3598 J3/04-007, Section 15.2.3, C1505. */
3599 if (curr_comp->attr.allocatable != 0)
3601 gfc_error ("Component '%s' at %L cannot have the "
3602 "ALLOCATABLE attribute because it is a member "
3603 "of the BIND(C) derived type '%s' at %L",
3604 curr_comp->name, &(curr_comp->loc),
3605 derived_sym->name, &(derived_sym->declared_at));
3606 retval = FAILURE;
3609 /* BIND(C) derived types must have interoperable components. */
3610 if (curr_comp->ts.type == BT_DERIVED
3611 && curr_comp->ts.u.derived->ts.is_iso_c != 1
3612 && curr_comp->ts.u.derived != derived_sym)
3614 /* This should be allowed; the draft says a derived-type can not
3615 have type parameters if it is has the BIND attribute. Type
3616 parameters seem to be for making parameterized derived types.
3617 There's no need to verify the type if it is c_ptr/c_funptr. */
3618 retval = verify_bind_c_derived_type (curr_comp->ts.u.derived);
3620 else
3622 /* Grab the typespec for the given component and test the kind. */
3623 is_c_interop = verify_c_interop (&(curr_comp->ts));
3625 if (is_c_interop != SUCCESS)
3627 /* Report warning and continue since not fatal. The
3628 draft does specify a constraint that requires all fields
3629 to interoperate, but if the user says real(4), etc., it
3630 may interoperate with *something* in C, but the compiler
3631 most likely won't know exactly what. Further, it may not
3632 interoperate with the same data type(s) in C if the user
3633 recompiles with different flags (e.g., -m32 and -m64 on
3634 x86_64 and using integer(4) to claim interop with a
3635 C_LONG). */
3636 if (derived_sym->attr.is_bind_c == 1)
3637 /* If the derived type is bind(c), all fields must be
3638 interop. */
3639 gfc_warning ("Component '%s' in derived type '%s' at %L "
3640 "may not be C interoperable, even though "
3641 "derived type '%s' is BIND(C)",
3642 curr_comp->name, derived_sym->name,
3643 &(curr_comp->loc), derived_sym->name);
3644 else
3645 /* If derived type is param to bind(c) routine, or to one
3646 of the iso_c_binding procs, it must be interoperable, so
3647 all fields must interop too. */
3648 gfc_warning ("Component '%s' in derived type '%s' at %L "
3649 "may not be C interoperable",
3650 curr_comp->name, derived_sym->name,
3651 &(curr_comp->loc));
3655 curr_comp = curr_comp->next;
3656 } while (curr_comp != NULL);
3659 /* Make sure we don't have conflicts with the attributes. */
3660 if (derived_sym->attr.access == ACCESS_PRIVATE)
3662 gfc_error ("Derived type '%s' at %L cannot be declared with both "
3663 "PRIVATE and BIND(C) attributes", derived_sym->name,
3664 &(derived_sym->declared_at));
3665 retval = FAILURE;
3668 if (derived_sym->attr.sequence != 0)
3670 gfc_error ("Derived type '%s' at %L cannot have the SEQUENCE "
3671 "attribute because it is BIND(C)", derived_sym->name,
3672 &(derived_sym->declared_at));
3673 retval = FAILURE;
3676 /* Mark the derived type as not being C interoperable if we found an
3677 error. If there were only warnings, proceed with the assumption
3678 it's interoperable. */
3679 if (retval == FAILURE)
3680 derived_sym->ts.is_c_interop = 0;
3682 return retval;
3686 /* Generate symbols for the named constants c_null_ptr and c_null_funptr. */
3688 static gfc_try
3689 gen_special_c_interop_ptr (int ptr_id, const char *ptr_name,
3690 const char *module_name)
3692 gfc_symtree *tmp_symtree;
3693 gfc_symbol *tmp_sym;
3694 gfc_constructor *c;
3696 tmp_symtree = gfc_find_symtree (gfc_current_ns->sym_root, ptr_name);
3698 if (tmp_symtree != NULL)
3699 tmp_sym = tmp_symtree->n.sym;
3700 else
3702 tmp_sym = NULL;
3703 gfc_internal_error ("gen_special_c_interop_ptr(): Unable to "
3704 "create symbol for %s", ptr_name);
3707 /* Set up the symbol's important fields. Save attr required so we can
3708 initialize the ptr to NULL. */
3709 tmp_sym->attr.save = SAVE_EXPLICIT;
3710 tmp_sym->ts.is_c_interop = 1;
3711 tmp_sym->attr.is_c_interop = 1;
3712 tmp_sym->ts.is_iso_c = 1;
3713 tmp_sym->ts.type = BT_DERIVED;
3715 /* The c_ptr and c_funptr derived types will provide the
3716 definition for c_null_ptr and c_null_funptr, respectively. */
3717 if (ptr_id == ISOCBINDING_NULL_PTR)
3718 tmp_sym->ts.u.derived = get_iso_c_binding_dt (ISOCBINDING_PTR);
3719 else
3720 tmp_sym->ts.u.derived = get_iso_c_binding_dt (ISOCBINDING_FUNPTR);
3721 if (tmp_sym->ts.u.derived == NULL)
3723 /* This can occur if the user forgot to declare c_ptr or
3724 c_funptr and they're trying to use one of the procedures
3725 that has arg(s) of the missing type. In this case, a
3726 regular version of the thing should have been put in the
3727 current ns. */
3728 generate_isocbinding_symbol (module_name, ptr_id == ISOCBINDING_NULL_PTR
3729 ? ISOCBINDING_PTR : ISOCBINDING_FUNPTR,
3730 (const char *) (ptr_id == ISOCBINDING_NULL_PTR
3731 ? "_gfortran_iso_c_binding_c_ptr"
3732 : "_gfortran_iso_c_binding_c_funptr"));
3734 tmp_sym->ts.u.derived =
3735 get_iso_c_binding_dt (ptr_id == ISOCBINDING_NULL_PTR
3736 ? ISOCBINDING_PTR : ISOCBINDING_FUNPTR);
3739 /* Module name is some mangled version of iso_c_binding. */
3740 tmp_sym->module = gfc_get_string (module_name);
3742 /* Say it's from the iso_c_binding module. */
3743 tmp_sym->attr.is_iso_c = 1;
3745 tmp_sym->attr.use_assoc = 1;
3746 tmp_sym->attr.is_bind_c = 1;
3747 /* Set the binding_label. */
3748 sprintf (tmp_sym->binding_label, "%s_%s", module_name, tmp_sym->name);
3750 /* Set the c_address field of c_null_ptr and c_null_funptr to
3751 the value of NULL. */
3752 tmp_sym->value = gfc_get_expr ();
3753 tmp_sym->value->expr_type = EXPR_STRUCTURE;
3754 tmp_sym->value->ts.type = BT_DERIVED;
3755 tmp_sym->value->ts.u.derived = tmp_sym->ts.u.derived;
3756 gfc_constructor_append_expr (&tmp_sym->value->value.constructor, NULL, NULL);
3757 c = gfc_constructor_first (tmp_sym->value->value.constructor);
3758 c->expr = gfc_get_expr ();
3759 c->expr->expr_type = EXPR_NULL;
3760 c->expr->ts.is_iso_c = 1;
3761 /* Must declare c_null_ptr and c_null_funptr as having the
3762 PARAMETER attribute so they can be used in init expressions. */
3763 tmp_sym->attr.flavor = FL_PARAMETER;
3765 return SUCCESS;
3769 /* Add a formal argument, gfc_formal_arglist, to the
3770 end of the given list of arguments. Set the reference to the
3771 provided symbol, param_sym, in the argument. */
3773 static void
3774 add_formal_arg (gfc_formal_arglist **head,
3775 gfc_formal_arglist **tail,
3776 gfc_formal_arglist *formal_arg,
3777 gfc_symbol *param_sym)
3779 /* Put in list, either as first arg or at the tail (curr arg). */
3780 if (*head == NULL)
3781 *head = *tail = formal_arg;
3782 else
3784 (*tail)->next = formal_arg;
3785 (*tail) = formal_arg;
3788 (*tail)->sym = param_sym;
3789 (*tail)->next = NULL;
3791 return;
3795 /* Generates a symbol representing the CPTR argument to an
3796 iso_c_binding procedure. Also, create a gfc_formal_arglist for the
3797 CPTR and add it to the provided argument list. */
3799 static void
3800 gen_cptr_param (gfc_formal_arglist **head,
3801 gfc_formal_arglist **tail,
3802 const char *module_name,
3803 gfc_namespace *ns, const char *c_ptr_name,
3804 int iso_c_sym_id)
3806 gfc_symbol *param_sym = NULL;
3807 gfc_symbol *c_ptr_sym = NULL;
3808 gfc_symtree *param_symtree = NULL;
3809 gfc_formal_arglist *formal_arg = NULL;
3810 const char *c_ptr_in;
3811 const char *c_ptr_type = NULL;
3813 if (iso_c_sym_id == ISOCBINDING_F_PROCPOINTER)
3814 c_ptr_type = "_gfortran_iso_c_binding_c_funptr";
3815 else
3816 c_ptr_type = "_gfortran_iso_c_binding_c_ptr";
3818 if(c_ptr_name == NULL)
3819 c_ptr_in = "gfc_cptr__";
3820 else
3821 c_ptr_in = c_ptr_name;
3822 gfc_get_sym_tree (c_ptr_in, ns, &param_symtree, false);
3823 if (param_symtree != NULL)
3824 param_sym = param_symtree->n.sym;
3825 else
3826 gfc_internal_error ("gen_cptr_param(): Unable to "
3827 "create symbol for %s", c_ptr_in);
3829 /* Set up the appropriate fields for the new c_ptr param sym. */
3830 param_sym->refs++;
3831 param_sym->attr.flavor = FL_DERIVED;
3832 param_sym->ts.type = BT_DERIVED;
3833 param_sym->attr.intent = INTENT_IN;
3834 param_sym->attr.dummy = 1;
3836 /* This will pass the ptr to the iso_c routines as a (void *). */
3837 param_sym->attr.value = 1;
3838 param_sym->attr.use_assoc = 1;
3840 /* Get the symbol for c_ptr or c_funptr, no matter what it's name is
3841 (user renamed). */
3842 if (iso_c_sym_id == ISOCBINDING_F_PROCPOINTER)
3843 c_ptr_sym = get_iso_c_binding_dt (ISOCBINDING_FUNPTR);
3844 else
3845 c_ptr_sym = get_iso_c_binding_dt (ISOCBINDING_PTR);
3846 if (c_ptr_sym == NULL)
3848 /* This can happen if the user did not define c_ptr but they are
3849 trying to use one of the iso_c_binding functions that need it. */
3850 if (iso_c_sym_id == ISOCBINDING_F_PROCPOINTER)
3851 generate_isocbinding_symbol (module_name, ISOCBINDING_FUNPTR,
3852 (const char *)c_ptr_type);
3853 else
3854 generate_isocbinding_symbol (module_name, ISOCBINDING_PTR,
3855 (const char *)c_ptr_type);
3857 gfc_get_ha_symbol (c_ptr_type, &(c_ptr_sym));
3860 param_sym->ts.u.derived = c_ptr_sym;
3861 param_sym->module = gfc_get_string (module_name);
3863 /* Make new formal arg. */
3864 formal_arg = gfc_get_formal_arglist ();
3865 /* Add arg to list of formal args (the CPTR arg). */
3866 add_formal_arg (head, tail, formal_arg, param_sym);
3868 /* Validate changes. */
3869 gfc_commit_symbol (param_sym);
3873 /* Generates a symbol representing the FPTR argument to an
3874 iso_c_binding procedure. Also, create a gfc_formal_arglist for the
3875 FPTR and add it to the provided argument list. */
3877 static void
3878 gen_fptr_param (gfc_formal_arglist **head,
3879 gfc_formal_arglist **tail,
3880 const char *module_name,
3881 gfc_namespace *ns, const char *f_ptr_name, int proc)
3883 gfc_symbol *param_sym = NULL;
3884 gfc_symtree *param_symtree = NULL;
3885 gfc_formal_arglist *formal_arg = NULL;
3886 const char *f_ptr_out = "gfc_fptr__";
3888 if (f_ptr_name != NULL)
3889 f_ptr_out = f_ptr_name;
3891 gfc_get_sym_tree (f_ptr_out, ns, &param_symtree, false);
3892 if (param_symtree != NULL)
3893 param_sym = param_symtree->n.sym;
3894 else
3895 gfc_internal_error ("generateFPtrParam(): Unable to "
3896 "create symbol for %s", f_ptr_out);
3898 /* Set up the necessary fields for the fptr output param sym. */
3899 param_sym->refs++;
3900 if (proc)
3901 param_sym->attr.proc_pointer = 1;
3902 else
3903 param_sym->attr.pointer = 1;
3904 param_sym->attr.dummy = 1;
3905 param_sym->attr.use_assoc = 1;
3907 /* ISO C Binding type to allow any pointer type as actual param. */
3908 param_sym->ts.type = BT_VOID;
3909 param_sym->module = gfc_get_string (module_name);
3911 /* Make the arg. */
3912 formal_arg = gfc_get_formal_arglist ();
3913 /* Add arg to list of formal args. */
3914 add_formal_arg (head, tail, formal_arg, param_sym);
3916 /* Validate changes. */
3917 gfc_commit_symbol (param_sym);
3921 /* Generates a symbol representing the optional SHAPE argument for the
3922 iso_c_binding c_f_pointer() procedure. Also, create a
3923 gfc_formal_arglist for the SHAPE and add it to the provided
3924 argument list. */
3926 static void
3927 gen_shape_param (gfc_formal_arglist **head,
3928 gfc_formal_arglist **tail,
3929 const char *module_name,
3930 gfc_namespace *ns, const char *shape_param_name)
3932 gfc_symbol *param_sym = NULL;
3933 gfc_symtree *param_symtree = NULL;
3934 gfc_formal_arglist *formal_arg = NULL;
3935 const char *shape_param = "gfc_shape_array__";
3937 if (shape_param_name != NULL)
3938 shape_param = shape_param_name;
3940 gfc_get_sym_tree (shape_param, ns, &param_symtree, false);
3941 if (param_symtree != NULL)
3942 param_sym = param_symtree->n.sym;
3943 else
3944 gfc_internal_error ("generateShapeParam(): Unable to "
3945 "create symbol for %s", shape_param);
3947 /* Set up the necessary fields for the shape input param sym. */
3948 param_sym->refs++;
3949 param_sym->attr.dummy = 1;
3950 param_sym->attr.use_assoc = 1;
3952 /* Integer array, rank 1, describing the shape of the object. Make it's
3953 type BT_VOID initially so we can accept any type/kind combination of
3954 integer. During gfc_iso_c_sub_interface (resolve.c), we'll make it
3955 of BT_INTEGER type. */
3956 param_sym->ts.type = BT_VOID;
3958 /* Initialize the kind to default integer. However, it will be overridden
3959 during resolution to match the kind of the SHAPE parameter given as
3960 the actual argument (to allow for any valid integer kind). */
3961 param_sym->ts.kind = gfc_default_integer_kind;
3962 param_sym->as = gfc_get_array_spec ();
3964 param_sym->as->rank = 1;
3965 param_sym->as->lower[0] = gfc_get_int_expr (gfc_default_integer_kind,
3966 NULL, 1);
3968 /* The extent is unknown until we get it. The length give us
3969 the rank the incoming pointer. */
3970 param_sym->as->type = AS_ASSUMED_SHAPE;
3972 /* The arg is also optional; it is required iff the second arg
3973 (fptr) is to an array, otherwise, it's ignored. */
3974 param_sym->attr.optional = 1;
3975 param_sym->attr.intent = INTENT_IN;
3976 param_sym->attr.dimension = 1;
3977 param_sym->module = gfc_get_string (module_name);
3979 /* Make the arg. */
3980 formal_arg = gfc_get_formal_arglist ();
3981 /* Add arg to list of formal args. */
3982 add_formal_arg (head, tail, formal_arg, param_sym);
3984 /* Validate changes. */
3985 gfc_commit_symbol (param_sym);
3989 /* Add a procedure interface to the given symbol (i.e., store a
3990 reference to the list of formal arguments). */
3992 static void
3993 add_proc_interface (gfc_symbol *sym, ifsrc source,
3994 gfc_formal_arglist *formal)
3997 sym->formal = formal;
3998 sym->attr.if_source = source;
4002 /* Copy the formal args from an existing symbol, src, into a new
4003 symbol, dest. New formal args are created, and the description of
4004 each arg is set according to the existing ones. This function is
4005 used when creating procedure declaration variables from a procedure
4006 declaration statement (see match_proc_decl()) to create the formal
4007 args based on the args of a given named interface. */
4009 void
4010 gfc_copy_formal_args (gfc_symbol *dest, gfc_symbol *src)
4012 gfc_formal_arglist *head = NULL;
4013 gfc_formal_arglist *tail = NULL;
4014 gfc_formal_arglist *formal_arg = NULL;
4015 gfc_formal_arglist *curr_arg = NULL;
4016 gfc_formal_arglist *formal_prev = NULL;
4017 /* Save current namespace so we can change it for formal args. */
4018 gfc_namespace *parent_ns = gfc_current_ns;
4020 /* Create a new namespace, which will be the formal ns (namespace
4021 of the formal args). */
4022 gfc_current_ns = gfc_get_namespace (parent_ns, 0);
4023 gfc_current_ns->proc_name = dest;
4025 for (curr_arg = src->formal; curr_arg; curr_arg = curr_arg->next)
4027 formal_arg = gfc_get_formal_arglist ();
4028 gfc_get_symbol (curr_arg->sym->name, gfc_current_ns, &(formal_arg->sym));
4030 /* May need to copy more info for the symbol. */
4031 formal_arg->sym->attr = curr_arg->sym->attr;
4032 formal_arg->sym->ts = curr_arg->sym->ts;
4033 formal_arg->sym->as = gfc_copy_array_spec (curr_arg->sym->as);
4034 gfc_copy_formal_args (formal_arg->sym, curr_arg->sym);
4036 /* If this isn't the first arg, set up the next ptr. For the
4037 last arg built, the formal_arg->next will never get set to
4038 anything other than NULL. */
4039 if (formal_prev != NULL)
4040 formal_prev->next = formal_arg;
4041 else
4042 formal_arg->next = NULL;
4044 formal_prev = formal_arg;
4046 /* Add arg to list of formal args. */
4047 add_formal_arg (&head, &tail, formal_arg, formal_arg->sym);
4049 /* Validate changes. */
4050 gfc_commit_symbol (formal_arg->sym);
4053 /* Add the interface to the symbol. */
4054 add_proc_interface (dest, IFSRC_DECL, head);
4056 /* Store the formal namespace information. */
4057 if (dest->formal != NULL)
4058 /* The current ns should be that for the dest proc. */
4059 dest->formal_ns = gfc_current_ns;
4060 /* Restore the current namespace to what it was on entry. */
4061 gfc_current_ns = parent_ns;
4065 void
4066 gfc_copy_formal_args_intr (gfc_symbol *dest, gfc_intrinsic_sym *src)
4068 gfc_formal_arglist *head = NULL;
4069 gfc_formal_arglist *tail = NULL;
4070 gfc_formal_arglist *formal_arg = NULL;
4071 gfc_intrinsic_arg *curr_arg = NULL;
4072 gfc_formal_arglist *formal_prev = NULL;
4073 /* Save current namespace so we can change it for formal args. */
4074 gfc_namespace *parent_ns = gfc_current_ns;
4076 /* Create a new namespace, which will be the formal ns (namespace
4077 of the formal args). */
4078 gfc_current_ns = gfc_get_namespace (parent_ns, 0);
4079 gfc_current_ns->proc_name = dest;
4081 for (curr_arg = src->formal; curr_arg; curr_arg = curr_arg->next)
4083 formal_arg = gfc_get_formal_arglist ();
4084 gfc_get_symbol (curr_arg->name, gfc_current_ns, &(formal_arg->sym));
4086 /* May need to copy more info for the symbol. */
4087 formal_arg->sym->ts = curr_arg->ts;
4088 formal_arg->sym->attr.optional = curr_arg->optional;
4089 formal_arg->sym->attr.value = curr_arg->value;
4090 formal_arg->sym->attr.intent = curr_arg->intent;
4091 formal_arg->sym->attr.flavor = FL_VARIABLE;
4092 formal_arg->sym->attr.dummy = 1;
4094 if (formal_arg->sym->ts.type == BT_CHARACTER)
4095 formal_arg->sym->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
4097 /* If this isn't the first arg, set up the next ptr. For the
4098 last arg built, the formal_arg->next will never get set to
4099 anything other than NULL. */
4100 if (formal_prev != NULL)
4101 formal_prev->next = formal_arg;
4102 else
4103 formal_arg->next = NULL;
4105 formal_prev = formal_arg;
4107 /* Add arg to list of formal args. */
4108 add_formal_arg (&head, &tail, formal_arg, formal_arg->sym);
4110 /* Validate changes. */
4111 gfc_commit_symbol (formal_arg->sym);
4114 /* Add the interface to the symbol. */
4115 add_proc_interface (dest, IFSRC_DECL, head);
4117 /* Store the formal namespace information. */
4118 if (dest->formal != NULL)
4119 /* The current ns should be that for the dest proc. */
4120 dest->formal_ns = gfc_current_ns;
4121 /* Restore the current namespace to what it was on entry. */
4122 gfc_current_ns = parent_ns;
4126 void
4127 gfc_copy_formal_args_ppc (gfc_component *dest, gfc_symbol *src)
4129 gfc_formal_arglist *head = NULL;
4130 gfc_formal_arglist *tail = NULL;
4131 gfc_formal_arglist *formal_arg = NULL;
4132 gfc_formal_arglist *curr_arg = NULL;
4133 gfc_formal_arglist *formal_prev = NULL;
4134 /* Save current namespace so we can change it for formal args. */
4135 gfc_namespace *parent_ns = gfc_current_ns;
4137 /* Create a new namespace, which will be the formal ns (namespace
4138 of the formal args). */
4139 gfc_current_ns = gfc_get_namespace (parent_ns, 0);
4140 /* TODO: gfc_current_ns->proc_name = dest;*/
4142 for (curr_arg = src->formal; curr_arg; curr_arg = curr_arg->next)
4144 formal_arg = gfc_get_formal_arglist ();
4145 gfc_get_symbol (curr_arg->sym->name, gfc_current_ns, &(formal_arg->sym));
4147 /* May need to copy more info for the symbol. */
4148 formal_arg->sym->attr = curr_arg->sym->attr;
4149 formal_arg->sym->ts = curr_arg->sym->ts;
4150 formal_arg->sym->as = gfc_copy_array_spec (curr_arg->sym->as);
4151 gfc_copy_formal_args (formal_arg->sym, curr_arg->sym);
4153 /* If this isn't the first arg, set up the next ptr. For the
4154 last arg built, the formal_arg->next will never get set to
4155 anything other than NULL. */
4156 if (formal_prev != NULL)
4157 formal_prev->next = formal_arg;
4158 else
4159 formal_arg->next = NULL;
4161 formal_prev = formal_arg;
4163 /* Add arg to list of formal args. */
4164 add_formal_arg (&head, &tail, formal_arg, formal_arg->sym);
4166 /* Validate changes. */
4167 gfc_commit_symbol (formal_arg->sym);
4170 /* Add the interface to the symbol. */
4171 gfc_free_formal_arglist (dest->formal);
4172 dest->formal = head;
4173 dest->attr.if_source = IFSRC_DECL;
4175 /* Store the formal namespace information. */
4176 if (dest->formal != NULL)
4177 /* The current ns should be that for the dest proc. */
4178 dest->formal_ns = gfc_current_ns;
4179 /* Restore the current namespace to what it was on entry. */
4180 gfc_current_ns = parent_ns;
4184 /* Builds the parameter list for the iso_c_binding procedure
4185 c_f_pointer or c_f_procpointer. The old_sym typically refers to a
4186 generic version of either the c_f_pointer or c_f_procpointer
4187 functions. The new_proc_sym represents a "resolved" version of the
4188 symbol. The functions are resolved to match the types of their
4189 parameters; for example, c_f_pointer(cptr, fptr) would resolve to
4190 something similar to c_f_pointer_i4 if the type of data object fptr
4191 pointed to was a default integer. The actual name of the resolved
4192 procedure symbol is further mangled with the module name, etc., but
4193 the idea holds true. */
4195 static void
4196 build_formal_args (gfc_symbol *new_proc_sym,
4197 gfc_symbol *old_sym, int add_optional_arg)
4199 gfc_formal_arglist *head = NULL, *tail = NULL;
4200 gfc_namespace *parent_ns = NULL;
4202 parent_ns = gfc_current_ns;
4203 /* Create a new namespace, which will be the formal ns (namespace
4204 of the formal args). */
4205 gfc_current_ns = gfc_get_namespace(parent_ns, 0);
4206 gfc_current_ns->proc_name = new_proc_sym;
4208 /* Generate the params. */
4209 if (old_sym->intmod_sym_id == ISOCBINDING_F_PROCPOINTER)
4211 gen_cptr_param (&head, &tail, (const char *) new_proc_sym->module,
4212 gfc_current_ns, "cptr", old_sym->intmod_sym_id);
4213 gen_fptr_param (&head, &tail, (const char *) new_proc_sym->module,
4214 gfc_current_ns, "fptr", 1);
4216 else if (old_sym->intmod_sym_id == ISOCBINDING_F_POINTER)
4218 gen_cptr_param (&head, &tail, (const char *) new_proc_sym->module,
4219 gfc_current_ns, "cptr", old_sym->intmod_sym_id);
4220 gen_fptr_param (&head, &tail, (const char *) new_proc_sym->module,
4221 gfc_current_ns, "fptr", 0);
4222 /* If we're dealing with c_f_pointer, it has an optional third arg. */
4223 gen_shape_param (&head, &tail,(const char *) new_proc_sym->module,
4224 gfc_current_ns, "shape");
4227 else if (old_sym->intmod_sym_id == ISOCBINDING_ASSOCIATED)
4229 /* c_associated has one required arg and one optional; both
4230 are c_ptrs. */
4231 gen_cptr_param (&head, &tail, (const char *) new_proc_sym->module,
4232 gfc_current_ns, "c_ptr_1", ISOCBINDING_ASSOCIATED);
4233 if (add_optional_arg)
4235 gen_cptr_param (&head, &tail, (const char *) new_proc_sym->module,
4236 gfc_current_ns, "c_ptr_2", ISOCBINDING_ASSOCIATED);
4237 /* The last param is optional so mark it as such. */
4238 tail->sym->attr.optional = 1;
4242 /* Add the interface (store formal args to new_proc_sym). */
4243 add_proc_interface (new_proc_sym, IFSRC_DECL, head);
4245 /* Set up the formal_ns pointer to the one created for the
4246 new procedure so it'll get cleaned up during gfc_free_symbol(). */
4247 new_proc_sym->formal_ns = gfc_current_ns;
4249 gfc_current_ns = parent_ns;
4252 static int
4253 std_for_isocbinding_symbol (int id)
4255 switch (id)
4257 #define NAMED_INTCST(a,b,c,d) \
4258 case a:\
4259 return d;
4260 #include "iso-c-binding.def"
4261 #undef NAMED_INTCST
4263 #define NAMED_FUNCTION(a,b,c,d) \
4264 case a:\
4265 return d;
4266 #include "iso-c-binding.def"
4267 #undef NAMED_FUNCTION
4269 default:
4270 return GFC_STD_F2003;
4274 /* Generate the given set of C interoperable kind objects, or all
4275 interoperable kinds. This function will only be given kind objects
4276 for valid iso_c_binding defined types because this is verified when
4277 the 'use' statement is parsed. If the user gives an 'only' clause,
4278 the specific kinds are looked up; if they don't exist, an error is
4279 reported. If the user does not give an 'only' clause, all
4280 iso_c_binding symbols are generated. If a list of specific kinds
4281 is given, it must have a NULL in the first empty spot to mark the
4282 end of the list. */
4285 void
4286 generate_isocbinding_symbol (const char *mod_name, iso_c_binding_symbol s,
4287 const char *local_name)
4289 const char *const name = (local_name && local_name[0]) ? local_name
4290 : c_interop_kinds_table[s].name;
4291 gfc_symtree *tmp_symtree = NULL;
4292 gfc_symbol *tmp_sym = NULL;
4293 gfc_dt_list **dt_list_ptr = NULL;
4294 gfc_component *tmp_comp = NULL;
4295 char comp_name[(GFC_MAX_SYMBOL_LEN * 2) + 1];
4296 int index;
4298 if (gfc_notification_std (std_for_isocbinding_symbol (s)) == ERROR)
4299 return;
4300 tmp_symtree = gfc_find_symtree (gfc_current_ns->sym_root, name);
4302 /* Already exists in this scope so don't re-add it.
4303 TODO: we should probably check that it's really the same symbol. */
4304 if (tmp_symtree != NULL)
4305 return;
4307 /* Create the sym tree in the current ns. */
4308 gfc_get_sym_tree (name, gfc_current_ns, &tmp_symtree, false);
4309 if (tmp_symtree)
4310 tmp_sym = tmp_symtree->n.sym;
4311 else
4312 gfc_internal_error ("generate_isocbinding_symbol(): Unable to "
4313 "create symbol");
4315 /* Say what module this symbol belongs to. */
4316 tmp_sym->module = gfc_get_string (mod_name);
4317 tmp_sym->from_intmod = INTMOD_ISO_C_BINDING;
4318 tmp_sym->intmod_sym_id = s;
4320 switch (s)
4323 #define NAMED_INTCST(a,b,c,d) case a :
4324 #define NAMED_REALCST(a,b,c) case a :
4325 #define NAMED_CMPXCST(a,b,c) case a :
4326 #define NAMED_LOGCST(a,b,c) case a :
4327 #define NAMED_CHARKNDCST(a,b,c) case a :
4328 #include "iso-c-binding.def"
4330 tmp_sym->value = gfc_get_int_expr (gfc_default_integer_kind, NULL,
4331 c_interop_kinds_table[s].value);
4333 /* Initialize an integer constant expression node. */
4334 tmp_sym->attr.flavor = FL_PARAMETER;
4335 tmp_sym->ts.type = BT_INTEGER;
4336 tmp_sym->ts.kind = gfc_default_integer_kind;
4338 /* Mark this type as a C interoperable one. */
4339 tmp_sym->ts.is_c_interop = 1;
4340 tmp_sym->ts.is_iso_c = 1;
4341 tmp_sym->value->ts.is_c_interop = 1;
4342 tmp_sym->value->ts.is_iso_c = 1;
4343 tmp_sym->attr.is_c_interop = 1;
4345 /* Tell what f90 type this c interop kind is valid. */
4346 tmp_sym->ts.f90_type = c_interop_kinds_table[s].f90_type;
4348 /* Say it's from the iso_c_binding module. */
4349 tmp_sym->attr.is_iso_c = 1;
4351 /* Make it use associated. */
4352 tmp_sym->attr.use_assoc = 1;
4353 break;
4356 #define NAMED_CHARCST(a,b,c) case a :
4357 #include "iso-c-binding.def"
4359 /* Initialize an integer constant expression node for the
4360 length of the character. */
4361 tmp_sym->value = gfc_get_character_expr (gfc_default_character_kind,
4362 &gfc_current_locus, NULL, 1);
4363 tmp_sym->value->ts.is_c_interop = 1;
4364 tmp_sym->value->ts.is_iso_c = 1;
4365 tmp_sym->value->value.character.length = 1;
4366 tmp_sym->value->value.character.string[0]
4367 = (gfc_char_t) c_interop_kinds_table[s].value;
4368 tmp_sym->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
4369 tmp_sym->ts.u.cl->length = gfc_get_int_expr (gfc_default_integer_kind,
4370 NULL, 1);
4372 /* May not need this in both attr and ts, but do need in
4373 attr for writing module file. */
4374 tmp_sym->attr.is_c_interop = 1;
4376 tmp_sym->attr.flavor = FL_PARAMETER;
4377 tmp_sym->ts.type = BT_CHARACTER;
4379 /* Need to set it to the C_CHAR kind. */
4380 tmp_sym->ts.kind = gfc_default_character_kind;
4382 /* Mark this type as a C interoperable one. */
4383 tmp_sym->ts.is_c_interop = 1;
4384 tmp_sym->ts.is_iso_c = 1;
4386 /* Tell what f90 type this c interop kind is valid. */
4387 tmp_sym->ts.f90_type = BT_CHARACTER;
4389 /* Say it's from the iso_c_binding module. */
4390 tmp_sym->attr.is_iso_c = 1;
4392 /* Make it use associated. */
4393 tmp_sym->attr.use_assoc = 1;
4394 break;
4396 case ISOCBINDING_PTR:
4397 case ISOCBINDING_FUNPTR:
4399 /* Initialize an integer constant expression node. */
4400 tmp_sym->attr.flavor = FL_DERIVED;
4401 tmp_sym->ts.is_c_interop = 1;
4402 tmp_sym->attr.is_c_interop = 1;
4403 tmp_sym->attr.is_iso_c = 1;
4404 tmp_sym->ts.is_iso_c = 1;
4405 tmp_sym->ts.type = BT_DERIVED;
4407 /* A derived type must have the bind attribute to be
4408 interoperable (J3/04-007, Section 15.2.3), even though
4409 the binding label is not used. */
4410 tmp_sym->attr.is_bind_c = 1;
4412 tmp_sym->attr.referenced = 1;
4414 tmp_sym->ts.u.derived = tmp_sym;
4416 /* Add the symbol created for the derived type to the current ns. */
4417 dt_list_ptr = &(gfc_derived_types);
4418 while (*dt_list_ptr != NULL && (*dt_list_ptr)->next != NULL)
4419 dt_list_ptr = &((*dt_list_ptr)->next);
4421 /* There is already at least one derived type in the list, so append
4422 the one we're currently building for c_ptr or c_funptr. */
4423 if (*dt_list_ptr != NULL)
4424 dt_list_ptr = &((*dt_list_ptr)->next);
4425 (*dt_list_ptr) = gfc_get_dt_list ();
4426 (*dt_list_ptr)->derived = tmp_sym;
4427 (*dt_list_ptr)->next = NULL;
4429 /* Set up the component of the derived type, which will be
4430 an integer with kind equal to c_ptr_size. Mangle the name of
4431 the field for the c_address to prevent the curious user from
4432 trying to access it from Fortran. */
4433 sprintf (comp_name, "__%s_%s", tmp_sym->name, "c_address");
4434 gfc_add_component (tmp_sym, comp_name, &tmp_comp);
4435 if (tmp_comp == NULL)
4436 gfc_internal_error ("generate_isocbinding_symbol(): Unable to "
4437 "create component for c_address");
4439 tmp_comp->ts.type = BT_INTEGER;
4441 /* Set this because the module will need to read/write this field. */
4442 tmp_comp->ts.f90_type = BT_INTEGER;
4444 /* The kinds for c_ptr and c_funptr are the same. */
4445 index = get_c_kind ("c_ptr", c_interop_kinds_table);
4446 tmp_comp->ts.kind = c_interop_kinds_table[index].value;
4448 tmp_comp->attr.pointer = 0;
4449 tmp_comp->attr.dimension = 0;
4451 /* Mark the component as C interoperable. */
4452 tmp_comp->ts.is_c_interop = 1;
4454 /* Make it use associated (iso_c_binding module). */
4455 tmp_sym->attr.use_assoc = 1;
4456 break;
4458 case ISOCBINDING_NULL_PTR:
4459 case ISOCBINDING_NULL_FUNPTR:
4460 gen_special_c_interop_ptr (s, name, mod_name);
4461 break;
4463 case ISOCBINDING_F_POINTER:
4464 case ISOCBINDING_ASSOCIATED:
4465 case ISOCBINDING_LOC:
4466 case ISOCBINDING_FUNLOC:
4467 case ISOCBINDING_F_PROCPOINTER:
4469 tmp_sym->attr.proc = PROC_MODULE;
4471 /* Use the procedure's name as it is in the iso_c_binding module for
4472 setting the binding label in case the user renamed the symbol. */
4473 sprintf (tmp_sym->binding_label, "%s_%s", mod_name,
4474 c_interop_kinds_table[s].name);
4475 tmp_sym->attr.is_iso_c = 1;
4476 if (s == ISOCBINDING_F_POINTER || s == ISOCBINDING_F_PROCPOINTER)
4477 tmp_sym->attr.subroutine = 1;
4478 else
4480 /* TODO! This needs to be finished more for the expr of the
4481 function or something!
4482 This may not need to be here, because trying to do c_loc
4483 as an external. */
4484 if (s == ISOCBINDING_ASSOCIATED)
4486 tmp_sym->attr.function = 1;
4487 tmp_sym->ts.type = BT_LOGICAL;
4488 tmp_sym->ts.kind = gfc_default_logical_kind;
4489 tmp_sym->result = tmp_sym;
4491 else
4493 /* Here, we're taking the simple approach. We're defining
4494 c_loc as an external identifier so the compiler will put
4495 what we expect on the stack for the address we want the
4496 C address of. */
4497 tmp_sym->ts.type = BT_DERIVED;
4498 if (s == ISOCBINDING_LOC)
4499 tmp_sym->ts.u.derived =
4500 get_iso_c_binding_dt (ISOCBINDING_PTR);
4501 else
4502 tmp_sym->ts.u.derived =
4503 get_iso_c_binding_dt (ISOCBINDING_FUNPTR);
4505 if (tmp_sym->ts.u.derived == NULL)
4507 /* Create the necessary derived type so we can continue
4508 processing the file. */
4509 generate_isocbinding_symbol
4510 (mod_name, s == ISOCBINDING_FUNLOC
4511 ? ISOCBINDING_FUNPTR : ISOCBINDING_PTR,
4512 (const char *)(s == ISOCBINDING_FUNLOC
4513 ? "_gfortran_iso_c_binding_c_funptr"
4514 : "_gfortran_iso_c_binding_c_ptr"));
4515 tmp_sym->ts.u.derived =
4516 get_iso_c_binding_dt (s == ISOCBINDING_FUNLOC
4517 ? ISOCBINDING_FUNPTR
4518 : ISOCBINDING_PTR);
4521 /* The function result is itself (no result clause). */
4522 tmp_sym->result = tmp_sym;
4523 tmp_sym->attr.external = 1;
4524 tmp_sym->attr.use_assoc = 0;
4525 tmp_sym->attr.pure = 1;
4526 tmp_sym->attr.if_source = IFSRC_UNKNOWN;
4527 tmp_sym->attr.proc = PROC_UNKNOWN;
4531 tmp_sym->attr.flavor = FL_PROCEDURE;
4532 tmp_sym->attr.contained = 0;
4534 /* Try using this builder routine, with the new and old symbols
4535 both being the generic iso_c proc sym being created. This
4536 will create the formal args (and the new namespace for them).
4537 Don't build an arg list for c_loc because we're going to treat
4538 c_loc as an external procedure. */
4539 if (s != ISOCBINDING_LOC && s != ISOCBINDING_FUNLOC)
4540 /* The 1 says to add any optional args, if applicable. */
4541 build_formal_args (tmp_sym, tmp_sym, 1);
4543 /* Set this after setting up the symbol, to prevent error messages. */
4544 tmp_sym->attr.use_assoc = 1;
4546 /* This symbol will not be referenced directly. It will be
4547 resolved to the implementation for the given f90 kind. */
4548 tmp_sym->attr.referenced = 0;
4550 break;
4552 default:
4553 gcc_unreachable ();
4555 gfc_commit_symbol (tmp_sym);
4559 /* Creates a new symbol based off of an old iso_c symbol, with a new
4560 binding label. This function can be used to create a new,
4561 resolved, version of a procedure symbol for c_f_pointer or
4562 c_f_procpointer that is based on the generic symbols. A new
4563 parameter list is created for the new symbol using
4564 build_formal_args(). The add_optional_flag specifies whether the
4565 to add the optional SHAPE argument. The new symbol is
4566 returned. */
4568 gfc_symbol *
4569 get_iso_c_sym (gfc_symbol *old_sym, char *new_name,
4570 char *new_binding_label, int add_optional_arg)
4572 gfc_symtree *new_symtree = NULL;
4574 /* See if we have a symbol by that name already available, looking
4575 through any parent namespaces. */
4576 gfc_find_sym_tree (new_name, gfc_current_ns, 1, &new_symtree);
4577 if (new_symtree != NULL)
4578 /* Return the existing symbol. */
4579 return new_symtree->n.sym;
4581 /* Create the symtree/symbol, with attempted host association. */
4582 gfc_get_ha_sym_tree (new_name, &new_symtree);
4583 if (new_symtree == NULL)
4584 gfc_internal_error ("get_iso_c_sym(): Unable to create "
4585 "symtree for '%s'", new_name);
4587 /* Now fill in the fields of the resolved symbol with the old sym. */
4588 strcpy (new_symtree->n.sym->binding_label, new_binding_label);
4589 new_symtree->n.sym->attr = old_sym->attr;
4590 new_symtree->n.sym->ts = old_sym->ts;
4591 new_symtree->n.sym->module = gfc_get_string (old_sym->module);
4592 new_symtree->n.sym->from_intmod = old_sym->from_intmod;
4593 new_symtree->n.sym->intmod_sym_id = old_sym->intmod_sym_id;
4594 if (old_sym->attr.function)
4595 new_symtree->n.sym->result = new_symtree->n.sym;
4596 /* Build the formal arg list. */
4597 build_formal_args (new_symtree->n.sym, old_sym, add_optional_arg);
4599 gfc_commit_symbol (new_symtree->n.sym);
4601 return new_symtree->n.sym;
4605 /* Check that a symbol is already typed. If strict is not set, an untyped
4606 symbol is acceptable for non-standard-conforming mode. */
4608 gfc_try
4609 gfc_check_symbol_typed (gfc_symbol* sym, gfc_namespace* ns,
4610 bool strict, locus where)
4612 gcc_assert (sym);
4614 if (gfc_matching_prefix)
4615 return SUCCESS;
4617 /* Check for the type and try to give it an implicit one. */
4618 if (sym->ts.type == BT_UNKNOWN
4619 && gfc_set_default_type (sym, 0, ns) == FAILURE)
4621 if (strict)
4623 gfc_error ("Symbol '%s' is used before it is typed at %L",
4624 sym->name, &where);
4625 return FAILURE;
4628 if (gfc_notify_std (GFC_STD_GNU,
4629 "Extension: Symbol '%s' is used before"
4630 " it is typed at %L", sym->name, &where) == FAILURE)
4631 return FAILURE;
4634 /* Everything is ok. */
4635 return SUCCESS;
4639 /* Construct a typebound-procedure structure. Those are stored in a tentative
4640 list and marked `error' until symbols are committed. */
4642 gfc_typebound_proc*
4643 gfc_get_typebound_proc (gfc_typebound_proc *tb0)
4645 gfc_typebound_proc *result;
4646 tentative_tbp *list_node;
4648 result = XCNEW (gfc_typebound_proc);
4649 if (tb0)
4650 *result = *tb0;
4651 result->error = 1;
4653 list_node = XCNEW (tentative_tbp);
4654 list_node->next = tentative_tbp_list;
4655 list_node->proc = result;
4656 tentative_tbp_list = list_node;
4658 return result;
4662 /* Get the super-type of a given derived type. */
4664 gfc_symbol*
4665 gfc_get_derived_super_type (gfc_symbol* derived)
4667 if (!derived->attr.extension)
4668 return NULL;
4670 gcc_assert (derived->components);
4671 gcc_assert (derived->components->ts.type == BT_DERIVED);
4672 gcc_assert (derived->components->ts.u.derived);
4674 return derived->components->ts.u.derived;
4678 /* Get the ultimate super-type of a given derived type. */
4680 gfc_symbol*
4681 gfc_get_ultimate_derived_super_type (gfc_symbol* derived)
4683 if (!derived->attr.extension)
4684 return NULL;
4686 derived = gfc_get_derived_super_type (derived);
4688 if (derived->attr.extension)
4689 return gfc_get_ultimate_derived_super_type (derived);
4690 else
4691 return derived;
4695 /* Check if a derived type t2 is an extension of (or equal to) a type t1. */
4697 bool
4698 gfc_type_is_extension_of (gfc_symbol *t1, gfc_symbol *t2)
4700 while (!gfc_compare_derived_types (t1, t2) && t2->attr.extension)
4701 t2 = gfc_get_derived_super_type (t2);
4702 return gfc_compare_derived_types (t1, t2);
4706 /* Check if two typespecs are type compatible (F03:5.1.1.2):
4707 If ts1 is nonpolymorphic, ts2 must be the same type.
4708 If ts1 is polymorphic (CLASS), ts2 must be an extension of ts1. */
4710 bool
4711 gfc_type_compatible (gfc_typespec *ts1, gfc_typespec *ts2)
4713 bool is_class1 = (ts1->type == BT_CLASS);
4714 bool is_class2 = (ts2->type == BT_CLASS);
4715 bool is_derived1 = (ts1->type == BT_DERIVED);
4716 bool is_derived2 = (ts2->type == BT_DERIVED);
4718 if (!is_derived1 && !is_derived2 && !is_class1 && !is_class2)
4719 return (ts1->type == ts2->type);
4721 if (is_derived1 && is_derived2)
4722 return gfc_compare_derived_types (ts1->u.derived, ts2->u.derived);
4724 if (is_class1 && is_derived2)
4725 return gfc_type_is_extension_of (ts1->u.derived->components->ts.u.derived,
4726 ts2->u.derived);
4727 else if (is_class1 && is_class2)
4728 return gfc_type_is_extension_of (ts1->u.derived->components->ts.u.derived,
4729 ts2->u.derived->components->ts.u.derived);
4730 else
4731 return 0;
4735 /* Find the parent-namespace of the current function. If we're inside
4736 BLOCK constructs, it may not be the current one. */
4738 gfc_namespace*
4739 gfc_find_proc_namespace (gfc_namespace* ns)
4741 while (ns->construct_entities)
4743 ns = ns->parent;
4744 gcc_assert (ns);
4747 return ns;
4751 /* Check if an associate-variable should be translated as an `implicit' pointer
4752 internally (if it is associated to a variable and not an array with
4753 descriptor). */
4755 bool
4756 gfc_is_associate_pointer (gfc_symbol* sym)
4758 if (!sym->assoc)
4759 return false;
4761 if (!sym->assoc->variable)
4762 return false;
4764 if (sym->attr.dimension && sym->as->type != AS_EXPLICIT)
4765 return false;
4767 return true;