1 /* Declaration statement matcher
2 Copyright (C) 2002, 2004, 2005, 2006 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 2, 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 COPYING. If not, write to the Free
19 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
30 /* This flag is set if an old-style length selector is matched
31 during a type-declaration statement. */
33 static int old_char_selector
;
35 /* When variables acquire types and attributes from a declaration
36 statement, they get them from the following static variables. The
37 first part of a declaration sets these variables and the second
38 part copies these into symbol structures. */
40 static gfc_typespec current_ts
;
42 static symbol_attribute current_attr
;
43 static gfc_array_spec
*current_as
;
44 static int colon_seen
;
46 /* Initializer of the previous enumerator. */
48 static gfc_expr
*last_initializer
;
50 /* History of all the enumerators is maintained, so that
51 kind values of all the enumerators could be updated depending
52 upon the maximum initialized value. */
54 typedef struct enumerator_history
57 gfc_expr
*initializer
;
58 struct enumerator_history
*next
;
62 /* Header of enum history chain. */
64 static enumerator_history
*enum_history
= NULL
;
66 /* Pointer of enum history node containing largest initializer. */
68 static enumerator_history
*max_enum
= NULL
;
70 /* gfc_new_block points to the symbol of a newly matched block. */
72 gfc_symbol
*gfc_new_block
;
75 /********************* DATA statement subroutines *********************/
77 /* Free a gfc_data_variable structure and everything beneath it. */
80 free_variable (gfc_data_variable
* p
)
87 gfc_free_expr (p
->expr
);
88 gfc_free_iterator (&p
->iter
, 0);
89 free_variable (p
->list
);
96 /* Free a gfc_data_value structure and everything beneath it. */
99 free_value (gfc_data_value
* p
)
106 gfc_free_expr (p
->expr
);
112 /* Free a list of gfc_data structures. */
115 gfc_free_data (gfc_data
* p
)
123 free_variable (p
->var
);
124 free_value (p
->value
);
131 /* Free all data in a namespace. */
133 gfc_free_data_all (gfc_namespace
* ns
)
146 static match
var_element (gfc_data_variable
*);
148 /* Match a list of variables terminated by an iterator and a right
152 var_list (gfc_data_variable
* parent
)
154 gfc_data_variable
*tail
, var
;
157 m
= var_element (&var
);
158 if (m
== MATCH_ERROR
)
163 tail
= gfc_get_data_variable ();
170 if (gfc_match_char (',') != MATCH_YES
)
173 m
= gfc_match_iterator (&parent
->iter
, 1);
176 if (m
== MATCH_ERROR
)
179 m
= var_element (&var
);
180 if (m
== MATCH_ERROR
)
185 tail
->next
= gfc_get_data_variable ();
191 if (gfc_match_char (')') != MATCH_YES
)
196 gfc_syntax_error (ST_DATA
);
201 /* Match a single element in a data variable list, which can be a
202 variable-iterator list. */
205 var_element (gfc_data_variable
* new)
210 memset (new, 0, sizeof (gfc_data_variable
));
212 if (gfc_match_char ('(') == MATCH_YES
)
213 return var_list (new);
215 m
= gfc_match_variable (&new->expr
, 0);
219 sym
= new->expr
->symtree
->n
.sym
;
221 if (!sym
->attr
.function
&& gfc_current_ns
->parent
&& gfc_current_ns
->parent
== sym
->ns
)
223 gfc_error ("Host associated variable '%s' may not be in the DATA "
224 "statement at %C", sym
->name
);
228 if (gfc_current_state () != COMP_BLOCK_DATA
229 && sym
->attr
.in_common
230 && gfc_notify_std (GFC_STD_GNU
, "Extension: initialization of "
231 "common block variable '%s' in DATA statement at %C",
232 sym
->name
) == FAILURE
)
235 if (gfc_add_data (&sym
->attr
, sym
->name
, &new->expr
->where
) == FAILURE
)
242 /* Match the top-level list of data variables. */
245 top_var_list (gfc_data
* d
)
247 gfc_data_variable var
, *tail
, *new;
254 m
= var_element (&var
);
257 if (m
== MATCH_ERROR
)
260 new = gfc_get_data_variable ();
270 if (gfc_match_char ('/') == MATCH_YES
)
272 if (gfc_match_char (',') != MATCH_YES
)
279 gfc_syntax_error (ST_DATA
);
280 gfc_free_data_all (gfc_current_ns
);
286 match_data_constant (gfc_expr
** result
)
288 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
293 m
= gfc_match_literal_constant (&expr
, 1);
300 if (m
== MATCH_ERROR
)
303 m
= gfc_match_null (result
);
307 m
= gfc_match_name (name
);
311 if (gfc_find_symbol (name
, NULL
, 1, &sym
))
315 || (sym
->attr
.flavor
!= FL_PARAMETER
&& sym
->attr
.flavor
!= FL_DERIVED
))
317 gfc_error ("Symbol '%s' must be a PARAMETER in DATA statement at %C",
321 else if (sym
->attr
.flavor
== FL_DERIVED
)
322 return gfc_match_structure_constructor (sym
, result
);
324 *result
= gfc_copy_expr (sym
->value
);
329 /* Match a list of values in a DATA statement. The leading '/' has
330 already been seen at this point. */
333 top_val_list (gfc_data
* data
)
335 gfc_data_value
*new, *tail
;
344 m
= match_data_constant (&expr
);
347 if (m
== MATCH_ERROR
)
350 new = gfc_get_data_value ();
359 if (expr
->ts
.type
!= BT_INTEGER
|| gfc_match_char ('*') != MATCH_YES
)
367 msg
= gfc_extract_int (expr
, &tmp
);
368 gfc_free_expr (expr
);
376 m
= match_data_constant (&tail
->expr
);
379 if (m
== MATCH_ERROR
)
383 if (gfc_match_char ('/') == MATCH_YES
)
385 if (gfc_match_char (',') == MATCH_NO
)
392 gfc_syntax_error (ST_DATA
);
393 gfc_free_data_all (gfc_current_ns
);
398 /* Matches an old style initialization. */
401 match_old_style_init (const char *name
)
408 /* Set up data structure to hold initializers. */
409 gfc_find_sym_tree (name
, NULL
, 0, &st
);
412 newdata
= gfc_get_data ();
413 newdata
->var
= gfc_get_data_variable ();
414 newdata
->var
->expr
= gfc_get_variable_expr (st
);
415 newdata
->where
= gfc_current_locus
;
417 /* Match initial value list. This also eats the terminal
419 m
= top_val_list (newdata
);
428 gfc_error ("Initialization at %C is not allowed in a PURE procedure");
433 /* Mark the variable as having appeared in a data statement. */
434 if (gfc_add_data (&sym
->attr
, sym
->name
, &sym
->declared_at
) == FAILURE
)
440 /* Chain in namespace list of DATA initializers. */
441 newdata
->next
= gfc_current_ns
->data
;
442 gfc_current_ns
->data
= newdata
;
447 /* Match the stuff following a DATA statement. If ERROR_FLAG is set,
448 we are matching a DATA statement and are therefore issuing an error
449 if we encounter something unexpected, if not, we're trying to match
450 an old-style initialization expression of the form INTEGER I /2/. */
453 gfc_match_data (void)
460 new = gfc_get_data ();
461 new->where
= gfc_current_locus
;
463 m
= top_var_list (new);
467 m
= top_val_list (new);
471 new->next
= gfc_current_ns
->data
;
472 gfc_current_ns
->data
= new;
474 if (gfc_match_eos () == MATCH_YES
)
477 gfc_match_char (','); /* Optional comma */
482 gfc_error ("DATA statement at %C is not allowed in a PURE procedure");
494 /************************ Declaration statements *********************/
496 /* Match an intent specification. Since this can only happen after an
497 INTENT word, a legal intent-spec must follow. */
500 match_intent_spec (void)
503 if (gfc_match (" ( in out )") == MATCH_YES
)
505 if (gfc_match (" ( in )") == MATCH_YES
)
507 if (gfc_match (" ( out )") == MATCH_YES
)
510 gfc_error ("Bad INTENT specification at %C");
511 return INTENT_UNKNOWN
;
515 /* Matches a character length specification, which is either a
516 specification expression or a '*'. */
519 char_len_param_value (gfc_expr
** expr
)
522 if (gfc_match_char ('*') == MATCH_YES
)
528 return gfc_match_expr (expr
);
532 /* A character length is a '*' followed by a literal integer or a
533 char_len_param_value in parenthesis. */
536 match_char_length (gfc_expr
** expr
)
541 m
= gfc_match_char ('*');
545 m
= gfc_match_small_literal_int (&length
, NULL
);
546 if (m
== MATCH_ERROR
)
551 *expr
= gfc_int_expr (length
);
555 if (gfc_match_char ('(') == MATCH_NO
)
558 m
= char_len_param_value (expr
);
559 if (m
== MATCH_ERROR
)
564 if (gfc_match_char (')') == MATCH_NO
)
566 gfc_free_expr (*expr
);
574 gfc_error ("Syntax error in character length specification at %C");
579 /* Special subroutine for finding a symbol. Check if the name is found
580 in the current name space. If not, and we're compiling a function or
581 subroutine and the parent compilation unit is an interface, then check
582 to see if the name we've been given is the name of the interface
583 (located in another namespace). */
586 find_special (const char *name
, gfc_symbol
** result
)
591 i
= gfc_get_symbol (name
, NULL
, result
);
595 if (gfc_current_state () != COMP_SUBROUTINE
596 && gfc_current_state () != COMP_FUNCTION
)
599 s
= gfc_state_stack
->previous
;
603 if (s
->state
!= COMP_INTERFACE
)
606 goto end
; /* Nameless interface */
608 if (strcmp (name
, s
->sym
->name
) == 0)
619 /* Special subroutine for getting a symbol node associated with a
620 procedure name, used in SUBROUTINE and FUNCTION statements. The
621 symbol is created in the parent using with symtree node in the
622 child unit pointing to the symbol. If the current namespace has no
623 parent, then the symbol is just created in the current unit. */
626 get_proc_name (const char *name
, gfc_symbol
** result
,
627 bool module_fcn_entry
)
633 /* Module functions have to be left in their own namespace because
634 they have potentially (almost certainly!) already been referenced.
635 In this sense, they are rather like external functions. This is
636 fixed up in resolve.c(resolve_entries), where the symbol name-
637 space is set to point to the master function, so that the fake
638 result mechanism can work. */
639 if (module_fcn_entry
)
640 rc
= gfc_get_symbol (name
, NULL
, result
);
642 rc
= gfc_get_symbol (name
, gfc_current_ns
->parent
, result
);
645 gfc_current_ns
->refs
++;
647 if (sym
&& !sym
->new && gfc_current_state () != COMP_INTERFACE
)
649 /* Trap another encompassed procedure with the same name. All
650 these conditions are necessary to avoid picking up an entry
651 whose name clashes with that of the encompassing procedure;
652 this is handled using gsymbols to register unique,globally
654 if (sym
->attr
.flavor
!= 0
655 && sym
->attr
.proc
!= 0
656 && (sym
->attr
.subroutine
|| sym
->attr
.function
)
657 && sym
->attr
.if_source
!= IFSRC_UNKNOWN
)
658 gfc_error_now ("Procedure '%s' at %C is already defined at %L",
659 name
, &sym
->declared_at
);
661 /* Trap declarations of attributes in encompassing scope. The
662 signature for this is that ts.kind is set. Legitimate
663 references only set ts.type. */
664 if (sym
->ts
.kind
!= 0
665 && !sym
->attr
.implicit_type
666 && sym
->attr
.proc
== 0
667 && gfc_current_ns
->parent
!= NULL
668 && sym
->attr
.access
== 0
669 && !module_fcn_entry
)
670 gfc_error_now ("Procedure '%s' at %C has an explicit interface"
671 " and must not have attributes declared at %L",
672 name
, &sym
->declared_at
);
675 if (gfc_current_ns
->parent
== NULL
|| *result
== NULL
)
678 /* Module function entries will already have a symtree in
679 the current namespace but will need one at module level. */
680 if (module_fcn_entry
)
681 st
= gfc_new_symtree (&gfc_current_ns
->parent
->sym_root
, name
);
683 st
= gfc_new_symtree (&gfc_current_ns
->sym_root
, name
);
688 /* See if the procedure should be a module procedure */
690 if (((sym
->ns
->proc_name
!= NULL
691 && sym
->ns
->proc_name
->attr
.flavor
== FL_MODULE
692 && sym
->attr
.proc
!= PROC_MODULE
) || module_fcn_entry
)
693 && gfc_add_procedure (&sym
->attr
, PROC_MODULE
,
694 sym
->name
, NULL
) == FAILURE
)
701 /* Function called by variable_decl() that adds a name to the symbol
705 build_sym (const char *name
, gfc_charlen
* cl
,
706 gfc_array_spec
** as
, locus
* var_locus
)
708 symbol_attribute attr
;
711 /* if (find_special (name, &sym)) */
712 if (gfc_get_symbol (name
, NULL
, &sym
))
715 /* Start updating the symbol table. Add basic type attribute
717 if (current_ts
.type
!= BT_UNKNOWN
718 &&(sym
->attr
.implicit_type
== 0
719 || !gfc_compare_types (&sym
->ts
, ¤t_ts
))
720 && gfc_add_type (sym
, ¤t_ts
, var_locus
) == FAILURE
)
723 if (sym
->ts
.type
== BT_CHARACTER
)
726 /* Add dimension attribute if present. */
727 if (gfc_set_array_spec (sym
, *as
, var_locus
) == FAILURE
)
731 /* Add attribute to symbol. The copy is so that we can reset the
732 dimension attribute. */
736 if (gfc_copy_attr (&sym
->attr
, &attr
, var_locus
) == FAILURE
)
742 /* Set character constant to the given length. The constant will be padded or
746 gfc_set_constant_character_len (int len
, gfc_expr
* expr
)
751 gcc_assert (expr
->expr_type
== EXPR_CONSTANT
);
752 gcc_assert (expr
->ts
.type
== BT_CHARACTER
&& expr
->ts
.kind
== 1);
754 slen
= expr
->value
.character
.length
;
757 s
= gfc_getmem (len
+ 1);
758 memcpy (s
, expr
->value
.character
.string
, MIN (len
, slen
));
760 memset (&s
[slen
], ' ', len
- slen
);
762 gfc_free (expr
->value
.character
.string
);
763 expr
->value
.character
.string
= s
;
764 expr
->value
.character
.length
= len
;
769 /* Function to create and update the enumerator history
770 using the information passed as arguments.
771 Pointer "max_enum" is also updated, to point to
772 enum history node containing largest initializer.
774 SYM points to the symbol node of enumerator.
775 INIT points to its enumerator value. */
778 create_enum_history(gfc_symbol
*sym
, gfc_expr
*init
)
780 enumerator_history
*new_enum_history
;
781 gcc_assert (sym
!= NULL
&& init
!= NULL
);
783 new_enum_history
= gfc_getmem (sizeof (enumerator_history
));
785 new_enum_history
->sym
= sym
;
786 new_enum_history
->initializer
= init
;
787 new_enum_history
->next
= NULL
;
789 if (enum_history
== NULL
)
791 enum_history
= new_enum_history
;
792 max_enum
= enum_history
;
796 new_enum_history
->next
= enum_history
;
797 enum_history
= new_enum_history
;
799 if (mpz_cmp (max_enum
->initializer
->value
.integer
,
800 new_enum_history
->initializer
->value
.integer
) < 0)
801 max_enum
= new_enum_history
;
806 /* Function to free enum kind history. */
809 gfc_free_enum_history(void)
811 enumerator_history
*current
= enum_history
;
812 enumerator_history
*next
;
814 while (current
!= NULL
)
816 next
= current
->next
;
825 /* Function called by variable_decl() that adds an initialization
826 expression to a symbol. */
829 add_init_expr_to_sym (const char *name
, gfc_expr
** initp
,
832 symbol_attribute attr
;
837 if (find_special (name
, &sym
))
842 /* If this symbol is confirming an implicit parameter type,
843 then an initialization expression is not allowed. */
844 if (attr
.flavor
== FL_PARAMETER
845 && sym
->value
!= NULL
848 gfc_error ("Initializer not allowed for PARAMETER '%s' at %C",
857 gfc_error ("Initializer not allowed for COMMON variable '%s' at %C",
864 /* An initializer is required for PARAMETER declarations. */
865 if (attr
.flavor
== FL_PARAMETER
)
867 gfc_error ("PARAMETER at %L is missing an initializer", var_locus
);
873 /* If a variable appears in a DATA block, it cannot have an
878 ("Variable '%s' at %C with an initializer already appears "
879 "in a DATA statement", sym
->name
);
883 /* Check if the assignment can happen. This has to be put off
884 until later for a derived type variable. */
885 if (sym
->ts
.type
!= BT_DERIVED
&& init
->ts
.type
!= BT_DERIVED
886 && gfc_check_assign_symbol (sym
, init
) == FAILURE
)
889 if (sym
->ts
.type
== BT_CHARACTER
&& sym
->ts
.cl
)
891 /* Update symbol character length according initializer. */
892 if (sym
->ts
.cl
->length
== NULL
)
894 /* If there are multiple CHARACTER variables declared on
895 the same line, we don't want them to share the same
897 sym
->ts
.cl
= gfc_get_charlen ();
898 sym
->ts
.cl
->next
= gfc_current_ns
->cl_list
;
899 gfc_current_ns
->cl_list
= sym
->ts
.cl
;
901 if (sym
->attr
.flavor
== FL_PARAMETER
902 && init
->expr_type
== EXPR_ARRAY
)
903 sym
->ts
.cl
->length
= gfc_copy_expr (init
->ts
.cl
->length
);
905 /* Update initializer character length according symbol. */
906 else if (sym
->ts
.cl
->length
->expr_type
== EXPR_CONSTANT
)
908 int len
= mpz_get_si (sym
->ts
.cl
->length
->value
.integer
);
911 if (init
->expr_type
== EXPR_CONSTANT
)
912 gfc_set_constant_character_len (len
, init
);
913 else if (init
->expr_type
== EXPR_ARRAY
)
915 gfc_free_expr (init
->ts
.cl
->length
);
916 init
->ts
.cl
->length
= gfc_copy_expr (sym
->ts
.cl
->length
);
917 for (p
= init
->value
.constructor
; p
; p
= p
->next
)
918 gfc_set_constant_character_len (len
, p
->expr
);
923 /* Add initializer. Make sure we keep the ranks sane. */
924 if (sym
->attr
.dimension
&& init
->rank
== 0)
925 init
->rank
= sym
->as
->rank
;
931 /* Maintain enumerator history. */
932 if (gfc_current_state () == COMP_ENUM
)
933 create_enum_history (sym
, init
);
939 /* Function called by variable_decl() that adds a name to a structure
943 build_struct (const char *name
, gfc_charlen
* cl
, gfc_expr
** init
,
944 gfc_array_spec
** as
)
948 /* If the current symbol is of the same derived type that we're
949 constructing, it must have the pointer attribute. */
950 if (current_ts
.type
== BT_DERIVED
951 && current_ts
.derived
== gfc_current_block ()
952 && current_attr
.pointer
== 0)
954 gfc_error ("Component at %C must have the POINTER attribute");
958 if (gfc_current_block ()->attr
.pointer
961 if ((*as
)->type
!= AS_DEFERRED
&& (*as
)->type
!= AS_EXPLICIT
)
963 gfc_error ("Array component of structure at %C must have explicit "
964 "or deferred shape");
969 if (gfc_add_component (gfc_current_block (), name
, &c
) == FAILURE
)
974 gfc_set_component_attr (c
, ¤t_attr
);
976 c
->initializer
= *init
;
984 /* Check array components. */
989 gfc_error ("Allocatable component at %C must be an array");
998 if (c
->as
->type
!= AS_DEFERRED
)
1000 gfc_error ("Pointer array component of structure at %C must have a "
1005 else if (c
->allocatable
)
1007 if (c
->as
->type
!= AS_DEFERRED
)
1009 gfc_error ("Allocatable component of structure at %C must have a "
1016 if (c
->as
->type
!= AS_EXPLICIT
)
1019 ("Array component of structure at %C must have an explicit "
1029 /* Match a 'NULL()', and possibly take care of some side effects. */
1032 gfc_match_null (gfc_expr
** result
)
1038 m
= gfc_match (" null ( )");
1042 /* The NULL symbol now has to be/become an intrinsic function. */
1043 if (gfc_get_symbol ("null", NULL
, &sym
))
1045 gfc_error ("NULL() initialization at %C is ambiguous");
1049 gfc_intrinsic_symbol (sym
);
1051 if (sym
->attr
.proc
!= PROC_INTRINSIC
1052 && (gfc_add_procedure (&sym
->attr
, PROC_INTRINSIC
,
1053 sym
->name
, NULL
) == FAILURE
1054 || gfc_add_function (&sym
->attr
, sym
->name
, NULL
) == FAILURE
))
1057 e
= gfc_get_expr ();
1058 e
->where
= gfc_current_locus
;
1059 e
->expr_type
= EXPR_NULL
;
1060 e
->ts
.type
= BT_UNKNOWN
;
1068 /* Match a variable name with an optional initializer. When this
1069 subroutine is called, a variable is expected to be parsed next.
1070 Depending on what is happening at the moment, updates either the
1071 symbol table or the current interface. */
1074 variable_decl (int elem
)
1076 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
1077 gfc_expr
*initializer
, *char_len
;
1079 gfc_array_spec
*cp_as
; /* Extra copy for Cray Pointees. */
1090 old_locus
= gfc_current_locus
;
1092 /* When we get here, we've just matched a list of attributes and
1093 maybe a type and a double colon. The next thing we expect to see
1094 is the name of the symbol. */
1095 m
= gfc_match_name (name
);
1099 var_locus
= gfc_current_locus
;
1101 /* Now we could see the optional array spec. or character length. */
1102 m
= gfc_match_array_spec (&as
);
1103 if (gfc_option
.flag_cray_pointer
&& m
== MATCH_YES
)
1104 cp_as
= gfc_copy_array_spec (as
);
1105 else if (m
== MATCH_ERROR
)
1109 as
= gfc_copy_array_spec (current_as
);
1110 else if (gfc_current_state () == COMP_ENUM
)
1112 gfc_error ("Enumerator cannot be array at %C");
1113 gfc_free_enum_history ();
1122 if (current_ts
.type
== BT_CHARACTER
)
1124 switch (match_char_length (&char_len
))
1127 cl
= gfc_get_charlen ();
1128 cl
->next
= gfc_current_ns
->cl_list
;
1129 gfc_current_ns
->cl_list
= cl
;
1131 cl
->length
= char_len
;
1134 /* Non-constant lengths need to be copied after the first
1137 if (elem
> 1 && current_ts
.cl
->length
1138 && current_ts
.cl
->length
->expr_type
!= EXPR_CONSTANT
)
1140 cl
= gfc_get_charlen ();
1141 cl
->next
= gfc_current_ns
->cl_list
;
1142 gfc_current_ns
->cl_list
= cl
;
1143 cl
->length
= gfc_copy_expr (current_ts
.cl
->length
);
1155 /* If this symbol has already shown up in a Cray Pointer declaration,
1156 then we want to set the type & bail out. */
1157 if (gfc_option
.flag_cray_pointer
)
1159 gfc_find_symbol (name
, gfc_current_ns
, 1, &sym
);
1160 if (sym
!= NULL
&& sym
->attr
.cray_pointee
)
1162 sym
->ts
.type
= current_ts
.type
;
1163 sym
->ts
.kind
= current_ts
.kind
;
1165 sym
->ts
.derived
= current_ts
.derived
;
1168 /* Check to see if we have an array specification. */
1171 if (sym
->as
!= NULL
)
1173 gfc_error ("Duplicate array spec for Cray pointee at %C");
1174 gfc_free_array_spec (cp_as
);
1180 if (gfc_set_array_spec (sym
, cp_as
, &var_locus
) == FAILURE
)
1181 gfc_internal_error ("Couldn't set pointee array spec.");
1183 /* Fix the array spec. */
1184 m
= gfc_mod_pointee_as (sym
->as
);
1185 if (m
== MATCH_ERROR
)
1193 gfc_free_array_spec (cp_as
);
1198 /* OK, we've successfully matched the declaration. Now put the
1199 symbol in the current namespace, because it might be used in the
1200 optional initialization expression for this symbol, e.g. this is
1203 integer, parameter :: i = huge(i)
1205 This is only true for parameters or variables of a basic type.
1206 For components of derived types, it is not true, so we don't
1207 create a symbol for those yet. If we fail to create the symbol,
1209 if (gfc_current_state () != COMP_DERIVED
1210 && build_sym (name
, cl
, &as
, &var_locus
) == FAILURE
)
1216 /* An interface body specifies all of the procedure's characteristics and these
1217 shall be consistent with those specified in the procedure definition, except
1218 that the interface may specify a procedure that is not pure if the procedure
1219 is defined to be pure(12.3.2). */
1220 if (current_ts
.type
== BT_DERIVED
1221 && gfc_current_ns
->proc_name
1222 && gfc_current_ns
->proc_name
->attr
.if_source
== IFSRC_IFBODY
1223 && current_ts
.derived
->ns
!= gfc_current_ns
1224 && !gfc_current_ns
->has_import_set
)
1226 gfc_error ("the type of '%s' at %C has not been declared within the "
1232 /* In functions that have a RESULT variable defined, the function
1233 name always refers to function calls. Therefore, the name is
1234 not allowed to appear in specification statements. */
1235 if (gfc_current_state () == COMP_FUNCTION
1236 && gfc_current_block () != NULL
1237 && gfc_current_block ()->result
!= NULL
1238 && gfc_current_block ()->result
!= gfc_current_block ()
1239 && strcmp (gfc_current_block ()->name
, name
) == 0)
1241 gfc_error ("Function name '%s' not allowed at %C", name
);
1246 /* We allow old-style initializations of the form
1247 integer i /2/, j(4) /3*3, 1/
1248 (if no colon has been seen). These are different from data
1249 statements in that initializers are only allowed to apply to the
1250 variable immediately preceding, i.e.
1252 is not allowed. Therefore we have to do some work manually, that
1253 could otherwise be left to the matchers for DATA statements. */
1255 if (!colon_seen
&& gfc_match (" /") == MATCH_YES
)
1257 if (gfc_notify_std (GFC_STD_GNU
, "Extension: Old-style "
1258 "initialization at %C") == FAILURE
)
1261 return match_old_style_init (name
);
1264 /* The double colon must be present in order to have initializers.
1265 Otherwise the statement is ambiguous with an assignment statement. */
1268 if (gfc_match (" =>") == MATCH_YES
)
1271 if (!current_attr
.pointer
)
1273 gfc_error ("Initialization at %C isn't for a pointer variable");
1278 m
= gfc_match_null (&initializer
);
1281 gfc_error ("Pointer initialization requires a NULL() at %C");
1285 if (gfc_pure (NULL
))
1288 ("Initialization of pointer at %C is not allowed in a "
1297 else if (gfc_match_char ('=') == MATCH_YES
)
1299 if (current_attr
.pointer
)
1302 ("Pointer initialization at %C requires '=>', not '='");
1307 m
= gfc_match_init_expr (&initializer
);
1310 gfc_error ("Expected an initialization expression at %C");
1314 if (current_attr
.flavor
!= FL_PARAMETER
&& gfc_pure (NULL
))
1317 ("Initialization of variable at %C is not allowed in a "
1327 if (initializer
!= NULL
&& current_attr
.allocatable
1328 && gfc_current_state () == COMP_DERIVED
)
1330 gfc_error ("Initialization of allocatable component at %C is not allowed");
1335 /* Check if we are parsing an enumeration and if the current enumerator
1336 variable has an initializer or not. If it does not have an
1337 initializer, the initialization value of the previous enumerator
1338 (stored in last_initializer) is incremented by 1 and is used to
1339 initialize the current enumerator. */
1340 if (gfc_current_state () == COMP_ENUM
)
1342 if (initializer
== NULL
)
1343 initializer
= gfc_enum_initializer (last_initializer
, old_locus
);
1345 if (initializer
== NULL
|| initializer
->ts
.type
!= BT_INTEGER
)
1347 gfc_error("ENUMERATOR %L not initialized with integer expression",
1350 gfc_free_enum_history ();
1354 /* Store this current initializer, for the next enumerator
1355 variable to be parsed. */
1356 last_initializer
= initializer
;
1359 /* Add the initializer. Note that it is fine if initializer is
1360 NULL here, because we sometimes also need to check if a
1361 declaration *must* have an initialization expression. */
1362 if (gfc_current_state () != COMP_DERIVED
)
1363 t
= add_init_expr_to_sym (name
, &initializer
, &var_locus
);
1366 if (current_ts
.type
== BT_DERIVED
1367 && !current_attr
.pointer
1369 initializer
= gfc_default_initializer (¤t_ts
);
1370 t
= build_struct (name
, cl
, &initializer
, &as
);
1373 m
= (t
== SUCCESS
) ? MATCH_YES
: MATCH_ERROR
;
1376 /* Free stuff up and return. */
1377 gfc_free_expr (initializer
);
1378 gfc_free_array_spec (as
);
1384 /* Match an extended-f77 kind specification. */
1387 gfc_match_old_kind_spec (gfc_typespec
* ts
)
1392 if (gfc_match_char ('*') != MATCH_YES
)
1395 m
= gfc_match_small_literal_int (&ts
->kind
, NULL
);
1399 original_kind
= ts
->kind
;
1401 /* Massage the kind numbers for complex types. */
1402 if (ts
->type
== BT_COMPLEX
)
1406 gfc_error ("Old-style type declaration %s*%d not supported at %C",
1407 gfc_basic_typename (ts
->type
), original_kind
);
1413 if (gfc_validate_kind (ts
->type
, ts
->kind
, true) < 0)
1415 gfc_error ("Old-style type declaration %s*%d not supported at %C",
1416 gfc_basic_typename (ts
->type
), original_kind
);
1420 if (gfc_notify_std (GFC_STD_GNU
, "Nonstandard type declaration %s*%d at %C",
1421 gfc_basic_typename (ts
->type
), original_kind
) == FAILURE
)
1428 /* Match a kind specification. Since kinds are generally optional, we
1429 usually return MATCH_NO if something goes wrong. If a "kind="
1430 string is found, then we know we have an error. */
1433 gfc_match_kind_spec (gfc_typespec
* ts
)
1443 where
= gfc_current_locus
;
1445 if (gfc_match_char ('(') == MATCH_NO
)
1448 /* Also gobbles optional text. */
1449 if (gfc_match (" kind = ") == MATCH_YES
)
1452 n
= gfc_match_init_expr (&e
);
1454 gfc_error ("Expected initialization expression at %C");
1460 gfc_error ("Expected scalar initialization expression at %C");
1465 msg
= gfc_extract_int (e
, &ts
->kind
);
1476 if (gfc_validate_kind (ts
->type
, ts
->kind
, true) < 0)
1478 gfc_error ("Kind %d not supported for type %s at %C", ts
->kind
,
1479 gfc_basic_typename (ts
->type
));
1485 if (gfc_match_char (')') != MATCH_YES
)
1487 gfc_error ("Missing right parenthesis at %C");
1495 gfc_current_locus
= where
;
1500 /* Match the various kind/length specifications in a CHARACTER
1501 declaration. We don't return MATCH_NO. */
1504 match_char_spec (gfc_typespec
* ts
)
1506 int i
, kind
, seen_length
;
1511 kind
= gfc_default_character_kind
;
1515 /* Try the old-style specification first. */
1516 old_char_selector
= 0;
1518 m
= match_char_length (&len
);
1522 old_char_selector
= 1;
1527 m
= gfc_match_char ('(');
1530 m
= MATCH_YES
; /* character without length is a single char */
1534 /* Try the weird case: ( KIND = <int> [ , LEN = <len-param> ] ) */
1535 if (gfc_match (" kind =") == MATCH_YES
)
1537 m
= gfc_match_small_int (&kind
);
1538 if (m
== MATCH_ERROR
)
1543 if (gfc_match (" , len =") == MATCH_NO
)
1546 m
= char_len_param_value (&len
);
1549 if (m
== MATCH_ERROR
)
1556 /* Try to match ( LEN = <len-param> ) or ( LEN = <len-param>, KIND = <int> ) */
1557 if (gfc_match (" len =") == MATCH_YES
)
1559 m
= char_len_param_value (&len
);
1562 if (m
== MATCH_ERROR
)
1566 if (gfc_match_char (')') == MATCH_YES
)
1569 if (gfc_match (" , kind =") != MATCH_YES
)
1572 gfc_match_small_int (&kind
);
1574 if (gfc_validate_kind (BT_CHARACTER
, kind
, true) < 0)
1576 gfc_error ("Kind %d is not a CHARACTER kind at %C", kind
);
1583 /* Try to match ( <len-param> ) or ( <len-param> , [ KIND = ] <int> ) */
1584 m
= char_len_param_value (&len
);
1587 if (m
== MATCH_ERROR
)
1591 m
= gfc_match_char (')');
1595 if (gfc_match_char (',') != MATCH_YES
)
1598 gfc_match (" kind ="); /* Gobble optional text */
1600 m
= gfc_match_small_int (&kind
);
1601 if (m
== MATCH_ERROR
)
1607 /* Require a right-paren at this point. */
1608 m
= gfc_match_char (')');
1613 gfc_error ("Syntax error in CHARACTER declaration at %C");
1617 if (m
== MATCH_YES
&& gfc_validate_kind (BT_CHARACTER
, kind
, true) < 0)
1619 gfc_error ("Kind %d is not a CHARACTER kind at %C", kind
);
1625 gfc_free_expr (len
);
1629 /* Do some final massaging of the length values. */
1630 cl
= gfc_get_charlen ();
1631 cl
->next
= gfc_current_ns
->cl_list
;
1632 gfc_current_ns
->cl_list
= cl
;
1634 if (seen_length
== 0)
1635 cl
->length
= gfc_int_expr (1);
1638 if (len
== NULL
|| gfc_extract_int (len
, &i
) != NULL
|| i
>= 0)
1642 gfc_free_expr (len
);
1643 cl
->length
= gfc_int_expr (0);
1654 /* Matches a type specification. If successful, sets the ts structure
1655 to the matched specification. This is necessary for FUNCTION and
1656 IMPLICIT statements.
1658 If implicit_flag is nonzero, then we don't check for the optional
1659 kind specification. Not doing so is needed for matching an IMPLICIT
1660 statement correctly. */
1663 match_type_spec (gfc_typespec
* ts
, int implicit_flag
)
1665 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
1672 if (gfc_match (" byte") == MATCH_YES
)
1674 if (gfc_notify_std(GFC_STD_GNU
, "Extension: BYTE type at %C")
1678 if (gfc_validate_kind (BT_INTEGER
, 1, true) < 0)
1680 gfc_error ("BYTE type used at %C "
1681 "is not available on the target machine");
1685 ts
->type
= BT_INTEGER
;
1690 if (gfc_match (" integer") == MATCH_YES
)
1692 ts
->type
= BT_INTEGER
;
1693 ts
->kind
= gfc_default_integer_kind
;
1697 if (gfc_match (" character") == MATCH_YES
)
1699 ts
->type
= BT_CHARACTER
;
1700 if (implicit_flag
== 0)
1701 return match_char_spec (ts
);
1706 if (gfc_match (" real") == MATCH_YES
)
1709 ts
->kind
= gfc_default_real_kind
;
1713 if (gfc_match (" double precision") == MATCH_YES
)
1716 ts
->kind
= gfc_default_double_kind
;
1720 if (gfc_match (" complex") == MATCH_YES
)
1722 ts
->type
= BT_COMPLEX
;
1723 ts
->kind
= gfc_default_complex_kind
;
1727 if (gfc_match (" double complex") == MATCH_YES
)
1729 if (gfc_notify_std (GFC_STD_GNU
, "DOUBLE COMPLEX at %C does not "
1730 "conform to the Fortran 95 standard") == FAILURE
)
1733 ts
->type
= BT_COMPLEX
;
1734 ts
->kind
= gfc_default_double_kind
;
1738 if (gfc_match (" logical") == MATCH_YES
)
1740 ts
->type
= BT_LOGICAL
;
1741 ts
->kind
= gfc_default_logical_kind
;
1745 m
= gfc_match (" type ( %n )", name
);
1749 /* Search for the name but allow the components to be defined later. */
1750 if (gfc_get_ha_symbol (name
, &sym
))
1752 gfc_error ("Type name '%s' at %C is ambiguous", name
);
1756 if (sym
->attr
.flavor
!= FL_DERIVED
1757 && gfc_add_flavor (&sym
->attr
, FL_DERIVED
, sym
->name
, NULL
) == FAILURE
)
1760 ts
->type
= BT_DERIVED
;
1767 /* For all types except double, derived and character, look for an
1768 optional kind specifier. MATCH_NO is actually OK at this point. */
1769 if (implicit_flag
== 1)
1772 if (gfc_current_form
== FORM_FREE
)
1774 c
= gfc_peek_char();
1775 if (!gfc_is_whitespace(c
) && c
!= '*' && c
!= '('
1776 && c
!= ':' && c
!= ',')
1780 m
= gfc_match_kind_spec (ts
);
1781 if (m
== MATCH_NO
&& ts
->type
!= BT_CHARACTER
)
1782 m
= gfc_match_old_kind_spec (ts
);
1785 m
= MATCH_YES
; /* No kind specifier found. */
1791 /* Match an IMPLICIT NONE statement. Actually, this statement is
1792 already matched in parse.c, or we would not end up here in the
1793 first place. So the only thing we need to check, is if there is
1794 trailing garbage. If not, the match is successful. */
1797 gfc_match_implicit_none (void)
1800 return (gfc_match_eos () == MATCH_YES
) ? MATCH_YES
: MATCH_NO
;
1804 /* Match the letter range(s) of an IMPLICIT statement. */
1807 match_implicit_range (void)
1809 int c
, c1
, c2
, inner
;
1812 cur_loc
= gfc_current_locus
;
1814 gfc_gobble_whitespace ();
1815 c
= gfc_next_char ();
1818 gfc_error ("Missing character range in IMPLICIT at %C");
1825 gfc_gobble_whitespace ();
1826 c1
= gfc_next_char ();
1830 gfc_gobble_whitespace ();
1831 c
= gfc_next_char ();
1836 inner
= 0; /* Fall through */
1843 gfc_gobble_whitespace ();
1844 c2
= gfc_next_char ();
1848 gfc_gobble_whitespace ();
1849 c
= gfc_next_char ();
1851 if ((c
!= ',') && (c
!= ')'))
1864 gfc_error ("Letters must be in alphabetic order in "
1865 "IMPLICIT statement at %C");
1869 /* See if we can add the newly matched range to the pending
1870 implicits from this IMPLICIT statement. We do not check for
1871 conflicts with whatever earlier IMPLICIT statements may have
1872 set. This is done when we've successfully finished matching
1874 if (gfc_add_new_implicit_range (c1
, c2
) != SUCCESS
)
1881 gfc_syntax_error (ST_IMPLICIT
);
1883 gfc_current_locus
= cur_loc
;
1888 /* Match an IMPLICIT statement, storing the types for
1889 gfc_set_implicit() if the statement is accepted by the parser.
1890 There is a strange looking, but legal syntactic construction
1891 possible. It looks like:
1893 IMPLICIT INTEGER (a-b) (c-d)
1895 This is legal if "a-b" is a constant expression that happens to
1896 equal one of the legal kinds for integers. The real problem
1897 happens with an implicit specification that looks like:
1899 IMPLICIT INTEGER (a-b)
1901 In this case, a typespec matcher that is "greedy" (as most of the
1902 matchers are) gobbles the character range as a kindspec, leaving
1903 nothing left. We therefore have to go a bit more slowly in the
1904 matching process by inhibiting the kindspec checking during
1905 typespec matching and checking for a kind later. */
1908 gfc_match_implicit (void)
1915 /* We don't allow empty implicit statements. */
1916 if (gfc_match_eos () == MATCH_YES
)
1918 gfc_error ("Empty IMPLICIT statement at %C");
1924 /* First cleanup. */
1925 gfc_clear_new_implicit ();
1927 /* A basic type is mandatory here. */
1928 m
= match_type_spec (&ts
, 1);
1929 if (m
== MATCH_ERROR
)
1934 cur_loc
= gfc_current_locus
;
1935 m
= match_implicit_range ();
1939 /* We may have <TYPE> (<RANGE>). */
1940 gfc_gobble_whitespace ();
1941 c
= gfc_next_char ();
1942 if ((c
== '\n') || (c
== ','))
1944 /* Check for CHARACTER with no length parameter. */
1945 if (ts
.type
== BT_CHARACTER
&& !ts
.cl
)
1947 ts
.kind
= gfc_default_character_kind
;
1948 ts
.cl
= gfc_get_charlen ();
1949 ts
.cl
->next
= gfc_current_ns
->cl_list
;
1950 gfc_current_ns
->cl_list
= ts
.cl
;
1951 ts
.cl
->length
= gfc_int_expr (1);
1954 /* Record the Successful match. */
1955 if (gfc_merge_new_implicit (&ts
) != SUCCESS
)
1960 gfc_current_locus
= cur_loc
;
1963 /* Discard the (incorrectly) matched range. */
1964 gfc_clear_new_implicit ();
1966 /* Last chance -- check <TYPE> <SELECTOR> (<RANGE>). */
1967 if (ts
.type
== BT_CHARACTER
)
1968 m
= match_char_spec (&ts
);
1971 m
= gfc_match_kind_spec (&ts
);
1974 m
= gfc_match_old_kind_spec (&ts
);
1975 if (m
== MATCH_ERROR
)
1981 if (m
== MATCH_ERROR
)
1984 m
= match_implicit_range ();
1985 if (m
== MATCH_ERROR
)
1990 gfc_gobble_whitespace ();
1991 c
= gfc_next_char ();
1992 if ((c
!= '\n') && (c
!= ','))
1995 if (gfc_merge_new_implicit (&ts
) != SUCCESS
)
2003 gfc_syntax_error (ST_IMPLICIT
);
2010 gfc_match_import (void)
2012 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
2017 if (gfc_current_ns
->proc_name
== NULL
||
2018 gfc_current_ns
->proc_name
->attr
.if_source
!= IFSRC_IFBODY
)
2020 gfc_error ("IMPORT statement at %C only permitted in "
2021 "an INTERFACE body");
2025 if (gfc_notify_std (GFC_STD_F2003
,
2026 "Fortran 2003: IMPORT statement at %C")
2030 if (gfc_match_eos () == MATCH_YES
)
2032 /* All host variables should be imported. */
2033 gfc_current_ns
->has_import_set
= 1;
2037 if (gfc_match (" ::") == MATCH_YES
)
2039 if (gfc_match_eos () == MATCH_YES
)
2041 gfc_error ("Expecting list of named entities at %C");
2048 m
= gfc_match (" %n", name
);
2052 if (gfc_find_symbol (name
, gfc_current_ns
->parent
, 1, &sym
))
2054 gfc_error ("Type name '%s' at %C is ambiguous", name
);
2060 gfc_error ("Cannot IMPORT '%s' from host scoping unit "
2061 "at %C - does not exist.", name
);
2065 if (gfc_find_symtree (gfc_current_ns
->sym_root
,name
))
2067 gfc_warning ("'%s' is already IMPORTed from host scoping unit "
2072 st
= gfc_new_symtree (&gfc_current_ns
->sym_root
, name
);
2075 sym
->ns
= gfc_current_ns
;
2087 if (gfc_match_eos () == MATCH_YES
)
2089 if (gfc_match_char (',') != MATCH_YES
)
2096 gfc_error ("Syntax error in IMPORT statement at %C");
2100 /* Matches an attribute specification including array specs. If
2101 successful, leaves the variables current_attr and current_as
2102 holding the specification. Also sets the colon_seen variable for
2103 later use by matchers associated with initializations.
2105 This subroutine is a little tricky in the sense that we don't know
2106 if we really have an attr-spec until we hit the double colon.
2107 Until that time, we can only return MATCH_NO. This forces us to
2108 check for duplicate specification at this level. */
2111 match_attr_spec (void)
2114 /* Modifiers that can exist in a type statement. */
2116 { GFC_DECL_BEGIN
= 0,
2117 DECL_ALLOCATABLE
= GFC_DECL_BEGIN
, DECL_DIMENSION
, DECL_EXTERNAL
,
2118 DECL_IN
, DECL_OUT
, DECL_INOUT
, DECL_INTRINSIC
, DECL_OPTIONAL
,
2119 DECL_PARAMETER
, DECL_POINTER
, DECL_PRIVATE
, DECL_PUBLIC
, DECL_SAVE
,
2120 DECL_TARGET
, DECL_VOLATILE
, DECL_COLON
, DECL_NONE
,
2121 GFC_DECL_END
/* Sentinel */
2125 /* GFC_DECL_END is the sentinel, index starts at 0. */
2126 #define NUM_DECL GFC_DECL_END
2128 static mstring decls
[] = {
2129 minit (", allocatable", DECL_ALLOCATABLE
),
2130 minit (", dimension", DECL_DIMENSION
),
2131 minit (", external", DECL_EXTERNAL
),
2132 minit (", intent ( in )", DECL_IN
),
2133 minit (", intent ( out )", DECL_OUT
),
2134 minit (", intent ( in out )", DECL_INOUT
),
2135 minit (", intrinsic", DECL_INTRINSIC
),
2136 minit (", optional", DECL_OPTIONAL
),
2137 minit (", parameter", DECL_PARAMETER
),
2138 minit (", pointer", DECL_POINTER
),
2139 minit (", private", DECL_PRIVATE
),
2140 minit (", public", DECL_PUBLIC
),
2141 minit (", save", DECL_SAVE
),
2142 minit (", target", DECL_TARGET
),
2143 minit (", volatile", DECL_VOLATILE
),
2144 minit ("::", DECL_COLON
),
2145 minit (NULL
, DECL_NONE
)
2148 locus start
, seen_at
[NUM_DECL
];
2155 gfc_clear_attr (¤t_attr
);
2156 start
= gfc_current_locus
;
2161 /* See if we get all of the keywords up to the final double colon. */
2162 for (d
= GFC_DECL_BEGIN
; d
!= GFC_DECL_END
; d
++)
2167 d
= (decl_types
) gfc_match_strings (decls
);
2168 if (d
== DECL_NONE
|| d
== DECL_COLON
)
2171 if (gfc_current_state () == COMP_ENUM
)
2173 gfc_error ("Enumerator cannot have attributes %C");
2178 seen_at
[d
] = gfc_current_locus
;
2180 if (d
== DECL_DIMENSION
)
2182 m
= gfc_match_array_spec (¤t_as
);
2186 gfc_error ("Missing dimension specification at %C");
2190 if (m
== MATCH_ERROR
)
2195 /* If we are parsing an enumeration and have ensured that no other
2196 attributes are present we can now set the parameter attribute. */
2197 if (gfc_current_state () == COMP_ENUM
)
2199 t
= gfc_add_flavor (¤t_attr
, FL_PARAMETER
, NULL
, NULL
);
2207 /* No double colon, so assume that we've been looking at something
2208 else the whole time. */
2215 /* Since we've seen a double colon, we have to be looking at an
2216 attr-spec. This means that we can now issue errors. */
2217 for (d
= GFC_DECL_BEGIN
; d
!= GFC_DECL_END
; d
++)
2222 case DECL_ALLOCATABLE
:
2223 attr
= "ALLOCATABLE";
2225 case DECL_DIMENSION
:
2232 attr
= "INTENT (IN)";
2235 attr
= "INTENT (OUT)";
2238 attr
= "INTENT (IN OUT)";
2240 case DECL_INTRINSIC
:
2246 case DECL_PARAMETER
:
2268 attr
= NULL
; /* This shouldn't happen */
2271 gfc_error ("Duplicate %s attribute at %L", attr
, &seen_at
[d
]);
2276 /* Now that we've dealt with duplicate attributes, add the attributes
2277 to the current attribute. */
2278 for (d
= GFC_DECL_BEGIN
; d
!= GFC_DECL_END
; d
++)
2283 if (gfc_current_state () == COMP_DERIVED
2284 && d
!= DECL_DIMENSION
&& d
!= DECL_POINTER
2285 && d
!= DECL_COLON
&& d
!= DECL_NONE
)
2287 if (d
== DECL_ALLOCATABLE
)
2289 if (gfc_notify_std (GFC_STD_F2003
,
2290 "Fortran 2003: ALLOCATABLE "
2291 "attribute at %C in a TYPE "
2292 "definition") == FAILURE
)
2300 gfc_error ("Attribute at %L is not allowed in a TYPE definition",
2307 if ((d
== DECL_PRIVATE
|| d
== DECL_PUBLIC
)
2308 && gfc_current_state () != COMP_MODULE
)
2310 if (d
== DECL_PRIVATE
)
2315 gfc_error ("%s attribute at %L is not allowed outside of a MODULE",
2323 case DECL_ALLOCATABLE
:
2324 t
= gfc_add_allocatable (¤t_attr
, &seen_at
[d
]);
2327 case DECL_DIMENSION
:
2328 t
= gfc_add_dimension (¤t_attr
, NULL
, &seen_at
[d
]);
2332 t
= gfc_add_external (¤t_attr
, &seen_at
[d
]);
2336 t
= gfc_add_intent (¤t_attr
, INTENT_IN
, &seen_at
[d
]);
2340 t
= gfc_add_intent (¤t_attr
, INTENT_OUT
, &seen_at
[d
]);
2344 t
= gfc_add_intent (¤t_attr
, INTENT_INOUT
, &seen_at
[d
]);
2347 case DECL_INTRINSIC
:
2348 t
= gfc_add_intrinsic (¤t_attr
, &seen_at
[d
]);
2352 t
= gfc_add_optional (¤t_attr
, &seen_at
[d
]);
2355 case DECL_PARAMETER
:
2356 t
= gfc_add_flavor (¤t_attr
, FL_PARAMETER
, NULL
, &seen_at
[d
]);
2360 t
= gfc_add_pointer (¤t_attr
, &seen_at
[d
]);
2364 t
= gfc_add_access (¤t_attr
, ACCESS_PRIVATE
, NULL
,
2369 t
= gfc_add_access (¤t_attr
, ACCESS_PUBLIC
, NULL
,
2374 t
= gfc_add_save (¤t_attr
, NULL
, &seen_at
[d
]);
2378 t
= gfc_add_target (¤t_attr
, &seen_at
[d
]);
2382 if (gfc_notify_std (GFC_STD_F2003
,
2383 "Fortran 2003: VOLATILE attribute at %C")
2387 t
= gfc_add_volatile (¤t_attr
, NULL
, &seen_at
[d
]);
2391 gfc_internal_error ("match_attr_spec(): Bad attribute");
2405 gfc_current_locus
= start
;
2406 gfc_free_array_spec (current_as
);
2412 /* Match a data declaration statement. */
2415 gfc_match_data_decl (void)
2421 m
= match_type_spec (¤t_ts
, 0);
2425 if (current_ts
.type
== BT_DERIVED
&& gfc_current_state () != COMP_DERIVED
)
2427 sym
= gfc_use_derived (current_ts
.derived
);
2435 current_ts
.derived
= sym
;
2438 m
= match_attr_spec ();
2439 if (m
== MATCH_ERROR
)
2445 if (current_ts
.type
== BT_DERIVED
&& current_ts
.derived
->components
== NULL
)
2448 if (current_attr
.pointer
&& gfc_current_state () == COMP_DERIVED
)
2451 gfc_find_symbol (current_ts
.derived
->name
,
2452 current_ts
.derived
->ns
->parent
, 1, &sym
);
2454 /* Any symbol that we find had better be a type definition
2455 which has its components defined. */
2456 if (sym
!= NULL
&& sym
->attr
.flavor
== FL_DERIVED
2457 && current_ts
.derived
->components
!= NULL
)
2460 /* Now we have an error, which we signal, and then fix up
2461 because the knock-on is plain and simple confusing. */
2462 gfc_error_now ("Derived type at %C has not been previously defined "
2463 "and so cannot appear in a derived type definition");
2464 current_attr
.pointer
= 1;
2469 /* If we have an old-style character declaration, and no new-style
2470 attribute specifications, then there a comma is optional between
2471 the type specification and the variable list. */
2472 if (m
== MATCH_NO
&& current_ts
.type
== BT_CHARACTER
&& old_char_selector
)
2473 gfc_match_char (',');
2475 /* Give the types/attributes to symbols that follow. Give the element
2476 a number so that repeat character length expressions can be copied. */
2480 m
= variable_decl (elem
++);
2481 if (m
== MATCH_ERROR
)
2486 if (gfc_match_eos () == MATCH_YES
)
2488 if (gfc_match_char (',') != MATCH_YES
)
2492 if (gfc_error_flag_test () == 0)
2493 gfc_error ("Syntax error in data declaration at %C");
2496 gfc_free_data_all (gfc_current_ns
);
2499 gfc_free_array_spec (current_as
);
2505 /* Match a prefix associated with a function or subroutine
2506 declaration. If the typespec pointer is nonnull, then a typespec
2507 can be matched. Note that if nothing matches, MATCH_YES is
2508 returned (the null string was matched). */
2511 match_prefix (gfc_typespec
* ts
)
2515 gfc_clear_attr (¤t_attr
);
2519 if (!seen_type
&& ts
!= NULL
2520 && match_type_spec (ts
, 0) == MATCH_YES
2521 && gfc_match_space () == MATCH_YES
)
2528 if (gfc_match ("elemental% ") == MATCH_YES
)
2530 if (gfc_add_elemental (¤t_attr
, NULL
) == FAILURE
)
2536 if (gfc_match ("pure% ") == MATCH_YES
)
2538 if (gfc_add_pure (¤t_attr
, NULL
) == FAILURE
)
2544 if (gfc_match ("recursive% ") == MATCH_YES
)
2546 if (gfc_add_recursive (¤t_attr
, NULL
) == FAILURE
)
2552 /* At this point, the next item is not a prefix. */
2557 /* Copy attributes matched by match_prefix() to attributes on a symbol. */
2560 copy_prefix (symbol_attribute
* dest
, locus
* where
)
2563 if (current_attr
.pure
&& gfc_add_pure (dest
, where
) == FAILURE
)
2566 if (current_attr
.elemental
&& gfc_add_elemental (dest
, where
) == FAILURE
)
2569 if (current_attr
.recursive
&& gfc_add_recursive (dest
, where
) == FAILURE
)
2576 /* Match a formal argument list. */
2579 gfc_match_formal_arglist (gfc_symbol
* progname
, int st_flag
, int null_flag
)
2581 gfc_formal_arglist
*head
, *tail
, *p
, *q
;
2582 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
2588 if (gfc_match_char ('(') != MATCH_YES
)
2595 if (gfc_match_char (')') == MATCH_YES
)
2600 if (gfc_match_char ('*') == MATCH_YES
)
2604 m
= gfc_match_name (name
);
2608 if (gfc_get_symbol (name
, NULL
, &sym
))
2612 p
= gfc_get_formal_arglist ();
2624 /* We don't add the VARIABLE flavor because the name could be a
2625 dummy procedure. We don't apply these attributes to formal
2626 arguments of statement functions. */
2627 if (sym
!= NULL
&& !st_flag
2628 && (gfc_add_dummy (&sym
->attr
, sym
->name
, NULL
) == FAILURE
2629 || gfc_missing_attr (&sym
->attr
, NULL
) == FAILURE
))
2635 /* The name of a program unit can be in a different namespace,
2636 so check for it explicitly. After the statement is accepted,
2637 the name is checked for especially in gfc_get_symbol(). */
2638 if (gfc_new_block
!= NULL
&& sym
!= NULL
2639 && strcmp (sym
->name
, gfc_new_block
->name
) == 0)
2641 gfc_error ("Name '%s' at %C is the name of the procedure",
2647 if (gfc_match_char (')') == MATCH_YES
)
2650 m
= gfc_match_char (',');
2653 gfc_error ("Unexpected junk in formal argument list at %C");
2659 /* Check for duplicate symbols in the formal argument list. */
2662 for (p
= head
; p
->next
; p
= p
->next
)
2667 for (q
= p
->next
; q
; q
= q
->next
)
2668 if (p
->sym
== q
->sym
)
2671 ("Duplicate symbol '%s' in formal argument list at %C",
2680 if (gfc_add_explicit_interface (progname
, IFSRC_DECL
, head
, NULL
) ==
2690 gfc_free_formal_arglist (head
);
2695 /* Match a RESULT specification following a function declaration or
2696 ENTRY statement. Also matches the end-of-statement. */
2699 match_result (gfc_symbol
* function
, gfc_symbol
** result
)
2701 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
2705 if (gfc_match (" result (") != MATCH_YES
)
2708 m
= gfc_match_name (name
);
2712 if (gfc_match (" )%t") != MATCH_YES
)
2714 gfc_error ("Unexpected junk following RESULT variable at %C");
2718 if (strcmp (function
->name
, name
) == 0)
2721 ("RESULT variable at %C must be different than function name");
2725 if (gfc_get_symbol (name
, NULL
, &r
))
2728 if (gfc_add_flavor (&r
->attr
, FL_VARIABLE
, r
->name
, NULL
) == FAILURE
2729 || gfc_add_result (&r
->attr
, r
->name
, NULL
) == FAILURE
)
2738 /* Match a function declaration. */
2741 gfc_match_function_decl (void)
2743 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
2744 gfc_symbol
*sym
, *result
;
2748 if (gfc_current_state () != COMP_NONE
2749 && gfc_current_state () != COMP_INTERFACE
2750 && gfc_current_state () != COMP_CONTAINS
)
2753 gfc_clear_ts (¤t_ts
);
2755 old_loc
= gfc_current_locus
;
2757 m
= match_prefix (¤t_ts
);
2760 gfc_current_locus
= old_loc
;
2764 if (gfc_match ("function% %n", name
) != MATCH_YES
)
2766 gfc_current_locus
= old_loc
;
2770 if (get_proc_name (name
, &sym
, false))
2772 gfc_new_block
= sym
;
2774 m
= gfc_match_formal_arglist (sym
, 0, 0);
2777 gfc_error ("Expected formal argument list in function "
2778 "definition at %C");
2782 else if (m
== MATCH_ERROR
)
2787 if (gfc_match_eos () != MATCH_YES
)
2789 /* See if a result variable is present. */
2790 m
= match_result (sym
, &result
);
2792 gfc_error ("Unexpected junk after function declaration at %C");
2801 /* Make changes to the symbol. */
2804 if (gfc_add_function (&sym
->attr
, sym
->name
, NULL
) == FAILURE
)
2807 if (gfc_missing_attr (&sym
->attr
, NULL
) == FAILURE
2808 || copy_prefix (&sym
->attr
, &sym
->declared_at
) == FAILURE
)
2811 if (current_ts
.type
!= BT_UNKNOWN
2812 && sym
->ts
.type
!= BT_UNKNOWN
2813 && !sym
->attr
.implicit_type
)
2815 gfc_error ("Function '%s' at %C already has a type of %s", name
,
2816 gfc_basic_typename (sym
->ts
.type
));
2822 sym
->ts
= current_ts
;
2827 result
->ts
= current_ts
;
2828 sym
->result
= result
;
2834 gfc_current_locus
= old_loc
;
2838 /* This is mostly a copy of parse.c(add_global_procedure) but modified to pass the
2839 name of the entry, rather than the gfc_current_block name, and to return false
2840 upon finding an existing global entry. */
2843 add_global_entry (const char * name
, int sub
)
2847 s
= gfc_get_gsymbol(name
);
2850 || (s
->type
!= GSYM_UNKNOWN
&& s
->type
!= (sub
? GSYM_SUBROUTINE
: GSYM_FUNCTION
)))
2851 global_used(s
, NULL
);
2854 s
->type
= sub
? GSYM_SUBROUTINE
: GSYM_FUNCTION
;
2855 s
->where
= gfc_current_locus
;
2862 /* Match an ENTRY statement. */
2865 gfc_match_entry (void)
2870 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
2871 gfc_compile_state state
;
2875 bool module_procedure
;
2877 m
= gfc_match_name (name
);
2881 state
= gfc_current_state ();
2882 if (state
!= COMP_SUBROUTINE
&& state
!= COMP_FUNCTION
)
2887 gfc_error ("ENTRY statement at %C cannot appear within a PROGRAM");
2890 gfc_error ("ENTRY statement at %C cannot appear within a MODULE");
2892 case COMP_BLOCK_DATA
:
2894 ("ENTRY statement at %C cannot appear within a BLOCK DATA");
2896 case COMP_INTERFACE
:
2898 ("ENTRY statement at %C cannot appear within an INTERFACE");
2902 ("ENTRY statement at %C cannot appear "
2903 "within a DERIVED TYPE block");
2907 ("ENTRY statement at %C cannot appear within an IF-THEN block");
2911 ("ENTRY statement at %C cannot appear within a DO block");
2915 ("ENTRY statement at %C cannot appear within a SELECT block");
2919 ("ENTRY statement at %C cannot appear within a FORALL block");
2923 ("ENTRY statement at %C cannot appear within a WHERE block");
2927 ("ENTRY statement at %C cannot appear "
2928 "within a contained subprogram");
2931 gfc_internal_error ("gfc_match_entry(): Bad state");
2936 module_procedure
= gfc_current_ns
->parent
!= NULL
2937 && gfc_current_ns
->parent
->proc_name
2938 && gfc_current_ns
->parent
->proc_name
->attr
.flavor
== FL_MODULE
;
2940 if (gfc_current_ns
->parent
!= NULL
2941 && gfc_current_ns
->parent
->proc_name
2942 && !module_procedure
)
2944 gfc_error("ENTRY statement at %C cannot appear in a "
2945 "contained procedure");
2949 /* Module function entries need special care in get_proc_name
2950 because previous references within the function will have
2951 created symbols attached to the current namespace. */
2952 if (get_proc_name (name
, &entry
,
2953 gfc_current_ns
->parent
!= NULL
2955 && gfc_current_ns
->proc_name
->attr
.function
))
2958 proc
= gfc_current_block ();
2960 if (state
== COMP_SUBROUTINE
)
2962 /* An entry in a subroutine. */
2963 if (!add_global_entry (name
, 1))
2966 m
= gfc_match_formal_arglist (entry
, 0, 1);
2970 if (gfc_add_entry (&entry
->attr
, entry
->name
, NULL
) == FAILURE
2971 || gfc_add_subroutine (&entry
->attr
, entry
->name
, NULL
) == FAILURE
)
2976 /* An entry in a function.
2977 We need to take special care because writing
2982 ENTRY f() RESULT (r)
2984 ENTRY f RESULT (r). */
2985 if (!add_global_entry (name
, 0))
2988 old_loc
= gfc_current_locus
;
2989 if (gfc_match_eos () == MATCH_YES
)
2991 gfc_current_locus
= old_loc
;
2992 /* Match the empty argument list, and add the interface to
2994 m
= gfc_match_formal_arglist (entry
, 0, 1);
2997 m
= gfc_match_formal_arglist (entry
, 0, 0);
3004 if (gfc_match_eos () == MATCH_YES
)
3006 if (gfc_add_entry (&entry
->attr
, entry
->name
, NULL
) == FAILURE
3007 || gfc_add_function (&entry
->attr
, entry
->name
, NULL
) == FAILURE
)
3010 entry
->result
= entry
;
3014 m
= match_result (proc
, &result
);
3016 gfc_syntax_error (ST_ENTRY
);
3020 if (gfc_add_result (&result
->attr
, result
->name
, NULL
) == FAILURE
3021 || gfc_add_entry (&entry
->attr
, result
->name
, NULL
) == FAILURE
3022 || gfc_add_function (&entry
->attr
, result
->name
,
3026 entry
->result
= result
;
3029 if (proc
->attr
.recursive
&& result
== NULL
)
3031 gfc_error ("RESULT attribute required in ENTRY statement at %C");
3036 if (gfc_match_eos () != MATCH_YES
)
3038 gfc_syntax_error (ST_ENTRY
);
3042 entry
->attr
.recursive
= proc
->attr
.recursive
;
3043 entry
->attr
.elemental
= proc
->attr
.elemental
;
3044 entry
->attr
.pure
= proc
->attr
.pure
;
3046 el
= gfc_get_entry_list ();
3048 el
->next
= gfc_current_ns
->entries
;
3049 gfc_current_ns
->entries
= el
;
3051 el
->id
= el
->next
->id
+ 1;
3055 new_st
.op
= EXEC_ENTRY
;
3056 new_st
.ext
.entry
= el
;
3062 /* Match a subroutine statement, including optional prefixes. */
3065 gfc_match_subroutine (void)
3067 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
3071 if (gfc_current_state () != COMP_NONE
3072 && gfc_current_state () != COMP_INTERFACE
3073 && gfc_current_state () != COMP_CONTAINS
)
3076 m
= match_prefix (NULL
);
3080 m
= gfc_match ("subroutine% %n", name
);
3084 if (get_proc_name (name
, &sym
, false))
3086 gfc_new_block
= sym
;
3088 if (gfc_add_subroutine (&sym
->attr
, sym
->name
, NULL
) == FAILURE
)
3091 if (gfc_match_formal_arglist (sym
, 0, 1) != MATCH_YES
)
3094 if (gfc_match_eos () != MATCH_YES
)
3096 gfc_syntax_error (ST_SUBROUTINE
);
3100 if (copy_prefix (&sym
->attr
, &sym
->declared_at
) == FAILURE
)
3107 /* Return nonzero if we're currently compiling a contained procedure. */
3110 contained_procedure (void)
3114 for (s
=gfc_state_stack
; s
; s
=s
->previous
)
3115 if ((s
->state
== COMP_SUBROUTINE
|| s
->state
== COMP_FUNCTION
)
3116 && s
->previous
!= NULL
3117 && s
->previous
->state
== COMP_CONTAINS
)
3123 /* Set the kind of each enumerator. The kind is selected such that it is
3124 interoperable with the corresponding C enumeration type, making
3125 sure that -fshort-enums is honored. */
3130 enumerator_history
*current_history
= NULL
;
3134 if (max_enum
== NULL
|| enum_history
== NULL
)
3137 if (!gfc_option
.fshort_enums
)
3143 kind
= gfc_integer_kinds
[i
++].kind
;
3145 while (kind
< gfc_c_int_kind
3146 && gfc_check_integer_range (max_enum
->initializer
->value
.integer
,
3149 current_history
= enum_history
;
3150 while (current_history
!= NULL
)
3152 current_history
->sym
->ts
.kind
= kind
;
3153 current_history
= current_history
->next
;
3157 /* Match any of the various end-block statements. Returns the type of
3158 END to the caller. The END INTERFACE, END IF, END DO and END
3159 SELECT statements cannot be replaced by a single END statement. */
3162 gfc_match_end (gfc_statement
* st
)
3164 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
3165 gfc_compile_state state
;
3167 const char *block_name
;
3172 old_loc
= gfc_current_locus
;
3173 if (gfc_match ("end") != MATCH_YES
)
3176 state
= gfc_current_state ();
3178 gfc_current_block () == NULL
? NULL
: gfc_current_block ()->name
;
3180 if (state
== COMP_CONTAINS
)
3182 state
= gfc_state_stack
->previous
->state
;
3183 block_name
= gfc_state_stack
->previous
->sym
== NULL
? NULL
3184 : gfc_state_stack
->previous
->sym
->name
;
3191 *st
= ST_END_PROGRAM
;
3192 target
= " program";
3196 case COMP_SUBROUTINE
:
3197 *st
= ST_END_SUBROUTINE
;
3198 target
= " subroutine";
3199 eos_ok
= !contained_procedure ();
3203 *st
= ST_END_FUNCTION
;
3204 target
= " function";
3205 eos_ok
= !contained_procedure ();
3208 case COMP_BLOCK_DATA
:
3209 *st
= ST_END_BLOCK_DATA
;
3210 target
= " block data";
3215 *st
= ST_END_MODULE
;
3220 case COMP_INTERFACE
:
3221 *st
= ST_END_INTERFACE
;
3222 target
= " interface";
3245 *st
= ST_END_SELECT
;
3251 *st
= ST_END_FORALL
;
3266 last_initializer
= NULL
;
3268 gfc_free_enum_history ();
3272 gfc_error ("Unexpected END statement at %C");
3276 if (gfc_match_eos () == MATCH_YES
)
3280 /* We would have required END [something] */
3281 gfc_error ("%s statement expected at %L",
3282 gfc_ascii_statement (*st
), &old_loc
);
3289 /* Verify that we've got the sort of end-block that we're expecting. */
3290 if (gfc_match (target
) != MATCH_YES
)
3292 gfc_error ("Expecting %s statement at %C", gfc_ascii_statement (*st
));
3296 /* If we're at the end, make sure a block name wasn't required. */
3297 if (gfc_match_eos () == MATCH_YES
)
3300 if (*st
!= ST_ENDDO
&& *st
!= ST_ENDIF
&& *st
!= ST_END_SELECT
)
3303 if (gfc_current_block () == NULL
)
3306 gfc_error ("Expected block name of '%s' in %s statement at %C",
3307 block_name
, gfc_ascii_statement (*st
));
3312 /* END INTERFACE has a special handler for its several possible endings. */
3313 if (*st
== ST_END_INTERFACE
)
3314 return gfc_match_end_interface ();
3316 /* We haven't hit the end of statement, so what is left must be an end-name. */
3317 m
= gfc_match_space ();
3319 m
= gfc_match_name (name
);
3322 gfc_error ("Expected terminating name at %C");
3326 if (block_name
== NULL
)
3329 if (strcmp (name
, block_name
) != 0)
3331 gfc_error ("Expected label '%s' for %s statement at %C", block_name
,
3332 gfc_ascii_statement (*st
));
3336 if (gfc_match_eos () == MATCH_YES
)
3340 gfc_syntax_error (*st
);
3343 gfc_current_locus
= old_loc
;
3349 /***************** Attribute declaration statements ****************/
3351 /* Set the attribute of a single variable. */
3356 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
3364 m
= gfc_match_name (name
);
3368 if (find_special (name
, &sym
))
3371 var_locus
= gfc_current_locus
;
3373 /* Deal with possible array specification for certain attributes. */
3374 if (current_attr
.dimension
3375 || current_attr
.allocatable
3376 || current_attr
.pointer
3377 || current_attr
.target
)
3379 m
= gfc_match_array_spec (&as
);
3380 if (m
== MATCH_ERROR
)
3383 if (current_attr
.dimension
&& m
== MATCH_NO
)
3386 ("Missing array specification at %L in DIMENSION statement",
3392 if ((current_attr
.allocatable
|| current_attr
.pointer
)
3393 && (m
== MATCH_YES
) && (as
->type
!= AS_DEFERRED
))
3395 gfc_error ("Array specification must be deferred at %L",
3402 /* Update symbol table. DIMENSION attribute is set in gfc_set_array_spec(). */
3403 if (current_attr
.dimension
== 0
3404 && gfc_copy_attr (&sym
->attr
, ¤t_attr
, NULL
) == FAILURE
)
3410 if (gfc_set_array_spec (sym
, as
, &var_locus
) == FAILURE
)
3416 if (sym
->attr
.cray_pointee
&& sym
->as
!= NULL
)
3418 /* Fix the array spec. */
3419 m
= gfc_mod_pointee_as (sym
->as
);
3420 if (m
== MATCH_ERROR
)
3424 if (gfc_add_attribute (&sym
->attr
, &var_locus
) == FAILURE
)
3430 if ((current_attr
.external
|| current_attr
.intrinsic
)
3431 && sym
->attr
.flavor
!= FL_PROCEDURE
3432 && gfc_add_flavor (&sym
->attr
, FL_PROCEDURE
, sym
->name
, NULL
) == FAILURE
)
3441 gfc_free_array_spec (as
);
3446 /* Generic attribute declaration subroutine. Used for attributes that
3447 just have a list of names. */
3454 /* Gobble the optional double colon, by simply ignoring the result
3464 if (gfc_match_eos () == MATCH_YES
)
3470 if (gfc_match_char (',') != MATCH_YES
)
3472 gfc_error ("Unexpected character in variable list at %C");
3482 /* This routine matches Cray Pointer declarations of the form:
3483 pointer ( <pointer>, <pointee> )
3485 pointer ( <pointer1>, <pointee1> ), ( <pointer2>, <pointee2> ), ...
3486 The pointer, if already declared, should be an integer. Otherwise, we
3487 set it as BT_INTEGER with kind gfc_index_integer_kind. The pointee may
3488 be either a scalar, or an array declaration. No space is allocated for
3489 the pointee. For the statement
3490 pointer (ipt, ar(10))
3491 any subsequent uses of ar will be translated (in C-notation) as
3492 ar(i) => ((<type> *) ipt)(i)
3493 After gimplification, pointee variable will disappear in the code. */
3496 cray_pointer_decl (void)
3500 gfc_symbol
*cptr
; /* Pointer symbol. */
3501 gfc_symbol
*cpte
; /* Pointee symbol. */
3507 if (gfc_match_char ('(') != MATCH_YES
)
3509 gfc_error ("Expected '(' at %C");
3513 /* Match pointer. */
3514 var_locus
= gfc_current_locus
;
3515 gfc_clear_attr (¤t_attr
);
3516 gfc_add_cray_pointer (¤t_attr
, &var_locus
);
3517 current_ts
.type
= BT_INTEGER
;
3518 current_ts
.kind
= gfc_index_integer_kind
;
3520 m
= gfc_match_symbol (&cptr
, 0);
3523 gfc_error ("Expected variable name at %C");
3527 if (gfc_add_cray_pointer (&cptr
->attr
, &var_locus
) == FAILURE
)
3530 gfc_set_sym_referenced (cptr
);
3532 if (cptr
->ts
.type
== BT_UNKNOWN
) /* Override the type, if necessary. */
3534 cptr
->ts
.type
= BT_INTEGER
;
3535 cptr
->ts
.kind
= gfc_index_integer_kind
;
3537 else if (cptr
->ts
.type
!= BT_INTEGER
)
3539 gfc_error ("Cray pointer at %C must be an integer");
3542 else if (cptr
->ts
.kind
< gfc_index_integer_kind
)
3543 gfc_warning ("Cray pointer at %C has %d bytes of precision;"
3544 " memory addresses require %d bytes",
3546 gfc_index_integer_kind
);
3548 if (gfc_match_char (',') != MATCH_YES
)
3550 gfc_error ("Expected \",\" at %C");
3554 /* Match Pointee. */
3555 var_locus
= gfc_current_locus
;
3556 gfc_clear_attr (¤t_attr
);
3557 gfc_add_cray_pointee (¤t_attr
, &var_locus
);
3558 current_ts
.type
= BT_UNKNOWN
;
3559 current_ts
.kind
= 0;
3561 m
= gfc_match_symbol (&cpte
, 0);
3564 gfc_error ("Expected variable name at %C");
3568 /* Check for an optional array spec. */
3569 m
= gfc_match_array_spec (&as
);
3570 if (m
== MATCH_ERROR
)
3572 gfc_free_array_spec (as
);
3575 else if (m
== MATCH_NO
)
3577 gfc_free_array_spec (as
);
3581 if (gfc_add_cray_pointee (&cpte
->attr
, &var_locus
) == FAILURE
)
3584 gfc_set_sym_referenced (cpte
);
3586 if (cpte
->as
== NULL
)
3588 if (gfc_set_array_spec (cpte
, as
, &var_locus
) == FAILURE
)
3589 gfc_internal_error ("Couldn't set Cray pointee array spec.");
3591 else if (as
!= NULL
)
3593 gfc_error ("Duplicate array spec for Cray pointee at %C");
3594 gfc_free_array_spec (as
);
3600 if (cpte
->as
!= NULL
)
3602 /* Fix array spec. */
3603 m
= gfc_mod_pointee_as (cpte
->as
);
3604 if (m
== MATCH_ERROR
)
3608 /* Point the Pointee at the Pointer. */
3609 cpte
->cp_pointer
= cptr
;
3611 if (gfc_match_char (')') != MATCH_YES
)
3613 gfc_error ("Expected \")\" at %C");
3616 m
= gfc_match_char (',');
3618 done
= true; /* Stop searching for more declarations. */
3622 if (m
== MATCH_ERROR
/* Failed when trying to find ',' above. */
3623 || gfc_match_eos () != MATCH_YES
)
3625 gfc_error ("Expected \",\" or end of statement at %C");
3633 gfc_match_external (void)
3636 gfc_clear_attr (¤t_attr
);
3637 current_attr
.external
= 1;
3639 return attr_decl ();
3645 gfc_match_intent (void)
3649 intent
= match_intent_spec ();
3650 if (intent
== INTENT_UNKNOWN
)
3653 gfc_clear_attr (¤t_attr
);
3654 current_attr
.intent
= intent
;
3656 return attr_decl ();
3661 gfc_match_intrinsic (void)
3664 gfc_clear_attr (¤t_attr
);
3665 current_attr
.intrinsic
= 1;
3667 return attr_decl ();
3672 gfc_match_optional (void)
3675 gfc_clear_attr (¤t_attr
);
3676 current_attr
.optional
= 1;
3678 return attr_decl ();
3683 gfc_match_pointer (void)
3685 gfc_gobble_whitespace ();
3686 if (gfc_peek_char () == '(')
3688 if (!gfc_option
.flag_cray_pointer
)
3690 gfc_error ("Cray pointer declaration at %C requires -fcray-pointer"
3694 return cray_pointer_decl ();
3698 gfc_clear_attr (¤t_attr
);
3699 current_attr
.pointer
= 1;
3701 return attr_decl ();
3707 gfc_match_allocatable (void)
3710 gfc_clear_attr (¤t_attr
);
3711 current_attr
.allocatable
= 1;
3713 return attr_decl ();
3718 gfc_match_dimension (void)
3721 gfc_clear_attr (¤t_attr
);
3722 current_attr
.dimension
= 1;
3724 return attr_decl ();
3729 gfc_match_target (void)
3732 gfc_clear_attr (¤t_attr
);
3733 current_attr
.target
= 1;
3735 return attr_decl ();
3739 /* Match the list of entities being specified in a PUBLIC or PRIVATE
3743 access_attr_decl (gfc_statement st
)
3745 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
3746 interface_type type
;
3749 gfc_intrinsic_op
operator;
3752 if (gfc_match (" ::") == MATCH_NO
&& gfc_match_space () == MATCH_NO
)
3757 m
= gfc_match_generic_spec (&type
, name
, &operator);
3760 if (m
== MATCH_ERROR
)
3765 case INTERFACE_NAMELESS
:
3768 case INTERFACE_GENERIC
:
3769 if (gfc_get_symbol (name
, NULL
, &sym
))
3772 if (gfc_add_access (&sym
->attr
,
3774 ST_PUBLIC
) ? ACCESS_PUBLIC
: ACCESS_PRIVATE
,
3775 sym
->name
, NULL
) == FAILURE
)
3780 case INTERFACE_INTRINSIC_OP
:
3781 if (gfc_current_ns
->operator_access
[operator] == ACCESS_UNKNOWN
)
3783 gfc_current_ns
->operator_access
[operator] =
3784 (st
== ST_PUBLIC
) ? ACCESS_PUBLIC
: ACCESS_PRIVATE
;
3788 gfc_error ("Access specification of the %s operator at %C has "
3789 "already been specified", gfc_op2string (operator));
3795 case INTERFACE_USER_OP
:
3796 uop
= gfc_get_uop (name
);
3798 if (uop
->access
== ACCESS_UNKNOWN
)
3801 (st
== ST_PUBLIC
) ? ACCESS_PUBLIC
: ACCESS_PRIVATE
;
3806 ("Access specification of the .%s. operator at %C has "
3807 "already been specified", sym
->name
);
3814 if (gfc_match_char (',') == MATCH_NO
)
3818 if (gfc_match_eos () != MATCH_YES
)
3823 gfc_syntax_error (st
);
3830 /* The PRIVATE statement is a bit weird in that it can be a attribute
3831 declaration, but also works as a standlone statement inside of a
3832 type declaration or a module. */
3835 gfc_match_private (gfc_statement
* st
)
3838 if (gfc_match ("private") != MATCH_YES
)
3841 if (gfc_current_state () == COMP_DERIVED
)
3843 if (gfc_match_eos () == MATCH_YES
)
3849 gfc_syntax_error (ST_PRIVATE
);
3853 if (gfc_match_eos () == MATCH_YES
)
3860 return access_attr_decl (ST_PRIVATE
);
3865 gfc_match_public (gfc_statement
* st
)
3868 if (gfc_match ("public") != MATCH_YES
)
3871 if (gfc_match_eos () == MATCH_YES
)
3878 return access_attr_decl (ST_PUBLIC
);
3882 /* Workhorse for gfc_match_parameter. */
3891 m
= gfc_match_symbol (&sym
, 0);
3893 gfc_error ("Expected variable name at %C in PARAMETER statement");
3898 if (gfc_match_char ('=') == MATCH_NO
)
3900 gfc_error ("Expected = sign in PARAMETER statement at %C");
3904 m
= gfc_match_init_expr (&init
);
3906 gfc_error ("Expected expression at %C in PARAMETER statement");
3910 if (sym
->ts
.type
== BT_UNKNOWN
3911 && gfc_set_default_type (sym
, 1, NULL
) == FAILURE
)
3917 if (gfc_check_assign_symbol (sym
, init
) == FAILURE
3918 || gfc_add_flavor (&sym
->attr
, FL_PARAMETER
, sym
->name
, NULL
) == FAILURE
)
3924 if (sym
->ts
.type
== BT_CHARACTER
3925 && sym
->ts
.cl
!= NULL
3926 && sym
->ts
.cl
->length
!= NULL
3927 && sym
->ts
.cl
->length
->expr_type
== EXPR_CONSTANT
3928 && init
->expr_type
== EXPR_CONSTANT
3929 && init
->ts
.type
== BT_CHARACTER
3930 && init
->ts
.kind
== 1)
3931 gfc_set_constant_character_len (
3932 mpz_get_si (sym
->ts
.cl
->length
->value
.integer
), init
);
3938 gfc_free_expr (init
);
3943 /* Match a parameter statement, with the weird syntax that these have. */
3946 gfc_match_parameter (void)
3950 if (gfc_match_char ('(') == MATCH_NO
)
3959 if (gfc_match (" )%t") == MATCH_YES
)
3962 if (gfc_match_char (',') != MATCH_YES
)
3964 gfc_error ("Unexpected characters in PARAMETER statement at %C");
3974 /* Save statements have a special syntax. */
3977 gfc_match_save (void)
3979 char n
[GFC_MAX_SYMBOL_LEN
+1];
3984 if (gfc_match_eos () == MATCH_YES
)
3986 if (gfc_current_ns
->seen_save
)
3988 if (gfc_notify_std (GFC_STD_LEGACY
,
3989 "Blanket SAVE statement at %C follows previous "
3995 gfc_current_ns
->save_all
= gfc_current_ns
->seen_save
= 1;
3999 if (gfc_current_ns
->save_all
)
4001 if (gfc_notify_std (GFC_STD_LEGACY
,
4002 "SAVE statement at %C follows blanket SAVE statement")
4011 m
= gfc_match_symbol (&sym
, 0);
4015 if (gfc_add_save (&sym
->attr
, sym
->name
,
4016 &gfc_current_locus
) == FAILURE
)
4027 m
= gfc_match (" / %n /", &n
);
4028 if (m
== MATCH_ERROR
)
4033 c
= gfc_get_common (n
, 0);
4036 gfc_current_ns
->seen_save
= 1;
4039 if (gfc_match_eos () == MATCH_YES
)
4041 if (gfc_match_char (',') != MATCH_YES
)
4048 gfc_error ("Syntax error in SAVE statement at %C");
4054 gfc_match_volatile (void)
4059 if (gfc_notify_std (GFC_STD_F2003
,
4060 "Fortran 2003: VOLATILE statement at %C")
4064 if (gfc_match (" ::") == MATCH_NO
&& gfc_match_space () == MATCH_NO
)
4069 if (gfc_match_eos () == MATCH_YES
)
4074 m
= gfc_match_symbol (&sym
, 0);
4078 if (gfc_add_volatile (&sym
->attr
, sym
->name
,
4079 &gfc_current_locus
) == FAILURE
)
4091 if (gfc_match_eos () == MATCH_YES
)
4093 if (gfc_match_char (',') != MATCH_YES
)
4100 gfc_error ("Syntax error in VOLATILE statement at %C");
4106 /* Match a module procedure statement. Note that we have to modify
4107 symbols in the parent's namespace because the current one was there
4108 to receive symbols that are in an interface's formal argument list. */
4111 gfc_match_modproc (void)
4113 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
4117 if (gfc_state_stack
->state
!= COMP_INTERFACE
4118 || gfc_state_stack
->previous
== NULL
4119 || current_interface
.type
== INTERFACE_NAMELESS
)
4122 ("MODULE PROCEDURE at %C must be in a generic module interface");
4128 m
= gfc_match_name (name
);
4134 if (gfc_get_symbol (name
, gfc_current_ns
->parent
, &sym
))
4137 if (sym
->attr
.proc
!= PROC_MODULE
4138 && gfc_add_procedure (&sym
->attr
, PROC_MODULE
,
4139 sym
->name
, NULL
) == FAILURE
)
4142 if (gfc_add_interface (sym
) == FAILURE
)
4145 if (gfc_match_eos () == MATCH_YES
)
4147 if (gfc_match_char (',') != MATCH_YES
)
4154 gfc_syntax_error (ST_MODULE_PROC
);
4159 /* Match the beginning of a derived type declaration. If a type name
4160 was the result of a function, then it is possible to have a symbol
4161 already to be known as a derived type yet have no components. */
4164 gfc_match_derived_decl (void)
4166 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
4167 symbol_attribute attr
;
4171 if (gfc_current_state () == COMP_DERIVED
)
4174 gfc_clear_attr (&attr
);
4177 if (gfc_match (" , private") == MATCH_YES
)
4179 if (gfc_find_state (COMP_MODULE
) == FAILURE
)
4182 ("Derived type at %C can only be PRIVATE within a MODULE");
4186 if (gfc_add_access (&attr
, ACCESS_PRIVATE
, NULL
, NULL
) == FAILURE
)
4191 if (gfc_match (" , public") == MATCH_YES
)
4193 if (gfc_find_state (COMP_MODULE
) == FAILURE
)
4195 gfc_error ("Derived type at %C can only be PUBLIC within a MODULE");
4199 if (gfc_add_access (&attr
, ACCESS_PUBLIC
, NULL
, NULL
) == FAILURE
)
4204 if (gfc_match (" ::") != MATCH_YES
&& attr
.access
!= ACCESS_UNKNOWN
)
4206 gfc_error ("Expected :: in TYPE definition at %C");
4210 m
= gfc_match (" %n%t", name
);
4214 /* Make sure the name isn't the name of an intrinsic type. The
4215 'double precision' type doesn't get past the name matcher. */
4216 if (strcmp (name
, "integer") == 0
4217 || strcmp (name
, "real") == 0
4218 || strcmp (name
, "character") == 0
4219 || strcmp (name
, "logical") == 0
4220 || strcmp (name
, "complex") == 0)
4223 ("Type name '%s' at %C cannot be the same as an intrinsic type",
4228 if (gfc_get_symbol (name
, NULL
, &sym
))
4231 if (sym
->ts
.type
!= BT_UNKNOWN
)
4233 gfc_error ("Derived type name '%s' at %C already has a basic type "
4234 "of %s", sym
->name
, gfc_typename (&sym
->ts
));
4238 /* The symbol may already have the derived attribute without the
4239 components. The ways this can happen is via a function
4240 definition, an INTRINSIC statement or a subtype in another
4241 derived type that is a pointer. The first part of the AND clause
4242 is true if a the symbol is not the return value of a function. */
4243 if (sym
->attr
.flavor
!= FL_DERIVED
4244 && gfc_add_flavor (&sym
->attr
, FL_DERIVED
, sym
->name
, NULL
) == FAILURE
)
4247 if (sym
->components
!= NULL
)
4250 ("Derived type definition of '%s' at %C has already been defined",
4255 if (attr
.access
!= ACCESS_UNKNOWN
4256 && gfc_add_access (&sym
->attr
, attr
.access
, sym
->name
, NULL
) == FAILURE
)
4259 gfc_new_block
= sym
;
4265 /* Cray Pointees can be declared as:
4266 pointer (ipt, a (n,m,...,*))
4267 By default, this is treated as an AS_ASSUMED_SIZE array. We'll
4268 cheat and set a constant bound of 1 for the last dimension, if this
4269 is the case. Since there is no bounds-checking for Cray Pointees,
4270 this will be okay. */
4273 gfc_mod_pointee_as (gfc_array_spec
*as
)
4275 as
->cray_pointee
= true; /* This will be useful to know later. */
4276 if (as
->type
== AS_ASSUMED_SIZE
)
4278 as
->type
= AS_EXPLICIT
;
4279 as
->upper
[as
->rank
- 1] = gfc_int_expr (1);
4280 as
->cp_was_assumed
= true;
4282 else if (as
->type
== AS_ASSUMED_SHAPE
)
4284 gfc_error ("Cray Pointee at %C cannot be assumed shape array");
4291 /* Match the enum definition statement, here we are trying to match
4292 the first line of enum definition statement.
4293 Returns MATCH_YES if match is found. */
4296 gfc_match_enum (void)
4300 m
= gfc_match_eos ();
4304 if (gfc_notify_std (GFC_STD_F2003
,
4305 "Fortran 2003: ENUM AND ENUMERATOR at %C")
4313 /* Match the enumerator definition statement. */
4316 gfc_match_enumerator_def (void)
4321 gfc_clear_ts (¤t_ts
);
4323 m
= gfc_match (" enumerator");
4327 if (gfc_current_state () != COMP_ENUM
)
4329 gfc_error ("ENUM definition statement expected before %C");
4330 gfc_free_enum_history ();
4334 (¤t_ts
)->type
= BT_INTEGER
;
4335 (¤t_ts
)->kind
= gfc_c_int_kind
;
4337 m
= match_attr_spec ();
4338 if (m
== MATCH_ERROR
)
4347 m
= variable_decl (elem
++);
4348 if (m
== MATCH_ERROR
)
4353 if (gfc_match_eos () == MATCH_YES
)
4355 if (gfc_match_char (',') != MATCH_YES
)
4359 if (gfc_current_state () == COMP_ENUM
)
4361 gfc_free_enum_history ();
4362 gfc_error ("Syntax error in ENUMERATOR definition at %C");
4367 gfc_free_array_spec (current_as
);