1 /* Maintain binary trees of symbols.
2 Copyright (C) 2000-2015 Free Software Foundation, Inc.
3 Contributed by Andy Vaught
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
24 #include "coretypes.h"
29 #include "constructor.h"
32 /* Strings for all symbol attributes. We use these for dumping the
33 parse tree, in error messages, and also when reading and writing
36 const mstring flavors
[] =
38 minit ("UNKNOWN-FL", FL_UNKNOWN
), minit ("PROGRAM", FL_PROGRAM
),
39 minit ("BLOCK-DATA", FL_BLOCK_DATA
), minit ("MODULE", FL_MODULE
),
40 minit ("VARIABLE", FL_VARIABLE
), minit ("PARAMETER", FL_PARAMETER
),
41 minit ("LABEL", FL_LABEL
), minit ("PROCEDURE", FL_PROCEDURE
),
42 minit ("DERIVED", FL_DERIVED
), minit ("NAMELIST", FL_NAMELIST
),
46 const mstring procedures
[] =
48 minit ("UNKNOWN-PROC", PROC_UNKNOWN
),
49 minit ("MODULE-PROC", PROC_MODULE
),
50 minit ("INTERNAL-PROC", PROC_INTERNAL
),
51 minit ("DUMMY-PROC", PROC_DUMMY
),
52 minit ("INTRINSIC-PROC", PROC_INTRINSIC
),
53 minit ("EXTERNAL-PROC", PROC_EXTERNAL
),
54 minit ("STATEMENT-PROC", PROC_ST_FUNCTION
),
58 const mstring intents
[] =
60 minit ("UNKNOWN-INTENT", INTENT_UNKNOWN
),
61 minit ("IN", INTENT_IN
),
62 minit ("OUT", INTENT_OUT
),
63 minit ("INOUT", INTENT_INOUT
),
67 const mstring access_types
[] =
69 minit ("UNKNOWN-ACCESS", ACCESS_UNKNOWN
),
70 minit ("PUBLIC", ACCESS_PUBLIC
),
71 minit ("PRIVATE", ACCESS_PRIVATE
),
75 const mstring ifsrc_types
[] =
77 minit ("UNKNOWN", IFSRC_UNKNOWN
),
78 minit ("DECL", IFSRC_DECL
),
79 minit ("BODY", IFSRC_IFBODY
)
82 const mstring save_status
[] =
84 minit ("UNKNOWN", SAVE_NONE
),
85 minit ("EXPLICIT-SAVE", SAVE_EXPLICIT
),
86 minit ("IMPLICIT-SAVE", SAVE_IMPLICIT
),
89 /* This is to make sure the backend generates setup code in the correct
92 static int next_dummy_order
= 1;
95 gfc_namespace
*gfc_current_ns
;
96 gfc_namespace
*gfc_global_ns_list
;
98 gfc_gsymbol
*gfc_gsym_root
= NULL
;
100 gfc_dt_list
*gfc_derived_types
;
102 static gfc_undo_change_set default_undo_chgset_var
= { vNULL
, vNULL
, NULL
};
103 static gfc_undo_change_set
*latest_undo_chgset
= &default_undo_chgset_var
;
106 /*********** IMPLICIT NONE and IMPLICIT statement handlers ***********/
108 /* The following static variable indicates whether a particular element has
109 been explicitly set or not. */
111 static int new_flag
[GFC_LETTERS
];
114 /* Handle a correctly parsed IMPLICIT NONE. */
117 gfc_set_implicit_none (bool type
, bool external
, locus
*loc
)
122 gfc_current_ns
->has_implicit_none_export
= 1;
126 gfc_current_ns
->seen_implicit_none
= 1;
127 for (i
= 0; i
< GFC_LETTERS
; i
++)
129 if (gfc_current_ns
->set_flag
[i
])
131 gfc_error_now ("IMPLICIT NONE (type) statement at %L following an "
132 "IMPLICIT statement", loc
);
135 gfc_clear_ts (&gfc_current_ns
->default_type
[i
]);
136 gfc_current_ns
->set_flag
[i
] = 1;
142 /* Reset the implicit range flags. */
145 gfc_clear_new_implicit (void)
149 for (i
= 0; i
< GFC_LETTERS
; i
++)
154 /* Prepare for a new implicit range. Sets flags in new_flag[]. */
157 gfc_add_new_implicit_range (int c1
, int c2
)
164 for (i
= c1
; i
<= c2
; i
++)
168 gfc_error ("Letter %<%c%> already set in IMPLICIT statement at %C",
180 /* Add a matched implicit range for gfc_set_implicit(). Check if merging
181 the new implicit types back into the existing types will work. */
184 gfc_merge_new_implicit (gfc_typespec
*ts
)
188 if (gfc_current_ns
->seen_implicit_none
)
190 gfc_error ("Cannot specify IMPLICIT at %C after IMPLICIT NONE");
194 for (i
= 0; i
< GFC_LETTERS
; i
++)
198 if (gfc_current_ns
->set_flag
[i
])
200 gfc_error ("Letter %c already has an IMPLICIT type at %C",
205 gfc_current_ns
->default_type
[i
] = *ts
;
206 gfc_current_ns
->implicit_loc
[i
] = gfc_current_locus
;
207 gfc_current_ns
->set_flag
[i
] = 1;
214 /* Given a symbol, return a pointer to the typespec for its default type. */
217 gfc_get_default_type (const char *name
, gfc_namespace
*ns
)
223 if (flag_allow_leading_underscore
&& letter
== '_')
224 gfc_fatal_error ("Option %<-fallow-leading-underscore%> is for use only by "
225 "gfortran developers, and should not be used for "
226 "implicitly typed variables");
228 if (letter
< 'a' || letter
> 'z')
229 gfc_internal_error ("gfc_get_default_type(): Bad symbol %qs", name
);
234 return &ns
->default_type
[letter
- 'a'];
238 /* Given a pointer to a symbol, set its type according to the first
239 letter of its name. Fails if the letter in question has no default
243 gfc_set_default_type (gfc_symbol
*sym
, int error_flag
, gfc_namespace
*ns
)
247 if (sym
->ts
.type
!= BT_UNKNOWN
)
248 gfc_internal_error ("gfc_set_default_type(): symbol already has a type");
250 ts
= gfc_get_default_type (sym
->name
, ns
);
252 if (ts
->type
== BT_UNKNOWN
)
254 if (error_flag
&& !sym
->attr
.untyped
)
256 gfc_error ("Symbol %qs at %L has no IMPLICIT type",
257 sym
->name
, &sym
->declared_at
);
258 sym
->attr
.untyped
= 1; /* Ensure we only give an error once. */
265 sym
->attr
.implicit_type
= 1;
267 if (ts
->type
== BT_CHARACTER
&& ts
->u
.cl
)
268 sym
->ts
.u
.cl
= gfc_new_charlen (sym
->ns
, ts
->u
.cl
);
269 else if (ts
->type
== BT_CLASS
270 && !gfc_build_class_symbol (&sym
->ts
, &sym
->attr
, &sym
->as
))
273 if (sym
->attr
.is_bind_c
== 1 && warn_c_binding_type
)
275 /* BIND(C) variables should not be implicitly declared. */
276 gfc_warning_now (OPT_Wc_binding_type
, "Implicitly declared BIND(C) "
277 "variable %qs at %L may not be C interoperable",
278 sym
->name
, &sym
->declared_at
);
279 sym
->ts
.f90_type
= sym
->ts
.type
;
282 if (sym
->attr
.dummy
!= 0)
284 if (sym
->ns
->proc_name
!= NULL
285 && (sym
->ns
->proc_name
->attr
.subroutine
!= 0
286 || sym
->ns
->proc_name
->attr
.function
!= 0)
287 && sym
->ns
->proc_name
->attr
.is_bind_c
!= 0
288 && warn_c_binding_type
)
290 /* Dummy args to a BIND(C) routine may not be interoperable if
291 they are implicitly typed. */
292 gfc_warning_now (OPT_Wc_binding_type
, "Implicitly declared variable "
293 "%qs at %L may not be C interoperable but it is a "
294 "dummy argument to the BIND(C) procedure %qs at %L",
295 sym
->name
, &(sym
->declared_at
),
296 sym
->ns
->proc_name
->name
,
297 &(sym
->ns
->proc_name
->declared_at
));
298 sym
->ts
.f90_type
= sym
->ts
.type
;
306 /* This function is called from parse.c(parse_progunit) to check the
307 type of the function is not implicitly typed in the host namespace
308 and to implicitly type the function result, if necessary. */
311 gfc_check_function_type (gfc_namespace
*ns
)
313 gfc_symbol
*proc
= ns
->proc_name
;
315 if (!proc
->attr
.contained
|| proc
->result
->attr
.implicit_type
)
318 if (proc
->result
->ts
.type
== BT_UNKNOWN
&& proc
->result
->ts
.interface
== NULL
)
320 if (gfc_set_default_type (proc
->result
, 0, gfc_current_ns
))
322 if (proc
->result
!= proc
)
324 proc
->ts
= proc
->result
->ts
;
325 proc
->as
= gfc_copy_array_spec (proc
->result
->as
);
326 proc
->attr
.dimension
= proc
->result
->attr
.dimension
;
327 proc
->attr
.pointer
= proc
->result
->attr
.pointer
;
328 proc
->attr
.allocatable
= proc
->result
->attr
.allocatable
;
331 else if (!proc
->result
->attr
.proc_pointer
)
333 gfc_error ("Function result %qs at %L has no IMPLICIT type",
334 proc
->result
->name
, &proc
->result
->declared_at
);
335 proc
->result
->attr
.untyped
= 1;
341 /******************** Symbol attribute stuff *********************/
343 /* This is a generic conflict-checker. We do this to avoid having a
344 single conflict in two places. */
346 #define conf(a, b) if (attr->a && attr->b) { a1 = a; a2 = b; goto conflict; }
347 #define conf2(a) if (attr->a) { a2 = a; goto conflict; }
348 #define conf_std(a, b, std) if (attr->a && attr->b)\
357 check_conflict (symbol_attribute
*attr
, const char *name
, locus
*where
)
359 static const char *dummy
= "DUMMY", *save
= "SAVE", *pointer
= "POINTER",
360 *target
= "TARGET", *external
= "EXTERNAL", *intent
= "INTENT",
361 *intent_in
= "INTENT(IN)", *intrinsic
= "INTRINSIC",
362 *intent_out
= "INTENT(OUT)", *intent_inout
= "INTENT(INOUT)",
363 *allocatable
= "ALLOCATABLE", *elemental
= "ELEMENTAL",
364 *privat
= "PRIVATE", *recursive
= "RECURSIVE",
365 *in_common
= "COMMON", *result
= "RESULT", *in_namelist
= "NAMELIST",
366 *publik
= "PUBLIC", *optional
= "OPTIONAL", *entry
= "ENTRY",
367 *function
= "FUNCTION", *subroutine
= "SUBROUTINE",
368 *dimension
= "DIMENSION", *in_equivalence
= "EQUIVALENCE",
369 *use_assoc
= "USE ASSOCIATED", *cray_pointer
= "CRAY POINTER",
370 *cray_pointee
= "CRAY POINTEE", *data
= "DATA", *value
= "VALUE",
371 *volatile_
= "VOLATILE", *is_protected
= "PROTECTED",
372 *is_bind_c
= "BIND(C)", *procedure
= "PROCEDURE",
373 *proc_pointer
= "PROCEDURE POINTER", *abstract
= "ABSTRACT",
374 *asynchronous
= "ASYNCHRONOUS", *codimension
= "CODIMENSION",
375 *contiguous
= "CONTIGUOUS", *generic
= "GENERIC";
376 static const char *threadprivate
= "THREADPRIVATE";
377 static const char *omp_declare_target
= "OMP DECLARE TARGET";
383 where
= &gfc_current_locus
;
385 if (attr
->pointer
&& attr
->intent
!= INTENT_UNKNOWN
)
389 standard
= GFC_STD_F2003
;
393 if (attr
->in_namelist
&& (attr
->allocatable
|| attr
->pointer
))
396 a2
= attr
->allocatable
? allocatable
: pointer
;
397 standard
= GFC_STD_F2003
;
401 /* Check for attributes not allowed in a BLOCK DATA. */
402 if (gfc_current_state () == COMP_BLOCK_DATA
)
406 if (attr
->in_namelist
)
408 if (attr
->allocatable
)
414 if (attr
->access
== ACCESS_PRIVATE
)
416 if (attr
->access
== ACCESS_PUBLIC
)
418 if (attr
->intent
!= INTENT_UNKNOWN
)
424 ("%s attribute not allowed in BLOCK DATA program unit at %L",
430 if (attr
->save
== SAVE_EXPLICIT
)
433 conf (in_common
, save
);
436 switch (attr
->flavor
)
444 a1
= gfc_code2string (flavors
, attr
->flavor
);
448 gfc_error ("Namelist group name at %L cannot have the "
449 "SAVE attribute", where
);
453 /* Conflicts between SAVE and PROCEDURE will be checked at
454 resolution stage, see "resolve_fl_procedure". */
462 conf (dummy
, intrinsic
);
463 conf (dummy
, threadprivate
);
464 conf (dummy
, omp_declare_target
);
465 conf (pointer
, target
);
466 conf (pointer
, intrinsic
);
467 conf (pointer
, elemental
);
468 conf (pointer
, codimension
);
469 conf (allocatable
, elemental
);
471 conf (target
, external
);
472 conf (target
, intrinsic
);
474 if (!attr
->if_source
)
475 conf (external
, dimension
); /* See Fortran 95's R504. */
477 conf (external
, intrinsic
);
478 conf (entry
, intrinsic
);
480 if ((attr
->if_source
== IFSRC_DECL
&& !attr
->procedure
) || attr
->contained
)
481 conf (external
, subroutine
);
483 if (attr
->proc_pointer
&& !gfc_notify_std (GFC_STD_F2003
,
484 "Procedure pointer at %C"))
487 conf (allocatable
, pointer
);
488 conf_std (allocatable
, dummy
, GFC_STD_F2003
);
489 conf_std (allocatable
, function
, GFC_STD_F2003
);
490 conf_std (allocatable
, result
, GFC_STD_F2003
);
491 conf (elemental
, recursive
);
493 conf (in_common
, dummy
);
494 conf (in_common
, allocatable
);
495 conf (in_common
, codimension
);
496 conf (in_common
, result
);
498 conf (in_equivalence
, use_assoc
);
499 conf (in_equivalence
, codimension
);
500 conf (in_equivalence
, dummy
);
501 conf (in_equivalence
, target
);
502 conf (in_equivalence
, pointer
);
503 conf (in_equivalence
, function
);
504 conf (in_equivalence
, result
);
505 conf (in_equivalence
, entry
);
506 conf (in_equivalence
, allocatable
);
507 conf (in_equivalence
, threadprivate
);
508 conf (in_equivalence
, omp_declare_target
);
510 conf (dummy
, result
);
511 conf (entry
, result
);
512 conf (generic
, result
);
514 conf (function
, subroutine
);
516 if (!function
&& !subroutine
)
517 conf (is_bind_c
, dummy
);
519 conf (is_bind_c
, cray_pointer
);
520 conf (is_bind_c
, cray_pointee
);
521 conf (is_bind_c
, codimension
);
522 conf (is_bind_c
, allocatable
);
523 conf (is_bind_c
, elemental
);
525 /* Need to also get volatile attr, according to 5.1 of F2003 draft.
526 Parameter conflict caught below. Also, value cannot be specified
527 for a dummy procedure. */
529 /* Cray pointer/pointee conflicts. */
530 conf (cray_pointer
, cray_pointee
);
531 conf (cray_pointer
, dimension
);
532 conf (cray_pointer
, codimension
);
533 conf (cray_pointer
, contiguous
);
534 conf (cray_pointer
, pointer
);
535 conf (cray_pointer
, target
);
536 conf (cray_pointer
, allocatable
);
537 conf (cray_pointer
, external
);
538 conf (cray_pointer
, intrinsic
);
539 conf (cray_pointer
, in_namelist
);
540 conf (cray_pointer
, function
);
541 conf (cray_pointer
, subroutine
);
542 conf (cray_pointer
, entry
);
544 conf (cray_pointee
, allocatable
);
545 conf (cray_pointee
, contiguous
);
546 conf (cray_pointee
, codimension
);
547 conf (cray_pointee
, intent
);
548 conf (cray_pointee
, optional
);
549 conf (cray_pointee
, dummy
);
550 conf (cray_pointee
, target
);
551 conf (cray_pointee
, intrinsic
);
552 conf (cray_pointee
, pointer
);
553 conf (cray_pointee
, entry
);
554 conf (cray_pointee
, in_common
);
555 conf (cray_pointee
, in_equivalence
);
556 conf (cray_pointee
, threadprivate
);
557 conf (cray_pointee
, omp_declare_target
);
560 conf (data
, function
);
562 conf (data
, allocatable
);
564 conf (value
, pointer
)
565 conf (value
, allocatable
)
566 conf (value
, subroutine
)
567 conf (value
, function
)
568 conf (value
, volatile_
)
569 conf (value
, dimension
)
570 conf (value
, codimension
)
571 conf (value
, external
)
573 conf (codimension
, result
)
576 && (attr
->intent
== INTENT_OUT
|| attr
->intent
== INTENT_INOUT
))
579 a2
= attr
->intent
== INTENT_OUT
? intent_out
: intent_inout
;
583 conf (is_protected
, intrinsic
)
584 conf (is_protected
, in_common
)
586 conf (asynchronous
, intrinsic
)
587 conf (asynchronous
, external
)
589 conf (volatile_
, intrinsic
)
590 conf (volatile_
, external
)
592 if (attr
->volatile_
&& attr
->intent
== INTENT_IN
)
599 conf (procedure
, allocatable
)
600 conf (procedure
, dimension
)
601 conf (procedure
, codimension
)
602 conf (procedure
, intrinsic
)
603 conf (procedure
, target
)
604 conf (procedure
, value
)
605 conf (procedure
, volatile_
)
606 conf (procedure
, asynchronous
)
607 conf (procedure
, entry
)
609 conf (proc_pointer
, abstract
)
611 conf (entry
, omp_declare_target
)
613 a1
= gfc_code2string (flavors
, attr
->flavor
);
615 if (attr
->in_namelist
616 && attr
->flavor
!= FL_VARIABLE
617 && attr
->flavor
!= FL_PROCEDURE
618 && attr
->flavor
!= FL_UNKNOWN
)
624 switch (attr
->flavor
)
634 conf2 (asynchronous
);
637 conf2 (is_protected
);
647 conf2 (threadprivate
);
648 conf2 (omp_declare_target
);
650 if (attr
->access
== ACCESS_PUBLIC
|| attr
->access
== ACCESS_PRIVATE
)
652 a2
= attr
->access
== ACCESS_PUBLIC
? publik
: privat
;
653 gfc_error ("%s attribute applied to %s %s at %L", a2
, a1
,
660 gfc_error_now ("BIND(C) applied to %s %s at %L", a1
, name
, where
);
674 /* Conflicts with INTENT, SAVE and RESULT will be checked
675 at resolution stage, see "resolve_fl_procedure". */
677 if (attr
->subroutine
)
683 conf2 (asynchronous
);
688 if (!attr
->proc_pointer
)
689 conf2 (threadprivate
);
692 if (!attr
->proc_pointer
)
697 case PROC_ST_FUNCTION
:
708 conf2 (threadprivate
);
728 conf2 (threadprivate
);
730 conf2 (omp_declare_target
);
732 if (attr
->intent
!= INTENT_UNKNOWN
)
749 conf2 (is_protected
);
755 conf2 (asynchronous
);
756 conf2 (threadprivate
);
772 gfc_error ("%s attribute conflicts with %s attribute at %L",
775 gfc_error ("%s attribute conflicts with %s attribute in %qs at %L",
776 a1
, a2
, name
, where
);
783 return gfc_notify_std (standard
, "%s attribute "
784 "with %s attribute at %L", a1
, a2
,
789 return gfc_notify_std (standard
, "%s attribute "
790 "with %s attribute in %qs at %L",
791 a1
, a2
, name
, where
);
800 /* Mark a symbol as referenced. */
803 gfc_set_sym_referenced (gfc_symbol
*sym
)
806 if (sym
->attr
.referenced
)
809 sym
->attr
.referenced
= 1;
811 /* Remember which order dummy variables are accessed in. */
813 sym
->dummy_order
= next_dummy_order
++;
817 /* Common subroutine called by attribute changing subroutines in order
818 to prevent them from changing a symbol that has been
819 use-associated. Returns zero if it is OK to change the symbol,
823 check_used (symbol_attribute
*attr
, const char *name
, locus
*where
)
826 if (attr
->use_assoc
== 0)
830 where
= &gfc_current_locus
;
833 gfc_error ("Cannot change attributes of USE-associated symbol at %L",
836 gfc_error ("Cannot change attributes of USE-associated symbol %s at %L",
843 /* Generate an error because of a duplicate attribute. */
846 duplicate_attr (const char *attr
, locus
*where
)
850 where
= &gfc_current_locus
;
852 gfc_error ("Duplicate %s attribute specified at %L", attr
, where
);
857 gfc_add_ext_attribute (symbol_attribute
*attr
, ext_attr_id_t ext_attr
,
858 locus
*where ATTRIBUTE_UNUSED
)
860 attr
->ext_attr
|= 1 << ext_attr
;
865 /* Called from decl.c (attr_decl1) to check attributes, when declared
869 gfc_add_attribute (symbol_attribute
*attr
, locus
*where
)
871 if (check_used (attr
, NULL
, where
))
874 return check_conflict (attr
, NULL
, where
);
879 gfc_add_allocatable (symbol_attribute
*attr
, locus
*where
)
882 if (check_used (attr
, NULL
, where
))
885 if (attr
->allocatable
)
887 duplicate_attr ("ALLOCATABLE", where
);
891 if (attr
->flavor
== FL_PROCEDURE
&& attr
->if_source
== IFSRC_IFBODY
892 && !gfc_find_state (COMP_INTERFACE
))
894 gfc_error ("ALLOCATABLE specified outside of INTERFACE body at %L",
899 attr
->allocatable
= 1;
900 return check_conflict (attr
, NULL
, where
);
905 gfc_add_codimension (symbol_attribute
*attr
, const char *name
, locus
*where
)
908 if (check_used (attr
, name
, where
))
911 if (attr
->codimension
)
913 duplicate_attr ("CODIMENSION", where
);
917 if (attr
->flavor
== FL_PROCEDURE
&& attr
->if_source
== IFSRC_IFBODY
918 && !gfc_find_state (COMP_INTERFACE
))
920 gfc_error ("CODIMENSION specified for %qs outside its INTERFACE body "
921 "at %L", name
, where
);
925 attr
->codimension
= 1;
926 return check_conflict (attr
, name
, where
);
931 gfc_add_dimension (symbol_attribute
*attr
, const char *name
, locus
*where
)
934 if (check_used (attr
, name
, where
))
939 duplicate_attr ("DIMENSION", where
);
943 if (attr
->flavor
== FL_PROCEDURE
&& attr
->if_source
== IFSRC_IFBODY
944 && !gfc_find_state (COMP_INTERFACE
))
946 gfc_error ("DIMENSION specified for %qs outside its INTERFACE body "
947 "at %L", name
, where
);
952 return check_conflict (attr
, name
, where
);
957 gfc_add_contiguous (symbol_attribute
*attr
, const char *name
, locus
*where
)
960 if (check_used (attr
, name
, where
))
963 attr
->contiguous
= 1;
964 return check_conflict (attr
, name
, where
);
969 gfc_add_external (symbol_attribute
*attr
, locus
*where
)
972 if (check_used (attr
, NULL
, where
))
977 duplicate_attr ("EXTERNAL", where
);
981 if (attr
->pointer
&& attr
->if_source
!= IFSRC_IFBODY
)
984 attr
->proc_pointer
= 1;
989 return check_conflict (attr
, NULL
, where
);
994 gfc_add_intrinsic (symbol_attribute
*attr
, locus
*where
)
997 if (check_used (attr
, NULL
, where
))
1000 if (attr
->intrinsic
)
1002 duplicate_attr ("INTRINSIC", where
);
1006 attr
->intrinsic
= 1;
1008 return check_conflict (attr
, NULL
, where
);
1013 gfc_add_optional (symbol_attribute
*attr
, locus
*where
)
1016 if (check_used (attr
, NULL
, where
))
1021 duplicate_attr ("OPTIONAL", where
);
1026 return check_conflict (attr
, NULL
, where
);
1031 gfc_add_pointer (symbol_attribute
*attr
, locus
*where
)
1034 if (check_used (attr
, NULL
, where
))
1037 if (attr
->pointer
&& !(attr
->if_source
== IFSRC_IFBODY
1038 && !gfc_find_state (COMP_INTERFACE
)))
1040 duplicate_attr ("POINTER", where
);
1044 if (attr
->procedure
|| (attr
->external
&& attr
->if_source
!= IFSRC_IFBODY
)
1045 || (attr
->if_source
== IFSRC_IFBODY
1046 && !gfc_find_state (COMP_INTERFACE
)))
1047 attr
->proc_pointer
= 1;
1051 return check_conflict (attr
, NULL
, where
);
1056 gfc_add_cray_pointer (symbol_attribute
*attr
, locus
*where
)
1059 if (check_used (attr
, NULL
, where
))
1062 attr
->cray_pointer
= 1;
1063 return check_conflict (attr
, NULL
, where
);
1068 gfc_add_cray_pointee (symbol_attribute
*attr
, locus
*where
)
1071 if (check_used (attr
, NULL
, where
))
1074 if (attr
->cray_pointee
)
1076 gfc_error ("Cray Pointee at %L appears in multiple pointer()"
1077 " statements", where
);
1081 attr
->cray_pointee
= 1;
1082 return check_conflict (attr
, NULL
, where
);
1087 gfc_add_protected (symbol_attribute
*attr
, const char *name
, locus
*where
)
1089 if (check_used (attr
, name
, where
))
1092 if (attr
->is_protected
)
1094 if (!gfc_notify_std (GFC_STD_LEGACY
,
1095 "Duplicate PROTECTED attribute specified at %L",
1100 attr
->is_protected
= 1;
1101 return check_conflict (attr
, name
, where
);
1106 gfc_add_result (symbol_attribute
*attr
, const char *name
, locus
*where
)
1109 if (check_used (attr
, name
, where
))
1113 return check_conflict (attr
, name
, where
);
1118 gfc_add_save (symbol_attribute
*attr
, save_state s
, const char *name
,
1122 if (check_used (attr
, name
, where
))
1125 if (s
== SAVE_EXPLICIT
&& gfc_pure (NULL
))
1128 ("SAVE attribute at %L cannot be specified in a PURE procedure",
1133 if (s
== SAVE_EXPLICIT
)
1134 gfc_unset_implicit_pure (NULL
);
1136 if (s
== SAVE_EXPLICIT
&& attr
->save
== SAVE_EXPLICIT
)
1138 if (!gfc_notify_std (GFC_STD_LEGACY
,
1139 "Duplicate SAVE attribute specified at %L",
1145 return check_conflict (attr
, name
, where
);
1150 gfc_add_value (symbol_attribute
*attr
, const char *name
, locus
*where
)
1153 if (check_used (attr
, name
, where
))
1158 if (!gfc_notify_std (GFC_STD_LEGACY
,
1159 "Duplicate VALUE attribute specified at %L",
1165 return check_conflict (attr
, name
, where
);
1170 gfc_add_volatile (symbol_attribute
*attr
, const char *name
, locus
*where
)
1172 /* No check_used needed as 11.2.1 of the F2003 standard allows
1173 that the local identifier made accessible by a use statement can be
1174 given a VOLATILE attribute - unless it is a coarray (F2008, C560). */
1176 if (attr
->volatile_
&& attr
->volatile_ns
== gfc_current_ns
)
1177 if (!gfc_notify_std (GFC_STD_LEGACY
,
1178 "Duplicate VOLATILE attribute specified at %L",
1182 attr
->volatile_
= 1;
1183 attr
->volatile_ns
= gfc_current_ns
;
1184 return check_conflict (attr
, name
, where
);
1189 gfc_add_asynchronous (symbol_attribute
*attr
, const char *name
, locus
*where
)
1191 /* No check_used needed as 11.2.1 of the F2003 standard allows
1192 that the local identifier made accessible by a use statement can be
1193 given a ASYNCHRONOUS attribute. */
1195 if (attr
->asynchronous
&& attr
->asynchronous_ns
== gfc_current_ns
)
1196 if (!gfc_notify_std (GFC_STD_LEGACY
,
1197 "Duplicate ASYNCHRONOUS attribute specified at %L",
1201 attr
->asynchronous
= 1;
1202 attr
->asynchronous_ns
= gfc_current_ns
;
1203 return check_conflict (attr
, name
, where
);
1208 gfc_add_threadprivate (symbol_attribute
*attr
, const char *name
, locus
*where
)
1211 if (check_used (attr
, name
, where
))
1214 if (attr
->threadprivate
)
1216 duplicate_attr ("THREADPRIVATE", where
);
1220 attr
->threadprivate
= 1;
1221 return check_conflict (attr
, name
, where
);
1226 gfc_add_omp_declare_target (symbol_attribute
*attr
, const char *name
,
1230 if (check_used (attr
, name
, where
))
1233 if (attr
->omp_declare_target
)
1236 attr
->omp_declare_target
= 1;
1237 return check_conflict (attr
, name
, where
);
1242 gfc_add_target (symbol_attribute
*attr
, locus
*where
)
1245 if (check_used (attr
, NULL
, where
))
1250 duplicate_attr ("TARGET", where
);
1255 return check_conflict (attr
, NULL
, where
);
1260 gfc_add_dummy (symbol_attribute
*attr
, const char *name
, locus
*where
)
1263 if (check_used (attr
, name
, where
))
1266 /* Duplicate dummy arguments are allowed due to ENTRY statements. */
1268 return check_conflict (attr
, name
, where
);
1273 gfc_add_in_common (symbol_attribute
*attr
, const char *name
, locus
*where
)
1276 if (check_used (attr
, name
, where
))
1279 /* Duplicate attribute already checked for. */
1280 attr
->in_common
= 1;
1281 return check_conflict (attr
, name
, where
);
1286 gfc_add_in_equivalence (symbol_attribute
*attr
, const char *name
, locus
*where
)
1289 /* Duplicate attribute already checked for. */
1290 attr
->in_equivalence
= 1;
1291 if (!check_conflict (attr
, name
, where
))
1294 if (attr
->flavor
== FL_VARIABLE
)
1297 return gfc_add_flavor (attr
, FL_VARIABLE
, name
, where
);
1302 gfc_add_data (symbol_attribute
*attr
, const char *name
, locus
*where
)
1305 if (check_used (attr
, name
, where
))
1309 return check_conflict (attr
, name
, where
);
1314 gfc_add_in_namelist (symbol_attribute
*attr
, const char *name
, locus
*where
)
1317 attr
->in_namelist
= 1;
1318 return check_conflict (attr
, name
, where
);
1323 gfc_add_sequence (symbol_attribute
*attr
, const char *name
, locus
*where
)
1326 if (check_used (attr
, name
, where
))
1330 return check_conflict (attr
, name
, where
);
1335 gfc_add_elemental (symbol_attribute
*attr
, locus
*where
)
1338 if (check_used (attr
, NULL
, where
))
1341 if (attr
->elemental
)
1343 duplicate_attr ("ELEMENTAL", where
);
1347 attr
->elemental
= 1;
1348 return check_conflict (attr
, NULL
, where
);
1353 gfc_add_pure (symbol_attribute
*attr
, locus
*where
)
1356 if (check_used (attr
, NULL
, where
))
1361 duplicate_attr ("PURE", where
);
1366 return check_conflict (attr
, NULL
, where
);
1371 gfc_add_recursive (symbol_attribute
*attr
, locus
*where
)
1374 if (check_used (attr
, NULL
, where
))
1377 if (attr
->recursive
)
1379 duplicate_attr ("RECURSIVE", where
);
1383 attr
->recursive
= 1;
1384 return check_conflict (attr
, NULL
, where
);
1389 gfc_add_entry (symbol_attribute
*attr
, const char *name
, locus
*where
)
1392 if (check_used (attr
, name
, where
))
1397 duplicate_attr ("ENTRY", where
);
1402 return check_conflict (attr
, name
, where
);
1407 gfc_add_function (symbol_attribute
*attr
, const char *name
, locus
*where
)
1410 if (attr
->flavor
!= FL_PROCEDURE
1411 && !gfc_add_flavor (attr
, FL_PROCEDURE
, name
, where
))
1415 return check_conflict (attr
, name
, where
);
1420 gfc_add_subroutine (symbol_attribute
*attr
, const char *name
, locus
*where
)
1423 if (attr
->flavor
!= FL_PROCEDURE
1424 && !gfc_add_flavor (attr
, FL_PROCEDURE
, name
, where
))
1427 attr
->subroutine
= 1;
1428 return check_conflict (attr
, name
, where
);
1433 gfc_add_generic (symbol_attribute
*attr
, const char *name
, locus
*where
)
1436 if (attr
->flavor
!= FL_PROCEDURE
1437 && !gfc_add_flavor (attr
, FL_PROCEDURE
, name
, where
))
1441 return check_conflict (attr
, name
, where
);
1446 gfc_add_proc (symbol_attribute
*attr
, const char *name
, locus
*where
)
1449 if (check_used (attr
, NULL
, where
))
1452 if (attr
->flavor
!= FL_PROCEDURE
1453 && !gfc_add_flavor (attr
, FL_PROCEDURE
, name
, where
))
1456 if (attr
->procedure
)
1458 duplicate_attr ("PROCEDURE", where
);
1462 attr
->procedure
= 1;
1464 return check_conflict (attr
, NULL
, where
);
1469 gfc_add_abstract (symbol_attribute
* attr
, locus
* where
)
1473 duplicate_attr ("ABSTRACT", where
);
1479 return check_conflict (attr
, NULL
, where
);
1483 /* Flavors are special because some flavors are not what Fortran
1484 considers attributes and can be reaffirmed multiple times. */
1487 gfc_add_flavor (symbol_attribute
*attr
, sym_flavor f
, const char *name
,
1491 if ((f
== FL_PROGRAM
|| f
== FL_BLOCK_DATA
|| f
== FL_MODULE
1492 || f
== FL_PARAMETER
|| f
== FL_LABEL
|| f
== FL_DERIVED
1493 || f
== FL_NAMELIST
) && check_used (attr
, name
, where
))
1496 if (attr
->flavor
== f
&& f
== FL_VARIABLE
)
1499 if (attr
->flavor
!= FL_UNKNOWN
)
1502 where
= &gfc_current_locus
;
1505 gfc_error ("%s attribute of %qs conflicts with %s attribute at %L",
1506 gfc_code2string (flavors
, attr
->flavor
), name
,
1507 gfc_code2string (flavors
, f
), where
);
1509 gfc_error ("%s attribute conflicts with %s attribute at %L",
1510 gfc_code2string (flavors
, attr
->flavor
),
1511 gfc_code2string (flavors
, f
), where
);
1518 return check_conflict (attr
, name
, where
);
1523 gfc_add_procedure (symbol_attribute
*attr
, procedure_type t
,
1524 const char *name
, locus
*where
)
1527 if (check_used (attr
, name
, where
))
1530 if (attr
->flavor
!= FL_PROCEDURE
1531 && !gfc_add_flavor (attr
, FL_PROCEDURE
, name
, where
))
1535 where
= &gfc_current_locus
;
1537 if (attr
->proc
!= PROC_UNKNOWN
)
1539 gfc_error ("%s procedure at %L is already declared as %s procedure",
1540 gfc_code2string (procedures
, t
), where
,
1541 gfc_code2string (procedures
, attr
->proc
));
1548 /* Statement functions are always scalar and functions. */
1549 if (t
== PROC_ST_FUNCTION
1550 && ((!attr
->function
&& !gfc_add_function (attr
, name
, where
))
1551 || attr
->dimension
))
1554 return check_conflict (attr
, name
, where
);
1559 gfc_add_intent (symbol_attribute
*attr
, sym_intent intent
, locus
*where
)
1562 if (check_used (attr
, NULL
, where
))
1565 if (attr
->intent
== INTENT_UNKNOWN
)
1567 attr
->intent
= intent
;
1568 return check_conflict (attr
, NULL
, where
);
1572 where
= &gfc_current_locus
;
1574 gfc_error ("INTENT (%s) conflicts with INTENT(%s) at %L",
1575 gfc_intent_string (attr
->intent
),
1576 gfc_intent_string (intent
), where
);
1582 /* No checks for use-association in public and private statements. */
1585 gfc_add_access (symbol_attribute
*attr
, gfc_access access
,
1586 const char *name
, locus
*where
)
1589 if (attr
->access
== ACCESS_UNKNOWN
1590 || (attr
->use_assoc
&& attr
->access
!= ACCESS_PRIVATE
))
1592 attr
->access
= access
;
1593 return check_conflict (attr
, name
, where
);
1597 where
= &gfc_current_locus
;
1598 gfc_error ("ACCESS specification at %L was already specified", where
);
1604 /* Set the is_bind_c field for the given symbol_attribute. */
1607 gfc_add_is_bind_c (symbol_attribute
*attr
, const char *name
, locus
*where
,
1608 int is_proc_lang_bind_spec
)
1611 if (is_proc_lang_bind_spec
== 0 && attr
->flavor
== FL_PROCEDURE
)
1612 gfc_error_now ("BIND(C) attribute at %L can only be used for "
1613 "variables or common blocks", where
);
1614 else if (attr
->is_bind_c
)
1615 gfc_error_now ("Duplicate BIND attribute specified at %L", where
);
1617 attr
->is_bind_c
= 1;
1620 where
= &gfc_current_locus
;
1622 if (!gfc_notify_std (GFC_STD_F2003
, "BIND(C) at %L", where
))
1625 return check_conflict (attr
, name
, where
);
1629 /* Set the extension field for the given symbol_attribute. */
1632 gfc_add_extension (symbol_attribute
*attr
, locus
*where
)
1635 where
= &gfc_current_locus
;
1637 if (attr
->extension
)
1638 gfc_error_now ("Duplicate EXTENDS attribute specified at %L", where
);
1640 attr
->extension
= 1;
1642 if (!gfc_notify_std (GFC_STD_F2003
, "EXTENDS at %L", where
))
1650 gfc_add_explicit_interface (gfc_symbol
*sym
, ifsrc source
,
1651 gfc_formal_arglist
* formal
, locus
*where
)
1654 if (check_used (&sym
->attr
, sym
->name
, where
))
1658 where
= &gfc_current_locus
;
1660 if (sym
->attr
.if_source
!= IFSRC_UNKNOWN
1661 && sym
->attr
.if_source
!= IFSRC_DECL
)
1663 gfc_error ("Symbol %qs at %L already has an explicit interface",
1668 if (source
== IFSRC_IFBODY
&& (sym
->attr
.dimension
|| sym
->attr
.allocatable
))
1670 gfc_error ("%qs at %L has attributes specified outside its INTERFACE "
1671 "body", sym
->name
, where
);
1675 sym
->formal
= formal
;
1676 sym
->attr
.if_source
= source
;
1682 /* Add a type to a symbol. */
1685 gfc_add_type (gfc_symbol
*sym
, gfc_typespec
*ts
, locus
*where
)
1691 where
= &gfc_current_locus
;
1694 type
= sym
->result
->ts
.type
;
1696 type
= sym
->ts
.type
;
1698 if (sym
->attr
.result
&& type
== BT_UNKNOWN
&& sym
->ns
->proc_name
)
1699 type
= sym
->ns
->proc_name
->ts
.type
;
1701 if (type
!= BT_UNKNOWN
&& !(sym
->attr
.function
&& sym
->attr
.implicit_type
))
1703 if (sym
->attr
.use_assoc
)
1704 gfc_error_1 ("Symbol '%s' at %L conflicts with symbol from module '%s', "
1705 "use-associated at %L", sym
->name
, where
, sym
->module
,
1708 gfc_error ("Symbol %qs at %L already has basic type of %s", sym
->name
,
1709 where
, gfc_basic_typename (type
));
1713 if (sym
->attr
.procedure
&& sym
->ts
.interface
)
1715 gfc_error ("Procedure %qs at %L may not have basic type of %s",
1716 sym
->name
, where
, gfc_basic_typename (ts
->type
));
1720 flavor
= sym
->attr
.flavor
;
1722 if (flavor
== FL_PROGRAM
|| flavor
== FL_BLOCK_DATA
|| flavor
== FL_MODULE
1723 || flavor
== FL_LABEL
1724 || (flavor
== FL_PROCEDURE
&& sym
->attr
.subroutine
)
1725 || flavor
== FL_DERIVED
|| flavor
== FL_NAMELIST
)
1727 gfc_error ("Symbol %qs at %L cannot have a type", sym
->name
, where
);
1736 /* Clears all attributes. */
1739 gfc_clear_attr (symbol_attribute
*attr
)
1741 memset (attr
, 0, sizeof (symbol_attribute
));
1745 /* Check for missing attributes in the new symbol. Currently does
1746 nothing, but it's not clear that it is unnecessary yet. */
1749 gfc_missing_attr (symbol_attribute
*attr ATTRIBUTE_UNUSED
,
1750 locus
*where ATTRIBUTE_UNUSED
)
1757 /* Copy an attribute to a symbol attribute, bit by bit. Some
1758 attributes have a lot of side-effects but cannot be present given
1759 where we are called from, so we ignore some bits. */
1762 gfc_copy_attr (symbol_attribute
*dest
, symbol_attribute
*src
, locus
*where
)
1764 int is_proc_lang_bind_spec
;
1766 /* In line with the other attributes, we only add bits but do not remove
1767 them; cf. also PR 41034. */
1768 dest
->ext_attr
|= src
->ext_attr
;
1770 if (src
->allocatable
&& !gfc_add_allocatable (dest
, where
))
1773 if (src
->dimension
&& !gfc_add_dimension (dest
, NULL
, where
))
1775 if (src
->codimension
&& !gfc_add_codimension (dest
, NULL
, where
))
1777 if (src
->contiguous
&& !gfc_add_contiguous (dest
, NULL
, where
))
1779 if (src
->optional
&& !gfc_add_optional (dest
, where
))
1781 if (src
->pointer
&& !gfc_add_pointer (dest
, where
))
1783 if (src
->is_protected
&& !gfc_add_protected (dest
, NULL
, where
))
1785 if (src
->save
&& !gfc_add_save (dest
, src
->save
, NULL
, where
))
1787 if (src
->value
&& !gfc_add_value (dest
, NULL
, where
))
1789 if (src
->volatile_
&& !gfc_add_volatile (dest
, NULL
, where
))
1791 if (src
->asynchronous
&& !gfc_add_asynchronous (dest
, NULL
, where
))
1793 if (src
->threadprivate
1794 && !gfc_add_threadprivate (dest
, NULL
, where
))
1796 if (src
->omp_declare_target
1797 && !gfc_add_omp_declare_target (dest
, NULL
, where
))
1799 if (src
->target
&& !gfc_add_target (dest
, where
))
1801 if (src
->dummy
&& !gfc_add_dummy (dest
, NULL
, where
))
1803 if (src
->result
&& !gfc_add_result (dest
, NULL
, where
))
1808 if (src
->in_namelist
&& !gfc_add_in_namelist (dest
, NULL
, where
))
1811 if (src
->in_common
&& !gfc_add_in_common (dest
, NULL
, where
))
1814 if (src
->generic
&& !gfc_add_generic (dest
, NULL
, where
))
1816 if (src
->function
&& !gfc_add_function (dest
, NULL
, where
))
1818 if (src
->subroutine
&& !gfc_add_subroutine (dest
, NULL
, where
))
1821 if (src
->sequence
&& !gfc_add_sequence (dest
, NULL
, where
))
1823 if (src
->elemental
&& !gfc_add_elemental (dest
, where
))
1825 if (src
->pure
&& !gfc_add_pure (dest
, where
))
1827 if (src
->recursive
&& !gfc_add_recursive (dest
, where
))
1830 if (src
->flavor
!= FL_UNKNOWN
1831 && !gfc_add_flavor (dest
, src
->flavor
, NULL
, where
))
1834 if (src
->intent
!= INTENT_UNKNOWN
1835 && !gfc_add_intent (dest
, src
->intent
, where
))
1838 if (src
->access
!= ACCESS_UNKNOWN
1839 && !gfc_add_access (dest
, src
->access
, NULL
, where
))
1842 if (!gfc_missing_attr (dest
, where
))
1845 if (src
->cray_pointer
&& !gfc_add_cray_pointer (dest
, where
))
1847 if (src
->cray_pointee
&& !gfc_add_cray_pointee (dest
, where
))
1850 is_proc_lang_bind_spec
= (src
->flavor
== FL_PROCEDURE
? 1 : 0);
1852 && !gfc_add_is_bind_c (dest
, NULL
, where
, is_proc_lang_bind_spec
))
1855 if (src
->is_c_interop
)
1856 dest
->is_c_interop
= 1;
1860 if (src
->external
&& !gfc_add_external (dest
, where
))
1862 if (src
->intrinsic
&& !gfc_add_intrinsic (dest
, where
))
1864 if (src
->proc_pointer
)
1865 dest
->proc_pointer
= 1;
1874 /************** Component name management ************/
1876 /* Component names of a derived type form their own little namespaces
1877 that are separate from all other spaces. The space is composed of
1878 a singly linked list of gfc_component structures whose head is
1879 located in the parent symbol. */
1882 /* Add a component name to a symbol. The call fails if the name is
1883 already present. On success, the component pointer is modified to
1884 point to the additional component structure. */
1887 gfc_add_component (gfc_symbol
*sym
, const char *name
,
1888 gfc_component
**component
)
1890 gfc_component
*p
, *tail
;
1894 for (p
= sym
->components
; p
; p
= p
->next
)
1896 if (strcmp (p
->name
, name
) == 0)
1898 gfc_error_1 ("Component '%s' at %C already declared at %L",
1906 if (sym
->attr
.extension
1907 && gfc_find_component (sym
->components
->ts
.u
.derived
, name
, true, true))
1909 gfc_error_1 ("Component '%s' at %C already in the parent type "
1910 "at %L", name
, &sym
->components
->ts
.u
.derived
->declared_at
);
1914 /* Allocate a new component. */
1915 p
= gfc_get_component ();
1918 sym
->components
= p
;
1922 p
->name
= gfc_get_string (name
);
1923 p
->loc
= gfc_current_locus
;
1924 p
->ts
.type
= BT_UNKNOWN
;
1931 /* Recursive function to switch derived types of all symbol in a
1935 switch_types (gfc_symtree
*st
, gfc_symbol
*from
, gfc_symbol
*to
)
1943 if (sym
->ts
.type
== BT_DERIVED
&& sym
->ts
.u
.derived
== from
)
1944 sym
->ts
.u
.derived
= to
;
1946 switch_types (st
->left
, from
, to
);
1947 switch_types (st
->right
, from
, to
);
1951 /* This subroutine is called when a derived type is used in order to
1952 make the final determination about which version to use. The
1953 standard requires that a type be defined before it is 'used', but
1954 such types can appear in IMPLICIT statements before the actual
1955 definition. 'Using' in this context means declaring a variable to
1956 be that type or using the type constructor.
1958 If a type is used and the components haven't been defined, then we
1959 have to have a derived type in a parent unit. We find the node in
1960 the other namespace and point the symtree node in this namespace to
1961 that node. Further reference to this name point to the correct
1962 node. If we can't find the node in a parent namespace, then we have
1965 This subroutine takes a pointer to a symbol node and returns a
1966 pointer to the translated node or NULL for an error. Usually there
1967 is no translation and we return the node we were passed. */
1970 gfc_use_derived (gfc_symbol
*sym
)
1980 if (sym
->attr
.unlimited_polymorphic
)
1983 if (sym
->attr
.generic
)
1984 sym
= gfc_find_dt_in_generic (sym
);
1986 if (sym
->components
!= NULL
|| sym
->attr
.zero_comp
)
1987 return sym
; /* Already defined. */
1989 if (sym
->ns
->parent
== NULL
)
1992 if (gfc_find_symbol (sym
->name
, sym
->ns
->parent
, 1, &s
))
1994 gfc_error ("Symbol %qs at %C is ambiguous", sym
->name
);
1998 if (s
== NULL
|| s
->attr
.flavor
!= FL_DERIVED
)
2001 /* Get rid of symbol sym, translating all references to s. */
2002 for (i
= 0; i
< GFC_LETTERS
; i
++)
2004 t
= &sym
->ns
->default_type
[i
];
2005 if (t
->u
.derived
== sym
)
2009 st
= gfc_find_symtree (sym
->ns
->sym_root
, sym
->name
);
2014 /* Unlink from list of modified symbols. */
2015 gfc_commit_symbol (sym
);
2017 switch_types (sym
->ns
->sym_root
, sym
, s
);
2019 /* TODO: Also have to replace sym -> s in other lists like
2020 namelists, common lists and interface lists. */
2021 gfc_free_symbol (sym
);
2026 gfc_error ("Derived type %qs at %C is being used before it is defined",
2032 /* Given a derived type node and a component name, try to locate the
2033 component structure. Returns the NULL pointer if the component is
2034 not found or the components are private. If noaccess is set, no access
2038 gfc_find_component (gfc_symbol
*sym
, const char *name
,
2039 bool noaccess
, bool silent
)
2043 if (name
== NULL
|| sym
== NULL
)
2046 sym
= gfc_use_derived (sym
);
2051 for (p
= sym
->components
; p
; p
= p
->next
)
2052 if (strcmp (p
->name
, name
) == 0)
2055 if (p
&& sym
->attr
.use_assoc
&& !noaccess
)
2057 bool is_parent_comp
= sym
->attr
.extension
&& (p
== sym
->components
);
2058 if (p
->attr
.access
== ACCESS_PRIVATE
||
2059 (p
->attr
.access
!= ACCESS_PUBLIC
2060 && sym
->component_access
== ACCESS_PRIVATE
2061 && !is_parent_comp
))
2064 gfc_error ("Component %qs at %C is a PRIVATE component of %qs",
2071 && sym
->attr
.extension
2072 && sym
->components
->ts
.type
== BT_DERIVED
)
2074 p
= gfc_find_component (sym
->components
->ts
.u
.derived
, name
,
2076 /* Do not overwrite the error. */
2081 if (p
== NULL
&& !silent
)
2082 gfc_error ("%qs at %C is not a member of the %qs structure",
2089 /* Given a symbol, free all of the component structures and everything
2093 free_components (gfc_component
*p
)
2101 gfc_free_array_spec (p
->as
);
2102 gfc_free_expr (p
->initializer
);
2110 /******************** Statement label management ********************/
2112 /* Comparison function for statement labels, used for managing the
2116 compare_st_labels (void *a1
, void *b1
)
2118 int a
= ((gfc_st_label
*) a1
)->value
;
2119 int b
= ((gfc_st_label
*) b1
)->value
;
2125 /* Free a single gfc_st_label structure, making sure the tree is not
2126 messed up. This function is called only when some parse error
2130 gfc_free_st_label (gfc_st_label
*label
)
2136 gfc_delete_bbt (&gfc_current_ns
->st_labels
, label
, compare_st_labels
);
2138 if (label
->format
!= NULL
)
2139 gfc_free_expr (label
->format
);
2145 /* Free a whole tree of gfc_st_label structures. */
2148 free_st_labels (gfc_st_label
*label
)
2154 free_st_labels (label
->left
);
2155 free_st_labels (label
->right
);
2157 if (label
->format
!= NULL
)
2158 gfc_free_expr (label
->format
);
2163 /* Given a label number, search for and return a pointer to the label
2164 structure, creating it if it does not exist. */
2167 gfc_get_st_label (int labelno
)
2172 if (gfc_current_state () == COMP_DERIVED
)
2173 ns
= gfc_current_block ()->f2k_derived
;
2176 /* Find the namespace of the scoping unit:
2177 If we're in a BLOCK construct, jump to the parent namespace. */
2178 ns
= gfc_current_ns
;
2179 while (ns
->proc_name
&& ns
->proc_name
->attr
.flavor
== FL_LABEL
)
2183 /* First see if the label is already in this namespace. */
2187 if (lp
->value
== labelno
)
2190 if (lp
->value
< labelno
)
2196 lp
= XCNEW (gfc_st_label
);
2198 lp
->value
= labelno
;
2199 lp
->defined
= ST_LABEL_UNKNOWN
;
2200 lp
->referenced
= ST_LABEL_UNKNOWN
;
2202 gfc_insert_bbt (&ns
->st_labels
, lp
, compare_st_labels
);
2208 /* Called when a statement with a statement label is about to be
2209 accepted. We add the label to the list of the current namespace,
2210 making sure it hasn't been defined previously and referenced
2214 gfc_define_st_label (gfc_st_label
*lp
, gfc_sl_type type
, locus
*label_locus
)
2218 labelno
= lp
->value
;
2220 if (lp
->defined
!= ST_LABEL_UNKNOWN
)
2221 gfc_error_1 ("Duplicate statement label %d at %L and %L", labelno
,
2222 &lp
->where
, label_locus
);
2225 lp
->where
= *label_locus
;
2229 case ST_LABEL_FORMAT
:
2230 if (lp
->referenced
== ST_LABEL_TARGET
2231 || lp
->referenced
== ST_LABEL_DO_TARGET
)
2232 gfc_error ("Label %d at %C already referenced as branch target",
2235 lp
->defined
= ST_LABEL_FORMAT
;
2239 case ST_LABEL_TARGET
:
2240 case ST_LABEL_DO_TARGET
:
2241 if (lp
->referenced
== ST_LABEL_FORMAT
)
2242 gfc_error ("Label %d at %C already referenced as a format label",
2247 if (lp
->referenced
== ST_LABEL_DO_TARGET
&& type
!= ST_LABEL_DO_TARGET
2248 && !gfc_notify_std (GFC_STD_F95_OBS
, "DO termination statement "
2249 "which is not END DO or CONTINUE with "
2250 "label %d at %C", labelno
))
2255 lp
->defined
= ST_LABEL_BAD_TARGET
;
2256 lp
->referenced
= ST_LABEL_BAD_TARGET
;
2262 /* Reference a label. Given a label and its type, see if that
2263 reference is consistent with what is known about that label,
2264 updating the unknown state. Returns false if something goes
2268 gfc_reference_st_label (gfc_st_label
*lp
, gfc_sl_type type
)
2270 gfc_sl_type label_type
;
2277 labelno
= lp
->value
;
2279 if (lp
->defined
!= ST_LABEL_UNKNOWN
)
2280 label_type
= lp
->defined
;
2283 label_type
= lp
->referenced
;
2284 lp
->where
= gfc_current_locus
;
2287 if (label_type
== ST_LABEL_FORMAT
2288 && (type
== ST_LABEL_TARGET
|| type
== ST_LABEL_DO_TARGET
))
2290 gfc_error ("Label %d at %C previously used as a FORMAT label", labelno
);
2295 if ((label_type
== ST_LABEL_TARGET
|| label_type
== ST_LABEL_DO_TARGET
2296 || label_type
== ST_LABEL_BAD_TARGET
)
2297 && type
== ST_LABEL_FORMAT
)
2299 gfc_error ("Label %d at %C previously used as branch target", labelno
);
2304 if (lp
->referenced
== ST_LABEL_DO_TARGET
&& type
== ST_LABEL_DO_TARGET
2305 && !gfc_notify_std (GFC_STD_F95_OBS
, "Shared DO termination label %d "
2309 if (lp
->referenced
!= ST_LABEL_DO_TARGET
)
2310 lp
->referenced
= type
;
2318 /************** Symbol table management subroutines ****************/
2320 /* Basic details: Fortran 95 requires a potentially unlimited number
2321 of distinct namespaces when compiling a program unit. This case
2322 occurs during a compilation of internal subprograms because all of
2323 the internal subprograms must be read before we can start
2324 generating code for the host.
2326 Given the tricky nature of the Fortran grammar, we must be able to
2327 undo changes made to a symbol table if the current interpretation
2328 of a statement is found to be incorrect. Whenever a symbol is
2329 looked up, we make a copy of it and link to it. All of these
2330 symbols are kept in a vector so that we can commit or
2331 undo the changes at a later time.
2333 A symtree may point to a symbol node outside of its namespace. In
2334 this case, that symbol has been used as a host associated variable
2335 at some previous time. */
2337 /* Allocate a new namespace structure. Copies the implicit types from
2338 PARENT if PARENT_TYPES is set. */
2341 gfc_get_namespace (gfc_namespace
*parent
, int parent_types
)
2348 ns
= XCNEW (gfc_namespace
);
2349 ns
->sym_root
= NULL
;
2350 ns
->uop_root
= NULL
;
2351 ns
->tb_sym_root
= NULL
;
2352 ns
->finalizers
= NULL
;
2353 ns
->default_access
= ACCESS_UNKNOWN
;
2354 ns
->parent
= parent
;
2356 for (in
= GFC_INTRINSIC_BEGIN
; in
!= GFC_INTRINSIC_END
; in
++)
2358 ns
->operator_access
[in
] = ACCESS_UNKNOWN
;
2359 ns
->tb_op
[in
] = NULL
;
2362 /* Initialize default implicit types. */
2363 for (i
= 'a'; i
<= 'z'; i
++)
2365 ns
->set_flag
[i
- 'a'] = 0;
2366 ts
= &ns
->default_type
[i
- 'a'];
2368 if (parent_types
&& ns
->parent
!= NULL
)
2370 /* Copy parent settings. */
2371 *ts
= ns
->parent
->default_type
[i
- 'a'];
2375 if (flag_implicit_none
!= 0)
2381 if ('i' <= i
&& i
<= 'n')
2383 ts
->type
= BT_INTEGER
;
2384 ts
->kind
= gfc_default_integer_kind
;
2389 ts
->kind
= gfc_default_real_kind
;
2393 if (parent_types
&& ns
->parent
!= NULL
)
2394 ns
->has_implicit_none_export
= ns
->parent
->has_implicit_none_export
;
2402 /* Comparison function for symtree nodes. */
2405 compare_symtree (void *_st1
, void *_st2
)
2407 gfc_symtree
*st1
, *st2
;
2409 st1
= (gfc_symtree
*) _st1
;
2410 st2
= (gfc_symtree
*) _st2
;
2412 return strcmp (st1
->name
, st2
->name
);
2416 /* Allocate a new symtree node and associate it with the new symbol. */
2419 gfc_new_symtree (gfc_symtree
**root
, const char *name
)
2423 st
= XCNEW (gfc_symtree
);
2424 st
->name
= gfc_get_string (name
);
2426 gfc_insert_bbt (root
, st
, compare_symtree
);
2431 /* Delete a symbol from the tree. Does not free the symbol itself! */
2434 gfc_delete_symtree (gfc_symtree
**root
, const char *name
)
2436 gfc_symtree st
, *st0
;
2438 st0
= gfc_find_symtree (*root
, name
);
2440 st
.name
= gfc_get_string (name
);
2441 gfc_delete_bbt (root
, &st
, compare_symtree
);
2447 /* Given a root symtree node and a name, try to find the symbol within
2448 the namespace. Returns NULL if the symbol is not found. */
2451 gfc_find_symtree (gfc_symtree
*st
, const char *name
)
2457 c
= strcmp (name
, st
->name
);
2461 st
= (c
< 0) ? st
->left
: st
->right
;
2468 /* Return a symtree node with a name that is guaranteed to be unique
2469 within the namespace and corresponds to an illegal fortran name. */
2472 gfc_get_unique_symtree (gfc_namespace
*ns
)
2474 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
2475 static int serial
= 0;
2477 sprintf (name
, "@%d", serial
++);
2478 return gfc_new_symtree (&ns
->sym_root
, name
);
2482 /* Given a name find a user operator node, creating it if it doesn't
2483 exist. These are much simpler than symbols because they can't be
2484 ambiguous with one another. */
2487 gfc_get_uop (const char *name
)
2491 gfc_namespace
*ns
= gfc_current_ns
;
2495 st
= gfc_find_symtree (ns
->uop_root
, name
);
2499 st
= gfc_new_symtree (&ns
->uop_root
, name
);
2501 uop
= st
->n
.uop
= XCNEW (gfc_user_op
);
2502 uop
->name
= gfc_get_string (name
);
2503 uop
->access
= ACCESS_UNKNOWN
;
2510 /* Given a name find the user operator node. Returns NULL if it does
2514 gfc_find_uop (const char *name
, gfc_namespace
*ns
)
2519 ns
= gfc_current_ns
;
2521 st
= gfc_find_symtree (ns
->uop_root
, name
);
2522 return (st
== NULL
) ? NULL
: st
->n
.uop
;
2526 /* Remove a gfc_symbol structure and everything it points to. */
2529 gfc_free_symbol (gfc_symbol
*sym
)
2535 gfc_free_array_spec (sym
->as
);
2537 free_components (sym
->components
);
2539 gfc_free_expr (sym
->value
);
2541 gfc_free_namelist (sym
->namelist
);
2543 if (sym
->ns
!= sym
->formal_ns
)
2544 gfc_free_namespace (sym
->formal_ns
);
2546 if (!sym
->attr
.generic_copy
)
2547 gfc_free_interface (sym
->generic
);
2549 gfc_free_formal_arglist (sym
->formal
);
2551 gfc_free_namespace (sym
->f2k_derived
);
2553 if (sym
->common_block
&& sym
->common_block
->name
[0] != '\0')
2555 sym
->common_block
->refs
--;
2556 if (sym
->common_block
->refs
== 0)
2557 free (sym
->common_block
);
2564 /* Decrease the reference counter and free memory when we reach zero. */
2567 gfc_release_symbol (gfc_symbol
*sym
)
2572 if (sym
->formal_ns
!= NULL
&& sym
->refs
== 2 && sym
->formal_ns
!= sym
->ns
2573 && (!sym
->attr
.entry
|| !sym
->module
))
2575 /* As formal_ns contains a reference to sym, delete formal_ns just
2576 before the deletion of sym. */
2577 gfc_namespace
*ns
= sym
->formal_ns
;
2578 sym
->formal_ns
= NULL
;
2579 gfc_free_namespace (ns
);
2586 gcc_assert (sym
->refs
== 0);
2587 gfc_free_symbol (sym
);
2591 /* Allocate and initialize a new symbol node. */
2594 gfc_new_symbol (const char *name
, gfc_namespace
*ns
)
2598 p
= XCNEW (gfc_symbol
);
2600 gfc_clear_ts (&p
->ts
);
2601 gfc_clear_attr (&p
->attr
);
2604 p
->declared_at
= gfc_current_locus
;
2606 if (strlen (name
) > GFC_MAX_SYMBOL_LEN
)
2607 gfc_internal_error ("new_symbol(): Symbol name too long");
2609 p
->name
= gfc_get_string (name
);
2611 /* Make sure flags for symbol being C bound are clear initially. */
2612 p
->attr
.is_bind_c
= 0;
2613 p
->attr
.is_iso_c
= 0;
2615 /* Clear the ptrs we may need. */
2616 p
->common_block
= NULL
;
2617 p
->f2k_derived
= NULL
;
2624 /* Generate an error if a symbol is ambiguous. */
2627 ambiguous_symbol (const char *name
, gfc_symtree
*st
)
2630 if (st
->n
.sym
->module
)
2631 gfc_error ("Name %qs at %C is an ambiguous reference to %qs "
2632 "from module %qs", name
, st
->n
.sym
->name
, st
->n
.sym
->module
);
2634 gfc_error ("Name %qs at %C is an ambiguous reference to %qs "
2635 "from current program unit", name
, st
->n
.sym
->name
);
2639 /* If we're in a SELECT TYPE block, check if the variable 'st' matches any
2640 selector on the stack. If yes, replace it by the corresponding temporary. */
2643 select_type_insert_tmp (gfc_symtree
**st
)
2645 gfc_select_type_stack
*stack
= select_type_stack
;
2646 for (; stack
; stack
= stack
->prev
)
2647 if ((*st
)->n
.sym
== stack
->selector
&& stack
->tmp
)
2652 /* Look for a symtree in the current procedure -- that is, go up to
2653 parent namespaces but only if inside a BLOCK. Returns NULL if not found. */
2656 gfc_find_symtree_in_proc (const char* name
, gfc_namespace
* ns
)
2660 gfc_symtree
* st
= gfc_find_symtree (ns
->sym_root
, name
);
2664 if (!ns
->construct_entities
)
2673 /* Search for a symtree starting in the current namespace, resorting to
2674 any parent namespaces if requested by a nonzero parent_flag.
2675 Returns nonzero if the name is ambiguous. */
2678 gfc_find_sym_tree (const char *name
, gfc_namespace
*ns
, int parent_flag
,
2679 gfc_symtree
**result
)
2684 ns
= gfc_current_ns
;
2688 st
= gfc_find_symtree (ns
->sym_root
, name
);
2691 select_type_insert_tmp (&st
);
2694 /* Ambiguous generic interfaces are permitted, as long
2695 as the specific interfaces are different. */
2696 if (st
->ambiguous
&& !st
->n
.sym
->attr
.generic
)
2698 ambiguous_symbol (name
, st
);
2708 /* Don't escape an interface block. */
2709 if (ns
&& !ns
->has_import_set
2710 && ns
->proc_name
&& ns
->proc_name
->attr
.if_source
== IFSRC_IFBODY
)
2722 /* Same, but returns the symbol instead. */
2725 gfc_find_symbol (const char *name
, gfc_namespace
*ns
, int parent_flag
,
2726 gfc_symbol
**result
)
2731 i
= gfc_find_sym_tree (name
, ns
, parent_flag
, &st
);
2736 *result
= st
->n
.sym
;
2742 /* Tells whether there is only one set of changes in the stack. */
2745 single_undo_checkpoint_p (void)
2747 if (latest_undo_chgset
== &default_undo_chgset_var
)
2749 gcc_assert (latest_undo_chgset
->previous
== NULL
);
2754 gcc_assert (latest_undo_chgset
->previous
!= NULL
);
2759 /* Save symbol with the information necessary to back it out. */
2762 gfc_save_symbol_data (gfc_symbol
*sym
)
2767 if (!single_undo_checkpoint_p ())
2769 /* If there is more than one change set, look for the symbol in the
2770 current one. If it is found there, we can reuse it. */
2771 FOR_EACH_VEC_ELT (latest_undo_chgset
->syms
, i
, s
)
2774 gcc_assert (sym
->gfc_new
|| sym
->old_symbol
!= NULL
);
2778 else if (sym
->gfc_new
|| sym
->old_symbol
!= NULL
)
2781 s
= XCNEW (gfc_symbol
);
2783 sym
->old_symbol
= s
;
2786 latest_undo_chgset
->syms
.safe_push (sym
);
2790 /* Given a name, find a symbol, or create it if it does not exist yet
2791 in the current namespace. If the symbol is found we make sure that
2794 The integer return code indicates
2796 1 The symbol name was ambiguous
2797 2 The name meant to be established was already host associated.
2799 So if the return value is nonzero, then an error was issued. */
2802 gfc_get_sym_tree (const char *name
, gfc_namespace
*ns
, gfc_symtree
**result
,
2803 bool allow_subroutine
)
2808 /* This doesn't usually happen during resolution. */
2810 ns
= gfc_current_ns
;
2812 /* Try to find the symbol in ns. */
2813 st
= gfc_find_symtree (ns
->sym_root
, name
);
2815 if (st
== NULL
&& ns
->omp_udr_ns
)
2818 st
= gfc_find_symtree (ns
->sym_root
, name
);
2823 /* If not there, create a new symbol. */
2824 p
= gfc_new_symbol (name
, ns
);
2826 /* Add to the list of tentative symbols. */
2827 p
->old_symbol
= NULL
;
2830 latest_undo_chgset
->syms
.safe_push (p
);
2832 st
= gfc_new_symtree (&ns
->sym_root
, name
);
2839 /* Make sure the existing symbol is OK. Ambiguous
2840 generic interfaces are permitted, as long as the
2841 specific interfaces are different. */
2842 if (st
->ambiguous
&& !st
->n
.sym
->attr
.generic
)
2844 ambiguous_symbol (name
, st
);
2849 if (p
->ns
!= ns
&& (!p
->attr
.function
|| ns
->proc_name
!= p
)
2850 && !(allow_subroutine
&& p
->attr
.subroutine
)
2851 && !(ns
->proc_name
&& ns
->proc_name
->attr
.if_source
== IFSRC_IFBODY
2852 && (ns
->has_import_set
|| p
->attr
.imported
)))
2854 /* Symbol is from another namespace. */
2855 gfc_error ("Symbol %qs at %C has already been host associated",
2862 /* Copy in case this symbol is changed. */
2863 gfc_save_symbol_data (p
);
2872 gfc_get_symbol (const char *name
, gfc_namespace
*ns
, gfc_symbol
**result
)
2877 i
= gfc_get_sym_tree (name
, ns
, &st
, false);
2882 *result
= st
->n
.sym
;
2889 /* Subroutine that searches for a symbol, creating it if it doesn't
2890 exist, but tries to host-associate the symbol if possible. */
2893 gfc_get_ha_sym_tree (const char *name
, gfc_symtree
**result
)
2898 i
= gfc_find_sym_tree (name
, gfc_current_ns
, 0, &st
);
2902 gfc_save_symbol_data (st
->n
.sym
);
2907 i
= gfc_find_sym_tree (name
, gfc_current_ns
, 1, &st
);
2917 return gfc_get_sym_tree (name
, gfc_current_ns
, result
, false);
2922 gfc_get_ha_symbol (const char *name
, gfc_symbol
**result
)
2927 i
= gfc_get_ha_sym_tree (name
, &st
);
2930 *result
= st
->n
.sym
;
2938 /* Search for the symtree belonging to a gfc_common_head; we cannot use
2939 head->name as the common_root symtree's name might be mangled. */
2941 static gfc_symtree
*
2942 find_common_symtree (gfc_symtree
*st
, gfc_common_head
*head
)
2945 gfc_symtree
*result
;
2950 if (st
->n
.common
== head
)
2953 result
= find_common_symtree (st
->left
, head
);
2955 result
= find_common_symtree (st
->right
, head
);
2961 /* Clear the given storage, and make it the current change set for registering
2962 changed symbols. Its contents are freed after a call to
2963 gfc_restore_last_undo_checkpoint or gfc_drop_last_undo_checkpoint, but
2964 it is up to the caller to free the storage itself. It is usually a local
2965 variable, so there is nothing to do anyway. */
2968 gfc_new_undo_checkpoint (gfc_undo_change_set
&chg_syms
)
2970 chg_syms
.syms
= vNULL
;
2971 chg_syms
.tbps
= vNULL
;
2972 chg_syms
.previous
= latest_undo_chgset
;
2973 latest_undo_chgset
= &chg_syms
;
2977 /* Restore previous state of symbol. Just copy simple stuff. */
2980 restore_old_symbol (gfc_symbol
*p
)
2985 old
= p
->old_symbol
;
2987 p
->ts
.type
= old
->ts
.type
;
2988 p
->ts
.kind
= old
->ts
.kind
;
2990 p
->attr
= old
->attr
;
2992 if (p
->value
!= old
->value
)
2994 gcc_checking_assert (old
->value
== NULL
);
2995 gfc_free_expr (p
->value
);
2999 if (p
->as
!= old
->as
)
3002 gfc_free_array_spec (p
->as
);
3006 p
->generic
= old
->generic
;
3007 p
->component_access
= old
->component_access
;
3009 if (p
->namelist
!= NULL
&& old
->namelist
== NULL
)
3011 gfc_free_namelist (p
->namelist
);
3016 if (p
->namelist_tail
!= old
->namelist_tail
)
3018 gfc_free_namelist (old
->namelist_tail
->next
);
3019 old
->namelist_tail
->next
= NULL
;
3023 p
->namelist_tail
= old
->namelist_tail
;
3025 if (p
->formal
!= old
->formal
)
3027 gfc_free_formal_arglist (p
->formal
);
3028 p
->formal
= old
->formal
;
3031 p
->old_symbol
= old
->old_symbol
;
3036 /* Frees the internal data of a gfc_undo_change_set structure. Doesn't free
3037 the structure itself. */
3040 free_undo_change_set_data (gfc_undo_change_set
&cs
)
3047 /* Given a change set pointer, free its target's contents and update it with
3048 the address of the previous change set. Note that only the contents are
3049 freed, not the target itself (the contents' container). It is not a problem
3050 as the latter will be a local variable usually. */
3053 pop_undo_change_set (gfc_undo_change_set
*&cs
)
3055 free_undo_change_set_data (*cs
);
3060 static void free_old_symbol (gfc_symbol
*sym
);
3063 /* Merges the current change set into the previous one. The changes themselves
3064 are left untouched; only one checkpoint is forgotten. */
3067 gfc_drop_last_undo_checkpoint (void)
3072 FOR_EACH_VEC_ELT (latest_undo_chgset
->syms
, i
, s
)
3074 /* No need to loop in this case. */
3075 if (s
->old_symbol
== NULL
)
3078 /* Remove the duplicate symbols. */
3079 FOR_EACH_VEC_ELT (latest_undo_chgset
->previous
->syms
, j
, t
)
3082 latest_undo_chgset
->previous
->syms
.unordered_remove (j
);
3084 /* S->OLD_SYMBOL is the backup symbol for S as it was at the
3085 last checkpoint. We drop that checkpoint, so S->OLD_SYMBOL
3086 shall contain from now on the backup symbol for S as it was
3087 at the checkpoint before. */
3088 if (s
->old_symbol
->gfc_new
)
3090 gcc_assert (s
->old_symbol
->old_symbol
== NULL
);
3091 s
->gfc_new
= s
->old_symbol
->gfc_new
;
3092 free_old_symbol (s
);
3095 restore_old_symbol (s
->old_symbol
);
3100 latest_undo_chgset
->previous
->syms
.safe_splice (latest_undo_chgset
->syms
);
3101 latest_undo_chgset
->previous
->tbps
.safe_splice (latest_undo_chgset
->tbps
);
3103 pop_undo_change_set (latest_undo_chgset
);
3107 /* Undoes all the changes made to symbols since the previous checkpoint.
3108 This subroutine is made simpler due to the fact that attributes are
3109 never removed once added. */
3112 gfc_restore_last_undo_checkpoint (void)
3117 FOR_EACH_VEC_ELT (latest_undo_chgset
->syms
, i
, p
)
3121 /* Symbol was new. */
3122 if (p
->attr
.in_common
&& p
->common_block
&& p
->common_block
->head
)
3124 /* If the symbol was added to any common block, it
3125 needs to be removed to stop the resolver looking
3126 for a (possibly) dead symbol. */
3128 if (p
->common_block
->head
== p
&& !p
->common_next
)
3130 gfc_symtree st
, *st0
;
3131 st0
= find_common_symtree (p
->ns
->common_root
,
3135 st
.name
= st0
->name
;
3136 gfc_delete_bbt (&p
->ns
->common_root
, &st
, compare_symtree
);
3141 if (p
->common_block
->head
== p
)
3142 p
->common_block
->head
= p
->common_next
;
3145 gfc_symbol
*cparent
, *csym
;
3147 cparent
= p
->common_block
->head
;
3148 csym
= cparent
->common_next
;
3153 csym
= csym
->common_next
;
3156 gcc_assert(cparent
->common_next
== p
);
3158 cparent
->common_next
= csym
->common_next
;
3162 /* The derived type is saved in the symtree with the first
3163 letter capitalized; the all lower-case version to the
3164 derived type contains its associated generic function. */
3165 if (p
->attr
.flavor
== FL_DERIVED
)
3166 gfc_delete_symtree (&p
->ns
->sym_root
, gfc_get_string ("%c%s",
3167 (char) TOUPPER ((unsigned char) p
->name
[0]),
3170 gfc_delete_symtree (&p
->ns
->sym_root
, p
->name
);
3172 gfc_release_symbol (p
);
3175 restore_old_symbol (p
);
3178 latest_undo_chgset
->syms
.truncate (0);
3179 latest_undo_chgset
->tbps
.truncate (0);
3181 if (!single_undo_checkpoint_p ())
3182 pop_undo_change_set (latest_undo_chgset
);
3186 /* Makes sure that there is only one set of changes; in other words we haven't
3187 forgotten to pair a call to gfc_new_checkpoint with a call to either
3188 gfc_drop_last_undo_checkpoint or gfc_restore_last_undo_checkpoint. */
3191 enforce_single_undo_checkpoint (void)
3193 gcc_checking_assert (single_undo_checkpoint_p ());
3197 /* Undoes all the changes made to symbols in the current statement. */
3200 gfc_undo_symbols (void)
3202 enforce_single_undo_checkpoint ();
3203 gfc_restore_last_undo_checkpoint ();
3207 /* Free sym->old_symbol. sym->old_symbol is mostly a shallow copy of sym; the
3208 components of old_symbol that might need deallocation are the "allocatables"
3209 that are restored in gfc_undo_symbols(), with two exceptions: namelist and
3210 namelist_tail. In case these differ between old_symbol and sym, it's just
3211 because sym->namelist has gotten a few more items. */
3214 free_old_symbol (gfc_symbol
*sym
)
3217 if (sym
->old_symbol
== NULL
)
3220 if (sym
->old_symbol
->as
!= sym
->as
)
3221 gfc_free_array_spec (sym
->old_symbol
->as
);
3223 if (sym
->old_symbol
->value
!= sym
->value
)
3224 gfc_free_expr (sym
->old_symbol
->value
);
3226 if (sym
->old_symbol
->formal
!= sym
->formal
)
3227 gfc_free_formal_arglist (sym
->old_symbol
->formal
);
3229 free (sym
->old_symbol
);
3230 sym
->old_symbol
= NULL
;
3234 /* Makes the changes made in the current statement permanent-- gets
3235 rid of undo information. */
3238 gfc_commit_symbols (void)
3241 gfc_typebound_proc
*tbp
;
3244 enforce_single_undo_checkpoint ();
3246 FOR_EACH_VEC_ELT (latest_undo_chgset
->syms
, i
, p
)
3250 free_old_symbol (p
);
3252 latest_undo_chgset
->syms
.truncate (0);
3254 FOR_EACH_VEC_ELT (latest_undo_chgset
->tbps
, i
, tbp
)
3256 latest_undo_chgset
->tbps
.truncate (0);
3260 /* Makes the changes made in one symbol permanent -- gets rid of undo
3264 gfc_commit_symbol (gfc_symbol
*sym
)
3269 enforce_single_undo_checkpoint ();
3271 FOR_EACH_VEC_ELT (latest_undo_chgset
->syms
, i
, p
)
3274 latest_undo_chgset
->syms
.unordered_remove (i
);
3281 free_old_symbol (sym
);
3285 /* Recursively free trees containing type-bound procedures. */
3288 free_tb_tree (gfc_symtree
*t
)
3293 free_tb_tree (t
->left
);
3294 free_tb_tree (t
->right
);
3296 /* TODO: Free type-bound procedure structs themselves; probably needs some
3297 sort of ref-counting mechanism. */
3303 /* Recursive function that deletes an entire tree and all the common
3304 head structures it points to. */
3307 free_common_tree (gfc_symtree
* common_tree
)
3309 if (common_tree
== NULL
)
3312 free_common_tree (common_tree
->left
);
3313 free_common_tree (common_tree
->right
);
3319 /* Recursive function that deletes an entire tree and all the common
3320 head structures it points to. */
3323 free_omp_udr_tree (gfc_symtree
* omp_udr_tree
)
3325 if (omp_udr_tree
== NULL
)
3328 free_omp_udr_tree (omp_udr_tree
->left
);
3329 free_omp_udr_tree (omp_udr_tree
->right
);
3331 gfc_free_omp_udr (omp_udr_tree
->n
.omp_udr
);
3332 free (omp_udr_tree
);
3336 /* Recursive function that deletes an entire tree and all the user
3337 operator nodes that it contains. */
3340 free_uop_tree (gfc_symtree
*uop_tree
)
3342 if (uop_tree
== NULL
)
3345 free_uop_tree (uop_tree
->left
);
3346 free_uop_tree (uop_tree
->right
);
3348 gfc_free_interface (uop_tree
->n
.uop
->op
);
3349 free (uop_tree
->n
.uop
);
3354 /* Recursive function that deletes an entire tree and all the symbols
3355 that it contains. */
3358 free_sym_tree (gfc_symtree
*sym_tree
)
3360 if (sym_tree
== NULL
)
3363 free_sym_tree (sym_tree
->left
);
3364 free_sym_tree (sym_tree
->right
);
3366 gfc_release_symbol (sym_tree
->n
.sym
);
3371 /* Free the derived type list. */
3374 gfc_free_dt_list (void)
3376 gfc_dt_list
*dt
, *n
;
3378 for (dt
= gfc_derived_types
; dt
; dt
= n
)
3384 gfc_derived_types
= NULL
;
3388 /* Free the gfc_equiv_info's. */
3391 gfc_free_equiv_infos (gfc_equiv_info
*s
)
3395 gfc_free_equiv_infos (s
->next
);
3400 /* Free the gfc_equiv_lists. */
3403 gfc_free_equiv_lists (gfc_equiv_list
*l
)
3407 gfc_free_equiv_lists (l
->next
);
3408 gfc_free_equiv_infos (l
->equiv
);
3413 /* Free a finalizer procedure list. */
3416 gfc_free_finalizer (gfc_finalizer
* el
)
3420 gfc_release_symbol (el
->proc_sym
);
3426 gfc_free_finalizer_list (gfc_finalizer
* list
)
3430 gfc_finalizer
* current
= list
;
3432 gfc_free_finalizer (current
);
3437 /* Create a new gfc_charlen structure and add it to a namespace.
3438 If 'old_cl' is given, the newly created charlen will be a copy of it. */
3441 gfc_new_charlen (gfc_namespace
*ns
, gfc_charlen
*old_cl
)
3444 cl
= gfc_get_charlen ();
3449 /* Put into namespace, but don't allow reject_statement
3450 to free it if old_cl is given. */
3451 gfc_charlen
**prev
= &ns
->cl_list
;
3452 cl
->next
= ns
->old_cl_list
;
3453 while (*prev
!= ns
->old_cl_list
)
3454 prev
= &(*prev
)->next
;
3456 ns
->old_cl_list
= cl
;
3457 cl
->length
= gfc_copy_expr (old_cl
->length
);
3458 cl
->length_from_typespec
= old_cl
->length_from_typespec
;
3459 cl
->backend_decl
= old_cl
->backend_decl
;
3460 cl
->passed_length
= old_cl
->passed_length
;
3461 cl
->resolved
= old_cl
->resolved
;
3465 /* Put into namespace. */
3466 cl
->next
= ns
->cl_list
;
3474 /* Free the charlen list from cl to end (end is not freed).
3475 Free the whole list if end is NULL. */
3478 gfc_free_charlen (gfc_charlen
*cl
, gfc_charlen
*end
)
3482 for (; cl
!= end
; cl
= cl2
)
3487 gfc_free_expr (cl
->length
);
3493 /* Free entry list structs. */
3496 free_entry_list (gfc_entry_list
*el
)
3498 gfc_entry_list
*next
;
3505 free_entry_list (next
);
3509 /* Free a namespace structure and everything below it. Interface
3510 lists associated with intrinsic operators are not freed. These are
3511 taken care of when a specific name is freed. */
3514 gfc_free_namespace (gfc_namespace
*ns
)
3516 gfc_namespace
*p
, *q
;
3525 gcc_assert (ns
->refs
== 0);
3527 gfc_free_statements (ns
->code
);
3529 free_sym_tree (ns
->sym_root
);
3530 free_uop_tree (ns
->uop_root
);
3531 free_common_tree (ns
->common_root
);
3532 free_omp_udr_tree (ns
->omp_udr_root
);
3533 free_tb_tree (ns
->tb_sym_root
);
3534 free_tb_tree (ns
->tb_uop_root
);
3535 gfc_free_finalizer_list (ns
->finalizers
);
3536 gfc_free_omp_declare_simd_list (ns
->omp_declare_simd
);
3537 gfc_free_charlen (ns
->cl_list
, NULL
);
3538 free_st_labels (ns
->st_labels
);
3540 free_entry_list (ns
->entries
);
3541 gfc_free_equiv (ns
->equiv
);
3542 gfc_free_equiv_lists (ns
->equiv_lists
);
3543 gfc_free_use_stmts (ns
->use_stmts
);
3545 for (i
= GFC_INTRINSIC_BEGIN
; i
!= GFC_INTRINSIC_END
; i
++)
3546 gfc_free_interface (ns
->op
[i
]);
3548 gfc_free_data (ns
->data
);
3552 /* Recursively free any contained namespaces. */
3557 gfc_free_namespace (q
);
3563 gfc_symbol_init_2 (void)
3566 gfc_current_ns
= gfc_get_namespace (NULL
, 0);
3571 gfc_symbol_done_2 (void)
3573 gfc_free_namespace (gfc_current_ns
);
3574 gfc_current_ns
= NULL
;
3575 gfc_free_dt_list ();
3577 enforce_single_undo_checkpoint ();
3578 free_undo_change_set_data (*latest_undo_chgset
);
3582 /* Count how many nodes a symtree has. */
3585 count_st_nodes (const gfc_symtree
*st
)
3591 nodes
= count_st_nodes (st
->left
);
3593 nodes
+= count_st_nodes (st
->right
);
3599 /* Convert symtree tree into symtree vector. */
3602 fill_st_vector (gfc_symtree
*st
, gfc_symtree
**st_vec
, unsigned node_cntr
)
3607 node_cntr
= fill_st_vector (st
->left
, st_vec
, node_cntr
);
3608 st_vec
[node_cntr
++] = st
;
3609 node_cntr
= fill_st_vector (st
->right
, st_vec
, node_cntr
);
3615 /* Traverse namespace. As the functions might modify the symtree, we store the
3616 symtree as a vector and operate on this vector. Note: We assume that
3617 sym_func or st_func never deletes nodes from the symtree - only adding is
3618 allowed. Additionally, newly added nodes are not traversed. */
3621 do_traverse_symtree (gfc_symtree
*st
, void (*st_func
) (gfc_symtree
*),
3622 void (*sym_func
) (gfc_symbol
*))
3624 gfc_symtree
**st_vec
;
3625 unsigned nodes
, i
, node_cntr
;
3627 gcc_assert ((st_func
&& !sym_func
) || (!st_func
&& sym_func
));
3628 nodes
= count_st_nodes (st
);
3629 st_vec
= XALLOCAVEC (gfc_symtree
*, nodes
);
3631 fill_st_vector (st
, st_vec
, node_cntr
);
3636 for (i
= 0; i
< nodes
; i
++)
3637 st_vec
[i
]->n
.sym
->mark
= 0;
3638 for (i
= 0; i
< nodes
; i
++)
3639 if (!st_vec
[i
]->n
.sym
->mark
)
3641 (*sym_func
) (st_vec
[i
]->n
.sym
);
3642 st_vec
[i
]->n
.sym
->mark
= 1;
3646 for (i
= 0; i
< nodes
; i
++)
3647 (*st_func
) (st_vec
[i
]);
3651 /* Recursively traverse the symtree nodes. */
3654 gfc_traverse_symtree (gfc_symtree
*st
, void (*st_func
) (gfc_symtree
*))
3656 do_traverse_symtree (st
, st_func
, NULL
);
3660 /* Call a given function for all symbols in the namespace. We take
3661 care that each gfc_symbol node is called exactly once. */
3664 gfc_traverse_ns (gfc_namespace
*ns
, void (*sym_func
) (gfc_symbol
*))
3666 do_traverse_symtree (ns
->sym_root
, NULL
, sym_func
);
3670 /* Return TRUE when name is the name of an intrinsic type. */
3673 gfc_is_intrinsic_typename (const char *name
)
3675 if (strcmp (name
, "integer") == 0
3676 || strcmp (name
, "real") == 0
3677 || strcmp (name
, "character") == 0
3678 || strcmp (name
, "logical") == 0
3679 || strcmp (name
, "complex") == 0
3680 || strcmp (name
, "doubleprecision") == 0
3681 || strcmp (name
, "doublecomplex") == 0)
3688 /* Return TRUE if the symbol is an automatic variable. */
3691 gfc_is_var_automatic (gfc_symbol
*sym
)
3693 /* Pointer and allocatable variables are never automatic. */
3694 if (sym
->attr
.pointer
|| sym
->attr
.allocatable
)
3696 /* Check for arrays with non-constant size. */
3697 if (sym
->attr
.dimension
&& sym
->as
3698 && !gfc_is_compile_time_shape (sym
->as
))
3700 /* Check for non-constant length character variables. */
3701 if (sym
->ts
.type
== BT_CHARACTER
3703 && !gfc_is_constant_expr (sym
->ts
.u
.cl
->length
))
3708 /* Given a symbol, mark it as SAVEd if it is allowed. */
3711 save_symbol (gfc_symbol
*sym
)
3714 if (sym
->attr
.use_assoc
)
3717 if (sym
->attr
.in_common
3720 || sym
->attr
.flavor
!= FL_VARIABLE
)
3722 /* Automatic objects are not saved. */
3723 if (gfc_is_var_automatic (sym
))
3725 gfc_add_save (&sym
->attr
, SAVE_EXPLICIT
, sym
->name
, &sym
->declared_at
);
3729 /* Mark those symbols which can be SAVEd as such. */
3732 gfc_save_all (gfc_namespace
*ns
)
3734 gfc_traverse_ns (ns
, save_symbol
);
3738 /* Make sure that no changes to symbols are pending. */
3741 gfc_enforce_clean_symbol_state(void)
3743 enforce_single_undo_checkpoint ();
3744 gcc_assert (latest_undo_chgset
->syms
.is_empty ());
3748 /************** Global symbol handling ************/
3751 /* Search a tree for the global symbol. */
3754 gfc_find_gsymbol (gfc_gsymbol
*symbol
, const char *name
)
3763 c
= strcmp (name
, symbol
->name
);
3767 symbol
= (c
< 0) ? symbol
->left
: symbol
->right
;
3774 /* Compare two global symbols. Used for managing the BB tree. */
3777 gsym_compare (void *_s1
, void *_s2
)
3779 gfc_gsymbol
*s1
, *s2
;
3781 s1
= (gfc_gsymbol
*) _s1
;
3782 s2
= (gfc_gsymbol
*) _s2
;
3783 return strcmp (s1
->name
, s2
->name
);
3787 /* Get a global symbol, creating it if it doesn't exist. */
3790 gfc_get_gsymbol (const char *name
)
3794 s
= gfc_find_gsymbol (gfc_gsym_root
, name
);
3798 s
= XCNEW (gfc_gsymbol
);
3799 s
->type
= GSYM_UNKNOWN
;
3800 s
->name
= gfc_get_string (name
);
3802 gfc_insert_bbt (&gfc_gsym_root
, s
, gsym_compare
);
3809 get_iso_c_binding_dt (int sym_id
)
3811 gfc_dt_list
*dt_list
;
3813 dt_list
= gfc_derived_types
;
3815 /* Loop through the derived types in the name list, searching for
3816 the desired symbol from iso_c_binding. Search the parent namespaces
3817 if necessary and requested to (parent_flag). */
3818 while (dt_list
!= NULL
)
3820 if (dt_list
->derived
->from_intmod
!= INTMOD_NONE
3821 && dt_list
->derived
->intmod_sym_id
== sym_id
)
3822 return dt_list
->derived
;
3824 dt_list
= dt_list
->next
;
3831 /* Verifies that the given derived type symbol, derived_sym, is interoperable
3832 with C. This is necessary for any derived type that is BIND(C) and for
3833 derived types that are parameters to functions that are BIND(C). All
3834 fields of the derived type are required to be interoperable, and are tested
3835 for such. If an error occurs, the errors are reported here, allowing for
3836 multiple errors to be handled for a single derived type. */
3839 verify_bind_c_derived_type (gfc_symbol
*derived_sym
)
3841 gfc_component
*curr_comp
= NULL
;
3842 bool is_c_interop
= false;
3845 if (derived_sym
== NULL
)
3846 gfc_internal_error ("verify_bind_c_derived_type(): Given symbol is "
3847 "unexpectedly NULL");
3849 /* If we've already looked at this derived symbol, do not look at it again
3850 so we don't repeat warnings/errors. */
3851 if (derived_sym
->ts
.is_c_interop
)
3854 /* The derived type must have the BIND attribute to be interoperable
3855 J3/04-007, Section 15.2.3. */
3856 if (derived_sym
->attr
.is_bind_c
!= 1)
3858 derived_sym
->ts
.is_c_interop
= 0;
3859 gfc_error_now ("Derived type %qs declared at %L must have the BIND "
3860 "attribute to be C interoperable", derived_sym
->name
,
3861 &(derived_sym
->declared_at
));
3865 curr_comp
= derived_sym
->components
;
3867 /* Fortran 2003 allows an empty derived type. C99 appears to disallow an
3868 empty struct. Section 15.2 in Fortran 2003 states: "The following
3869 subclauses define the conditions under which a Fortran entity is
3870 interoperable. If a Fortran entity is interoperable, an equivalent
3871 entity may be defined by means of C and the Fortran entity is said
3872 to be interoperable with the C entity. There does not have to be such
3873 an interoperating C entity."
3875 if (curr_comp
== NULL
)
3877 gfc_warning (0, "Derived type %qs with BIND(C) attribute at %L is empty, "
3878 "and may be inaccessible by the C companion processor",
3879 derived_sym
->name
, &(derived_sym
->declared_at
));
3880 derived_sym
->ts
.is_c_interop
= 1;
3881 derived_sym
->attr
.is_bind_c
= 1;
3886 /* Initialize the derived type as being C interoperable.
3887 If we find an error in the components, this will be set false. */
3888 derived_sym
->ts
.is_c_interop
= 1;
3890 /* Loop through the list of components to verify that the kind of
3891 each is a C interoperable type. */
3894 /* The components cannot be pointers (fortran sense).
3895 J3/04-007, Section 15.2.3, C1505. */
3896 if (curr_comp
->attr
.pointer
!= 0)
3898 gfc_error_1 ("Component '%s' at %L cannot have the "
3899 "POINTER attribute because it is a member "
3900 "of the BIND(C) derived type '%s' at %L",
3901 curr_comp
->name
, &(curr_comp
->loc
),
3902 derived_sym
->name
, &(derived_sym
->declared_at
));
3906 if (curr_comp
->attr
.proc_pointer
!= 0)
3908 gfc_error_1 ("Procedure pointer component '%s' at %L cannot be a member"
3909 " of the BIND(C) derived type '%s' at %L", curr_comp
->name
,
3910 &curr_comp
->loc
, derived_sym
->name
,
3911 &derived_sym
->declared_at
);
3915 /* The components cannot be allocatable.
3916 J3/04-007, Section 15.2.3, C1505. */
3917 if (curr_comp
->attr
.allocatable
!= 0)
3919 gfc_error_1 ("Component '%s' at %L cannot have the "
3920 "ALLOCATABLE attribute because it is a member "
3921 "of the BIND(C) derived type '%s' at %L",
3922 curr_comp
->name
, &(curr_comp
->loc
),
3923 derived_sym
->name
, &(derived_sym
->declared_at
));
3927 /* BIND(C) derived types must have interoperable components. */
3928 if (curr_comp
->ts
.type
== BT_DERIVED
3929 && curr_comp
->ts
.u
.derived
->ts
.is_iso_c
!= 1
3930 && curr_comp
->ts
.u
.derived
!= derived_sym
)
3932 /* This should be allowed; the draft says a derived-type can not
3933 have type parameters if it is has the BIND attribute. Type
3934 parameters seem to be for making parameterized derived types.
3935 There's no need to verify the type if it is c_ptr/c_funptr. */
3936 retval
= verify_bind_c_derived_type (curr_comp
->ts
.u
.derived
);
3940 /* Grab the typespec for the given component and test the kind. */
3941 is_c_interop
= gfc_verify_c_interop (&(curr_comp
->ts
));
3945 /* Report warning and continue since not fatal. The
3946 draft does specify a constraint that requires all fields
3947 to interoperate, but if the user says real(4), etc., it
3948 may interoperate with *something* in C, but the compiler
3949 most likely won't know exactly what. Further, it may not
3950 interoperate with the same data type(s) in C if the user
3951 recompiles with different flags (e.g., -m32 and -m64 on
3952 x86_64 and using integer(4) to claim interop with a
3954 if (derived_sym
->attr
.is_bind_c
== 1 && warn_c_binding_type
)
3955 /* If the derived type is bind(c), all fields must be
3957 gfc_warning (OPT_Wc_binding_type
,
3958 "Component %qs in derived type %qs at %L "
3959 "may not be C interoperable, even though "
3960 "derived type %qs is BIND(C)",
3961 curr_comp
->name
, derived_sym
->name
,
3962 &(curr_comp
->loc
), derived_sym
->name
);
3963 else if (warn_c_binding_type
)
3964 /* If derived type is param to bind(c) routine, or to one
3965 of the iso_c_binding procs, it must be interoperable, so
3966 all fields must interop too. */
3967 gfc_warning (OPT_Wc_binding_type
,
3968 "Component %qs in derived type %qs at %L "
3969 "may not be C interoperable",
3970 curr_comp
->name
, derived_sym
->name
,
3975 curr_comp
= curr_comp
->next
;
3976 } while (curr_comp
!= NULL
);
3979 /* Make sure we don't have conflicts with the attributes. */
3980 if (derived_sym
->attr
.access
== ACCESS_PRIVATE
)
3982 gfc_error ("Derived type %qs at %L cannot be declared with both "
3983 "PRIVATE and BIND(C) attributes", derived_sym
->name
,
3984 &(derived_sym
->declared_at
));
3988 if (derived_sym
->attr
.sequence
!= 0)
3990 gfc_error ("Derived type %qs at %L cannot have the SEQUENCE "
3991 "attribute because it is BIND(C)", derived_sym
->name
,
3992 &(derived_sym
->declared_at
));
3996 /* Mark the derived type as not being C interoperable if we found an
3997 error. If there were only warnings, proceed with the assumption
3998 it's interoperable. */
4000 derived_sym
->ts
.is_c_interop
= 0;
4006 /* Generate symbols for the named constants c_null_ptr and c_null_funptr. */
4009 gen_special_c_interop_ptr (gfc_symbol
*tmp_sym
, gfc_symtree
*dt_symtree
)
4013 gcc_assert (tmp_sym
&& dt_symtree
&& dt_symtree
->n
.sym
);
4014 dt_symtree
->n
.sym
->attr
.referenced
= 1;
4016 tmp_sym
->attr
.is_c_interop
= 1;
4017 tmp_sym
->attr
.is_bind_c
= 1;
4018 tmp_sym
->ts
.is_c_interop
= 1;
4019 tmp_sym
->ts
.is_iso_c
= 1;
4020 tmp_sym
->ts
.type
= BT_DERIVED
;
4021 tmp_sym
->ts
.f90_type
= BT_VOID
;
4022 tmp_sym
->attr
.flavor
= FL_PARAMETER
;
4023 tmp_sym
->ts
.u
.derived
= dt_symtree
->n
.sym
;
4025 /* Set the c_address field of c_null_ptr and c_null_funptr to
4026 the value of NULL. */
4027 tmp_sym
->value
= gfc_get_expr ();
4028 tmp_sym
->value
->expr_type
= EXPR_STRUCTURE
;
4029 tmp_sym
->value
->ts
.type
= BT_DERIVED
;
4030 tmp_sym
->value
->ts
.f90_type
= BT_VOID
;
4031 tmp_sym
->value
->ts
.u
.derived
= tmp_sym
->ts
.u
.derived
;
4032 gfc_constructor_append_expr (&tmp_sym
->value
->value
.constructor
, NULL
, NULL
);
4033 c
= gfc_constructor_first (tmp_sym
->value
->value
.constructor
);
4034 c
->expr
= gfc_get_int_expr (gfc_index_integer_kind
, NULL
, 0);
4035 c
->expr
->ts
.is_iso_c
= 1;
4041 /* Add a formal argument, gfc_formal_arglist, to the
4042 end of the given list of arguments. Set the reference to the
4043 provided symbol, param_sym, in the argument. */
4046 add_formal_arg (gfc_formal_arglist
**head
,
4047 gfc_formal_arglist
**tail
,
4048 gfc_formal_arglist
*formal_arg
,
4049 gfc_symbol
*param_sym
)
4051 /* Put in list, either as first arg or at the tail (curr arg). */
4053 *head
= *tail
= formal_arg
;
4056 (*tail
)->next
= formal_arg
;
4057 (*tail
) = formal_arg
;
4060 (*tail
)->sym
= param_sym
;
4061 (*tail
)->next
= NULL
;
4067 /* Add a procedure interface to the given symbol (i.e., store a
4068 reference to the list of formal arguments). */
4071 add_proc_interface (gfc_symbol
*sym
, ifsrc source
, gfc_formal_arglist
*formal
)
4074 sym
->formal
= formal
;
4075 sym
->attr
.if_source
= source
;
4079 /* Copy the formal args from an existing symbol, src, into a new
4080 symbol, dest. New formal args are created, and the description of
4081 each arg is set according to the existing ones. This function is
4082 used when creating procedure declaration variables from a procedure
4083 declaration statement (see match_proc_decl()) to create the formal
4084 args based on the args of a given named interface.
4086 When an actual argument list is provided, skip the absent arguments.
4087 To be used together with gfc_se->ignore_optional. */
4090 gfc_copy_formal_args_intr (gfc_symbol
*dest
, gfc_intrinsic_sym
*src
,
4091 gfc_actual_arglist
*actual
)
4093 gfc_formal_arglist
*head
= NULL
;
4094 gfc_formal_arglist
*tail
= NULL
;
4095 gfc_formal_arglist
*formal_arg
= NULL
;
4096 gfc_intrinsic_arg
*curr_arg
= NULL
;
4097 gfc_formal_arglist
*formal_prev
= NULL
;
4098 gfc_actual_arglist
*act_arg
= actual
;
4099 /* Save current namespace so we can change it for formal args. */
4100 gfc_namespace
*parent_ns
= gfc_current_ns
;
4102 /* Create a new namespace, which will be the formal ns (namespace
4103 of the formal args). */
4104 gfc_current_ns
= gfc_get_namespace (parent_ns
, 0);
4105 gfc_current_ns
->proc_name
= dest
;
4107 for (curr_arg
= src
->formal
; curr_arg
; curr_arg
= curr_arg
->next
)
4109 /* Skip absent arguments. */
4112 gcc_assert (act_arg
!= NULL
);
4113 if (act_arg
->expr
== NULL
)
4115 act_arg
= act_arg
->next
;
4118 act_arg
= act_arg
->next
;
4120 formal_arg
= gfc_get_formal_arglist ();
4121 gfc_get_symbol (curr_arg
->name
, gfc_current_ns
, &(formal_arg
->sym
));
4123 /* May need to copy more info for the symbol. */
4124 formal_arg
->sym
->ts
= curr_arg
->ts
;
4125 formal_arg
->sym
->attr
.optional
= curr_arg
->optional
;
4126 formal_arg
->sym
->attr
.value
= curr_arg
->value
;
4127 formal_arg
->sym
->attr
.intent
= curr_arg
->intent
;
4128 formal_arg
->sym
->attr
.flavor
= FL_VARIABLE
;
4129 formal_arg
->sym
->attr
.dummy
= 1;
4131 if (formal_arg
->sym
->ts
.type
== BT_CHARACTER
)
4132 formal_arg
->sym
->ts
.u
.cl
= gfc_new_charlen (gfc_current_ns
, NULL
);
4134 /* If this isn't the first arg, set up the next ptr. For the
4135 last arg built, the formal_arg->next will never get set to
4136 anything other than NULL. */
4137 if (formal_prev
!= NULL
)
4138 formal_prev
->next
= formal_arg
;
4140 formal_arg
->next
= NULL
;
4142 formal_prev
= formal_arg
;
4144 /* Add arg to list of formal args. */
4145 add_formal_arg (&head
, &tail
, formal_arg
, formal_arg
->sym
);
4147 /* Validate changes. */
4148 gfc_commit_symbol (formal_arg
->sym
);
4151 /* Add the interface to the symbol. */
4152 add_proc_interface (dest
, IFSRC_DECL
, head
);
4154 /* Store the formal namespace information. */
4155 if (dest
->formal
!= NULL
)
4156 /* The current ns should be that for the dest proc. */
4157 dest
->formal_ns
= gfc_current_ns
;
4158 /* Restore the current namespace to what it was on entry. */
4159 gfc_current_ns
= parent_ns
;
4164 std_for_isocbinding_symbol (int id
)
4168 #define NAMED_INTCST(a,b,c,d) \
4171 #include "iso-c-binding.def"
4174 #define NAMED_FUNCTION(a,b,c,d) \
4177 #define NAMED_SUBROUTINE(a,b,c,d) \
4180 #include "iso-c-binding.def"
4181 #undef NAMED_FUNCTION
4182 #undef NAMED_SUBROUTINE
4185 return GFC_STD_F2003
;
4189 /* Generate the given set of C interoperable kind objects, or all
4190 interoperable kinds. This function will only be given kind objects
4191 for valid iso_c_binding defined types because this is verified when
4192 the 'use' statement is parsed. If the user gives an 'only' clause,
4193 the specific kinds are looked up; if they don't exist, an error is
4194 reported. If the user does not give an 'only' clause, all
4195 iso_c_binding symbols are generated. If a list of specific kinds
4196 is given, it must have a NULL in the first empty spot to mark the
4197 end of the list. For C_null_(fun)ptr, dt_symtree has to be set and
4198 point to the symtree for c_(fun)ptr. */
4201 generate_isocbinding_symbol (const char *mod_name
, iso_c_binding_symbol s
,
4202 const char *local_name
, gfc_symtree
*dt_symtree
,
4205 const char *const name
= (local_name
&& local_name
[0])
4206 ? local_name
: c_interop_kinds_table
[s
].name
;
4207 gfc_symtree
*tmp_symtree
;
4208 gfc_symbol
*tmp_sym
= NULL
;
4211 if (gfc_notification_std (std_for_isocbinding_symbol (s
)) == ERROR
)
4214 tmp_symtree
= gfc_find_symtree (gfc_current_ns
->sym_root
, name
);
4216 && (!tmp_symtree
|| !tmp_symtree
->n
.sym
4217 || tmp_symtree
->n
.sym
->from_intmod
!= INTMOD_ISO_C_BINDING
4218 || tmp_symtree
->n
.sym
->intmod_sym_id
!= s
))
4221 /* Already exists in this scope so don't re-add it. */
4222 if (tmp_symtree
!= NULL
&& (tmp_sym
= tmp_symtree
->n
.sym
) != NULL
4223 && (!tmp_sym
->attr
.generic
4224 || (tmp_sym
= gfc_find_dt_in_generic (tmp_sym
)) != NULL
)
4225 && tmp_sym
->from_intmod
== INTMOD_ISO_C_BINDING
)
4227 if (tmp_sym
->attr
.flavor
== FL_DERIVED
4228 && !get_iso_c_binding_dt (tmp_sym
->intmod_sym_id
))
4230 gfc_dt_list
*dt_list
;
4231 dt_list
= gfc_get_dt_list ();
4232 dt_list
->derived
= tmp_sym
;
4233 dt_list
->next
= gfc_derived_types
;
4234 gfc_derived_types
= dt_list
;
4240 /* Create the sym tree in the current ns. */
4243 tmp_symtree
= gfc_get_unique_symtree (gfc_current_ns
);
4244 tmp_sym
= gfc_new_symbol (name
, gfc_current_ns
);
4246 /* Add to the list of tentative symbols. */
4247 latest_undo_chgset
->syms
.safe_push (tmp_sym
);
4248 tmp_sym
->old_symbol
= NULL
;
4250 tmp_sym
->gfc_new
= 1;
4252 tmp_symtree
->n
.sym
= tmp_sym
;
4257 gfc_get_sym_tree (name
, gfc_current_ns
, &tmp_symtree
, false);
4258 gcc_assert (tmp_symtree
);
4259 tmp_sym
= tmp_symtree
->n
.sym
;
4262 /* Say what module this symbol belongs to. */
4263 tmp_sym
->module
= gfc_get_string (mod_name
);
4264 tmp_sym
->from_intmod
= INTMOD_ISO_C_BINDING
;
4265 tmp_sym
->intmod_sym_id
= s
;
4266 tmp_sym
->attr
.is_iso_c
= 1;
4267 tmp_sym
->attr
.use_assoc
= 1;
4269 gcc_assert (dt_symtree
== NULL
|| s
== ISOCBINDING_NULL_FUNPTR
4270 || s
== ISOCBINDING_NULL_PTR
);
4275 #define NAMED_INTCST(a,b,c,d) case a :
4276 #define NAMED_REALCST(a,b,c,d) case a :
4277 #define NAMED_CMPXCST(a,b,c,d) case a :
4278 #define NAMED_LOGCST(a,b,c) case a :
4279 #define NAMED_CHARKNDCST(a,b,c) case a :
4280 #include "iso-c-binding.def"
4282 tmp_sym
->value
= gfc_get_int_expr (gfc_default_integer_kind
, NULL
,
4283 c_interop_kinds_table
[s
].value
);
4285 /* Initialize an integer constant expression node. */
4286 tmp_sym
->attr
.flavor
= FL_PARAMETER
;
4287 tmp_sym
->ts
.type
= BT_INTEGER
;
4288 tmp_sym
->ts
.kind
= gfc_default_integer_kind
;
4290 /* Mark this type as a C interoperable one. */
4291 tmp_sym
->ts
.is_c_interop
= 1;
4292 tmp_sym
->ts
.is_iso_c
= 1;
4293 tmp_sym
->value
->ts
.is_c_interop
= 1;
4294 tmp_sym
->value
->ts
.is_iso_c
= 1;
4295 tmp_sym
->attr
.is_c_interop
= 1;
4297 /* Tell what f90 type this c interop kind is valid. */
4298 tmp_sym
->ts
.f90_type
= c_interop_kinds_table
[s
].f90_type
;
4303 #define NAMED_CHARCST(a,b,c) case a :
4304 #include "iso-c-binding.def"
4306 /* Initialize an integer constant expression node for the
4307 length of the character. */
4308 tmp_sym
->value
= gfc_get_character_expr (gfc_default_character_kind
,
4309 &gfc_current_locus
, NULL
, 1);
4310 tmp_sym
->value
->ts
.is_c_interop
= 1;
4311 tmp_sym
->value
->ts
.is_iso_c
= 1;
4312 tmp_sym
->value
->value
.character
.length
= 1;
4313 tmp_sym
->value
->value
.character
.string
[0]
4314 = (gfc_char_t
) c_interop_kinds_table
[s
].value
;
4315 tmp_sym
->ts
.u
.cl
= gfc_new_charlen (gfc_current_ns
, NULL
);
4316 tmp_sym
->ts
.u
.cl
->length
= gfc_get_int_expr (gfc_default_integer_kind
,
4319 /* May not need this in both attr and ts, but do need in
4320 attr for writing module file. */
4321 tmp_sym
->attr
.is_c_interop
= 1;
4323 tmp_sym
->attr
.flavor
= FL_PARAMETER
;
4324 tmp_sym
->ts
.type
= BT_CHARACTER
;
4326 /* Need to set it to the C_CHAR kind. */
4327 tmp_sym
->ts
.kind
= gfc_default_character_kind
;
4329 /* Mark this type as a C interoperable one. */
4330 tmp_sym
->ts
.is_c_interop
= 1;
4331 tmp_sym
->ts
.is_iso_c
= 1;
4333 /* Tell what f90 type this c interop kind is valid. */
4334 tmp_sym
->ts
.f90_type
= BT_CHARACTER
;
4338 case ISOCBINDING_PTR
:
4339 case ISOCBINDING_FUNPTR
:
4342 gfc_dt_list
**dt_list_ptr
= NULL
;
4343 gfc_component
*tmp_comp
= NULL
;
4345 /* Generate real derived type. */
4350 const char *hidden_name
;
4351 gfc_interface
*intr
, *head
;
4353 hidden_name
= gfc_get_string ("%c%s",
4354 (char) TOUPPER ((unsigned char)
4357 tmp_symtree
= gfc_find_symtree (gfc_current_ns
->sym_root
,
4359 gcc_assert (tmp_symtree
== NULL
);
4360 gfc_get_sym_tree (hidden_name
, gfc_current_ns
, &tmp_symtree
, false);
4361 dt_sym
= tmp_symtree
->n
.sym
;
4362 dt_sym
->name
= gfc_get_string (s
== ISOCBINDING_PTR
4363 ? "c_ptr" : "c_funptr");
4365 /* Generate an artificial generic function. */
4366 head
= tmp_sym
->generic
;
4367 intr
= gfc_get_interface ();
4369 intr
->where
= gfc_current_locus
;
4371 tmp_sym
->generic
= intr
;
4373 if (!tmp_sym
->attr
.generic
4374 && !gfc_add_generic (&tmp_sym
->attr
, tmp_sym
->name
, NULL
))
4377 if (!tmp_sym
->attr
.function
4378 && !gfc_add_function (&tmp_sym
->attr
, tmp_sym
->name
, NULL
))
4382 /* Say what module this symbol belongs to. */
4383 dt_sym
->module
= gfc_get_string (mod_name
);
4384 dt_sym
->from_intmod
= INTMOD_ISO_C_BINDING
;
4385 dt_sym
->intmod_sym_id
= s
;
4386 dt_sym
->attr
.use_assoc
= 1;
4388 /* Initialize an integer constant expression node. */
4389 dt_sym
->attr
.flavor
= FL_DERIVED
;
4390 dt_sym
->ts
.is_c_interop
= 1;
4391 dt_sym
->attr
.is_c_interop
= 1;
4392 dt_sym
->attr
.private_comp
= 1;
4393 dt_sym
->component_access
= ACCESS_PRIVATE
;
4394 dt_sym
->ts
.is_iso_c
= 1;
4395 dt_sym
->ts
.type
= BT_DERIVED
;
4396 dt_sym
->ts
.f90_type
= BT_VOID
;
4398 /* A derived type must have the bind attribute to be
4399 interoperable (J3/04-007, Section 15.2.3), even though
4400 the binding label is not used. */
4401 dt_sym
->attr
.is_bind_c
= 1;
4403 dt_sym
->attr
.referenced
= 1;
4404 dt_sym
->ts
.u
.derived
= dt_sym
;
4406 /* Add the symbol created for the derived type to the current ns. */
4407 dt_list_ptr
= &(gfc_derived_types
);
4408 while (*dt_list_ptr
!= NULL
&& (*dt_list_ptr
)->next
!= NULL
)
4409 dt_list_ptr
= &((*dt_list_ptr
)->next
);
4411 /* There is already at least one derived type in the list, so append
4412 the one we're currently building for c_ptr or c_funptr. */
4413 if (*dt_list_ptr
!= NULL
)
4414 dt_list_ptr
= &((*dt_list_ptr
)->next
);
4415 (*dt_list_ptr
) = gfc_get_dt_list ();
4416 (*dt_list_ptr
)->derived
= dt_sym
;
4417 (*dt_list_ptr
)->next
= NULL
;
4419 gfc_add_component (dt_sym
, "c_address", &tmp_comp
);
4420 if (tmp_comp
== NULL
)
4423 tmp_comp
->ts
.type
= BT_INTEGER
;
4425 /* Set this because the module will need to read/write this field. */
4426 tmp_comp
->ts
.f90_type
= BT_INTEGER
;
4428 /* The kinds for c_ptr and c_funptr are the same. */
4429 index
= get_c_kind ("c_ptr", c_interop_kinds_table
);
4430 tmp_comp
->ts
.kind
= c_interop_kinds_table
[index
].value
;
4431 tmp_comp
->attr
.access
= ACCESS_PRIVATE
;
4433 /* Mark the component as C interoperable. */
4434 tmp_comp
->ts
.is_c_interop
= 1;
4439 case ISOCBINDING_NULL_PTR
:
4440 case ISOCBINDING_NULL_FUNPTR
:
4441 gen_special_c_interop_ptr (tmp_sym
, dt_symtree
);
4447 gfc_commit_symbol (tmp_sym
);
4452 /* Check that a symbol is already typed. If strict is not set, an untyped
4453 symbol is acceptable for non-standard-conforming mode. */
4456 gfc_check_symbol_typed (gfc_symbol
* sym
, gfc_namespace
* ns
,
4457 bool strict
, locus where
)
4461 if (gfc_matching_prefix
)
4464 /* Check for the type and try to give it an implicit one. */
4465 if (sym
->ts
.type
== BT_UNKNOWN
4466 && !gfc_set_default_type (sym
, 0, ns
))
4470 gfc_error ("Symbol %qs is used before it is typed at %L",
4475 if (!gfc_notify_std (GFC_STD_GNU
, "Symbol %qs is used before"
4476 " it is typed at %L", sym
->name
, &where
))
4480 /* Everything is ok. */
4485 /* Construct a typebound-procedure structure. Those are stored in a tentative
4486 list and marked `error' until symbols are committed. */
4489 gfc_get_typebound_proc (gfc_typebound_proc
*tb0
)
4491 gfc_typebound_proc
*result
;
4493 result
= XCNEW (gfc_typebound_proc
);
4498 latest_undo_chgset
->tbps
.safe_push (result
);
4504 /* Get the super-type of a given derived type. */
4507 gfc_get_derived_super_type (gfc_symbol
* derived
)
4509 gcc_assert (derived
);
4511 if (derived
->attr
.generic
)
4512 derived
= gfc_find_dt_in_generic (derived
);
4514 if (!derived
->attr
.extension
)
4517 gcc_assert (derived
->components
);
4518 gcc_assert (derived
->components
->ts
.type
== BT_DERIVED
);
4519 gcc_assert (derived
->components
->ts
.u
.derived
);
4521 if (derived
->components
->ts
.u
.derived
->attr
.generic
)
4522 return gfc_find_dt_in_generic (derived
->components
->ts
.u
.derived
);
4524 return derived
->components
->ts
.u
.derived
;
4528 /* Get the ultimate super-type of a given derived type. */
4531 gfc_get_ultimate_derived_super_type (gfc_symbol
* derived
)
4533 if (!derived
->attr
.extension
)
4536 derived
= gfc_get_derived_super_type (derived
);
4538 if (derived
->attr
.extension
)
4539 return gfc_get_ultimate_derived_super_type (derived
);
4545 /* Check if a derived type t2 is an extension of (or equal to) a type t1. */
4548 gfc_type_is_extension_of (gfc_symbol
*t1
, gfc_symbol
*t2
)
4550 while (!gfc_compare_derived_types (t1
, t2
) && t2
->attr
.extension
)
4551 t2
= gfc_get_derived_super_type (t2
);
4552 return gfc_compare_derived_types (t1
, t2
);
4556 /* Check if two typespecs are type compatible (F03:5.1.1.2):
4557 If ts1 is nonpolymorphic, ts2 must be the same type.
4558 If ts1 is polymorphic (CLASS), ts2 must be an extension of ts1. */
4561 gfc_type_compatible (gfc_typespec
*ts1
, gfc_typespec
*ts2
)
4563 bool is_class1
= (ts1
->type
== BT_CLASS
);
4564 bool is_class2
= (ts2
->type
== BT_CLASS
);
4565 bool is_derived1
= (ts1
->type
== BT_DERIVED
);
4566 bool is_derived2
= (ts2
->type
== BT_DERIVED
);
4569 && ts1
->u
.derived
->components
4570 && ((ts1
->u
.derived
->attr
.is_class
4571 && ts1
->u
.derived
->components
->ts
.u
.derived
->attr
4572 .unlimited_polymorphic
)
4573 || ts1
->u
.derived
->attr
.unlimited_polymorphic
))
4576 if (!is_derived1
&& !is_derived2
&& !is_class1
&& !is_class2
)
4577 return (ts1
->type
== ts2
->type
);
4579 if (is_derived1
&& is_derived2
)
4580 return gfc_compare_derived_types (ts1
->u
.derived
, ts2
->u
.derived
);
4582 if (is_derived1
&& is_class2
)
4583 return gfc_compare_derived_types (ts1
->u
.derived
,
4584 ts2
->u
.derived
->attr
.is_class
?
4585 ts2
->u
.derived
->components
->ts
.u
.derived
4587 if (is_class1
&& is_derived2
)
4588 return gfc_type_is_extension_of (ts1
->u
.derived
->attr
.is_class
?
4589 ts1
->u
.derived
->components
->ts
.u
.derived
4592 else if (is_class1
&& is_class2
)
4593 return gfc_type_is_extension_of (ts1
->u
.derived
->attr
.is_class
?
4594 ts1
->u
.derived
->components
->ts
.u
.derived
4596 ts2
->u
.derived
->attr
.is_class
?
4597 ts2
->u
.derived
->components
->ts
.u
.derived
4604 /* Find the parent-namespace of the current function. If we're inside
4605 BLOCK constructs, it may not be the current one. */
4608 gfc_find_proc_namespace (gfc_namespace
* ns
)
4610 while (ns
->construct_entities
)
4620 /* Check if an associate-variable should be translated as an `implicit' pointer
4621 internally (if it is associated to a variable and not an array with
4625 gfc_is_associate_pointer (gfc_symbol
* sym
)
4630 if (sym
->ts
.type
== BT_CLASS
)
4633 if (!sym
->assoc
->variable
)
4636 if (sym
->attr
.dimension
&& sym
->as
->type
!= AS_EXPLICIT
)
4644 gfc_find_dt_in_generic (gfc_symbol
*sym
)
4646 gfc_interface
*intr
= NULL
;
4648 if (!sym
|| sym
->attr
.flavor
== FL_DERIVED
)
4651 if (sym
->attr
.generic
)
4652 for (intr
= sym
->generic
; intr
; intr
= intr
->next
)
4653 if (intr
->sym
->attr
.flavor
== FL_DERIVED
)
4655 return intr
? intr
->sym
: NULL
;
4659 /* Get the dummy arguments from a procedure symbol. If it has been declared
4660 via a PROCEDURE statement with a named interface, ts.interface will be set
4661 and the arguments need to be taken from there. */
4663 gfc_formal_arglist
*
4664 gfc_sym_get_dummy_args (gfc_symbol
*sym
)
4666 gfc_formal_arglist
*dummies
;
4668 dummies
= sym
->formal
;
4669 if (dummies
== NULL
&& sym
->ts
.interface
!= NULL
)
4670 dummies
= sym
->ts
.interface
->formal
;