1 /* Declaration statement matcher
2 Copyright (C) 2002, 2004, 2005, 2006, 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
4 Contributed by Andy Vaught
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
28 #include "constructor.h"
30 /* Macros to access allocate memory for gfc_data_variable,
31 gfc_data_value and gfc_data. */
32 #define gfc_get_data_variable() XCNEW (gfc_data_variable)
33 #define gfc_get_data_value() XCNEW (gfc_data_value)
34 #define gfc_get_data() XCNEW (gfc_data)
37 /* This flag is set if an old-style length selector is matched
38 during a type-declaration statement. */
40 static int old_char_selector;
42 /* When variables acquire types and attributes from a declaration
43 statement, they get them from the following static variables. The
44 first part of a declaration sets these variables and the second
45 part copies these into symbol structures. */
47 static gfc_typespec current_ts;
49 static symbol_attribute current_attr;
50 static gfc_array_spec *current_as;
51 static int colon_seen;
53 /* The current binding label (if any). */
54 static char curr_binding_label[GFC_MAX_BINDING_LABEL_LEN + 1];
55 /* Need to know how many identifiers are on the current data declaration
56 line in case we're given the BIND(C) attribute with a NAME= specifier. */
57 static int num_idents_on_line;
58 /* Need to know if a NAME= specifier was found during gfc_match_bind_c so we
59 can supply a name if the curr_binding_label is nil and NAME= was not. */
60 static int has_name_equals = 0;
62 /* Initializer of the previous enumerator. */
64 static gfc_expr *last_initializer;
66 /* History of all the enumerators is maintained, so that
67 kind values of all the enumerators could be updated depending
68 upon the maximum initialized value. */
70 typedef struct enumerator_history
73 gfc_expr *initializer;
74 struct enumerator_history *next;
78 /* Header of enum history chain. */
80 static enumerator_history *enum_history = NULL;
82 /* Pointer of enum history node containing largest initializer. */
84 static enumerator_history *max_enum = NULL;
86 /* gfc_new_block points to the symbol of a newly matched block. */
88 gfc_symbol *gfc_new_block;
90 bool gfc_matching_function;
93 /********************* DATA statement subroutines *********************/
95 static bool in_match_data = false;
98 gfc_in_match_data (void)
100 return in_match_data;
104 set_in_match_data (bool set_value)
106 in_match_data = set_value;
109 /* Free a gfc_data_variable structure and everything beneath it. */
112 free_variable (gfc_data_variable *p)
114 gfc_data_variable *q;
119 gfc_free_expr (p->expr);
120 gfc_free_iterator (&p->iter, 0);
121 free_variable (p->list);
127 /* Free a gfc_data_value structure and everything beneath it. */
130 free_value (gfc_data_value *p)
137 gfc_free_expr (p->expr);
143 /* Free a list of gfc_data structures. */
146 gfc_free_data (gfc_data *p)
153 free_variable (p->var);
154 free_value (p->value);
160 /* Free all data in a namespace. */
163 gfc_free_data_all (gfc_namespace *ns)
176 static match var_element (gfc_data_variable *);
178 /* Match a list of variables terminated by an iterator and a right
182 var_list (gfc_data_variable *parent)
184 gfc_data_variable *tail, var;
187 m = var_element (&var);
188 if (m == MATCH_ERROR)
193 tail = gfc_get_data_variable ();
200 if (gfc_match_char (',') != MATCH_YES)
203 m = gfc_match_iterator (&parent->iter, 1);
206 if (m == MATCH_ERROR)
209 m = var_element (&var);
210 if (m == MATCH_ERROR)
215 tail->next = gfc_get_data_variable ();
221 if (gfc_match_char (')') != MATCH_YES)
226 gfc_syntax_error (ST_DATA);
231 /* Match a single element in a data variable list, which can be a
232 variable-iterator list. */
235 var_element (gfc_data_variable *new_var)
240 memset (new_var, 0, sizeof (gfc_data_variable));
242 if (gfc_match_char ('(') == MATCH_YES)
243 return var_list (new_var);
245 m = gfc_match_variable (&new_var->expr, 0);
249 sym = new_var->expr->symtree->n.sym;
251 /* Symbol should already have an associated type. */
252 if (gfc_check_symbol_typed (sym, gfc_current_ns,
253 false, gfc_current_locus) == FAILURE)
256 if (!sym->attr.function && gfc_current_ns->parent
257 && gfc_current_ns->parent == sym->ns)
259 gfc_error ("Host associated variable '%s' may not be in the DATA "
260 "statement at %C", sym->name);
264 if (gfc_current_state () != COMP_BLOCK_DATA
265 && sym->attr.in_common
266 && gfc_notify_std (GFC_STD_GNU, "Extension: initialization of "
267 "common block variable '%s' in DATA statement at %C",
268 sym->name) == FAILURE)
271 if (gfc_add_data (&sym->attr, sym->name, &new_var->expr->where) == FAILURE)
278 /* Match the top-level list of data variables. */
281 top_var_list (gfc_data *d)
283 gfc_data_variable var, *tail, *new_var;
290 m = var_element (&var);
293 if (m == MATCH_ERROR)
296 new_var = gfc_get_data_variable ();
302 tail->next = new_var;
306 if (gfc_match_char ('/') == MATCH_YES)
308 if (gfc_match_char (',') != MATCH_YES)
315 gfc_syntax_error (ST_DATA);
316 gfc_free_data_all (gfc_current_ns);
322 match_data_constant (gfc_expr **result)
324 char name[GFC_MAX_SYMBOL_LEN + 1];
330 m = gfc_match_literal_constant (&expr, 1);
337 if (m == MATCH_ERROR)
340 m = gfc_match_null (result);
344 old_loc = gfc_current_locus;
346 /* Should this be a structure component, try to match it
347 before matching a name. */
348 m = gfc_match_rvalue (result);
349 if (m == MATCH_ERROR)
352 if (m == MATCH_YES && (*result)->expr_type == EXPR_STRUCTURE)
354 if (gfc_simplify_expr (*result, 0) == FAILURE)
359 gfc_current_locus = old_loc;
361 m = gfc_match_name (name);
365 if (gfc_find_symbol (name, NULL, 1, &sym))
369 || (sym->attr.flavor != FL_PARAMETER && sym->attr.flavor != FL_DERIVED))
371 gfc_error ("Symbol '%s' must be a PARAMETER in DATA statement at %C",
375 else if (sym->attr.flavor == FL_DERIVED)
376 return gfc_match_structure_constructor (sym, result, false);
378 /* Check to see if the value is an initialization array expression. */
379 if (sym->value->expr_type == EXPR_ARRAY)
381 gfc_current_locus = old_loc;
383 m = gfc_match_init_expr (result);
384 if (m == MATCH_ERROR)
389 if (gfc_simplify_expr (*result, 0) == FAILURE)
392 if ((*result)->expr_type == EXPR_CONSTANT)
396 gfc_error ("Invalid initializer %s in Data statement at %C", name);
402 *result = gfc_copy_expr (sym->value);
407 /* Match a list of values in a DATA statement. The leading '/' has
408 already been seen at this point. */
411 top_val_list (gfc_data *data)
413 gfc_data_value *new_val, *tail;
421 m = match_data_constant (&expr);
424 if (m == MATCH_ERROR)
427 new_val = gfc_get_data_value ();
428 mpz_init (new_val->repeat);
431 data->value = new_val;
433 tail->next = new_val;
437 if (expr->ts.type != BT_INTEGER || gfc_match_char ('*') != MATCH_YES)
440 mpz_set_ui (tail->repeat, 1);
444 if (expr->ts.type == BT_INTEGER)
445 mpz_set (tail->repeat, expr->value.integer);
446 gfc_free_expr (expr);
448 m = match_data_constant (&tail->expr);
451 if (m == MATCH_ERROR)
455 if (gfc_match_char ('/') == MATCH_YES)
457 if (gfc_match_char (',') == MATCH_NO)
464 gfc_syntax_error (ST_DATA);
465 gfc_free_data_all (gfc_current_ns);
470 /* Matches an old style initialization. */
473 match_old_style_init (const char *name)
480 /* Set up data structure to hold initializers. */
481 gfc_find_sym_tree (name, NULL, 0, &st);
484 newdata = gfc_get_data ();
485 newdata->var = gfc_get_data_variable ();
486 newdata->var->expr = gfc_get_variable_expr (st);
487 newdata->where = gfc_current_locus;
489 /* Match initial value list. This also eats the terminal '/'. */
490 m = top_val_list (newdata);
499 gfc_error ("Initialization at %C is not allowed in a PURE procedure");
504 /* Mark the variable as having appeared in a data statement. */
505 if (gfc_add_data (&sym->attr, sym->name, &sym->declared_at) == FAILURE)
511 /* Chain in namespace list of DATA initializers. */
512 newdata->next = gfc_current_ns->data;
513 gfc_current_ns->data = newdata;
519 /* Match the stuff following a DATA statement. If ERROR_FLAG is set,
520 we are matching a DATA statement and are therefore issuing an error
521 if we encounter something unexpected, if not, we're trying to match
522 an old-style initialization expression of the form INTEGER I /2/. */
525 gfc_match_data (void)
530 set_in_match_data (true);
534 new_data = gfc_get_data ();
535 new_data->where = gfc_current_locus;
537 m = top_var_list (new_data);
541 m = top_val_list (new_data);
545 new_data->next = gfc_current_ns->data;
546 gfc_current_ns->data = new_data;
548 if (gfc_match_eos () == MATCH_YES)
551 gfc_match_char (','); /* Optional comma */
554 set_in_match_data (false);
558 gfc_error ("DATA statement at %C is not allowed in a PURE procedure");
565 set_in_match_data (false);
566 gfc_free_data (new_data);
571 /************************ Declaration statements *********************/
574 /* Auxilliary function to merge DIMENSION and CODIMENSION array specs. */
577 merge_array_spec (gfc_array_spec *from, gfc_array_spec *to, bool copy)
581 if (to->rank == 0 && from->rank > 0)
583 to->rank = from->rank;
584 to->type = from->type;
585 to->cray_pointee = from->cray_pointee;
586 to->cp_was_assumed = from->cp_was_assumed;
588 for (i = 0; i < to->corank; i++)
590 to->lower[from->rank + i] = to->lower[i];
591 to->upper[from->rank + i] = to->upper[i];
593 for (i = 0; i < from->rank; i++)
597 to->lower[i] = gfc_copy_expr (from->lower[i]);
598 to->upper[i] = gfc_copy_expr (from->upper[i]);
602 to->lower[i] = from->lower[i];
603 to->upper[i] = from->upper[i];
607 else if (to->corank == 0 && from->corank > 0)
609 to->corank = from->corank;
610 to->cotype = from->cotype;
612 for (i = 0; i < from->corank; i++)
616 to->lower[to->rank + i] = gfc_copy_expr (from->lower[i]);
617 to->upper[to->rank + i] = gfc_copy_expr (from->upper[i]);
621 to->lower[to->rank + i] = from->lower[i];
622 to->upper[to->rank + i] = from->upper[i];
629 /* Match an intent specification. Since this can only happen after an
630 INTENT word, a legal intent-spec must follow. */
633 match_intent_spec (void)
636 if (gfc_match (" ( in out )") == MATCH_YES)
638 if (gfc_match (" ( in )") == MATCH_YES)
640 if (gfc_match (" ( out )") == MATCH_YES)
643 gfc_error ("Bad INTENT specification at %C");
644 return INTENT_UNKNOWN;
648 /* Matches a character length specification, which is either a
649 specification expression or a '*'. */
652 char_len_param_value (gfc_expr **expr)
656 if (gfc_match_char ('*') == MATCH_YES)
662 m = gfc_match_expr (expr);
665 && gfc_expr_check_typed (*expr, gfc_current_ns, false) == FAILURE)
668 if (m == MATCH_YES && (*expr)->expr_type == EXPR_FUNCTION)
670 if ((*expr)->value.function.actual
671 && (*expr)->value.function.actual->expr->symtree)
674 e = (*expr)->value.function.actual->expr;
675 if (e->symtree->n.sym->attr.flavor == FL_PROCEDURE
676 && e->expr_type == EXPR_VARIABLE)
678 if (e->symtree->n.sym->ts.type == BT_UNKNOWN)
680 if (e->symtree->n.sym->ts.type == BT_CHARACTER
681 && e->symtree->n.sym->ts.u.cl
682 && e->symtree->n.sym->ts.u.cl->length->ts.type == BT_UNKNOWN)
690 gfc_error ("Conflict in attributes of function argument at %C");
695 /* A character length is a '*' followed by a literal integer or a
696 char_len_param_value in parenthesis. */
699 match_char_length (gfc_expr **expr)
704 m = gfc_match_char ('*');
708 m = gfc_match_small_literal_int (&length, NULL);
709 if (m == MATCH_ERROR)
714 if (gfc_notify_std (GFC_STD_F95_OBS, "Obsolescent feature: "
715 "Old-style character length at %C") == FAILURE)
717 *expr = gfc_get_int_expr (gfc_default_integer_kind, NULL, length);
721 if (gfc_match_char ('(') == MATCH_NO)
724 m = char_len_param_value (expr);
725 if (m != MATCH_YES && gfc_matching_function)
731 if (m == MATCH_ERROR)
736 if (gfc_match_char (')') == MATCH_NO)
738 gfc_free_expr (*expr);
746 gfc_error ("Syntax error in character length specification at %C");
751 /* Special subroutine for finding a symbol. Check if the name is found
752 in the current name space. If not, and we're compiling a function or
753 subroutine and the parent compilation unit is an interface, then check
754 to see if the name we've been given is the name of the interface
755 (located in another namespace). */
758 find_special (const char *name, gfc_symbol **result, bool allow_subroutine)
764 i = gfc_get_sym_tree (name, NULL, &st, allow_subroutine);
767 *result = st ? st->n.sym : NULL;
771 if (gfc_current_state () != COMP_SUBROUTINE
772 && gfc_current_state () != COMP_FUNCTION)
775 s = gfc_state_stack->previous;
779 if (s->state != COMP_INTERFACE)
782 goto end; /* Nameless interface. */
784 if (strcmp (name, s->sym->name) == 0)
795 /* Special subroutine for getting a symbol node associated with a
796 procedure name, used in SUBROUTINE and FUNCTION statements. The
797 symbol is created in the parent using with symtree node in the
798 child unit pointing to the symbol. If the current namespace has no
799 parent, then the symbol is just created in the current unit. */
802 get_proc_name (const char *name, gfc_symbol **result, bool module_fcn_entry)
808 /* Module functions have to be left in their own namespace because
809 they have potentially (almost certainly!) already been referenced.
810 In this sense, they are rather like external functions. This is
811 fixed up in resolve.c(resolve_entries), where the symbol name-
812 space is set to point to the master function, so that the fake
813 result mechanism can work. */
814 if (module_fcn_entry)
816 /* Present if entry is declared to be a module procedure. */
817 rc = gfc_find_symbol (name, gfc_current_ns->parent, 0, result);
820 rc = gfc_get_symbol (name, NULL, result);
821 else if (!gfc_get_symbol (name, NULL, &sym) && sym
822 && (*result)->ts.type == BT_UNKNOWN
823 && sym->attr.flavor == FL_UNKNOWN)
824 /* Pick up the typespec for the entry, if declared in the function
825 body. Note that this symbol is FL_UNKNOWN because it will
826 only have appeared in a type declaration. The local symtree
827 is set to point to the module symbol and a unique symtree
828 to the local version. This latter ensures a correct clearing
831 /* If the ENTRY proceeds its specification, we need to ensure
832 that this does not raise a "has no IMPLICIT type" error. */
833 if (sym->ts.type == BT_UNKNOWN)
834 sym->attr.untyped = 1;
836 (*result)->ts = sym->ts;
838 /* Put the symbol in the procedure namespace so that, should
839 the ENTRY precede its specification, the specification
841 (*result)->ns = gfc_current_ns;
843 gfc_find_sym_tree (name, gfc_current_ns, 0, &st);
845 st = gfc_get_unique_symtree (gfc_current_ns);
850 rc = gfc_get_symbol (name, gfc_current_ns->parent, result);
856 gfc_current_ns->refs++;
858 if (sym && !sym->gfc_new && gfc_current_state () != COMP_INTERFACE)
860 /* Trap another encompassed procedure with the same name. All
861 these conditions are necessary to avoid picking up an entry
862 whose name clashes with that of the encompassing procedure;
863 this is handled using gsymbols to register unique,globally
865 if (sym->attr.flavor != 0
866 && sym->attr.proc != 0
867 && (sym->attr.subroutine || sym->attr.function)
868 && sym->attr.if_source != IFSRC_UNKNOWN)
869 gfc_error_now ("Procedure '%s' at %C is already defined at %L",
870 name, &sym->declared_at);
872 /* Trap a procedure with a name the same as interface in the
873 encompassing scope. */
874 if (sym->attr.generic != 0
875 && (sym->attr.subroutine || sym->attr.function)
876 && !sym->attr.mod_proc)
877 gfc_error_now ("Name '%s' at %C is already defined"
878 " as a generic interface at %L",
879 name, &sym->declared_at);
881 /* Trap declarations of attributes in encompassing scope. The
882 signature for this is that ts.kind is set. Legitimate
883 references only set ts.type. */
884 if (sym->ts.kind != 0
885 && !sym->attr.implicit_type
886 && sym->attr.proc == 0
887 && gfc_current_ns->parent != NULL
888 && sym->attr.access == 0
889 && !module_fcn_entry)
890 gfc_error_now ("Procedure '%s' at %C has an explicit interface "
891 "and must not have attributes declared at %L",
892 name, &sym->declared_at);
895 if (gfc_current_ns->parent == NULL || *result == NULL)
898 /* Module function entries will already have a symtree in
899 the current namespace but will need one at module level. */
900 if (module_fcn_entry)
902 /* Present if entry is declared to be a module procedure. */
903 rc = gfc_find_sym_tree (name, gfc_current_ns->parent, 0, &st);
905 st = gfc_new_symtree (&gfc_current_ns->parent->sym_root, name);
908 st = gfc_new_symtree (&gfc_current_ns->sym_root, name);
913 /* See if the procedure should be a module procedure. */
915 if (((sym->ns->proc_name != NULL
916 && sym->ns->proc_name->attr.flavor == FL_MODULE
917 && sym->attr.proc != PROC_MODULE)
918 || (module_fcn_entry && sym->attr.proc != PROC_MODULE))
919 && gfc_add_procedure (&sym->attr, PROC_MODULE,
920 sym->name, NULL) == FAILURE)
927 /* Verify that the given symbol representing a parameter is C
928 interoperable, by checking to see if it was marked as such after
929 its declaration. If the given symbol is not interoperable, a
930 warning is reported, thus removing the need to return the status to
931 the calling function. The standard does not require the user use
932 one of the iso_c_binding named constants to declare an
933 interoperable parameter, but we can't be sure if the param is C
934 interop or not if the user doesn't. For example, integer(4) may be
935 legal Fortran, but doesn't have meaning in C. It may interop with
936 a number of the C types, which causes a problem because the
937 compiler can't know which one. This code is almost certainly not
938 portable, and the user will get what they deserve if the C type
939 across platforms isn't always interoperable with integer(4). If
940 the user had used something like integer(c_int) or integer(c_long),
941 the compiler could have automatically handled the varying sizes
945 verify_c_interop_param (gfc_symbol *sym)
947 int is_c_interop = 0;
948 gfc_try retval = SUCCESS;
950 /* We check implicitly typed variables in symbol.c:gfc_set_default_type().
951 Don't repeat the checks here. */
952 if (sym->attr.implicit_type)
955 /* For subroutines or functions that are passed to a BIND(C) procedure,
956 they're interoperable if they're BIND(C) and their params are all
958 if (sym->attr.flavor == FL_PROCEDURE)
960 if (sym->attr.is_bind_c == 0)
962 gfc_error_now ("Procedure '%s' at %L must have the BIND(C) "
963 "attribute to be C interoperable", sym->name,
964 &(sym->declared_at));
970 if (sym->attr.is_c_interop == 1)
971 /* We've already checked this procedure; don't check it again. */
974 return verify_bind_c_sym (sym, &(sym->ts), sym->attr.in_common,
979 /* See if we've stored a reference to a procedure that owns sym. */
980 if (sym->ns != NULL && sym->ns->proc_name != NULL)
982 if (sym->ns->proc_name->attr.is_bind_c == 1)
985 (verify_c_interop (&(sym->ts))
988 if (is_c_interop != 1)
990 /* Make personalized messages to give better feedback. */
991 if (sym->ts.type == BT_DERIVED)
992 gfc_error ("Type '%s' at %L is a parameter to the BIND(C) "
993 " procedure '%s' but is not C interoperable "
994 "because derived type '%s' is not C interoperable",
995 sym->name, &(sym->declared_at),
996 sym->ns->proc_name->name,
997 sym->ts.u.derived->name);
999 gfc_warning ("Variable '%s' at %L is a parameter to the "
1000 "BIND(C) procedure '%s' but may not be C "
1002 sym->name, &(sym->declared_at),
1003 sym->ns->proc_name->name);
1006 /* Character strings are only C interoperable if they have a
1008 if (sym->ts.type == BT_CHARACTER)
1010 gfc_charlen *cl = sym->ts.u.cl;
1011 if (!cl || !cl->length || cl->length->expr_type != EXPR_CONSTANT
1012 || mpz_cmp_si (cl->length->value.integer, 1) != 0)
1014 gfc_error ("Character argument '%s' at %L "
1015 "must be length 1 because "
1016 "procedure '%s' is BIND(C)",
1017 sym->name, &sym->declared_at,
1018 sym->ns->proc_name->name);
1023 /* We have to make sure that any param to a bind(c) routine does
1024 not have the allocatable, pointer, or optional attributes,
1025 according to J3/04-007, section 5.1. */
1026 if (sym->attr.allocatable == 1)
1028 gfc_error ("Variable '%s' at %L cannot have the "
1029 "ALLOCATABLE attribute because procedure '%s'"
1030 " is BIND(C)", sym->name, &(sym->declared_at),
1031 sym->ns->proc_name->name);
1035 if (sym->attr.pointer == 1)
1037 gfc_error ("Variable '%s' at %L cannot have the "
1038 "POINTER attribute because procedure '%s'"
1039 " is BIND(C)", sym->name, &(sym->declared_at),
1040 sym->ns->proc_name->name);
1044 if (sym->attr.optional == 1)
1046 gfc_error ("Variable '%s' at %L cannot have the "
1047 "OPTIONAL attribute because procedure '%s'"
1048 " is BIND(C)", sym->name, &(sym->declared_at),
1049 sym->ns->proc_name->name);
1053 /* Make sure that if it has the dimension attribute, that it is
1054 either assumed size or explicit shape. */
1055 if (sym->as != NULL)
1057 if (sym->as->type == AS_ASSUMED_SHAPE)
1059 gfc_error ("Assumed-shape array '%s' at %L cannot be an "
1060 "argument to the procedure '%s' at %L because "
1061 "the procedure is BIND(C)", sym->name,
1062 &(sym->declared_at), sym->ns->proc_name->name,
1063 &(sym->ns->proc_name->declared_at));
1067 if (sym->as->type == AS_DEFERRED)
1069 gfc_error ("Deferred-shape array '%s' at %L cannot be an "
1070 "argument to the procedure '%s' at %L because "
1071 "the procedure is BIND(C)", sym->name,
1072 &(sym->declared_at), sym->ns->proc_name->name,
1073 &(sym->ns->proc_name->declared_at));
1085 /* Function called by variable_decl() that adds a name to the symbol table. */
1088 build_sym (const char *name, gfc_charlen *cl,
1089 gfc_array_spec **as, locus *var_locus)
1091 symbol_attribute attr;
1094 if (gfc_get_symbol (name, NULL, &sym))
1097 /* Start updating the symbol table. Add basic type attribute if present. */
1098 if (current_ts.type != BT_UNKNOWN
1099 && (sym->attr.implicit_type == 0
1100 || !gfc_compare_types (&sym->ts, ¤t_ts))
1101 && gfc_add_type (sym, ¤t_ts, var_locus) == FAILURE)
1104 if (sym->ts.type == BT_CHARACTER)
1107 /* Add dimension attribute if present. */
1108 if (gfc_set_array_spec (sym, *as, var_locus) == FAILURE)
1112 /* Add attribute to symbol. The copy is so that we can reset the
1113 dimension attribute. */
1114 attr = current_attr;
1116 attr.codimension = 0;
1118 if (gfc_copy_attr (&sym->attr, &attr, var_locus) == FAILURE)
1121 /* Finish any work that may need to be done for the binding label,
1122 if it's a bind(c). The bind(c) attr is found before the symbol
1123 is made, and before the symbol name (for data decls), so the
1124 current_ts is holding the binding label, or nothing if the
1125 name= attr wasn't given. Therefore, test here if we're dealing
1126 with a bind(c) and make sure the binding label is set correctly. */
1127 if (sym->attr.is_bind_c == 1)
1129 if (sym->binding_label[0] == '\0')
1131 /* Set the binding label and verify that if a NAME= was specified
1132 then only one identifier was in the entity-decl-list. */
1133 if (set_binding_label (sym->binding_label, sym->name,
1134 num_idents_on_line) == FAILURE)
1139 /* See if we know we're in a common block, and if it's a bind(c)
1140 common then we need to make sure we're an interoperable type. */
1141 if (sym->attr.in_common == 1)
1143 /* Test the common block object. */
1144 if (sym->common_block != NULL && sym->common_block->is_bind_c == 1
1145 && sym->ts.is_c_interop != 1)
1147 gfc_error_now ("Variable '%s' in common block '%s' at %C "
1148 "must be declared with a C interoperable "
1149 "kind since common block '%s' is BIND(C)",
1150 sym->name, sym->common_block->name,
1151 sym->common_block->name);
1156 sym->attr.implied_index = 0;
1158 if (sym->ts.type == BT_CLASS)
1160 sym->attr.class_ok = (sym->attr.dummy
1161 || sym->attr.pointer
1162 || sym->attr.allocatable) ? 1 : 0;
1163 gfc_build_class_symbol (&sym->ts, &sym->attr, &sym->as, false);
1170 /* Set character constant to the given length. The constant will be padded or
1171 truncated. If we're inside an array constructor without a typespec, we
1172 additionally check that all elements have the same length; check_len -1
1173 means no checking. */
1176 gfc_set_constant_character_len (int len, gfc_expr *expr, int check_len)
1181 gcc_assert (expr->expr_type == EXPR_CONSTANT);
1182 gcc_assert (expr->ts.type == BT_CHARACTER);
1184 slen = expr->value.character.length;
1187 s = gfc_get_wide_string (len + 1);
1188 memcpy (s, expr->value.character.string,
1189 MIN (len, slen) * sizeof (gfc_char_t));
1191 gfc_wide_memset (&s[slen], ' ', len - slen);
1193 if (gfc_option.warn_character_truncation && slen > len)
1194 gfc_warning_now ("CHARACTER expression at %L is being truncated "
1195 "(%d/%d)", &expr->where, slen, len);
1197 /* Apply the standard by 'hand' otherwise it gets cleared for
1199 if (check_len != -1 && slen != check_len
1200 && !(gfc_option.allow_std & GFC_STD_GNU))
1201 gfc_error_now ("The CHARACTER elements of the array constructor "
1202 "at %L must have the same length (%d/%d)",
1203 &expr->where, slen, check_len);
1206 gfc_free (expr->value.character.string);
1207 expr->value.character.string = s;
1208 expr->value.character.length = len;
1213 /* Function to create and update the enumerator history
1214 using the information passed as arguments.
1215 Pointer "max_enum" is also updated, to point to
1216 enum history node containing largest initializer.
1218 SYM points to the symbol node of enumerator.
1219 INIT points to its enumerator value. */
1222 create_enum_history (gfc_symbol *sym, gfc_expr *init)
1224 enumerator_history *new_enum_history;
1225 gcc_assert (sym != NULL && init != NULL);
1227 new_enum_history = XCNEW (enumerator_history);
1229 new_enum_history->sym = sym;
1230 new_enum_history->initializer = init;
1231 new_enum_history->next = NULL;
1233 if (enum_history == NULL)
1235 enum_history = new_enum_history;
1236 max_enum = enum_history;
1240 new_enum_history->next = enum_history;
1241 enum_history = new_enum_history;
1243 if (mpz_cmp (max_enum->initializer->value.integer,
1244 new_enum_history->initializer->value.integer) < 0)
1245 max_enum = new_enum_history;
1250 /* Function to free enum kind history. */
1253 gfc_free_enum_history (void)
1255 enumerator_history *current = enum_history;
1256 enumerator_history *next;
1258 while (current != NULL)
1260 next = current->next;
1265 enum_history = NULL;
1269 /* Function called by variable_decl() that adds an initialization
1270 expression to a symbol. */
1273 add_init_expr_to_sym (const char *name, gfc_expr **initp, locus *var_locus)
1275 symbol_attribute attr;
1280 if (find_special (name, &sym, false))
1285 /* If this symbol is confirming an implicit parameter type,
1286 then an initialization expression is not allowed. */
1287 if (attr.flavor == FL_PARAMETER
1288 && sym->value != NULL
1291 gfc_error ("Initializer not allowed for PARAMETER '%s' at %C",
1298 /* An initializer is required for PARAMETER declarations. */
1299 if (attr.flavor == FL_PARAMETER)
1301 gfc_error ("PARAMETER at %L is missing an initializer", var_locus);
1307 /* If a variable appears in a DATA block, it cannot have an
1311 gfc_error ("Variable '%s' at %C with an initializer already "
1312 "appears in a DATA statement", sym->name);
1316 /* Check if the assignment can happen. This has to be put off
1317 until later for a derived type variable. */
1318 if (sym->ts.type != BT_DERIVED && init->ts.type != BT_DERIVED
1319 && sym->ts.type != BT_CLASS && init->ts.type != BT_CLASS
1320 && gfc_check_assign_symbol (sym, init) == FAILURE)
1323 if (sym->ts.type == BT_CHARACTER && sym->ts.u.cl
1324 && init->ts.type == BT_CHARACTER)
1326 /* Update symbol character length according initializer. */
1327 if (gfc_check_assign_symbol (sym, init) == FAILURE)
1330 if (sym->ts.u.cl->length == NULL)
1333 /* If there are multiple CHARACTER variables declared on the
1334 same line, we don't want them to share the same length. */
1335 sym->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
1337 if (sym->attr.flavor == FL_PARAMETER)
1339 if (init->expr_type == EXPR_CONSTANT)
1341 clen = init->value.character.length;
1342 sym->ts.u.cl->length
1343 = gfc_get_int_expr (gfc_default_integer_kind,
1346 else if (init->expr_type == EXPR_ARRAY)
1349 c = gfc_constructor_first (init->value.constructor);
1350 clen = c->expr->value.character.length;
1351 sym->ts.u.cl->length
1352 = gfc_get_int_expr (gfc_default_integer_kind,
1355 else if (init->ts.u.cl && init->ts.u.cl->length)
1356 sym->ts.u.cl->length =
1357 gfc_copy_expr (sym->value->ts.u.cl->length);
1360 /* Update initializer character length according symbol. */
1361 else if (sym->ts.u.cl->length->expr_type == EXPR_CONSTANT)
1363 int len = mpz_get_si (sym->ts.u.cl->length->value.integer);
1365 if (init->expr_type == EXPR_CONSTANT)
1366 gfc_set_constant_character_len (len, init, -1);
1367 else if (init->expr_type == EXPR_ARRAY)
1371 /* Build a new charlen to prevent simplification from
1372 deleting the length before it is resolved. */
1373 init->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
1374 init->ts.u.cl->length = gfc_copy_expr (sym->ts.u.cl->length);
1376 for (c = gfc_constructor_first (init->value.constructor);
1377 c; c = gfc_constructor_next (c))
1378 gfc_set_constant_character_len (len, c->expr, -1);
1383 /* Need to check if the expression we initialized this
1384 to was one of the iso_c_binding named constants. If so,
1385 and we're a parameter (constant), let it be iso_c.
1387 integer(c_int), parameter :: my_int = c_int
1388 integer(my_int) :: my_int_2
1389 If we mark my_int as iso_c (since we can see it's value
1390 is equal to one of the named constants), then my_int_2
1391 will be considered C interoperable. */
1392 if (sym->ts.type != BT_CHARACTER && sym->ts.type != BT_DERIVED)
1394 sym->ts.is_iso_c |= init->ts.is_iso_c;
1395 sym->ts.is_c_interop |= init->ts.is_c_interop;
1396 /* attr bits needed for module files. */
1397 sym->attr.is_iso_c |= init->ts.is_iso_c;
1398 sym->attr.is_c_interop |= init->ts.is_c_interop;
1399 if (init->ts.is_iso_c)
1400 sym->ts.f90_type = init->ts.f90_type;
1403 /* Add initializer. Make sure we keep the ranks sane. */
1404 if (sym->attr.dimension && init->rank == 0)
1409 if (sym->attr.flavor == FL_PARAMETER
1410 && init->expr_type == EXPR_CONSTANT
1411 && spec_size (sym->as, &size) == SUCCESS
1412 && mpz_cmp_si (size, 0) > 0)
1414 array = gfc_get_array_expr (init->ts.type, init->ts.kind,
1416 for (n = 0; n < (int)mpz_get_si (size); n++)
1417 gfc_constructor_append_expr (&array->value.constructor,
1420 : gfc_copy_expr (init),
1423 array->shape = gfc_get_shape (sym->as->rank);
1424 for (n = 0; n < sym->as->rank; n++)
1425 spec_dimen_size (sym->as, n, &array->shape[n]);
1430 init->rank = sym->as->rank;
1434 if (sym->attr.save == SAVE_NONE)
1435 sym->attr.save = SAVE_IMPLICIT;
1443 /* Function called by variable_decl() that adds a name to a structure
1447 build_struct (const char *name, gfc_charlen *cl, gfc_expr **init,
1448 gfc_array_spec **as)
1451 gfc_try t = SUCCESS;
1453 /* F03:C438/C439. If the current symbol is of the same derived type that we're
1454 constructing, it must have the pointer attribute. */
1455 if ((current_ts.type == BT_DERIVED || current_ts.type == BT_CLASS)
1456 && current_ts.u.derived == gfc_current_block ()
1457 && current_attr.pointer == 0)
1459 gfc_error ("Component at %C must have the POINTER attribute");
1463 if (gfc_current_block ()->attr.pointer && (*as)->rank != 0)
1465 if ((*as)->type != AS_DEFERRED && (*as)->type != AS_EXPLICIT)
1467 gfc_error ("Array component of structure at %C must have explicit "
1468 "or deferred shape");
1473 if (gfc_add_component (gfc_current_block (), name, &c) == FAILURE)
1477 if (c->ts.type == BT_CHARACTER)
1479 c->attr = current_attr;
1481 c->initializer = *init;
1488 c->attr.codimension = 1;
1490 c->attr.dimension = 1;
1494 /* Should this ever get more complicated, combine with similar section
1495 in add_init_expr_to_sym into a separate function. */
1496 if (c->ts.type == BT_CHARACTER && !c->attr.pointer && c->initializer && c->ts.u.cl
1497 && c->ts.u.cl->length && c->ts.u.cl->length->expr_type == EXPR_CONSTANT)
1501 gcc_assert (c->ts.u.cl && c->ts.u.cl->length);
1502 gcc_assert (c->ts.u.cl->length->expr_type == EXPR_CONSTANT);
1503 gcc_assert (c->ts.u.cl->length->ts.type == BT_INTEGER);
1505 len = mpz_get_si (c->ts.u.cl->length->value.integer);
1507 if (c->initializer->expr_type == EXPR_CONSTANT)
1508 gfc_set_constant_character_len (len, c->initializer, -1);
1509 else if (mpz_cmp (c->ts.u.cl->length->value.integer,
1510 c->initializer->ts.u.cl->length->value.integer))
1512 gfc_constructor *ctor;
1513 ctor = gfc_constructor_first (c->initializer->value.constructor);
1518 bool has_ts = (c->initializer->ts.u.cl
1519 && c->initializer->ts.u.cl->length_from_typespec);
1521 /* Remember the length of the first element for checking
1522 that all elements *in the constructor* have the same
1523 length. This need not be the length of the LHS! */
1524 gcc_assert (ctor->expr->expr_type == EXPR_CONSTANT);
1525 gcc_assert (ctor->expr->ts.type == BT_CHARACTER);
1526 first_len = ctor->expr->value.character.length;
1528 for ( ; ctor; ctor = gfc_constructor_next (ctor))
1529 if (ctor->expr->expr_type == EXPR_CONSTANT)
1531 gfc_set_constant_character_len (len, ctor->expr,
1532 has_ts ? -1 : first_len);
1533 ctor->expr->ts.u.cl->length = gfc_copy_expr (c->ts.u.cl->length);
1539 /* Check array components. */
1540 if (!c->attr.dimension)
1543 if (c->attr.pointer)
1545 if (c->as->type != AS_DEFERRED)
1547 gfc_error ("Pointer array component of structure at %C must have a "
1552 else if (c->attr.allocatable)
1554 if (c->as->type != AS_DEFERRED)
1556 gfc_error ("Allocatable component of structure at %C must have a "
1563 if (c->as->type != AS_EXPLICIT)
1565 gfc_error ("Array component of structure at %C must have an "
1572 if (c->ts.type == BT_CLASS)
1573 gfc_build_class_symbol (&c->ts, &c->attr, &c->as, true);
1579 /* Match a 'NULL()', and possibly take care of some side effects. */
1582 gfc_match_null (gfc_expr **result)
1587 m = gfc_match (" null ( )");
1591 /* The NULL symbol now has to be/become an intrinsic function. */
1592 if (gfc_get_symbol ("null", NULL, &sym))
1594 gfc_error ("NULL() initialization at %C is ambiguous");
1598 gfc_intrinsic_symbol (sym);
1600 if (sym->attr.proc != PROC_INTRINSIC
1601 && (gfc_add_procedure (&sym->attr, PROC_INTRINSIC,
1602 sym->name, NULL) == FAILURE
1603 || gfc_add_function (&sym->attr, sym->name, NULL) == FAILURE))
1606 *result = gfc_get_null_expr (&gfc_current_locus);
1612 /* Match a variable name with an optional initializer. When this
1613 subroutine is called, a variable is expected to be parsed next.
1614 Depending on what is happening at the moment, updates either the
1615 symbol table or the current interface. */
1618 variable_decl (int elem)
1620 char name[GFC_MAX_SYMBOL_LEN + 1];
1621 gfc_expr *initializer, *char_len;
1623 gfc_array_spec *cp_as; /* Extra copy for Cray Pointees. */
1634 /* When we get here, we've just matched a list of attributes and
1635 maybe a type and a double colon. The next thing we expect to see
1636 is the name of the symbol. */
1637 m = gfc_match_name (name);
1641 var_locus = gfc_current_locus;
1643 /* Now we could see the optional array spec. or character length. */
1644 m = gfc_match_array_spec (&as, true, true);
1645 if (gfc_option.flag_cray_pointer && m == MATCH_YES)
1646 cp_as = gfc_copy_array_spec (as);
1647 else if (m == MATCH_ERROR)
1651 as = gfc_copy_array_spec (current_as);
1652 else if (current_as)
1653 merge_array_spec (current_as, as, true);
1658 if (current_ts.type == BT_CHARACTER)
1660 switch (match_char_length (&char_len))
1663 cl = gfc_new_charlen (gfc_current_ns, NULL);
1665 cl->length = char_len;
1668 /* Non-constant lengths need to be copied after the first
1669 element. Also copy assumed lengths. */
1672 && (current_ts.u.cl->length == NULL
1673 || current_ts.u.cl->length->expr_type != EXPR_CONSTANT))
1675 cl = gfc_new_charlen (gfc_current_ns, NULL);
1676 cl->length = gfc_copy_expr (current_ts.u.cl->length);
1679 cl = current_ts.u.cl;
1688 /* If this symbol has already shown up in a Cray Pointer declaration,
1689 then we want to set the type & bail out. */
1690 if (gfc_option.flag_cray_pointer)
1692 gfc_find_symbol (name, gfc_current_ns, 1, &sym);
1693 if (sym != NULL && sym->attr.cray_pointee)
1695 sym->ts.type = current_ts.type;
1696 sym->ts.kind = current_ts.kind;
1698 sym->ts.u.derived = current_ts.u.derived;
1699 sym->ts.is_c_interop = current_ts.is_c_interop;
1700 sym->ts.is_iso_c = current_ts.is_iso_c;
1703 /* Check to see if we have an array specification. */
1706 if (sym->as != NULL)
1708 gfc_error ("Duplicate array spec for Cray pointee at %C");
1709 gfc_free_array_spec (cp_as);
1715 if (gfc_set_array_spec (sym, cp_as, &var_locus) == FAILURE)
1716 gfc_internal_error ("Couldn't set pointee array spec.");
1718 /* Fix the array spec. */
1719 m = gfc_mod_pointee_as (sym->as);
1720 if (m == MATCH_ERROR)
1728 gfc_free_array_spec (cp_as);
1732 /* Procedure pointer as function result. */
1733 if (gfc_current_state () == COMP_FUNCTION
1734 && strcmp ("ppr@", gfc_current_block ()->name) == 0
1735 && strcmp (name, gfc_current_block ()->ns->proc_name->name) == 0)
1736 strcpy (name, "ppr@");
1738 if (gfc_current_state () == COMP_FUNCTION
1739 && strcmp (name, gfc_current_block ()->name) == 0
1740 && gfc_current_block ()->result
1741 && strcmp ("ppr@", gfc_current_block ()->result->name) == 0)
1742 strcpy (name, "ppr@");
1744 /* OK, we've successfully matched the declaration. Now put the
1745 symbol in the current namespace, because it might be used in the
1746 optional initialization expression for this symbol, e.g. this is
1749 integer, parameter :: i = huge(i)
1751 This is only true for parameters or variables of a basic type.
1752 For components of derived types, it is not true, so we don't
1753 create a symbol for those yet. If we fail to create the symbol,
1755 if (gfc_current_state () != COMP_DERIVED
1756 && build_sym (name, cl, &as, &var_locus) == FAILURE)
1762 /* An interface body specifies all of the procedure's
1763 characteristics and these shall be consistent with those
1764 specified in the procedure definition, except that the interface
1765 may specify a procedure that is not pure if the procedure is
1766 defined to be pure(12.3.2). */
1767 if (current_ts.type == BT_DERIVED
1768 && gfc_current_ns->proc_name
1769 && gfc_current_ns->proc_name->attr.if_source == IFSRC_IFBODY
1770 && current_ts.u.derived->ns != gfc_current_ns)
1773 st = gfc_find_symtree (gfc_current_ns->sym_root, current_ts.u.derived->name);
1774 if (!(current_ts.u.derived->attr.imported
1776 && st->n.sym == current_ts.u.derived)
1777 && !gfc_current_ns->has_import_set)
1779 gfc_error ("the type of '%s' at %C has not been declared within the "
1786 /* In functions that have a RESULT variable defined, the function
1787 name always refers to function calls. Therefore, the name is
1788 not allowed to appear in specification statements. */
1789 if (gfc_current_state () == COMP_FUNCTION
1790 && gfc_current_block () != NULL
1791 && gfc_current_block ()->result != NULL
1792 && gfc_current_block ()->result != gfc_current_block ()
1793 && strcmp (gfc_current_block ()->name, name) == 0)
1795 gfc_error ("Function name '%s' not allowed at %C", name);
1800 /* We allow old-style initializations of the form
1801 integer i /2/, j(4) /3*3, 1/
1802 (if no colon has been seen). These are different from data
1803 statements in that initializers are only allowed to apply to the
1804 variable immediately preceding, i.e.
1806 is not allowed. Therefore we have to do some work manually, that
1807 could otherwise be left to the matchers for DATA statements. */
1809 if (!colon_seen && gfc_match (" /") == MATCH_YES)
1811 if (gfc_notify_std (GFC_STD_GNU, "Extension: Old-style "
1812 "initialization at %C") == FAILURE)
1815 return match_old_style_init (name);
1818 /* The double colon must be present in order to have initializers.
1819 Otherwise the statement is ambiguous with an assignment statement. */
1822 if (gfc_match (" =>") == MATCH_YES)
1824 if (!current_attr.pointer)
1826 gfc_error ("Initialization at %C isn't for a pointer variable");
1831 m = gfc_match_null (&initializer);
1834 gfc_error ("Pointer initialization requires a NULL() at %C");
1838 if (gfc_pure (NULL) && gfc_state_stack->state != COMP_DERIVED)
1840 gfc_error ("Initialization of pointer at %C is not allowed in "
1841 "a PURE procedure");
1849 else if (gfc_match_char ('=') == MATCH_YES)
1851 if (current_attr.pointer)
1853 gfc_error ("Pointer initialization at %C requires '=>', "
1859 m = gfc_match_init_expr (&initializer);
1862 gfc_error ("Expected an initialization expression at %C");
1866 if (current_attr.flavor != FL_PARAMETER && gfc_pure (NULL)
1867 && gfc_state_stack->state != COMP_DERIVED)
1869 gfc_error ("Initialization of variable at %C is not allowed in "
1870 "a PURE procedure");
1879 if (initializer != NULL && current_attr.allocatable
1880 && gfc_current_state () == COMP_DERIVED)
1882 gfc_error ("Initialization of allocatable component at %C is not "
1888 /* Add the initializer. Note that it is fine if initializer is
1889 NULL here, because we sometimes also need to check if a
1890 declaration *must* have an initialization expression. */
1891 if (gfc_current_state () != COMP_DERIVED)
1892 t = add_init_expr_to_sym (name, &initializer, &var_locus);
1895 if (current_ts.type == BT_DERIVED
1896 && !current_attr.pointer && !initializer)
1897 initializer = gfc_default_initializer (¤t_ts);
1898 t = build_struct (name, cl, &initializer, &as);
1901 m = (t == SUCCESS) ? MATCH_YES : MATCH_ERROR;
1904 /* Free stuff up and return. */
1905 gfc_free_expr (initializer);
1906 gfc_free_array_spec (as);
1912 /* Match an extended-f77 "TYPESPEC*bytesize"-style kind specification.
1913 This assumes that the byte size is equal to the kind number for
1914 non-COMPLEX types, and equal to twice the kind number for COMPLEX. */
1917 gfc_match_old_kind_spec (gfc_typespec *ts)
1922 if (gfc_match_char ('*') != MATCH_YES)
1925 m = gfc_match_small_literal_int (&ts->kind, NULL);
1929 original_kind = ts->kind;
1931 /* Massage the kind numbers for complex types. */
1932 if (ts->type == BT_COMPLEX)
1936 gfc_error ("Old-style type declaration %s*%d not supported at %C",
1937 gfc_basic_typename (ts->type), original_kind);
1943 if (gfc_validate_kind (ts->type, ts->kind, true) < 0)
1945 gfc_error ("Old-style type declaration %s*%d not supported at %C",
1946 gfc_basic_typename (ts->type), original_kind);
1950 if (gfc_notify_std (GFC_STD_GNU, "Nonstandard type declaration %s*%d at %C",
1951 gfc_basic_typename (ts->type), original_kind) == FAILURE)
1958 /* Match a kind specification. Since kinds are generally optional, we
1959 usually return MATCH_NO if something goes wrong. If a "kind="
1960 string is found, then we know we have an error. */
1963 gfc_match_kind_spec (gfc_typespec *ts, bool kind_expr_only)
1975 where = loc = gfc_current_locus;
1980 if (gfc_match_char ('(') == MATCH_NO)
1983 /* Also gobbles optional text. */
1984 if (gfc_match (" kind = ") == MATCH_YES)
1987 loc = gfc_current_locus;
1990 n = gfc_match_init_expr (&e);
1994 if (gfc_matching_function)
1996 /* The function kind expression might include use associated or
1997 imported parameters and try again after the specification
1999 if (gfc_match_char (')') != MATCH_YES)
2001 gfc_error ("Missing right parenthesis at %C");
2007 gfc_undo_symbols ();
2012 /* ....or else, the match is real. */
2014 gfc_error ("Expected initialization expression at %C");
2022 gfc_error ("Expected scalar initialization expression at %C");
2027 msg = gfc_extract_int (e, &ts->kind);
2036 /* Before throwing away the expression, let's see if we had a
2037 C interoperable kind (and store the fact). */
2038 if (e->ts.is_c_interop == 1)
2040 /* Mark this as c interoperable if being declared with one
2041 of the named constants from iso_c_binding. */
2042 ts->is_c_interop = e->ts.is_iso_c;
2043 ts->f90_type = e->ts.f90_type;
2049 /* Ignore errors to this point, if we've gotten here. This means
2050 we ignore the m=MATCH_ERROR from above. */
2051 if (gfc_validate_kind (ts->type, ts->kind, true) < 0)
2053 gfc_error ("Kind %d not supported for type %s at %C", ts->kind,
2054 gfc_basic_typename (ts->type));
2055 gfc_current_locus = where;
2059 /* Warn if, e.g., c_int is used for a REAL variable, but not
2060 if, e.g., c_double is used for COMPLEX as the standard
2061 explicitly says that the kind type parameter for complex and real
2062 variable is the same, i.e. c_float == c_float_complex. */
2063 if (ts->f90_type != BT_UNKNOWN && ts->f90_type != ts->type
2064 && !((ts->f90_type == BT_REAL && ts->type == BT_COMPLEX)
2065 || (ts->f90_type == BT_COMPLEX && ts->type == BT_REAL)))
2066 gfc_warning_now ("C kind type parameter is for type %s but type at %L "
2067 "is %s", gfc_basic_typename (ts->f90_type), &where,
2068 gfc_basic_typename (ts->type));
2070 gfc_gobble_whitespace ();
2071 if ((c = gfc_next_ascii_char ()) != ')'
2072 && (ts->type != BT_CHARACTER || c != ','))
2074 if (ts->type == BT_CHARACTER)
2075 gfc_error ("Missing right parenthesis or comma at %C");
2077 gfc_error ("Missing right parenthesis at %C");
2081 /* All tests passed. */
2084 if(m == MATCH_ERROR)
2085 gfc_current_locus = where;
2087 /* Return what we know from the test(s). */
2092 gfc_current_locus = where;
2098 match_char_kind (int * kind, int * is_iso_c)
2107 where = gfc_current_locus;
2109 n = gfc_match_init_expr (&e);
2111 if (n != MATCH_YES && gfc_matching_function)
2113 /* The expression might include use-associated or imported
2114 parameters and try again after the specification
2117 gfc_undo_symbols ();
2122 gfc_error ("Expected initialization expression at %C");
2128 gfc_error ("Expected scalar initialization expression at %C");
2133 msg = gfc_extract_int (e, kind);
2134 *is_iso_c = e->ts.is_iso_c;
2144 /* Ignore errors to this point, if we've gotten here. This means
2145 we ignore the m=MATCH_ERROR from above. */
2146 if (gfc_validate_kind (BT_CHARACTER, *kind, true) < 0)
2148 gfc_error ("Kind %d is not supported for CHARACTER at %C", *kind);
2152 /* All tests passed. */
2155 if (m == MATCH_ERROR)
2156 gfc_current_locus = where;
2158 /* Return what we know from the test(s). */
2163 gfc_current_locus = where;
2168 /* Match the various kind/length specifications in a CHARACTER
2169 declaration. We don't return MATCH_NO. */
2172 gfc_match_char_spec (gfc_typespec *ts)
2174 int kind, seen_length, is_iso_c;
2184 /* Try the old-style specification first. */
2185 old_char_selector = 0;
2187 m = match_char_length (&len);
2191 old_char_selector = 1;
2196 m = gfc_match_char ('(');
2199 m = MATCH_YES; /* Character without length is a single char. */
2203 /* Try the weird case: ( KIND = <int> [ , LEN = <len-param> ] ). */
2204 if (gfc_match (" kind =") == MATCH_YES)
2206 m = match_char_kind (&kind, &is_iso_c);
2208 if (m == MATCH_ERROR)
2213 if (gfc_match (" , len =") == MATCH_NO)
2216 m = char_len_param_value (&len);
2219 if (m == MATCH_ERROR)
2226 /* Try to match "LEN = <len-param>" or "LEN = <len-param>, KIND = <int>". */
2227 if (gfc_match (" len =") == MATCH_YES)
2229 m = char_len_param_value (&len);
2232 if (m == MATCH_ERROR)
2236 if (gfc_match_char (')') == MATCH_YES)
2239 if (gfc_match (" , kind =") != MATCH_YES)
2242 if (match_char_kind (&kind, &is_iso_c) == MATCH_ERROR)
2248 /* Try to match ( <len-param> ) or ( <len-param> , [ KIND = ] <int> ). */
2249 m = char_len_param_value (&len);
2252 if (m == MATCH_ERROR)
2256 m = gfc_match_char (')');
2260 if (gfc_match_char (',') != MATCH_YES)
2263 gfc_match (" kind ="); /* Gobble optional text. */
2265 m = match_char_kind (&kind, &is_iso_c);
2266 if (m == MATCH_ERROR)
2272 /* Require a right-paren at this point. */
2273 m = gfc_match_char (')');
2278 gfc_error ("Syntax error in CHARACTER declaration at %C");
2280 gfc_free_expr (len);
2284 /* Deal with character functions after USE and IMPORT statements. */
2285 if (gfc_matching_function)
2287 gfc_free_expr (len);
2288 gfc_undo_symbols ();
2294 gfc_free_expr (len);
2298 /* Do some final massaging of the length values. */
2299 cl = gfc_new_charlen (gfc_current_ns, NULL);
2301 if (seen_length == 0)
2302 cl->length = gfc_get_int_expr (gfc_default_integer_kind, NULL, 1);
2307 ts->kind = kind == 0 ? gfc_default_character_kind : kind;
2309 /* We have to know if it was a c interoperable kind so we can
2310 do accurate type checking of bind(c) procs, etc. */
2312 /* Mark this as c interoperable if being declared with one
2313 of the named constants from iso_c_binding. */
2314 ts->is_c_interop = is_iso_c;
2315 else if (len != NULL)
2316 /* Here, we might have parsed something such as: character(c_char)
2317 In this case, the parsing code above grabs the c_char when
2318 looking for the length (line 1690, roughly). it's the last
2319 testcase for parsing the kind params of a character variable.
2320 However, it's not actually the length. this seems like it
2322 To see if the user used a C interop kind, test the expr
2323 of the so called length, and see if it's C interoperable. */
2324 ts->is_c_interop = len->ts.is_iso_c;
2330 /* Matches a declaration-type-spec (F03:R502). If successful, sets the ts
2331 structure to the matched specification. This is necessary for FUNCTION and
2332 IMPLICIT statements.
2334 If implicit_flag is nonzero, then we don't check for the optional
2335 kind specification. Not doing so is needed for matching an IMPLICIT
2336 statement correctly. */
2339 gfc_match_decl_type_spec (gfc_typespec *ts, int implicit_flag)
2341 char name[GFC_MAX_SYMBOL_LEN + 1];
2345 bool seen_deferred_kind;
2347 /* A belt and braces check that the typespec is correctly being treated
2348 as a deferred characteristic association. */
2349 seen_deferred_kind = (gfc_current_state () == COMP_FUNCTION)
2350 && (gfc_current_block ()->result->ts.kind == -1)
2351 && (ts->kind == -1);
2353 if (seen_deferred_kind)
2356 /* Clear the current binding label, in case one is given. */
2357 curr_binding_label[0] = '\0';
2359 if (gfc_match (" byte") == MATCH_YES)
2361 if (gfc_notify_std (GFC_STD_GNU, "Extension: BYTE type at %C")
2365 if (gfc_validate_kind (BT_INTEGER, 1, true) < 0)
2367 gfc_error ("BYTE type used at %C "
2368 "is not available on the target machine");
2372 ts->type = BT_INTEGER;
2377 if (gfc_match (" integer") == MATCH_YES)
2379 ts->type = BT_INTEGER;
2380 ts->kind = gfc_default_integer_kind;
2384 if (gfc_match (" character") == MATCH_YES)
2386 ts->type = BT_CHARACTER;
2387 if (implicit_flag == 0)
2388 return gfc_match_char_spec (ts);
2393 if (gfc_match (" real") == MATCH_YES)
2396 ts->kind = gfc_default_real_kind;
2400 if (gfc_match (" double precision") == MATCH_YES)
2403 ts->kind = gfc_default_double_kind;
2407 if (gfc_match (" complex") == MATCH_YES)
2409 ts->type = BT_COMPLEX;
2410 ts->kind = gfc_default_complex_kind;
2414 if (gfc_match (" double complex") == MATCH_YES)
2416 if (gfc_notify_std (GFC_STD_GNU, "DOUBLE COMPLEX at %C does not "
2417 "conform to the Fortran 95 standard") == FAILURE)
2420 ts->type = BT_COMPLEX;
2421 ts->kind = gfc_default_double_kind;
2425 if (gfc_match (" logical") == MATCH_YES)
2427 ts->type = BT_LOGICAL;
2428 ts->kind = gfc_default_logical_kind;
2432 m = gfc_match (" type ( %n )", name);
2434 ts->type = BT_DERIVED;
2437 m = gfc_match (" class ( %n )", name);
2440 ts->type = BT_CLASS;
2442 if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: CLASS statement at %C")
2447 /* Defer association of the derived type until the end of the
2448 specification block. However, if the derived type can be
2449 found, add it to the typespec. */
2450 if (gfc_matching_function)
2452 ts->u.derived = NULL;
2453 if (gfc_current_state () != COMP_INTERFACE
2454 && !gfc_find_symbol (name, NULL, 1, &sym) && sym)
2455 ts->u.derived = sym;
2459 /* Search for the name but allow the components to be defined later. If
2460 type = -1, this typespec has been seen in a function declaration but
2461 the type could not be accessed at that point. */
2463 if (ts->kind != -1 && gfc_get_ha_symbol (name, &sym))
2465 gfc_error ("Type name '%s' at %C is ambiguous", name);
2468 else if (ts->kind == -1)
2470 int iface = gfc_state_stack->previous->state != COMP_INTERFACE
2471 || gfc_current_ns->has_import_set;
2472 if (gfc_find_symbol (name, NULL, iface, &sym))
2474 gfc_error ("Type name '%s' at %C is ambiguous", name);
2483 if (sym->attr.flavor != FL_DERIVED
2484 && gfc_add_flavor (&sym->attr, FL_DERIVED, sym->name, NULL) == FAILURE)
2487 gfc_set_sym_referenced (sym);
2488 ts->u.derived = sym;
2493 /* For all types except double, derived and character, look for an
2494 optional kind specifier. MATCH_NO is actually OK at this point. */
2495 if (implicit_flag == 1)
2498 if (gfc_current_form == FORM_FREE)
2500 c = gfc_peek_ascii_char ();
2501 if (!gfc_is_whitespace (c) && c != '*' && c != '('
2502 && c != ':' && c != ',')
2506 m = gfc_match_kind_spec (ts, false);
2507 if (m == MATCH_NO && ts->type != BT_CHARACTER)
2508 m = gfc_match_old_kind_spec (ts);
2510 /* Defer association of the KIND expression of function results
2511 until after USE and IMPORT statements. */
2512 if ((gfc_current_state () == COMP_NONE && gfc_error_flag_test ())
2513 || gfc_matching_function)
2517 m = MATCH_YES; /* No kind specifier found. */
2523 /* Match an IMPLICIT NONE statement. Actually, this statement is
2524 already matched in parse.c, or we would not end up here in the
2525 first place. So the only thing we need to check, is if there is
2526 trailing garbage. If not, the match is successful. */
2529 gfc_match_implicit_none (void)
2531 return (gfc_match_eos () == MATCH_YES) ? MATCH_YES : MATCH_NO;
2535 /* Match the letter range(s) of an IMPLICIT statement. */
2538 match_implicit_range (void)
2544 cur_loc = gfc_current_locus;
2546 gfc_gobble_whitespace ();
2547 c = gfc_next_ascii_char ();
2550 gfc_error ("Missing character range in IMPLICIT at %C");
2557 gfc_gobble_whitespace ();
2558 c1 = gfc_next_ascii_char ();
2562 gfc_gobble_whitespace ();
2563 c = gfc_next_ascii_char ();
2568 inner = 0; /* Fall through. */
2575 gfc_gobble_whitespace ();
2576 c2 = gfc_next_ascii_char ();
2580 gfc_gobble_whitespace ();
2581 c = gfc_next_ascii_char ();
2583 if ((c != ',') && (c != ')'))
2596 gfc_error ("Letters must be in alphabetic order in "
2597 "IMPLICIT statement at %C");
2601 /* See if we can add the newly matched range to the pending
2602 implicits from this IMPLICIT statement. We do not check for
2603 conflicts with whatever earlier IMPLICIT statements may have
2604 set. This is done when we've successfully finished matching
2606 if (gfc_add_new_implicit_range (c1, c2) != SUCCESS)
2613 gfc_syntax_error (ST_IMPLICIT);
2615 gfc_current_locus = cur_loc;
2620 /* Match an IMPLICIT statement, storing the types for
2621 gfc_set_implicit() if the statement is accepted by the parser.
2622 There is a strange looking, but legal syntactic construction
2623 possible. It looks like:
2625 IMPLICIT INTEGER (a-b) (c-d)
2627 This is legal if "a-b" is a constant expression that happens to
2628 equal one of the legal kinds for integers. The real problem
2629 happens with an implicit specification that looks like:
2631 IMPLICIT INTEGER (a-b)
2633 In this case, a typespec matcher that is "greedy" (as most of the
2634 matchers are) gobbles the character range as a kindspec, leaving
2635 nothing left. We therefore have to go a bit more slowly in the
2636 matching process by inhibiting the kindspec checking during
2637 typespec matching and checking for a kind later. */
2640 gfc_match_implicit (void)
2649 /* We don't allow empty implicit statements. */
2650 if (gfc_match_eos () == MATCH_YES)
2652 gfc_error ("Empty IMPLICIT statement at %C");
2658 /* First cleanup. */
2659 gfc_clear_new_implicit ();
2661 /* A basic type is mandatory here. */
2662 m = gfc_match_decl_type_spec (&ts, 1);
2663 if (m == MATCH_ERROR)
2668 cur_loc = gfc_current_locus;
2669 m = match_implicit_range ();
2673 /* We may have <TYPE> (<RANGE>). */
2674 gfc_gobble_whitespace ();
2675 c = gfc_next_ascii_char ();
2676 if ((c == '\n') || (c == ','))
2678 /* Check for CHARACTER with no length parameter. */
2679 if (ts.type == BT_CHARACTER && !ts.u.cl)
2681 ts.kind = gfc_default_character_kind;
2682 ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
2683 ts.u.cl->length = gfc_get_int_expr (gfc_default_integer_kind,
2687 /* Record the Successful match. */
2688 if (gfc_merge_new_implicit (&ts) != SUCCESS)
2693 gfc_current_locus = cur_loc;
2696 /* Discard the (incorrectly) matched range. */
2697 gfc_clear_new_implicit ();
2699 /* Last chance -- check <TYPE> <SELECTOR> (<RANGE>). */
2700 if (ts.type == BT_CHARACTER)
2701 m = gfc_match_char_spec (&ts);
2704 m = gfc_match_kind_spec (&ts, false);
2707 m = gfc_match_old_kind_spec (&ts);
2708 if (m == MATCH_ERROR)
2714 if (m == MATCH_ERROR)
2717 m = match_implicit_range ();
2718 if (m == MATCH_ERROR)
2723 gfc_gobble_whitespace ();
2724 c = gfc_next_ascii_char ();
2725 if ((c != '\n') && (c != ','))
2728 if (gfc_merge_new_implicit (&ts) != SUCCESS)
2736 gfc_syntax_error (ST_IMPLICIT);
2744 gfc_match_import (void)
2746 char name[GFC_MAX_SYMBOL_LEN + 1];
2751 if (gfc_current_ns->proc_name == NULL
2752 || gfc_current_ns->proc_name->attr.if_source != IFSRC_IFBODY)
2754 gfc_error ("IMPORT statement at %C only permitted in "
2755 "an INTERFACE body");
2759 if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: IMPORT statement at %C")
2763 if (gfc_match_eos () == MATCH_YES)
2765 /* All host variables should be imported. */
2766 gfc_current_ns->has_import_set = 1;
2770 if (gfc_match (" ::") == MATCH_YES)
2772 if (gfc_match_eos () == MATCH_YES)
2774 gfc_error ("Expecting list of named entities at %C");
2781 m = gfc_match (" %n", name);
2785 if (gfc_current_ns->parent != NULL
2786 && gfc_find_symbol (name, gfc_current_ns->parent, 1, &sym))
2788 gfc_error ("Type name '%s' at %C is ambiguous", name);
2791 else if (gfc_current_ns->proc_name->ns->parent != NULL
2792 && gfc_find_symbol (name,
2793 gfc_current_ns->proc_name->ns->parent,
2796 gfc_error ("Type name '%s' at %C is ambiguous", name);
2802 gfc_error ("Cannot IMPORT '%s' from host scoping unit "
2803 "at %C - does not exist.", name);
2807 if (gfc_find_symtree (gfc_current_ns->sym_root,name))
2809 gfc_warning ("'%s' is already IMPORTed from host scoping unit "
2814 st = gfc_new_symtree (&gfc_current_ns->sym_root, sym->name);
2817 sym->attr.imported = 1;
2829 if (gfc_match_eos () == MATCH_YES)
2831 if (gfc_match_char (',') != MATCH_YES)
2838 gfc_error ("Syntax error in IMPORT statement at %C");
2843 /* A minimal implementation of gfc_match without whitespace, escape
2844 characters or variable arguments. Returns true if the next
2845 characters match the TARGET template exactly. */
2848 match_string_p (const char *target)
2852 for (p = target; *p; p++)
2853 if ((char) gfc_next_ascii_char () != *p)
2858 /* Matches an attribute specification including array specs. If
2859 successful, leaves the variables current_attr and current_as
2860 holding the specification. Also sets the colon_seen variable for
2861 later use by matchers associated with initializations.
2863 This subroutine is a little tricky in the sense that we don't know
2864 if we really have an attr-spec until we hit the double colon.
2865 Until that time, we can only return MATCH_NO. This forces us to
2866 check for duplicate specification at this level. */
2869 match_attr_spec (void)
2871 /* Modifiers that can exist in a type statement. */
2873 { GFC_DECL_BEGIN = 0,
2874 DECL_ALLOCATABLE = GFC_DECL_BEGIN, DECL_DIMENSION, DECL_EXTERNAL,
2875 DECL_IN, DECL_OUT, DECL_INOUT, DECL_INTRINSIC, DECL_OPTIONAL,
2876 DECL_PARAMETER, DECL_POINTER, DECL_PROTECTED, DECL_PRIVATE,
2877 DECL_PUBLIC, DECL_SAVE, DECL_TARGET, DECL_VALUE, DECL_VOLATILE,
2878 DECL_IS_BIND_C, DECL_CODIMENSION, DECL_ASYNCHRONOUS, DECL_CONTIGUOUS,
2879 DECL_NONE, GFC_DECL_END /* Sentinel */
2883 /* GFC_DECL_END is the sentinel, index starts at 0. */
2884 #define NUM_DECL GFC_DECL_END
2886 locus start, seen_at[NUM_DECL];
2893 gfc_clear_attr (¤t_attr);
2894 start = gfc_current_locus;
2899 /* See if we get all of the keywords up to the final double colon. */
2900 for (d = GFC_DECL_BEGIN; d != GFC_DECL_END; d++)
2908 gfc_gobble_whitespace ();
2910 ch = gfc_next_ascii_char ();
2913 /* This is the successful exit condition for the loop. */
2914 if (gfc_next_ascii_char () == ':')
2919 gfc_gobble_whitespace ();
2920 switch (gfc_peek_ascii_char ())
2923 gfc_next_ascii_char ();
2924 switch (gfc_next_ascii_char ())
2927 if (match_string_p ("locatable"))
2929 /* Matched "allocatable". */
2930 d = DECL_ALLOCATABLE;
2935 if (match_string_p ("ynchronous"))
2937 /* Matched "asynchronous". */
2938 d = DECL_ASYNCHRONOUS;
2945 /* Try and match the bind(c). */
2946 m = gfc_match_bind_c (NULL, true);
2949 else if (m == MATCH_ERROR)
2954 gfc_next_ascii_char ();
2955 if ('o' != gfc_next_ascii_char ())
2957 switch (gfc_next_ascii_char ())
2960 if (match_string_p ("imension"))
2962 d = DECL_CODIMENSION;
2966 if (match_string_p ("tiguous"))
2968 d = DECL_CONTIGUOUS;
2975 if (match_string_p ("dimension"))
2980 if (match_string_p ("external"))
2985 if (match_string_p ("int"))
2987 ch = gfc_next_ascii_char ();
2990 if (match_string_p ("nt"))
2992 /* Matched "intent". */
2993 /* TODO: Call match_intent_spec from here. */
2994 if (gfc_match (" ( in out )") == MATCH_YES)
2996 else if (gfc_match (" ( in )") == MATCH_YES)
2998 else if (gfc_match (" ( out )") == MATCH_YES)
3004 if (match_string_p ("insic"))
3006 /* Matched "intrinsic". */
3014 if (match_string_p ("optional"))
3019 gfc_next_ascii_char ();
3020 switch (gfc_next_ascii_char ())
3023 if (match_string_p ("rameter"))
3025 /* Matched "parameter". */
3031 if (match_string_p ("inter"))
3033 /* Matched "pointer". */
3039 ch = gfc_next_ascii_char ();
3042 if (match_string_p ("vate"))
3044 /* Matched "private". */
3050 if (match_string_p ("tected"))
3052 /* Matched "protected". */
3059 if (match_string_p ("blic"))
3061 /* Matched "public". */
3069 if (match_string_p ("save"))
3074 if (match_string_p ("target"))
3079 gfc_next_ascii_char ();
3080 ch = gfc_next_ascii_char ();
3083 if (match_string_p ("lue"))
3085 /* Matched "value". */
3091 if (match_string_p ("latile"))
3093 /* Matched "volatile". */
3101 /* No double colon and no recognizable decl_type, so assume that
3102 we've been looking at something else the whole time. */
3109 /* Check to make sure any parens are paired up correctly. */
3110 if (gfc_match_parens () == MATCH_ERROR)
3117 seen_at[d] = gfc_current_locus;
3119 if (d == DECL_DIMENSION || d == DECL_CODIMENSION)
3121 gfc_array_spec *as = NULL;
3123 m = gfc_match_array_spec (&as, d == DECL_DIMENSION,
3124 d == DECL_CODIMENSION);
3126 if (current_as == NULL)
3128 else if (m == MATCH_YES)
3130 merge_array_spec (as, current_as, false);
3136 if (d == DECL_CODIMENSION)
3137 gfc_error ("Missing codimension specification at %C");
3139 gfc_error ("Missing dimension specification at %C");
3143 if (m == MATCH_ERROR)
3148 /* Since we've seen a double colon, we have to be looking at an
3149 attr-spec. This means that we can now issue errors. */
3150 for (d = GFC_DECL_BEGIN; d != GFC_DECL_END; d++)
3155 case DECL_ALLOCATABLE:
3156 attr = "ALLOCATABLE";
3158 case DECL_ASYNCHRONOUS:
3159 attr = "ASYNCHRONOUS";
3161 case DECL_CODIMENSION:
3162 attr = "CODIMENSION";
3164 case DECL_CONTIGUOUS:
3165 attr = "CONTIGUOUS";
3167 case DECL_DIMENSION:
3174 attr = "INTENT (IN)";
3177 attr = "INTENT (OUT)";
3180 attr = "INTENT (IN OUT)";
3182 case DECL_INTRINSIC:
3188 case DECL_PARAMETER:
3194 case DECL_PROTECTED:
3209 case DECL_IS_BIND_C:
3219 attr = NULL; /* This shouldn't happen. */
3222 gfc_error ("Duplicate %s attribute at %L", attr, &seen_at[d]);
3227 /* Now that we've dealt with duplicate attributes, add the attributes
3228 to the current attribute. */
3229 for (d = GFC_DECL_BEGIN; d != GFC_DECL_END; d++)
3234 if (gfc_current_state () == COMP_DERIVED
3235 && d != DECL_DIMENSION && d != DECL_CODIMENSION
3236 && d != DECL_POINTER && d != DECL_PRIVATE
3237 && d != DECL_PUBLIC && d != DECL_CONTIGUOUS && d != DECL_NONE)
3239 if (d == DECL_ALLOCATABLE)
3241 if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: ALLOCATABLE "
3242 "attribute at %C in a TYPE definition")
3251 gfc_error ("Attribute at %L is not allowed in a TYPE definition",
3258 if ((d == DECL_PRIVATE || d == DECL_PUBLIC)
3259 && gfc_current_state () != COMP_MODULE)
3261 if (d == DECL_PRIVATE)
3265 if (gfc_current_state () == COMP_DERIVED
3266 && gfc_state_stack->previous
3267 && gfc_state_stack->previous->state == COMP_MODULE)
3269 if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: Attribute %s "
3270 "at %L in a TYPE definition", attr,
3280 gfc_error ("%s attribute at %L is not allowed outside of the "
3281 "specification part of a module", attr, &seen_at[d]);
3289 case DECL_ALLOCATABLE:
3290 t = gfc_add_allocatable (¤t_attr, &seen_at[d]);
3293 case DECL_ASYNCHRONOUS:
3294 if (gfc_notify_std (GFC_STD_F2003,
3295 "Fortran 2003: ASYNCHRONOUS attribute at %C")
3299 t = gfc_add_asynchronous (¤t_attr, NULL, &seen_at[d]);
3302 case DECL_CODIMENSION:
3303 t = gfc_add_codimension (¤t_attr, NULL, &seen_at[d]);
3306 case DECL_CONTIGUOUS:
3307 if (gfc_notify_std (GFC_STD_F2008,
3308 "Fortran 2008: CONTIGUOUS attribute at %C")
3312 t = gfc_add_contiguous (¤t_attr, NULL, &seen_at[d]);
3315 case DECL_DIMENSION:
3316 t = gfc_add_dimension (¤t_attr, NULL, &seen_at[d]);
3320 t = gfc_add_external (¤t_attr, &seen_at[d]);
3324 t = gfc_add_intent (¤t_attr, INTENT_IN, &seen_at[d]);
3328 t = gfc_add_intent (¤t_attr, INTENT_OUT, &seen_at[d]);
3332 t = gfc_add_intent (¤t_attr, INTENT_INOUT, &seen_at[d]);
3335 case DECL_INTRINSIC:
3336 t = gfc_add_intrinsic (¤t_attr, &seen_at[d]);
3340 t = gfc_add_optional (¤t_attr, &seen_at[d]);
3343 case DECL_PARAMETER:
3344 t = gfc_add_flavor (¤t_attr, FL_PARAMETER, NULL, &seen_at[d]);
3348 t = gfc_add_pointer (¤t_attr, &seen_at[d]);
3351 case DECL_PROTECTED:
3352 if (gfc_current_ns->proc_name->attr.flavor != FL_MODULE)
3354 gfc_error ("PROTECTED at %C only allowed in specification "
3355 "part of a module");
3360 if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: PROTECTED "
3365 t = gfc_add_protected (¤t_attr, NULL, &seen_at[d]);
3369 t = gfc_add_access (¤t_attr, ACCESS_PRIVATE, NULL,
3374 t = gfc_add_access (¤t_attr, ACCESS_PUBLIC, NULL,
3379 t = gfc_add_save (¤t_attr, NULL, &seen_at[d]);
3383 t = gfc_add_target (¤t_attr, &seen_at[d]);
3386 case DECL_IS_BIND_C:
3387 t = gfc_add_is_bind_c(¤t_attr, NULL, &seen_at[d], 0);
3391 if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: VALUE attribute "
3396 t = gfc_add_value (¤t_attr, NULL, &seen_at[d]);
3400 if (gfc_notify_std (GFC_STD_F2003,
3401 "Fortran 2003: VOLATILE attribute at %C")
3405 t = gfc_add_volatile (¤t_attr, NULL, &seen_at[d]);
3409 gfc_internal_error ("match_attr_spec(): Bad attribute");
3423 gfc_current_locus = start;
3424 gfc_free_array_spec (current_as);
3430 /* Set the binding label, dest_label, either with the binding label
3431 stored in the given gfc_typespec, ts, or if none was provided, it
3432 will be the symbol name in all lower case, as required by the draft
3433 (J3/04-007, section 15.4.1). If a binding label was given and
3434 there is more than one argument (num_idents), it is an error. */
3437 set_binding_label (char *dest_label, const char *sym_name, int num_idents)
3439 if (num_idents > 1 && has_name_equals)
3441 gfc_error ("Multiple identifiers provided with "
3442 "single NAME= specifier at %C");
3446 if (curr_binding_label[0] != '\0')
3448 /* Binding label given; store in temp holder til have sym. */
3449 strcpy (dest_label, curr_binding_label);
3453 /* No binding label given, and the NAME= specifier did not exist,
3454 which means there was no NAME="". */
3455 if (sym_name != NULL && has_name_equals == 0)
3456 strcpy (dest_label, sym_name);
3463 /* Set the status of the given common block as being BIND(C) or not,
3464 depending on the given parameter, is_bind_c. */
3467 set_com_block_bind_c (gfc_common_head *com_block, int is_bind_c)
3469 com_block->is_bind_c = is_bind_c;
3474 /* Verify that the given gfc_typespec is for a C interoperable type. */
3477 verify_c_interop (gfc_typespec *ts)
3479 if (ts->type == BT_DERIVED && ts->u.derived != NULL)
3480 return (ts->u.derived->ts.is_c_interop ? SUCCESS : FAILURE);
3481 else if (ts->is_c_interop != 1)
3488 /* Verify that the variables of a given common block, which has been
3489 defined with the attribute specifier bind(c), to be of a C
3490 interoperable type. Errors will be reported here, if
3494 verify_com_block_vars_c_interop (gfc_common_head *com_block)
3496 gfc_symbol *curr_sym = NULL;
3497 gfc_try retval = SUCCESS;
3499 curr_sym = com_block->head;
3501 /* Make sure we have at least one symbol. */
3502 if (curr_sym == NULL)
3505 /* Here we know we have a symbol, so we'll execute this loop
3509 /* The second to last param, 1, says this is in a common block. */
3510 retval = verify_bind_c_sym (curr_sym, &(curr_sym->ts), 1, com_block);
3511 curr_sym = curr_sym->common_next;
3512 } while (curr_sym != NULL);