1 /* Declaration statement matcher
2 Copyright (C) 2002-2013 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/>. */
23 #include "coretypes.h"
28 #include "constructor.h"
31 /* Macros to access allocate memory for gfc_data_variable,
32 gfc_data_value and gfc_data. */
33 #define gfc_get_data_variable() XCNEW (gfc_data_variable)
34 #define gfc_get_data_value() XCNEW (gfc_data_value)
35 #define gfc_get_data() XCNEW (gfc_data)
38 static bool set_binding_label (const char **, const char *, int);
41 /* This flag is set if an old-style length selector is matched
42 during a type-declaration statement. */
44 static int old_char_selector
;
46 /* When variables acquire types and attributes from a declaration
47 statement, they get them from the following static variables. The
48 first part of a declaration sets these variables and the second
49 part copies these into symbol structures. */
51 static gfc_typespec current_ts
;
53 static symbol_attribute current_attr
;
54 static gfc_array_spec
*current_as
;
55 static int colon_seen
;
57 /* The current binding label (if any). */
58 static const char* curr_binding_label
;
59 /* Need to know how many identifiers are on the current data declaration
60 line in case we're given the BIND(C) attribute with a NAME= specifier. */
61 static int num_idents_on_line
;
62 /* Need to know if a NAME= specifier was found during gfc_match_bind_c so we
63 can supply a name if the curr_binding_label is nil and NAME= was not. */
64 static int has_name_equals
= 0;
66 /* Initializer of the previous enumerator. */
68 static gfc_expr
*last_initializer
;
70 /* History of all the enumerators is maintained, so that
71 kind values of all the enumerators could be updated depending
72 upon the maximum initialized value. */
74 typedef struct enumerator_history
77 gfc_expr
*initializer
;
78 struct enumerator_history
*next
;
82 /* Header of enum history chain. */
84 static enumerator_history
*enum_history
= NULL
;
86 /* Pointer of enum history node containing largest initializer. */
88 static enumerator_history
*max_enum
= NULL
;
90 /* gfc_new_block points to the symbol of a newly matched block. */
92 gfc_symbol
*gfc_new_block
;
94 bool gfc_matching_function
;
97 /********************* DATA statement subroutines *********************/
99 static bool in_match_data
= false;
102 gfc_in_match_data (void)
104 return in_match_data
;
108 set_in_match_data (bool set_value
)
110 in_match_data
= set_value
;
113 /* Free a gfc_data_variable structure and everything beneath it. */
116 free_variable (gfc_data_variable
*p
)
118 gfc_data_variable
*q
;
123 gfc_free_expr (p
->expr
);
124 gfc_free_iterator (&p
->iter
, 0);
125 free_variable (p
->list
);
131 /* Free a gfc_data_value structure and everything beneath it. */
134 free_value (gfc_data_value
*p
)
141 mpz_clear (p
->repeat
);
142 gfc_free_expr (p
->expr
);
148 /* Free a list of gfc_data structures. */
151 gfc_free_data (gfc_data
*p
)
158 free_variable (p
->var
);
159 free_value (p
->value
);
165 /* Free all data in a namespace. */
168 gfc_free_data_all (gfc_namespace
*ns
)
181 static match
var_element (gfc_data_variable
*);
183 /* Match a list of variables terminated by an iterator and a right
187 var_list (gfc_data_variable
*parent
)
189 gfc_data_variable
*tail
, var
;
192 m
= var_element (&var
);
193 if (m
== MATCH_ERROR
)
198 tail
= gfc_get_data_variable ();
205 if (gfc_match_char (',') != MATCH_YES
)
208 m
= gfc_match_iterator (&parent
->iter
, 1);
211 if (m
== MATCH_ERROR
)
214 m
= var_element (&var
);
215 if (m
== MATCH_ERROR
)
220 tail
->next
= gfc_get_data_variable ();
226 if (gfc_match_char (')') != MATCH_YES
)
231 gfc_syntax_error (ST_DATA
);
236 /* Match a single element in a data variable list, which can be a
237 variable-iterator list. */
240 var_element (gfc_data_variable
*new_var
)
245 memset (new_var
, 0, sizeof (gfc_data_variable
));
247 if (gfc_match_char ('(') == MATCH_YES
)
248 return var_list (new_var
);
250 m
= gfc_match_variable (&new_var
->expr
, 0);
254 sym
= new_var
->expr
->symtree
->n
.sym
;
256 /* Symbol should already have an associated type. */
257 if (!gfc_check_symbol_typed (sym
, gfc_current_ns
, false, gfc_current_locus
))
260 if (!sym
->attr
.function
&& gfc_current_ns
->parent
261 && gfc_current_ns
->parent
== sym
->ns
)
263 gfc_error ("Host associated variable '%s' may not be in the DATA "
264 "statement at %C", sym
->name
);
268 if (gfc_current_state () != COMP_BLOCK_DATA
269 && sym
->attr
.in_common
270 && !gfc_notify_std (GFC_STD_GNU
, "initialization of "
271 "common block variable '%s' in DATA statement at %C",
275 if (!gfc_add_data (&sym
->attr
, sym
->name
, &new_var
->expr
->where
))
282 /* Match the top-level list of data variables. */
285 top_var_list (gfc_data
*d
)
287 gfc_data_variable var
, *tail
, *new_var
;
294 m
= var_element (&var
);
297 if (m
== MATCH_ERROR
)
300 new_var
= gfc_get_data_variable ();
306 tail
->next
= new_var
;
310 if (gfc_match_char ('/') == MATCH_YES
)
312 if (gfc_match_char (',') != MATCH_YES
)
319 gfc_syntax_error (ST_DATA
);
320 gfc_free_data_all (gfc_current_ns
);
326 match_data_constant (gfc_expr
**result
)
328 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
329 gfc_symbol
*sym
, *dt_sym
= NULL
;
334 m
= gfc_match_literal_constant (&expr
, 1);
341 if (m
== MATCH_ERROR
)
344 m
= gfc_match_null (result
);
348 old_loc
= gfc_current_locus
;
350 /* Should this be a structure component, try to match it
351 before matching a name. */
352 m
= gfc_match_rvalue (result
);
353 if (m
== MATCH_ERROR
)
356 if (m
== MATCH_YES
&& (*result
)->expr_type
== EXPR_STRUCTURE
)
358 if (!gfc_simplify_expr (*result
, 0))
362 else if (m
== MATCH_YES
)
363 gfc_free_expr (*result
);
365 gfc_current_locus
= old_loc
;
367 m
= gfc_match_name (name
);
371 if (gfc_find_symbol (name
, NULL
, 1, &sym
))
374 if (sym
&& sym
->attr
.generic
)
375 dt_sym
= gfc_find_dt_in_generic (sym
);
378 || (sym
->attr
.flavor
!= FL_PARAMETER
379 && (!dt_sym
|| dt_sym
->attr
.flavor
!= FL_DERIVED
)))
381 gfc_error ("Symbol '%s' must be a PARAMETER in DATA statement at %C",
385 else if (dt_sym
&& dt_sym
->attr
.flavor
== FL_DERIVED
)
386 return gfc_match_structure_constructor (dt_sym
, result
);
388 /* Check to see if the value is an initialization array expression. */
389 if (sym
->value
->expr_type
== EXPR_ARRAY
)
391 gfc_current_locus
= old_loc
;
393 m
= gfc_match_init_expr (result
);
394 if (m
== MATCH_ERROR
)
399 if (!gfc_simplify_expr (*result
, 0))
402 if ((*result
)->expr_type
== EXPR_CONSTANT
)
406 gfc_error ("Invalid initializer %s in Data statement at %C", name
);
412 *result
= gfc_copy_expr (sym
->value
);
417 /* Match a list of values in a DATA statement. The leading '/' has
418 already been seen at this point. */
421 top_val_list (gfc_data
*data
)
423 gfc_data_value
*new_val
, *tail
;
431 m
= match_data_constant (&expr
);
434 if (m
== MATCH_ERROR
)
437 new_val
= gfc_get_data_value ();
438 mpz_init (new_val
->repeat
);
441 data
->value
= new_val
;
443 tail
->next
= new_val
;
447 if (expr
->ts
.type
!= BT_INTEGER
|| gfc_match_char ('*') != MATCH_YES
)
450 mpz_set_ui (tail
->repeat
, 1);
454 mpz_set (tail
->repeat
, expr
->value
.integer
);
455 gfc_free_expr (expr
);
457 m
= match_data_constant (&tail
->expr
);
460 if (m
== MATCH_ERROR
)
464 if (gfc_match_char ('/') == MATCH_YES
)
466 if (gfc_match_char (',') == MATCH_NO
)
473 gfc_syntax_error (ST_DATA
);
474 gfc_free_data_all (gfc_current_ns
);
479 /* Matches an old style initialization. */
482 match_old_style_init (const char *name
)
489 /* Set up data structure to hold initializers. */
490 gfc_find_sym_tree (name
, NULL
, 0, &st
);
493 newdata
= gfc_get_data ();
494 newdata
->var
= gfc_get_data_variable ();
495 newdata
->var
->expr
= gfc_get_variable_expr (st
);
496 newdata
->where
= gfc_current_locus
;
498 /* Match initial value list. This also eats the terminal '/'. */
499 m
= top_val_list (newdata
);
508 gfc_error ("Initialization at %C is not allowed in a PURE procedure");
513 if (gfc_implicit_pure (NULL
))
514 gfc_current_ns
->proc_name
->attr
.implicit_pure
= 0;
516 /* Mark the variable as having appeared in a data statement. */
517 if (!gfc_add_data (&sym
->attr
, sym
->name
, &sym
->declared_at
))
523 /* Chain in namespace list of DATA initializers. */
524 newdata
->next
= gfc_current_ns
->data
;
525 gfc_current_ns
->data
= newdata
;
531 /* Match the stuff following a DATA statement. If ERROR_FLAG is set,
532 we are matching a DATA statement and are therefore issuing an error
533 if we encounter something unexpected, if not, we're trying to match
534 an old-style initialization expression of the form INTEGER I /2/. */
537 gfc_match_data (void)
542 set_in_match_data (true);
546 new_data
= gfc_get_data ();
547 new_data
->where
= gfc_current_locus
;
549 m
= top_var_list (new_data
);
553 m
= top_val_list (new_data
);
557 new_data
->next
= gfc_current_ns
->data
;
558 gfc_current_ns
->data
= new_data
;
560 if (gfc_match_eos () == MATCH_YES
)
563 gfc_match_char (','); /* Optional comma */
566 set_in_match_data (false);
570 gfc_error ("DATA statement at %C is not allowed in a PURE procedure");
574 if (gfc_implicit_pure (NULL
))
575 gfc_current_ns
->proc_name
->attr
.implicit_pure
= 0;
580 set_in_match_data (false);
581 gfc_free_data (new_data
);
586 /************************ Declaration statements *********************/
589 /* Auxiliary function to merge DIMENSION and CODIMENSION array specs. */
592 merge_array_spec (gfc_array_spec
*from
, gfc_array_spec
*to
, bool copy
)
596 if ((from
->type
== AS_ASSUMED_RANK
&& to
->corank
)
597 || (to
->type
== AS_ASSUMED_RANK
&& from
->corank
))
599 gfc_error ("The assumed-rank array at %C shall not have a codimension");
603 if (to
->rank
== 0 && from
->rank
> 0)
605 to
->rank
= from
->rank
;
606 to
->type
= from
->type
;
607 to
->cray_pointee
= from
->cray_pointee
;
608 to
->cp_was_assumed
= from
->cp_was_assumed
;
610 for (i
= 0; i
< to
->corank
; i
++)
612 to
->lower
[from
->rank
+ i
] = to
->lower
[i
];
613 to
->upper
[from
->rank
+ i
] = to
->upper
[i
];
615 for (i
= 0; i
< from
->rank
; i
++)
619 to
->lower
[i
] = gfc_copy_expr (from
->lower
[i
]);
620 to
->upper
[i
] = gfc_copy_expr (from
->upper
[i
]);
624 to
->lower
[i
] = from
->lower
[i
];
625 to
->upper
[i
] = from
->upper
[i
];
629 else if (to
->corank
== 0 && from
->corank
> 0)
631 to
->corank
= from
->corank
;
632 to
->cotype
= from
->cotype
;
634 for (i
= 0; i
< from
->corank
; i
++)
638 to
->lower
[to
->rank
+ i
] = gfc_copy_expr (from
->lower
[i
]);
639 to
->upper
[to
->rank
+ i
] = gfc_copy_expr (from
->upper
[i
]);
643 to
->lower
[to
->rank
+ i
] = from
->lower
[i
];
644 to
->upper
[to
->rank
+ i
] = from
->upper
[i
];
653 /* Match an intent specification. Since this can only happen after an
654 INTENT word, a legal intent-spec must follow. */
657 match_intent_spec (void)
660 if (gfc_match (" ( in out )") == MATCH_YES
)
662 if (gfc_match (" ( in )") == MATCH_YES
)
664 if (gfc_match (" ( out )") == MATCH_YES
)
667 gfc_error ("Bad INTENT specification at %C");
668 return INTENT_UNKNOWN
;
672 /* Matches a character length specification, which is either a
673 specification expression, '*', or ':'. */
676 char_len_param_value (gfc_expr
**expr
, bool *deferred
)
683 if (gfc_match_char ('*') == MATCH_YES
)
686 if (gfc_match_char (':') == MATCH_YES
)
688 if (!gfc_notify_std (GFC_STD_F2003
, "deferred type "
697 m
= gfc_match_expr (expr
);
700 && !gfc_expr_check_typed (*expr
, gfc_current_ns
, false))
703 if (m
== MATCH_YES
&& (*expr
)->expr_type
== EXPR_FUNCTION
)
705 if ((*expr
)->value
.function
.actual
706 && (*expr
)->value
.function
.actual
->expr
->symtree
)
709 e
= (*expr
)->value
.function
.actual
->expr
;
710 if (e
->symtree
->n
.sym
->attr
.flavor
== FL_PROCEDURE
711 && e
->expr_type
== EXPR_VARIABLE
)
713 if (e
->symtree
->n
.sym
->ts
.type
== BT_UNKNOWN
)
715 if (e
->symtree
->n
.sym
->ts
.type
== BT_CHARACTER
716 && e
->symtree
->n
.sym
->ts
.u
.cl
717 && e
->symtree
->n
.sym
->ts
.u
.cl
->length
->ts
.type
== BT_UNKNOWN
)
725 gfc_error ("Conflict in attributes of function argument at %C");
730 /* A character length is a '*' followed by a literal integer or a
731 char_len_param_value in parenthesis. */
734 match_char_length (gfc_expr
**expr
, bool *deferred
, bool obsolescent_check
)
740 m
= gfc_match_char ('*');
744 m
= gfc_match_small_literal_int (&length
, NULL
);
745 if (m
== MATCH_ERROR
)
750 if (obsolescent_check
751 && !gfc_notify_std (GFC_STD_F95_OBS
, "Old-style character length at %C"))
753 *expr
= gfc_get_int_expr (gfc_default_integer_kind
, NULL
, length
);
757 if (gfc_match_char ('(') == MATCH_NO
)
760 m
= char_len_param_value (expr
, deferred
);
761 if (m
!= MATCH_YES
&& gfc_matching_function
)
767 if (m
== MATCH_ERROR
)
772 if (gfc_match_char (')') == MATCH_NO
)
774 gfc_free_expr (*expr
);
782 gfc_error ("Syntax error in character length specification at %C");
787 /* Special subroutine for finding a symbol. Check if the name is found
788 in the current name space. If not, and we're compiling a function or
789 subroutine and the parent compilation unit is an interface, then check
790 to see if the name we've been given is the name of the interface
791 (located in another namespace). */
794 find_special (const char *name
, gfc_symbol
**result
, bool allow_subroutine
)
800 i
= gfc_get_sym_tree (name
, NULL
, &st
, allow_subroutine
);
803 *result
= st
? st
->n
.sym
: NULL
;
807 if (gfc_current_state () != COMP_SUBROUTINE
808 && gfc_current_state () != COMP_FUNCTION
)
811 s
= gfc_state_stack
->previous
;
815 if (s
->state
!= COMP_INTERFACE
)
818 goto end
; /* Nameless interface. */
820 if (strcmp (name
, s
->sym
->name
) == 0)
831 /* Special subroutine for getting a symbol node associated with a
832 procedure name, used in SUBROUTINE and FUNCTION statements. The
833 symbol is created in the parent using with symtree node in the
834 child unit pointing to the symbol. If the current namespace has no
835 parent, then the symbol is just created in the current unit. */
838 get_proc_name (const char *name
, gfc_symbol
**result
, bool module_fcn_entry
)
844 /* Module functions have to be left in their own namespace because
845 they have potentially (almost certainly!) already been referenced.
846 In this sense, they are rather like external functions. This is
847 fixed up in resolve.c(resolve_entries), where the symbol name-
848 space is set to point to the master function, so that the fake
849 result mechanism can work. */
850 if (module_fcn_entry
)
852 /* Present if entry is declared to be a module procedure. */
853 rc
= gfc_find_symbol (name
, gfc_current_ns
->parent
, 0, result
);
856 rc
= gfc_get_symbol (name
, NULL
, result
);
857 else if (!gfc_get_symbol (name
, NULL
, &sym
) && sym
858 && (*result
)->ts
.type
== BT_UNKNOWN
859 && sym
->attr
.flavor
== FL_UNKNOWN
)
860 /* Pick up the typespec for the entry, if declared in the function
861 body. Note that this symbol is FL_UNKNOWN because it will
862 only have appeared in a type declaration. The local symtree
863 is set to point to the module symbol and a unique symtree
864 to the local version. This latter ensures a correct clearing
867 /* If the ENTRY proceeds its specification, we need to ensure
868 that this does not raise a "has no IMPLICIT type" error. */
869 if (sym
->ts
.type
== BT_UNKNOWN
)
870 sym
->attr
.untyped
= 1;
872 (*result
)->ts
= sym
->ts
;
874 /* Put the symbol in the procedure namespace so that, should
875 the ENTRY precede its specification, the specification
877 (*result
)->ns
= gfc_current_ns
;
879 gfc_find_sym_tree (name
, gfc_current_ns
, 0, &st
);
881 st
= gfc_get_unique_symtree (gfc_current_ns
);
886 rc
= gfc_get_symbol (name
, gfc_current_ns
->parent
, result
);
893 if (sym
&& !sym
->gfc_new
&& gfc_current_state () != COMP_INTERFACE
)
895 /* Trap another encompassed procedure with the same name. All
896 these conditions are necessary to avoid picking up an entry
897 whose name clashes with that of the encompassing procedure;
898 this is handled using gsymbols to register unique,globally
900 if (sym
->attr
.flavor
!= 0
901 && sym
->attr
.proc
!= 0
902 && (sym
->attr
.subroutine
|| sym
->attr
.function
)
903 && sym
->attr
.if_source
!= IFSRC_UNKNOWN
)
904 gfc_error_now ("Procedure '%s' at %C is already defined at %L",
905 name
, &sym
->declared_at
);
907 /* Trap a procedure with a name the same as interface in the
908 encompassing scope. */
909 if (sym
->attr
.generic
!= 0
910 && (sym
->attr
.subroutine
|| sym
->attr
.function
)
911 && !sym
->attr
.mod_proc
)
912 gfc_error_now ("Name '%s' at %C is already defined"
913 " as a generic interface at %L",
914 name
, &sym
->declared_at
);
916 /* Trap declarations of attributes in encompassing scope. The
917 signature for this is that ts.kind is set. Legitimate
918 references only set ts.type. */
919 if (sym
->ts
.kind
!= 0
920 && !sym
->attr
.implicit_type
921 && sym
->attr
.proc
== 0
922 && gfc_current_ns
->parent
!= NULL
923 && sym
->attr
.access
== 0
924 && !module_fcn_entry
)
925 gfc_error_now ("Procedure '%s' at %C has an explicit interface "
926 "and must not have attributes declared at %L",
927 name
, &sym
->declared_at
);
930 if (gfc_current_ns
->parent
== NULL
|| *result
== NULL
)
933 /* Module function entries will already have a symtree in
934 the current namespace but will need one at module level. */
935 if (module_fcn_entry
)
937 /* Present if entry is declared to be a module procedure. */
938 rc
= gfc_find_sym_tree (name
, gfc_current_ns
->parent
, 0, &st
);
940 st
= gfc_new_symtree (&gfc_current_ns
->parent
->sym_root
, name
);
943 st
= gfc_new_symtree (&gfc_current_ns
->sym_root
, name
);
948 /* See if the procedure should be a module procedure. */
950 if (((sym
->ns
->proc_name
!= NULL
951 && sym
->ns
->proc_name
->attr
.flavor
== FL_MODULE
952 && sym
->attr
.proc
!= PROC_MODULE
)
953 || (module_fcn_entry
&& sym
->attr
.proc
!= PROC_MODULE
))
954 && !gfc_add_procedure (&sym
->attr
, PROC_MODULE
, sym
->name
, NULL
))
961 /* Verify that the given symbol representing a parameter is C
962 interoperable, by checking to see if it was marked as such after
963 its declaration. If the given symbol is not interoperable, a
964 warning is reported, thus removing the need to return the status to
965 the calling function. The standard does not require the user use
966 one of the iso_c_binding named constants to declare an
967 interoperable parameter, but we can't be sure if the param is C
968 interop or not if the user doesn't. For example, integer(4) may be
969 legal Fortran, but doesn't have meaning in C. It may interop with
970 a number of the C types, which causes a problem because the
971 compiler can't know which one. This code is almost certainly not
972 portable, and the user will get what they deserve if the C type
973 across platforms isn't always interoperable with integer(4). If
974 the user had used something like integer(c_int) or integer(c_long),
975 the compiler could have automatically handled the varying sizes
979 gfc_verify_c_interop_param (gfc_symbol
*sym
)
981 int is_c_interop
= 0;
984 /* We check implicitly typed variables in symbol.c:gfc_set_default_type().
985 Don't repeat the checks here. */
986 if (sym
->attr
.implicit_type
)
989 /* For subroutines or functions that are passed to a BIND(C) procedure,
990 they're interoperable if they're BIND(C) and their params are all
992 if (sym
->attr
.flavor
== FL_PROCEDURE
)
994 if (sym
->attr
.is_bind_c
== 0)
996 gfc_error_now ("Procedure '%s' at %L must have the BIND(C) "
997 "attribute to be C interoperable", sym
->name
,
998 &(sym
->declared_at
));
1004 if (sym
->attr
.is_c_interop
== 1)
1005 /* We've already checked this procedure; don't check it again. */
1008 return verify_bind_c_sym (sym
, &(sym
->ts
), sym
->attr
.in_common
,
1013 /* See if we've stored a reference to a procedure that owns sym. */
1014 if (sym
->ns
!= NULL
&& sym
->ns
->proc_name
!= NULL
)
1016 if (sym
->ns
->proc_name
->attr
.is_bind_c
== 1)
1018 is_c_interop
= (gfc_verify_c_interop(&(sym
->ts
)) ? 1 : 0);
1020 if (is_c_interop
!= 1)
1022 /* Make personalized messages to give better feedback. */
1023 if (sym
->ts
.type
== BT_DERIVED
)
1024 gfc_error ("Variable '%s' at %L is a dummy argument to the "
1025 "BIND(C) procedure '%s' but is not C interoperable "
1026 "because derived type '%s' is not C interoperable",
1027 sym
->name
, &(sym
->declared_at
),
1028 sym
->ns
->proc_name
->name
,
1029 sym
->ts
.u
.derived
->name
);
1030 else if (sym
->ts
.type
== BT_CLASS
)
1031 gfc_error ("Variable '%s' at %L is a dummy argument to the "
1032 "BIND(C) procedure '%s' but is not C interoperable "
1033 "because it is polymorphic",
1034 sym
->name
, &(sym
->declared_at
),
1035 sym
->ns
->proc_name
->name
);
1036 else if (gfc_option
.warn_c_binding_type
)
1037 gfc_warning ("Variable '%s' at %L is a dummy argument of the "
1038 "BIND(C) procedure '%s' but may not be C "
1040 sym
->name
, &(sym
->declared_at
),
1041 sym
->ns
->proc_name
->name
);
1044 /* Character strings are only C interoperable if they have a
1046 if (sym
->ts
.type
== BT_CHARACTER
)
1048 gfc_charlen
*cl
= sym
->ts
.u
.cl
;
1049 if (!cl
|| !cl
->length
|| cl
->length
->expr_type
!= EXPR_CONSTANT
1050 || mpz_cmp_si (cl
->length
->value
.integer
, 1) != 0)
1052 gfc_error ("Character argument '%s' at %L "
1053 "must be length 1 because "
1054 "procedure '%s' is BIND(C)",
1055 sym
->name
, &sym
->declared_at
,
1056 sym
->ns
->proc_name
->name
);
1061 /* We have to make sure that any param to a bind(c) routine does
1062 not have the allocatable, pointer, or optional attributes,
1063 according to J3/04-007, section 5.1. */
1064 if (sym
->attr
.allocatable
== 1
1065 && !gfc_notify_std (GFC_STD_F2008_TS
, "Variable '%s' at %L with "
1066 "ALLOCATABLE attribute in procedure '%s' "
1067 "with BIND(C)", sym
->name
,
1068 &(sym
->declared_at
),
1069 sym
->ns
->proc_name
->name
))
1072 if (sym
->attr
.pointer
== 1
1073 && !gfc_notify_std (GFC_STD_F2008_TS
, "Variable '%s' at %L with "
1074 "POINTER attribute in procedure '%s' "
1075 "with BIND(C)", sym
->name
,
1076 &(sym
->declared_at
),
1077 sym
->ns
->proc_name
->name
))
1080 if ((sym
->attr
.allocatable
|| sym
->attr
.pointer
) && !sym
->as
)
1082 gfc_error ("Scalar variable '%s' at %L with POINTER or "
1083 "ALLOCATABLE in procedure '%s' with BIND(C) is not yet"
1084 " supported", sym
->name
, &(sym
->declared_at
),
1085 sym
->ns
->proc_name
->name
);
1089 if (sym
->attr
.optional
== 1 && sym
->attr
.value
)
1091 gfc_error ("Variable '%s' at %L cannot have both the OPTIONAL "
1092 "and the VALUE attribute because procedure '%s' "
1093 "is BIND(C)", sym
->name
, &(sym
->declared_at
),
1094 sym
->ns
->proc_name
->name
);
1097 else if (sym
->attr
.optional
== 1
1098 && !gfc_notify_std (GFC_STD_F2008_TS
, "Variable '%s' "
1099 "at %L with OPTIONAL attribute in "
1100 "procedure '%s' which is BIND(C)",
1101 sym
->name
, &(sym
->declared_at
),
1102 sym
->ns
->proc_name
->name
))
1105 /* Make sure that if it has the dimension attribute, that it is
1106 either assumed size or explicit shape. Deferred shape is already
1107 covered by the pointer/allocatable attribute. */
1108 if (sym
->as
!= NULL
&& sym
->as
->type
== AS_ASSUMED_SHAPE
1109 && !gfc_notify_std (GFC_STD_F2008_TS
, "Assumed-shape array '%s' "
1110 "at %L as dummy argument to the BIND(C) "
1111 "procedure '%s' at %L", sym
->name
,
1112 &(sym
->declared_at
),
1113 sym
->ns
->proc_name
->name
,
1114 &(sym
->ns
->proc_name
->declared_at
)))
1124 /* Function called by variable_decl() that adds a name to the symbol table. */
1127 build_sym (const char *name
, gfc_charlen
*cl
, bool cl_deferred
,
1128 gfc_array_spec
**as
, locus
*var_locus
)
1130 symbol_attribute attr
;
1133 if (gfc_get_symbol (name
, NULL
, &sym
))
1136 /* Start updating the symbol table. Add basic type attribute if present. */
1137 if (current_ts
.type
!= BT_UNKNOWN
1138 && (sym
->attr
.implicit_type
== 0
1139 || !gfc_compare_types (&sym
->ts
, ¤t_ts
))
1140 && !gfc_add_type (sym
, ¤t_ts
, var_locus
))
1143 if (sym
->ts
.type
== BT_CHARACTER
)
1146 sym
->ts
.deferred
= cl_deferred
;
1149 /* Add dimension attribute if present. */
1150 if (!gfc_set_array_spec (sym
, *as
, var_locus
))
1154 /* Add attribute to symbol. The copy is so that we can reset the
1155 dimension attribute. */
1156 attr
= current_attr
;
1158 attr
.codimension
= 0;
1160 if (!gfc_copy_attr (&sym
->attr
, &attr
, var_locus
))
1163 /* Finish any work that may need to be done for the binding label,
1164 if it's a bind(c). The bind(c) attr is found before the symbol
1165 is made, and before the symbol name (for data decls), so the
1166 current_ts is holding the binding label, or nothing if the
1167 name= attr wasn't given. Therefore, test here if we're dealing
1168 with a bind(c) and make sure the binding label is set correctly. */
1169 if (sym
->attr
.is_bind_c
== 1)
1171 if (!sym
->binding_label
)
1173 /* Set the binding label and verify that if a NAME= was specified
1174 then only one identifier was in the entity-decl-list. */
1175 if (!set_binding_label (&sym
->binding_label
, sym
->name
,
1176 num_idents_on_line
))
1181 /* See if we know we're in a common block, and if it's a bind(c)
1182 common then we need to make sure we're an interoperable type. */
1183 if (sym
->attr
.in_common
== 1)
1185 /* Test the common block object. */
1186 if (sym
->common_block
!= NULL
&& sym
->common_block
->is_bind_c
== 1
1187 && sym
->ts
.is_c_interop
!= 1)
1189 gfc_error_now ("Variable '%s' in common block '%s' at %C "
1190 "must be declared with a C interoperable "
1191 "kind since common block '%s' is BIND(C)",
1192 sym
->name
, sym
->common_block
->name
,
1193 sym
->common_block
->name
);
1198 sym
->attr
.implied_index
= 0;
1200 if (sym
->ts
.type
== BT_CLASS
)
1201 return gfc_build_class_symbol (&sym
->ts
, &sym
->attr
, &sym
->as
, false);
1207 /* Set character constant to the given length. The constant will be padded or
1208 truncated. If we're inside an array constructor without a typespec, we
1209 additionally check that all elements have the same length; check_len -1
1210 means no checking. */
1213 gfc_set_constant_character_len (int len
, gfc_expr
*expr
, int check_len
)
1218 gcc_assert (expr
->expr_type
== EXPR_CONSTANT
);
1219 gcc_assert (expr
->ts
.type
== BT_CHARACTER
);
1221 slen
= expr
->value
.character
.length
;
1224 s
= gfc_get_wide_string (len
+ 1);
1225 memcpy (s
, expr
->value
.character
.string
,
1226 MIN (len
, slen
) * sizeof (gfc_char_t
));
1228 gfc_wide_memset (&s
[slen
], ' ', len
- slen
);
1230 if (gfc_option
.warn_character_truncation
&& slen
> len
)
1231 gfc_warning_now ("CHARACTER expression at %L is being truncated "
1232 "(%d/%d)", &expr
->where
, slen
, len
);
1234 /* Apply the standard by 'hand' otherwise it gets cleared for
1236 if (check_len
!= -1 && slen
!= check_len
1237 && !(gfc_option
.allow_std
& GFC_STD_GNU
))
1238 gfc_error_now ("The CHARACTER elements of the array constructor "
1239 "at %L must have the same length (%d/%d)",
1240 &expr
->where
, slen
, check_len
);
1243 free (expr
->value
.character
.string
);
1244 expr
->value
.character
.string
= s
;
1245 expr
->value
.character
.length
= len
;
1250 /* Function to create and update the enumerator history
1251 using the information passed as arguments.
1252 Pointer "max_enum" is also updated, to point to
1253 enum history node containing largest initializer.
1255 SYM points to the symbol node of enumerator.
1256 INIT points to its enumerator value. */
1259 create_enum_history (gfc_symbol
*sym
, gfc_expr
*init
)
1261 enumerator_history
*new_enum_history
;
1262 gcc_assert (sym
!= NULL
&& init
!= NULL
);
1264 new_enum_history
= XCNEW (enumerator_history
);
1266 new_enum_history
->sym
= sym
;
1267 new_enum_history
->initializer
= init
;
1268 new_enum_history
->next
= NULL
;
1270 if (enum_history
== NULL
)
1272 enum_history
= new_enum_history
;
1273 max_enum
= enum_history
;
1277 new_enum_history
->next
= enum_history
;
1278 enum_history
= new_enum_history
;
1280 if (mpz_cmp (max_enum
->initializer
->value
.integer
,
1281 new_enum_history
->initializer
->value
.integer
) < 0)
1282 max_enum
= new_enum_history
;
1287 /* Function to free enum kind history. */
1290 gfc_free_enum_history (void)
1292 enumerator_history
*current
= enum_history
;
1293 enumerator_history
*next
;
1295 while (current
!= NULL
)
1297 next
= current
->next
;
1302 enum_history
= NULL
;
1306 /* Function called by variable_decl() that adds an initialization
1307 expression to a symbol. */
1310 add_init_expr_to_sym (const char *name
, gfc_expr
**initp
, locus
*var_locus
)
1312 symbol_attribute attr
;
1317 if (find_special (name
, &sym
, false))
1322 /* If this symbol is confirming an implicit parameter type,
1323 then an initialization expression is not allowed. */
1324 if (attr
.flavor
== FL_PARAMETER
1325 && sym
->value
!= NULL
1328 gfc_error ("Initializer not allowed for PARAMETER '%s' at %C",
1335 /* An initializer is required for PARAMETER declarations. */
1336 if (attr
.flavor
== FL_PARAMETER
)
1338 gfc_error ("PARAMETER at %L is missing an initializer", var_locus
);
1344 /* If a variable appears in a DATA block, it cannot have an
1348 gfc_error ("Variable '%s' at %C with an initializer already "
1349 "appears in a DATA statement", sym
->name
);
1353 /* Check if the assignment can happen. This has to be put off
1354 until later for derived type variables and procedure pointers. */
1355 if (sym
->ts
.type
!= BT_DERIVED
&& init
->ts
.type
!= BT_DERIVED
1356 && sym
->ts
.type
!= BT_CLASS
&& init
->ts
.type
!= BT_CLASS
1357 && !sym
->attr
.proc_pointer
1358 && !gfc_check_assign_symbol (sym
, NULL
, init
))
1361 if (sym
->ts
.type
== BT_CHARACTER
&& sym
->ts
.u
.cl
1362 && init
->ts
.type
== BT_CHARACTER
)
1364 /* Update symbol character length according initializer. */
1365 if (!gfc_check_assign_symbol (sym
, NULL
, init
))
1368 if (sym
->ts
.u
.cl
->length
== NULL
)
1371 /* If there are multiple CHARACTER variables declared on the
1372 same line, we don't want them to share the same length. */
1373 sym
->ts
.u
.cl
= gfc_new_charlen (gfc_current_ns
, NULL
);
1375 if (sym
->attr
.flavor
== FL_PARAMETER
)
1377 if (init
->expr_type
== EXPR_CONSTANT
)
1379 clen
= init
->value
.character
.length
;
1380 sym
->ts
.u
.cl
->length
1381 = gfc_get_int_expr (gfc_default_integer_kind
,
1384 else if (init
->expr_type
== EXPR_ARRAY
)
1387 c
= gfc_constructor_first (init
->value
.constructor
);
1388 clen
= c
->expr
->value
.character
.length
;
1389 sym
->ts
.u
.cl
->length
1390 = gfc_get_int_expr (gfc_default_integer_kind
,
1393 else if (init
->ts
.u
.cl
&& init
->ts
.u
.cl
->length
)
1394 sym
->ts
.u
.cl
->length
=
1395 gfc_copy_expr (sym
->value
->ts
.u
.cl
->length
);
1398 /* Update initializer character length according symbol. */
1399 else if (sym
->ts
.u
.cl
->length
->expr_type
== EXPR_CONSTANT
)
1401 int len
= mpz_get_si (sym
->ts
.u
.cl
->length
->value
.integer
);
1403 if (init
->expr_type
== EXPR_CONSTANT
)
1404 gfc_set_constant_character_len (len
, init
, -1);
1405 else if (init
->expr_type
== EXPR_ARRAY
)
1409 /* Build a new charlen to prevent simplification from
1410 deleting the length before it is resolved. */
1411 init
->ts
.u
.cl
= gfc_new_charlen (gfc_current_ns
, NULL
);
1412 init
->ts
.u
.cl
->length
= gfc_copy_expr (sym
->ts
.u
.cl
->length
);
1414 for (c
= gfc_constructor_first (init
->value
.constructor
);
1415 c
; c
= gfc_constructor_next (c
))
1416 gfc_set_constant_character_len (len
, c
->expr
, -1);
1421 /* If sym is implied-shape, set its upper bounds from init. */
1422 if (sym
->attr
.flavor
== FL_PARAMETER
&& sym
->attr
.dimension
1423 && sym
->as
->type
== AS_IMPLIED_SHAPE
)
1427 if (init
->rank
== 0)
1429 gfc_error ("Can't initialize implied-shape array at %L"
1430 " with scalar", &sym
->declared_at
);
1433 gcc_assert (sym
->as
->rank
== init
->rank
);
1435 /* Shape should be present, we get an initialization expression. */
1436 gcc_assert (init
->shape
);
1438 for (dim
= 0; dim
< sym
->as
->rank
; ++dim
)
1444 lower
= sym
->as
->lower
[dim
];
1445 if (lower
->expr_type
!= EXPR_CONSTANT
)
1447 gfc_error ("Non-constant lower bound in implied-shape"
1448 " declaration at %L", &lower
->where
);
1452 /* All dimensions must be without upper bound. */
1453 gcc_assert (!sym
->as
->upper
[dim
]);
1456 e
= gfc_get_constant_expr (BT_INTEGER
, k
, &sym
->declared_at
);
1457 mpz_add (e
->value
.integer
,
1458 lower
->value
.integer
, init
->shape
[dim
]);
1459 mpz_sub_ui (e
->value
.integer
, e
->value
.integer
, 1);
1460 sym
->as
->upper
[dim
] = e
;
1463 sym
->as
->type
= AS_EXPLICIT
;
1466 /* Need to check if the expression we initialized this
1467 to was one of the iso_c_binding named constants. If so,
1468 and we're a parameter (constant), let it be iso_c.
1470 integer(c_int), parameter :: my_int = c_int
1471 integer(my_int) :: my_int_2
1472 If we mark my_int as iso_c (since we can see it's value
1473 is equal to one of the named constants), then my_int_2
1474 will be considered C interoperable. */
1475 if (sym
->ts
.type
!= BT_CHARACTER
&& sym
->ts
.type
!= BT_DERIVED
)
1477 sym
->ts
.is_iso_c
|= init
->ts
.is_iso_c
;
1478 sym
->ts
.is_c_interop
|= init
->ts
.is_c_interop
;
1479 /* attr bits needed for module files. */
1480 sym
->attr
.is_iso_c
|= init
->ts
.is_iso_c
;
1481 sym
->attr
.is_c_interop
|= init
->ts
.is_c_interop
;
1482 if (init
->ts
.is_iso_c
)
1483 sym
->ts
.f90_type
= init
->ts
.f90_type
;
1486 /* Add initializer. Make sure we keep the ranks sane. */
1487 if (sym
->attr
.dimension
&& init
->rank
== 0)
1492 if (sym
->attr
.flavor
== FL_PARAMETER
1493 && init
->expr_type
== EXPR_CONSTANT
1494 && spec_size (sym
->as
, &size
)
1495 && mpz_cmp_si (size
, 0) > 0)
1497 array
= gfc_get_array_expr (init
->ts
.type
, init
->ts
.kind
,
1499 for (n
= 0; n
< (int)mpz_get_si (size
); n
++)
1500 gfc_constructor_append_expr (&array
->value
.constructor
,
1503 : gfc_copy_expr (init
),
1506 array
->shape
= gfc_get_shape (sym
->as
->rank
);
1507 for (n
= 0; n
< sym
->as
->rank
; n
++)
1508 spec_dimen_size (sym
->as
, n
, &array
->shape
[n
]);
1513 init
->rank
= sym
->as
->rank
;
1517 if (sym
->attr
.save
== SAVE_NONE
)
1518 sym
->attr
.save
= SAVE_IMPLICIT
;
1526 /* Function called by variable_decl() that adds a name to a structure
1530 build_struct (const char *name
, gfc_charlen
*cl
, gfc_expr
**init
,
1531 gfc_array_spec
**as
)
1536 /* F03:C438/C439. If the current symbol is of the same derived type that we're
1537 constructing, it must have the pointer attribute. */
1538 if ((current_ts
.type
== BT_DERIVED
|| current_ts
.type
== BT_CLASS
)
1539 && current_ts
.u
.derived
== gfc_current_block ()
1540 && current_attr
.pointer
== 0)
1542 gfc_error ("Component at %C must have the POINTER attribute");
1546 if (gfc_current_block ()->attr
.pointer
&& (*as
)->rank
!= 0)
1548 if ((*as
)->type
!= AS_DEFERRED
&& (*as
)->type
!= AS_EXPLICIT
)
1550 gfc_error ("Array component of structure at %C must have explicit "
1551 "or deferred shape");
1556 if (!gfc_add_component (gfc_current_block(), name
, &c
))
1560 if (c
->ts
.type
== BT_CHARACTER
)
1562 c
->attr
= current_attr
;
1564 c
->initializer
= *init
;
1571 c
->attr
.codimension
= 1;
1573 c
->attr
.dimension
= 1;
1577 /* Should this ever get more complicated, combine with similar section
1578 in add_init_expr_to_sym into a separate function. */
1579 if (c
->ts
.type
== BT_CHARACTER
&& !c
->attr
.pointer
&& c
->initializer
1581 && c
->ts
.u
.cl
->length
&& c
->ts
.u
.cl
->length
->expr_type
== EXPR_CONSTANT
)
1585 gcc_assert (c
->ts
.u
.cl
&& c
->ts
.u
.cl
->length
);
1586 gcc_assert (c
->ts
.u
.cl
->length
->expr_type
== EXPR_CONSTANT
);
1587 gcc_assert (c
->ts
.u
.cl
->length
->ts
.type
== BT_INTEGER
);
1589 len
= mpz_get_si (c
->ts
.u
.cl
->length
->value
.integer
);
1591 if (c
->initializer
->expr_type
== EXPR_CONSTANT
)
1592 gfc_set_constant_character_len (len
, c
->initializer
, -1);
1593 else if (mpz_cmp (c
->ts
.u
.cl
->length
->value
.integer
,
1594 c
->initializer
->ts
.u
.cl
->length
->value
.integer
))
1596 gfc_constructor
*ctor
;
1597 ctor
= gfc_constructor_first (c
->initializer
->value
.constructor
);
1602 bool has_ts
= (c
->initializer
->ts
.u
.cl
1603 && c
->initializer
->ts
.u
.cl
->length_from_typespec
);
1605 /* Remember the length of the first element for checking
1606 that all elements *in the constructor* have the same
1607 length. This need not be the length of the LHS! */
1608 gcc_assert (ctor
->expr
->expr_type
== EXPR_CONSTANT
);
1609 gcc_assert (ctor
->expr
->ts
.type
== BT_CHARACTER
);
1610 first_len
= ctor
->expr
->value
.character
.length
;
1612 for ( ; ctor
; ctor
= gfc_constructor_next (ctor
))
1613 if (ctor
->expr
->expr_type
== EXPR_CONSTANT
)
1615 gfc_set_constant_character_len (len
, ctor
->expr
,
1616 has_ts
? -1 : first_len
);
1617 ctor
->expr
->ts
.u
.cl
->length
= gfc_copy_expr (c
->ts
.u
.cl
->length
);
1623 /* Check array components. */
1624 if (!c
->attr
.dimension
)
1627 if (c
->attr
.pointer
)
1629 if (c
->as
->type
!= AS_DEFERRED
)
1631 gfc_error ("Pointer array component of structure at %C must have a "
1636 else if (c
->attr
.allocatable
)
1638 if (c
->as
->type
!= AS_DEFERRED
)
1640 gfc_error ("Allocatable component of structure at %C must have a "
1647 if (c
->as
->type
!= AS_EXPLICIT
)
1649 gfc_error ("Array component of structure at %C must have an "
1656 if (c
->ts
.type
== BT_CLASS
)
1658 bool delayed
= (gfc_state_stack
->sym
== c
->ts
.u
.derived
)
1659 || (!c
->ts
.u
.derived
->components
1660 && !c
->ts
.u
.derived
->attr
.zero_comp
);
1661 bool t2
= gfc_build_class_symbol (&c
->ts
, &c
->attr
, &c
->as
, delayed
);
1671 /* Match a 'NULL()', and possibly take care of some side effects. */
1674 gfc_match_null (gfc_expr
**result
)
1677 match m
, m2
= MATCH_NO
;
1679 if ((m
= gfc_match (" null ( )")) == MATCH_ERROR
)
1685 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
1687 if ((m2
= gfc_match (" null (")) != MATCH_YES
)
1690 old_loc
= gfc_current_locus
;
1691 if ((m2
= gfc_match (" %n ) ", name
)) == MATCH_ERROR
)
1694 && ((m2
= gfc_match (" mold = %n )", name
)) == MATCH_ERROR
))
1698 gfc_current_locus
= old_loc
;
1703 /* The NULL symbol now has to be/become an intrinsic function. */
1704 if (gfc_get_symbol ("null", NULL
, &sym
))
1706 gfc_error ("NULL() initialization at %C is ambiguous");
1710 gfc_intrinsic_symbol (sym
);
1712 if (sym
->attr
.proc
!= PROC_INTRINSIC
1713 && !(sym
->attr
.use_assoc
&& sym
->attr
.intrinsic
)
1714 && (!gfc_add_procedure(&sym
->attr
, PROC_INTRINSIC
, sym
->name
, NULL
)
1715 || !gfc_add_function (&sym
->attr
, sym
->name
, NULL
)))
1718 *result
= gfc_get_null_expr (&gfc_current_locus
);
1720 /* Invalid per F2008, C512. */
1721 if (m2
== MATCH_YES
)
1723 gfc_error ("NULL() initialization at %C may not have MOLD");
1731 /* Match the initialization expr for a data pointer or procedure pointer. */
1734 match_pointer_init (gfc_expr
**init
, int procptr
)
1738 if (gfc_pure (NULL
) && gfc_state_stack
->state
!= COMP_DERIVED
)
1740 gfc_error ("Initialization of pointer at %C is not allowed in "
1741 "a PURE procedure");
1745 /* Match NULL() initialization. */
1746 m
= gfc_match_null (init
);
1750 /* Match non-NULL initialization. */
1751 gfc_matching_ptr_assignment
= !procptr
;
1752 gfc_matching_procptr_assignment
= procptr
;
1753 m
= gfc_match_rvalue (init
);
1754 gfc_matching_ptr_assignment
= 0;
1755 gfc_matching_procptr_assignment
= 0;
1756 if (m
== MATCH_ERROR
)
1758 else if (m
== MATCH_NO
)
1760 gfc_error ("Error in pointer initialization at %C");
1765 gfc_resolve_expr (*init
);
1767 if (!gfc_notify_std (GFC_STD_F2008
, "non-NULL pointer "
1768 "initialization at %C"))
1776 check_function_name (char *name
)
1778 /* In functions that have a RESULT variable defined, the function name always
1779 refers to function calls. Therefore, the name is not allowed to appear in
1780 specification statements. When checking this, be careful about
1781 'hidden' procedure pointer results ('ppr@'). */
1783 if (gfc_current_state () == COMP_FUNCTION
)
1785 gfc_symbol
*block
= gfc_current_block ();
1786 if (block
&& block
->result
&& block
->result
!= block
1787 && strcmp (block
->result
->name
, "ppr@") != 0
1788 && strcmp (block
->name
, name
) == 0)
1790 gfc_error ("Function name '%s' not allowed at %C", name
);
1799 /* Match a variable name with an optional initializer. When this
1800 subroutine is called, a variable is expected to be parsed next.
1801 Depending on what is happening at the moment, updates either the
1802 symbol table or the current interface. */
1805 variable_decl (int elem
)
1807 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
1808 gfc_expr
*initializer
, *char_len
;
1810 gfc_array_spec
*cp_as
; /* Extra copy for Cray Pointees. */
1822 /* When we get here, we've just matched a list of attributes and
1823 maybe a type and a double colon. The next thing we expect to see
1824 is the name of the symbol. */
1825 m
= gfc_match_name (name
);
1829 var_locus
= gfc_current_locus
;
1831 /* Now we could see the optional array spec. or character length. */
1832 m
= gfc_match_array_spec (&as
, true, true);
1833 if (m
== MATCH_ERROR
)
1837 as
= gfc_copy_array_spec (current_as
);
1839 && !merge_array_spec (current_as
, as
, true))
1845 if (gfc_option
.flag_cray_pointer
)
1846 cp_as
= gfc_copy_array_spec (as
);
1848 /* At this point, we know for sure if the symbol is PARAMETER and can thus
1849 determine (and check) whether it can be implied-shape. If it
1850 was parsed as assumed-size, change it because PARAMETERs can not
1854 if (as
->type
== AS_IMPLIED_SHAPE
&& current_attr
.flavor
!= FL_PARAMETER
)
1857 gfc_error ("Non-PARAMETER symbol '%s' at %L can't be implied-shape",
1862 if (as
->type
== AS_ASSUMED_SIZE
&& as
->rank
== 1
1863 && current_attr
.flavor
== FL_PARAMETER
)
1864 as
->type
= AS_IMPLIED_SHAPE
;
1866 if (as
->type
== AS_IMPLIED_SHAPE
1867 && !gfc_notify_std (GFC_STD_F2008
, "Implied-shape array at %L",
1877 cl_deferred
= false;
1879 if (current_ts
.type
== BT_CHARACTER
)
1881 switch (match_char_length (&char_len
, &cl_deferred
, false))
1884 cl
= gfc_new_charlen (gfc_current_ns
, NULL
);
1886 cl
->length
= char_len
;
1889 /* Non-constant lengths need to be copied after the first
1890 element. Also copy assumed lengths. */
1893 && (current_ts
.u
.cl
->length
== NULL
1894 || current_ts
.u
.cl
->length
->expr_type
!= EXPR_CONSTANT
))
1896 cl
= gfc_new_charlen (gfc_current_ns
, NULL
);
1897 cl
->length
= gfc_copy_expr (current_ts
.u
.cl
->length
);
1900 cl
= current_ts
.u
.cl
;
1902 cl_deferred
= current_ts
.deferred
;
1911 /* If this symbol has already shown up in a Cray Pointer declaration,
1912 then we want to set the type & bail out. */
1913 if (gfc_option
.flag_cray_pointer
)
1915 gfc_find_symbol (name
, gfc_current_ns
, 1, &sym
);
1916 if (sym
!= NULL
&& sym
->attr
.cray_pointee
)
1918 sym
->ts
.type
= current_ts
.type
;
1919 sym
->ts
.kind
= current_ts
.kind
;
1921 sym
->ts
.u
.derived
= current_ts
.u
.derived
;
1922 sym
->ts
.is_c_interop
= current_ts
.is_c_interop
;
1923 sym
->ts
.is_iso_c
= current_ts
.is_iso_c
;
1926 /* Check to see if we have an array specification. */
1929 if (sym
->as
!= NULL
)
1931 gfc_error ("Duplicate array spec for Cray pointee at %C");
1932 gfc_free_array_spec (cp_as
);
1938 if (!gfc_set_array_spec (sym
, cp_as
, &var_locus
))
1939 gfc_internal_error ("Couldn't set pointee array spec.");
1941 /* Fix the array spec. */
1942 m
= gfc_mod_pointee_as (sym
->as
);
1943 if (m
== MATCH_ERROR
)
1951 gfc_free_array_spec (cp_as
);
1955 /* Procedure pointer as function result. */
1956 if (gfc_current_state () == COMP_FUNCTION
1957 && strcmp ("ppr@", gfc_current_block ()->name
) == 0
1958 && strcmp (name
, gfc_current_block ()->ns
->proc_name
->name
) == 0)
1959 strcpy (name
, "ppr@");
1961 if (gfc_current_state () == COMP_FUNCTION
1962 && strcmp (name
, gfc_current_block ()->name
) == 0
1963 && gfc_current_block ()->result
1964 && strcmp ("ppr@", gfc_current_block ()->result
->name
) == 0)
1965 strcpy (name
, "ppr@");
1967 /* OK, we've successfully matched the declaration. Now put the
1968 symbol in the current namespace, because it might be used in the
1969 optional initialization expression for this symbol, e.g. this is
1972 integer, parameter :: i = huge(i)
1974 This is only true for parameters or variables of a basic type.
1975 For components of derived types, it is not true, so we don't
1976 create a symbol for those yet. If we fail to create the symbol,
1978 if (gfc_current_state () != COMP_DERIVED
1979 && !build_sym (name
, cl
, cl_deferred
, &as
, &var_locus
))
1985 if (!check_function_name (name
))
1991 /* We allow old-style initializations of the form
1992 integer i /2/, j(4) /3*3, 1/
1993 (if no colon has been seen). These are different from data
1994 statements in that initializers are only allowed to apply to the
1995 variable immediately preceding, i.e.
1997 is not allowed. Therefore we have to do some work manually, that
1998 could otherwise be left to the matchers for DATA statements. */
2000 if (!colon_seen
&& gfc_match (" /") == MATCH_YES
)
2002 if (!gfc_notify_std (GFC_STD_GNU
, "Old-style "
2003 "initialization at %C"))
2006 return match_old_style_init (name
);
2009 /* The double colon must be present in order to have initializers.
2010 Otherwise the statement is ambiguous with an assignment statement. */
2013 if (gfc_match (" =>") == MATCH_YES
)
2015 if (!current_attr
.pointer
)
2017 gfc_error ("Initialization at %C isn't for a pointer variable");
2022 m
= match_pointer_init (&initializer
, 0);
2026 else if (gfc_match_char ('=') == MATCH_YES
)
2028 if (current_attr
.pointer
)
2030 gfc_error ("Pointer initialization at %C requires '=>', "
2036 m
= gfc_match_init_expr (&initializer
);
2039 gfc_error ("Expected an initialization expression at %C");
2043 if (current_attr
.flavor
!= FL_PARAMETER
&& gfc_pure (NULL
)
2044 && gfc_state_stack
->state
!= COMP_DERIVED
)
2046 gfc_error ("Initialization of variable at %C is not allowed in "
2047 "a PURE procedure");
2056 if (initializer
!= NULL
&& current_attr
.allocatable
2057 && gfc_current_state () == COMP_DERIVED
)
2059 gfc_error ("Initialization of allocatable component at %C is not "
2065 /* Add the initializer. Note that it is fine if initializer is
2066 NULL here, because we sometimes also need to check if a
2067 declaration *must* have an initialization expression. */
2068 if (gfc_current_state () != COMP_DERIVED
)
2069 t
= add_init_expr_to_sym (name
, &initializer
, &var_locus
);
2072 if (current_ts
.type
== BT_DERIVED
2073 && !current_attr
.pointer
&& !initializer
)
2074 initializer
= gfc_default_initializer (¤t_ts
);
2075 t
= build_struct (name
, cl
, &initializer
, &as
);
2078 m
= (t
) ? MATCH_YES
: MATCH_ERROR
;
2081 /* Free stuff up and return. */
2082 gfc_free_expr (initializer
);
2083 gfc_free_array_spec (as
);
2089 /* Match an extended-f77 "TYPESPEC*bytesize"-style kind specification.
2090 This assumes that the byte size is equal to the kind number for
2091 non-COMPLEX types, and equal to twice the kind number for COMPLEX. */
2094 gfc_match_old_kind_spec (gfc_typespec
*ts
)
2099 if (gfc_match_char ('*') != MATCH_YES
)
2102 m
= gfc_match_small_literal_int (&ts
->kind
, NULL
);
2106 original_kind
= ts
->kind
;
2108 /* Massage the kind numbers for complex types. */
2109 if (ts
->type
== BT_COMPLEX
)
2113 gfc_error ("Old-style type declaration %s*%d not supported at %C",
2114 gfc_basic_typename (ts
->type
), original_kind
);
2121 if (ts
->type
== BT_INTEGER
&& ts
->kind
== 4 && gfc_option
.flag_integer4_kind
== 8)
2124 if (ts
->type
== BT_REAL
|| ts
->type
== BT_COMPLEX
)
2128 if (gfc_option
.flag_real4_kind
== 8)
2130 if (gfc_option
.flag_real4_kind
== 10)
2132 if (gfc_option
.flag_real4_kind
== 16)
2138 if (gfc_option
.flag_real8_kind
== 4)
2140 if (gfc_option
.flag_real8_kind
== 10)
2142 if (gfc_option
.flag_real8_kind
== 16)
2147 if (gfc_validate_kind (ts
->type
, ts
->kind
, true) < 0)
2149 gfc_error ("Old-style type declaration %s*%d not supported at %C",
2150 gfc_basic_typename (ts
->type
), original_kind
);
2154 if (!gfc_notify_std (GFC_STD_GNU
,
2155 "Nonstandard type declaration %s*%d at %C",
2156 gfc_basic_typename(ts
->type
), original_kind
))
2163 /* Match a kind specification. Since kinds are generally optional, we
2164 usually return MATCH_NO if something goes wrong. If a "kind="
2165 string is found, then we know we have an error. */
2168 gfc_match_kind_spec (gfc_typespec
*ts
, bool kind_expr_only
)
2180 where
= loc
= gfc_current_locus
;
2185 if (gfc_match_char ('(') == MATCH_NO
)
2188 /* Also gobbles optional text. */
2189 if (gfc_match (" kind = ") == MATCH_YES
)
2192 loc
= gfc_current_locus
;
2195 n
= gfc_match_init_expr (&e
);
2199 if (gfc_matching_function
)
2201 /* The function kind expression might include use associated or
2202 imported parameters and try again after the specification
2204 if (gfc_match_char (')') != MATCH_YES
)
2206 gfc_error ("Missing right parenthesis at %C");
2212 gfc_undo_symbols ();
2217 /* ....or else, the match is real. */
2219 gfc_error ("Expected initialization expression at %C");
2227 gfc_error ("Expected scalar initialization expression at %C");
2232 msg
= gfc_extract_int (e
, &ts
->kind
);
2241 /* Before throwing away the expression, let's see if we had a
2242 C interoperable kind (and store the fact). */
2243 if (e
->ts
.is_c_interop
== 1)
2245 /* Mark this as C interoperable if being declared with one
2246 of the named constants from iso_c_binding. */
2247 ts
->is_c_interop
= e
->ts
.is_iso_c
;
2248 ts
->f90_type
= e
->ts
.f90_type
;
2254 /* Ignore errors to this point, if we've gotten here. This means
2255 we ignore the m=MATCH_ERROR from above. */
2256 if (gfc_validate_kind (ts
->type
, ts
->kind
, true) < 0)
2258 gfc_error ("Kind %d not supported for type %s at %C", ts
->kind
,
2259 gfc_basic_typename (ts
->type
));
2260 gfc_current_locus
= where
;
2264 /* Warn if, e.g., c_int is used for a REAL variable, but not
2265 if, e.g., c_double is used for COMPLEX as the standard
2266 explicitly says that the kind type parameter for complex and real
2267 variable is the same, i.e. c_float == c_float_complex. */
2268 if (ts
->f90_type
!= BT_UNKNOWN
&& ts
->f90_type
!= ts
->type
2269 && !((ts
->f90_type
== BT_REAL
&& ts
->type
== BT_COMPLEX
)
2270 || (ts
->f90_type
== BT_COMPLEX
&& ts
->type
== BT_REAL
)))
2271 gfc_warning_now ("C kind type parameter is for type %s but type at %L "
2272 "is %s", gfc_basic_typename (ts
->f90_type
), &where
,
2273 gfc_basic_typename (ts
->type
));
2275 gfc_gobble_whitespace ();
2276 if ((c
= gfc_next_ascii_char ()) != ')'
2277 && (ts
->type
!= BT_CHARACTER
|| c
!= ','))
2279 if (ts
->type
== BT_CHARACTER
)
2280 gfc_error ("Missing right parenthesis or comma at %C");
2282 gfc_error ("Missing right parenthesis at %C");
2286 /* All tests passed. */
2289 if(m
== MATCH_ERROR
)
2290 gfc_current_locus
= where
;
2292 if (ts
->type
== BT_INTEGER
&& ts
->kind
== 4 && gfc_option
.flag_integer4_kind
== 8)
2295 if (ts
->type
== BT_REAL
|| ts
->type
== BT_COMPLEX
)
2299 if (gfc_option
.flag_real4_kind
== 8)
2301 if (gfc_option
.flag_real4_kind
== 10)
2303 if (gfc_option
.flag_real4_kind
== 16)
2309 if (gfc_option
.flag_real8_kind
== 4)
2311 if (gfc_option
.flag_real8_kind
== 10)
2313 if (gfc_option
.flag_real8_kind
== 16)
2318 /* Return what we know from the test(s). */
2323 gfc_current_locus
= where
;
2329 match_char_kind (int * kind
, int * is_iso_c
)
2338 where
= gfc_current_locus
;
2340 n
= gfc_match_init_expr (&e
);
2342 if (n
!= MATCH_YES
&& gfc_matching_function
)
2344 /* The expression might include use-associated or imported
2345 parameters and try again after the specification
2348 gfc_undo_symbols ();
2353 gfc_error ("Expected initialization expression at %C");
2359 gfc_error ("Expected scalar initialization expression at %C");
2364 msg
= gfc_extract_int (e
, kind
);
2365 *is_iso_c
= e
->ts
.is_iso_c
;
2375 /* Ignore errors to this point, if we've gotten here. This means
2376 we ignore the m=MATCH_ERROR from above. */
2377 if (gfc_validate_kind (BT_CHARACTER
, *kind
, true) < 0)
2379 gfc_error ("Kind %d is not supported for CHARACTER at %C", *kind
);
2383 /* All tests passed. */
2386 if (m
== MATCH_ERROR
)
2387 gfc_current_locus
= where
;
2389 /* Return what we know from the test(s). */
2394 gfc_current_locus
= where
;
2399 /* Match the various kind/length specifications in a CHARACTER
2400 declaration. We don't return MATCH_NO. */
2403 gfc_match_char_spec (gfc_typespec
*ts
)
2405 int kind
, seen_length
, is_iso_c
;
2417 /* Try the old-style specification first. */
2418 old_char_selector
= 0;
2420 m
= match_char_length (&len
, &deferred
, true);
2424 old_char_selector
= 1;
2429 m
= gfc_match_char ('(');
2432 m
= MATCH_YES
; /* Character without length is a single char. */
2436 /* Try the weird case: ( KIND = <int> [ , LEN = <len-param> ] ). */
2437 if (gfc_match (" kind =") == MATCH_YES
)
2439 m
= match_char_kind (&kind
, &is_iso_c
);
2441 if (m
== MATCH_ERROR
)
2446 if (gfc_match (" , len =") == MATCH_NO
)
2449 m
= char_len_param_value (&len
, &deferred
);
2452 if (m
== MATCH_ERROR
)
2459 /* Try to match "LEN = <len-param>" or "LEN = <len-param>, KIND = <int>". */
2460 if (gfc_match (" len =") == MATCH_YES
)
2462 m
= char_len_param_value (&len
, &deferred
);
2465 if (m
== MATCH_ERROR
)
2469 if (gfc_match_char (')') == MATCH_YES
)
2472 if (gfc_match (" , kind =") != MATCH_YES
)
2475 if (match_char_kind (&kind
, &is_iso_c
) == MATCH_ERROR
)
2481 /* Try to match ( <len-param> ) or ( <len-param> , [ KIND = ] <int> ). */
2482 m
= char_len_param_value (&len
, &deferred
);
2485 if (m
== MATCH_ERROR
)
2489 m
= gfc_match_char (')');
2493 if (gfc_match_char (',') != MATCH_YES
)
2496 gfc_match (" kind ="); /* Gobble optional text. */
2498 m
= match_char_kind (&kind
, &is_iso_c
);
2499 if (m
== MATCH_ERROR
)
2505 /* Require a right-paren at this point. */
2506 m
= gfc_match_char (')');
2511 gfc_error ("Syntax error in CHARACTER declaration at %C");
2513 gfc_free_expr (len
);
2517 /* Deal with character functions after USE and IMPORT statements. */
2518 if (gfc_matching_function
)
2520 gfc_free_expr (len
);
2521 gfc_undo_symbols ();
2527 gfc_free_expr (len
);
2531 /* Do some final massaging of the length values. */
2532 cl
= gfc_new_charlen (gfc_current_ns
, NULL
);
2534 if (seen_length
== 0)
2535 cl
->length
= gfc_get_int_expr (gfc_default_integer_kind
, NULL
, 1);
2540 ts
->kind
= kind
== 0 ? gfc_default_character_kind
: kind
;
2541 ts
->deferred
= deferred
;
2543 /* We have to know if it was a C interoperable kind so we can
2544 do accurate type checking of bind(c) procs, etc. */
2546 /* Mark this as C interoperable if being declared with one
2547 of the named constants from iso_c_binding. */
2548 ts
->is_c_interop
= is_iso_c
;
2549 else if (len
!= NULL
)
2550 /* Here, we might have parsed something such as: character(c_char)
2551 In this case, the parsing code above grabs the c_char when
2552 looking for the length (line 1690, roughly). it's the last
2553 testcase for parsing the kind params of a character variable.
2554 However, it's not actually the length. this seems like it
2556 To see if the user used a C interop kind, test the expr
2557 of the so called length, and see if it's C interoperable. */
2558 ts
->is_c_interop
= len
->ts
.is_iso_c
;
2564 /* Matches a declaration-type-spec (F03:R502). If successful, sets the ts
2565 structure to the matched specification. This is necessary for FUNCTION and
2566 IMPLICIT statements.
2568 If implicit_flag is nonzero, then we don't check for the optional
2569 kind specification. Not doing so is needed for matching an IMPLICIT
2570 statement correctly. */
2573 gfc_match_decl_type_spec (gfc_typespec
*ts
, int implicit_flag
)
2575 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
2576 gfc_symbol
*sym
, *dt_sym
;
2579 bool seen_deferred_kind
, matched_type
;
2580 const char *dt_name
;
2582 /* A belt and braces check that the typespec is correctly being treated
2583 as a deferred characteristic association. */
2584 seen_deferred_kind
= (gfc_current_state () == COMP_FUNCTION
)
2585 && (gfc_current_block ()->result
->ts
.kind
== -1)
2586 && (ts
->kind
== -1);
2588 if (seen_deferred_kind
)
2591 /* Clear the current binding label, in case one is given. */
2592 curr_binding_label
= NULL
;
2594 if (gfc_match (" byte") == MATCH_YES
)
2596 if (!gfc_notify_std (GFC_STD_GNU
, "BYTE type at %C"))
2599 if (gfc_validate_kind (BT_INTEGER
, 1, true) < 0)
2601 gfc_error ("BYTE type used at %C "
2602 "is not available on the target machine");
2606 ts
->type
= BT_INTEGER
;
2612 m
= gfc_match (" type (");
2613 matched_type
= (m
== MATCH_YES
);
2616 gfc_gobble_whitespace ();
2617 if (gfc_peek_ascii_char () == '*')
2619 if ((m
= gfc_match ("*)")) != MATCH_YES
)
2621 if (gfc_current_state () == COMP_DERIVED
)
2623 gfc_error ("Assumed type at %C is not allowed for components");
2626 if (!gfc_notify_std (GFC_STD_F2008_TS
, "Assumed type "
2629 ts
->type
= BT_ASSUMED
;
2633 m
= gfc_match ("%n", name
);
2634 matched_type
= (m
== MATCH_YES
);
2637 if ((matched_type
&& strcmp ("integer", name
) == 0)
2638 || (!matched_type
&& gfc_match (" integer") == MATCH_YES
))
2640 ts
->type
= BT_INTEGER
;
2641 ts
->kind
= gfc_default_integer_kind
;
2645 if ((matched_type
&& strcmp ("character", name
) == 0)
2646 || (!matched_type
&& gfc_match (" character") == MATCH_YES
))
2649 && !gfc_notify_std (GFC_STD_F2008
, "TYPE with "
2650 "intrinsic-type-spec at %C"))
2653 ts
->type
= BT_CHARACTER
;
2654 if (implicit_flag
== 0)
2655 m
= gfc_match_char_spec (ts
);
2659 if (matched_type
&& m
== MATCH_YES
&& gfc_match_char (')') != MATCH_YES
)
2665 if ((matched_type
&& strcmp ("real", name
) == 0)
2666 || (!matched_type
&& gfc_match (" real") == MATCH_YES
))
2669 ts
->kind
= gfc_default_real_kind
;
2674 && (strcmp ("doubleprecision", name
) == 0
2675 || (strcmp ("double", name
) == 0
2676 && gfc_match (" precision") == MATCH_YES
)))
2677 || (!matched_type
&& gfc_match (" double precision") == MATCH_YES
))
2680 && !gfc_notify_std (GFC_STD_F2008
, "TYPE with "
2681 "intrinsic-type-spec at %C"))
2683 if (matched_type
&& gfc_match_char (')') != MATCH_YES
)
2687 ts
->kind
= gfc_default_double_kind
;
2691 if ((matched_type
&& strcmp ("complex", name
) == 0)
2692 || (!matched_type
&& gfc_match (" complex") == MATCH_YES
))
2694 ts
->type
= BT_COMPLEX
;
2695 ts
->kind
= gfc_default_complex_kind
;
2700 && (strcmp ("doublecomplex", name
) == 0
2701 || (strcmp ("double", name
) == 0
2702 && gfc_match (" complex") == MATCH_YES
)))
2703 || (!matched_type
&& gfc_match (" double complex") == MATCH_YES
))
2705 if (!gfc_notify_std (GFC_STD_GNU
, "DOUBLE COMPLEX at %C"))
2709 && !gfc_notify_std (GFC_STD_F2008
, "TYPE with "
2710 "intrinsic-type-spec at %C"))
2713 if (matched_type
&& gfc_match_char (')') != MATCH_YES
)
2716 ts
->type
= BT_COMPLEX
;
2717 ts
->kind
= gfc_default_double_kind
;
2721 if ((matched_type
&& strcmp ("logical", name
) == 0)
2722 || (!matched_type
&& gfc_match (" logical") == MATCH_YES
))
2724 ts
->type
= BT_LOGICAL
;
2725 ts
->kind
= gfc_default_logical_kind
;
2730 m
= gfc_match_char (')');
2733 ts
->type
= BT_DERIVED
;
2736 /* Match CLASS declarations. */
2737 m
= gfc_match (" class ( * )");
2738 if (m
== MATCH_ERROR
)
2740 else if (m
== MATCH_YES
)
2744 ts
->type
= BT_CLASS
;
2745 gfc_find_symbol ("STAR", gfc_current_ns
, 1, &upe
);
2748 upe
= gfc_new_symbol ("STAR", gfc_current_ns
);
2749 st
= gfc_new_symtree (&gfc_current_ns
->sym_root
, "STAR");
2751 gfc_set_sym_referenced (upe
);
2753 upe
->ts
.type
= BT_VOID
;
2754 upe
->attr
.unlimited_polymorphic
= 1;
2755 /* This is essential to force the construction of
2756 unlimited polymorphic component class containers. */
2757 upe
->attr
.zero_comp
= 1;
2758 if (!gfc_add_flavor (&upe
->attr
, FL_DERIVED
, NULL
,
2759 &gfc_current_locus
))
2764 st
= gfc_find_symtree (gfc_current_ns
->sym_root
, "STAR");
2766 st
= gfc_new_symtree (&gfc_current_ns
->sym_root
, "STAR");
2770 ts
->u
.derived
= upe
;
2774 m
= gfc_match (" class ( %n )", name
);
2777 ts
->type
= BT_CLASS
;
2779 if (!gfc_notify_std (GFC_STD_F2003
, "CLASS statement at %C"))
2783 /* Defer association of the derived type until the end of the
2784 specification block. However, if the derived type can be
2785 found, add it to the typespec. */
2786 if (gfc_matching_function
)
2788 ts
->u
.derived
= NULL
;
2789 if (gfc_current_state () != COMP_INTERFACE
2790 && !gfc_find_symbol (name
, NULL
, 1, &sym
) && sym
)
2792 sym
= gfc_find_dt_in_generic (sym
);
2793 ts
->u
.derived
= sym
;
2798 /* Search for the name but allow the components to be defined later. If
2799 type = -1, this typespec has been seen in a function declaration but
2800 the type could not be accessed at that point. The actual derived type is
2801 stored in a symtree with the first letter of the name capitalized; the
2802 symtree with the all lower-case name contains the associated
2803 generic function. */
2804 dt_name
= gfc_get_string ("%c%s",
2805 (char) TOUPPER ((unsigned char) name
[0]),
2806 (const char*)&name
[1]);
2811 gfc_get_ha_symbol (name
, &sym
);
2812 if (sym
->generic
&& gfc_find_symbol (dt_name
, NULL
, 0, &dt_sym
))
2814 gfc_error ("Type name '%s' at %C is ambiguous", name
);
2817 if (sym
->generic
&& !dt_sym
)
2818 dt_sym
= gfc_find_dt_in_generic (sym
);
2820 else if (ts
->kind
== -1)
2822 int iface
= gfc_state_stack
->previous
->state
!= COMP_INTERFACE
2823 || gfc_current_ns
->has_import_set
;
2824 gfc_find_symbol (name
, NULL
, iface
, &sym
);
2825 if (sym
&& sym
->generic
&& gfc_find_symbol (dt_name
, NULL
, 1, &dt_sym
))
2827 gfc_error ("Type name '%s' at %C is ambiguous", name
);
2830 if (sym
&& sym
->generic
&& !dt_sym
)
2831 dt_sym
= gfc_find_dt_in_generic (sym
);
2838 if ((sym
->attr
.flavor
!= FL_UNKNOWN
2839 && !(sym
->attr
.flavor
== FL_PROCEDURE
&& sym
->attr
.generic
))
2840 || sym
->attr
.subroutine
)
2842 gfc_error ("Type name '%s' at %C conflicts with previously declared "
2843 "entity at %L, which has the same name", name
,
2848 gfc_set_sym_referenced (sym
);
2849 if (!sym
->attr
.generic
2850 && !gfc_add_generic (&sym
->attr
, sym
->name
, NULL
))
2853 if (!sym
->attr
.function
2854 && !gfc_add_function (&sym
->attr
, sym
->name
, NULL
))
2859 gfc_interface
*intr
, *head
;
2861 /* Use upper case to save the actual derived-type symbol. */
2862 gfc_get_symbol (dt_name
, NULL
, &dt_sym
);
2863 dt_sym
->name
= gfc_get_string (sym
->name
);
2864 head
= sym
->generic
;
2865 intr
= gfc_get_interface ();
2867 intr
->where
= gfc_current_locus
;
2869 sym
->generic
= intr
;
2870 sym
->attr
.if_source
= IFSRC_DECL
;
2873 gfc_set_sym_referenced (dt_sym
);
2875 if (dt_sym
->attr
.flavor
!= FL_DERIVED
2876 && !gfc_add_flavor (&dt_sym
->attr
, FL_DERIVED
, sym
->name
, NULL
))
2879 ts
->u
.derived
= dt_sym
;
2885 && !gfc_notify_std (GFC_STD_F2008
, "TYPE with "
2886 "intrinsic-type-spec at %C"))
2889 /* For all types except double, derived and character, look for an
2890 optional kind specifier. MATCH_NO is actually OK at this point. */
2891 if (implicit_flag
== 1)
2893 if (matched_type
&& gfc_match_char (')') != MATCH_YES
)
2899 if (gfc_current_form
== FORM_FREE
)
2901 c
= gfc_peek_ascii_char ();
2902 if (!gfc_is_whitespace (c
) && c
!= '*' && c
!= '('
2903 && c
!= ':' && c
!= ',')
2905 if (matched_type
&& c
== ')')
2907 gfc_next_ascii_char ();
2914 m
= gfc_match_kind_spec (ts
, false);
2915 if (m
== MATCH_NO
&& ts
->type
!= BT_CHARACTER
)
2916 m
= gfc_match_old_kind_spec (ts
);
2918 if (matched_type
&& gfc_match_char (')') != MATCH_YES
)
2921 /* Defer association of the KIND expression of function results
2922 until after USE and IMPORT statements. */
2923 if ((gfc_current_state () == COMP_NONE
&& gfc_error_flag_test ())
2924 || gfc_matching_function
)
2928 m
= MATCH_YES
; /* No kind specifier found. */
2934 /* Match an IMPLICIT NONE statement. Actually, this statement is
2935 already matched in parse.c, or we would not end up here in the
2936 first place. So the only thing we need to check, is if there is
2937 trailing garbage. If not, the match is successful. */
2940 gfc_match_implicit_none (void)
2942 return (gfc_match_eos () == MATCH_YES
) ? MATCH_YES
: MATCH_NO
;
2946 /* Match the letter range(s) of an IMPLICIT statement. */
2949 match_implicit_range (void)
2955 cur_loc
= gfc_current_locus
;
2957 gfc_gobble_whitespace ();
2958 c
= gfc_next_ascii_char ();
2961 gfc_error ("Missing character range in IMPLICIT at %C");
2968 gfc_gobble_whitespace ();
2969 c1
= gfc_next_ascii_char ();
2973 gfc_gobble_whitespace ();
2974 c
= gfc_next_ascii_char ();
2979 inner
= 0; /* Fall through. */
2986 gfc_gobble_whitespace ();
2987 c2
= gfc_next_ascii_char ();
2991 gfc_gobble_whitespace ();
2992 c
= gfc_next_ascii_char ();
2994 if ((c
!= ',') && (c
!= ')'))
3007 gfc_error ("Letters must be in alphabetic order in "
3008 "IMPLICIT statement at %C");
3012 /* See if we can add the newly matched range to the pending
3013 implicits from this IMPLICIT statement. We do not check for
3014 conflicts with whatever earlier IMPLICIT statements may have
3015 set. This is done when we've successfully finished matching
3017 if (!gfc_add_new_implicit_range (c1
, c2
))
3024 gfc_syntax_error (ST_IMPLICIT
);
3026 gfc_current_locus
= cur_loc
;
3031 /* Match an IMPLICIT statement, storing the types for
3032 gfc_set_implicit() if the statement is accepted by the parser.
3033 There is a strange looking, but legal syntactic construction
3034 possible. It looks like:
3036 IMPLICIT INTEGER (a-b) (c-d)
3038 This is legal if "a-b" is a constant expression that happens to
3039 equal one of the legal kinds for integers. The real problem
3040 happens with an implicit specification that looks like:
3042 IMPLICIT INTEGER (a-b)
3044 In this case, a typespec matcher that is "greedy" (as most of the
3045 matchers are) gobbles the character range as a kindspec, leaving
3046 nothing left. We therefore have to go a bit more slowly in the
3047 matching process by inhibiting the kindspec checking during
3048 typespec matching and checking for a kind later. */
3051 gfc_match_implicit (void)
3060 /* We don't allow empty implicit statements. */
3061 if (gfc_match_eos () == MATCH_YES
)
3063 gfc_error ("Empty IMPLICIT statement at %C");
3069 /* First cleanup. */
3070 gfc_clear_new_implicit ();
3072 /* A basic type is mandatory here. */
3073 m
= gfc_match_decl_type_spec (&ts
, 1);
3074 if (m
== MATCH_ERROR
)
3079 cur_loc
= gfc_current_locus
;
3080 m
= match_implicit_range ();
3084 /* We may have <TYPE> (<RANGE>). */
3085 gfc_gobble_whitespace ();
3086 c
= gfc_next_ascii_char ();
3087 if ((c
== '\n') || (c
== ','))
3089 /* Check for CHARACTER with no length parameter. */
3090 if (ts
.type
== BT_CHARACTER
&& !ts
.u
.cl
)
3092 ts
.kind
= gfc_default_character_kind
;
3093 ts
.u
.cl
= gfc_new_charlen (gfc_current_ns
, NULL
);
3094 ts
.u
.cl
->length
= gfc_get_int_expr (gfc_default_integer_kind
,
3098 /* Record the Successful match. */
3099 if (!gfc_merge_new_implicit (&ts
))
3104 gfc_current_locus
= cur_loc
;
3107 /* Discard the (incorrectly) matched range. */
3108 gfc_clear_new_implicit ();
3110 /* Last chance -- check <TYPE> <SELECTOR> (<RANGE>). */
3111 if (ts
.type
== BT_CHARACTER
)
3112 m
= gfc_match_char_spec (&ts
);
3115 m
= gfc_match_kind_spec (&ts
, false);
3118 m
= gfc_match_old_kind_spec (&ts
);
3119 if (m
== MATCH_ERROR
)
3125 if (m
== MATCH_ERROR
)
3128 m
= match_implicit_range ();
3129 if (m
== MATCH_ERROR
)
3134 gfc_gobble_whitespace ();
3135 c
= gfc_next_ascii_char ();
3136 if ((c
!= '\n') && (c
!= ','))
3139 if (!gfc_merge_new_implicit (&ts
))
3147 gfc_syntax_error (ST_IMPLICIT
);
3155 gfc_match_import (void)
3157 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
3162 if (gfc_current_ns
->proc_name
== NULL
3163 || gfc_current_ns
->proc_name
->attr
.if_source
!= IFSRC_IFBODY
)
3165 gfc_error ("IMPORT statement at %C only permitted in "
3166 "an INTERFACE body");
3170 if (!gfc_notify_std (GFC_STD_F2003
, "IMPORT statement at %C"))
3173 if (gfc_match_eos () == MATCH_YES
)
3175 /* All host variables should be imported. */
3176 gfc_current_ns
->has_import_set
= 1;
3180 if (gfc_match (" ::") == MATCH_YES
)
3182 if (gfc_match_eos () == MATCH_YES
)
3184 gfc_error ("Expecting list of named entities at %C");
3192 m
= gfc_match (" %n", name
);
3196 if (gfc_current_ns
->parent
!= NULL
3197 && gfc_find_symbol (name
, gfc_current_ns
->parent
, 1, &sym
))
3199 gfc_error ("Type name '%s' at %C is ambiguous", name
);
3202 else if (!sym
&& gfc_current_ns
->proc_name
->ns
->parent
!= NULL
3203 && gfc_find_symbol (name
,
3204 gfc_current_ns
->proc_name
->ns
->parent
,
3207 gfc_error ("Type name '%s' at %C is ambiguous", name
);
3213 gfc_error ("Cannot IMPORT '%s' from host scoping unit "
3214 "at %C - does not exist.", name
);
3218 if (gfc_find_symtree (gfc_current_ns
->sym_root
, name
))
3220 gfc_warning ("'%s' is already IMPORTed from host scoping unit "
3225 st
= gfc_new_symtree (&gfc_current_ns
->sym_root
, name
);
3228 sym
->attr
.imported
= 1;
3230 if (sym
->attr
.generic
&& (sym
= gfc_find_dt_in_generic (sym
)))
3232 /* The actual derived type is stored in a symtree with the first
3233 letter of the name capitalized; the symtree with the all
3234 lower-case name contains the associated generic function. */
3235 st
= gfc_new_symtree (&gfc_current_ns
->sym_root
,
3236 gfc_get_string ("%c%s",
3237 (char) TOUPPER ((unsigned char) name
[0]),
3241 sym
->attr
.imported
= 1;
3254 if (gfc_match_eos () == MATCH_YES
)
3256 if (gfc_match_char (',') != MATCH_YES
)
3263 gfc_error ("Syntax error in IMPORT statement at %C");
3268 /* A minimal implementation of gfc_match without whitespace, escape
3269 characters or variable arguments. Returns true if the next
3270 characters match the TARGET template exactly. */
3273 match_string_p (const char *target
)
3277 for (p
= target
; *p
; p
++)
3278 if ((char) gfc_next_ascii_char () != *p
)
3283 /* Matches an attribute specification including array specs. If
3284 successful, leaves the variables current_attr and current_as
3285 holding the specification. Also sets the colon_seen variable for
3286 later use by matchers associated with initializations.
3288 This subroutine is a little tricky in the sense that we don't know
3289 if we really have an attr-spec until we hit the double colon.
3290 Until that time, we can only return MATCH_NO. This forces us to
3291 check for duplicate specification at this level. */
3294 match_attr_spec (void)
3296 /* Modifiers that can exist in a type statement. */
3298 { GFC_DECL_BEGIN
= 0,
3299 DECL_ALLOCATABLE
= GFC_DECL_BEGIN
, DECL_DIMENSION
, DECL_EXTERNAL
,
3300 DECL_IN
, DECL_OUT
, DECL_INOUT
, DECL_INTRINSIC
, DECL_OPTIONAL
,
3301 DECL_PARAMETER
, DECL_POINTER
, DECL_PROTECTED
, DECL_PRIVATE
,
3302 DECL_PUBLIC
, DECL_SAVE
, DECL_TARGET
, DECL_VALUE
, DECL_VOLATILE
,
3303 DECL_IS_BIND_C
, DECL_CODIMENSION
, DECL_ASYNCHRONOUS
, DECL_CONTIGUOUS
,
3304 DECL_NONE
, GFC_DECL_END
/* Sentinel */
3307 /* GFC_DECL_END is the sentinel, index starts at 0. */
3308 #define NUM_DECL GFC_DECL_END
3310 locus start
, seen_at
[NUM_DECL
];
3317 gfc_clear_attr (¤t_attr
);
3318 start
= gfc_current_locus
;
3323 /* See if we get all of the keywords up to the final double colon. */
3324 for (d
= GFC_DECL_BEGIN
; d
!= GFC_DECL_END
; d
++)
3332 gfc_gobble_whitespace ();
3334 ch
= gfc_next_ascii_char ();
3337 /* This is the successful exit condition for the loop. */
3338 if (gfc_next_ascii_char () == ':')
3343 gfc_gobble_whitespace ();
3344 switch (gfc_peek_ascii_char ())
3347 gfc_next_ascii_char ();
3348 switch (gfc_next_ascii_char ())
3351 if (match_string_p ("locatable"))
3353 /* Matched "allocatable". */
3354 d
= DECL_ALLOCATABLE
;
3359 if (match_string_p ("ynchronous"))
3361 /* Matched "asynchronous". */
3362 d
= DECL_ASYNCHRONOUS
;
3369 /* Try and match the bind(c). */
3370 m
= gfc_match_bind_c (NULL
, true);
3373 else if (m
== MATCH_ERROR
)
3378 gfc_next_ascii_char ();
3379 if ('o' != gfc_next_ascii_char ())
3381 switch (gfc_next_ascii_char ())
3384 if (match_string_p ("imension"))
3386 d
= DECL_CODIMENSION
;
3390 if (match_string_p ("tiguous"))
3392 d
= DECL_CONTIGUOUS
;
3399 if (match_string_p ("dimension"))
3404 if (match_string_p ("external"))
3409 if (match_string_p ("int"))
3411 ch
= gfc_next_ascii_char ();
3414 if (match_string_p ("nt"))
3416 /* Matched "intent". */
3417 /* TODO: Call match_intent_spec from here. */
3418 if (gfc_match (" ( in out )") == MATCH_YES
)
3420 else if (gfc_match (" ( in )") == MATCH_YES
)
3422 else if (gfc_match (" ( out )") == MATCH_YES
)
3428 if (match_string_p ("insic"))
3430 /* Matched "intrinsic". */
3438 if (match_string_p ("optional"))
3443 gfc_next_ascii_char ();
3444 switch (gfc_next_ascii_char ())
3447 if (match_string_p ("rameter"))
3449 /* Matched "parameter". */
3455 if (match_string_p ("inter"))
3457 /* Matched "pointer". */
3463 ch
= gfc_next_ascii_char ();
3466 if (match_string_p ("vate"))
3468 /* Matched "private". */
3474 if (match_string_p ("tected"))
3476 /* Matched "protected". */
3483 if (match_string_p ("blic"))
3485 /* Matched "public". */
3493 if (match_string_p ("save"))
3498 if (match_string_p ("target"))
3503 gfc_next_ascii_char ();
3504 ch
= gfc_next_ascii_char ();
3507 if (match_string_p ("lue"))
3509 /* Matched "value". */
3515 if (match_string_p ("latile"))
3517 /* Matched "volatile". */
3525 /* No double colon and no recognizable decl_type, so assume that
3526 we've been looking at something else the whole time. */
3533 /* Check to make sure any parens are paired up correctly. */
3534 if (gfc_match_parens () == MATCH_ERROR
)
3541 seen_at
[d
] = gfc_current_locus
;
3543 if (d
== DECL_DIMENSION
|| d
== DECL_CODIMENSION
)
3545 gfc_array_spec
*as
= NULL
;
3547 m
= gfc_match_array_spec (&as
, d
== DECL_DIMENSION
,
3548 d
== DECL_CODIMENSION
);
3550 if (current_as
== NULL
)
3552 else if (m
== MATCH_YES
)
3554 if (!merge_array_spec (as
, current_as
, false))
3561 if (d
== DECL_CODIMENSION
)
3562 gfc_error ("Missing codimension specification at %C");
3564 gfc_error ("Missing dimension specification at %C");
3568 if (m
== MATCH_ERROR
)
3573 /* Since we've seen a double colon, we have to be looking at an
3574 attr-spec. This means that we can now issue errors. */
3575 for (d
= GFC_DECL_BEGIN
; d
!= GFC_DECL_END
; d
++)
3580 case DECL_ALLOCATABLE
:
3581 attr
= "ALLOCATABLE";
3583 case DECL_ASYNCHRONOUS
:
3584 attr
= "ASYNCHRONOUS";
3586 case DECL_CODIMENSION
:
3587 attr
= "CODIMENSION";
3589 case DECL_CONTIGUOUS
:
3590 attr
= "CONTIGUOUS";
3592 case DECL_DIMENSION
:
3599 attr
= "INTENT (IN)";
3602 attr
= "INTENT (OUT)";
3605 attr
= "INTENT (IN OUT)";
3607 case DECL_INTRINSIC
:
3613 case DECL_PARAMETER
:
3619 case DECL_PROTECTED
:
3634 case DECL_IS_BIND_C
:
3644 attr
= NULL
; /* This shouldn't happen. */
3647 gfc_error ("Duplicate %s attribute at %L", attr
, &seen_at
[d
]);
3652 /* Now that we've dealt with duplicate attributes, add the attributes
3653 to the current attribute. */
3654 for (d
= GFC_DECL_BEGIN
; d
!= GFC_DECL_END
; d
++)
3659 if (gfc_current_state () == COMP_DERIVED
3660 && d
!= DECL_DIMENSION
&& d
!= DECL_CODIMENSION
3661 && d
!= DECL_POINTER
&& d
!= DECL_PRIVATE
3662 && d
!= DECL_PUBLIC
&& d
!= DECL_CONTIGUOUS
&& d
!= DECL_NONE
)
3664 if (d
== DECL_ALLOCATABLE
)
3666 if (!gfc_notify_std (GFC_STD_F2003
, "ALLOCATABLE "
3667 "attribute at %C in a TYPE definition"))
3675 gfc_error ("Attribute at %L is not allowed in a TYPE definition",
3682 if ((d
== DECL_PRIVATE
|| d
== DECL_PUBLIC
)
3683 && gfc_current_state () != COMP_MODULE
)
3685 if (d
== DECL_PRIVATE
)
3689 if (gfc_current_state () == COMP_DERIVED
3690 && gfc_state_stack
->previous
3691 && gfc_state_stack
->previous
->state
== COMP_MODULE
)
3693 if (!gfc_notify_std (GFC_STD_F2003
, "Attribute %s "
3694 "at %L in a TYPE definition", attr
,
3703 gfc_error ("%s attribute at %L is not allowed outside of the "
3704 "specification part of a module", attr
, &seen_at
[d
]);
3712 case DECL_ALLOCATABLE
:
3713 t
= gfc_add_allocatable (¤t_attr
, &seen_at
[d
]);
3716 case DECL_ASYNCHRONOUS
:
3717 if (!gfc_notify_std (GFC_STD_F2003
, "ASYNCHRONOUS attribute at %C"))
3720 t
= gfc_add_asynchronous (¤t_attr
, NULL
, &seen_at
[d
]);
3723 case DECL_CODIMENSION
:
3724 t
= gfc_add_codimension (¤t_attr
, NULL
, &seen_at
[d
]);
3727 case DECL_CONTIGUOUS
:
3728 if (!gfc_notify_std (GFC_STD_F2008
, "CONTIGUOUS attribute at %C"))
3731 t
= gfc_add_contiguous (¤t_attr
, NULL
, &seen_at
[d
]);
3734 case DECL_DIMENSION
:
3735 t
= gfc_add_dimension (¤t_attr
, NULL
, &seen_at
[d
]);
3739 t
= gfc_add_external (¤t_attr
, &seen_at
[d
]);
3743 t
= gfc_add_intent (¤t_attr
, INTENT_IN
, &seen_at
[d
]);
3747 t
= gfc_add_intent (¤t_attr
, INTENT_OUT
, &seen_at
[d
]);
3751 t
= gfc_add_intent (¤t_attr
, INTENT_INOUT
, &seen_at
[d
]);
3754 case DECL_INTRINSIC
:
3755 t
= gfc_add_intrinsic (¤t_attr
, &seen_at
[d
]);
3759 t
= gfc_add_optional (¤t_attr
, &seen_at
[d
]);
3762 case DECL_PARAMETER
:
3763 t
= gfc_add_flavor (¤t_attr
, FL_PARAMETER
, NULL
, &seen_at
[d
]);
3767 t
= gfc_add_pointer (¤t_attr
, &seen_at
[d
]);
3770 case DECL_PROTECTED
:
3771 if (gfc_current_ns
->proc_name
->attr
.flavor
!= FL_MODULE
)
3773 gfc_error ("PROTECTED at %C only allowed in specification "
3774 "part of a module");
3779 if (!gfc_notify_std (GFC_STD_F2003
, "PROTECTED attribute at %C"))
3782 t
= gfc_add_protected (¤t_attr
, NULL
, &seen_at
[d
]);
3786 t
= gfc_add_access (¤t_attr
, ACCESS_PRIVATE
, NULL
,
3791 t
= gfc_add_access (¤t_attr
, ACCESS_PUBLIC
, NULL
,
3796 t
= gfc_add_save (¤t_attr
, SAVE_EXPLICIT
, NULL
, &seen_at
[d
]);
3800 t
= gfc_add_target (¤t_attr
, &seen_at
[d
]);
3803 case DECL_IS_BIND_C
:
3804 t
= gfc_add_is_bind_c(¤t_attr
, NULL
, &seen_at
[d
], 0);
3808 if (!gfc_notify_std (GFC_STD_F2003
, "VALUE attribute at %C"))
3811 t
= gfc_add_value (¤t_attr
, NULL
, &seen_at
[d
]);
3815 if (!gfc_notify_std (GFC_STD_F2003
, "VOLATILE attribute at %C"))
3818 t
= gfc_add_volatile (¤t_attr
, NULL
, &seen_at
[d
]);
3822 gfc_internal_error ("match_attr_spec(): Bad attribute");
3832 /* Since Fortran 2008 module variables implicitly have the SAVE attribute. */
3833 if (gfc_current_state () == COMP_MODULE
&& !current_attr
.save
3834 && (gfc_option
.allow_std
& GFC_STD_F2008
) != 0)
3835 current_attr
.save
= SAVE_IMPLICIT
;
3841 gfc_current_locus
= start
;
3842 gfc_free_array_spec (current_as
);
3848 /* Set the binding label, dest_label, either with the binding label
3849 stored in the given gfc_typespec, ts, or if none was provided, it
3850 will be the symbol name in all lower case, as required by the draft
3851 (J3/04-007, section 15.4.1). If a binding label was given and
3852 there is more than one argument (num_idents), it is an error. */
3855 set_binding_label (const char **dest_label
, const char *sym_name
,
3858 if (num_idents
> 1 && has_name_equals
)
3860 gfc_error ("Multiple identifiers provided with "
3861 "single NAME= specifier at %C");
3865 if (curr_binding_label
)
3866 /* Binding label given; store in temp holder till have sym. */
3867 *dest_label
= curr_binding_label
;
3870 /* No binding label given, and the NAME= specifier did not exist,
3871 which means there was no NAME="". */
3872 if (sym_name
!= NULL
&& has_name_equals
== 0)
3873 *dest_label
= IDENTIFIER_POINTER (get_identifier (sym_name
));
3880 /* Set the status of the given common block as being BIND(C) or not,
3881 depending on the given parameter, is_bind_c. */
3884 set_com_block_bind_c (gfc_common_head
*com_block
, int is_bind_c
)
3886 com_block
->is_bind_c
= is_bind_c
;
3891 /* Verify that the given gfc_typespec is for a C interoperable type. */
3894 gfc_verify_c_interop (gfc_typespec
*ts
)
3896 if (ts
->type
== BT_DERIVED
&& ts
->u
.derived
!= NULL
)
3897 return (ts
->u
.derived
->ts
.is_c_interop
|| ts
->u
.derived
->attr
.is_bind_c
)
3899 else if (ts
->type
== BT_CLASS
)
3901 else if (ts
->is_c_interop
!= 1 && ts
->type
!= BT_ASSUMED
)
3908 /* Verify that the variables of a given common block, which has been
3909 defined with the attribute specifier bind(c), to be of a C
3910 interoperable type. Errors will be reported here, if
3914 verify_com_block_vars_c_interop (gfc_common_head
*com_block
)
3916 gfc_symbol
*curr_sym
= NULL
;
3919 curr_sym
= com_block
->head
;
3921 /* Make sure we have at least one symbol. */
3922 if (curr_sym
== NULL
)
3925 /* Here we know we have a symbol, so we'll execute this loop
3929 /* The second to last param, 1, says this is in a common block. */
3930 retval
= verify_bind_c_sym (curr_sym
, &(curr_sym
->ts
), 1, com_block
);
3931 curr_sym
= curr_sym
->common_next
;
3932 } while (curr_sym
!= NULL
);
3938 /* Verify that a given BIND(C) symbol is C interoperable. If it is not,
3939 an appropriate error message is reported. */
3942 verify_bind_c_sym (gfc_symbol
*tmp_sym
, gfc_typespec
*ts
,
3943 int is_in_common
, gfc_common_head
*com_block
)
3945 bool bind_c_function
= false;
3948 if (tmp_sym
->attr
.function
&& tmp_sym
->attr
.is_bind_c
)
3949 bind_c_function
= true;
3951 if (tmp_sym
->attr
.function
&& tmp_sym
->result
!= NULL
)
3953 tmp_sym
= tmp_sym
->result
;
3954 /* Make sure it wasn't an implicitly typed result. */
3955 if (tmp_sym
->attr
.implicit_type
&& gfc_option
.warn_c_binding_type
)
3957 gfc_warning ("Implicitly declared BIND(C) function '%s' at "
3958 "%L may not be C interoperable", tmp_sym
->name
,
3959 &tmp_sym
->declared_at
);
3960 tmp_sym
->ts
.f90_type
= tmp_sym
->ts
.type
;
3961 /* Mark it as C interoperable to prevent duplicate warnings. */
3962 tmp_sym
->ts
.is_c_interop
= 1;
3963 tmp_sym
->attr
.is_c_interop
= 1;
3967 /* Here, we know we have the bind(c) attribute, so if we have
3968 enough type info, then verify that it's a C interop kind.
3969 The info could be in the symbol already, or possibly still in
3970 the given ts (current_ts), so look in both. */
3971 if (tmp_sym
->ts
.type
!= BT_UNKNOWN
|| ts
->type
!= BT_UNKNOWN
)
3973 if (!gfc_verify_c_interop (&(tmp_sym
->ts
)))
3975 /* See if we're dealing with a sym in a common block or not. */
3976 if (is_in_common
== 1 && gfc_option
.warn_c_binding_type
)
3978 gfc_warning ("Variable '%s' in common block '%s' at %L "
3979 "may not be a C interoperable "
3980 "kind though common block '%s' is BIND(C)",
3981 tmp_sym
->name
, com_block
->name
,
3982 &(tmp_sym
->declared_at
), com_block
->name
);
3986 if (tmp_sym
->ts
.type
== BT_DERIVED
|| ts
->type
== BT_DERIVED
)
3987 gfc_error ("Type declaration '%s' at %L is not C "
3988 "interoperable but it is BIND(C)",
3989 tmp_sym
->name
, &(tmp_sym
->declared_at
));
3990 else if (gfc_option
.warn_c_binding_type
)
3991 gfc_warning ("Variable '%s' at %L "
3992 "may not be a C interoperable "
3993 "kind but it is bind(c)",
3994 tmp_sym
->name
, &(tmp_sym
->declared_at
));
3998 /* Variables declared w/in a common block can't be bind(c)
3999 since there's no way for C to see these variables, so there's
4000 semantically no reason for the attribute. */
4001 if (is_in_common
== 1 && tmp_sym
->attr
.is_bind_c
== 1)
4003 gfc_error ("Variable '%s' in common block '%s' at "
4004 "%L cannot be declared with BIND(C) "
4005 "since it is not a global",
4006 tmp_sym
->name
, com_block
->name
,
4007 &(tmp_sym
->declared_at
));
4011 /* Scalar variables that are bind(c) can not have the pointer
4012 or allocatable attributes. */
4013 if (tmp_sym
->attr
.is_bind_c
== 1)
4015 if (tmp_sym
->attr
.pointer
== 1)
4017 gfc_error ("Variable '%s' at %L cannot have both the "
4018 "POINTER and BIND(C) attributes",
4019 tmp_sym
->name
, &(tmp_sym
->declared_at
));
4023 if (tmp_sym
->attr
.allocatable
== 1)
4025 gfc_error ("Variable '%s' at %L cannot have both the "
4026 "ALLOCATABLE and BIND(C) attributes",
4027 tmp_sym
->name
, &(tmp_sym
->declared_at
));
4033 /* If it is a BIND(C) function, make sure the return value is a
4034 scalar value. The previous tests in this function made sure
4035 the type is interoperable. */
4036 if (bind_c_function
&& tmp_sym
->as
!= NULL
)
4037 gfc_error ("Return type of BIND(C) function '%s' at %L cannot "
4038 "be an array", tmp_sym
->name
, &(tmp_sym
->declared_at
));
4040 /* BIND(C) functions can not return a character string. */
4041 if (bind_c_function
&& tmp_sym
->ts
.type
== BT_CHARACTER
)
4042 if (tmp_sym
->ts
.u
.cl
== NULL
|| tmp_sym
->ts
.u
.cl
->length
== NULL
4043 || tmp_sym
->ts
.u
.cl
->length
->expr_type
!= EXPR_CONSTANT
4044 || mpz_cmp_si (tmp_sym
->ts
.u
.cl
->length
->value
.integer
, 1) != 0)
4045 gfc_error ("Return type of BIND(C) function '%s' at %L cannot "
4046 "be a character string", tmp_sym
->name
,
4047 &(tmp_sym
->declared_at
));
4050 /* See if the symbol has been marked as private. If it has, make sure
4051 there is no binding label and warn the user if there is one. */
4052 if (tmp_sym
->attr
.access
== ACCESS_PRIVATE
4053 && tmp_sym
->binding_label
)
4054 /* Use gfc_warning_now because we won't say that the symbol fails
4055 just because of this. */
4056 gfc_warning_now ("Symbol '%s' at %L is marked PRIVATE but has been "
4057 "given the binding label '%s'", tmp_sym
->name
,
4058 &(tmp_sym
->declared_at
), tmp_sym
->binding_label
);
4064 /* Set the appropriate fields for a symbol that's been declared as
4065 BIND(C) (the is_bind_c flag and the binding label), and verify that
4066 the type is C interoperable. Errors are reported by the functions
4067 used to set/test these fields. */
4070 set_verify_bind_c_sym (gfc_symbol
*tmp_sym
, int num_idents
)
4074 /* TODO: Do we need to make sure the vars aren't marked private? */
4076 /* Set the is_bind_c bit in symbol_attribute. */
4077 gfc_add_is_bind_c (&(tmp_sym
->attr
), tmp_sym
->name
, &gfc_current_locus
, 0);
4079 if (!set_binding_label (&tmp_sym
->binding_label
, tmp_sym
->name
, num_idents
))
4086 /* Set the fields marking the given common block as BIND(C), including
4087 a binding label, and report any errors encountered. */
4090 set_verify_bind_c_com_block (gfc_common_head
*com_block
, int num_idents
)
4094 /* destLabel, common name, typespec (which may have binding label). */
4095 if (!set_binding_label (&com_block
->binding_label
, com_block
->name
,
4099 /* Set the given common block (com_block) to being bind(c) (1). */
4100 set_com_block_bind_c (com_block
, 1);
4106 /* Retrieve the list of one or more identifiers that the given bind(c)
4107 attribute applies to. */
4110 get_bind_c_idents (void)
4112 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
4114 gfc_symbol
*tmp_sym
= NULL
;
4116 gfc_common_head
*com_block
= NULL
;
4118 if (gfc_match_name (name
) == MATCH_YES
)
4120 found_id
= MATCH_YES
;
4121 gfc_get_ha_symbol (name
, &tmp_sym
);
4123 else if (match_common_name (name
) == MATCH_YES
)
4125 found_id
= MATCH_YES
;
4126 com_block
= gfc_get_common (name
, 0);
4130 gfc_error ("Need either entity or common block name for "
4131 "attribute specification statement at %C");
4135 /* Save the current identifier and look for more. */
4138 /* Increment the number of identifiers found for this spec stmt. */
4141 /* Make sure we have a sym or com block, and verify that it can
4142 be bind(c). Set the appropriate field(s) and look for more
4144 if (tmp_sym
!= NULL
|| com_block
!= NULL
)
4146 if (tmp_sym
!= NULL
)
4148 if (!set_verify_bind_c_sym (tmp_sym
, num_idents
))
4153 if (!set_verify_bind_c_com_block (com_block
, num_idents
))
4157 /* Look to see if we have another identifier. */
4159 if (gfc_match_eos () == MATCH_YES
)
4160 found_id
= MATCH_NO
;
4161 else if (gfc_match_char (',') != MATCH_YES
)
4162 found_id
= MATCH_NO
;
4163 else if (gfc_match_name (name
) == MATCH_YES
)
4165 found_id
= MATCH_YES
;
4166 gfc_get_ha_symbol (name
, &tmp_sym
);
4168 else if (match_common_name (name
) == MATCH_YES
)
4170 found_id
= MATCH_YES
;
4171 com_block
= gfc_get_common (name
, 0);
4175 gfc_error ("Missing entity or common block name for "
4176 "attribute specification statement at %C");
4182 gfc_internal_error ("Missing symbol");
4184 } while (found_id
== MATCH_YES
);
4186 /* if we get here we were successful */
4191 /* Try and match a BIND(C) attribute specification statement. */
4194 gfc_match_bind_c_stmt (void)
4196 match found_match
= MATCH_NO
;
4201 /* This may not be necessary. */
4203 /* Clear the temporary binding label holder. */
4204 curr_binding_label
= NULL
;
4206 /* Look for the bind(c). */
4207 found_match
= gfc_match_bind_c (NULL
, true);
4209 if (found_match
== MATCH_YES
)
4211 if (!gfc_notify_std (GFC_STD_F2003
, "BIND(C) statement at %C"))
4214 /* Look for the :: now, but it is not required. */
4217 /* Get the identifier(s) that needs to be updated. This may need to
4218 change to hand the flag(s) for the attr specified so all identifiers
4219 found can have all appropriate parts updated (assuming that the same
4220 spec stmt can have multiple attrs, such as both bind(c) and
4222 if (!get_bind_c_idents ())
4223 /* Error message should have printed already. */
4231 /* Match a data declaration statement. */
4234 gfc_match_data_decl (void)
4240 num_idents_on_line
= 0;
4242 m
= gfc_match_decl_type_spec (¤t_ts
, 0);
4246 if ((current_ts
.type
== BT_DERIVED
|| current_ts
.type
== BT_CLASS
)
4247 && gfc_current_state () != COMP_DERIVED
)
4249 sym
= gfc_use_derived (current_ts
.u
.derived
);
4257 current_ts
.u
.derived
= sym
;
4260 m
= match_attr_spec ();
4261 if (m
== MATCH_ERROR
)
4267 if (current_ts
.type
== BT_CLASS
4268 && current_ts
.u
.derived
->attr
.unlimited_polymorphic
)
4271 if ((current_ts
.type
== BT_DERIVED
|| current_ts
.type
== BT_CLASS
)
4272 && current_ts
.u
.derived
->components
== NULL
4273 && !current_ts
.u
.derived
->attr
.zero_comp
)
4276 if (current_attr
.pointer
&& gfc_current_state () == COMP_DERIVED
)
4279 gfc_find_symbol (current_ts
.u
.derived
->name
,
4280 current_ts
.u
.derived
->ns
, 1, &sym
);
4282 /* Any symbol that we find had better be a type definition
4283 which has its components defined. */
4284 if (sym
!= NULL
&& sym
->attr
.flavor
== FL_DERIVED
4285 && (current_ts
.u
.derived
->components
!= NULL
4286 || current_ts
.u
.derived
->attr
.zero_comp
))
4289 /* Now we have an error, which we signal, and then fix up
4290 because the knock-on is plain and simple confusing. */
4291 gfc_error_now ("Derived type at %C has not been previously defined "
4292 "and so cannot appear in a derived type definition");
4293 current_attr
.pointer
= 1;
4298 /* If we have an old-style character declaration, and no new-style
4299 attribute specifications, then there a comma is optional between
4300 the type specification and the variable list. */
4301 if (m
== MATCH_NO
&& current_ts
.type
== BT_CHARACTER
&& old_char_selector
)
4302 gfc_match_char (',');
4304 /* Give the types/attributes to symbols that follow. Give the element
4305 a number so that repeat character length expressions can be copied. */
4309 num_idents_on_line
++;
4310 m
= variable_decl (elem
++);
4311 if (m
== MATCH_ERROR
)
4316 if (gfc_match_eos () == MATCH_YES
)
4318 if (gfc_match_char (',') != MATCH_YES
)
4322 if (gfc_error_flag_test () == 0)
4323 gfc_error ("Syntax error in data declaration at %C");
4326 gfc_free_data_all (gfc_current_ns
);
4329 gfc_free_array_spec (current_as
);
4335 /* Match a prefix associated with a function or subroutine
4336 declaration. If the typespec pointer is nonnull, then a typespec
4337 can be matched. Note that if nothing matches, MATCH_YES is
4338 returned (the null string was matched). */
4341 gfc_match_prefix (gfc_typespec
*ts
)
4347 gfc_clear_attr (¤t_attr
);
4349 seen_impure
= false;
4351 gcc_assert (!gfc_matching_prefix
);
4352 gfc_matching_prefix
= true;
4356 found_prefix
= false;
4358 if (!seen_type
&& ts
!= NULL
4359 && gfc_match_decl_type_spec (ts
, 0) == MATCH_YES
4360 && gfc_match_space () == MATCH_YES
)
4364 found_prefix
= true;
4367 if (gfc_match ("elemental% ") == MATCH_YES
)
4369 if (!gfc_add_elemental (¤t_attr
, NULL
))
4372 found_prefix
= true;
4375 if (gfc_match ("pure% ") == MATCH_YES
)
4377 if (!gfc_add_pure (¤t_attr
, NULL
))
4380 found_prefix
= true;
4383 if (gfc_match ("recursive% ") == MATCH_YES
)
4385 if (!gfc_add_recursive (¤t_attr
, NULL
))
4388 found_prefix
= true;
4391 /* IMPURE is a somewhat special case, as it needs not set an actual
4392 attribute but rather only prevents ELEMENTAL routines from being
4393 automatically PURE. */
4394 if (gfc_match ("impure% ") == MATCH_YES
)
4396 if (!gfc_notify_std (GFC_STD_F2008
, "IMPURE procedure at %C"))
4400 found_prefix
= true;
4403 while (found_prefix
);
4405 /* IMPURE and PURE must not both appear, of course. */
4406 if (seen_impure
&& current_attr
.pure
)
4408 gfc_error ("PURE and IMPURE must not appear both at %C");
4412 /* If IMPURE it not seen but the procedure is ELEMENTAL, mark it as PURE. */
4413 if (!seen_impure
&& current_attr
.elemental
&& !current_attr
.pure
)
4415 if (!gfc_add_pure (¤t_attr
, NULL
))
4419 /* At this point, the next item is not a prefix. */
4420 gcc_assert (gfc_matching_prefix
);
4421 gfc_matching_prefix
= false;
4425 gcc_assert (gfc_matching_prefix
);
4426 gfc_matching_prefix
= false;
4431 /* Copy attributes matched by gfc_match_prefix() to attributes on a symbol. */
4434 copy_prefix (symbol_attribute
*dest
, locus
*where
)
4436 if (current_attr
.pure
&& !gfc_add_pure (dest
, where
))
4439 if (current_attr
.elemental
&& !gfc_add_elemental (dest
, where
))
4442 if (current_attr
.recursive
&& !gfc_add_recursive (dest
, where
))
4449 /* Match a formal argument list. */
4452 gfc_match_formal_arglist (gfc_symbol
*progname
, int st_flag
, int null_flag
)
4454 gfc_formal_arglist
*head
, *tail
, *p
, *q
;
4455 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
4461 if (gfc_match_char ('(') != MATCH_YES
)
4468 if (gfc_match_char (')') == MATCH_YES
)
4473 if (gfc_match_char ('*') == MATCH_YES
)
4476 if (!gfc_notify_std (GFC_STD_F95_OBS
, "Alternate-return argument "
4485 m
= gfc_match_name (name
);
4489 if (gfc_get_symbol (name
, NULL
, &sym
))
4493 p
= gfc_get_formal_arglist ();
4505 /* We don't add the VARIABLE flavor because the name could be a
4506 dummy procedure. We don't apply these attributes to formal
4507 arguments of statement functions. */
4508 if (sym
!= NULL
&& !st_flag
4509 && (!gfc_add_dummy(&sym
->attr
, sym
->name
, NULL
)
4510 || !gfc_missing_attr (&sym
->attr
, NULL
)))
4516 /* The name of a program unit can be in a different namespace,
4517 so check for it explicitly. After the statement is accepted,
4518 the name is checked for especially in gfc_get_symbol(). */
4519 if (gfc_new_block
!= NULL
&& sym
!= NULL
4520 && strcmp (sym
->name
, gfc_new_block
->name
) == 0)
4522 gfc_error ("Name '%s' at %C is the name of the procedure",
4528 if (gfc_match_char (')') == MATCH_YES
)
4531 m
= gfc_match_char (',');
4534 gfc_error ("Unexpected junk in formal argument list at %C");
4540 /* Check for duplicate symbols in the formal argument list. */
4543 for (p
= head
; p
->next
; p
= p
->next
)
4548 for (q
= p
->next
; q
; q
= q
->next
)
4549 if (p
->sym
== q
->sym
)
4551 gfc_error ("Duplicate symbol '%s' in formal argument list "
4552 "at %C", p
->sym
->name
);
4560 if (!gfc_add_explicit_interface (progname
, IFSRC_DECL
, head
, NULL
))
4569 gfc_free_formal_arglist (head
);
4574 /* Match a RESULT specification following a function declaration or
4575 ENTRY statement. Also matches the end-of-statement. */
4578 match_result (gfc_symbol
*function
, gfc_symbol
**result
)
4580 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
4584 if (gfc_match (" result (") != MATCH_YES
)
4587 m
= gfc_match_name (name
);
4591 /* Get the right paren, and that's it because there could be the
4592 bind(c) attribute after the result clause. */
4593 if (gfc_match_char (')') != MATCH_YES
)
4595 /* TODO: should report the missing right paren here. */
4599 if (strcmp (function
->name
, name
) == 0)
4601 gfc_error ("RESULT variable at %C must be different than function name");
4605 if (gfc_get_symbol (name
, NULL
, &r
))
4608 if (!gfc_add_result (&r
->attr
, r
->name
, NULL
))
4617 /* Match a function suffix, which could be a combination of a result
4618 clause and BIND(C), either one, or neither. The draft does not
4619 require them to come in a specific order. */
4622 gfc_match_suffix (gfc_symbol
*sym
, gfc_symbol
**result
)
4624 match is_bind_c
; /* Found bind(c). */
4625 match is_result
; /* Found result clause. */
4626 match found_match
; /* Status of whether we've found a good match. */
4627 char peek_char
; /* Character we're going to peek at. */
4628 bool allow_binding_name
;
4630 /* Initialize to having found nothing. */
4631 found_match
= MATCH_NO
;
4632 is_bind_c
= MATCH_NO
;
4633 is_result
= MATCH_NO
;
4635 /* Get the next char to narrow between result and bind(c). */
4636 gfc_gobble_whitespace ();
4637 peek_char
= gfc_peek_ascii_char ();
4639 /* C binding names are not allowed for internal procedures. */
4640 if (gfc_current_state () == COMP_CONTAINS
4641 && sym
->ns
->proc_name
->attr
.flavor
!= FL_MODULE
)
4642 allow_binding_name
= false;
4644 allow_binding_name
= true;
4649 /* Look for result clause. */
4650 is_result
= match_result (sym
, result
);
4651 if (is_result
== MATCH_YES
)
4653 /* Now see if there is a bind(c) after it. */
4654 is_bind_c
= gfc_match_bind_c (sym
, allow_binding_name
);
4655 /* We've found the result clause and possibly bind(c). */
4656 found_match
= MATCH_YES
;
4659 /* This should only be MATCH_ERROR. */
4660 found_match
= is_result
;
4663 /* Look for bind(c) first. */
4664 is_bind_c
= gfc_match_bind_c (sym
, allow_binding_name
);
4665 if (is_bind_c
== MATCH_YES
)
4667 /* Now see if a result clause followed it. */
4668 is_result
= match_result (sym
, result
);
4669 found_match
= MATCH_YES
;
4673 /* Should only be a MATCH_ERROR if we get here after seeing 'b'. */
4674 found_match
= MATCH_ERROR
;
4678 gfc_error ("Unexpected junk after function declaration at %C");
4679 found_match
= MATCH_ERROR
;
4683 if (is_bind_c
== MATCH_YES
)
4685 /* Fortran 2008 draft allows BIND(C) for internal procedures. */
4686 if (gfc_current_state () == COMP_CONTAINS
4687 && sym
->ns
->proc_name
->attr
.flavor
!= FL_MODULE
4688 && !gfc_notify_std (GFC_STD_F2008
, "BIND(C) attribute "
4689 "at %L may not be specified for an internal "
4690 "procedure", &gfc_current_locus
))
4693 if (!gfc_add_is_bind_c (&(sym
->attr
), sym
->name
, &gfc_current_locus
, 1))
4701 /* Procedure pointer return value without RESULT statement:
4702 Add "hidden" result variable named "ppr@". */
4705 add_hidden_procptr_result (gfc_symbol
*sym
)
4709 if (gfc_notification_std (GFC_STD_F2003
) == ERROR
)
4712 /* First usage case: PROCEDURE and EXTERNAL statements. */
4713 case1
= gfc_current_state () == COMP_FUNCTION
&& gfc_current_block ()
4714 && strcmp (gfc_current_block ()->name
, sym
->name
) == 0
4715 && sym
->attr
.external
;
4716 /* Second usage case: INTERFACE statements. */
4717 case2
= gfc_current_state () == COMP_INTERFACE
&& gfc_state_stack
->previous
4718 && gfc_state_stack
->previous
->state
== COMP_FUNCTION
4719 && strcmp (gfc_state_stack
->previous
->sym
->name
, sym
->name
) == 0;
4725 gfc_get_sym_tree ("ppr@", gfc_current_ns
, &stree
, false);
4729 gfc_get_sym_tree ("ppr@", gfc_current_ns
->parent
, &stree
, false);
4730 st2
= gfc_new_symtree (&gfc_current_ns
->sym_root
, "ppr@");
4731 st2
->n
.sym
= stree
->n
.sym
;
4733 sym
->result
= stree
->n
.sym
;
4735 sym
->result
->attr
.proc_pointer
= sym
->attr
.proc_pointer
;
4736 sym
->result
->attr
.pointer
= sym
->attr
.pointer
;
4737 sym
->result
->attr
.external
= sym
->attr
.external
;
4738 sym
->result
->attr
.referenced
= sym
->attr
.referenced
;
4739 sym
->result
->ts
= sym
->ts
;
4740 sym
->attr
.proc_pointer
= 0;
4741 sym
->attr
.pointer
= 0;
4742 sym
->attr
.external
= 0;
4743 if (sym
->result
->attr
.external
&& sym
->result
->attr
.pointer
)
4745 sym
->result
->attr
.pointer
= 0;
4746 sym
->result
->attr
.proc_pointer
= 1;
4749 return gfc_add_result (&sym
->result
->attr
, sym
->result
->name
, NULL
);
4751 /* POINTER after PROCEDURE/EXTERNAL/INTERFACE statement. */
4752 else if (sym
->attr
.function
&& !sym
->attr
.external
&& sym
->attr
.pointer
4753 && sym
->result
&& sym
->result
!= sym
&& sym
->result
->attr
.external
4754 && sym
== gfc_current_ns
->proc_name
4755 && sym
== sym
->result
->ns
->proc_name
4756 && strcmp ("ppr@", sym
->result
->name
) == 0)
4758 sym
->result
->attr
.proc_pointer
= 1;
4759 sym
->attr
.pointer
= 0;
4767 /* Match the interface for a PROCEDURE declaration,
4768 including brackets (R1212). */
4771 match_procedure_interface (gfc_symbol
**proc_if
)
4775 locus old_loc
, entry_loc
;
4776 gfc_namespace
*old_ns
= gfc_current_ns
;
4777 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
4779 old_loc
= entry_loc
= gfc_current_locus
;
4780 gfc_clear_ts (¤t_ts
);
4782 if (gfc_match (" (") != MATCH_YES
)
4784 gfc_current_locus
= entry_loc
;
4788 /* Get the type spec. for the procedure interface. */
4789 old_loc
= gfc_current_locus
;
4790 m
= gfc_match_decl_type_spec (¤t_ts
, 0);
4791 gfc_gobble_whitespace ();
4792 if (m
== MATCH_YES
|| (m
== MATCH_NO
&& gfc_peek_ascii_char () == ')'))
4795 if (m
== MATCH_ERROR
)
4798 /* Procedure interface is itself a procedure. */
4799 gfc_current_locus
= old_loc
;
4800 m
= gfc_match_name (name
);
4802 /* First look to see if it is already accessible in the current
4803 namespace because it is use associated or contained. */
4805 if (gfc_find_sym_tree (name
, NULL
, 0, &st
))
4808 /* If it is still not found, then try the parent namespace, if it
4809 exists and create the symbol there if it is still not found. */
4810 if (gfc_current_ns
->parent
)
4811 gfc_current_ns
= gfc_current_ns
->parent
;
4812 if (st
== NULL
&& gfc_get_ha_sym_tree (name
, &st
))
4815 gfc_current_ns
= old_ns
;
4816 *proc_if
= st
->n
.sym
;
4821 /* Resolve interface if possible. That way, attr.procedure is only set
4822 if it is declared by a later procedure-declaration-stmt, which is
4823 invalid per F08:C1216 (cf. resolve_procedure_interface). */
4824 while ((*proc_if
)->ts
.interface
)
4825 *proc_if
= (*proc_if
)->ts
.interface
;
4827 if ((*proc_if
)->attr
.flavor
== FL_UNKNOWN
4828 && (*proc_if
)->ts
.type
== BT_UNKNOWN
4829 && !gfc_add_flavor (&(*proc_if
)->attr
, FL_PROCEDURE
,
4830 (*proc_if
)->name
, NULL
))
4835 if (gfc_match (" )") != MATCH_YES
)
4837 gfc_current_locus
= entry_loc
;
4845 /* Match a PROCEDURE declaration (R1211). */
4848 match_procedure_decl (void)
4851 gfc_symbol
*sym
, *proc_if
= NULL
;
4853 gfc_expr
*initializer
= NULL
;
4855 /* Parse interface (with brackets). */
4856 m
= match_procedure_interface (&proc_if
);
4860 /* Parse attributes (with colons). */
4861 m
= match_attr_spec();
4862 if (m
== MATCH_ERROR
)
4865 if (proc_if
&& proc_if
->attr
.is_bind_c
&& !current_attr
.is_bind_c
)
4867 current_attr
.is_bind_c
= 1;
4868 has_name_equals
= 0;
4869 curr_binding_label
= NULL
;
4872 /* Get procedure symbols. */
4875 m
= gfc_match_symbol (&sym
, 0);
4878 else if (m
== MATCH_ERROR
)
4881 /* Add current_attr to the symbol attributes. */
4882 if (!gfc_copy_attr (&sym
->attr
, ¤t_attr
, NULL
))
4885 if (sym
->attr
.is_bind_c
)
4887 /* Check for C1218. */
4888 if (!proc_if
|| !proc_if
->attr
.is_bind_c
)
4890 gfc_error ("BIND(C) attribute at %C requires "
4891 "an interface with BIND(C)");
4894 /* Check for C1217. */
4895 if (has_name_equals
&& sym
->attr
.pointer
)
4897 gfc_error ("BIND(C) procedure with NAME may not have "
4898 "POINTER attribute at %C");
4901 if (has_name_equals
&& sym
->attr
.dummy
)
4903 gfc_error ("Dummy procedure at %C may not have "
4904 "BIND(C) attribute with NAME");
4907 /* Set binding label for BIND(C). */
4908 if (!set_binding_label (&sym
->binding_label
, sym
->name
, num
))
4912 if (!gfc_add_external (&sym
->attr
, NULL
))
4915 if (add_hidden_procptr_result (sym
))
4918 if (!gfc_add_proc (&sym
->attr
, sym
->name
, NULL
))
4921 /* Set interface. */
4922 if (proc_if
!= NULL
)
4924 if (sym
->ts
.type
!= BT_UNKNOWN
)
4926 gfc_error ("Procedure '%s' at %L already has basic type of %s",
4927 sym
->name
, &gfc_current_locus
,
4928 gfc_basic_typename (sym
->ts
.type
));
4931 sym
->ts
.interface
= proc_if
;
4932 sym
->attr
.untyped
= 1;
4933 sym
->attr
.if_source
= IFSRC_IFBODY
;
4935 else if (current_ts
.type
!= BT_UNKNOWN
)
4937 if (!gfc_add_type (sym
, ¤t_ts
, &gfc_current_locus
))
4939 sym
->ts
.interface
= gfc_new_symbol ("", gfc_current_ns
);
4940 sym
->ts
.interface
->ts
= current_ts
;
4941 sym
->ts
.interface
->attr
.flavor
= FL_PROCEDURE
;
4942 sym
->ts
.interface
->attr
.function
= 1;
4943 sym
->attr
.function
= 1;
4944 sym
->attr
.if_source
= IFSRC_UNKNOWN
;
4947 if (gfc_match (" =>") == MATCH_YES
)
4949 if (!current_attr
.pointer
)
4951 gfc_error ("Initialization at %C isn't for a pointer variable");
4956 m
= match_pointer_init (&initializer
, 1);
4960 if (!add_init_expr_to_sym (sym
->name
, &initializer
, &gfc_current_locus
))
4965 if (gfc_match_eos () == MATCH_YES
)
4967 if (gfc_match_char (',') != MATCH_YES
)
4972 gfc_error ("Syntax error in PROCEDURE statement at %C");
4976 /* Free stuff up and return. */
4977 gfc_free_expr (initializer
);
4983 match_binding_attributes (gfc_typebound_proc
* ba
, bool generic
, bool ppc
);
4986 /* Match a procedure pointer component declaration (R445). */
4989 match_ppc_decl (void)
4992 gfc_symbol
*proc_if
= NULL
;
4996 gfc_expr
*initializer
= NULL
;
4997 gfc_typebound_proc
* tb
;
4998 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
5000 /* Parse interface (with brackets). */
5001 m
= match_procedure_interface (&proc_if
);
5005 /* Parse attributes. */
5006 tb
= XCNEW (gfc_typebound_proc
);
5007 tb
->where
= gfc_current_locus
;
5008 m
= match_binding_attributes (tb
, false, true);
5009 if (m
== MATCH_ERROR
)
5012 gfc_clear_attr (¤t_attr
);
5013 current_attr
.procedure
= 1;
5014 current_attr
.proc_pointer
= 1;
5015 current_attr
.access
= tb
->access
;
5016 current_attr
.flavor
= FL_PROCEDURE
;
5018 /* Match the colons (required). */
5019 if (gfc_match (" ::") != MATCH_YES
)
5021 gfc_error ("Expected '::' after binding-attributes at %C");
5025 /* Check for C450. */
5026 if (!tb
->nopass
&& proc_if
== NULL
)
5028 gfc_error("NOPASS or explicit interface required at %C");
5032 if (!gfc_notify_std (GFC_STD_F2003
, "Procedure pointer component at %C"))
5035 /* Match PPC names. */
5039 m
= gfc_match_name (name
);
5042 else if (m
== MATCH_ERROR
)
5045 if (!gfc_add_component (gfc_current_block(), name
, &c
))
5048 /* Add current_attr to the symbol attributes. */
5049 if (!gfc_copy_attr (&c
->attr
, ¤t_attr
, NULL
))
5052 if (!gfc_add_external (&c
->attr
, NULL
))
5055 if (!gfc_add_proc (&c
->attr
, name
, NULL
))
5060 /* Set interface. */
5061 if (proc_if
!= NULL
)
5063 c
->ts
.interface
= proc_if
;
5064 c
->attr
.untyped
= 1;
5065 c
->attr
.if_source
= IFSRC_IFBODY
;
5067 else if (ts
.type
!= BT_UNKNOWN
)
5070 c
->ts
.interface
= gfc_new_symbol ("", gfc_current_ns
);
5071 c
->ts
.interface
->result
= c
->ts
.interface
;
5072 c
->ts
.interface
->ts
= ts
;
5073 c
->ts
.interface
->attr
.flavor
= FL_PROCEDURE
;
5074 c
->ts
.interface
->attr
.function
= 1;
5075 c
->attr
.function
= 1;
5076 c
->attr
.if_source
= IFSRC_UNKNOWN
;
5079 if (gfc_match (" =>") == MATCH_YES
)
5081 m
= match_pointer_init (&initializer
, 1);
5084 gfc_free_expr (initializer
);
5087 c
->initializer
= initializer
;
5090 if (gfc_match_eos () == MATCH_YES
)
5092 if (gfc_match_char (',') != MATCH_YES
)
5097 gfc_error ("Syntax error in procedure pointer component at %C");
5102 /* Match a PROCEDURE declaration inside an interface (R1206). */
5105 match_procedure_in_interface (void)
5109 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
5112 if (current_interface
.type
== INTERFACE_NAMELESS
5113 || current_interface
.type
== INTERFACE_ABSTRACT
)
5115 gfc_error ("PROCEDURE at %C must be in a generic interface");
5119 /* Check if the F2008 optional double colon appears. */
5120 gfc_gobble_whitespace ();
5121 old_locus
= gfc_current_locus
;
5122 if (gfc_match ("::") == MATCH_YES
)
5124 if (!gfc_notify_std (GFC_STD_F2008
, "double colon in "
5125 "MODULE PROCEDURE statement at %L", &old_locus
))
5129 gfc_current_locus
= old_locus
;
5133 m
= gfc_match_name (name
);
5136 else if (m
== MATCH_ERROR
)
5138 if (gfc_get_symbol (name
, gfc_current_ns
->parent
, &sym
))
5141 if (!gfc_add_interface (sym
))
5144 if (gfc_match_eos () == MATCH_YES
)
5146 if (gfc_match_char (',') != MATCH_YES
)
5153 gfc_error ("Syntax error in PROCEDURE statement at %C");
5158 /* General matcher for PROCEDURE declarations. */
5160 static match
match_procedure_in_type (void);
5163 gfc_match_procedure (void)
5167 switch (gfc_current_state ())
5172 case COMP_SUBROUTINE
:
5175 m
= match_procedure_decl ();
5177 case COMP_INTERFACE
:
5178 m
= match_procedure_in_interface ();
5181 m
= match_ppc_decl ();
5183 case COMP_DERIVED_CONTAINS
:
5184 m
= match_procedure_in_type ();
5193 if (!gfc_notify_std (GFC_STD_F2003
, "PROCEDURE statement at %C"))
5200 /* Warn if a matched procedure has the same name as an intrinsic; this is
5201 simply a wrapper around gfc_warn_intrinsic_shadow that interprets the current
5202 parser-state-stack to find out whether we're in a module. */
5205 warn_intrinsic_shadow (const gfc_symbol
* sym
, bool func
)
5209 in_module
= (gfc_state_stack
->previous
5210 && gfc_state_stack
->previous
->state
== COMP_MODULE
);
5212 gfc_warn_intrinsic_shadow (sym
, in_module
, func
);
5216 /* Match a function declaration. */
5219 gfc_match_function_decl (void)
5221 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
5222 gfc_symbol
*sym
, *result
;
5226 match found_match
; /* Status returned by match func. */
5228 if (gfc_current_state () != COMP_NONE
5229 && gfc_current_state () != COMP_INTERFACE
5230 && gfc_current_state () != COMP_CONTAINS
)
5233 gfc_clear_ts (¤t_ts
);
5235 old_loc
= gfc_current_locus
;
5237 m
= gfc_match_prefix (¤t_ts
);
5240 gfc_current_locus
= old_loc
;
5244 if (gfc_match ("function% %n", name
) != MATCH_YES
)
5246 gfc_current_locus
= old_loc
;
5249 if (get_proc_name (name
, &sym
, false))
5252 if (add_hidden_procptr_result (sym
))
5255 gfc_new_block
= sym
;
5257 m
= gfc_match_formal_arglist (sym
, 0, 0);
5260 gfc_error ("Expected formal argument list in function "
5261 "definition at %C");
5265 else if (m
== MATCH_ERROR
)
5270 /* According to the draft, the bind(c) and result clause can
5271 come in either order after the formal_arg_list (i.e., either
5272 can be first, both can exist together or by themselves or neither
5273 one). Therefore, the match_result can't match the end of the
5274 string, and check for the bind(c) or result clause in either order. */
5275 found_match
= gfc_match_eos ();
5277 /* Make sure that it isn't already declared as BIND(C). If it is, it
5278 must have been marked BIND(C) with a BIND(C) attribute and that is
5279 not allowed for procedures. */
5280 if (sym
->attr
.is_bind_c
== 1)
5282 sym
->attr
.is_bind_c
= 0;
5283 if (sym
->old_symbol
!= NULL
)
5284 gfc_error_now ("BIND(C) attribute at %L can only be used for "
5285 "variables or common blocks",
5286 &(sym
->old_symbol
->declared_at
));
5288 gfc_error_now ("BIND(C) attribute at %L can only be used for "
5289 "variables or common blocks", &gfc_current_locus
);
5292 if (found_match
!= MATCH_YES
)
5294 /* If we haven't found the end-of-statement, look for a suffix. */
5295 suffix_match
= gfc_match_suffix (sym
, &result
);
5296 if (suffix_match
== MATCH_YES
)
5297 /* Need to get the eos now. */
5298 found_match
= gfc_match_eos ();
5300 found_match
= suffix_match
;
5303 if(found_match
!= MATCH_YES
)
5307 /* Make changes to the symbol. */
5310 if (!gfc_add_function (&sym
->attr
, sym
->name
, NULL
))
5313 if (!gfc_missing_attr (&sym
->attr
, NULL
)
5314 || !copy_prefix (&sym
->attr
, &sym
->declared_at
))
5317 /* Delay matching the function characteristics until after the
5318 specification block by signalling kind=-1. */
5319 sym
->declared_at
= old_loc
;
5320 if (current_ts
.type
!= BT_UNKNOWN
)
5321 current_ts
.kind
= -1;
5323 current_ts
.kind
= 0;
5327 if (current_ts
.type
!= BT_UNKNOWN
5328 && !gfc_add_type (sym
, ¤t_ts
, &gfc_current_locus
))
5334 if (current_ts
.type
!= BT_UNKNOWN
5335 && !gfc_add_type (result
, ¤t_ts
, &gfc_current_locus
))
5337 sym
->result
= result
;
5340 /* Warn if this procedure has the same name as an intrinsic. */
5341 warn_intrinsic_shadow (sym
, true);
5347 gfc_current_locus
= old_loc
;
5352 /* This is mostly a copy of parse.c(add_global_procedure) but modified to
5353 pass the name of the entry, rather than the gfc_current_block name, and
5354 to return false upon finding an existing global entry. */
5357 add_global_entry (const char *name
, const char *binding_label
, bool sub
,
5361 enum gfc_symbol_type type
;
5363 type
= sub
? GSYM_SUBROUTINE
: GSYM_FUNCTION
;
5365 /* Only in Fortran 2003: For procedures with a binding label also the Fortran
5366 name is a global identifier. */
5367 if (!binding_label
|| gfc_notification_std (GFC_STD_F2008
))
5369 s
= gfc_get_gsymbol (name
);
5371 if (s
->defined
|| (s
->type
!= GSYM_UNKNOWN
&& s
->type
!= type
))
5373 gfc_global_used (s
, where
);
5382 s
->ns
= gfc_current_ns
;
5386 /* Don't add the symbol multiple times. */
5388 && (!gfc_notification_std (GFC_STD_F2008
)
5389 || strcmp (name
, binding_label
) != 0))
5391 s
= gfc_get_gsymbol (binding_label
);
5393 if (s
->defined
|| (s
->type
!= GSYM_UNKNOWN
&& s
->type
!= type
))
5395 gfc_global_used (s
, where
);
5402 s
->binding_label
= binding_label
;
5405 s
->ns
= gfc_current_ns
;
5413 /* Match an ENTRY statement. */
5416 gfc_match_entry (void)
5421 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
5422 gfc_compile_state state
;
5426 bool module_procedure
;
5430 m
= gfc_match_name (name
);
5434 if (!gfc_notify_std (GFC_STD_F2008_OBS
, "ENTRY statement at %C"))
5437 state
= gfc_current_state ();
5438 if (state
!= COMP_SUBROUTINE
&& state
!= COMP_FUNCTION
)
5443 gfc_error ("ENTRY statement at %C cannot appear within a PROGRAM");
5446 gfc_error ("ENTRY statement at %C cannot appear within a MODULE");
5448 case COMP_BLOCK_DATA
:
5449 gfc_error ("ENTRY statement at %C cannot appear within "
5452 case COMP_INTERFACE
:
5453 gfc_error ("ENTRY statement at %C cannot appear within "
5457 gfc_error ("ENTRY statement at %C cannot appear within "
5458 "a DERIVED TYPE block");
5461 gfc_error ("ENTRY statement at %C cannot appear within "
5462 "an IF-THEN block");
5465 case COMP_DO_CONCURRENT
:
5466 gfc_error ("ENTRY statement at %C cannot appear within "
5470 gfc_error ("ENTRY statement at %C cannot appear within "
5474 gfc_error ("ENTRY statement at %C cannot appear within "
5478 gfc_error ("ENTRY statement at %C cannot appear within "
5482 gfc_error ("ENTRY statement at %C cannot appear within "
5483 "a contained subprogram");
5486 gfc_internal_error ("gfc_match_entry(): Bad state");
5491 module_procedure
= gfc_current_ns
->parent
!= NULL
5492 && gfc_current_ns
->parent
->proc_name
5493 && gfc_current_ns
->parent
->proc_name
->attr
.flavor
5496 if (gfc_current_ns
->parent
!= NULL
5497 && gfc_current_ns
->parent
->proc_name
5498 && !module_procedure
)
5500 gfc_error("ENTRY statement at %C cannot appear in a "
5501 "contained procedure");
5505 /* Module function entries need special care in get_proc_name
5506 because previous references within the function will have
5507 created symbols attached to the current namespace. */
5508 if (get_proc_name (name
, &entry
,
5509 gfc_current_ns
->parent
!= NULL
5510 && module_procedure
))
5513 proc
= gfc_current_block ();
5515 /* Make sure that it isn't already declared as BIND(C). If it is, it
5516 must have been marked BIND(C) with a BIND(C) attribute and that is
5517 not allowed for procedures. */
5518 if (entry
->attr
.is_bind_c
== 1)
5520 entry
->attr
.is_bind_c
= 0;
5521 if (entry
->old_symbol
!= NULL
)
5522 gfc_error_now ("BIND(C) attribute at %L can only be used for "
5523 "variables or common blocks",
5524 &(entry
->old_symbol
->declared_at
));
5526 gfc_error_now ("BIND(C) attribute at %L can only be used for "
5527 "variables or common blocks", &gfc_current_locus
);
5530 /* Check what next non-whitespace character is so we can tell if there
5531 is the required parens if we have a BIND(C). */
5532 old_loc
= gfc_current_locus
;
5533 gfc_gobble_whitespace ();
5534 peek_char
= gfc_peek_ascii_char ();
5536 if (state
== COMP_SUBROUTINE
)
5538 m
= gfc_match_formal_arglist (entry
, 0, 1);
5542 /* Call gfc_match_bind_c with allow_binding_name = true as ENTRY can
5543 never be an internal procedure. */
5544 is_bind_c
= gfc_match_bind_c (entry
, true);
5545 if (is_bind_c
== MATCH_ERROR
)
5547 if (is_bind_c
== MATCH_YES
)
5549 if (peek_char
!= '(')
5551 gfc_error ("Missing required parentheses before BIND(C) at %C");
5554 if (!gfc_add_is_bind_c (&(entry
->attr
), entry
->name
,
5555 &(entry
->declared_at
), 1))
5559 if (!gfc_current_ns
->parent
5560 && !add_global_entry (name
, entry
->binding_label
, true,
5564 /* An entry in a subroutine. */
5565 if (!gfc_add_entry (&entry
->attr
, entry
->name
, NULL
)
5566 || !gfc_add_subroutine (&entry
->attr
, entry
->name
, NULL
))
5571 /* An entry in a function.
5572 We need to take special care because writing
5577 ENTRY f() RESULT (r)
5579 ENTRY f RESULT (r). */
5580 if (gfc_match_eos () == MATCH_YES
)
5582 gfc_current_locus
= old_loc
;
5583 /* Match the empty argument list, and add the interface to
5585 m
= gfc_match_formal_arglist (entry
, 0, 1);
5588 m
= gfc_match_formal_arglist (entry
, 0, 0);
5595 if (gfc_match_eos () == MATCH_YES
)
5597 if (!gfc_add_entry (&entry
->attr
, entry
->name
, NULL
)
5598 || !gfc_add_function (&entry
->attr
, entry
->name
, NULL
))
5601 entry
->result
= entry
;
5605 m
= gfc_match_suffix (entry
, &result
);
5607 gfc_syntax_error (ST_ENTRY
);
5613 if (!gfc_add_result (&result
->attr
, result
->name
, NULL
)
5614 || !gfc_add_entry (&entry
->attr
, result
->name
, NULL
)
5615 || !gfc_add_function (&entry
->attr
, result
->name
, NULL
))
5617 entry
->result
= result
;
5621 if (!gfc_add_entry (&entry
->attr
, entry
->name
, NULL
)
5622 || !gfc_add_function (&entry
->attr
, entry
->name
, NULL
))
5624 entry
->result
= entry
;
5628 if (!gfc_current_ns
->parent
5629 && !add_global_entry (name
, entry
->binding_label
, false,
5634 if (gfc_match_eos () != MATCH_YES
)
5636 gfc_syntax_error (ST_ENTRY
);
5640 entry
->attr
.recursive
= proc
->attr
.recursive
;
5641 entry
->attr
.elemental
= proc
->attr
.elemental
;
5642 entry
->attr
.pure
= proc
->attr
.pure
;
5644 el
= gfc_get_entry_list ();
5646 el
->next
= gfc_current_ns
->entries
;
5647 gfc_current_ns
->entries
= el
;
5649 el
->id
= el
->next
->id
+ 1;
5653 new_st
.op
= EXEC_ENTRY
;
5654 new_st
.ext
.entry
= el
;
5660 /* Match a subroutine statement, including optional prefixes. */
5663 gfc_match_subroutine (void)
5665 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
5670 bool allow_binding_name
;
5672 if (gfc_current_state () != COMP_NONE
5673 && gfc_current_state () != COMP_INTERFACE
5674 && gfc_current_state () != COMP_CONTAINS
)
5677 m
= gfc_match_prefix (NULL
);
5681 m
= gfc_match ("subroutine% %n", name
);
5685 if (get_proc_name (name
, &sym
, false))
5688 /* Set declared_at as it might point to, e.g., a PUBLIC statement, if
5689 the symbol existed before. */
5690 sym
->declared_at
= gfc_current_locus
;
5692 if (add_hidden_procptr_result (sym
))
5695 gfc_new_block
= sym
;
5697 /* Check what next non-whitespace character is so we can tell if there
5698 is the required parens if we have a BIND(C). */
5699 gfc_gobble_whitespace ();
5700 peek_char
= gfc_peek_ascii_char ();
5702 if (!gfc_add_subroutine (&sym
->attr
, sym
->name
, NULL
))
5705 if (gfc_match_formal_arglist (sym
, 0, 1) != MATCH_YES
)
5708 /* Make sure that it isn't already declared as BIND(C). If it is, it
5709 must have been marked BIND(C) with a BIND(C) attribute and that is
5710 not allowed for procedures. */
5711 if (sym
->attr
.is_bind_c
== 1)
5713 sym
->attr
.is_bind_c
= 0;
5714 if (sym
->old_symbol
!= NULL
)
5715 gfc_error_now ("BIND(C) attribute at %L can only be used for "
5716 "variables or common blocks",
5717 &(sym
->old_symbol
->declared_at
));
5719 gfc_error_now ("BIND(C) attribute at %L can only be used for "
5720 "variables or common blocks", &gfc_current_locus
);
5723 /* C binding names are not allowed for internal procedures. */
5724 if (gfc_current_state () == COMP_CONTAINS
5725 && sym
->ns
->proc_name
->attr
.flavor
!= FL_MODULE
)
5726 allow_binding_name
= false;
5728 allow_binding_name
= true;
5730 /* Here, we are just checking if it has the bind(c) attribute, and if
5731 so, then we need to make sure it's all correct. If it doesn't,
5732 we still need to continue matching the rest of the subroutine line. */
5733 is_bind_c
= gfc_match_bind_c (sym
, allow_binding_name
);
5734 if (is_bind_c
== MATCH_ERROR
)
5736 /* There was an attempt at the bind(c), but it was wrong. An
5737 error message should have been printed w/in the gfc_match_bind_c
5738 so here we'll just return the MATCH_ERROR. */
5742 if (is_bind_c
== MATCH_YES
)
5744 /* The following is allowed in the Fortran 2008 draft. */
5745 if (gfc_current_state () == COMP_CONTAINS
5746 && sym
->ns
->proc_name
->attr
.flavor
!= FL_MODULE
5747 && !gfc_notify_std (GFC_STD_F2008
, "BIND(C) attribute "
5748 "at %L may not be specified for an internal "
5749 "procedure", &gfc_current_locus
))
5752 if (peek_char
!= '(')
5754 gfc_error ("Missing required parentheses before BIND(C) at %C");
5757 if (!gfc_add_is_bind_c (&(sym
->attr
), sym
->name
,
5758 &(sym
->declared_at
), 1))
5762 if (gfc_match_eos () != MATCH_YES
)
5764 gfc_syntax_error (ST_SUBROUTINE
);
5768 if (!copy_prefix (&sym
->attr
, &sym
->declared_at
))
5771 /* Warn if it has the same name as an intrinsic. */
5772 warn_intrinsic_shadow (sym
, false);
5778 /* Match a BIND(C) specifier, with the optional 'name=' specifier if
5779 given, and set the binding label in either the given symbol (if not
5780 NULL), or in the current_ts. The symbol may be NULL because we may
5781 encounter the BIND(C) before the declaration itself. Return
5782 MATCH_NO if what we're looking at isn't a BIND(C) specifier,
5783 MATCH_ERROR if it is a BIND(C) clause but an error was encountered,
5784 or MATCH_YES if the specifier was correct and the binding label and
5785 bind(c) fields were set correctly for the given symbol or the
5786 current_ts. If allow_binding_name is false, no binding name may be
5790 gfc_match_bind_c (gfc_symbol
*sym
, bool allow_binding_name
)
5792 /* binding label, if exists */
5793 const char* binding_label
= NULL
;
5797 /* Initialize the flag that specifies whether we encountered a NAME=
5798 specifier or not. */
5799 has_name_equals
= 0;
5801 /* This much we have to be able to match, in this order, if
5802 there is a bind(c) label. */
5803 if (gfc_match (" bind ( c ") != MATCH_YES
)
5806 /* Now see if there is a binding label, or if we've reached the
5807 end of the bind(c) attribute without one. */
5808 if (gfc_match_char (',') == MATCH_YES
)
5810 if (gfc_match (" name = ") != MATCH_YES
)
5812 gfc_error ("Syntax error in NAME= specifier for binding label "
5814 /* should give an error message here */
5818 has_name_equals
= 1;
5820 /* Get the opening quote. */
5821 double_quote
= MATCH_YES
;
5822 single_quote
= MATCH_YES
;
5823 double_quote
= gfc_match_char ('"');
5824 if (double_quote
!= MATCH_YES
)
5825 single_quote
= gfc_match_char ('\'');
5826 if (double_quote
!= MATCH_YES
&& single_quote
!= MATCH_YES
)
5828 gfc_error ("Syntax error in NAME= specifier for binding label "
5833 /* Grab the binding label, using functions that will not lower
5834 case the names automatically. */
5835 if (gfc_match_name_C (&binding_label
) != MATCH_YES
)
5838 /* Get the closing quotation. */
5839 if (double_quote
== MATCH_YES
)
5841 if (gfc_match_char ('"') != MATCH_YES
)
5843 gfc_error ("Missing closing quote '\"' for binding label at %C");
5844 /* User started string with '"' so looked to match it. */
5850 if (gfc_match_char ('\'') != MATCH_YES
)
5852 gfc_error ("Missing closing quote '\'' for binding label at %C");
5853 /* User started string with "'" char. */
5859 /* Get the required right paren. */
5860 if (gfc_match_char (')') != MATCH_YES
)
5862 gfc_error ("Missing closing paren for binding label at %C");
5866 if (has_name_equals
&& !allow_binding_name
)
5868 gfc_error ("No binding name is allowed in BIND(C) at %C");
5872 if (has_name_equals
&& sym
!= NULL
&& sym
->attr
.dummy
)
5874 gfc_error ("For dummy procedure %s, no binding name is "
5875 "allowed in BIND(C) at %C", sym
->name
);
5880 /* Save the binding label to the symbol. If sym is null, we're
5881 probably matching the typespec attributes of a declaration and
5882 haven't gotten the name yet, and therefore, no symbol yet. */
5886 sym
->binding_label
= binding_label
;
5888 curr_binding_label
= binding_label
;
5890 else if (allow_binding_name
)
5892 /* No binding label, but if symbol isn't null, we
5893 can set the label for it here.
5894 If name="" or allow_binding_name is false, no C binding name is
5896 if (sym
!= NULL
&& sym
->name
!= NULL
&& has_name_equals
== 0)
5897 sym
->binding_label
= IDENTIFIER_POINTER (get_identifier (sym
->name
));
5900 if (has_name_equals
&& gfc_current_state () == COMP_INTERFACE
5901 && current_interface
.type
== INTERFACE_ABSTRACT
)
5903 gfc_error ("NAME not allowed on BIND(C) for ABSTRACT INTERFACE at %C");
5911 /* Return nonzero if we're currently compiling a contained procedure. */
5914 contained_procedure (void)
5916 gfc_state_data
*s
= gfc_state_stack
;
5918 if ((s
->state
== COMP_SUBROUTINE
|| s
->state
== COMP_FUNCTION
)
5919 && s
->previous
!= NULL
&& s
->previous
->state
== COMP_CONTAINS
)
5925 /* Set the kind of each enumerator. The kind is selected such that it is
5926 interoperable with the corresponding C enumeration type, making
5927 sure that -fshort-enums is honored. */
5932 enumerator_history
*current_history
= NULL
;
5936 if (max_enum
== NULL
|| enum_history
== NULL
)
5939 if (!flag_short_enums
)
5945 kind
= gfc_integer_kinds
[i
++].kind
;
5947 while (kind
< gfc_c_int_kind
5948 && gfc_check_integer_range (max_enum
->initializer
->value
.integer
,
5951 current_history
= enum_history
;
5952 while (current_history
!= NULL
)
5954 current_history
->sym
->ts
.kind
= kind
;
5955 current_history
= current_history
->next
;
5960 /* Match any of the various end-block statements. Returns the type of
5961 END to the caller. The END INTERFACE, END IF, END DO, END SELECT
5962 and END BLOCK statements cannot be replaced by a single END statement. */
5965 gfc_match_end (gfc_statement
*st
)
5967 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
5968 gfc_compile_state state
;
5970 const char *block_name
;
5974 gfc_namespace
*parent_ns
, *ns
, *prev_ns
;
5975 gfc_namespace
**nsp
;
5977 old_loc
= gfc_current_locus
;
5978 if (gfc_match ("end") != MATCH_YES
)
5981 state
= gfc_current_state ();
5982 block_name
= gfc_current_block () == NULL
5983 ? NULL
: gfc_current_block ()->name
;
5987 case COMP_ASSOCIATE
:
5989 if (!strncmp (block_name
, "block@", strlen("block@")))
5994 case COMP_DERIVED_CONTAINS
:
5995 state
= gfc_state_stack
->previous
->state
;
5996 block_name
= gfc_state_stack
->previous
->sym
== NULL
5997 ? NULL
: gfc_state_stack
->previous
->sym
->name
;
6008 *st
= ST_END_PROGRAM
;
6009 target
= " program";
6013 case COMP_SUBROUTINE
:
6014 *st
= ST_END_SUBROUTINE
;
6015 target
= " subroutine";
6016 eos_ok
= !contained_procedure ();
6020 *st
= ST_END_FUNCTION
;
6021 target
= " function";
6022 eos_ok
= !contained_procedure ();
6025 case COMP_BLOCK_DATA
:
6026 *st
= ST_END_BLOCK_DATA
;
6027 target
= " block data";
6032 *st
= ST_END_MODULE
;
6037 case COMP_INTERFACE
:
6038 *st
= ST_END_INTERFACE
;
6039 target
= " interface";
6044 case COMP_DERIVED_CONTAINS
:
6050 case COMP_ASSOCIATE
:
6051 *st
= ST_END_ASSOCIATE
;
6052 target
= " associate";
6069 case COMP_DO_CONCURRENT
:
6076 *st
= ST_END_CRITICAL
;
6077 target
= " critical";
6082 case COMP_SELECT_TYPE
:
6083 *st
= ST_END_SELECT
;
6089 *st
= ST_END_FORALL
;
6104 last_initializer
= NULL
;
6106 gfc_free_enum_history ();
6110 gfc_error ("Unexpected END statement at %C");
6114 old_loc
= gfc_current_locus
;
6115 if (gfc_match_eos () == MATCH_YES
)
6117 if (!eos_ok
&& (*st
== ST_END_SUBROUTINE
|| *st
== ST_END_FUNCTION
))
6119 if (!gfc_notify_std (GFC_STD_F2008
, "END statement "
6120 "instead of %s statement at %L",
6121 gfc_ascii_statement(*st
), &old_loc
))
6126 /* We would have required END [something]. */
6127 gfc_error ("%s statement expected at %L",
6128 gfc_ascii_statement (*st
), &old_loc
);
6135 /* Verify that we've got the sort of end-block that we're expecting. */
6136 if (gfc_match (target
) != MATCH_YES
)
6138 gfc_error ("Expecting %s statement at %L", gfc_ascii_statement (*st
),
6143 old_loc
= gfc_current_locus
;
6144 /* If we're at the end, make sure a block name wasn't required. */
6145 if (gfc_match_eos () == MATCH_YES
)
6148 if (*st
!= ST_ENDDO
&& *st
!= ST_ENDIF
&& *st
!= ST_END_SELECT
6149 && *st
!= ST_END_FORALL
&& *st
!= ST_END_WHERE
&& *st
!= ST_END_BLOCK
6150 && *st
!= ST_END_ASSOCIATE
&& *st
!= ST_END_CRITICAL
)
6156 gfc_error ("Expected block name of '%s' in %s statement at %L",
6157 block_name
, gfc_ascii_statement (*st
), &old_loc
);
6162 /* END INTERFACE has a special handler for its several possible endings. */
6163 if (*st
== ST_END_INTERFACE
)
6164 return gfc_match_end_interface ();
6166 /* We haven't hit the end of statement, so what is left must be an
6168 m
= gfc_match_space ();
6170 m
= gfc_match_name (name
);
6173 gfc_error ("Expected terminating name at %C");
6177 if (block_name
== NULL
)
6180 if (strcmp (name
, block_name
) != 0 && strcmp (block_name
, "ppr@") != 0)
6182 gfc_error ("Expected label '%s' for %s statement at %C", block_name
,
6183 gfc_ascii_statement (*st
));
6186 /* Procedure pointer as function result. */
6187 else if (strcmp (block_name
, "ppr@") == 0
6188 && strcmp (name
, gfc_current_block ()->ns
->proc_name
->name
) != 0)
6190 gfc_error ("Expected label '%s' for %s statement at %C",
6191 gfc_current_block ()->ns
->proc_name
->name
,
6192 gfc_ascii_statement (*st
));
6196 if (gfc_match_eos () == MATCH_YES
)
6200 gfc_syntax_error (*st
);
6203 gfc_current_locus
= old_loc
;
6205 /* If we are missing an END BLOCK, we created a half-ready namespace.
6206 Remove it from the parent namespace's sibling list. */
6208 if (state
== COMP_BLOCK
)
6210 parent_ns
= gfc_current_ns
->parent
;
6212 nsp
= &(gfc_state_stack
->previous
->tail
->ext
.block
.ns
);
6218 if (ns
== gfc_current_ns
)
6220 if (prev_ns
== NULL
)
6223 prev_ns
->sibling
= ns
->sibling
;
6229 gfc_free_namespace (gfc_current_ns
);
6230 gfc_current_ns
= parent_ns
;
6238 /***************** Attribute declaration statements ****************/
6240 /* Set the attribute of a single variable. */
6245 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
6253 m
= gfc_match_name (name
);
6257 if (find_special (name
, &sym
, false))
6260 if (!check_function_name (name
))
6266 var_locus
= gfc_current_locus
;
6268 /* Deal with possible array specification for certain attributes. */
6269 if (current_attr
.dimension
6270 || current_attr
.codimension
6271 || current_attr
.allocatable
6272 || current_attr
.pointer
6273 || current_attr
.target
)
6275 m
= gfc_match_array_spec (&as
, !current_attr
.codimension
,
6276 !current_attr
.dimension
6277 && !current_attr
.pointer
6278 && !current_attr
.target
);
6279 if (m
== MATCH_ERROR
)
6282 if (current_attr
.dimension
&& m
== MATCH_NO
)
6284 gfc_error ("Missing array specification at %L in DIMENSION "
6285 "statement", &var_locus
);
6290 if (current_attr
.dimension
&& sym
->value
)
6292 gfc_error ("Dimensions specified for %s at %L after its "
6293 "initialisation", sym
->name
, &var_locus
);
6298 if (current_attr
.codimension
&& m
== MATCH_NO
)
6300 gfc_error ("Missing array specification at %L in CODIMENSION "
6301 "statement", &var_locus
);
6306 if ((current_attr
.allocatable
|| current_attr
.pointer
)
6307 && (m
== MATCH_YES
) && (as
->type
!= AS_DEFERRED
))
6309 gfc_error ("Array specification must be deferred at %L", &var_locus
);
6315 /* Update symbol table. DIMENSION attribute is set in
6316 gfc_set_array_spec(). For CLASS variables, this must be applied
6317 to the first component, or '_data' field. */
6318 if (sym
->ts
.type
== BT_CLASS
&& sym
->ts
.u
.derived
->attr
.is_class
)
6320 if (!gfc_copy_attr (&CLASS_DATA(sym
)->attr
, ¤t_attr
, &var_locus
))
6328 if (current_attr
.dimension
== 0 && current_attr
.codimension
== 0
6329 && !gfc_copy_attr (&sym
->attr
, ¤t_attr
, &var_locus
))
6336 if (sym
->ts
.type
== BT_CLASS
6337 && !gfc_build_class_symbol (&sym
->ts
, &sym
->attr
, &sym
->as
, false))
6343 if (!gfc_set_array_spec (sym
, as
, &var_locus
))
6349 if (sym
->attr
.cray_pointee
&& sym
->as
!= NULL
)
6351 /* Fix the array spec. */
6352 m
= gfc_mod_pointee_as (sym
->as
);
6353 if (m
== MATCH_ERROR
)
6357 if (!gfc_add_attribute (&sym
->attr
, &var_locus
))
6363 if ((current_attr
.external
|| current_attr
.intrinsic
)
6364 && sym
->attr
.flavor
!= FL_PROCEDURE
6365 && !gfc_add_flavor (&sym
->attr
, FL_PROCEDURE
, sym
->name
, NULL
))
6371 add_hidden_procptr_result (sym
);
6376 gfc_free_array_spec (as
);
6381 /* Generic attribute declaration subroutine. Used for attributes that
6382 just have a list of names. */
6389 /* Gobble the optional double colon, by simply ignoring the result
6399 if (gfc_match_eos () == MATCH_YES
)
6405 if (gfc_match_char (',') != MATCH_YES
)
6407 gfc_error ("Unexpected character in variable list at %C");
6417 /* This routine matches Cray Pointer declarations of the form:
6418 pointer ( <pointer>, <pointee> )
6420 pointer ( <pointer1>, <pointee1> ), ( <pointer2>, <pointee2> ), ...
6421 The pointer, if already declared, should be an integer. Otherwise, we
6422 set it as BT_INTEGER with kind gfc_index_integer_kind. The pointee may
6423 be either a scalar, or an array declaration. No space is allocated for
6424 the pointee. For the statement
6425 pointer (ipt, ar(10))
6426 any subsequent uses of ar will be translated (in C-notation) as
6427 ar(i) => ((<type> *) ipt)(i)
6428 After gimplification, pointee variable will disappear in the code. */
6431 cray_pointer_decl (void)
6434 gfc_array_spec
*as
= NULL
;
6435 gfc_symbol
*cptr
; /* Pointer symbol. */
6436 gfc_symbol
*cpte
; /* Pointee symbol. */
6442 if (gfc_match_char ('(') != MATCH_YES
)
6444 gfc_error ("Expected '(' at %C");
6448 /* Match pointer. */
6449 var_locus
= gfc_current_locus
;
6450 gfc_clear_attr (¤t_attr
);
6451 gfc_add_cray_pointer (¤t_attr
, &var_locus
);
6452 current_ts
.type
= BT_INTEGER
;
6453 current_ts
.kind
= gfc_index_integer_kind
;
6455 m
= gfc_match_symbol (&cptr
, 0);
6458 gfc_error ("Expected variable name at %C");
6462 if (!gfc_add_cray_pointer (&cptr
->attr
, &var_locus
))
6465 gfc_set_sym_referenced (cptr
);
6467 if (cptr
->ts
.type
== BT_UNKNOWN
) /* Override the type, if necessary. */
6469 cptr
->ts
.type
= BT_INTEGER
;
6470 cptr
->ts
.kind
= gfc_index_integer_kind
;
6472 else if (cptr
->ts
.type
!= BT_INTEGER
)
6474 gfc_error ("Cray pointer at %C must be an integer");
6477 else if (cptr
->ts
.kind
< gfc_index_integer_kind
)
6478 gfc_warning ("Cray pointer at %C has %d bytes of precision;"
6479 " memory addresses require %d bytes",
6480 cptr
->ts
.kind
, gfc_index_integer_kind
);
6482 if (gfc_match_char (',') != MATCH_YES
)
6484 gfc_error ("Expected \",\" at %C");
6488 /* Match Pointee. */
6489 var_locus
= gfc_current_locus
;
6490 gfc_clear_attr (¤t_attr
);
6491 gfc_add_cray_pointee (¤t_attr
, &var_locus
);
6492 current_ts
.type
= BT_UNKNOWN
;
6493 current_ts
.kind
= 0;
6495 m
= gfc_match_symbol (&cpte
, 0);
6498 gfc_error ("Expected variable name at %C");
6502 /* Check for an optional array spec. */
6503 m
= gfc_match_array_spec (&as
, true, false);
6504 if (m
== MATCH_ERROR
)
6506 gfc_free_array_spec (as
);
6509 else if (m
== MATCH_NO
)
6511 gfc_free_array_spec (as
);
6515 if (!gfc_add_cray_pointee (&cpte
->attr
, &var_locus
))
6518 gfc_set_sym_referenced (cpte
);
6520 if (cpte
->as
== NULL
)
6522 if (!gfc_set_array_spec (cpte
, as
, &var_locus
))
6523 gfc_internal_error ("Couldn't set Cray pointee array spec.");
6525 else if (as
!= NULL
)
6527 gfc_error ("Duplicate array spec for Cray pointee at %C");
6528 gfc_free_array_spec (as
);
6534 if (cpte
->as
!= NULL
)
6536 /* Fix array spec. */
6537 m
= gfc_mod_pointee_as (cpte
->as
);
6538 if (m
== MATCH_ERROR
)
6542 /* Point the Pointee at the Pointer. */
6543 cpte
->cp_pointer
= cptr
;
6545 if (gfc_match_char (')') != MATCH_YES
)
6547 gfc_error ("Expected \")\" at %C");
6550 m
= gfc_match_char (',');
6552 done
= true; /* Stop searching for more declarations. */
6556 if (m
== MATCH_ERROR
/* Failed when trying to find ',' above. */
6557 || gfc_match_eos () != MATCH_YES
)
6559 gfc_error ("Expected \",\" or end of statement at %C");
6567 gfc_match_external (void)
6570 gfc_clear_attr (¤t_attr
);
6571 current_attr
.external
= 1;
6573 return attr_decl ();
6578 gfc_match_intent (void)
6582 /* This is not allowed within a BLOCK construct! */
6583 if (gfc_current_state () == COMP_BLOCK
)
6585 gfc_error ("INTENT is not allowed inside of BLOCK at %C");
6589 intent
= match_intent_spec ();
6590 if (intent
== INTENT_UNKNOWN
)
6593 gfc_clear_attr (¤t_attr
);
6594 current_attr
.intent
= intent
;
6596 return attr_decl ();
6601 gfc_match_intrinsic (void)
6604 gfc_clear_attr (¤t_attr
);
6605 current_attr
.intrinsic
= 1;
6607 return attr_decl ();
6612 gfc_match_optional (void)
6614 /* This is not allowed within a BLOCK construct! */
6615 if (gfc_current_state () == COMP_BLOCK
)
6617 gfc_error ("OPTIONAL is not allowed inside of BLOCK at %C");
6621 gfc_clear_attr (¤t_attr
);
6622 current_attr
.optional
= 1;
6624 return attr_decl ();
6629 gfc_match_pointer (void)
6631 gfc_gobble_whitespace ();
6632 if (gfc_peek_ascii_char () == '(')
6634 if (!gfc_option
.flag_cray_pointer
)
6636 gfc_error ("Cray pointer declaration at %C requires -fcray-pointer "
6640 return cray_pointer_decl ();
6644 gfc_clear_attr (¤t_attr
);
6645 current_attr
.pointer
= 1;
6647 return attr_decl ();
6653 gfc_match_allocatable (void)
6655 gfc_clear_attr (¤t_attr
);
6656 current_attr
.allocatable
= 1;
6658 return attr_decl ();
6663 gfc_match_codimension (void)
6665 gfc_clear_attr (¤t_attr
);
6666 current_attr
.codimension
= 1;
6668 return attr_decl ();
6673 gfc_match_contiguous (void)
6675 if (!gfc_notify_std (GFC_STD_F2008
, "CONTIGUOUS statement at %C"))
6678 gfc_clear_attr (¤t_attr
);
6679 current_attr
.contiguous
= 1;
6681 return attr_decl ();
6686 gfc_match_dimension (void)
6688 gfc_clear_attr (¤t_attr
);
6689 current_attr
.dimension
= 1;
6691 return attr_decl ();
6696 gfc_match_target (void)
6698 gfc_clear_attr (¤t_attr
);
6699 current_attr
.target
= 1;
6701 return attr_decl ();
6705 /* Match the list of entities being specified in a PUBLIC or PRIVATE
6709 access_attr_decl (gfc_statement st
)
6711 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
6712 interface_type type
;
6714 gfc_symbol
*sym
, *dt_sym
;
6715 gfc_intrinsic_op op
;
6718 if (gfc_match (" ::") == MATCH_NO
&& gfc_match_space () == MATCH_NO
)
6723 m
= gfc_match_generic_spec (&type
, name
, &op
);
6726 if (m
== MATCH_ERROR
)
6731 case INTERFACE_NAMELESS
:
6732 case INTERFACE_ABSTRACT
:
6735 case INTERFACE_GENERIC
:
6736 if (gfc_get_symbol (name
, NULL
, &sym
))
6739 if (!gfc_add_access (&sym
->attr
,
6741 ? ACCESS_PUBLIC
: ACCESS_PRIVATE
,
6745 if (sym
->attr
.generic
&& (dt_sym
= gfc_find_dt_in_generic (sym
))
6746 && !gfc_add_access (&dt_sym
->attr
,
6748 ? ACCESS_PUBLIC
: ACCESS_PRIVATE
,
6754 case INTERFACE_INTRINSIC_OP
:
6755 if (gfc_current_ns
->operator_access
[op
] == ACCESS_UNKNOWN
)
6757 gfc_intrinsic_op other_op
;
6759 gfc_current_ns
->operator_access
[op
] =
6760 (st
== ST_PUBLIC
) ? ACCESS_PUBLIC
: ACCESS_PRIVATE
;
6762 /* Handle the case if there is another op with the same
6763 function, for INTRINSIC_EQ vs. INTRINSIC_EQ_OS and so on. */
6764 other_op
= gfc_equivalent_op (op
);
6766 if (other_op
!= INTRINSIC_NONE
)
6767 gfc_current_ns
->operator_access
[other_op
] =
6768 (st
== ST_PUBLIC
) ? ACCESS_PUBLIC
: ACCESS_PRIVATE
;
6773 gfc_error ("Access specification of the %s operator at %C has "
6774 "already been specified", gfc_op2string (op
));
6780 case INTERFACE_USER_OP
:
6781 uop
= gfc_get_uop (name
);
6783 if (uop
->access
== ACCESS_UNKNOWN
)
6785 uop
->access
= (st
== ST_PUBLIC
)
6786 ? ACCESS_PUBLIC
: ACCESS_PRIVATE
;
6790 gfc_error ("Access specification of the .%s. operator at %C "
6791 "has already been specified", sym
->name
);
6798 if (gfc_match_char (',') == MATCH_NO
)
6802 if (gfc_match_eos () != MATCH_YES
)
6807 gfc_syntax_error (st
);
6815 gfc_match_protected (void)
6820 if (gfc_current_ns
->proc_name
->attr
.flavor
!= FL_MODULE
)
6822 gfc_error ("PROTECTED at %C only allowed in specification "
6823 "part of a module");
6828 if (!gfc_notify_std (GFC_STD_F2003
, "PROTECTED statement at %C"))
6831 if (gfc_match (" ::") == MATCH_NO
&& gfc_match_space () == MATCH_NO
)
6836 if (gfc_match_eos () == MATCH_YES
)
6841 m
= gfc_match_symbol (&sym
, 0);
6845 if (!gfc_add_protected (&sym
->attr
, sym
->name
, &gfc_current_locus
))
6857 if (gfc_match_eos () == MATCH_YES
)
6859 if (gfc_match_char (',') != MATCH_YES
)
6866 gfc_error ("Syntax error in PROTECTED statement at %C");
6871 /* The PRIVATE statement is a bit weird in that it can be an attribute
6872 declaration, but also works as a standalone statement inside of a
6873 type declaration or a module. */
6876 gfc_match_private (gfc_statement
*st
)
6879 if (gfc_match ("private") != MATCH_YES
)
6882 if (gfc_current_state () != COMP_MODULE
6883 && !(gfc_current_state () == COMP_DERIVED
6884 && gfc_state_stack
->previous
6885 && gfc_state_stack
->previous
->state
== COMP_MODULE
)
6886 && !(gfc_current_state () == COMP_DERIVED_CONTAINS
6887 && gfc_state_stack
->previous
&& gfc_state_stack
->previous
->previous
6888 && gfc_state_stack
->previous
->previous
->state
== COMP_MODULE
))
6890 gfc_error ("PRIVATE statement at %C is only allowed in the "
6891 "specification part of a module");
6895 if (gfc_current_state () == COMP_DERIVED
)
6897 if (gfc_match_eos () == MATCH_YES
)
6903 gfc_syntax_error (ST_PRIVATE
);
6907 if (gfc_match_eos () == MATCH_YES
)
6914 return access_attr_decl (ST_PRIVATE
);
6919 gfc_match_public (gfc_statement
*st
)
6922 if (gfc_match ("public") != MATCH_YES
)
6925 if (gfc_current_state () != COMP_MODULE
)
6927 gfc_error ("PUBLIC statement at %C is only allowed in the "
6928 "specification part of a module");
6932 if (gfc_match_eos () == MATCH_YES
)
6939 return access_attr_decl (ST_PUBLIC
);
6943 /* Workhorse for gfc_match_parameter. */
6953 m
= gfc_match_symbol (&sym
, 0);
6955 gfc_error ("Expected variable name at %C in PARAMETER statement");
6960 if (gfc_match_char ('=') == MATCH_NO
)
6962 gfc_error ("Expected = sign in PARAMETER statement at %C");
6966 m
= gfc_match_init_expr (&init
);
6968 gfc_error ("Expected expression at %C in PARAMETER statement");
6972 if (sym
->ts
.type
== BT_UNKNOWN
6973 && !gfc_set_default_type (sym
, 1, NULL
))
6979 if (!gfc_check_assign_symbol (sym
, NULL
, init
)
6980 || !gfc_add_flavor (&sym
->attr
, FL_PARAMETER
, sym
->name
, NULL
))
6988 gfc_error ("Initializing already initialized variable at %C");
6993 t
= add_init_expr_to_sym (sym
->name
, &init
, &gfc_current_locus
);
6994 return (t
) ? MATCH_YES
: MATCH_ERROR
;
6997 gfc_free_expr (init
);
7002 /* Match a parameter statement, with the weird syntax that these have. */
7005 gfc_match_parameter (void)
7009 if (gfc_match_char ('(') == MATCH_NO
)
7018 if (gfc_match (" )%t") == MATCH_YES
)
7021 if (gfc_match_char (',') != MATCH_YES
)
7023 gfc_error ("Unexpected characters in PARAMETER statement at %C");
7033 /* Save statements have a special syntax. */
7036 gfc_match_save (void)
7038 char n
[GFC_MAX_SYMBOL_LEN
+1];
7043 if (gfc_match_eos () == MATCH_YES
)
7045 if (gfc_current_ns
->seen_save
)
7047 if (!gfc_notify_std (GFC_STD_LEGACY
, "Blanket SAVE statement at %C "
7048 "follows previous SAVE statement"))
7052 gfc_current_ns
->save_all
= gfc_current_ns
->seen_save
= 1;
7056 if (gfc_current_ns
->save_all
)
7058 if (!gfc_notify_std (GFC_STD_LEGACY
, "SAVE statement at %C follows "
7059 "blanket SAVE statement"))
7067 m
= gfc_match_symbol (&sym
, 0);
7071 if (!gfc_add_save (&sym
->attr
, SAVE_EXPLICIT
, sym
->name
,
7072 &gfc_current_locus
))
7083 m
= gfc_match (" / %n /", &n
);
7084 if (m
== MATCH_ERROR
)
7089 c
= gfc_get_common (n
, 0);
7092 gfc_current_ns
->seen_save
= 1;
7095 if (gfc_match_eos () == MATCH_YES
)
7097 if (gfc_match_char (',') != MATCH_YES
)
7104 gfc_error ("Syntax error in SAVE statement at %C");
7110 gfc_match_value (void)
7115 /* This is not allowed within a BLOCK construct! */
7116 if (gfc_current_state () == COMP_BLOCK
)
7118 gfc_error ("VALUE is not allowed inside of BLOCK at %C");
7122 if (!gfc_notify_std (GFC_STD_F2003
, "VALUE statement at %C"))
7125 if (gfc_match (" ::") == MATCH_NO
&& gfc_match_space () == MATCH_NO
)
7130 if (gfc_match_eos () == MATCH_YES
)
7135 m
= gfc_match_symbol (&sym
, 0);
7139 if (!gfc_add_value (&sym
->attr
, sym
->name
, &gfc_current_locus
))
7151 if (gfc_match_eos () == MATCH_YES
)
7153 if (gfc_match_char (',') != MATCH_YES
)
7160 gfc_error ("Syntax error in VALUE statement at %C");
7166 gfc_match_volatile (void)
7171 if (!gfc_notify_std (GFC_STD_F2003
, "VOLATILE statement at %C"))
7174 if (gfc_match (" ::") == MATCH_NO
&& gfc_match_space () == MATCH_NO
)
7179 if (gfc_match_eos () == MATCH_YES
)
7184 /* VOLATILE is special because it can be added to host-associated
7185 symbols locally. Except for coarrays. */
7186 m
= gfc_match_symbol (&sym
, 1);
7190 /* F2008, C560+C561. VOLATILE for host-/use-associated variable or
7191 for variable in a BLOCK which is defined outside of the BLOCK. */
7192 if (sym
->ns
!= gfc_current_ns
&& sym
->attr
.codimension
)
7194 gfc_error ("Specifying VOLATILE for coarray variable '%s' at "
7195 "%C, which is use-/host-associated", sym
->name
);
7198 if (!gfc_add_volatile (&sym
->attr
, sym
->name
, &gfc_current_locus
))
7210 if (gfc_match_eos () == MATCH_YES
)
7212 if (gfc_match_char (',') != MATCH_YES
)
7219 gfc_error ("Syntax error in VOLATILE statement at %C");
7225 gfc_match_asynchronous (void)
7230 if (!gfc_notify_std (GFC_STD_F2003
, "ASYNCHRONOUS statement at %C"))
7233 if (gfc_match (" ::") == MATCH_NO
&& gfc_match_space () == MATCH_NO
)
7238 if (gfc_match_eos () == MATCH_YES
)
7243 /* ASYNCHRONOUS is special because it can be added to host-associated
7245 m
= gfc_match_symbol (&sym
, 1);
7249 if (!gfc_add_asynchronous (&sym
->attr
, sym
->name
, &gfc_current_locus
))
7261 if (gfc_match_eos () == MATCH_YES
)
7263 if (gfc_match_char (',') != MATCH_YES
)
7270 gfc_error ("Syntax error in ASYNCHRONOUS statement at %C");
7275 /* Match a module procedure statement. Note that we have to modify
7276 symbols in the parent's namespace because the current one was there
7277 to receive symbols that are in an interface's formal argument list. */
7280 gfc_match_modproc (void)
7282 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
7286 gfc_namespace
*module_ns
;
7287 gfc_interface
*old_interface_head
, *interface
;
7289 if (gfc_state_stack
->state
!= COMP_INTERFACE
7290 || gfc_state_stack
->previous
== NULL
7291 || current_interface
.type
== INTERFACE_NAMELESS
7292 || current_interface
.type
== INTERFACE_ABSTRACT
)
7294 gfc_error ("MODULE PROCEDURE at %C must be in a generic module "
7299 module_ns
= gfc_current_ns
->parent
;
7300 for (; module_ns
; module_ns
= module_ns
->parent
)
7301 if (module_ns
->proc_name
->attr
.flavor
== FL_MODULE
7302 || module_ns
->proc_name
->attr
.flavor
== FL_PROGRAM
7303 || (module_ns
->proc_name
->attr
.flavor
== FL_PROCEDURE
7304 && !module_ns
->proc_name
->attr
.contained
))
7307 if (module_ns
== NULL
)
7310 /* Store the current state of the interface. We will need it if we
7311 end up with a syntax error and need to recover. */
7312 old_interface_head
= gfc_current_interface_head ();
7314 /* Check if the F2008 optional double colon appears. */
7315 gfc_gobble_whitespace ();
7316 old_locus
= gfc_current_locus
;
7317 if (gfc_match ("::") == MATCH_YES
)
7319 if (!gfc_notify_std (GFC_STD_F2008
, "double colon in "
7320 "MODULE PROCEDURE statement at %L", &old_locus
))
7324 gfc_current_locus
= old_locus
;
7329 old_locus
= gfc_current_locus
;
7331 m
= gfc_match_name (name
);
7337 /* Check for syntax error before starting to add symbols to the
7338 current namespace. */
7339 if (gfc_match_eos () == MATCH_YES
)
7342 if (!last
&& gfc_match_char (',') != MATCH_YES
)
7345 /* Now we're sure the syntax is valid, we process this item
7347 if (gfc_get_symbol (name
, module_ns
, &sym
))
7350 if (sym
->attr
.intrinsic
)
7352 gfc_error ("Intrinsic procedure at %L cannot be a MODULE "
7353 "PROCEDURE", &old_locus
);
7357 if (sym
->attr
.proc
!= PROC_MODULE
7358 && !gfc_add_procedure (&sym
->attr
, PROC_MODULE
, sym
->name
, NULL
))
7361 if (!gfc_add_interface (sym
))
7364 sym
->attr
.mod_proc
= 1;
7365 sym
->declared_at
= old_locus
;
7374 /* Restore the previous state of the interface. */
7375 interface
= gfc_current_interface_head ();
7376 gfc_set_current_interface_head (old_interface_head
);
7378 /* Free the new interfaces. */
7379 while (interface
!= old_interface_head
)
7381 gfc_interface
*i
= interface
->next
;
7386 /* And issue a syntax error. */
7387 gfc_syntax_error (ST_MODULE_PROC
);
7392 /* Check a derived type that is being extended. */
7394 check_extended_derived_type (char *name
)
7396 gfc_symbol
*extended
;
7398 if (gfc_find_symbol (name
, gfc_current_ns
, 1, &extended
))
7400 gfc_error ("Ambiguous symbol in TYPE definition at %C");
7406 gfc_error ("No such symbol in TYPE definition at %C");
7410 extended
= gfc_find_dt_in_generic (extended
);
7412 if (extended
->attr
.flavor
!= FL_DERIVED
)
7414 gfc_error ("'%s' in EXTENDS expression at %C is not a "
7415 "derived type", name
);
7419 if (extended
->attr
.is_bind_c
)
7421 gfc_error ("'%s' cannot be extended at %C because it "
7422 "is BIND(C)", extended
->name
);
7426 if (extended
->attr
.sequence
)
7428 gfc_error ("'%s' cannot be extended at %C because it "
7429 "is a SEQUENCE type", extended
->name
);
7437 /* Match the optional attribute specifiers for a type declaration.
7438 Return MATCH_ERROR if an error is encountered in one of the handled
7439 attributes (public, private, bind(c)), MATCH_NO if what's found is
7440 not a handled attribute, and MATCH_YES otherwise. TODO: More error
7441 checking on attribute conflicts needs to be done. */
7444 gfc_get_type_attr_spec (symbol_attribute
*attr
, char *name
)
7446 /* See if the derived type is marked as private. */
7447 if (gfc_match (" , private") == MATCH_YES
)
7449 if (gfc_current_state () != COMP_MODULE
)
7451 gfc_error ("Derived type at %C can only be PRIVATE in the "
7452 "specification part of a module");
7456 if (!gfc_add_access (attr
, ACCESS_PRIVATE
, NULL
, NULL
))
7459 else if (gfc_match (" , public") == MATCH_YES
)
7461 if (gfc_current_state () != COMP_MODULE
)
7463 gfc_error ("Derived type at %C can only be PUBLIC in the "
7464 "specification part of a module");
7468 if (!gfc_add_access (attr
, ACCESS_PUBLIC
, NULL
, NULL
))
7471 else if (gfc_match (" , bind ( c )") == MATCH_YES
)
7473 /* If the type is defined to be bind(c) it then needs to make
7474 sure that all fields are interoperable. This will
7475 need to be a semantic check on the finished derived type.
7476 See 15.2.3 (lines 9-12) of F2003 draft. */
7477 if (!gfc_add_is_bind_c (attr
, NULL
, &gfc_current_locus
, 0))
7480 /* TODO: attr conflicts need to be checked, probably in symbol.c. */
7482 else if (gfc_match (" , abstract") == MATCH_YES
)
7484 if (!gfc_notify_std (GFC_STD_F2003
, "ABSTRACT type at %C"))
7487 if (!gfc_add_abstract (attr
, &gfc_current_locus
))
7490 else if (name
&& gfc_match (" , extends ( %n )", name
) == MATCH_YES
)
7492 if (!gfc_add_extension (attr
, &gfc_current_locus
))
7498 /* If we get here, something matched. */
7503 /* Match the beginning of a derived type declaration. If a type name
7504 was the result of a function, then it is possible to have a symbol
7505 already to be known as a derived type yet have no components. */
7508 gfc_match_derived_decl (void)
7510 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
7511 char parent
[GFC_MAX_SYMBOL_LEN
+ 1];
7512 symbol_attribute attr
;
7513 gfc_symbol
*sym
, *gensym
;
7514 gfc_symbol
*extended
;
7516 match is_type_attr_spec
= MATCH_NO
;
7517 bool seen_attr
= false;
7518 gfc_interface
*intr
= NULL
, *head
;
7520 if (gfc_current_state () == COMP_DERIVED
)
7525 gfc_clear_attr (&attr
);
7530 is_type_attr_spec
= gfc_get_type_attr_spec (&attr
, parent
);
7531 if (is_type_attr_spec
== MATCH_ERROR
)
7533 if (is_type_attr_spec
== MATCH_YES
)
7535 } while (is_type_attr_spec
== MATCH_YES
);
7537 /* Deal with derived type extensions. The extension attribute has
7538 been added to 'attr' but now the parent type must be found and
7541 extended
= check_extended_derived_type (parent
);
7543 if (parent
[0] && !extended
)
7546 if (gfc_match (" ::") != MATCH_YES
&& seen_attr
)
7548 gfc_error ("Expected :: in TYPE definition at %C");
7552 m
= gfc_match (" %n%t", name
);
7556 /* Make sure the name is not the name of an intrinsic type. */
7557 if (gfc_is_intrinsic_typename (name
))
7559 gfc_error ("Type name '%s' at %C cannot be the same as an intrinsic "
7564 if (gfc_get_symbol (name
, NULL
, &gensym
))
7567 if (!gensym
->attr
.generic
&& gensym
->ts
.type
!= BT_UNKNOWN
)
7569 gfc_error ("Derived type name '%s' at %C already has a basic type "
7570 "of %s", gensym
->name
, gfc_typename (&gensym
->ts
));
7574 if (!gensym
->attr
.generic
7575 && !gfc_add_generic (&gensym
->attr
, gensym
->name
, NULL
))
7578 if (!gensym
->attr
.function
7579 && !gfc_add_function (&gensym
->attr
, gensym
->name
, NULL
))
7582 sym
= gfc_find_dt_in_generic (gensym
);
7584 if (sym
&& (sym
->components
!= NULL
|| sym
->attr
.zero_comp
))
7586 gfc_error ("Derived type definition of '%s' at %C has already been "
7587 "defined", sym
->name
);
7593 /* Use upper case to save the actual derived-type symbol. */
7594 gfc_get_symbol (gfc_get_string ("%c%s",
7595 (char) TOUPPER ((unsigned char) gensym
->name
[0]),
7596 &gensym
->name
[1]), NULL
, &sym
);
7597 sym
->name
= gfc_get_string (gensym
->name
);
7598 head
= gensym
->generic
;
7599 intr
= gfc_get_interface ();
7601 intr
->where
= gfc_current_locus
;
7602 intr
->sym
->declared_at
= gfc_current_locus
;
7604 gensym
->generic
= intr
;
7605 gensym
->attr
.if_source
= IFSRC_DECL
;
7608 /* The symbol may already have the derived attribute without the
7609 components. The ways this can happen is via a function
7610 definition, an INTRINSIC statement or a subtype in another
7611 derived type that is a pointer. The first part of the AND clause
7612 is true if the symbol is not the return value of a function. */
7613 if (sym
->attr
.flavor
!= FL_DERIVED
7614 && !gfc_add_flavor (&sym
->attr
, FL_DERIVED
, sym
->name
, NULL
))
7617 if (attr
.access
!= ACCESS_UNKNOWN
7618 && !gfc_add_access (&sym
->attr
, attr
.access
, sym
->name
, NULL
))
7620 else if (sym
->attr
.access
== ACCESS_UNKNOWN
7621 && gensym
->attr
.access
!= ACCESS_UNKNOWN
7622 && !gfc_add_access (&sym
->attr
, gensym
->attr
.access
,
7626 if (sym
->attr
.access
!= ACCESS_UNKNOWN
7627 && gensym
->attr
.access
== ACCESS_UNKNOWN
)
7628 gensym
->attr
.access
= sym
->attr
.access
;
7630 /* See if the derived type was labeled as bind(c). */
7631 if (attr
.is_bind_c
!= 0)
7632 sym
->attr
.is_bind_c
= attr
.is_bind_c
;
7634 /* Construct the f2k_derived namespace if it is not yet there. */
7635 if (!sym
->f2k_derived
)
7636 sym
->f2k_derived
= gfc_get_namespace (NULL
, 0);
7638 if (extended
&& !sym
->components
)
7643 /* Add the extended derived type as the first component. */
7644 gfc_add_component (sym
, parent
, &p
);
7646 gfc_set_sym_referenced (extended
);
7648 p
->ts
.type
= BT_DERIVED
;
7649 p
->ts
.u
.derived
= extended
;
7650 p
->initializer
= gfc_default_initializer (&p
->ts
);
7652 /* Set extension level. */
7653 if (extended
->attr
.extension
== 255)
7655 /* Since the extension field is 8 bit wide, we can only have
7656 up to 255 extension levels. */
7657 gfc_error ("Maximum extension level reached with type '%s' at %L",
7658 extended
->name
, &extended
->declared_at
);
7661 sym
->attr
.extension
= extended
->attr
.extension
+ 1;
7663 /* Provide the links between the extended type and its extension. */
7664 if (!extended
->f2k_derived
)
7665 extended
->f2k_derived
= gfc_get_namespace (NULL
, 0);
7666 st
= gfc_new_symtree (&extended
->f2k_derived
->sym_root
, sym
->name
);
7670 if (!sym
->hash_value
)
7671 /* Set the hash for the compound name for this type. */
7672 sym
->hash_value
= gfc_hash_value (sym
);
7674 /* Take over the ABSTRACT attribute. */
7675 sym
->attr
.abstract
= attr
.abstract
;
7677 gfc_new_block
= sym
;
7683 /* Cray Pointees can be declared as:
7684 pointer (ipt, a (n,m,...,*)) */
7687 gfc_mod_pointee_as (gfc_array_spec
*as
)
7689 as
->cray_pointee
= true; /* This will be useful to know later. */
7690 if (as
->type
== AS_ASSUMED_SIZE
)
7691 as
->cp_was_assumed
= true;
7692 else if (as
->type
== AS_ASSUMED_SHAPE
)
7694 gfc_error ("Cray Pointee at %C cannot be assumed shape array");
7701 /* Match the enum definition statement, here we are trying to match
7702 the first line of enum definition statement.
7703 Returns MATCH_YES if match is found. */
7706 gfc_match_enum (void)
7710 m
= gfc_match_eos ();
7714 if (!gfc_notify_std (GFC_STD_F2003
, "ENUM and ENUMERATOR at %C"))
7721 /* Returns an initializer whose value is one higher than the value of the
7722 LAST_INITIALIZER argument. If the argument is NULL, the
7723 initializers value will be set to zero. The initializer's kind
7724 will be set to gfc_c_int_kind.
7726 If -fshort-enums is given, the appropriate kind will be selected
7727 later after all enumerators have been parsed. A warning is issued
7728 here if an initializer exceeds gfc_c_int_kind. */
7731 enum_initializer (gfc_expr
*last_initializer
, locus where
)
7734 result
= gfc_get_constant_expr (BT_INTEGER
, gfc_c_int_kind
, &where
);
7736 mpz_init (result
->value
.integer
);
7738 if (last_initializer
!= NULL
)
7740 mpz_add_ui (result
->value
.integer
, last_initializer
->value
.integer
, 1);
7741 result
->where
= last_initializer
->where
;
7743 if (gfc_check_integer_range (result
->value
.integer
,
7744 gfc_c_int_kind
) != ARITH_OK
)
7746 gfc_error ("Enumerator exceeds the C integer type at %C");
7752 /* Control comes here, if it's the very first enumerator and no
7753 initializer has been given. It will be initialized to zero. */
7754 mpz_set_si (result
->value
.integer
, 0);
7761 /* Match a variable name with an optional initializer. When this
7762 subroutine is called, a variable is expected to be parsed next.
7763 Depending on what is happening at the moment, updates either the
7764 symbol table or the current interface. */
7767 enumerator_decl (void)
7769 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
7770 gfc_expr
*initializer
;
7771 gfc_array_spec
*as
= NULL
;
7779 old_locus
= gfc_current_locus
;
7781 /* When we get here, we've just matched a list of attributes and
7782 maybe a type and a double colon. The next thing we expect to see
7783 is the name of the symbol. */
7784 m
= gfc_match_name (name
);
7788 var_locus
= gfc_current_locus
;
7790 /* OK, we've successfully matched the declaration. Now put the
7791 symbol in the current namespace. If we fail to create the symbol,
7793 if (!build_sym (name
, NULL
, false, &as
, &var_locus
))
7799 /* The double colon must be present in order to have initializers.
7800 Otherwise the statement is ambiguous with an assignment statement. */
7803 if (gfc_match_char ('=') == MATCH_YES
)
7805 m
= gfc_match_init_expr (&initializer
);
7808 gfc_error ("Expected an initialization expression at %C");
7817 /* If we do not have an initializer, the initialization value of the
7818 previous enumerator (stored in last_initializer) is incremented
7819 by 1 and is used to initialize the current enumerator. */
7820 if (initializer
== NULL
)
7821 initializer
= enum_initializer (last_initializer
, old_locus
);
7823 if (initializer
== NULL
|| initializer
->ts
.type
!= BT_INTEGER
)
7825 gfc_error ("ENUMERATOR %L not initialized with integer expression",
7831 /* Store this current initializer, for the next enumerator variable
7832 to be parsed. add_init_expr_to_sym() zeros initializer, so we
7833 use last_initializer below. */
7834 last_initializer
= initializer
;
7835 t
= add_init_expr_to_sym (name
, &initializer
, &var_locus
);
7837 /* Maintain enumerator history. */
7838 gfc_find_symbol (name
, NULL
, 0, &sym
);
7839 create_enum_history (sym
, last_initializer
);
7841 return (t
) ? MATCH_YES
: MATCH_ERROR
;
7844 /* Free stuff up and return. */
7845 gfc_free_expr (initializer
);
7851 /* Match the enumerator definition statement. */
7854 gfc_match_enumerator_def (void)
7859 gfc_clear_ts (¤t_ts
);
7861 m
= gfc_match (" enumerator");
7865 m
= gfc_match (" :: ");
7866 if (m
== MATCH_ERROR
)
7869 colon_seen
= (m
== MATCH_YES
);
7871 if (gfc_current_state () != COMP_ENUM
)
7873 gfc_error ("ENUM definition statement expected before %C");
7874 gfc_free_enum_history ();
7878 (¤t_ts
)->type
= BT_INTEGER
;
7879 (¤t_ts
)->kind
= gfc_c_int_kind
;
7881 gfc_clear_attr (¤t_attr
);
7882 t
= gfc_add_flavor (¤t_attr
, FL_PARAMETER
, NULL
, NULL
);
7891 m
= enumerator_decl ();
7892 if (m
== MATCH_ERROR
)
7894 gfc_free_enum_history ();
7900 if (gfc_match_eos () == MATCH_YES
)
7902 if (gfc_match_char (',') != MATCH_YES
)
7906 if (gfc_current_state () == COMP_ENUM
)
7908 gfc_free_enum_history ();
7909 gfc_error ("Syntax error in ENUMERATOR definition at %C");
7914 gfc_free_array_spec (current_as
);
7921 /* Match binding attributes. */
7924 match_binding_attributes (gfc_typebound_proc
* ba
, bool generic
, bool ppc
)
7926 bool found_passing
= false;
7927 bool seen_ptr
= false;
7928 match m
= MATCH_YES
;
7930 /* Initialize to defaults. Do so even before the MATCH_NO check so that in
7931 this case the defaults are in there. */
7932 ba
->access
= ACCESS_UNKNOWN
;
7933 ba
->pass_arg
= NULL
;
7934 ba
->pass_arg_num
= 0;
7936 ba
->non_overridable
= 0;
7940 /* If we find a comma, we believe there are binding attributes. */
7941 m
= gfc_match_char (',');
7947 /* Access specifier. */
7949 m
= gfc_match (" public");
7950 if (m
== MATCH_ERROR
)
7954 if (ba
->access
!= ACCESS_UNKNOWN
)
7956 gfc_error ("Duplicate access-specifier at %C");
7960 ba
->access
= ACCESS_PUBLIC
;
7964 m
= gfc_match (" private");
7965 if (m
== MATCH_ERROR
)
7969 if (ba
->access
!= ACCESS_UNKNOWN
)
7971 gfc_error ("Duplicate access-specifier at %C");
7975 ba
->access
= ACCESS_PRIVATE
;
7979 /* If inside GENERIC, the following is not allowed. */
7984 m
= gfc_match (" nopass");
7985 if (m
== MATCH_ERROR
)
7991 gfc_error ("Binding attributes already specify passing,"
7992 " illegal NOPASS at %C");
7996 found_passing
= true;
8001 /* PASS possibly including argument. */
8002 m
= gfc_match (" pass");
8003 if (m
== MATCH_ERROR
)
8007 char arg
[GFC_MAX_SYMBOL_LEN
+ 1];
8011 gfc_error ("Binding attributes already specify passing,"
8012 " illegal PASS at %C");
8016 m
= gfc_match (" ( %n )", arg
);
8017 if (m
== MATCH_ERROR
)
8020 ba
->pass_arg
= gfc_get_string (arg
);
8021 gcc_assert ((m
== MATCH_YES
) == (ba
->pass_arg
!= NULL
));
8023 found_passing
= true;
8031 m
= gfc_match (" pointer");
8032 if (m
== MATCH_ERROR
)
8038 gfc_error ("Duplicate POINTER attribute at %C");
8048 /* NON_OVERRIDABLE flag. */
8049 m
= gfc_match (" non_overridable");
8050 if (m
== MATCH_ERROR
)
8054 if (ba
->non_overridable
)
8056 gfc_error ("Duplicate NON_OVERRIDABLE at %C");
8060 ba
->non_overridable
= 1;
8064 /* DEFERRED flag. */
8065 m
= gfc_match (" deferred");
8066 if (m
== MATCH_ERROR
)
8072 gfc_error ("Duplicate DEFERRED at %C");
8083 /* Nothing matching found. */
8085 gfc_error ("Expected access-specifier at %C");
8087 gfc_error ("Expected binding attribute at %C");
8090 while (gfc_match_char (',') == MATCH_YES
);
8092 /* NON_OVERRIDABLE and DEFERRED exclude themselves. */
8093 if (ba
->non_overridable
&& ba
->deferred
)
8095 gfc_error ("NON_OVERRIDABLE and DEFERRED can't both appear at %C");
8102 if (ba
->access
== ACCESS_UNKNOWN
)
8103 ba
->access
= gfc_typebound_default_access
;
8105 if (ppc
&& !seen_ptr
)
8107 gfc_error ("POINTER attribute is required for procedure pointer component"
8119 /* Match a PROCEDURE specific binding inside a derived type. */
8122 match_procedure_in_type (void)
8124 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
8125 char target_buf
[GFC_MAX_SYMBOL_LEN
+ 1];
8126 char* target
= NULL
, *ifc
= NULL
;
8127 gfc_typebound_proc tb
;
8136 /* Check current state. */
8137 gcc_assert (gfc_state_stack
->state
== COMP_DERIVED_CONTAINS
);
8138 block
= gfc_state_stack
->previous
->sym
;
8141 /* Try to match PROCEDURE(interface). */
8142 if (gfc_match (" (") == MATCH_YES
)
8144 m
= gfc_match_name (target_buf
);
8145 if (m
== MATCH_ERROR
)
8149 gfc_error ("Interface-name expected after '(' at %C");
8153 if (gfc_match (" )") != MATCH_YES
)
8155 gfc_error ("')' expected at %C");
8162 /* Construct the data structure. */
8163 memset (&tb
, 0, sizeof (tb
));
8164 tb
.where
= gfc_current_locus
;
8166 /* Match binding attributes. */
8167 m
= match_binding_attributes (&tb
, false, false);
8168 if (m
== MATCH_ERROR
)
8170 seen_attrs
= (m
== MATCH_YES
);
8172 /* Check that attribute DEFERRED is given if an interface is specified. */
8173 if (tb
.deferred
&& !ifc
)
8175 gfc_error ("Interface must be specified for DEFERRED binding at %C");
8178 if (ifc
&& !tb
.deferred
)
8180 gfc_error ("PROCEDURE(interface) at %C should be declared DEFERRED");
8184 /* Match the colons. */
8185 m
= gfc_match (" ::");
8186 if (m
== MATCH_ERROR
)
8188 seen_colons
= (m
== MATCH_YES
);
8189 if (seen_attrs
&& !seen_colons
)
8191 gfc_error ("Expected '::' after binding-attributes at %C");
8195 /* Match the binding names. */
8198 m
= gfc_match_name (name
);
8199 if (m
== MATCH_ERROR
)
8203 gfc_error ("Expected binding name at %C");
8207 if (num
>1 && !gfc_notify_std (GFC_STD_F2008
, "PROCEDURE list at %C"))
8210 /* Try to match the '=> target', if it's there. */
8212 m
= gfc_match (" =>");
8213 if (m
== MATCH_ERROR
)
8219 gfc_error ("'=> target' is invalid for DEFERRED binding at %C");
8225 gfc_error ("'::' needed in PROCEDURE binding with explicit target"
8230 m
= gfc_match_name (target_buf
);
8231 if (m
== MATCH_ERROR
)
8235 gfc_error ("Expected binding target after '=>' at %C");
8238 target
= target_buf
;
8241 /* If no target was found, it has the same name as the binding. */
8245 /* Get the namespace to insert the symbols into. */
8246 ns
= block
->f2k_derived
;
8249 /* If the binding is DEFERRED, check that the containing type is ABSTRACT. */
8250 if (tb
.deferred
&& !block
->attr
.abstract
)
8252 gfc_error ("Type '%s' containing DEFERRED binding at %C "
8253 "is not ABSTRACT", block
->name
);
8257 /* See if we already have a binding with this name in the symtree which
8258 would be an error. If a GENERIC already targeted this binding, it may
8259 be already there but then typebound is still NULL. */
8260 stree
= gfc_find_symtree (ns
->tb_sym_root
, name
);
8261 if (stree
&& stree
->n
.tb
)
8263 gfc_error ("There is already a procedure with binding name '%s' for "
8264 "the derived type '%s' at %C", name
, block
->name
);
8268 /* Insert it and set attributes. */
8272 stree
= gfc_new_symtree (&ns
->tb_sym_root
, name
);
8275 stree
->n
.tb
= gfc_get_typebound_proc (&tb
);
8277 if (gfc_get_sym_tree (target
, gfc_current_ns
, &stree
->n
.tb
->u
.specific
,
8280 gfc_set_sym_referenced (stree
->n
.tb
->u
.specific
->n
.sym
);
8282 if (gfc_match_eos () == MATCH_YES
)
8284 if (gfc_match_char (',') != MATCH_YES
)
8289 gfc_error ("Syntax error in PROCEDURE statement at %C");
8294 /* Match a GENERIC procedure binding inside a derived type. */
8297 gfc_match_generic (void)
8299 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
8300 char bind_name
[GFC_MAX_SYMBOL_LEN
+ 16]; /* Allow space for OPERATOR(...). */
8302 gfc_typebound_proc tbattr
; /* Used for match_binding_attributes. */
8303 gfc_typebound_proc
* tb
;
8305 interface_type op_type
;
8306 gfc_intrinsic_op op
;
8309 /* Check current state. */
8310 if (gfc_current_state () == COMP_DERIVED
)
8312 gfc_error ("GENERIC at %C must be inside a derived-type CONTAINS");
8315 if (gfc_current_state () != COMP_DERIVED_CONTAINS
)
8317 block
= gfc_state_stack
->previous
->sym
;
8318 ns
= block
->f2k_derived
;
8319 gcc_assert (block
&& ns
);
8321 memset (&tbattr
, 0, sizeof (tbattr
));
8322 tbattr
.where
= gfc_current_locus
;
8324 /* See if we get an access-specifier. */
8325 m
= match_binding_attributes (&tbattr
, true, false);
8326 if (m
== MATCH_ERROR
)
8329 /* Now the colons, those are required. */
8330 if (gfc_match (" ::") != MATCH_YES
)
8332 gfc_error ("Expected '::' at %C");
8336 /* Match the binding name; depending on type (operator / generic) format
8337 it for future error messages into bind_name. */
8339 m
= gfc_match_generic_spec (&op_type
, name
, &op
);
8340 if (m
== MATCH_ERROR
)
8344 gfc_error ("Expected generic name or operator descriptor at %C");
8350 case INTERFACE_GENERIC
:
8351 snprintf (bind_name
, sizeof (bind_name
), "%s", name
);
8354 case INTERFACE_USER_OP
:
8355 snprintf (bind_name
, sizeof (bind_name
), "OPERATOR(.%s.)", name
);
8358 case INTERFACE_INTRINSIC_OP
:
8359 snprintf (bind_name
, sizeof (bind_name
), "OPERATOR(%s)",
8360 gfc_op2string (op
));
8367 /* Match the required =>. */
8368 if (gfc_match (" =>") != MATCH_YES
)
8370 gfc_error ("Expected '=>' at %C");
8374 /* Try to find existing GENERIC binding with this name / for this operator;
8375 if there is something, check that it is another GENERIC and then extend
8376 it rather than building a new node. Otherwise, create it and put it
8377 at the right position. */
8381 case INTERFACE_USER_OP
:
8382 case INTERFACE_GENERIC
:
8384 const bool is_op
= (op_type
== INTERFACE_USER_OP
);
8387 st
= gfc_find_symtree (is_op
? ns
->tb_uop_root
: ns
->tb_sym_root
, name
);
8399 case INTERFACE_INTRINSIC_OP
:
8409 if (!tb
->is_generic
)
8411 gcc_assert (op_type
== INTERFACE_GENERIC
);
8412 gfc_error ("There's already a non-generic procedure with binding name"
8413 " '%s' for the derived type '%s' at %C",
8414 bind_name
, block
->name
);
8418 if (tb
->access
!= tbattr
.access
)
8420 gfc_error ("Binding at %C must have the same access as already"
8421 " defined binding '%s'", bind_name
);
8427 tb
= gfc_get_typebound_proc (NULL
);
8428 tb
->where
= gfc_current_locus
;
8429 tb
->access
= tbattr
.access
;
8431 tb
->u
.generic
= NULL
;
8435 case INTERFACE_GENERIC
:
8436 case INTERFACE_USER_OP
:
8438 const bool is_op
= (op_type
== INTERFACE_USER_OP
);
8441 st
= gfc_new_symtree (is_op
? &ns
->tb_uop_root
: &ns
->tb_sym_root
,
8449 case INTERFACE_INTRINSIC_OP
:
8458 /* Now, match all following names as specific targets. */
8461 gfc_symtree
* target_st
;
8462 gfc_tbp_generic
* target
;
8464 m
= gfc_match_name (name
);
8465 if (m
== MATCH_ERROR
)
8469 gfc_error ("Expected specific binding name at %C");
8473 target_st
= gfc_get_tbp_symtree (&ns
->tb_sym_root
, name
);
8475 /* See if this is a duplicate specification. */
8476 for (target
= tb
->u
.generic
; target
; target
= target
->next
)
8477 if (target_st
== target
->specific_st
)
8479 gfc_error ("'%s' already defined as specific binding for the"
8480 " generic '%s' at %C", name
, bind_name
);
8484 target
= gfc_get_tbp_generic ();
8485 target
->specific_st
= target_st
;
8486 target
->specific
= NULL
;
8487 target
->next
= tb
->u
.generic
;
8488 target
->is_operator
= ((op_type
== INTERFACE_USER_OP
)
8489 || (op_type
== INTERFACE_INTRINSIC_OP
));
8490 tb
->u
.generic
= target
;
8492 while (gfc_match (" ,") == MATCH_YES
);
8494 /* Here should be the end. */
8495 if (gfc_match_eos () != MATCH_YES
)
8497 gfc_error ("Junk after GENERIC binding at %C");
8508 /* Match a FINAL declaration inside a derived type. */
8511 gfc_match_final_decl (void)
8513 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
8516 gfc_namespace
* module_ns
;
8520 if (gfc_current_form
== FORM_FREE
)
8522 char c
= gfc_peek_ascii_char ();
8523 if (!gfc_is_whitespace (c
) && c
!= ':')
8527 if (gfc_state_stack
->state
!= COMP_DERIVED_CONTAINS
)
8529 if (gfc_current_form
== FORM_FIXED
)
8532 gfc_error ("FINAL declaration at %C must be inside a derived type "
8533 "CONTAINS section");
8537 block
= gfc_state_stack
->previous
->sym
;
8540 if (!gfc_state_stack
->previous
|| !gfc_state_stack
->previous
->previous
8541 || gfc_state_stack
->previous
->previous
->state
!= COMP_MODULE
)
8543 gfc_error ("Derived type declaration with FINAL at %C must be in the"
8544 " specification part of a MODULE");
8548 module_ns
= gfc_current_ns
;
8549 gcc_assert (module_ns
);
8550 gcc_assert (module_ns
->proc_name
->attr
.flavor
== FL_MODULE
);
8552 /* Match optional ::, don't care about MATCH_YES or MATCH_NO. */
8553 if (gfc_match (" ::") == MATCH_ERROR
)
8556 /* Match the sequence of procedure names. */
8563 if (first
&& gfc_match_eos () == MATCH_YES
)
8565 gfc_error ("Empty FINAL at %C");
8569 m
= gfc_match_name (name
);
8572 gfc_error ("Expected module procedure name at %C");
8575 else if (m
!= MATCH_YES
)
8578 if (gfc_match_eos () == MATCH_YES
)
8580 if (!last
&& gfc_match_char (',') != MATCH_YES
)
8582 gfc_error ("Expected ',' at %C");
8586 if (gfc_get_symbol (name
, module_ns
, &sym
))
8588 gfc_error ("Unknown procedure name \"%s\" at %C", name
);
8592 /* Mark the symbol as module procedure. */
8593 if (sym
->attr
.proc
!= PROC_MODULE
8594 && !gfc_add_procedure (&sym
->attr
, PROC_MODULE
, sym
->name
, NULL
))
8597 /* Check if we already have this symbol in the list, this is an error. */
8598 for (f
= block
->f2k_derived
->finalizers
; f
; f
= f
->next
)
8599 if (f
->proc_sym
== sym
)
8601 gfc_error ("'%s' at %C is already defined as FINAL procedure!",
8606 /* Add this symbol to the list of finalizers. */
8607 gcc_assert (block
->f2k_derived
);
8609 f
= XCNEW (gfc_finalizer
);
8611 f
->proc_tree
= NULL
;
8612 f
->where
= gfc_current_locus
;
8613 f
->next
= block
->f2k_derived
->finalizers
;
8614 block
->f2k_derived
->finalizers
= f
;
8624 const ext_attr_t ext_attr_list
[] = {
8625 { "dllimport", EXT_ATTR_DLLIMPORT
, "dllimport" },
8626 { "dllexport", EXT_ATTR_DLLEXPORT
, "dllexport" },
8627 { "cdecl", EXT_ATTR_CDECL
, "cdecl" },
8628 { "stdcall", EXT_ATTR_STDCALL
, "stdcall" },
8629 { "fastcall", EXT_ATTR_FASTCALL
, "fastcall" },
8630 { "no_arg_check", EXT_ATTR_NO_ARG_CHECK
, NULL
},
8631 { NULL
, EXT_ATTR_LAST
, NULL
}
8634 /* Match a !GCC$ ATTRIBUTES statement of the form:
8635 !GCC$ ATTRIBUTES attribute-list :: var-name [, var-name] ...
8636 When we come here, we have already matched the !GCC$ ATTRIBUTES string.
8638 TODO: We should support all GCC attributes using the same syntax for
8639 the attribute list, i.e. the list in C
8640 __attributes(( attribute-list ))
8642 !GCC$ ATTRIBUTES attribute-list ::
8643 Cf. c-parser.c's c_parser_attributes; the data can then directly be
8646 As there is absolutely no risk of confusion, we should never return
8649 gfc_match_gcc_attributes (void)
8651 symbol_attribute attr
;
8652 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
8657 gfc_clear_attr (&attr
);
8662 if (gfc_match_name (name
) != MATCH_YES
)
8665 for (id
= 0; id
< EXT_ATTR_LAST
; id
++)
8666 if (strcmp (name
, ext_attr_list
[id
].name
) == 0)
8669 if (id
== EXT_ATTR_LAST
)
8671 gfc_error ("Unknown attribute in !GCC$ ATTRIBUTES statement at %C");
8675 if (!gfc_add_ext_attribute (&attr
, (ext_attr_id_t
)id
, &gfc_current_locus
))
8678 gfc_gobble_whitespace ();
8679 ch
= gfc_next_ascii_char ();
8682 /* This is the successful exit condition for the loop. */
8683 if (gfc_next_ascii_char () == ':')
8693 if (gfc_match_eos () == MATCH_YES
)
8698 m
= gfc_match_name (name
);
8702 if (find_special (name
, &sym
, true))
8705 sym
->attr
.ext_attr
|= attr
.ext_attr
;
8707 if (gfc_match_eos () == MATCH_YES
)
8710 if (gfc_match_char (',') != MATCH_YES
)
8717 gfc_error ("Syntax error in !GCC$ ATTRIBUTES statement at %C");