1 /* Maintain binary trees of symbols.
2 Copyright (C) 2000-2014 Free Software Foundation, Inc.
3 Contributed by Andy Vaught
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
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 (gfc_option
.flag_allow_leading_underscore
&& letter
== '_')
224 gfc_internal_error ("Option -fallow-leading-underscore is for use only by "
225 "gfortran developers, and should not be used for "
226 "implicitly typed variables");
228 if (letter
< 'a' || letter
> 'z')
229 gfc_internal_error ("gfc_get_default_type(): Bad symbol '%s'", name
);
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 '%s' at %L has no IMPLICIT type",
257 sym
->name
, &sym
->declared_at
);
258 sym
->attr
.untyped
= 1; /* Ensure we only give an error once. */
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 && gfc_option
.warn_c_binding_type
)
275 /* BIND(C) variables should not be implicitly declared. */
276 gfc_warning_now ("Implicitly declared BIND(C) variable '%s' at %L may "
277 "not be C interoperable", sym
->name
, &sym
->declared_at
);
278 sym
->ts
.f90_type
= sym
->ts
.type
;
281 if (sym
->attr
.dummy
!= 0)
283 if (sym
->ns
->proc_name
!= NULL
284 && (sym
->ns
->proc_name
->attr
.subroutine
!= 0
285 || sym
->ns
->proc_name
->attr
.function
!= 0)
286 && sym
->ns
->proc_name
->attr
.is_bind_c
!= 0
287 && gfc_option
.warn_c_binding_type
)
289 /* Dummy args to a BIND(C) routine may not be interoperable if
290 they are implicitly typed. */
291 gfc_warning_now ("Implicitly declared variable '%s' at %L may not "
292 "be C interoperable but it is a dummy argument to "
293 "the BIND(C) procedure '%s' at %L", sym
->name
,
294 &(sym
->declared_at
), sym
->ns
->proc_name
->name
,
295 &(sym
->ns
->proc_name
->declared_at
));
296 sym
->ts
.f90_type
= sym
->ts
.type
;
304 /* This function is called from parse.c(parse_progunit) to check the
305 type of the function is not implicitly typed in the host namespace
306 and to implicitly type the function result, if necessary. */
309 gfc_check_function_type (gfc_namespace
*ns
)
311 gfc_symbol
*proc
= ns
->proc_name
;
313 if (!proc
->attr
.contained
|| proc
->result
->attr
.implicit_type
)
316 if (proc
->result
->ts
.type
== BT_UNKNOWN
&& proc
->result
->ts
.interface
== NULL
)
318 if (gfc_set_default_type (proc
->result
, 0, gfc_current_ns
))
320 if (proc
->result
!= proc
)
322 proc
->ts
= proc
->result
->ts
;
323 proc
->as
= gfc_copy_array_spec (proc
->result
->as
);
324 proc
->attr
.dimension
= proc
->result
->attr
.dimension
;
325 proc
->attr
.pointer
= proc
->result
->attr
.pointer
;
326 proc
->attr
.allocatable
= proc
->result
->attr
.allocatable
;
329 else if (!proc
->result
->attr
.proc_pointer
)
331 gfc_error ("Function result '%s' at %L has no IMPLICIT type",
332 proc
->result
->name
, &proc
->result
->declared_at
);
333 proc
->result
->attr
.untyped
= 1;
339 /******************** Symbol attribute stuff *********************/
341 /* This is a generic conflict-checker. We do this to avoid having a
342 single conflict in two places. */
344 #define conf(a, b) if (attr->a && attr->b) { a1 = a; a2 = b; goto conflict; }
345 #define conf2(a) if (attr->a) { a2 = a; goto conflict; }
346 #define conf_std(a, b, std) if (attr->a && attr->b)\
355 check_conflict (symbol_attribute
*attr
, const char *name
, locus
*where
)
357 static const char *dummy
= "DUMMY", *save
= "SAVE", *pointer
= "POINTER",
358 *target
= "TARGET", *external
= "EXTERNAL", *intent
= "INTENT",
359 *intent_in
= "INTENT(IN)", *intrinsic
= "INTRINSIC",
360 *intent_out
= "INTENT(OUT)", *intent_inout
= "INTENT(INOUT)",
361 *allocatable
= "ALLOCATABLE", *elemental
= "ELEMENTAL",
362 *privat
= "PRIVATE", *recursive
= "RECURSIVE",
363 *in_common
= "COMMON", *result
= "RESULT", *in_namelist
= "NAMELIST",
364 *publik
= "PUBLIC", *optional
= "OPTIONAL", *entry
= "ENTRY",
365 *function
= "FUNCTION", *subroutine
= "SUBROUTINE",
366 *dimension
= "DIMENSION", *in_equivalence
= "EQUIVALENCE",
367 *use_assoc
= "USE ASSOCIATED", *cray_pointer
= "CRAY POINTER",
368 *cray_pointee
= "CRAY POINTEE", *data
= "DATA", *value
= "VALUE",
369 *volatile_
= "VOLATILE", *is_protected
= "PROTECTED",
370 *is_bind_c
= "BIND(C)", *procedure
= "PROCEDURE",
371 *proc_pointer
= "PROCEDURE POINTER", *abstract
= "ABSTRACT",
372 *asynchronous
= "ASYNCHRONOUS", *codimension
= "CODIMENSION",
373 *contiguous
= "CONTIGUOUS", *generic
= "GENERIC";
374 static const char *threadprivate
= "THREADPRIVATE";
375 static const char *omp_declare_target
= "OMP DECLARE TARGET";
381 where
= &gfc_current_locus
;
383 if (attr
->pointer
&& attr
->intent
!= INTENT_UNKNOWN
)
387 standard
= GFC_STD_F2003
;
391 if (attr
->in_namelist
&& (attr
->allocatable
|| attr
->pointer
))
394 a2
= attr
->allocatable
? allocatable
: pointer
;
395 standard
= GFC_STD_F2003
;
399 /* Check for attributes not allowed in a BLOCK DATA. */
400 if (gfc_current_state () == COMP_BLOCK_DATA
)
404 if (attr
->in_namelist
)
406 if (attr
->allocatable
)
412 if (attr
->access
== ACCESS_PRIVATE
)
414 if (attr
->access
== ACCESS_PUBLIC
)
416 if (attr
->intent
!= INTENT_UNKNOWN
)
422 ("%s attribute not allowed in BLOCK DATA program unit at %L",
428 if (attr
->save
== SAVE_EXPLICIT
)
431 conf (in_common
, save
);
434 switch (attr
->flavor
)
442 a1
= gfc_code2string (flavors
, attr
->flavor
);
446 gfc_error ("Namelist group name at %L cannot have the "
447 "SAVE attribute", where
);
451 /* Conflicts between SAVE and PROCEDURE will be checked at
452 resolution stage, see "resolve_fl_procedure". */
460 conf (dummy
, intrinsic
);
461 conf (dummy
, threadprivate
);
462 conf (dummy
, omp_declare_target
);
463 conf (pointer
, target
);
464 conf (pointer
, intrinsic
);
465 conf (pointer
, elemental
);
466 conf (pointer
, codimension
);
467 conf (allocatable
, elemental
);
469 conf (target
, external
);
470 conf (target
, intrinsic
);
472 if (!attr
->if_source
)
473 conf (external
, dimension
); /* See Fortran 95's R504. */
475 conf (external
, intrinsic
);
476 conf (entry
, intrinsic
);
478 if ((attr
->if_source
== IFSRC_DECL
&& !attr
->procedure
) || attr
->contained
)
479 conf (external
, subroutine
);
481 if (attr
->proc_pointer
&& !gfc_notify_std (GFC_STD_F2003
,
482 "Procedure pointer at %C"))
485 conf (allocatable
, pointer
);
486 conf_std (allocatable
, dummy
, GFC_STD_F2003
);
487 conf_std (allocatable
, function
, GFC_STD_F2003
);
488 conf_std (allocatable
, result
, GFC_STD_F2003
);
489 conf (elemental
, recursive
);
491 conf (in_common
, dummy
);
492 conf (in_common
, allocatable
);
493 conf (in_common
, codimension
);
494 conf (in_common
, result
);
496 conf (in_equivalence
, use_assoc
);
497 conf (in_equivalence
, codimension
);
498 conf (in_equivalence
, dummy
);
499 conf (in_equivalence
, target
);
500 conf (in_equivalence
, pointer
);
501 conf (in_equivalence
, function
);
502 conf (in_equivalence
, result
);
503 conf (in_equivalence
, entry
);
504 conf (in_equivalence
, allocatable
);
505 conf (in_equivalence
, threadprivate
);
506 conf (in_equivalence
, omp_declare_target
);
508 conf (dummy
, result
);
509 conf (entry
, result
);
510 conf (generic
, result
);
512 conf (function
, subroutine
);
514 if (!function
&& !subroutine
)
515 conf (is_bind_c
, dummy
);
517 conf (is_bind_c
, cray_pointer
);
518 conf (is_bind_c
, cray_pointee
);
519 conf (is_bind_c
, codimension
);
520 conf (is_bind_c
, allocatable
);
521 conf (is_bind_c
, elemental
);
523 /* Need to also get volatile attr, according to 5.1 of F2003 draft.
524 Parameter conflict caught below. Also, value cannot be specified
525 for a dummy procedure. */
527 /* Cray pointer/pointee conflicts. */
528 conf (cray_pointer
, cray_pointee
);
529 conf (cray_pointer
, dimension
);
530 conf (cray_pointer
, codimension
);
531 conf (cray_pointer
, contiguous
);
532 conf (cray_pointer
, pointer
);
533 conf (cray_pointer
, target
);
534 conf (cray_pointer
, allocatable
);
535 conf (cray_pointer
, external
);
536 conf (cray_pointer
, intrinsic
);
537 conf (cray_pointer
, in_namelist
);
538 conf (cray_pointer
, function
);
539 conf (cray_pointer
, subroutine
);
540 conf (cray_pointer
, entry
);
542 conf (cray_pointee
, allocatable
);
543 conf (cray_pointee
, contiguous
);
544 conf (cray_pointee
, codimension
);
545 conf (cray_pointee
, intent
);
546 conf (cray_pointee
, optional
);
547 conf (cray_pointee
, dummy
);
548 conf (cray_pointee
, target
);
549 conf (cray_pointee
, intrinsic
);
550 conf (cray_pointee
, pointer
);
551 conf (cray_pointee
, entry
);
552 conf (cray_pointee
, in_common
);
553 conf (cray_pointee
, in_equivalence
);
554 conf (cray_pointee
, threadprivate
);
555 conf (cray_pointee
, omp_declare_target
);
558 conf (data
, function
);
560 conf (data
, allocatable
);
562 conf (value
, pointer
)
563 conf (value
, allocatable
)
564 conf (value
, subroutine
)
565 conf (value
, function
)
566 conf (value
, volatile_
)
567 conf (value
, dimension
)
568 conf (value
, codimension
)
569 conf (value
, external
)
571 conf (codimension
, result
)
574 && (attr
->intent
== INTENT_OUT
|| attr
->intent
== INTENT_INOUT
))
577 a2
= attr
->intent
== INTENT_OUT
? intent_out
: intent_inout
;
581 conf (is_protected
, intrinsic
)
582 conf (is_protected
, in_common
)
584 conf (asynchronous
, intrinsic
)
585 conf (asynchronous
, external
)
587 conf (volatile_
, intrinsic
)
588 conf (volatile_
, external
)
590 if (attr
->volatile_
&& attr
->intent
== INTENT_IN
)
597 conf (procedure
, allocatable
)
598 conf (procedure
, dimension
)
599 conf (procedure
, codimension
)
600 conf (procedure
, intrinsic
)
601 conf (procedure
, target
)
602 conf (procedure
, value
)
603 conf (procedure
, volatile_
)
604 conf (procedure
, asynchronous
)
605 conf (procedure
, entry
)
607 conf (proc_pointer
, abstract
)
609 conf (entry
, omp_declare_target
)
611 a1
= gfc_code2string (flavors
, attr
->flavor
);
613 if (attr
->in_namelist
614 && attr
->flavor
!= FL_VARIABLE
615 && attr
->flavor
!= FL_PROCEDURE
616 && attr
->flavor
!= FL_UNKNOWN
)
622 switch (attr
->flavor
)
632 conf2 (asynchronous
);
635 conf2 (is_protected
);
645 conf2 (threadprivate
);
646 conf2 (omp_declare_target
);
648 if (attr
->access
== ACCESS_PUBLIC
|| attr
->access
== ACCESS_PRIVATE
)
650 a2
= attr
->access
== ACCESS_PUBLIC
? publik
: privat
;
651 gfc_error ("%s attribute applied to %s %s at %L", a2
, a1
,
658 gfc_error_now ("BIND(C) applied to %s %s at %L", a1
, name
, where
);
672 /* Conflicts with INTENT, SAVE and RESULT will be checked
673 at resolution stage, see "resolve_fl_procedure". */
675 if (attr
->subroutine
)
681 conf2 (asynchronous
);
686 if (!attr
->proc_pointer
)
687 conf2 (threadprivate
);
690 if (!attr
->proc_pointer
)
695 case PROC_ST_FUNCTION
:
706 conf2 (threadprivate
);
726 conf2 (threadprivate
);
728 conf2 (omp_declare_target
);
730 if (attr
->intent
!= INTENT_UNKNOWN
)
747 conf2 (is_protected
);
753 conf2 (asynchronous
);
754 conf2 (threadprivate
);
770 gfc_error ("%s attribute conflicts with %s attribute at %L",
773 gfc_error ("%s attribute conflicts with %s attribute in '%s' at %L",
774 a1
, a2
, name
, where
);
781 return gfc_notify_std (standard
, "%s attribute "
782 "with %s attribute at %L", a1
, a2
,
787 return gfc_notify_std (standard
, "%s attribute "
788 "with %s attribute in '%s' at %L",
789 a1
, a2
, name
, where
);
798 /* Mark a symbol as referenced. */
801 gfc_set_sym_referenced (gfc_symbol
*sym
)
804 if (sym
->attr
.referenced
)
807 sym
->attr
.referenced
= 1;
809 /* Remember which order dummy variables are accessed in. */
811 sym
->dummy_order
= next_dummy_order
++;
815 /* Common subroutine called by attribute changing subroutines in order
816 to prevent them from changing a symbol that has been
817 use-associated. Returns zero if it is OK to change the symbol,
821 check_used (symbol_attribute
*attr
, const char *name
, locus
*where
)
824 if (attr
->use_assoc
== 0)
828 where
= &gfc_current_locus
;
831 gfc_error ("Cannot change attributes of USE-associated symbol at %L",
834 gfc_error ("Cannot change attributes of USE-associated symbol %s at %L",
841 /* Generate an error because of a duplicate attribute. */
844 duplicate_attr (const char *attr
, locus
*where
)
848 where
= &gfc_current_locus
;
850 gfc_error ("Duplicate %s attribute specified at %L", attr
, where
);
855 gfc_add_ext_attribute (symbol_attribute
*attr
, ext_attr_id_t ext_attr
,
856 locus
*where ATTRIBUTE_UNUSED
)
858 attr
->ext_attr
|= 1 << ext_attr
;
863 /* Called from decl.c (attr_decl1) to check attributes, when declared
867 gfc_add_attribute (symbol_attribute
*attr
, locus
*where
)
869 if (check_used (attr
, NULL
, where
))
872 return check_conflict (attr
, NULL
, where
);
877 gfc_add_allocatable (symbol_attribute
*attr
, locus
*where
)
880 if (check_used (attr
, NULL
, where
))
883 if (attr
->allocatable
)
885 duplicate_attr ("ALLOCATABLE", where
);
889 if (attr
->flavor
== FL_PROCEDURE
&& attr
->if_source
== IFSRC_IFBODY
890 && !gfc_find_state (COMP_INTERFACE
))
892 gfc_error ("ALLOCATABLE specified outside of INTERFACE body at %L",
897 attr
->allocatable
= 1;
898 return check_conflict (attr
, NULL
, where
);
903 gfc_add_codimension (symbol_attribute
*attr
, const char *name
, locus
*where
)
906 if (check_used (attr
, name
, where
))
909 if (attr
->codimension
)
911 duplicate_attr ("CODIMENSION", where
);
915 if (attr
->flavor
== FL_PROCEDURE
&& attr
->if_source
== IFSRC_IFBODY
916 && !gfc_find_state (COMP_INTERFACE
))
918 gfc_error ("CODIMENSION specified for '%s' outside its INTERFACE body "
919 "at %L", name
, where
);
923 attr
->codimension
= 1;
924 return check_conflict (attr
, name
, where
);
929 gfc_add_dimension (symbol_attribute
*attr
, const char *name
, locus
*where
)
932 if (check_used (attr
, name
, where
))
937 duplicate_attr ("DIMENSION", where
);
941 if (attr
->flavor
== FL_PROCEDURE
&& attr
->if_source
== IFSRC_IFBODY
942 && !gfc_find_state (COMP_INTERFACE
))
944 gfc_error ("DIMENSION specified for '%s' outside its INTERFACE body "
945 "at %L", name
, where
);
950 return check_conflict (attr
, name
, where
);
955 gfc_add_contiguous (symbol_attribute
*attr
, const char *name
, locus
*where
)
958 if (check_used (attr
, name
, where
))
961 attr
->contiguous
= 1;
962 return check_conflict (attr
, name
, where
);
967 gfc_add_external (symbol_attribute
*attr
, locus
*where
)
970 if (check_used (attr
, NULL
, where
))
975 duplicate_attr ("EXTERNAL", where
);
979 if (attr
->pointer
&& attr
->if_source
!= IFSRC_IFBODY
)
982 attr
->proc_pointer
= 1;
987 return check_conflict (attr
, NULL
, where
);
992 gfc_add_intrinsic (symbol_attribute
*attr
, locus
*where
)
995 if (check_used (attr
, NULL
, where
))
1000 duplicate_attr ("INTRINSIC", where
);
1004 attr
->intrinsic
= 1;
1006 return check_conflict (attr
, NULL
, where
);
1011 gfc_add_optional (symbol_attribute
*attr
, locus
*where
)
1014 if (check_used (attr
, NULL
, where
))
1019 duplicate_attr ("OPTIONAL", where
);
1024 return check_conflict (attr
, NULL
, where
);
1029 gfc_add_pointer (symbol_attribute
*attr
, locus
*where
)
1032 if (check_used (attr
, NULL
, where
))
1035 if (attr
->pointer
&& !(attr
->if_source
== IFSRC_IFBODY
1036 && !gfc_find_state (COMP_INTERFACE
)))
1038 duplicate_attr ("POINTER", where
);
1042 if (attr
->procedure
|| (attr
->external
&& attr
->if_source
!= IFSRC_IFBODY
)
1043 || (attr
->if_source
== IFSRC_IFBODY
1044 && !gfc_find_state (COMP_INTERFACE
)))
1045 attr
->proc_pointer
= 1;
1049 return check_conflict (attr
, NULL
, where
);
1054 gfc_add_cray_pointer (symbol_attribute
*attr
, locus
*where
)
1057 if (check_used (attr
, NULL
, where
))
1060 attr
->cray_pointer
= 1;
1061 return check_conflict (attr
, NULL
, where
);
1066 gfc_add_cray_pointee (symbol_attribute
*attr
, locus
*where
)
1069 if (check_used (attr
, NULL
, where
))
1072 if (attr
->cray_pointee
)
1074 gfc_error ("Cray Pointee at %L appears in multiple pointer()"
1075 " statements", where
);
1079 attr
->cray_pointee
= 1;
1080 return check_conflict (attr
, NULL
, where
);
1085 gfc_add_protected (symbol_attribute
*attr
, const char *name
, locus
*where
)
1087 if (check_used (attr
, name
, where
))
1090 if (attr
->is_protected
)
1092 if (!gfc_notify_std (GFC_STD_LEGACY
,
1093 "Duplicate PROTECTED attribute specified at %L",
1098 attr
->is_protected
= 1;
1099 return check_conflict (attr
, name
, where
);
1104 gfc_add_result (symbol_attribute
*attr
, const char *name
, locus
*where
)
1107 if (check_used (attr
, name
, where
))
1111 return check_conflict (attr
, name
, where
);
1116 gfc_add_save (symbol_attribute
*attr
, save_state s
, const char *name
,
1120 if (check_used (attr
, name
, where
))
1123 if (s
== SAVE_EXPLICIT
&& gfc_pure (NULL
))
1126 ("SAVE attribute at %L cannot be specified in a PURE procedure",
1131 if (s
== SAVE_EXPLICIT
)
1132 gfc_unset_implicit_pure (NULL
);
1134 if (s
== SAVE_EXPLICIT
&& attr
->save
== SAVE_EXPLICIT
)
1136 if (!gfc_notify_std (GFC_STD_LEGACY
,
1137 "Duplicate SAVE attribute specified at %L",
1143 return check_conflict (attr
, name
, where
);
1148 gfc_add_value (symbol_attribute
*attr
, const char *name
, locus
*where
)
1151 if (check_used (attr
, name
, where
))
1156 if (!gfc_notify_std (GFC_STD_LEGACY
,
1157 "Duplicate VALUE attribute specified at %L",
1163 return check_conflict (attr
, name
, where
);
1168 gfc_add_volatile (symbol_attribute
*attr
, const char *name
, locus
*where
)
1170 /* No check_used needed as 11.2.1 of the F2003 standard allows
1171 that the local identifier made accessible by a use statement can be
1172 given a VOLATILE attribute - unless it is a coarray (F2008, C560). */
1174 if (attr
->volatile_
&& attr
->volatile_ns
== gfc_current_ns
)
1175 if (!gfc_notify_std (GFC_STD_LEGACY
,
1176 "Duplicate VOLATILE attribute specified at %L",
1180 attr
->volatile_
= 1;
1181 attr
->volatile_ns
= gfc_current_ns
;
1182 return check_conflict (attr
, name
, where
);
1187 gfc_add_asynchronous (symbol_attribute
*attr
, const char *name
, locus
*where
)
1189 /* No check_used needed as 11.2.1 of the F2003 standard allows
1190 that the local identifier made accessible by a use statement can be
1191 given a ASYNCHRONOUS attribute. */
1193 if (attr
->asynchronous
&& attr
->asynchronous_ns
== gfc_current_ns
)
1194 if (!gfc_notify_std (GFC_STD_LEGACY
,
1195 "Duplicate ASYNCHRONOUS attribute specified at %L",
1199 attr
->asynchronous
= 1;
1200 attr
->asynchronous_ns
= gfc_current_ns
;
1201 return check_conflict (attr
, name
, where
);
1206 gfc_add_threadprivate (symbol_attribute
*attr
, const char *name
, locus
*where
)
1209 if (check_used (attr
, name
, where
))
1212 if (attr
->threadprivate
)
1214 duplicate_attr ("THREADPRIVATE", where
);
1218 attr
->threadprivate
= 1;
1219 return check_conflict (attr
, name
, where
);
1224 gfc_add_omp_declare_target (symbol_attribute
*attr
, const char *name
,
1228 if (check_used (attr
, name
, where
))
1231 if (attr
->omp_declare_target
)
1234 attr
->omp_declare_target
= 1;
1235 return check_conflict (attr
, name
, where
);
1240 gfc_add_target (symbol_attribute
*attr
, locus
*where
)
1243 if (check_used (attr
, NULL
, where
))
1248 duplicate_attr ("TARGET", where
);
1253 return check_conflict (attr
, NULL
, where
);
1258 gfc_add_dummy (symbol_attribute
*attr
, const char *name
, locus
*where
)
1261 if (check_used (attr
, name
, where
))
1264 /* Duplicate dummy arguments are allowed due to ENTRY statements. */
1266 return check_conflict (attr
, name
, where
);
1271 gfc_add_in_common (symbol_attribute
*attr
, const char *name
, locus
*where
)
1274 if (check_used (attr
, name
, where
))
1277 /* Duplicate attribute already checked for. */
1278 attr
->in_common
= 1;
1279 return check_conflict (attr
, name
, where
);
1284 gfc_add_in_equivalence (symbol_attribute
*attr
, const char *name
, locus
*where
)
1287 /* Duplicate attribute already checked for. */
1288 attr
->in_equivalence
= 1;
1289 if (!check_conflict (attr
, name
, where
))
1292 if (attr
->flavor
== FL_VARIABLE
)
1295 return gfc_add_flavor (attr
, FL_VARIABLE
, name
, where
);
1300 gfc_add_data (symbol_attribute
*attr
, const char *name
, locus
*where
)
1303 if (check_used (attr
, name
, where
))
1307 return check_conflict (attr
, name
, where
);
1312 gfc_add_in_namelist (symbol_attribute
*attr
, const char *name
, locus
*where
)
1315 attr
->in_namelist
= 1;
1316 return check_conflict (attr
, name
, where
);
1321 gfc_add_sequence (symbol_attribute
*attr
, const char *name
, locus
*where
)
1324 if (check_used (attr
, name
, where
))
1328 return check_conflict (attr
, name
, where
);
1333 gfc_add_elemental (symbol_attribute
*attr
, locus
*where
)
1336 if (check_used (attr
, NULL
, where
))
1339 if (attr
->elemental
)
1341 duplicate_attr ("ELEMENTAL", where
);
1345 attr
->elemental
= 1;
1346 return check_conflict (attr
, NULL
, where
);
1351 gfc_add_pure (symbol_attribute
*attr
, locus
*where
)
1354 if (check_used (attr
, NULL
, where
))
1359 duplicate_attr ("PURE", where
);
1364 return check_conflict (attr
, NULL
, where
);
1369 gfc_add_recursive (symbol_attribute
*attr
, locus
*where
)
1372 if (check_used (attr
, NULL
, where
))
1375 if (attr
->recursive
)
1377 duplicate_attr ("RECURSIVE", where
);
1381 attr
->recursive
= 1;
1382 return check_conflict (attr
, NULL
, where
);
1387 gfc_add_entry (symbol_attribute
*attr
, const char *name
, locus
*where
)
1390 if (check_used (attr
, name
, where
))
1395 duplicate_attr ("ENTRY", where
);
1400 return check_conflict (attr
, name
, where
);
1405 gfc_add_function (symbol_attribute
*attr
, const char *name
, locus
*where
)
1408 if (attr
->flavor
!= FL_PROCEDURE
1409 && !gfc_add_flavor (attr
, FL_PROCEDURE
, name
, where
))
1413 return check_conflict (attr
, name
, where
);
1418 gfc_add_subroutine (symbol_attribute
*attr
, const char *name
, locus
*where
)
1421 if (attr
->flavor
!= FL_PROCEDURE
1422 && !gfc_add_flavor (attr
, FL_PROCEDURE
, name
, where
))
1425 attr
->subroutine
= 1;
1426 return check_conflict (attr
, name
, where
);
1431 gfc_add_generic (symbol_attribute
*attr
, const char *name
, locus
*where
)
1434 if (attr
->flavor
!= FL_PROCEDURE
1435 && !gfc_add_flavor (attr
, FL_PROCEDURE
, name
, where
))
1439 return check_conflict (attr
, name
, where
);
1444 gfc_add_proc (symbol_attribute
*attr
, const char *name
, locus
*where
)
1447 if (check_used (attr
, NULL
, where
))
1450 if (attr
->flavor
!= FL_PROCEDURE
1451 && !gfc_add_flavor (attr
, FL_PROCEDURE
, name
, where
))
1454 if (attr
->procedure
)
1456 duplicate_attr ("PROCEDURE", where
);
1460 attr
->procedure
= 1;
1462 return check_conflict (attr
, NULL
, where
);
1467 gfc_add_abstract (symbol_attribute
* attr
, locus
* where
)
1471 duplicate_attr ("ABSTRACT", where
);
1477 return check_conflict (attr
, NULL
, where
);
1481 /* Flavors are special because some flavors are not what Fortran
1482 considers attributes and can be reaffirmed multiple times. */
1485 gfc_add_flavor (symbol_attribute
*attr
, sym_flavor f
, const char *name
,
1489 if ((f
== FL_PROGRAM
|| f
== FL_BLOCK_DATA
|| f
== FL_MODULE
1490 || f
== FL_PARAMETER
|| f
== FL_LABEL
|| f
== FL_DERIVED
1491 || f
== FL_NAMELIST
) && check_used (attr
, name
, where
))
1494 if (attr
->flavor
== f
&& f
== FL_VARIABLE
)
1497 if (attr
->flavor
!= FL_UNKNOWN
)
1500 where
= &gfc_current_locus
;
1503 gfc_error ("%s attribute of '%s' conflicts with %s attribute at %L",
1504 gfc_code2string (flavors
, attr
->flavor
), name
,
1505 gfc_code2string (flavors
, f
), where
);
1507 gfc_error ("%s attribute conflicts with %s attribute at %L",
1508 gfc_code2string (flavors
, attr
->flavor
),
1509 gfc_code2string (flavors
, f
), where
);
1516 return check_conflict (attr
, name
, where
);
1521 gfc_add_procedure (symbol_attribute
*attr
, procedure_type t
,
1522 const char *name
, locus
*where
)
1525 if (check_used (attr
, name
, where
))
1528 if (attr
->flavor
!= FL_PROCEDURE
1529 && !gfc_add_flavor (attr
, FL_PROCEDURE
, name
, where
))
1533 where
= &gfc_current_locus
;
1535 if (attr
->proc
!= PROC_UNKNOWN
)
1537 gfc_error ("%s procedure at %L is already declared as %s procedure",
1538 gfc_code2string (procedures
, t
), where
,
1539 gfc_code2string (procedures
, attr
->proc
));
1546 /* Statement functions are always scalar and functions. */
1547 if (t
== PROC_ST_FUNCTION
1548 && ((!attr
->function
&& !gfc_add_function (attr
, name
, where
))
1549 || attr
->dimension
))
1552 return check_conflict (attr
, name
, where
);
1557 gfc_add_intent (symbol_attribute
*attr
, sym_intent intent
, locus
*where
)
1560 if (check_used (attr
, NULL
, where
))
1563 if (attr
->intent
== INTENT_UNKNOWN
)
1565 attr
->intent
= intent
;
1566 return check_conflict (attr
, NULL
, where
);
1570 where
= &gfc_current_locus
;
1572 gfc_error ("INTENT (%s) conflicts with INTENT(%s) at %L",
1573 gfc_intent_string (attr
->intent
),
1574 gfc_intent_string (intent
), where
);
1580 /* No checks for use-association in public and private statements. */
1583 gfc_add_access (symbol_attribute
*attr
, gfc_access access
,
1584 const char *name
, locus
*where
)
1587 if (attr
->access
== ACCESS_UNKNOWN
1588 || (attr
->use_assoc
&& attr
->access
!= ACCESS_PRIVATE
))
1590 attr
->access
= access
;
1591 return check_conflict (attr
, name
, where
);
1595 where
= &gfc_current_locus
;
1596 gfc_error ("ACCESS specification at %L was already specified", where
);
1602 /* Set the is_bind_c field for the given symbol_attribute. */
1605 gfc_add_is_bind_c (symbol_attribute
*attr
, const char *name
, locus
*where
,
1606 int is_proc_lang_bind_spec
)
1609 if (is_proc_lang_bind_spec
== 0 && attr
->flavor
== FL_PROCEDURE
)
1610 gfc_error_now ("BIND(C) attribute at %L can only be used for "
1611 "variables or common blocks", where
);
1612 else if (attr
->is_bind_c
)
1613 gfc_error_now ("Duplicate BIND attribute specified at %L", where
);
1615 attr
->is_bind_c
= 1;
1618 where
= &gfc_current_locus
;
1620 if (!gfc_notify_std (GFC_STD_F2003
, "BIND(C) at %L", where
))
1623 return check_conflict (attr
, name
, where
);
1627 /* Set the extension field for the given symbol_attribute. */
1630 gfc_add_extension (symbol_attribute
*attr
, locus
*where
)
1633 where
= &gfc_current_locus
;
1635 if (attr
->extension
)
1636 gfc_error_now ("Duplicate EXTENDS attribute specified at %L", where
);
1638 attr
->extension
= 1;
1640 if (!gfc_notify_std (GFC_STD_F2003
, "EXTENDS at %L", where
))
1648 gfc_add_explicit_interface (gfc_symbol
*sym
, ifsrc source
,
1649 gfc_formal_arglist
* formal
, locus
*where
)
1652 if (check_used (&sym
->attr
, sym
->name
, where
))
1656 where
= &gfc_current_locus
;
1658 if (sym
->attr
.if_source
!= IFSRC_UNKNOWN
1659 && sym
->attr
.if_source
!= IFSRC_DECL
)
1661 gfc_error ("Symbol '%s' at %L already has an explicit interface",
1666 if (source
== IFSRC_IFBODY
&& (sym
->attr
.dimension
|| sym
->attr
.allocatable
))
1668 gfc_error ("'%s' at %L has attributes specified outside its INTERFACE "
1669 "body", sym
->name
, where
);
1673 sym
->formal
= formal
;
1674 sym
->attr
.if_source
= source
;
1680 /* Add a type to a symbol. */
1683 gfc_add_type (gfc_symbol
*sym
, gfc_typespec
*ts
, locus
*where
)
1689 where
= &gfc_current_locus
;
1692 type
= sym
->result
->ts
.type
;
1694 type
= sym
->ts
.type
;
1696 if (sym
->attr
.result
&& type
== BT_UNKNOWN
&& sym
->ns
->proc_name
)
1697 type
= sym
->ns
->proc_name
->ts
.type
;
1699 if (type
!= BT_UNKNOWN
&& !(sym
->attr
.function
&& sym
->attr
.implicit_type
))
1701 if (sym
->attr
.use_assoc
)
1702 gfc_error ("Symbol '%s' at %L conflicts with symbol from module '%s', "
1703 "use-associated at %L", sym
->name
, where
, sym
->module
,
1706 gfc_error ("Symbol '%s' at %L already has basic type of %s", sym
->name
,
1707 where
, gfc_basic_typename (type
));
1711 if (sym
->attr
.procedure
&& sym
->ts
.interface
)
1713 gfc_error ("Procedure '%s' at %L may not have basic type of %s",
1714 sym
->name
, where
, gfc_basic_typename (ts
->type
));
1718 flavor
= sym
->attr
.flavor
;
1720 if (flavor
== FL_PROGRAM
|| flavor
== FL_BLOCK_DATA
|| flavor
== FL_MODULE
1721 || flavor
== FL_LABEL
1722 || (flavor
== FL_PROCEDURE
&& sym
->attr
.subroutine
)
1723 || flavor
== FL_DERIVED
|| flavor
== FL_NAMELIST
)
1725 gfc_error ("Symbol '%s' at %L cannot have a type", sym
->name
, where
);
1734 /* Clears all attributes. */
1737 gfc_clear_attr (symbol_attribute
*attr
)
1739 memset (attr
, 0, sizeof (symbol_attribute
));
1743 /* Check for missing attributes in the new symbol. Currently does
1744 nothing, but it's not clear that it is unnecessary yet. */
1747 gfc_missing_attr (symbol_attribute
*attr ATTRIBUTE_UNUSED
,
1748 locus
*where ATTRIBUTE_UNUSED
)
1755 /* Copy an attribute to a symbol attribute, bit by bit. Some
1756 attributes have a lot of side-effects but cannot be present given
1757 where we are called from, so we ignore some bits. */
1760 gfc_copy_attr (symbol_attribute
*dest
, symbol_attribute
*src
, locus
*where
)
1762 int is_proc_lang_bind_spec
;
1764 /* In line with the other attributes, we only add bits but do not remove
1765 them; cf. also PR 41034. */
1766 dest
->ext_attr
|= src
->ext_attr
;
1768 if (src
->allocatable
&& !gfc_add_allocatable (dest
, where
))
1771 if (src
->dimension
&& !gfc_add_dimension (dest
, NULL
, where
))
1773 if (src
->codimension
&& !gfc_add_codimension (dest
, NULL
, where
))
1775 if (src
->contiguous
&& !gfc_add_contiguous (dest
, NULL
, where
))
1777 if (src
->optional
&& !gfc_add_optional (dest
, where
))
1779 if (src
->pointer
&& !gfc_add_pointer (dest
, where
))
1781 if (src
->is_protected
&& !gfc_add_protected (dest
, NULL
, where
))
1783 if (src
->save
&& !gfc_add_save (dest
, src
->save
, NULL
, where
))
1785 if (src
->value
&& !gfc_add_value (dest
, NULL
, where
))
1787 if (src
->volatile_
&& !gfc_add_volatile (dest
, NULL
, where
))
1789 if (src
->asynchronous
&& !gfc_add_asynchronous (dest
, NULL
, where
))
1791 if (src
->threadprivate
1792 && !gfc_add_threadprivate (dest
, NULL
, where
))
1794 if (src
->omp_declare_target
1795 && !gfc_add_omp_declare_target (dest
, NULL
, where
))
1797 if (src
->target
&& !gfc_add_target (dest
, where
))
1799 if (src
->dummy
&& !gfc_add_dummy (dest
, NULL
, where
))
1801 if (src
->result
&& !gfc_add_result (dest
, NULL
, where
))
1806 if (src
->in_namelist
&& !gfc_add_in_namelist (dest
, NULL
, where
))
1809 if (src
->in_common
&& !gfc_add_in_common (dest
, NULL
, where
))
1812 if (src
->generic
&& !gfc_add_generic (dest
, NULL
, where
))
1814 if (src
->function
&& !gfc_add_function (dest
, NULL
, where
))
1816 if (src
->subroutine
&& !gfc_add_subroutine (dest
, NULL
, where
))
1819 if (src
->sequence
&& !gfc_add_sequence (dest
, NULL
, where
))
1821 if (src
->elemental
&& !gfc_add_elemental (dest
, where
))
1823 if (src
->pure
&& !gfc_add_pure (dest
, where
))
1825 if (src
->recursive
&& !gfc_add_recursive (dest
, where
))
1828 if (src
->flavor
!= FL_UNKNOWN
1829 && !gfc_add_flavor (dest
, src
->flavor
, NULL
, where
))
1832 if (src
->intent
!= INTENT_UNKNOWN
1833 && !gfc_add_intent (dest
, src
->intent
, where
))
1836 if (src
->access
!= ACCESS_UNKNOWN
1837 && !gfc_add_access (dest
, src
->access
, NULL
, where
))
1840 if (!gfc_missing_attr (dest
, where
))
1843 if (src
->cray_pointer
&& !gfc_add_cray_pointer (dest
, where
))
1845 if (src
->cray_pointee
&& !gfc_add_cray_pointee (dest
, where
))
1848 is_proc_lang_bind_spec
= (src
->flavor
== FL_PROCEDURE
? 1 : 0);
1850 && !gfc_add_is_bind_c (dest
, NULL
, where
, is_proc_lang_bind_spec
))
1853 if (src
->is_c_interop
)
1854 dest
->is_c_interop
= 1;
1858 if (src
->external
&& !gfc_add_external (dest
, where
))
1860 if (src
->intrinsic
&& !gfc_add_intrinsic (dest
, where
))
1862 if (src
->proc_pointer
)
1863 dest
->proc_pointer
= 1;
1872 /************** Component name management ************/
1874 /* Component names of a derived type form their own little namespaces
1875 that are separate from all other spaces. The space is composed of
1876 a singly linked list of gfc_component structures whose head is
1877 located in the parent symbol. */
1880 /* Add a component name to a symbol. The call fails if the name is
1881 already present. On success, the component pointer is modified to
1882 point to the additional component structure. */
1885 gfc_add_component (gfc_symbol
*sym
, const char *name
,
1886 gfc_component
**component
)
1888 gfc_component
*p
, *tail
;
1892 for (p
= sym
->components
; p
; p
= p
->next
)
1894 if (strcmp (p
->name
, name
) == 0)
1896 gfc_error ("Component '%s' at %C already declared at %L",
1904 if (sym
->attr
.extension
1905 && gfc_find_component (sym
->components
->ts
.u
.derived
, name
, true, true))
1907 gfc_error ("Component '%s' at %C already in the parent type "
1908 "at %L", name
, &sym
->components
->ts
.u
.derived
->declared_at
);
1912 /* Allocate a new component. */
1913 p
= gfc_get_component ();
1916 sym
->components
= p
;
1920 p
->name
= gfc_get_string (name
);
1921 p
->loc
= gfc_current_locus
;
1922 p
->ts
.type
= BT_UNKNOWN
;
1929 /* Recursive function to switch derived types of all symbol in a
1933 switch_types (gfc_symtree
*st
, gfc_symbol
*from
, gfc_symbol
*to
)
1941 if (sym
->ts
.type
== BT_DERIVED
&& sym
->ts
.u
.derived
== from
)
1942 sym
->ts
.u
.derived
= to
;
1944 switch_types (st
->left
, from
, to
);
1945 switch_types (st
->right
, from
, to
);
1949 /* This subroutine is called when a derived type is used in order to
1950 make the final determination about which version to use. The
1951 standard requires that a type be defined before it is 'used', but
1952 such types can appear in IMPLICIT statements before the actual
1953 definition. 'Using' in this context means declaring a variable to
1954 be that type or using the type constructor.
1956 If a type is used and the components haven't been defined, then we
1957 have to have a derived type in a parent unit. We find the node in
1958 the other namespace and point the symtree node in this namespace to
1959 that node. Further reference to this name point to the correct
1960 node. If we can't find the node in a parent namespace, then we have
1963 This subroutine takes a pointer to a symbol node and returns a
1964 pointer to the translated node or NULL for an error. Usually there
1965 is no translation and we return the node we were passed. */
1968 gfc_use_derived (gfc_symbol
*sym
)
1978 if (sym
->attr
.unlimited_polymorphic
)
1981 if (sym
->attr
.generic
)
1982 sym
= gfc_find_dt_in_generic (sym
);
1984 if (sym
->components
!= NULL
|| sym
->attr
.zero_comp
)
1985 return sym
; /* Already defined. */
1987 if (sym
->ns
->parent
== NULL
)
1990 if (gfc_find_symbol (sym
->name
, sym
->ns
->parent
, 1, &s
))
1992 gfc_error ("Symbol '%s' at %C is ambiguous", sym
->name
);
1996 if (s
== NULL
|| s
->attr
.flavor
!= FL_DERIVED
)
1999 /* Get rid of symbol sym, translating all references to s. */
2000 for (i
= 0; i
< GFC_LETTERS
; i
++)
2002 t
= &sym
->ns
->default_type
[i
];
2003 if (t
->u
.derived
== sym
)
2007 st
= gfc_find_symtree (sym
->ns
->sym_root
, sym
->name
);
2012 /* Unlink from list of modified symbols. */
2013 gfc_commit_symbol (sym
);
2015 switch_types (sym
->ns
->sym_root
, sym
, s
);
2017 /* TODO: Also have to replace sym -> s in other lists like
2018 namelists, common lists and interface lists. */
2019 gfc_free_symbol (sym
);
2024 gfc_error ("Derived type '%s' at %C is being used before it is defined",
2030 /* Given a derived type node and a component name, try to locate the
2031 component structure. Returns the NULL pointer if the component is
2032 not found or the components are private. If noaccess is set, no access
2036 gfc_find_component (gfc_symbol
*sym
, const char *name
,
2037 bool noaccess
, bool silent
)
2041 if (name
== NULL
|| sym
== NULL
)
2044 sym
= gfc_use_derived (sym
);
2049 for (p
= sym
->components
; p
; p
= p
->next
)
2050 if (strcmp (p
->name
, name
) == 0)
2053 if (p
&& sym
->attr
.use_assoc
&& !noaccess
)
2055 bool is_parent_comp
= sym
->attr
.extension
&& (p
== sym
->components
);
2056 if (p
->attr
.access
== ACCESS_PRIVATE
||
2057 (p
->attr
.access
!= ACCESS_PUBLIC
2058 && sym
->component_access
== ACCESS_PRIVATE
2059 && !is_parent_comp
))
2062 gfc_error ("Component '%s' at %C is a PRIVATE component of '%s'",
2069 && sym
->attr
.extension
2070 && sym
->components
->ts
.type
== BT_DERIVED
)
2072 p
= gfc_find_component (sym
->components
->ts
.u
.derived
, name
,
2074 /* Do not overwrite the error. */
2079 if (p
== NULL
&& !silent
)
2080 gfc_error ("'%s' at %C is not a member of the '%s' structure",
2087 /* Given a symbol, free all of the component structures and everything
2091 free_components (gfc_component
*p
)
2099 gfc_free_array_spec (p
->as
);
2100 gfc_free_expr (p
->initializer
);
2108 /******************** Statement label management ********************/
2110 /* Comparison function for statement labels, used for managing the
2114 compare_st_labels (void *a1
, void *b1
)
2116 int a
= ((gfc_st_label
*) a1
)->value
;
2117 int b
= ((gfc_st_label
*) b1
)->value
;
2123 /* Free a single gfc_st_label structure, making sure the tree is not
2124 messed up. This function is called only when some parse error
2128 gfc_free_st_label (gfc_st_label
*label
)
2134 gfc_delete_bbt (&gfc_current_ns
->st_labels
, label
, compare_st_labels
);
2136 if (label
->format
!= NULL
)
2137 gfc_free_expr (label
->format
);
2143 /* Free a whole tree of gfc_st_label structures. */
2146 free_st_labels (gfc_st_label
*label
)
2152 free_st_labels (label
->left
);
2153 free_st_labels (label
->right
);
2155 if (label
->format
!= NULL
)
2156 gfc_free_expr (label
->format
);
2161 /* Given a label number, search for and return a pointer to the label
2162 structure, creating it if it does not exist. */
2165 gfc_get_st_label (int labelno
)
2170 if (gfc_current_state () == COMP_DERIVED
)
2171 ns
= gfc_current_block ()->f2k_derived
;
2174 /* Find the namespace of the scoping unit:
2175 If we're in a BLOCK construct, jump to the parent namespace. */
2176 ns
= gfc_current_ns
;
2177 while (ns
->proc_name
&& ns
->proc_name
->attr
.flavor
== FL_LABEL
)
2181 /* First see if the label is already in this namespace. */
2185 if (lp
->value
== labelno
)
2188 if (lp
->value
< labelno
)
2194 lp
= XCNEW (gfc_st_label
);
2196 lp
->value
= labelno
;
2197 lp
->defined
= ST_LABEL_UNKNOWN
;
2198 lp
->referenced
= ST_LABEL_UNKNOWN
;
2200 gfc_insert_bbt (&ns
->st_labels
, lp
, compare_st_labels
);
2206 /* Called when a statement with a statement label is about to be
2207 accepted. We add the label to the list of the current namespace,
2208 making sure it hasn't been defined previously and referenced
2212 gfc_define_st_label (gfc_st_label
*lp
, gfc_sl_type type
, locus
*label_locus
)
2216 labelno
= lp
->value
;
2218 if (lp
->defined
!= ST_LABEL_UNKNOWN
)
2219 gfc_error ("Duplicate statement label %d at %L and %L", labelno
,
2220 &lp
->where
, label_locus
);
2223 lp
->where
= *label_locus
;
2227 case ST_LABEL_FORMAT
:
2228 if (lp
->referenced
== ST_LABEL_TARGET
2229 || lp
->referenced
== ST_LABEL_DO_TARGET
)
2230 gfc_error ("Label %d at %C already referenced as branch target",
2233 lp
->defined
= ST_LABEL_FORMAT
;
2237 case ST_LABEL_TARGET
:
2238 case ST_LABEL_DO_TARGET
:
2239 if (lp
->referenced
== ST_LABEL_FORMAT
)
2240 gfc_error ("Label %d at %C already referenced as a format label",
2245 if (lp
->referenced
== ST_LABEL_DO_TARGET
&& type
!= ST_LABEL_DO_TARGET
2246 && !gfc_notify_std (GFC_STD_F95_OBS
, "DO termination statement "
2247 "which is not END DO or CONTINUE with "
2248 "label %d at %C", labelno
))
2253 lp
->defined
= ST_LABEL_BAD_TARGET
;
2254 lp
->referenced
= ST_LABEL_BAD_TARGET
;
2260 /* Reference a label. Given a label and its type, see if that
2261 reference is consistent with what is known about that label,
2262 updating the unknown state. Returns false if something goes
2266 gfc_reference_st_label (gfc_st_label
*lp
, gfc_sl_type type
)
2268 gfc_sl_type label_type
;
2275 labelno
= lp
->value
;
2277 if (lp
->defined
!= ST_LABEL_UNKNOWN
)
2278 label_type
= lp
->defined
;
2281 label_type
= lp
->referenced
;
2282 lp
->where
= gfc_current_locus
;
2285 if (label_type
== ST_LABEL_FORMAT
2286 && (type
== ST_LABEL_TARGET
|| type
== ST_LABEL_DO_TARGET
))
2288 gfc_error ("Label %d at %C previously used as a FORMAT label", labelno
);
2293 if ((label_type
== ST_LABEL_TARGET
|| label_type
== ST_LABEL_DO_TARGET
2294 || label_type
== ST_LABEL_BAD_TARGET
)
2295 && type
== ST_LABEL_FORMAT
)
2297 gfc_error ("Label %d at %C previously used as branch target", labelno
);
2302 if (lp
->referenced
== ST_LABEL_DO_TARGET
&& type
== ST_LABEL_DO_TARGET
2303 && !gfc_notify_std (GFC_STD_F95_OBS
, "Shared DO termination label %d "
2307 if (lp
->referenced
!= ST_LABEL_DO_TARGET
)
2308 lp
->referenced
= type
;
2316 /************** Symbol table management subroutines ****************/
2318 /* Basic details: Fortran 95 requires a potentially unlimited number
2319 of distinct namespaces when compiling a program unit. This case
2320 occurs during a compilation of internal subprograms because all of
2321 the internal subprograms must be read before we can start
2322 generating code for the host.
2324 Given the tricky nature of the Fortran grammar, we must be able to
2325 undo changes made to a symbol table if the current interpretation
2326 of a statement is found to be incorrect. Whenever a symbol is
2327 looked up, we make a copy of it and link to it. All of these
2328 symbols are kept in a vector so that we can commit or
2329 undo the changes at a later time.
2331 A symtree may point to a symbol node outside of its namespace. In
2332 this case, that symbol has been used as a host associated variable
2333 at some previous time. */
2335 /* Allocate a new namespace structure. Copies the implicit types from
2336 PARENT if PARENT_TYPES is set. */
2339 gfc_get_namespace (gfc_namespace
*parent
, int parent_types
)
2346 ns
= XCNEW (gfc_namespace
);
2347 ns
->sym_root
= NULL
;
2348 ns
->uop_root
= NULL
;
2349 ns
->tb_sym_root
= NULL
;
2350 ns
->finalizers
= NULL
;
2351 ns
->default_access
= ACCESS_UNKNOWN
;
2352 ns
->parent
= parent
;
2354 for (in
= GFC_INTRINSIC_BEGIN
; in
!= GFC_INTRINSIC_END
; in
++)
2356 ns
->operator_access
[in
] = ACCESS_UNKNOWN
;
2357 ns
->tb_op
[in
] = NULL
;
2360 /* Initialize default implicit types. */
2361 for (i
= 'a'; i
<= 'z'; i
++)
2363 ns
->set_flag
[i
- 'a'] = 0;
2364 ts
= &ns
->default_type
[i
- 'a'];
2366 if (parent_types
&& ns
->parent
!= NULL
)
2368 /* Copy parent settings. */
2369 *ts
= ns
->parent
->default_type
[i
- 'a'];
2373 if (gfc_option
.flag_implicit_none
!= 0)
2379 if ('i' <= i
&& i
<= 'n')
2381 ts
->type
= BT_INTEGER
;
2382 ts
->kind
= gfc_default_integer_kind
;
2387 ts
->kind
= gfc_default_real_kind
;
2391 if (parent_types
&& ns
->parent
!= NULL
)
2392 ns
->has_implicit_none_export
= ns
->parent
->has_implicit_none_export
;
2400 /* Comparison function for symtree nodes. */
2403 compare_symtree (void *_st1
, void *_st2
)
2405 gfc_symtree
*st1
, *st2
;
2407 st1
= (gfc_symtree
*) _st1
;
2408 st2
= (gfc_symtree
*) _st2
;
2410 return strcmp (st1
->name
, st2
->name
);
2414 /* Allocate a new symtree node and associate it with the new symbol. */
2417 gfc_new_symtree (gfc_symtree
**root
, const char *name
)
2421 st
= XCNEW (gfc_symtree
);
2422 st
->name
= gfc_get_string (name
);
2424 gfc_insert_bbt (root
, st
, compare_symtree
);
2429 /* Delete a symbol from the tree. Does not free the symbol itself! */
2432 gfc_delete_symtree (gfc_symtree
**root
, const char *name
)
2434 gfc_symtree st
, *st0
;
2436 st0
= gfc_find_symtree (*root
, name
);
2438 st
.name
= gfc_get_string (name
);
2439 gfc_delete_bbt (root
, &st
, compare_symtree
);
2445 /* Given a root symtree node and a name, try to find the symbol within
2446 the namespace. Returns NULL if the symbol is not found. */
2449 gfc_find_symtree (gfc_symtree
*st
, const char *name
)
2455 c
= strcmp (name
, st
->name
);
2459 st
= (c
< 0) ? st
->left
: st
->right
;
2466 /* Return a symtree node with a name that is guaranteed to be unique
2467 within the namespace and corresponds to an illegal fortran name. */
2470 gfc_get_unique_symtree (gfc_namespace
*ns
)
2472 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
2473 static int serial
= 0;
2475 sprintf (name
, "@%d", serial
++);
2476 return gfc_new_symtree (&ns
->sym_root
, name
);
2480 /* Given a name find a user operator node, creating it if it doesn't
2481 exist. These are much simpler than symbols because they can't be
2482 ambiguous with one another. */
2485 gfc_get_uop (const char *name
)
2489 gfc_namespace
*ns
= gfc_current_ns
;
2493 st
= gfc_find_symtree (ns
->uop_root
, name
);
2497 st
= gfc_new_symtree (&ns
->uop_root
, name
);
2499 uop
= st
->n
.uop
= XCNEW (gfc_user_op
);
2500 uop
->name
= gfc_get_string (name
);
2501 uop
->access
= ACCESS_UNKNOWN
;
2508 /* Given a name find the user operator node. Returns NULL if it does
2512 gfc_find_uop (const char *name
, gfc_namespace
*ns
)
2517 ns
= gfc_current_ns
;
2519 st
= gfc_find_symtree (ns
->uop_root
, name
);
2520 return (st
== NULL
) ? NULL
: st
->n
.uop
;
2524 /* Remove a gfc_symbol structure and everything it points to. */
2527 gfc_free_symbol (gfc_symbol
*sym
)
2533 gfc_free_array_spec (sym
->as
);
2535 free_components (sym
->components
);
2537 gfc_free_expr (sym
->value
);
2539 gfc_free_namelist (sym
->namelist
);
2541 if (sym
->ns
!= sym
->formal_ns
)
2542 gfc_free_namespace (sym
->formal_ns
);
2544 if (!sym
->attr
.generic_copy
)
2545 gfc_free_interface (sym
->generic
);
2547 gfc_free_formal_arglist (sym
->formal
);
2549 gfc_free_namespace (sym
->f2k_derived
);
2551 if (sym
->common_block
&& sym
->common_block
->name
[0] != '\0')
2553 sym
->common_block
->refs
--;
2554 if (sym
->common_block
->refs
== 0)
2555 free (sym
->common_block
);
2562 /* Decrease the reference counter and free memory when we reach zero. */
2565 gfc_release_symbol (gfc_symbol
*sym
)
2570 if (sym
->formal_ns
!= NULL
&& sym
->refs
== 2 && sym
->formal_ns
!= sym
->ns
2571 && (!sym
->attr
.entry
|| !sym
->module
))
2573 /* As formal_ns contains a reference to sym, delete formal_ns just
2574 before the deletion of sym. */
2575 gfc_namespace
*ns
= sym
->formal_ns
;
2576 sym
->formal_ns
= NULL
;
2577 gfc_free_namespace (ns
);
2584 gcc_assert (sym
->refs
== 0);
2585 gfc_free_symbol (sym
);
2589 /* Allocate and initialize a new symbol node. */
2592 gfc_new_symbol (const char *name
, gfc_namespace
*ns
)
2596 p
= XCNEW (gfc_symbol
);
2598 gfc_clear_ts (&p
->ts
);
2599 gfc_clear_attr (&p
->attr
);
2602 p
->declared_at
= gfc_current_locus
;
2604 if (strlen (name
) > GFC_MAX_SYMBOL_LEN
)
2605 gfc_internal_error ("new_symbol(): Symbol name too long");
2607 p
->name
= gfc_get_string (name
);
2609 /* Make sure flags for symbol being C bound are clear initially. */
2610 p
->attr
.is_bind_c
= 0;
2611 p
->attr
.is_iso_c
= 0;
2613 /* Clear the ptrs we may need. */
2614 p
->common_block
= NULL
;
2615 p
->f2k_derived
= NULL
;
2622 /* Generate an error if a symbol is ambiguous. */
2625 ambiguous_symbol (const char *name
, gfc_symtree
*st
)
2628 if (st
->n
.sym
->module
)
2629 gfc_error ("Name '%s' at %C is an ambiguous reference to '%s' "
2630 "from module '%s'", name
, st
->n
.sym
->name
, st
->n
.sym
->module
);
2632 gfc_error ("Name '%s' at %C is an ambiguous reference to '%s' "
2633 "from current program unit", name
, st
->n
.sym
->name
);
2637 /* If we're in a SELECT TYPE block, check if the variable 'st' matches any
2638 selector on the stack. If yes, replace it by the corresponding temporary. */
2641 select_type_insert_tmp (gfc_symtree
**st
)
2643 gfc_select_type_stack
*stack
= select_type_stack
;
2644 for (; stack
; stack
= stack
->prev
)
2645 if ((*st
)->n
.sym
== stack
->selector
&& stack
->tmp
)
2650 /* Look for a symtree in the current procedure -- that is, go up to
2651 parent namespaces but only if inside a BLOCK. Returns NULL if not found. */
2654 gfc_find_symtree_in_proc (const char* name
, gfc_namespace
* ns
)
2658 gfc_symtree
* st
= gfc_find_symtree (ns
->sym_root
, name
);
2662 if (!ns
->construct_entities
)
2671 /* Search for a symtree starting in the current namespace, resorting to
2672 any parent namespaces if requested by a nonzero parent_flag.
2673 Returns nonzero if the name is ambiguous. */
2676 gfc_find_sym_tree (const char *name
, gfc_namespace
*ns
, int parent_flag
,
2677 gfc_symtree
**result
)
2682 ns
= gfc_current_ns
;
2686 st
= gfc_find_symtree (ns
->sym_root
, name
);
2689 select_type_insert_tmp (&st
);
2692 /* Ambiguous generic interfaces are permitted, as long
2693 as the specific interfaces are different. */
2694 if (st
->ambiguous
&& !st
->n
.sym
->attr
.generic
)
2696 ambiguous_symbol (name
, st
);
2706 /* Don't escape an interface block. */
2707 if (ns
&& !ns
->has_import_set
2708 && ns
->proc_name
&& ns
->proc_name
->attr
.if_source
== IFSRC_IFBODY
)
2720 /* Same, but returns the symbol instead. */
2723 gfc_find_symbol (const char *name
, gfc_namespace
*ns
, int parent_flag
,
2724 gfc_symbol
**result
)
2729 i
= gfc_find_sym_tree (name
, ns
, parent_flag
, &st
);
2734 *result
= st
->n
.sym
;
2740 /* Tells whether there is only one set of changes in the stack. */
2743 single_undo_checkpoint_p (void)
2745 if (latest_undo_chgset
== &default_undo_chgset_var
)
2747 gcc_assert (latest_undo_chgset
->previous
== NULL
);
2752 gcc_assert (latest_undo_chgset
->previous
!= NULL
);
2757 /* Save symbol with the information necessary to back it out. */
2760 save_symbol_data (gfc_symbol
*sym
)
2765 if (!single_undo_checkpoint_p ())
2767 /* If there is more than one change set, look for the symbol in the
2768 current one. If it is found there, we can reuse it. */
2769 FOR_EACH_VEC_ELT (latest_undo_chgset
->syms
, i
, s
)
2772 gcc_assert (sym
->gfc_new
|| sym
->old_symbol
!= NULL
);
2776 else if (sym
->gfc_new
|| sym
->old_symbol
!= NULL
)
2779 s
= XCNEW (gfc_symbol
);
2781 sym
->old_symbol
= s
;
2784 latest_undo_chgset
->syms
.safe_push (sym
);
2788 /* Given a name, find a symbol, or create it if it does not exist yet
2789 in the current namespace. If the symbol is found we make sure that
2792 The integer return code indicates
2794 1 The symbol name was ambiguous
2795 2 The name meant to be established was already host associated.
2797 So if the return value is nonzero, then an error was issued. */
2800 gfc_get_sym_tree (const char *name
, gfc_namespace
*ns
, gfc_symtree
**result
,
2801 bool allow_subroutine
)
2806 /* This doesn't usually happen during resolution. */
2808 ns
= gfc_current_ns
;
2810 /* Try to find the symbol in ns. */
2811 st
= gfc_find_symtree (ns
->sym_root
, name
);
2813 if (st
== NULL
&& ns
->omp_udr_ns
)
2816 st
= gfc_find_symtree (ns
->sym_root
, name
);
2821 /* If not there, create a new symbol. */
2822 p
= gfc_new_symbol (name
, ns
);
2824 /* Add to the list of tentative symbols. */
2825 p
->old_symbol
= NULL
;
2828 latest_undo_chgset
->syms
.safe_push (p
);
2830 st
= gfc_new_symtree (&ns
->sym_root
, name
);
2837 /* Make sure the existing symbol is OK. Ambiguous
2838 generic interfaces are permitted, as long as the
2839 specific interfaces are different. */
2840 if (st
->ambiguous
&& !st
->n
.sym
->attr
.generic
)
2842 ambiguous_symbol (name
, st
);
2847 if (p
->ns
!= ns
&& (!p
->attr
.function
|| ns
->proc_name
!= p
)
2848 && !(allow_subroutine
&& p
->attr
.subroutine
)
2849 && !(ns
->proc_name
&& ns
->proc_name
->attr
.if_source
== IFSRC_IFBODY
2850 && (ns
->has_import_set
|| p
->attr
.imported
)))
2852 /* Symbol is from another namespace. */
2853 gfc_error ("Symbol '%s' at %C has already been host associated",
2860 /* Copy in case this symbol is changed. */
2861 save_symbol_data (p
);
2870 gfc_get_symbol (const char *name
, gfc_namespace
*ns
, gfc_symbol
**result
)
2875 i
= gfc_get_sym_tree (name
, ns
, &st
, false);
2880 *result
= st
->n
.sym
;
2887 /* Subroutine that searches for a symbol, creating it if it doesn't
2888 exist, but tries to host-associate the symbol if possible. */
2891 gfc_get_ha_sym_tree (const char *name
, gfc_symtree
**result
)
2896 i
= gfc_find_sym_tree (name
, gfc_current_ns
, 0, &st
);
2900 save_symbol_data (st
->n
.sym
);
2905 i
= gfc_find_sym_tree (name
, gfc_current_ns
, 1, &st
);
2915 return gfc_get_sym_tree (name
, gfc_current_ns
, result
, false);
2920 gfc_get_ha_symbol (const char *name
, gfc_symbol
**result
)
2925 i
= gfc_get_ha_sym_tree (name
, &st
);
2928 *result
= st
->n
.sym
;
2936 /* Search for the symtree belonging to a gfc_common_head; we cannot use
2937 head->name as the common_root symtree's name might be mangled. */
2939 static gfc_symtree
*
2940 find_common_symtree (gfc_symtree
*st
, gfc_common_head
*head
)
2943 gfc_symtree
*result
;
2948 if (st
->n
.common
== head
)
2951 result
= find_common_symtree (st
->left
, head
);
2953 result
= find_common_symtree (st
->right
, head
);
2959 /* Clear the given storage, and make it the current change set for registering
2960 changed symbols. Its contents are freed after a call to
2961 gfc_restore_last_undo_checkpoint or gfc_drop_last_undo_checkpoint, but
2962 it is up to the caller to free the storage itself. It is usually a local
2963 variable, so there is nothing to do anyway. */
2966 gfc_new_undo_checkpoint (gfc_undo_change_set
&chg_syms
)
2968 chg_syms
.syms
= vNULL
;
2969 chg_syms
.tbps
= vNULL
;
2970 chg_syms
.previous
= latest_undo_chgset
;
2971 latest_undo_chgset
= &chg_syms
;
2975 /* Restore previous state of symbol. Just copy simple stuff. */
2978 restore_old_symbol (gfc_symbol
*p
)
2983 old
= p
->old_symbol
;
2985 p
->ts
.type
= old
->ts
.type
;
2986 p
->ts
.kind
= old
->ts
.kind
;
2988 p
->attr
= old
->attr
;
2990 if (p
->value
!= old
->value
)
2992 gcc_checking_assert (old
->value
== NULL
);
2993 gfc_free_expr (p
->value
);
2997 if (p
->as
!= old
->as
)
3000 gfc_free_array_spec (p
->as
);
3004 p
->generic
= old
->generic
;
3005 p
->component_access
= old
->component_access
;
3007 if (p
->namelist
!= NULL
&& old
->namelist
== NULL
)
3009 gfc_free_namelist (p
->namelist
);
3014 if (p
->namelist_tail
!= old
->namelist_tail
)
3016 gfc_free_namelist (old
->namelist_tail
->next
);
3017 old
->namelist_tail
->next
= NULL
;
3021 p
->namelist_tail
= old
->namelist_tail
;
3023 if (p
->formal
!= old
->formal
)
3025 gfc_free_formal_arglist (p
->formal
);
3026 p
->formal
= old
->formal
;
3029 p
->old_symbol
= old
->old_symbol
;
3034 /* Frees the internal data of a gfc_undo_change_set structure. Doesn't free
3035 the structure itself. */
3038 free_undo_change_set_data (gfc_undo_change_set
&cs
)
3045 /* Given a change set pointer, free its target's contents and update it with
3046 the address of the previous change set. Note that only the contents are
3047 freed, not the target itself (the contents' container). It is not a problem
3048 as the latter will be a local variable usually. */
3051 pop_undo_change_set (gfc_undo_change_set
*&cs
)
3053 free_undo_change_set_data (*cs
);
3058 static void free_old_symbol (gfc_symbol
*sym
);
3061 /* Merges the current change set into the previous one. The changes themselves
3062 are left untouched; only one checkpoint is forgotten. */
3065 gfc_drop_last_undo_checkpoint (void)
3070 FOR_EACH_VEC_ELT (latest_undo_chgset
->syms
, i
, s
)
3072 /* No need to loop in this case. */
3073 if (s
->old_symbol
== NULL
)
3076 /* Remove the duplicate symbols. */
3077 FOR_EACH_VEC_ELT (latest_undo_chgset
->previous
->syms
, j
, t
)
3080 latest_undo_chgset
->previous
->syms
.unordered_remove (j
);
3082 /* S->OLD_SYMBOL is the backup symbol for S as it was at the
3083 last checkpoint. We drop that checkpoint, so S->OLD_SYMBOL
3084 shall contain from now on the backup symbol for S as it was
3085 at the checkpoint before. */
3086 if (s
->old_symbol
->gfc_new
)
3088 gcc_assert (s
->old_symbol
->old_symbol
== NULL
);
3089 s
->gfc_new
= s
->old_symbol
->gfc_new
;
3090 free_old_symbol (s
);
3093 restore_old_symbol (s
->old_symbol
);
3098 latest_undo_chgset
->previous
->syms
.safe_splice (latest_undo_chgset
->syms
);
3099 latest_undo_chgset
->previous
->tbps
.safe_splice (latest_undo_chgset
->tbps
);
3101 pop_undo_change_set (latest_undo_chgset
);
3105 /* Undoes all the changes made to symbols since the previous checkpoint.
3106 This subroutine is made simpler due to the fact that attributes are
3107 never removed once added. */
3110 gfc_restore_last_undo_checkpoint (void)
3115 FOR_EACH_VEC_ELT (latest_undo_chgset
->syms
, i
, p
)
3119 /* Symbol was new. */
3120 if (p
->attr
.in_common
&& p
->common_block
&& p
->common_block
->head
)
3122 /* If the symbol was added to any common block, it
3123 needs to be removed to stop the resolver looking
3124 for a (possibly) dead symbol. */
3126 if (p
->common_block
->head
== p
&& !p
->common_next
)
3128 gfc_symtree st
, *st0
;
3129 st0
= find_common_symtree (p
->ns
->common_root
,
3133 st
.name
= st0
->name
;
3134 gfc_delete_bbt (&p
->ns
->common_root
, &st
, compare_symtree
);
3139 if (p
->common_block
->head
== p
)
3140 p
->common_block
->head
= p
->common_next
;
3143 gfc_symbol
*cparent
, *csym
;
3145 cparent
= p
->common_block
->head
;
3146 csym
= cparent
->common_next
;
3151 csym
= csym
->common_next
;
3154 gcc_assert(cparent
->common_next
== p
);
3156 cparent
->common_next
= csym
->common_next
;
3160 /* The derived type is saved in the symtree with the first
3161 letter capitalized; the all lower-case version to the
3162 derived type contains its associated generic function. */
3163 if (p
->attr
.flavor
== FL_DERIVED
)
3164 gfc_delete_symtree (&p
->ns
->sym_root
, gfc_get_string ("%c%s",
3165 (char) TOUPPER ((unsigned char) p
->name
[0]),
3168 gfc_delete_symtree (&p
->ns
->sym_root
, p
->name
);
3170 gfc_release_symbol (p
);
3173 restore_old_symbol (p
);
3176 latest_undo_chgset
->syms
.truncate (0);
3177 latest_undo_chgset
->tbps
.truncate (0);
3179 if (!single_undo_checkpoint_p ())
3180 pop_undo_change_set (latest_undo_chgset
);
3184 /* Makes sure that there is only one set of changes; in other words we haven't
3185 forgotten to pair a call to gfc_new_checkpoint with a call to either
3186 gfc_drop_last_undo_checkpoint or gfc_restore_last_undo_checkpoint. */
3189 enforce_single_undo_checkpoint (void)
3191 gcc_checking_assert (single_undo_checkpoint_p ());
3195 /* Undoes all the changes made to symbols in the current statement. */
3198 gfc_undo_symbols (void)
3200 enforce_single_undo_checkpoint ();
3201 gfc_restore_last_undo_checkpoint ();
3205 /* Free sym->old_symbol. sym->old_symbol is mostly a shallow copy of sym; the
3206 components of old_symbol that might need deallocation are the "allocatables"
3207 that are restored in gfc_undo_symbols(), with two exceptions: namelist and
3208 namelist_tail. In case these differ between old_symbol and sym, it's just
3209 because sym->namelist has gotten a few more items. */
3212 free_old_symbol (gfc_symbol
*sym
)
3215 if (sym
->old_symbol
== NULL
)
3218 if (sym
->old_symbol
->as
!= sym
->as
)
3219 gfc_free_array_spec (sym
->old_symbol
->as
);
3221 if (sym
->old_symbol
->value
!= sym
->value
)
3222 gfc_free_expr (sym
->old_symbol
->value
);
3224 if (sym
->old_symbol
->formal
!= sym
->formal
)
3225 gfc_free_formal_arglist (sym
->old_symbol
->formal
);
3227 free (sym
->old_symbol
);
3228 sym
->old_symbol
= NULL
;
3232 /* Makes the changes made in the current statement permanent-- gets
3233 rid of undo information. */
3236 gfc_commit_symbols (void)
3239 gfc_typebound_proc
*tbp
;
3242 enforce_single_undo_checkpoint ();
3244 FOR_EACH_VEC_ELT (latest_undo_chgset
->syms
, i
, p
)
3248 free_old_symbol (p
);
3250 latest_undo_chgset
->syms
.truncate (0);
3252 FOR_EACH_VEC_ELT (latest_undo_chgset
->tbps
, i
, tbp
)
3254 latest_undo_chgset
->tbps
.truncate (0);
3258 /* Makes the changes made in one symbol permanent -- gets rid of undo
3262 gfc_commit_symbol (gfc_symbol
*sym
)
3267 enforce_single_undo_checkpoint ();
3269 FOR_EACH_VEC_ELT (latest_undo_chgset
->syms
, i
, p
)
3272 latest_undo_chgset
->syms
.unordered_remove (i
);
3279 free_old_symbol (sym
);
3283 /* Recursively free trees containing type-bound procedures. */
3286 free_tb_tree (gfc_symtree
*t
)
3291 free_tb_tree (t
->left
);
3292 free_tb_tree (t
->right
);
3294 /* TODO: Free type-bound procedure structs themselves; probably needs some
3295 sort of ref-counting mechanism. */
3301 /* Recursive function that deletes an entire tree and all the common
3302 head structures it points to. */
3305 free_common_tree (gfc_symtree
* common_tree
)
3307 if (common_tree
== NULL
)
3310 free_common_tree (common_tree
->left
);
3311 free_common_tree (common_tree
->right
);
3317 /* Recursive function that deletes an entire tree and all the common
3318 head structures it points to. */
3321 free_omp_udr_tree (gfc_symtree
* omp_udr_tree
)
3323 if (omp_udr_tree
== NULL
)
3326 free_omp_udr_tree (omp_udr_tree
->left
);
3327 free_omp_udr_tree (omp_udr_tree
->right
);
3329 gfc_free_omp_udr (omp_udr_tree
->n
.omp_udr
);
3330 free (omp_udr_tree
);
3334 /* Recursive function that deletes an entire tree and all the user
3335 operator nodes that it contains. */
3338 free_uop_tree (gfc_symtree
*uop_tree
)
3340 if (uop_tree
== NULL
)
3343 free_uop_tree (uop_tree
->left
);
3344 free_uop_tree (uop_tree
->right
);
3346 gfc_free_interface (uop_tree
->n
.uop
->op
);
3347 free (uop_tree
->n
.uop
);
3352 /* Recursive function that deletes an entire tree and all the symbols
3353 that it contains. */
3356 free_sym_tree (gfc_symtree
*sym_tree
)
3358 if (sym_tree
== NULL
)
3361 free_sym_tree (sym_tree
->left
);
3362 free_sym_tree (sym_tree
->right
);
3364 gfc_release_symbol (sym_tree
->n
.sym
);
3369 /* Free the derived type list. */
3372 gfc_free_dt_list (void)
3374 gfc_dt_list
*dt
, *n
;
3376 for (dt
= gfc_derived_types
; dt
; dt
= n
)
3382 gfc_derived_types
= NULL
;
3386 /* Free the gfc_equiv_info's. */
3389 gfc_free_equiv_infos (gfc_equiv_info
*s
)
3393 gfc_free_equiv_infos (s
->next
);
3398 /* Free the gfc_equiv_lists. */
3401 gfc_free_equiv_lists (gfc_equiv_list
*l
)
3405 gfc_free_equiv_lists (l
->next
);
3406 gfc_free_equiv_infos (l
->equiv
);
3411 /* Free a finalizer procedure list. */
3414 gfc_free_finalizer (gfc_finalizer
* el
)
3418 gfc_release_symbol (el
->proc_sym
);
3424 gfc_free_finalizer_list (gfc_finalizer
* list
)
3428 gfc_finalizer
* current
= list
;
3430 gfc_free_finalizer (current
);
3435 /* Create a new gfc_charlen structure and add it to a namespace.
3436 If 'old_cl' is given, the newly created charlen will be a copy of it. */
3439 gfc_new_charlen (gfc_namespace
*ns
, gfc_charlen
*old_cl
)
3442 cl
= gfc_get_charlen ();
3447 /* Put into namespace, but don't allow reject_statement
3448 to free it if old_cl is given. */
3449 gfc_charlen
**prev
= &ns
->cl_list
;
3450 cl
->next
= ns
->old_cl_list
;
3451 while (*prev
!= ns
->old_cl_list
)
3452 prev
= &(*prev
)->next
;
3454 ns
->old_cl_list
= cl
;
3455 cl
->length
= gfc_copy_expr (old_cl
->length
);
3456 cl
->length_from_typespec
= old_cl
->length_from_typespec
;
3457 cl
->backend_decl
= old_cl
->backend_decl
;
3458 cl
->passed_length
= old_cl
->passed_length
;
3459 cl
->resolved
= old_cl
->resolved
;
3463 /* Put into namespace. */
3464 cl
->next
= ns
->cl_list
;
3472 /* Free the charlen list from cl to end (end is not freed).
3473 Free the whole list if end is NULL. */
3476 gfc_free_charlen (gfc_charlen
*cl
, gfc_charlen
*end
)
3480 for (; cl
!= end
; cl
= cl2
)
3485 gfc_free_expr (cl
->length
);
3491 /* Free entry list structs. */
3494 free_entry_list (gfc_entry_list
*el
)
3496 gfc_entry_list
*next
;
3503 free_entry_list (next
);
3507 /* Free a namespace structure and everything below it. Interface
3508 lists associated with intrinsic operators are not freed. These are
3509 taken care of when a specific name is freed. */
3512 gfc_free_namespace (gfc_namespace
*ns
)
3514 gfc_namespace
*p
, *q
;
3523 gcc_assert (ns
->refs
== 0);
3525 gfc_free_statements (ns
->code
);
3527 free_sym_tree (ns
->sym_root
);
3528 free_uop_tree (ns
->uop_root
);
3529 free_common_tree (ns
->common_root
);
3530 free_omp_udr_tree (ns
->omp_udr_root
);
3531 free_tb_tree (ns
->tb_sym_root
);
3532 free_tb_tree (ns
->tb_uop_root
);
3533 gfc_free_finalizer_list (ns
->finalizers
);
3534 gfc_free_omp_declare_simd_list (ns
->omp_declare_simd
);
3535 gfc_free_charlen (ns
->cl_list
, NULL
);
3536 free_st_labels (ns
->st_labels
);
3538 free_entry_list (ns
->entries
);
3539 gfc_free_equiv (ns
->equiv
);
3540 gfc_free_equiv_lists (ns
->equiv_lists
);
3541 gfc_free_use_stmts (ns
->use_stmts
);
3543 for (i
= GFC_INTRINSIC_BEGIN
; i
!= GFC_INTRINSIC_END
; i
++)
3544 gfc_free_interface (ns
->op
[i
]);
3546 gfc_free_data (ns
->data
);
3550 /* Recursively free any contained namespaces. */
3555 gfc_free_namespace (q
);
3561 gfc_symbol_init_2 (void)
3564 gfc_current_ns
= gfc_get_namespace (NULL
, 0);
3569 gfc_symbol_done_2 (void)
3571 gfc_free_namespace (gfc_current_ns
);
3572 gfc_current_ns
= NULL
;
3573 gfc_free_dt_list ();
3575 enforce_single_undo_checkpoint ();
3576 free_undo_change_set_data (*latest_undo_chgset
);
3580 /* Count how many nodes a symtree has. */
3583 count_st_nodes (const gfc_symtree
*st
)
3589 nodes
= count_st_nodes (st
->left
);
3591 nodes
+= count_st_nodes (st
->right
);
3597 /* Convert symtree tree into symtree vector. */
3600 fill_st_vector (gfc_symtree
*st
, gfc_symtree
**st_vec
, unsigned node_cntr
)
3605 node_cntr
= fill_st_vector (st
->left
, st_vec
, node_cntr
);
3606 st_vec
[node_cntr
++] = st
;
3607 node_cntr
= fill_st_vector (st
->right
, st_vec
, node_cntr
);
3613 /* Traverse namespace. As the functions might modify the symtree, we store the
3614 symtree as a vector and operate on this vector. Note: We assume that
3615 sym_func or st_func never deletes nodes from the symtree - only adding is
3616 allowed. Additionally, newly added nodes are not traversed. */
3619 do_traverse_symtree (gfc_symtree
*st
, void (*st_func
) (gfc_symtree
*),
3620 void (*sym_func
) (gfc_symbol
*))
3622 gfc_symtree
**st_vec
;
3623 unsigned nodes
, i
, node_cntr
;
3625 gcc_assert ((st_func
&& !sym_func
) || (!st_func
&& sym_func
));
3626 nodes
= count_st_nodes (st
);
3627 st_vec
= XALLOCAVEC (gfc_symtree
*, nodes
);
3629 fill_st_vector (st
, st_vec
, node_cntr
);
3634 for (i
= 0; i
< nodes
; i
++)
3635 st_vec
[i
]->n
.sym
->mark
= 0;
3636 for (i
= 0; i
< nodes
; i
++)
3637 if (!st_vec
[i
]->n
.sym
->mark
)
3639 (*sym_func
) (st_vec
[i
]->n
.sym
);
3640 st_vec
[i
]->n
.sym
->mark
= 1;
3644 for (i
= 0; i
< nodes
; i
++)
3645 (*st_func
) (st_vec
[i
]);
3649 /* Recursively traverse the symtree nodes. */
3652 gfc_traverse_symtree (gfc_symtree
*st
, void (*st_func
) (gfc_symtree
*))
3654 do_traverse_symtree (st
, st_func
, NULL
);
3658 /* Call a given function for all symbols in the namespace. We take
3659 care that each gfc_symbol node is called exactly once. */
3662 gfc_traverse_ns (gfc_namespace
*ns
, void (*sym_func
) (gfc_symbol
*))
3664 do_traverse_symtree (ns
->sym_root
, NULL
, sym_func
);
3668 /* Return TRUE when name is the name of an intrinsic type. */
3671 gfc_is_intrinsic_typename (const char *name
)
3673 if (strcmp (name
, "integer") == 0
3674 || strcmp (name
, "real") == 0
3675 || strcmp (name
, "character") == 0
3676 || strcmp (name
, "logical") == 0
3677 || strcmp (name
, "complex") == 0
3678 || strcmp (name
, "doubleprecision") == 0
3679 || strcmp (name
, "doublecomplex") == 0)
3686 /* Return TRUE if the symbol is an automatic variable. */
3689 gfc_is_var_automatic (gfc_symbol
*sym
)
3691 /* Pointer and allocatable variables are never automatic. */
3692 if (sym
->attr
.pointer
|| sym
->attr
.allocatable
)
3694 /* Check for arrays with non-constant size. */
3695 if (sym
->attr
.dimension
&& sym
->as
3696 && !gfc_is_compile_time_shape (sym
->as
))
3698 /* Check for non-constant length character variables. */
3699 if (sym
->ts
.type
== BT_CHARACTER
3701 && !gfc_is_constant_expr (sym
->ts
.u
.cl
->length
))
3706 /* Given a symbol, mark it as SAVEd if it is allowed. */
3709 save_symbol (gfc_symbol
*sym
)
3712 if (sym
->attr
.use_assoc
)
3715 if (sym
->attr
.in_common
3718 || sym
->attr
.flavor
!= FL_VARIABLE
)
3720 /* Automatic objects are not saved. */
3721 if (gfc_is_var_automatic (sym
))
3723 gfc_add_save (&sym
->attr
, SAVE_EXPLICIT
, sym
->name
, &sym
->declared_at
);
3727 /* Mark those symbols which can be SAVEd as such. */
3730 gfc_save_all (gfc_namespace
*ns
)
3732 gfc_traverse_ns (ns
, save_symbol
);
3736 /* Make sure that no changes to symbols are pending. */
3739 gfc_enforce_clean_symbol_state(void)
3741 enforce_single_undo_checkpoint ();
3742 gcc_assert (latest_undo_chgset
->syms
.is_empty ());
3746 /************** Global symbol handling ************/
3749 /* Search a tree for the global symbol. */
3752 gfc_find_gsymbol (gfc_gsymbol
*symbol
, const char *name
)
3761 c
= strcmp (name
, symbol
->name
);
3765 symbol
= (c
< 0) ? symbol
->left
: symbol
->right
;
3772 /* Compare two global symbols. Used for managing the BB tree. */
3775 gsym_compare (void *_s1
, void *_s2
)
3777 gfc_gsymbol
*s1
, *s2
;
3779 s1
= (gfc_gsymbol
*) _s1
;
3780 s2
= (gfc_gsymbol
*) _s2
;
3781 return strcmp (s1
->name
, s2
->name
);
3785 /* Get a global symbol, creating it if it doesn't exist. */
3788 gfc_get_gsymbol (const char *name
)
3792 s
= gfc_find_gsymbol (gfc_gsym_root
, name
);
3796 s
= XCNEW (gfc_gsymbol
);
3797 s
->type
= GSYM_UNKNOWN
;
3798 s
->name
= gfc_get_string (name
);
3800 gfc_insert_bbt (&gfc_gsym_root
, s
, gsym_compare
);
3807 get_iso_c_binding_dt (int sym_id
)
3809 gfc_dt_list
*dt_list
;
3811 dt_list
= gfc_derived_types
;
3813 /* Loop through the derived types in the name list, searching for
3814 the desired symbol from iso_c_binding. Search the parent namespaces
3815 if necessary and requested to (parent_flag). */
3816 while (dt_list
!= NULL
)
3818 if (dt_list
->derived
->from_intmod
!= INTMOD_NONE
3819 && dt_list
->derived
->intmod_sym_id
== sym_id
)
3820 return dt_list
->derived
;
3822 dt_list
= dt_list
->next
;
3829 /* Verifies that the given derived type symbol, derived_sym, is interoperable
3830 with C. This is necessary for any derived type that is BIND(C) and for
3831 derived types that are parameters to functions that are BIND(C). All
3832 fields of the derived type are required to be interoperable, and are tested
3833 for such. If an error occurs, the errors are reported here, allowing for
3834 multiple errors to be handled for a single derived type. */
3837 verify_bind_c_derived_type (gfc_symbol
*derived_sym
)
3839 gfc_component
*curr_comp
= NULL
;
3840 bool is_c_interop
= false;
3843 if (derived_sym
== NULL
)
3844 gfc_internal_error ("verify_bind_c_derived_type(): Given symbol is "
3845 "unexpectedly NULL");
3847 /* If we've already looked at this derived symbol, do not look at it again
3848 so we don't repeat warnings/errors. */
3849 if (derived_sym
->ts
.is_c_interop
)
3852 /* The derived type must have the BIND attribute to be interoperable
3853 J3/04-007, Section 15.2.3. */
3854 if (derived_sym
->attr
.is_bind_c
!= 1)
3856 derived_sym
->ts
.is_c_interop
= 0;
3857 gfc_error_now ("Derived type '%s' declared at %L must have the BIND "
3858 "attribute to be C interoperable", derived_sym
->name
,
3859 &(derived_sym
->declared_at
));
3863 curr_comp
= derived_sym
->components
;
3865 /* Fortran 2003 allows an empty derived type. C99 appears to disallow an
3866 empty struct. Section 15.2 in Fortran 2003 states: "The following
3867 subclauses define the conditions under which a Fortran entity is
3868 interoperable. If a Fortran entity is interoperable, an equivalent
3869 entity may be defined by means of C and the Fortran entity is said
3870 to be interoperable with the C entity. There does not have to be such
3871 an interoperating C entity."
3873 if (curr_comp
== NULL
)
3875 gfc_warning ("Derived type '%s' with BIND(C) attribute at %L is empty, "
3876 "and may be inaccessible by the C companion processor",
3877 derived_sym
->name
, &(derived_sym
->declared_at
));
3878 derived_sym
->ts
.is_c_interop
= 1;
3879 derived_sym
->attr
.is_bind_c
= 1;
3884 /* Initialize the derived type as being C interoperable.
3885 If we find an error in the components, this will be set false. */
3886 derived_sym
->ts
.is_c_interop
= 1;
3888 /* Loop through the list of components to verify that the kind of
3889 each is a C interoperable type. */
3892 /* The components cannot be pointers (fortran sense).
3893 J3/04-007, Section 15.2.3, C1505. */
3894 if (curr_comp
->attr
.pointer
!= 0)
3896 gfc_error ("Component '%s' at %L cannot have the "
3897 "POINTER attribute because it is a member "
3898 "of the BIND(C) derived type '%s' at %L",
3899 curr_comp
->name
, &(curr_comp
->loc
),
3900 derived_sym
->name
, &(derived_sym
->declared_at
));
3904 if (curr_comp
->attr
.proc_pointer
!= 0)
3906 gfc_error ("Procedure pointer component '%s' at %L cannot be a member"
3907 " of the BIND(C) derived type '%s' at %L", curr_comp
->name
,
3908 &curr_comp
->loc
, derived_sym
->name
,
3909 &derived_sym
->declared_at
);
3913 /* The components cannot be allocatable.
3914 J3/04-007, Section 15.2.3, C1505. */
3915 if (curr_comp
->attr
.allocatable
!= 0)
3917 gfc_error ("Component '%s' at %L cannot have the "
3918 "ALLOCATABLE attribute because it is a member "
3919 "of the BIND(C) derived type '%s' at %L",
3920 curr_comp
->name
, &(curr_comp
->loc
),
3921 derived_sym
->name
, &(derived_sym
->declared_at
));
3925 /* BIND(C) derived types must have interoperable components. */
3926 if (curr_comp
->ts
.type
== BT_DERIVED
3927 && curr_comp
->ts
.u
.derived
->ts
.is_iso_c
!= 1
3928 && curr_comp
->ts
.u
.derived
!= derived_sym
)
3930 /* This should be allowed; the draft says a derived-type can not
3931 have type parameters if it is has the BIND attribute. Type
3932 parameters seem to be for making parameterized derived types.
3933 There's no need to verify the type if it is c_ptr/c_funptr. */
3934 retval
= verify_bind_c_derived_type (curr_comp
->ts
.u
.derived
);
3938 /* Grab the typespec for the given component and test the kind. */
3939 is_c_interop
= gfc_verify_c_interop (&(curr_comp
->ts
));
3943 /* Report warning and continue since not fatal. The
3944 draft does specify a constraint that requires all fields
3945 to interoperate, but if the user says real(4), etc., it
3946 may interoperate with *something* in C, but the compiler
3947 most likely won't know exactly what. Further, it may not
3948 interoperate with the same data type(s) in C if the user
3949 recompiles with different flags (e.g., -m32 and -m64 on
3950 x86_64 and using integer(4) to claim interop with a
3952 if (derived_sym
->attr
.is_bind_c
== 1
3953 && gfc_option
.warn_c_binding_type
)
3954 /* If the derived type is bind(c), all fields must be
3956 gfc_warning ("Component '%s' in derived type '%s' at %L "
3957 "may not be C interoperable, even though "
3958 "derived type '%s' is BIND(C)",
3959 curr_comp
->name
, derived_sym
->name
,
3960 &(curr_comp
->loc
), derived_sym
->name
);
3961 else if (gfc_option
.warn_c_binding_type
)
3962 /* If derived type is param to bind(c) routine, or to one
3963 of the iso_c_binding procs, it must be interoperable, so
3964 all fields must interop too. */
3965 gfc_warning ("Component '%s' in derived type '%s' at %L "
3966 "may not be C interoperable",
3967 curr_comp
->name
, derived_sym
->name
,
3972 curr_comp
= curr_comp
->next
;
3973 } while (curr_comp
!= NULL
);
3976 /* Make sure we don't have conflicts with the attributes. */
3977 if (derived_sym
->attr
.access
== ACCESS_PRIVATE
)
3979 gfc_error ("Derived type '%s' at %L cannot be declared with both "
3980 "PRIVATE and BIND(C) attributes", derived_sym
->name
,
3981 &(derived_sym
->declared_at
));
3985 if (derived_sym
->attr
.sequence
!= 0)
3987 gfc_error ("Derived type '%s' at %L cannot have the SEQUENCE "
3988 "attribute because it is BIND(C)", derived_sym
->name
,
3989 &(derived_sym
->declared_at
));
3993 /* Mark the derived type as not being C interoperable if we found an
3994 error. If there were only warnings, proceed with the assumption
3995 it's interoperable. */
3997 derived_sym
->ts
.is_c_interop
= 0;
4003 /* Generate symbols for the named constants c_null_ptr and c_null_funptr. */
4006 gen_special_c_interop_ptr (gfc_symbol
*tmp_sym
, gfc_symtree
*dt_symtree
)
4010 gcc_assert (tmp_sym
&& dt_symtree
&& dt_symtree
->n
.sym
);
4011 dt_symtree
->n
.sym
->attr
.referenced
= 1;
4013 tmp_sym
->attr
.is_c_interop
= 1;
4014 tmp_sym
->attr
.is_bind_c
= 1;
4015 tmp_sym
->ts
.is_c_interop
= 1;
4016 tmp_sym
->ts
.is_iso_c
= 1;
4017 tmp_sym
->ts
.type
= BT_DERIVED
;
4018 tmp_sym
->ts
.f90_type
= BT_VOID
;
4019 tmp_sym
->attr
.flavor
= FL_PARAMETER
;
4020 tmp_sym
->ts
.u
.derived
= dt_symtree
->n
.sym
;
4022 /* Set the c_address field of c_null_ptr and c_null_funptr to
4023 the value of NULL. */
4024 tmp_sym
->value
= gfc_get_expr ();
4025 tmp_sym
->value
->expr_type
= EXPR_STRUCTURE
;
4026 tmp_sym
->value
->ts
.type
= BT_DERIVED
;
4027 tmp_sym
->value
->ts
.f90_type
= BT_VOID
;
4028 tmp_sym
->value
->ts
.u
.derived
= tmp_sym
->ts
.u
.derived
;
4029 gfc_constructor_append_expr (&tmp_sym
->value
->value
.constructor
, NULL
, NULL
);
4030 c
= gfc_constructor_first (tmp_sym
->value
->value
.constructor
);
4031 c
->expr
= gfc_get_int_expr (gfc_index_integer_kind
, NULL
, 0);
4032 c
->expr
->ts
.is_iso_c
= 1;
4038 /* Add a formal argument, gfc_formal_arglist, to the
4039 end of the given list of arguments. Set the reference to the
4040 provided symbol, param_sym, in the argument. */
4043 add_formal_arg (gfc_formal_arglist
**head
,
4044 gfc_formal_arglist
**tail
,
4045 gfc_formal_arglist
*formal_arg
,
4046 gfc_symbol
*param_sym
)
4048 /* Put in list, either as first arg or at the tail (curr arg). */
4050 *head
= *tail
= formal_arg
;
4053 (*tail
)->next
= formal_arg
;
4054 (*tail
) = formal_arg
;
4057 (*tail
)->sym
= param_sym
;
4058 (*tail
)->next
= NULL
;
4064 /* Add a procedure interface to the given symbol (i.e., store a
4065 reference to the list of formal arguments). */
4068 add_proc_interface (gfc_symbol
*sym
, ifsrc source
, gfc_formal_arglist
*formal
)
4071 sym
->formal
= formal
;
4072 sym
->attr
.if_source
= source
;
4076 /* Copy the formal args from an existing symbol, src, into a new
4077 symbol, dest. New formal args are created, and the description of
4078 each arg is set according to the existing ones. This function is
4079 used when creating procedure declaration variables from a procedure
4080 declaration statement (see match_proc_decl()) to create the formal
4081 args based on the args of a given named interface.
4083 When an actual argument list is provided, skip the absent arguments.
4084 To be used together with gfc_se->ignore_optional. */
4087 gfc_copy_formal_args_intr (gfc_symbol
*dest
, gfc_intrinsic_sym
*src
,
4088 gfc_actual_arglist
*actual
)
4090 gfc_formal_arglist
*head
= NULL
;
4091 gfc_formal_arglist
*tail
= NULL
;
4092 gfc_formal_arglist
*formal_arg
= NULL
;
4093 gfc_intrinsic_arg
*curr_arg
= NULL
;
4094 gfc_formal_arglist
*formal_prev
= NULL
;
4095 gfc_actual_arglist
*act_arg
= actual
;
4096 /* Save current namespace so we can change it for formal args. */
4097 gfc_namespace
*parent_ns
= gfc_current_ns
;
4099 /* Create a new namespace, which will be the formal ns (namespace
4100 of the formal args). */
4101 gfc_current_ns
= gfc_get_namespace (parent_ns
, 0);
4102 gfc_current_ns
->proc_name
= dest
;
4104 for (curr_arg
= src
->formal
; curr_arg
; curr_arg
= curr_arg
->next
)
4106 /* Skip absent arguments. */
4109 gcc_assert (act_arg
!= NULL
);
4110 if (act_arg
->expr
== NULL
)
4112 act_arg
= act_arg
->next
;
4115 act_arg
= act_arg
->next
;
4117 formal_arg
= gfc_get_formal_arglist ();
4118 gfc_get_symbol (curr_arg
->name
, gfc_current_ns
, &(formal_arg
->sym
));
4120 /* May need to copy more info for the symbol. */
4121 formal_arg
->sym
->ts
= curr_arg
->ts
;
4122 formal_arg
->sym
->attr
.optional
= curr_arg
->optional
;
4123 formal_arg
->sym
->attr
.value
= curr_arg
->value
;
4124 formal_arg
->sym
->attr
.intent
= curr_arg
->intent
;
4125 formal_arg
->sym
->attr
.flavor
= FL_VARIABLE
;
4126 formal_arg
->sym
->attr
.dummy
= 1;
4128 if (formal_arg
->sym
->ts
.type
== BT_CHARACTER
)
4129 formal_arg
->sym
->ts
.u
.cl
= gfc_new_charlen (gfc_current_ns
, NULL
);
4131 /* If this isn't the first arg, set up the next ptr. For the
4132 last arg built, the formal_arg->next will never get set to
4133 anything other than NULL. */
4134 if (formal_prev
!= NULL
)
4135 formal_prev
->next
= formal_arg
;
4137 formal_arg
->next
= NULL
;
4139 formal_prev
= formal_arg
;
4141 /* Add arg to list of formal args. */
4142 add_formal_arg (&head
, &tail
, formal_arg
, formal_arg
->sym
);
4144 /* Validate changes. */
4145 gfc_commit_symbol (formal_arg
->sym
);
4148 /* Add the interface to the symbol. */
4149 add_proc_interface (dest
, IFSRC_DECL
, head
);
4151 /* Store the formal namespace information. */
4152 if (dest
->formal
!= NULL
)
4153 /* The current ns should be that for the dest proc. */
4154 dest
->formal_ns
= gfc_current_ns
;
4155 /* Restore the current namespace to what it was on entry. */
4156 gfc_current_ns
= parent_ns
;
4161 std_for_isocbinding_symbol (int id
)
4165 #define NAMED_INTCST(a,b,c,d) \
4168 #include "iso-c-binding.def"
4171 #define NAMED_FUNCTION(a,b,c,d) \
4174 #define NAMED_SUBROUTINE(a,b,c,d) \
4177 #include "iso-c-binding.def"
4178 #undef NAMED_FUNCTION
4179 #undef NAMED_SUBROUTINE
4182 return GFC_STD_F2003
;
4186 /* Generate the given set of C interoperable kind objects, or all
4187 interoperable kinds. This function will only be given kind objects
4188 for valid iso_c_binding defined types because this is verified when
4189 the 'use' statement is parsed. If the user gives an 'only' clause,
4190 the specific kinds are looked up; if they don't exist, an error is
4191 reported. If the user does not give an 'only' clause, all
4192 iso_c_binding symbols are generated. If a list of specific kinds
4193 is given, it must have a NULL in the first empty spot to mark the
4194 end of the list. For C_null_(fun)ptr, dt_symtree has to be set and
4195 point to the symtree for c_(fun)ptr. */
4198 generate_isocbinding_symbol (const char *mod_name
, iso_c_binding_symbol s
,
4199 const char *local_name
, gfc_symtree
*dt_symtree
,
4202 const char *const name
= (local_name
&& local_name
[0])
4203 ? local_name
: c_interop_kinds_table
[s
].name
;
4204 gfc_symtree
*tmp_symtree
;
4205 gfc_symbol
*tmp_sym
= NULL
;
4208 if (gfc_notification_std (std_for_isocbinding_symbol (s
)) == ERROR
)
4211 tmp_symtree
= gfc_find_symtree (gfc_current_ns
->sym_root
, name
);
4213 && (!tmp_symtree
|| !tmp_symtree
->n
.sym
4214 || tmp_symtree
->n
.sym
->from_intmod
!= INTMOD_ISO_C_BINDING
4215 || tmp_symtree
->n
.sym
->intmod_sym_id
!= s
))
4218 /* Already exists in this scope so don't re-add it. */
4219 if (tmp_symtree
!= NULL
&& (tmp_sym
= tmp_symtree
->n
.sym
) != NULL
4220 && (!tmp_sym
->attr
.generic
4221 || (tmp_sym
= gfc_find_dt_in_generic (tmp_sym
)) != NULL
)
4222 && tmp_sym
->from_intmod
== INTMOD_ISO_C_BINDING
)
4224 if (tmp_sym
->attr
.flavor
== FL_DERIVED
4225 && !get_iso_c_binding_dt (tmp_sym
->intmod_sym_id
))
4227 gfc_dt_list
*dt_list
;
4228 dt_list
= gfc_get_dt_list ();
4229 dt_list
->derived
= tmp_sym
;
4230 dt_list
->next
= gfc_derived_types
;
4231 gfc_derived_types
= dt_list
;
4237 /* Create the sym tree in the current ns. */
4240 tmp_symtree
= gfc_get_unique_symtree (gfc_current_ns
);
4241 tmp_sym
= gfc_new_symbol (name
, gfc_current_ns
);
4243 /* Add to the list of tentative symbols. */
4244 latest_undo_chgset
->syms
.safe_push (tmp_sym
);
4245 tmp_sym
->old_symbol
= NULL
;
4247 tmp_sym
->gfc_new
= 1;
4249 tmp_symtree
->n
.sym
= tmp_sym
;
4254 gfc_get_sym_tree (name
, gfc_current_ns
, &tmp_symtree
, false);
4255 gcc_assert (tmp_symtree
);
4256 tmp_sym
= tmp_symtree
->n
.sym
;
4259 /* Say what module this symbol belongs to. */
4260 tmp_sym
->module
= gfc_get_string (mod_name
);
4261 tmp_sym
->from_intmod
= INTMOD_ISO_C_BINDING
;
4262 tmp_sym
->intmod_sym_id
= s
;
4263 tmp_sym
->attr
.is_iso_c
= 1;
4264 tmp_sym
->attr
.use_assoc
= 1;
4266 gcc_assert (dt_symtree
== NULL
|| s
== ISOCBINDING_NULL_FUNPTR
4267 || s
== ISOCBINDING_NULL_PTR
);
4272 #define NAMED_INTCST(a,b,c,d) case a :
4273 #define NAMED_REALCST(a,b,c,d) case a :
4274 #define NAMED_CMPXCST(a,b,c,d) case a :
4275 #define NAMED_LOGCST(a,b,c) case a :
4276 #define NAMED_CHARKNDCST(a,b,c) case a :
4277 #include "iso-c-binding.def"
4279 tmp_sym
->value
= gfc_get_int_expr (gfc_default_integer_kind
, NULL
,
4280 c_interop_kinds_table
[s
].value
);
4282 /* Initialize an integer constant expression node. */
4283 tmp_sym
->attr
.flavor
= FL_PARAMETER
;
4284 tmp_sym
->ts
.type
= BT_INTEGER
;
4285 tmp_sym
->ts
.kind
= gfc_default_integer_kind
;
4287 /* Mark this type as a C interoperable one. */
4288 tmp_sym
->ts
.is_c_interop
= 1;
4289 tmp_sym
->ts
.is_iso_c
= 1;
4290 tmp_sym
->value
->ts
.is_c_interop
= 1;
4291 tmp_sym
->value
->ts
.is_iso_c
= 1;
4292 tmp_sym
->attr
.is_c_interop
= 1;
4294 /* Tell what f90 type this c interop kind is valid. */
4295 tmp_sym
->ts
.f90_type
= c_interop_kinds_table
[s
].f90_type
;
4300 #define NAMED_CHARCST(a,b,c) case a :
4301 #include "iso-c-binding.def"
4303 /* Initialize an integer constant expression node for the
4304 length of the character. */
4305 tmp_sym
->value
= gfc_get_character_expr (gfc_default_character_kind
,
4306 &gfc_current_locus
, NULL
, 1);
4307 tmp_sym
->value
->ts
.is_c_interop
= 1;
4308 tmp_sym
->value
->ts
.is_iso_c
= 1;
4309 tmp_sym
->value
->value
.character
.length
= 1;
4310 tmp_sym
->value
->value
.character
.string
[0]
4311 = (gfc_char_t
) c_interop_kinds_table
[s
].value
;
4312 tmp_sym
->ts
.u
.cl
= gfc_new_charlen (gfc_current_ns
, NULL
);
4313 tmp_sym
->ts
.u
.cl
->length
= gfc_get_int_expr (gfc_default_integer_kind
,
4316 /* May not need this in both attr and ts, but do need in
4317 attr for writing module file. */
4318 tmp_sym
->attr
.is_c_interop
= 1;
4320 tmp_sym
->attr
.flavor
= FL_PARAMETER
;
4321 tmp_sym
->ts
.type
= BT_CHARACTER
;
4323 /* Need to set it to the C_CHAR kind. */
4324 tmp_sym
->ts
.kind
= gfc_default_character_kind
;
4326 /* Mark this type as a C interoperable one. */
4327 tmp_sym
->ts
.is_c_interop
= 1;
4328 tmp_sym
->ts
.is_iso_c
= 1;
4330 /* Tell what f90 type this c interop kind is valid. */
4331 tmp_sym
->ts
.f90_type
= BT_CHARACTER
;
4335 case ISOCBINDING_PTR
:
4336 case ISOCBINDING_FUNPTR
:
4339 gfc_dt_list
**dt_list_ptr
= NULL
;
4340 gfc_component
*tmp_comp
= NULL
;
4342 /* Generate real derived type. */
4347 const char *hidden_name
;
4348 gfc_interface
*intr
, *head
;
4350 hidden_name
= gfc_get_string ("%c%s",
4351 (char) TOUPPER ((unsigned char)
4354 tmp_symtree
= gfc_find_symtree (gfc_current_ns
->sym_root
,
4356 gcc_assert (tmp_symtree
== NULL
);
4357 gfc_get_sym_tree (hidden_name
, gfc_current_ns
, &tmp_symtree
, false);
4358 dt_sym
= tmp_symtree
->n
.sym
;
4359 dt_sym
->name
= gfc_get_string (s
== ISOCBINDING_PTR
4360 ? "c_ptr" : "c_funptr");
4362 /* Generate an artificial generic function. */
4363 head
= tmp_sym
->generic
;
4364 intr
= gfc_get_interface ();
4366 intr
->where
= gfc_current_locus
;
4368 tmp_sym
->generic
= intr
;
4370 if (!tmp_sym
->attr
.generic
4371 && !gfc_add_generic (&tmp_sym
->attr
, tmp_sym
->name
, NULL
))
4374 if (!tmp_sym
->attr
.function
4375 && !gfc_add_function (&tmp_sym
->attr
, tmp_sym
->name
, NULL
))
4379 /* Say what module this symbol belongs to. */
4380 dt_sym
->module
= gfc_get_string (mod_name
);
4381 dt_sym
->from_intmod
= INTMOD_ISO_C_BINDING
;
4382 dt_sym
->intmod_sym_id
= s
;
4383 dt_sym
->attr
.use_assoc
= 1;
4385 /* Initialize an integer constant expression node. */
4386 dt_sym
->attr
.flavor
= FL_DERIVED
;
4387 dt_sym
->ts
.is_c_interop
= 1;
4388 dt_sym
->attr
.is_c_interop
= 1;
4389 dt_sym
->attr
.private_comp
= 1;
4390 dt_sym
->component_access
= ACCESS_PRIVATE
;
4391 dt_sym
->ts
.is_iso_c
= 1;
4392 dt_sym
->ts
.type
= BT_DERIVED
;
4393 dt_sym
->ts
.f90_type
= BT_VOID
;
4395 /* A derived type must have the bind attribute to be
4396 interoperable (J3/04-007, Section 15.2.3), even though
4397 the binding label is not used. */
4398 dt_sym
->attr
.is_bind_c
= 1;
4400 dt_sym
->attr
.referenced
= 1;
4401 dt_sym
->ts
.u
.derived
= dt_sym
;
4403 /* Add the symbol created for the derived type to the current ns. */
4404 dt_list_ptr
= &(gfc_derived_types
);
4405 while (*dt_list_ptr
!= NULL
&& (*dt_list_ptr
)->next
!= NULL
)
4406 dt_list_ptr
= &((*dt_list_ptr
)->next
);
4408 /* There is already at least one derived type in the list, so append
4409 the one we're currently building for c_ptr or c_funptr. */
4410 if (*dt_list_ptr
!= NULL
)
4411 dt_list_ptr
= &((*dt_list_ptr
)->next
);
4412 (*dt_list_ptr
) = gfc_get_dt_list ();
4413 (*dt_list_ptr
)->derived
= dt_sym
;
4414 (*dt_list_ptr
)->next
= NULL
;
4416 gfc_add_component (dt_sym
, "c_address", &tmp_comp
);
4417 if (tmp_comp
== NULL
)
4420 tmp_comp
->ts
.type
= BT_INTEGER
;
4422 /* Set this because the module will need to read/write this field. */
4423 tmp_comp
->ts
.f90_type
= BT_INTEGER
;
4425 /* The kinds for c_ptr and c_funptr are the same. */
4426 index
= get_c_kind ("c_ptr", c_interop_kinds_table
);
4427 tmp_comp
->ts
.kind
= c_interop_kinds_table
[index
].value
;
4428 tmp_comp
->attr
.access
= ACCESS_PRIVATE
;
4430 /* Mark the component as C interoperable. */
4431 tmp_comp
->ts
.is_c_interop
= 1;
4436 case ISOCBINDING_NULL_PTR
:
4437 case ISOCBINDING_NULL_FUNPTR
:
4438 gen_special_c_interop_ptr (tmp_sym
, dt_symtree
);
4444 gfc_commit_symbol (tmp_sym
);
4449 /* Check that a symbol is already typed. If strict is not set, an untyped
4450 symbol is acceptable for non-standard-conforming mode. */
4453 gfc_check_symbol_typed (gfc_symbol
* sym
, gfc_namespace
* ns
,
4454 bool strict
, locus where
)
4458 if (gfc_matching_prefix
)
4461 /* Check for the type and try to give it an implicit one. */
4462 if (sym
->ts
.type
== BT_UNKNOWN
4463 && !gfc_set_default_type (sym
, 0, ns
))
4467 gfc_error ("Symbol '%s' is used before it is typed at %L",
4472 if (!gfc_notify_std (GFC_STD_GNU
, "Symbol '%s' is used before"
4473 " it is typed at %L", sym
->name
, &where
))
4477 /* Everything is ok. */
4482 /* Construct a typebound-procedure structure. Those are stored in a tentative
4483 list and marked `error' until symbols are committed. */
4486 gfc_get_typebound_proc (gfc_typebound_proc
*tb0
)
4488 gfc_typebound_proc
*result
;
4490 result
= XCNEW (gfc_typebound_proc
);
4495 latest_undo_chgset
->tbps
.safe_push (result
);
4501 /* Get the super-type of a given derived type. */
4504 gfc_get_derived_super_type (gfc_symbol
* derived
)
4506 gcc_assert (derived
);
4508 if (derived
->attr
.generic
)
4509 derived
= gfc_find_dt_in_generic (derived
);
4511 if (!derived
->attr
.extension
)
4514 gcc_assert (derived
->components
);
4515 gcc_assert (derived
->components
->ts
.type
== BT_DERIVED
);
4516 gcc_assert (derived
->components
->ts
.u
.derived
);
4518 if (derived
->components
->ts
.u
.derived
->attr
.generic
)
4519 return gfc_find_dt_in_generic (derived
->components
->ts
.u
.derived
);
4521 return derived
->components
->ts
.u
.derived
;
4525 /* Get the ultimate super-type of a given derived type. */
4528 gfc_get_ultimate_derived_super_type (gfc_symbol
* derived
)
4530 if (!derived
->attr
.extension
)
4533 derived
= gfc_get_derived_super_type (derived
);
4535 if (derived
->attr
.extension
)
4536 return gfc_get_ultimate_derived_super_type (derived
);
4542 /* Check if a derived type t2 is an extension of (or equal to) a type t1. */
4545 gfc_type_is_extension_of (gfc_symbol
*t1
, gfc_symbol
*t2
)
4547 while (!gfc_compare_derived_types (t1
, t2
) && t2
->attr
.extension
)
4548 t2
= gfc_get_derived_super_type (t2
);
4549 return gfc_compare_derived_types (t1
, t2
);
4553 /* Check if two typespecs are type compatible (F03:5.1.1.2):
4554 If ts1 is nonpolymorphic, ts2 must be the same type.
4555 If ts1 is polymorphic (CLASS), ts2 must be an extension of ts1. */
4558 gfc_type_compatible (gfc_typespec
*ts1
, gfc_typespec
*ts2
)
4560 bool is_class1
= (ts1
->type
== BT_CLASS
);
4561 bool is_class2
= (ts2
->type
== BT_CLASS
);
4562 bool is_derived1
= (ts1
->type
== BT_DERIVED
);
4563 bool is_derived2
= (ts2
->type
== BT_DERIVED
);
4566 && ts1
->u
.derived
->components
4567 && ts1
->u
.derived
->components
->ts
.u
.derived
->attr
.unlimited_polymorphic
)
4570 if (!is_derived1
&& !is_derived2
&& !is_class1
&& !is_class2
)
4571 return (ts1
->type
== ts2
->type
);
4573 if (is_derived1
&& is_derived2
)
4574 return gfc_compare_derived_types (ts1
->u
.derived
, ts2
->u
.derived
);
4576 if (is_derived1
&& is_class2
)
4577 return gfc_compare_derived_types (ts1
->u
.derived
,
4578 ts2
->u
.derived
->components
->ts
.u
.derived
);
4579 if (is_class1
&& is_derived2
)
4580 return gfc_type_is_extension_of (ts1
->u
.derived
->components
->ts
.u
.derived
,
4582 else if (is_class1
&& is_class2
)
4583 return gfc_type_is_extension_of (ts1
->u
.derived
->components
->ts
.u
.derived
,
4584 ts2
->u
.derived
->components
->ts
.u
.derived
);
4590 /* Find the parent-namespace of the current function. If we're inside
4591 BLOCK constructs, it may not be the current one. */
4594 gfc_find_proc_namespace (gfc_namespace
* ns
)
4596 while (ns
->construct_entities
)
4606 /* Check if an associate-variable should be translated as an `implicit' pointer
4607 internally (if it is associated to a variable and not an array with
4611 gfc_is_associate_pointer (gfc_symbol
* sym
)
4616 if (sym
->ts
.type
== BT_CLASS
)
4619 if (!sym
->assoc
->variable
)
4622 if (sym
->attr
.dimension
&& sym
->as
->type
!= AS_EXPLICIT
)
4630 gfc_find_dt_in_generic (gfc_symbol
*sym
)
4632 gfc_interface
*intr
= NULL
;
4634 if (!sym
|| sym
->attr
.flavor
== FL_DERIVED
)
4637 if (sym
->attr
.generic
)
4638 for (intr
= sym
->generic
; intr
; intr
= intr
->next
)
4639 if (intr
->sym
->attr
.flavor
== FL_DERIVED
)
4641 return intr
? intr
->sym
: NULL
;
4645 /* Get the dummy arguments from a procedure symbol. If it has been declared
4646 via a PROCEDURE statement with a named interface, ts.interface will be set
4647 and the arguments need to be taken from there. */
4649 gfc_formal_arglist
*
4650 gfc_sym_get_dummy_args (gfc_symbol
*sym
)
4652 gfc_formal_arglist
*dummies
;
4654 dummies
= sym
->formal
;
4655 if (dummies
== NULL
&& sym
->ts
.interface
!= NULL
)
4656 dummies
= sym
->ts
.interface
->formal
;