2014-01-17 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / fortran / decl.c
blob8831b1997bd636698eac1233cbbc2b124acae2f6
1 /* Declaration statement matcher
2 Copyright (C) 2002-2014 Free Software Foundation, Inc.
3 Contributed by Andy Vaught
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
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
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "gfortran.h"
25 #include "match.h"
26 #include "parse.h"
27 #include "flags.h"
28 #include "constructor.h"
29 #include "tree.h"
30 #include "stringpool.h"
32 /* Macros to access allocate memory for gfc_data_variable,
33 gfc_data_value and gfc_data. */
34 #define gfc_get_data_variable() XCNEW (gfc_data_variable)
35 #define gfc_get_data_value() XCNEW (gfc_data_value)
36 #define gfc_get_data() XCNEW (gfc_data)
39 static bool set_binding_label (const char **, const char *, int);
42 /* This flag is set if an old-style length selector is matched
43 during a type-declaration statement. */
45 static int old_char_selector;
47 /* When variables acquire types and attributes from a declaration
48 statement, they get them from the following static variables. The
49 first part of a declaration sets these variables and the second
50 part copies these into symbol structures. */
52 static gfc_typespec current_ts;
54 static symbol_attribute current_attr;
55 static gfc_array_spec *current_as;
56 static int colon_seen;
58 /* The current binding label (if any). */
59 static const char* curr_binding_label;
60 /* Need to know how many identifiers are on the current data declaration
61 line in case we're given the BIND(C) attribute with a NAME= specifier. */
62 static int num_idents_on_line;
63 /* Need to know if a NAME= specifier was found during gfc_match_bind_c so we
64 can supply a name if the curr_binding_label is nil and NAME= was not. */
65 static int has_name_equals = 0;
67 /* Initializer of the previous enumerator. */
69 static gfc_expr *last_initializer;
71 /* History of all the enumerators is maintained, so that
72 kind values of all the enumerators could be updated depending
73 upon the maximum initialized value. */
75 typedef struct enumerator_history
77 gfc_symbol *sym;
78 gfc_expr *initializer;
79 struct enumerator_history *next;
81 enumerator_history;
83 /* Header of enum history chain. */
85 static enumerator_history *enum_history = NULL;
87 /* Pointer of enum history node containing largest initializer. */
89 static enumerator_history *max_enum = NULL;
91 /* gfc_new_block points to the symbol of a newly matched block. */
93 gfc_symbol *gfc_new_block;
95 bool gfc_matching_function;
98 /********************* DATA statement subroutines *********************/
100 static bool in_match_data = false;
102 bool
103 gfc_in_match_data (void)
105 return in_match_data;
108 static void
109 set_in_match_data (bool set_value)
111 in_match_data = set_value;
114 /* Free a gfc_data_variable structure and everything beneath it. */
116 static void
117 free_variable (gfc_data_variable *p)
119 gfc_data_variable *q;
121 for (; p; p = q)
123 q = p->next;
124 gfc_free_expr (p->expr);
125 gfc_free_iterator (&p->iter, 0);
126 free_variable (p->list);
127 free (p);
132 /* Free a gfc_data_value structure and everything beneath it. */
134 static void
135 free_value (gfc_data_value *p)
137 gfc_data_value *q;
139 for (; p; p = q)
141 q = p->next;
142 mpz_clear (p->repeat);
143 gfc_free_expr (p->expr);
144 free (p);
149 /* Free a list of gfc_data structures. */
151 void
152 gfc_free_data (gfc_data *p)
154 gfc_data *q;
156 for (; p; p = q)
158 q = p->next;
159 free_variable (p->var);
160 free_value (p->value);
161 free (p);
166 /* Free all data in a namespace. */
168 static void
169 gfc_free_data_all (gfc_namespace *ns)
171 gfc_data *d;
173 for (;ns->data;)
175 d = ns->data->next;
176 free (ns->data);
177 ns->data = d;
182 static match var_element (gfc_data_variable *);
184 /* Match a list of variables terminated by an iterator and a right
185 parenthesis. */
187 static match
188 var_list (gfc_data_variable *parent)
190 gfc_data_variable *tail, var;
191 match m;
193 m = var_element (&var);
194 if (m == MATCH_ERROR)
195 return MATCH_ERROR;
196 if (m == MATCH_NO)
197 goto syntax;
199 tail = gfc_get_data_variable ();
200 *tail = var;
202 parent->list = tail;
204 for (;;)
206 if (gfc_match_char (',') != MATCH_YES)
207 goto syntax;
209 m = gfc_match_iterator (&parent->iter, 1);
210 if (m == MATCH_YES)
211 break;
212 if (m == MATCH_ERROR)
213 return MATCH_ERROR;
215 m = var_element (&var);
216 if (m == MATCH_ERROR)
217 return MATCH_ERROR;
218 if (m == MATCH_NO)
219 goto syntax;
221 tail->next = gfc_get_data_variable ();
222 tail = tail->next;
224 *tail = var;
227 if (gfc_match_char (')') != MATCH_YES)
228 goto syntax;
229 return MATCH_YES;
231 syntax:
232 gfc_syntax_error (ST_DATA);
233 return MATCH_ERROR;
237 /* Match a single element in a data variable list, which can be a
238 variable-iterator list. */
240 static match
241 var_element (gfc_data_variable *new_var)
243 match m;
244 gfc_symbol *sym;
246 memset (new_var, 0, sizeof (gfc_data_variable));
248 if (gfc_match_char ('(') == MATCH_YES)
249 return var_list (new_var);
251 m = gfc_match_variable (&new_var->expr, 0);
252 if (m != MATCH_YES)
253 return m;
255 sym = new_var->expr->symtree->n.sym;
257 /* Symbol should already have an associated type. */
258 if (!gfc_check_symbol_typed (sym, gfc_current_ns, false, gfc_current_locus))
259 return MATCH_ERROR;
261 if (!sym->attr.function && gfc_current_ns->parent
262 && gfc_current_ns->parent == sym->ns)
264 gfc_error ("Host associated variable '%s' may not be in the DATA "
265 "statement at %C", sym->name);
266 return MATCH_ERROR;
269 if (gfc_current_state () != COMP_BLOCK_DATA
270 && sym->attr.in_common
271 && !gfc_notify_std (GFC_STD_GNU, "initialization of "
272 "common block variable '%s' in DATA statement at %C",
273 sym->name))
274 return MATCH_ERROR;
276 if (!gfc_add_data (&sym->attr, sym->name, &new_var->expr->where))
277 return MATCH_ERROR;
279 return MATCH_YES;
283 /* Match the top-level list of data variables. */
285 static match
286 top_var_list (gfc_data *d)
288 gfc_data_variable var, *tail, *new_var;
289 match m;
291 tail = NULL;
293 for (;;)
295 m = var_element (&var);
296 if (m == MATCH_NO)
297 goto syntax;
298 if (m == MATCH_ERROR)
299 return MATCH_ERROR;
301 new_var = gfc_get_data_variable ();
302 *new_var = var;
304 if (tail == NULL)
305 d->var = new_var;
306 else
307 tail->next = new_var;
309 tail = new_var;
311 if (gfc_match_char ('/') == MATCH_YES)
312 break;
313 if (gfc_match_char (',') != MATCH_YES)
314 goto syntax;
317 return MATCH_YES;
319 syntax:
320 gfc_syntax_error (ST_DATA);
321 gfc_free_data_all (gfc_current_ns);
322 return MATCH_ERROR;
326 static match
327 match_data_constant (gfc_expr **result)
329 char name[GFC_MAX_SYMBOL_LEN + 1];
330 gfc_symbol *sym, *dt_sym = NULL;
331 gfc_expr *expr;
332 match m;
333 locus old_loc;
335 m = gfc_match_literal_constant (&expr, 1);
336 if (m == MATCH_YES)
338 *result = expr;
339 return MATCH_YES;
342 if (m == MATCH_ERROR)
343 return MATCH_ERROR;
345 m = gfc_match_null (result);
346 if (m != MATCH_NO)
347 return m;
349 old_loc = gfc_current_locus;
351 /* Should this be a structure component, try to match it
352 before matching a name. */
353 m = gfc_match_rvalue (result);
354 if (m == MATCH_ERROR)
355 return m;
357 if (m == MATCH_YES && (*result)->expr_type == EXPR_STRUCTURE)
359 if (!gfc_simplify_expr (*result, 0))
360 m = MATCH_ERROR;
361 return m;
363 else if (m == MATCH_YES)
364 gfc_free_expr (*result);
366 gfc_current_locus = old_loc;
368 m = gfc_match_name (name);
369 if (m != MATCH_YES)
370 return m;
372 if (gfc_find_symbol (name, NULL, 1, &sym))
373 return MATCH_ERROR;
375 if (sym && sym->attr.generic)
376 dt_sym = gfc_find_dt_in_generic (sym);
378 if (sym == NULL
379 || (sym->attr.flavor != FL_PARAMETER
380 && (!dt_sym || dt_sym->attr.flavor != FL_DERIVED)))
382 gfc_error ("Symbol '%s' must be a PARAMETER in DATA statement at %C",
383 name);
384 return MATCH_ERROR;
386 else if (dt_sym && dt_sym->attr.flavor == FL_DERIVED)
387 return gfc_match_structure_constructor (dt_sym, result);
389 /* Check to see if the value is an initialization array expression. */
390 if (sym->value->expr_type == EXPR_ARRAY)
392 gfc_current_locus = old_loc;
394 m = gfc_match_init_expr (result);
395 if (m == MATCH_ERROR)
396 return m;
398 if (m == MATCH_YES)
400 if (!gfc_simplify_expr (*result, 0))
401 m = MATCH_ERROR;
403 if ((*result)->expr_type == EXPR_CONSTANT)
404 return m;
405 else
407 gfc_error ("Invalid initializer %s in Data statement at %C", name);
408 return MATCH_ERROR;
413 *result = gfc_copy_expr (sym->value);
414 return MATCH_YES;
418 /* Match a list of values in a DATA statement. The leading '/' has
419 already been seen at this point. */
421 static match
422 top_val_list (gfc_data *data)
424 gfc_data_value *new_val, *tail;
425 gfc_expr *expr;
426 match m;
428 tail = NULL;
430 for (;;)
432 m = match_data_constant (&expr);
433 if (m == MATCH_NO)
434 goto syntax;
435 if (m == MATCH_ERROR)
436 return MATCH_ERROR;
438 new_val = gfc_get_data_value ();
439 mpz_init (new_val->repeat);
441 if (tail == NULL)
442 data->value = new_val;
443 else
444 tail->next = new_val;
446 tail = new_val;
448 if (expr->ts.type != BT_INTEGER || gfc_match_char ('*') != MATCH_YES)
450 tail->expr = expr;
451 mpz_set_ui (tail->repeat, 1);
453 else
455 mpz_set (tail->repeat, expr->value.integer);
456 gfc_free_expr (expr);
458 m = match_data_constant (&tail->expr);
459 if (m == MATCH_NO)
460 goto syntax;
461 if (m == MATCH_ERROR)
462 return MATCH_ERROR;
465 if (gfc_match_char ('/') == MATCH_YES)
466 break;
467 if (gfc_match_char (',') == MATCH_NO)
468 goto syntax;
471 return MATCH_YES;
473 syntax:
474 gfc_syntax_error (ST_DATA);
475 gfc_free_data_all (gfc_current_ns);
476 return MATCH_ERROR;
480 /* Matches an old style initialization. */
482 static match
483 match_old_style_init (const char *name)
485 match m;
486 gfc_symtree *st;
487 gfc_symbol *sym;
488 gfc_data *newdata;
490 /* Set up data structure to hold initializers. */
491 gfc_find_sym_tree (name, NULL, 0, &st);
492 sym = st->n.sym;
494 newdata = gfc_get_data ();
495 newdata->var = gfc_get_data_variable ();
496 newdata->var->expr = gfc_get_variable_expr (st);
497 newdata->where = gfc_current_locus;
499 /* Match initial value list. This also eats the terminal '/'. */
500 m = top_val_list (newdata);
501 if (m != MATCH_YES)
503 free (newdata);
504 return m;
507 if (gfc_pure (NULL))
509 gfc_error ("Initialization at %C is not allowed in a PURE procedure");
510 free (newdata);
511 return MATCH_ERROR;
514 if (gfc_implicit_pure (NULL))
515 gfc_current_ns->proc_name->attr.implicit_pure = 0;
517 /* Mark the variable as having appeared in a data statement. */
518 if (!gfc_add_data (&sym->attr, sym->name, &sym->declared_at))
520 free (newdata);
521 return MATCH_ERROR;
524 /* Chain in namespace list of DATA initializers. */
525 newdata->next = gfc_current_ns->data;
526 gfc_current_ns->data = newdata;
528 return m;
532 /* Match the stuff following a DATA statement. If ERROR_FLAG is set,
533 we are matching a DATA statement and are therefore issuing an error
534 if we encounter something unexpected, if not, we're trying to match
535 an old-style initialization expression of the form INTEGER I /2/. */
537 match
538 gfc_match_data (void)
540 gfc_data *new_data;
541 match m;
543 set_in_match_data (true);
545 for (;;)
547 new_data = gfc_get_data ();
548 new_data->where = gfc_current_locus;
550 m = top_var_list (new_data);
551 if (m != MATCH_YES)
552 goto cleanup;
554 m = top_val_list (new_data);
555 if (m != MATCH_YES)
556 goto cleanup;
558 new_data->next = gfc_current_ns->data;
559 gfc_current_ns->data = new_data;
561 if (gfc_match_eos () == MATCH_YES)
562 break;
564 gfc_match_char (','); /* Optional comma */
567 set_in_match_data (false);
569 if (gfc_pure (NULL))
571 gfc_error ("DATA statement at %C is not allowed in a PURE procedure");
572 return MATCH_ERROR;
575 if (gfc_implicit_pure (NULL))
576 gfc_current_ns->proc_name->attr.implicit_pure = 0;
578 return MATCH_YES;
580 cleanup:
581 set_in_match_data (false);
582 gfc_free_data (new_data);
583 return MATCH_ERROR;
587 /************************ Declaration statements *********************/
590 /* Auxiliary function to merge DIMENSION and CODIMENSION array specs. */
592 static bool
593 merge_array_spec (gfc_array_spec *from, gfc_array_spec *to, bool copy)
595 int i;
597 if ((from->type == AS_ASSUMED_RANK && to->corank)
598 || (to->type == AS_ASSUMED_RANK && from->corank))
600 gfc_error ("The assumed-rank array at %C shall not have a codimension");
601 return false;
604 if (to->rank == 0 && from->rank > 0)
606 to->rank = from->rank;
607 to->type = from->type;
608 to->cray_pointee = from->cray_pointee;
609 to->cp_was_assumed = from->cp_was_assumed;
611 for (i = 0; i < to->corank; i++)
613 to->lower[from->rank + i] = to->lower[i];
614 to->upper[from->rank + i] = to->upper[i];
616 for (i = 0; i < from->rank; i++)
618 if (copy)
620 to->lower[i] = gfc_copy_expr (from->lower[i]);
621 to->upper[i] = gfc_copy_expr (from->upper[i]);
623 else
625 to->lower[i] = from->lower[i];
626 to->upper[i] = from->upper[i];
630 else if (to->corank == 0 && from->corank > 0)
632 to->corank = from->corank;
633 to->cotype = from->cotype;
635 for (i = 0; i < from->corank; i++)
637 if (copy)
639 to->lower[to->rank + i] = gfc_copy_expr (from->lower[i]);
640 to->upper[to->rank + i] = gfc_copy_expr (from->upper[i]);
642 else
644 to->lower[to->rank + i] = from->lower[i];
645 to->upper[to->rank + i] = from->upper[i];
650 return true;
654 /* Match an intent specification. Since this can only happen after an
655 INTENT word, a legal intent-spec must follow. */
657 static sym_intent
658 match_intent_spec (void)
661 if (gfc_match (" ( in out )") == MATCH_YES)
662 return INTENT_INOUT;
663 if (gfc_match (" ( in )") == MATCH_YES)
664 return INTENT_IN;
665 if (gfc_match (" ( out )") == MATCH_YES)
666 return INTENT_OUT;
668 gfc_error ("Bad INTENT specification at %C");
669 return INTENT_UNKNOWN;
673 /* Matches a character length specification, which is either a
674 specification expression, '*', or ':'. */
676 static match
677 char_len_param_value (gfc_expr **expr, bool *deferred)
679 match m;
681 *expr = NULL;
682 *deferred = false;
684 if (gfc_match_char ('*') == MATCH_YES)
685 return MATCH_YES;
687 if (gfc_match_char (':') == MATCH_YES)
689 if (!gfc_notify_std (GFC_STD_F2003, "deferred type "
690 "parameter at %C"))
691 return MATCH_ERROR;
693 *deferred = true;
695 return MATCH_YES;
698 m = gfc_match_expr (expr);
700 if (m == MATCH_YES
701 && !gfc_expr_check_typed (*expr, gfc_current_ns, false))
702 return MATCH_ERROR;
704 if (m == MATCH_YES && (*expr)->expr_type == EXPR_FUNCTION)
706 if ((*expr)->value.function.actual
707 && (*expr)->value.function.actual->expr->symtree)
709 gfc_expr *e;
710 e = (*expr)->value.function.actual->expr;
711 if (e->symtree->n.sym->attr.flavor == FL_PROCEDURE
712 && e->expr_type == EXPR_VARIABLE)
714 if (e->symtree->n.sym->ts.type == BT_UNKNOWN)
715 goto syntax;
716 if (e->symtree->n.sym->ts.type == BT_CHARACTER
717 && e->symtree->n.sym->ts.u.cl
718 && e->symtree->n.sym->ts.u.cl->length->ts.type == BT_UNKNOWN)
719 goto syntax;
723 return m;
725 syntax:
726 gfc_error ("Conflict in attributes of function argument at %C");
727 return MATCH_ERROR;
731 /* A character length is a '*' followed by a literal integer or a
732 char_len_param_value in parenthesis. */
734 static match
735 match_char_length (gfc_expr **expr, bool *deferred, bool obsolescent_check)
737 int length;
738 match m;
740 *deferred = false;
741 m = gfc_match_char ('*');
742 if (m != MATCH_YES)
743 return m;
745 m = gfc_match_small_literal_int (&length, NULL);
746 if (m == MATCH_ERROR)
747 return m;
749 if (m == MATCH_YES)
751 if (obsolescent_check
752 && !gfc_notify_std (GFC_STD_F95_OBS, "Old-style character length at %C"))
753 return MATCH_ERROR;
754 *expr = gfc_get_int_expr (gfc_default_integer_kind, NULL, length);
755 return m;
758 if (gfc_match_char ('(') == MATCH_NO)
759 goto syntax;
761 m = char_len_param_value (expr, deferred);
762 if (m != MATCH_YES && gfc_matching_function)
764 gfc_undo_symbols ();
765 m = MATCH_YES;
768 if (m == MATCH_ERROR)
769 return m;
770 if (m == MATCH_NO)
771 goto syntax;
773 if (gfc_match_char (')') == MATCH_NO)
775 gfc_free_expr (*expr);
776 *expr = NULL;
777 goto syntax;
780 return MATCH_YES;
782 syntax:
783 gfc_error ("Syntax error in character length specification at %C");
784 return MATCH_ERROR;
788 /* Special subroutine for finding a symbol. Check if the name is found
789 in the current name space. If not, and we're compiling a function or
790 subroutine and the parent compilation unit is an interface, then check
791 to see if the name we've been given is the name of the interface
792 (located in another namespace). */
794 static int
795 find_special (const char *name, gfc_symbol **result, bool allow_subroutine)
797 gfc_state_data *s;
798 gfc_symtree *st;
799 int i;
801 i = gfc_get_sym_tree (name, NULL, &st, allow_subroutine);
802 if (i == 0)
804 *result = st ? st->n.sym : NULL;
805 goto end;
808 if (gfc_current_state () != COMP_SUBROUTINE
809 && gfc_current_state () != COMP_FUNCTION)
810 goto end;
812 s = gfc_state_stack->previous;
813 if (s == NULL)
814 goto end;
816 if (s->state != COMP_INTERFACE)
817 goto end;
818 if (s->sym == NULL)
819 goto end; /* Nameless interface. */
821 if (strcmp (name, s->sym->name) == 0)
823 *result = s->sym;
824 return 0;
827 end:
828 return i;
832 /* Special subroutine for getting a symbol node associated with a
833 procedure name, used in SUBROUTINE and FUNCTION statements. The
834 symbol is created in the parent using with symtree node in the
835 child unit pointing to the symbol. If the current namespace has no
836 parent, then the symbol is just created in the current unit. */
838 static int
839 get_proc_name (const char *name, gfc_symbol **result, bool module_fcn_entry)
841 gfc_symtree *st;
842 gfc_symbol *sym;
843 int rc = 0;
845 /* Module functions have to be left in their own namespace because
846 they have potentially (almost certainly!) already been referenced.
847 In this sense, they are rather like external functions. This is
848 fixed up in resolve.c(resolve_entries), where the symbol name-
849 space is set to point to the master function, so that the fake
850 result mechanism can work. */
851 if (module_fcn_entry)
853 /* Present if entry is declared to be a module procedure. */
854 rc = gfc_find_symbol (name, gfc_current_ns->parent, 0, result);
856 if (*result == NULL)
857 rc = gfc_get_symbol (name, NULL, result);
858 else if (!gfc_get_symbol (name, NULL, &sym) && sym
859 && (*result)->ts.type == BT_UNKNOWN
860 && sym->attr.flavor == FL_UNKNOWN)
861 /* Pick up the typespec for the entry, if declared in the function
862 body. Note that this symbol is FL_UNKNOWN because it will
863 only have appeared in a type declaration. The local symtree
864 is set to point to the module symbol and a unique symtree
865 to the local version. This latter ensures a correct clearing
866 of the symbols. */
868 /* If the ENTRY proceeds its specification, we need to ensure
869 that this does not raise a "has no IMPLICIT type" error. */
870 if (sym->ts.type == BT_UNKNOWN)
871 sym->attr.untyped = 1;
873 (*result)->ts = sym->ts;
875 /* Put the symbol in the procedure namespace so that, should
876 the ENTRY precede its specification, the specification
877 can be applied. */
878 (*result)->ns = gfc_current_ns;
880 gfc_find_sym_tree (name, gfc_current_ns, 0, &st);
881 st->n.sym = *result;
882 st = gfc_get_unique_symtree (gfc_current_ns);
883 st->n.sym = sym;
886 else
887 rc = gfc_get_symbol (name, gfc_current_ns->parent, result);
889 if (rc)
890 return rc;
892 sym = *result;
894 if (sym && !sym->gfc_new && gfc_current_state () != COMP_INTERFACE)
896 /* Trap another encompassed procedure with the same name. All
897 these conditions are necessary to avoid picking up an entry
898 whose name clashes with that of the encompassing procedure;
899 this is handled using gsymbols to register unique,globally
900 accessible names. */
901 if (sym->attr.flavor != 0
902 && sym->attr.proc != 0
903 && (sym->attr.subroutine || sym->attr.function)
904 && sym->attr.if_source != IFSRC_UNKNOWN)
905 gfc_error_now ("Procedure '%s' at %C is already defined at %L",
906 name, &sym->declared_at);
908 /* Trap a procedure with a name the same as interface in the
909 encompassing scope. */
910 if (sym->attr.generic != 0
911 && (sym->attr.subroutine || sym->attr.function)
912 && !sym->attr.mod_proc)
913 gfc_error_now ("Name '%s' at %C is already defined"
914 " as a generic interface at %L",
915 name, &sym->declared_at);
917 /* Trap declarations of attributes in encompassing scope. The
918 signature for this is that ts.kind is set. Legitimate
919 references only set ts.type. */
920 if (sym->ts.kind != 0
921 && !sym->attr.implicit_type
922 && sym->attr.proc == 0
923 && gfc_current_ns->parent != NULL
924 && sym->attr.access == 0
925 && !module_fcn_entry)
926 gfc_error_now ("Procedure '%s' at %C has an explicit interface "
927 "and must not have attributes declared at %L",
928 name, &sym->declared_at);
931 if (gfc_current_ns->parent == NULL || *result == NULL)
932 return rc;
934 /* Module function entries will already have a symtree in
935 the current namespace but will need one at module level. */
936 if (module_fcn_entry)
938 /* Present if entry is declared to be a module procedure. */
939 rc = gfc_find_sym_tree (name, gfc_current_ns->parent, 0, &st);
940 if (st == NULL)
941 st = gfc_new_symtree (&gfc_current_ns->parent->sym_root, name);
943 else
944 st = gfc_new_symtree (&gfc_current_ns->sym_root, name);
946 st->n.sym = sym;
947 sym->refs++;
949 /* See if the procedure should be a module procedure. */
951 if (((sym->ns->proc_name != NULL
952 && sym->ns->proc_name->attr.flavor == FL_MODULE
953 && sym->attr.proc != PROC_MODULE)
954 || (module_fcn_entry && sym->attr.proc != PROC_MODULE))
955 && !gfc_add_procedure (&sym->attr, PROC_MODULE, sym->name, NULL))
956 rc = 2;
958 return rc;
962 /* Verify that the given symbol representing a parameter is C
963 interoperable, by checking to see if it was marked as such after
964 its declaration. If the given symbol is not interoperable, a
965 warning is reported, thus removing the need to return the status to
966 the calling function. The standard does not require the user use
967 one of the iso_c_binding named constants to declare an
968 interoperable parameter, but we can't be sure if the param is C
969 interop or not if the user doesn't. For example, integer(4) may be
970 legal Fortran, but doesn't have meaning in C. It may interop with
971 a number of the C types, which causes a problem because the
972 compiler can't know which one. This code is almost certainly not
973 portable, and the user will get what they deserve if the C type
974 across platforms isn't always interoperable with integer(4). If
975 the user had used something like integer(c_int) or integer(c_long),
976 the compiler could have automatically handled the varying sizes
977 across platforms. */
979 bool
980 gfc_verify_c_interop_param (gfc_symbol *sym)
982 int is_c_interop = 0;
983 bool retval = true;
985 /* We check implicitly typed variables in symbol.c:gfc_set_default_type().
986 Don't repeat the checks here. */
987 if (sym->attr.implicit_type)
988 return true;
990 /* For subroutines or functions that are passed to a BIND(C) procedure,
991 they're interoperable if they're BIND(C) and their params are all
992 interoperable. */
993 if (sym->attr.flavor == FL_PROCEDURE)
995 if (sym->attr.is_bind_c == 0)
997 gfc_error_now ("Procedure '%s' at %L must have the BIND(C) "
998 "attribute to be C interoperable", sym->name,
999 &(sym->declared_at));
1001 return false;
1003 else
1005 if (sym->attr.is_c_interop == 1)
1006 /* We've already checked this procedure; don't check it again. */
1007 return true;
1008 else
1009 return verify_bind_c_sym (sym, &(sym->ts), sym->attr.in_common,
1010 sym->common_block);
1014 /* See if we've stored a reference to a procedure that owns sym. */
1015 if (sym->ns != NULL && sym->ns->proc_name != NULL)
1017 if (sym->ns->proc_name->attr.is_bind_c == 1)
1019 is_c_interop = (gfc_verify_c_interop(&(sym->ts)) ? 1 : 0);
1021 if (is_c_interop != 1)
1023 /* Make personalized messages to give better feedback. */
1024 if (sym->ts.type == BT_DERIVED)
1025 gfc_error ("Variable '%s' at %L is a dummy argument to the "
1026 "BIND(C) procedure '%s' but is not C interoperable "
1027 "because derived type '%s' is not C interoperable",
1028 sym->name, &(sym->declared_at),
1029 sym->ns->proc_name->name,
1030 sym->ts.u.derived->name);
1031 else if (sym->ts.type == BT_CLASS)
1032 gfc_error ("Variable '%s' at %L is a dummy argument to the "
1033 "BIND(C) procedure '%s' but is not C interoperable "
1034 "because it is polymorphic",
1035 sym->name, &(sym->declared_at),
1036 sym->ns->proc_name->name);
1037 else if (gfc_option.warn_c_binding_type)
1038 gfc_warning ("Variable '%s' at %L is a dummy argument of the "
1039 "BIND(C) procedure '%s' but may not be C "
1040 "interoperable",
1041 sym->name, &(sym->declared_at),
1042 sym->ns->proc_name->name);
1045 /* Character strings are only C interoperable if they have a
1046 length of 1. */
1047 if (sym->ts.type == BT_CHARACTER)
1049 gfc_charlen *cl = sym->ts.u.cl;
1050 if (!cl || !cl->length || cl->length->expr_type != EXPR_CONSTANT
1051 || mpz_cmp_si (cl->length->value.integer, 1) != 0)
1053 gfc_error ("Character argument '%s' at %L "
1054 "must be length 1 because "
1055 "procedure '%s' is BIND(C)",
1056 sym->name, &sym->declared_at,
1057 sym->ns->proc_name->name);
1058 retval = false;
1062 /* We have to make sure that any param to a bind(c) routine does
1063 not have the allocatable, pointer, or optional attributes,
1064 according to J3/04-007, section 5.1. */
1065 if (sym->attr.allocatable == 1
1066 && !gfc_notify_std (GFC_STD_F2008_TS, "Variable '%s' at %L with "
1067 "ALLOCATABLE attribute in procedure '%s' "
1068 "with BIND(C)", sym->name,
1069 &(sym->declared_at),
1070 sym->ns->proc_name->name))
1071 retval = false;
1073 if (sym->attr.pointer == 1
1074 && !gfc_notify_std (GFC_STD_F2008_TS, "Variable '%s' at %L with "
1075 "POINTER attribute in procedure '%s' "
1076 "with BIND(C)", sym->name,
1077 &(sym->declared_at),
1078 sym->ns->proc_name->name))
1079 retval = false;
1081 if ((sym->attr.allocatable || sym->attr.pointer) && !sym->as)
1083 gfc_error ("Scalar variable '%s' at %L with POINTER or "
1084 "ALLOCATABLE in procedure '%s' with BIND(C) is not yet"
1085 " supported", sym->name, &(sym->declared_at),
1086 sym->ns->proc_name->name);
1087 retval = false;
1090 if (sym->attr.optional == 1 && sym->attr.value)
1092 gfc_error ("Variable '%s' at %L cannot have both the OPTIONAL "
1093 "and the VALUE attribute because procedure '%s' "
1094 "is BIND(C)", sym->name, &(sym->declared_at),
1095 sym->ns->proc_name->name);
1096 retval = false;
1098 else if (sym->attr.optional == 1
1099 && !gfc_notify_std (GFC_STD_F2008_TS, "Variable '%s' "
1100 "at %L with OPTIONAL attribute in "
1101 "procedure '%s' which is BIND(C)",
1102 sym->name, &(sym->declared_at),
1103 sym->ns->proc_name->name))
1104 retval = false;
1106 /* Make sure that if it has the dimension attribute, that it is
1107 either assumed size or explicit shape. Deferred shape is already
1108 covered by the pointer/allocatable attribute. */
1109 if (sym->as != NULL && sym->as->type == AS_ASSUMED_SHAPE
1110 && !gfc_notify_std (GFC_STD_F2008_TS, "Assumed-shape array '%s' "
1111 "at %L as dummy argument to the BIND(C) "
1112 "procedure '%s' at %L", sym->name,
1113 &(sym->declared_at),
1114 sym->ns->proc_name->name,
1115 &(sym->ns->proc_name->declared_at)))
1116 retval = false;
1120 return retval;
1125 /* Function called by variable_decl() that adds a name to the symbol table. */
1127 static bool
1128 build_sym (const char *name, gfc_charlen *cl, bool cl_deferred,
1129 gfc_array_spec **as, locus *var_locus)
1131 symbol_attribute attr;
1132 gfc_symbol *sym;
1134 if (gfc_get_symbol (name, NULL, &sym))
1135 return false;
1137 /* Start updating the symbol table. Add basic type attribute if present. */
1138 if (current_ts.type != BT_UNKNOWN
1139 && (sym->attr.implicit_type == 0
1140 || !gfc_compare_types (&sym->ts, &current_ts))
1141 && !gfc_add_type (sym, &current_ts, var_locus))
1142 return false;
1144 if (sym->ts.type == BT_CHARACTER)
1146 sym->ts.u.cl = cl;
1147 sym->ts.deferred = cl_deferred;
1150 /* Add dimension attribute if present. */
1151 if (!gfc_set_array_spec (sym, *as, var_locus))
1152 return false;
1153 *as = NULL;
1155 /* Add attribute to symbol. The copy is so that we can reset the
1156 dimension attribute. */
1157 attr = current_attr;
1158 attr.dimension = 0;
1159 attr.codimension = 0;
1161 if (!gfc_copy_attr (&sym->attr, &attr, var_locus))
1162 return false;
1164 /* Finish any work that may need to be done for the binding label,
1165 if it's a bind(c). The bind(c) attr is found before the symbol
1166 is made, and before the symbol name (for data decls), so the
1167 current_ts is holding the binding label, or nothing if the
1168 name= attr wasn't given. Therefore, test here if we're dealing
1169 with a bind(c) and make sure the binding label is set correctly. */
1170 if (sym->attr.is_bind_c == 1)
1172 if (!sym->binding_label)
1174 /* Set the binding label and verify that if a NAME= was specified
1175 then only one identifier was in the entity-decl-list. */
1176 if (!set_binding_label (&sym->binding_label, sym->name,
1177 num_idents_on_line))
1178 return false;
1182 /* See if we know we're in a common block, and if it's a bind(c)
1183 common then we need to make sure we're an interoperable type. */
1184 if (sym->attr.in_common == 1)
1186 /* Test the common block object. */
1187 if (sym->common_block != NULL && sym->common_block->is_bind_c == 1
1188 && sym->ts.is_c_interop != 1)
1190 gfc_error_now ("Variable '%s' in common block '%s' at %C "
1191 "must be declared with a C interoperable "
1192 "kind since common block '%s' is BIND(C)",
1193 sym->name, sym->common_block->name,
1194 sym->common_block->name);
1195 gfc_clear_error ();
1199 sym->attr.implied_index = 0;
1201 if (sym->ts.type == BT_CLASS)
1202 return gfc_build_class_symbol (&sym->ts, &sym->attr, &sym->as, false);
1204 return true;
1208 /* Set character constant to the given length. The constant will be padded or
1209 truncated. If we're inside an array constructor without a typespec, we
1210 additionally check that all elements have the same length; check_len -1
1211 means no checking. */
1213 void
1214 gfc_set_constant_character_len (int len, gfc_expr *expr, int check_len)
1216 gfc_char_t *s;
1217 int slen;
1219 gcc_assert (expr->expr_type == EXPR_CONSTANT);
1220 gcc_assert (expr->ts.type == BT_CHARACTER);
1222 slen = expr->value.character.length;
1223 if (len != slen)
1225 s = gfc_get_wide_string (len + 1);
1226 memcpy (s, expr->value.character.string,
1227 MIN (len, slen) * sizeof (gfc_char_t));
1228 if (len > slen)
1229 gfc_wide_memset (&s[slen], ' ', len - slen);
1231 if (gfc_option.warn_character_truncation && slen > len)
1232 gfc_warning_now ("CHARACTER expression at %L is being truncated "
1233 "(%d/%d)", &expr->where, slen, len);
1235 /* Apply the standard by 'hand' otherwise it gets cleared for
1236 initializers. */
1237 if (check_len != -1 && slen != check_len
1238 && !(gfc_option.allow_std & GFC_STD_GNU))
1239 gfc_error_now ("The CHARACTER elements of the array constructor "
1240 "at %L must have the same length (%d/%d)",
1241 &expr->where, slen, check_len);
1243 s[len] = '\0';
1244 free (expr->value.character.string);
1245 expr->value.character.string = s;
1246 expr->value.character.length = len;
1251 /* Function to create and update the enumerator history
1252 using the information passed as arguments.
1253 Pointer "max_enum" is also updated, to point to
1254 enum history node containing largest initializer.
1256 SYM points to the symbol node of enumerator.
1257 INIT points to its enumerator value. */
1259 static void
1260 create_enum_history (gfc_symbol *sym, gfc_expr *init)
1262 enumerator_history *new_enum_history;
1263 gcc_assert (sym != NULL && init != NULL);
1265 new_enum_history = XCNEW (enumerator_history);
1267 new_enum_history->sym = sym;
1268 new_enum_history->initializer = init;
1269 new_enum_history->next = NULL;
1271 if (enum_history == NULL)
1273 enum_history = new_enum_history;
1274 max_enum = enum_history;
1276 else
1278 new_enum_history->next = enum_history;
1279 enum_history = new_enum_history;
1281 if (mpz_cmp (max_enum->initializer->value.integer,
1282 new_enum_history->initializer->value.integer) < 0)
1283 max_enum = new_enum_history;
1288 /* Function to free enum kind history. */
1290 void
1291 gfc_free_enum_history (void)
1293 enumerator_history *current = enum_history;
1294 enumerator_history *next;
1296 while (current != NULL)
1298 next = current->next;
1299 free (current);
1300 current = next;
1302 max_enum = NULL;
1303 enum_history = NULL;
1307 /* Function called by variable_decl() that adds an initialization
1308 expression to a symbol. */
1310 static bool
1311 add_init_expr_to_sym (const char *name, gfc_expr **initp, locus *var_locus)
1313 symbol_attribute attr;
1314 gfc_symbol *sym;
1315 gfc_expr *init;
1317 init = *initp;
1318 if (find_special (name, &sym, false))
1319 return false;
1321 attr = sym->attr;
1323 /* If this symbol is confirming an implicit parameter type,
1324 then an initialization expression is not allowed. */
1325 if (attr.flavor == FL_PARAMETER
1326 && sym->value != NULL
1327 && *initp != NULL)
1329 gfc_error ("Initializer not allowed for PARAMETER '%s' at %C",
1330 sym->name);
1331 return false;
1334 if (init == NULL)
1336 /* An initializer is required for PARAMETER declarations. */
1337 if (attr.flavor == FL_PARAMETER)
1339 gfc_error ("PARAMETER at %L is missing an initializer", var_locus);
1340 return false;
1343 else
1345 /* If a variable appears in a DATA block, it cannot have an
1346 initializer. */
1347 if (sym->attr.data)
1349 gfc_error ("Variable '%s' at %C with an initializer already "
1350 "appears in a DATA statement", sym->name);
1351 return false;
1354 /* Check if the assignment can happen. This has to be put off
1355 until later for derived type variables and procedure pointers. */
1356 if (sym->ts.type != BT_DERIVED && init->ts.type != BT_DERIVED
1357 && sym->ts.type != BT_CLASS && init->ts.type != BT_CLASS
1358 && !sym->attr.proc_pointer
1359 && !gfc_check_assign_symbol (sym, NULL, init))
1360 return false;
1362 if (sym->ts.type == BT_CHARACTER && sym->ts.u.cl
1363 && init->ts.type == BT_CHARACTER)
1365 /* Update symbol character length according initializer. */
1366 if (!gfc_check_assign_symbol (sym, NULL, init))
1367 return false;
1369 if (sym->ts.u.cl->length == NULL)
1371 int clen;
1372 /* If there are multiple CHARACTER variables declared on the
1373 same line, we don't want them to share the same length. */
1374 sym->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
1376 if (sym->attr.flavor == FL_PARAMETER)
1378 if (init->expr_type == EXPR_CONSTANT)
1380 clen = init->value.character.length;
1381 sym->ts.u.cl->length
1382 = gfc_get_int_expr (gfc_default_integer_kind,
1383 NULL, clen);
1385 else if (init->expr_type == EXPR_ARRAY)
1387 gfc_constructor *c;
1388 c = gfc_constructor_first (init->value.constructor);
1389 clen = c->expr->value.character.length;
1390 sym->ts.u.cl->length
1391 = gfc_get_int_expr (gfc_default_integer_kind,
1392 NULL, clen);
1394 else if (init->ts.u.cl && init->ts.u.cl->length)
1395 sym->ts.u.cl->length =
1396 gfc_copy_expr (sym->value->ts.u.cl->length);
1399 /* Update initializer character length according symbol. */
1400 else if (sym->ts.u.cl->length->expr_type == EXPR_CONSTANT)
1402 int len = mpz_get_si (sym->ts.u.cl->length->value.integer);
1404 if (init->expr_type == EXPR_CONSTANT)
1405 gfc_set_constant_character_len (len, init, -1);
1406 else if (init->expr_type == EXPR_ARRAY)
1408 gfc_constructor *c;
1410 /* Build a new charlen to prevent simplification from
1411 deleting the length before it is resolved. */
1412 init->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
1413 init->ts.u.cl->length = gfc_copy_expr (sym->ts.u.cl->length);
1415 for (c = gfc_constructor_first (init->value.constructor);
1416 c; c = gfc_constructor_next (c))
1417 gfc_set_constant_character_len (len, c->expr, -1);
1422 /* If sym is implied-shape, set its upper bounds from init. */
1423 if (sym->attr.flavor == FL_PARAMETER && sym->attr.dimension
1424 && sym->as->type == AS_IMPLIED_SHAPE)
1426 int dim;
1428 if (init->rank == 0)
1430 gfc_error ("Can't initialize implied-shape array at %L"
1431 " with scalar", &sym->declared_at);
1432 return false;
1434 gcc_assert (sym->as->rank == init->rank);
1436 /* Shape should be present, we get an initialization expression. */
1437 gcc_assert (init->shape);
1439 for (dim = 0; dim < sym->as->rank; ++dim)
1441 int k;
1442 gfc_expr* lower;
1443 gfc_expr* e;
1445 lower = sym->as->lower[dim];
1446 if (lower->expr_type != EXPR_CONSTANT)
1448 gfc_error ("Non-constant lower bound in implied-shape"
1449 " declaration at %L", &lower->where);
1450 return false;
1453 /* All dimensions must be without upper bound. */
1454 gcc_assert (!sym->as->upper[dim]);
1456 k = lower->ts.kind;
1457 e = gfc_get_constant_expr (BT_INTEGER, k, &sym->declared_at);
1458 mpz_add (e->value.integer,
1459 lower->value.integer, init->shape[dim]);
1460 mpz_sub_ui (e->value.integer, e->value.integer, 1);
1461 sym->as->upper[dim] = e;
1464 sym->as->type = AS_EXPLICIT;
1467 /* Need to check if the expression we initialized this
1468 to was one of the iso_c_binding named constants. If so,
1469 and we're a parameter (constant), let it be iso_c.
1470 For example:
1471 integer(c_int), parameter :: my_int = c_int
1472 integer(my_int) :: my_int_2
1473 If we mark my_int as iso_c (since we can see it's value
1474 is equal to one of the named constants), then my_int_2
1475 will be considered C interoperable. */
1476 if (sym->ts.type != BT_CHARACTER && sym->ts.type != BT_DERIVED)
1478 sym->ts.is_iso_c |= init->ts.is_iso_c;
1479 sym->ts.is_c_interop |= init->ts.is_c_interop;
1480 /* attr bits needed for module files. */
1481 sym->attr.is_iso_c |= init->ts.is_iso_c;
1482 sym->attr.is_c_interop |= init->ts.is_c_interop;
1483 if (init->ts.is_iso_c)
1484 sym->ts.f90_type = init->ts.f90_type;
1487 /* Add initializer. Make sure we keep the ranks sane. */
1488 if (sym->attr.dimension && init->rank == 0)
1490 mpz_t size;
1491 gfc_expr *array;
1492 int n;
1493 if (sym->attr.flavor == FL_PARAMETER
1494 && init->expr_type == EXPR_CONSTANT
1495 && spec_size (sym->as, &size)
1496 && mpz_cmp_si (size, 0) > 0)
1498 array = gfc_get_array_expr (init->ts.type, init->ts.kind,
1499 &init->where);
1500 for (n = 0; n < (int)mpz_get_si (size); n++)
1501 gfc_constructor_append_expr (&array->value.constructor,
1502 n == 0
1503 ? init
1504 : gfc_copy_expr (init),
1505 &init->where);
1507 array->shape = gfc_get_shape (sym->as->rank);
1508 for (n = 0; n < sym->as->rank; n++)
1509 spec_dimen_size (sym->as, n, &array->shape[n]);
1511 init = array;
1512 mpz_clear (size);
1514 init->rank = sym->as->rank;
1517 sym->value = init;
1518 if (sym->attr.save == SAVE_NONE)
1519 sym->attr.save = SAVE_IMPLICIT;
1520 *initp = NULL;
1523 return true;
1527 /* Function called by variable_decl() that adds a name to a structure
1528 being built. */
1530 static bool
1531 build_struct (const char *name, gfc_charlen *cl, gfc_expr **init,
1532 gfc_array_spec **as)
1534 gfc_component *c;
1535 bool t = true;
1537 /* F03:C438/C439. If the current symbol is of the same derived type that we're
1538 constructing, it must have the pointer attribute. */
1539 if ((current_ts.type == BT_DERIVED || current_ts.type == BT_CLASS)
1540 && current_ts.u.derived == gfc_current_block ()
1541 && current_attr.pointer == 0)
1543 gfc_error ("Component at %C must have the POINTER attribute");
1544 return false;
1547 if (gfc_current_block ()->attr.pointer && (*as)->rank != 0)
1549 if ((*as)->type != AS_DEFERRED && (*as)->type != AS_EXPLICIT)
1551 gfc_error ("Array component of structure at %C must have explicit "
1552 "or deferred shape");
1553 return false;
1557 if (!gfc_add_component (gfc_current_block(), name, &c))
1558 return false;
1560 c->ts = current_ts;
1561 if (c->ts.type == BT_CHARACTER)
1562 c->ts.u.cl = cl;
1563 c->attr = current_attr;
1565 c->initializer = *init;
1566 *init = NULL;
1568 c->as = *as;
1569 if (c->as != NULL)
1571 if (c->as->corank)
1572 c->attr.codimension = 1;
1573 if (c->as->rank)
1574 c->attr.dimension = 1;
1576 *as = NULL;
1578 /* Should this ever get more complicated, combine with similar section
1579 in add_init_expr_to_sym into a separate function. */
1580 if (c->ts.type == BT_CHARACTER && !c->attr.pointer && c->initializer
1581 && c->ts.u.cl
1582 && c->ts.u.cl->length && c->ts.u.cl->length->expr_type == EXPR_CONSTANT)
1584 int len;
1586 gcc_assert (c->ts.u.cl && c->ts.u.cl->length);
1587 gcc_assert (c->ts.u.cl->length->expr_type == EXPR_CONSTANT);
1588 gcc_assert (c->ts.u.cl->length->ts.type == BT_INTEGER);
1590 len = mpz_get_si (c->ts.u.cl->length->value.integer);
1592 if (c->initializer->expr_type == EXPR_CONSTANT)
1593 gfc_set_constant_character_len (len, c->initializer, -1);
1594 else if (mpz_cmp (c->ts.u.cl->length->value.integer,
1595 c->initializer->ts.u.cl->length->value.integer))
1597 gfc_constructor *ctor;
1598 ctor = gfc_constructor_first (c->initializer->value.constructor);
1600 if (ctor)
1602 int first_len;
1603 bool has_ts = (c->initializer->ts.u.cl
1604 && c->initializer->ts.u.cl->length_from_typespec);
1606 /* Remember the length of the first element for checking
1607 that all elements *in the constructor* have the same
1608 length. This need not be the length of the LHS! */
1609 gcc_assert (ctor->expr->expr_type == EXPR_CONSTANT);
1610 gcc_assert (ctor->expr->ts.type == BT_CHARACTER);
1611 first_len = ctor->expr->value.character.length;
1613 for ( ; ctor; ctor = gfc_constructor_next (ctor))
1614 if (ctor->expr->expr_type == EXPR_CONSTANT)
1616 gfc_set_constant_character_len (len, ctor->expr,
1617 has_ts ? -1 : first_len);
1618 ctor->expr->ts.u.cl->length = gfc_copy_expr (c->ts.u.cl->length);
1624 /* Check array components. */
1625 if (!c->attr.dimension)
1626 goto scalar;
1628 if (c->attr.pointer)
1630 if (c->as->type != AS_DEFERRED)
1632 gfc_error ("Pointer array component of structure at %C must have a "
1633 "deferred shape");
1634 t = false;
1637 else if (c->attr.allocatable)
1639 if (c->as->type != AS_DEFERRED)
1641 gfc_error ("Allocatable component of structure at %C must have a "
1642 "deferred shape");
1643 t = false;
1646 else
1648 if (c->as->type != AS_EXPLICIT)
1650 gfc_error ("Array component of structure at %C must have an "
1651 "explicit shape");
1652 t = false;
1656 scalar:
1657 if (c->ts.type == BT_CLASS)
1659 bool delayed = (gfc_state_stack->sym == c->ts.u.derived)
1660 || (!c->ts.u.derived->components
1661 && !c->ts.u.derived->attr.zero_comp);
1662 bool t2 = gfc_build_class_symbol (&c->ts, &c->attr, &c->as, delayed);
1664 if (t)
1665 t = t2;
1668 return t;
1672 /* Match a 'NULL()', and possibly take care of some side effects. */
1674 match
1675 gfc_match_null (gfc_expr **result)
1677 gfc_symbol *sym;
1678 match m, m2 = MATCH_NO;
1680 if ((m = gfc_match (" null ( )")) == MATCH_ERROR)
1681 return MATCH_ERROR;
1683 if (m == MATCH_NO)
1685 locus old_loc;
1686 char name[GFC_MAX_SYMBOL_LEN + 1];
1688 if ((m2 = gfc_match (" null (")) != MATCH_YES)
1689 return m2;
1691 old_loc = gfc_current_locus;
1692 if ((m2 = gfc_match (" %n ) ", name)) == MATCH_ERROR)
1693 return MATCH_ERROR;
1694 if (m2 != MATCH_YES
1695 && ((m2 = gfc_match (" mold = %n )", name)) == MATCH_ERROR))
1696 return MATCH_ERROR;
1697 if (m2 == MATCH_NO)
1699 gfc_current_locus = old_loc;
1700 return MATCH_NO;
1704 /* The NULL symbol now has to be/become an intrinsic function. */
1705 if (gfc_get_symbol ("null", NULL, &sym))
1707 gfc_error ("NULL() initialization at %C is ambiguous");
1708 return MATCH_ERROR;
1711 gfc_intrinsic_symbol (sym);
1713 if (sym->attr.proc != PROC_INTRINSIC
1714 && !(sym->attr.use_assoc && sym->attr.intrinsic)
1715 && (!gfc_add_procedure(&sym->attr, PROC_INTRINSIC, sym->name, NULL)
1716 || !gfc_add_function (&sym->attr, sym->name, NULL)))
1717 return MATCH_ERROR;
1719 *result = gfc_get_null_expr (&gfc_current_locus);
1721 /* Invalid per F2008, C512. */
1722 if (m2 == MATCH_YES)
1724 gfc_error ("NULL() initialization at %C may not have MOLD");
1725 return MATCH_ERROR;
1728 return MATCH_YES;
1732 /* Match the initialization expr for a data pointer or procedure pointer. */
1734 static match
1735 match_pointer_init (gfc_expr **init, int procptr)
1737 match m;
1739 if (gfc_pure (NULL) && gfc_state_stack->state != COMP_DERIVED)
1741 gfc_error ("Initialization of pointer at %C is not allowed in "
1742 "a PURE procedure");
1743 return MATCH_ERROR;
1746 /* Match NULL() initialization. */
1747 m = gfc_match_null (init);
1748 if (m != MATCH_NO)
1749 return m;
1751 /* Match non-NULL initialization. */
1752 gfc_matching_ptr_assignment = !procptr;
1753 gfc_matching_procptr_assignment = procptr;
1754 m = gfc_match_rvalue (init);
1755 gfc_matching_ptr_assignment = 0;
1756 gfc_matching_procptr_assignment = 0;
1757 if (m == MATCH_ERROR)
1758 return MATCH_ERROR;
1759 else if (m == MATCH_NO)
1761 gfc_error ("Error in pointer initialization at %C");
1762 return MATCH_ERROR;
1765 if (!procptr)
1766 gfc_resolve_expr (*init);
1768 if (!gfc_notify_std (GFC_STD_F2008, "non-NULL pointer "
1769 "initialization at %C"))
1770 return MATCH_ERROR;
1772 return MATCH_YES;
1776 static bool
1777 check_function_name (char *name)
1779 /* In functions that have a RESULT variable defined, the function name always
1780 refers to function calls. Therefore, the name is not allowed to appear in
1781 specification statements. When checking this, be careful about
1782 'hidden' procedure pointer results ('ppr@'). */
1784 if (gfc_current_state () == COMP_FUNCTION)
1786 gfc_symbol *block = gfc_current_block ();
1787 if (block && block->result && block->result != block
1788 && strcmp (block->result->name, "ppr@") != 0
1789 && strcmp (block->name, name) == 0)
1791 gfc_error ("Function name '%s' not allowed at %C", name);
1792 return false;
1796 return true;
1800 /* Match a variable name with an optional initializer. When this
1801 subroutine is called, a variable is expected to be parsed next.
1802 Depending on what is happening at the moment, updates either the
1803 symbol table or the current interface. */
1805 static match
1806 variable_decl (int elem)
1808 char name[GFC_MAX_SYMBOL_LEN + 1];
1809 gfc_expr *initializer, *char_len;
1810 gfc_array_spec *as;
1811 gfc_array_spec *cp_as; /* Extra copy for Cray Pointees. */
1812 gfc_charlen *cl;
1813 bool cl_deferred;
1814 locus var_locus;
1815 match m;
1816 bool t;
1817 gfc_symbol *sym;
1819 initializer = NULL;
1820 as = NULL;
1821 cp_as = NULL;
1823 /* When we get here, we've just matched a list of attributes and
1824 maybe a type and a double colon. The next thing we expect to see
1825 is the name of the symbol. */
1826 m = gfc_match_name (name);
1827 if (m != MATCH_YES)
1828 goto cleanup;
1830 var_locus = gfc_current_locus;
1832 /* Now we could see the optional array spec. or character length. */
1833 m = gfc_match_array_spec (&as, true, true);
1834 if (m == MATCH_ERROR)
1835 goto cleanup;
1837 if (m == MATCH_NO)
1838 as = gfc_copy_array_spec (current_as);
1839 else if (current_as
1840 && !merge_array_spec (current_as, as, true))
1842 m = MATCH_ERROR;
1843 goto cleanup;
1846 if (gfc_option.flag_cray_pointer)
1847 cp_as = gfc_copy_array_spec (as);
1849 /* At this point, we know for sure if the symbol is PARAMETER and can thus
1850 determine (and check) whether it can be implied-shape. If it
1851 was parsed as assumed-size, change it because PARAMETERs can not
1852 be assumed-size. */
1853 if (as)
1855 if (as->type == AS_IMPLIED_SHAPE && current_attr.flavor != FL_PARAMETER)
1857 m = MATCH_ERROR;
1858 gfc_error ("Non-PARAMETER symbol '%s' at %L can't be implied-shape",
1859 name, &var_locus);
1860 goto cleanup;
1863 if (as->type == AS_ASSUMED_SIZE && as->rank == 1
1864 && current_attr.flavor == FL_PARAMETER)
1865 as->type = AS_IMPLIED_SHAPE;
1867 if (as->type == AS_IMPLIED_SHAPE
1868 && !gfc_notify_std (GFC_STD_F2008, "Implied-shape array at %L",
1869 &var_locus))
1871 m = MATCH_ERROR;
1872 goto cleanup;
1876 char_len = NULL;
1877 cl = NULL;
1878 cl_deferred = false;
1880 if (current_ts.type == BT_CHARACTER)
1882 switch (match_char_length (&char_len, &cl_deferred, false))
1884 case MATCH_YES:
1885 cl = gfc_new_charlen (gfc_current_ns, NULL);
1887 cl->length = char_len;
1888 break;
1890 /* Non-constant lengths need to be copied after the first
1891 element. Also copy assumed lengths. */
1892 case MATCH_NO:
1893 if (elem > 1
1894 && (current_ts.u.cl->length == NULL
1895 || current_ts.u.cl->length->expr_type != EXPR_CONSTANT))
1897 cl = gfc_new_charlen (gfc_current_ns, NULL);
1898 cl->length = gfc_copy_expr (current_ts.u.cl->length);
1900 else
1901 cl = current_ts.u.cl;
1903 cl_deferred = current_ts.deferred;
1905 break;
1907 case MATCH_ERROR:
1908 goto cleanup;
1912 /* If this symbol has already shown up in a Cray Pointer declaration,
1913 then we want to set the type & bail out. */
1914 if (gfc_option.flag_cray_pointer)
1916 gfc_find_symbol (name, gfc_current_ns, 1, &sym);
1917 if (sym != NULL && sym->attr.cray_pointee)
1919 sym->ts.type = current_ts.type;
1920 sym->ts.kind = current_ts.kind;
1921 sym->ts.u.cl = cl;
1922 sym->ts.u.derived = current_ts.u.derived;
1923 sym->ts.is_c_interop = current_ts.is_c_interop;
1924 sym->ts.is_iso_c = current_ts.is_iso_c;
1925 m = MATCH_YES;
1927 /* Check to see if we have an array specification. */
1928 if (cp_as != NULL)
1930 if (sym->as != NULL)
1932 gfc_error ("Duplicate array spec for Cray pointee at %C");
1933 gfc_free_array_spec (cp_as);
1934 m = MATCH_ERROR;
1935 goto cleanup;
1937 else
1939 if (!gfc_set_array_spec (sym, cp_as, &var_locus))
1940 gfc_internal_error ("Couldn't set pointee array spec.");
1942 /* Fix the array spec. */
1943 m = gfc_mod_pointee_as (sym->as);
1944 if (m == MATCH_ERROR)
1945 goto cleanup;
1948 goto cleanup;
1950 else
1952 gfc_free_array_spec (cp_as);
1956 /* Procedure pointer as function result. */
1957 if (gfc_current_state () == COMP_FUNCTION
1958 && strcmp ("ppr@", gfc_current_block ()->name) == 0
1959 && strcmp (name, gfc_current_block ()->ns->proc_name->name) == 0)
1960 strcpy (name, "ppr@");
1962 if (gfc_current_state () == COMP_FUNCTION
1963 && strcmp (name, gfc_current_block ()->name) == 0
1964 && gfc_current_block ()->result
1965 && strcmp ("ppr@", gfc_current_block ()->result->name) == 0)
1966 strcpy (name, "ppr@");
1968 /* OK, we've successfully matched the declaration. Now put the
1969 symbol in the current namespace, because it might be used in the
1970 optional initialization expression for this symbol, e.g. this is
1971 perfectly legal:
1973 integer, parameter :: i = huge(i)
1975 This is only true for parameters or variables of a basic type.
1976 For components of derived types, it is not true, so we don't
1977 create a symbol for those yet. If we fail to create the symbol,
1978 bail out. */
1979 if (gfc_current_state () != COMP_DERIVED
1980 && !build_sym (name, cl, cl_deferred, &as, &var_locus))
1982 m = MATCH_ERROR;
1983 goto cleanup;
1986 if (!check_function_name (name))
1988 m = MATCH_ERROR;
1989 goto cleanup;
1992 /* We allow old-style initializations of the form
1993 integer i /2/, j(4) /3*3, 1/
1994 (if no colon has been seen). These are different from data
1995 statements in that initializers are only allowed to apply to the
1996 variable immediately preceding, i.e.
1997 integer i, j /1, 2/
1998 is not allowed. Therefore we have to do some work manually, that
1999 could otherwise be left to the matchers for DATA statements. */
2001 if (!colon_seen && gfc_match (" /") == MATCH_YES)
2003 if (!gfc_notify_std (GFC_STD_GNU, "Old-style "
2004 "initialization at %C"))
2005 return MATCH_ERROR;
2007 return match_old_style_init (name);
2010 /* The double colon must be present in order to have initializers.
2011 Otherwise the statement is ambiguous with an assignment statement. */
2012 if (colon_seen)
2014 if (gfc_match (" =>") == MATCH_YES)
2016 if (!current_attr.pointer)
2018 gfc_error ("Initialization at %C isn't for a pointer variable");
2019 m = MATCH_ERROR;
2020 goto cleanup;
2023 m = match_pointer_init (&initializer, 0);
2024 if (m != MATCH_YES)
2025 goto cleanup;
2027 else if (gfc_match_char ('=') == MATCH_YES)
2029 if (current_attr.pointer)
2031 gfc_error ("Pointer initialization at %C requires '=>', "
2032 "not '='");
2033 m = MATCH_ERROR;
2034 goto cleanup;
2037 m = gfc_match_init_expr (&initializer);
2038 if (m == MATCH_NO)
2040 gfc_error ("Expected an initialization expression at %C");
2041 m = MATCH_ERROR;
2044 if (current_attr.flavor != FL_PARAMETER && gfc_pure (NULL)
2045 && gfc_state_stack->state != COMP_DERIVED)
2047 gfc_error ("Initialization of variable at %C is not allowed in "
2048 "a PURE procedure");
2049 m = MATCH_ERROR;
2052 if (m != MATCH_YES)
2053 goto cleanup;
2057 if (initializer != NULL && current_attr.allocatable
2058 && gfc_current_state () == COMP_DERIVED)
2060 gfc_error ("Initialization of allocatable component at %C is not "
2061 "allowed");
2062 m = MATCH_ERROR;
2063 goto cleanup;
2066 /* Add the initializer. Note that it is fine if initializer is
2067 NULL here, because we sometimes also need to check if a
2068 declaration *must* have an initialization expression. */
2069 if (gfc_current_state () != COMP_DERIVED)
2070 t = add_init_expr_to_sym (name, &initializer, &var_locus);
2071 else
2073 if (current_ts.type == BT_DERIVED
2074 && !current_attr.pointer && !initializer)
2075 initializer = gfc_default_initializer (&current_ts);
2076 t = build_struct (name, cl, &initializer, &as);
2079 m = (t) ? MATCH_YES : MATCH_ERROR;
2081 cleanup:
2082 /* Free stuff up and return. */
2083 gfc_free_expr (initializer);
2084 gfc_free_array_spec (as);
2086 return m;
2090 /* Match an extended-f77 "TYPESPEC*bytesize"-style kind specification.
2091 This assumes that the byte size is equal to the kind number for
2092 non-COMPLEX types, and equal to twice the kind number for COMPLEX. */
2094 match
2095 gfc_match_old_kind_spec (gfc_typespec *ts)
2097 match m;
2098 int original_kind;
2100 if (gfc_match_char ('*') != MATCH_YES)
2101 return MATCH_NO;
2103 m = gfc_match_small_literal_int (&ts->kind, NULL);
2104 if (m != MATCH_YES)
2105 return MATCH_ERROR;
2107 original_kind = ts->kind;
2109 /* Massage the kind numbers for complex types. */
2110 if (ts->type == BT_COMPLEX)
2112 if (ts->kind % 2)
2114 gfc_error ("Old-style type declaration %s*%d not supported at %C",
2115 gfc_basic_typename (ts->type), original_kind);
2116 return MATCH_ERROR;
2118 ts->kind /= 2;
2122 if (ts->type == BT_INTEGER && ts->kind == 4 && gfc_option.flag_integer4_kind == 8)
2123 ts->kind = 8;
2125 if (ts->type == BT_REAL || ts->type == BT_COMPLEX)
2127 if (ts->kind == 4)
2129 if (gfc_option.flag_real4_kind == 8)
2130 ts->kind = 8;
2131 if (gfc_option.flag_real4_kind == 10)
2132 ts->kind = 10;
2133 if (gfc_option.flag_real4_kind == 16)
2134 ts->kind = 16;
2137 if (ts->kind == 8)
2139 if (gfc_option.flag_real8_kind == 4)
2140 ts->kind = 4;
2141 if (gfc_option.flag_real8_kind == 10)
2142 ts->kind = 10;
2143 if (gfc_option.flag_real8_kind == 16)
2144 ts->kind = 16;
2148 if (gfc_validate_kind (ts->type, ts->kind, true) < 0)
2150 gfc_error ("Old-style type declaration %s*%d not supported at %C",
2151 gfc_basic_typename (ts->type), original_kind);
2152 return MATCH_ERROR;
2155 if (!gfc_notify_std (GFC_STD_GNU,
2156 "Nonstandard type declaration %s*%d at %C",
2157 gfc_basic_typename(ts->type), original_kind))
2158 return MATCH_ERROR;
2160 return MATCH_YES;
2164 /* Match a kind specification. Since kinds are generally optional, we
2165 usually return MATCH_NO if something goes wrong. If a "kind="
2166 string is found, then we know we have an error. */
2168 match
2169 gfc_match_kind_spec (gfc_typespec *ts, bool kind_expr_only)
2171 locus where, loc;
2172 gfc_expr *e;
2173 match m, n;
2174 char c;
2175 const char *msg;
2177 m = MATCH_NO;
2178 n = MATCH_YES;
2179 e = NULL;
2181 where = loc = gfc_current_locus;
2183 if (kind_expr_only)
2184 goto kind_expr;
2186 if (gfc_match_char ('(') == MATCH_NO)
2187 return MATCH_NO;
2189 /* Also gobbles optional text. */
2190 if (gfc_match (" kind = ") == MATCH_YES)
2191 m = MATCH_ERROR;
2193 loc = gfc_current_locus;
2195 kind_expr:
2196 n = gfc_match_init_expr (&e);
2198 if (n != MATCH_YES)
2200 if (gfc_matching_function)
2202 /* The function kind expression might include use associated or
2203 imported parameters and try again after the specification
2204 expressions..... */
2205 if (gfc_match_char (')') != MATCH_YES)
2207 gfc_error ("Missing right parenthesis at %C");
2208 m = MATCH_ERROR;
2209 goto no_match;
2212 gfc_free_expr (e);
2213 gfc_undo_symbols ();
2214 return MATCH_YES;
2216 else
2218 /* ....or else, the match is real. */
2219 if (n == MATCH_NO)
2220 gfc_error ("Expected initialization expression at %C");
2221 if (n != MATCH_YES)
2222 return MATCH_ERROR;
2226 if (e->rank != 0)
2228 gfc_error ("Expected scalar initialization expression at %C");
2229 m = MATCH_ERROR;
2230 goto no_match;
2233 msg = gfc_extract_int (e, &ts->kind);
2235 if (msg != NULL)
2237 gfc_error (msg);
2238 m = MATCH_ERROR;
2239 goto no_match;
2242 /* Before throwing away the expression, let's see if we had a
2243 C interoperable kind (and store the fact). */
2244 if (e->ts.is_c_interop == 1)
2246 /* Mark this as C interoperable if being declared with one
2247 of the named constants from iso_c_binding. */
2248 ts->is_c_interop = e->ts.is_iso_c;
2249 ts->f90_type = e->ts.f90_type;
2252 gfc_free_expr (e);
2253 e = NULL;
2255 /* Ignore errors to this point, if we've gotten here. This means
2256 we ignore the m=MATCH_ERROR from above. */
2257 if (gfc_validate_kind (ts->type, ts->kind, true) < 0)
2259 gfc_error ("Kind %d not supported for type %s at %C", ts->kind,
2260 gfc_basic_typename (ts->type));
2261 gfc_current_locus = where;
2262 return MATCH_ERROR;
2265 /* Warn if, e.g., c_int is used for a REAL variable, but not
2266 if, e.g., c_double is used for COMPLEX as the standard
2267 explicitly says that the kind type parameter for complex and real
2268 variable is the same, i.e. c_float == c_float_complex. */
2269 if (ts->f90_type != BT_UNKNOWN && ts->f90_type != ts->type
2270 && !((ts->f90_type == BT_REAL && ts->type == BT_COMPLEX)
2271 || (ts->f90_type == BT_COMPLEX && ts->type == BT_REAL)))
2272 gfc_warning_now ("C kind type parameter is for type %s but type at %L "
2273 "is %s", gfc_basic_typename (ts->f90_type), &where,
2274 gfc_basic_typename (ts->type));
2276 gfc_gobble_whitespace ();
2277 if ((c = gfc_next_ascii_char ()) != ')'
2278 && (ts->type != BT_CHARACTER || c != ','))
2280 if (ts->type == BT_CHARACTER)
2281 gfc_error ("Missing right parenthesis or comma at %C");
2282 else
2283 gfc_error ("Missing right parenthesis at %C");
2284 m = MATCH_ERROR;
2286 else
2287 /* All tests passed. */
2288 m = MATCH_YES;
2290 if(m == MATCH_ERROR)
2291 gfc_current_locus = where;
2293 if (ts->type == BT_INTEGER && ts->kind == 4 && gfc_option.flag_integer4_kind == 8)
2294 ts->kind = 8;
2296 if (ts->type == BT_REAL || ts->type == BT_COMPLEX)
2298 if (ts->kind == 4)
2300 if (gfc_option.flag_real4_kind == 8)
2301 ts->kind = 8;
2302 if (gfc_option.flag_real4_kind == 10)
2303 ts->kind = 10;
2304 if (gfc_option.flag_real4_kind == 16)
2305 ts->kind = 16;
2308 if (ts->kind == 8)
2310 if (gfc_option.flag_real8_kind == 4)
2311 ts->kind = 4;
2312 if (gfc_option.flag_real8_kind == 10)
2313 ts->kind = 10;
2314 if (gfc_option.flag_real8_kind == 16)
2315 ts->kind = 16;
2319 /* Return what we know from the test(s). */
2320 return m;
2322 no_match:
2323 gfc_free_expr (e);
2324 gfc_current_locus = where;
2325 return m;
2329 static match
2330 match_char_kind (int * kind, int * is_iso_c)
2332 locus where;
2333 gfc_expr *e;
2334 match m, n;
2335 const char *msg;
2337 m = MATCH_NO;
2338 e = NULL;
2339 where = gfc_current_locus;
2341 n = gfc_match_init_expr (&e);
2343 if (n != MATCH_YES && gfc_matching_function)
2345 /* The expression might include use-associated or imported
2346 parameters and try again after the specification
2347 expressions. */
2348 gfc_free_expr (e);
2349 gfc_undo_symbols ();
2350 return MATCH_YES;
2353 if (n == MATCH_NO)
2354 gfc_error ("Expected initialization expression at %C");
2355 if (n != MATCH_YES)
2356 return MATCH_ERROR;
2358 if (e->rank != 0)
2360 gfc_error ("Expected scalar initialization expression at %C");
2361 m = MATCH_ERROR;
2362 goto no_match;
2365 msg = gfc_extract_int (e, kind);
2366 *is_iso_c = e->ts.is_iso_c;
2367 if (msg != NULL)
2369 gfc_error (msg);
2370 m = MATCH_ERROR;
2371 goto no_match;
2374 gfc_free_expr (e);
2376 /* Ignore errors to this point, if we've gotten here. This means
2377 we ignore the m=MATCH_ERROR from above. */
2378 if (gfc_validate_kind (BT_CHARACTER, *kind, true) < 0)
2380 gfc_error ("Kind %d is not supported for CHARACTER at %C", *kind);
2381 m = MATCH_ERROR;
2383 else
2384 /* All tests passed. */
2385 m = MATCH_YES;
2387 if (m == MATCH_ERROR)
2388 gfc_current_locus = where;
2390 /* Return what we know from the test(s). */
2391 return m;
2393 no_match:
2394 gfc_free_expr (e);
2395 gfc_current_locus = where;
2396 return m;
2400 /* Match the various kind/length specifications in a CHARACTER
2401 declaration. We don't return MATCH_NO. */
2403 match
2404 gfc_match_char_spec (gfc_typespec *ts)
2406 int kind, seen_length, is_iso_c;
2407 gfc_charlen *cl;
2408 gfc_expr *len;
2409 match m;
2410 bool deferred;
2412 len = NULL;
2413 seen_length = 0;
2414 kind = 0;
2415 is_iso_c = 0;
2416 deferred = false;
2418 /* Try the old-style specification first. */
2419 old_char_selector = 0;
2421 m = match_char_length (&len, &deferred, true);
2422 if (m != MATCH_NO)
2424 if (m == MATCH_YES)
2425 old_char_selector = 1;
2426 seen_length = 1;
2427 goto done;
2430 m = gfc_match_char ('(');
2431 if (m != MATCH_YES)
2433 m = MATCH_YES; /* Character without length is a single char. */
2434 goto done;
2437 /* Try the weird case: ( KIND = <int> [ , LEN = <len-param> ] ). */
2438 if (gfc_match (" kind =") == MATCH_YES)
2440 m = match_char_kind (&kind, &is_iso_c);
2442 if (m == MATCH_ERROR)
2443 goto done;
2444 if (m == MATCH_NO)
2445 goto syntax;
2447 if (gfc_match (" , len =") == MATCH_NO)
2448 goto rparen;
2450 m = char_len_param_value (&len, &deferred);
2451 if (m == MATCH_NO)
2452 goto syntax;
2453 if (m == MATCH_ERROR)
2454 goto done;
2455 seen_length = 1;
2457 goto rparen;
2460 /* Try to match "LEN = <len-param>" or "LEN = <len-param>, KIND = <int>". */
2461 if (gfc_match (" len =") == MATCH_YES)
2463 m = char_len_param_value (&len, &deferred);
2464 if (m == MATCH_NO)
2465 goto syntax;
2466 if (m == MATCH_ERROR)
2467 goto done;
2468 seen_length = 1;
2470 if (gfc_match_char (')') == MATCH_YES)
2471 goto done;
2473 if (gfc_match (" , kind =") != MATCH_YES)
2474 goto syntax;
2476 if (match_char_kind (&kind, &is_iso_c) == MATCH_ERROR)
2477 goto done;
2479 goto rparen;
2482 /* Try to match ( <len-param> ) or ( <len-param> , [ KIND = ] <int> ). */
2483 m = char_len_param_value (&len, &deferred);
2484 if (m == MATCH_NO)
2485 goto syntax;
2486 if (m == MATCH_ERROR)
2487 goto done;
2488 seen_length = 1;
2490 m = gfc_match_char (')');
2491 if (m == MATCH_YES)
2492 goto done;
2494 if (gfc_match_char (',') != MATCH_YES)
2495 goto syntax;
2497 gfc_match (" kind ="); /* Gobble optional text. */
2499 m = match_char_kind (&kind, &is_iso_c);
2500 if (m == MATCH_ERROR)
2501 goto done;
2502 if (m == MATCH_NO)
2503 goto syntax;
2505 rparen:
2506 /* Require a right-paren at this point. */
2507 m = gfc_match_char (')');
2508 if (m == MATCH_YES)
2509 goto done;
2511 syntax:
2512 gfc_error ("Syntax error in CHARACTER declaration at %C");
2513 m = MATCH_ERROR;
2514 gfc_free_expr (len);
2515 return m;
2517 done:
2518 /* Deal with character functions after USE and IMPORT statements. */
2519 if (gfc_matching_function)
2521 gfc_free_expr (len);
2522 gfc_undo_symbols ();
2523 return MATCH_YES;
2526 if (m != MATCH_YES)
2528 gfc_free_expr (len);
2529 return m;
2532 /* Do some final massaging of the length values. */
2533 cl = gfc_new_charlen (gfc_current_ns, NULL);
2535 if (seen_length == 0)
2536 cl->length = gfc_get_int_expr (gfc_default_integer_kind, NULL, 1);
2537 else
2538 cl->length = len;
2540 ts->u.cl = cl;
2541 ts->kind = kind == 0 ? gfc_default_character_kind : kind;
2542 ts->deferred = deferred;
2544 /* We have to know if it was a C interoperable kind so we can
2545 do accurate type checking of bind(c) procs, etc. */
2546 if (kind != 0)
2547 /* Mark this as C interoperable if being declared with one
2548 of the named constants from iso_c_binding. */
2549 ts->is_c_interop = is_iso_c;
2550 else if (len != NULL)
2551 /* Here, we might have parsed something such as: character(c_char)
2552 In this case, the parsing code above grabs the c_char when
2553 looking for the length (line 1690, roughly). it's the last
2554 testcase for parsing the kind params of a character variable.
2555 However, it's not actually the length. this seems like it
2556 could be an error.
2557 To see if the user used a C interop kind, test the expr
2558 of the so called length, and see if it's C interoperable. */
2559 ts->is_c_interop = len->ts.is_iso_c;
2561 return MATCH_YES;
2565 /* Matches a declaration-type-spec (F03:R502). If successful, sets the ts
2566 structure to the matched specification. This is necessary for FUNCTION and
2567 IMPLICIT statements.
2569 If implicit_flag is nonzero, then we don't check for the optional
2570 kind specification. Not doing so is needed for matching an IMPLICIT
2571 statement correctly. */
2573 match
2574 gfc_match_decl_type_spec (gfc_typespec *ts, int implicit_flag)
2576 char name[GFC_MAX_SYMBOL_LEN + 1];
2577 gfc_symbol *sym, *dt_sym;
2578 match m;
2579 char c;
2580 bool seen_deferred_kind, matched_type;
2581 const char *dt_name;
2583 /* A belt and braces check that the typespec is correctly being treated
2584 as a deferred characteristic association. */
2585 seen_deferred_kind = (gfc_current_state () == COMP_FUNCTION)
2586 && (gfc_current_block ()->result->ts.kind == -1)
2587 && (ts->kind == -1);
2588 gfc_clear_ts (ts);
2589 if (seen_deferred_kind)
2590 ts->kind = -1;
2592 /* Clear the current binding label, in case one is given. */
2593 curr_binding_label = NULL;
2595 if (gfc_match (" byte") == MATCH_YES)
2597 if (!gfc_notify_std (GFC_STD_GNU, "BYTE type at %C"))
2598 return MATCH_ERROR;
2600 if (gfc_validate_kind (BT_INTEGER, 1, true) < 0)
2602 gfc_error ("BYTE type used at %C "
2603 "is not available on the target machine");
2604 return MATCH_ERROR;
2607 ts->type = BT_INTEGER;
2608 ts->kind = 1;
2609 return MATCH_YES;
2613 m = gfc_match (" type (");
2614 matched_type = (m == MATCH_YES);
2615 if (matched_type)
2617 gfc_gobble_whitespace ();
2618 if (gfc_peek_ascii_char () == '*')
2620 if ((m = gfc_match ("*)")) != MATCH_YES)
2621 return m;
2622 if (gfc_current_state () == COMP_DERIVED)
2624 gfc_error ("Assumed type at %C is not allowed for components");
2625 return MATCH_ERROR;
2627 if (!gfc_notify_std (GFC_STD_F2008_TS, "Assumed type "
2628 "at %C"))
2629 return MATCH_ERROR;
2630 ts->type = BT_ASSUMED;
2631 return MATCH_YES;
2634 m = gfc_match ("%n", name);
2635 matched_type = (m == MATCH_YES);
2638 if ((matched_type && strcmp ("integer", name) == 0)
2639 || (!matched_type && gfc_match (" integer") == MATCH_YES))
2641 ts->type = BT_INTEGER;
2642 ts->kind = gfc_default_integer_kind;
2643 goto get_kind;
2646 if ((matched_type && strcmp ("character", name) == 0)
2647 || (!matched_type && gfc_match (" character") == MATCH_YES))
2649 if (matched_type
2650 && !gfc_notify_std (GFC_STD_F2008, "TYPE with "
2651 "intrinsic-type-spec at %C"))
2652 return MATCH_ERROR;
2654 ts->type = BT_CHARACTER;
2655 if (implicit_flag == 0)
2656 m = gfc_match_char_spec (ts);
2657 else
2658 m = MATCH_YES;
2660 if (matched_type && m == MATCH_YES && gfc_match_char (')') != MATCH_YES)
2661 m = MATCH_ERROR;
2663 return m;
2666 if ((matched_type && strcmp ("real", name) == 0)
2667 || (!matched_type && gfc_match (" real") == MATCH_YES))
2669 ts->type = BT_REAL;
2670 ts->kind = gfc_default_real_kind;
2671 goto get_kind;
2674 if ((matched_type
2675 && (strcmp ("doubleprecision", name) == 0
2676 || (strcmp ("double", name) == 0
2677 && gfc_match (" precision") == MATCH_YES)))
2678 || (!matched_type && gfc_match (" double precision") == MATCH_YES))
2680 if (matched_type
2681 && !gfc_notify_std (GFC_STD_F2008, "TYPE with "
2682 "intrinsic-type-spec at %C"))
2683 return MATCH_ERROR;
2684 if (matched_type && gfc_match_char (')') != MATCH_YES)
2685 return MATCH_ERROR;
2687 ts->type = BT_REAL;
2688 ts->kind = gfc_default_double_kind;
2689 return MATCH_YES;
2692 if ((matched_type && strcmp ("complex", name) == 0)
2693 || (!matched_type && gfc_match (" complex") == MATCH_YES))
2695 ts->type = BT_COMPLEX;
2696 ts->kind = gfc_default_complex_kind;
2697 goto get_kind;
2700 if ((matched_type
2701 && (strcmp ("doublecomplex", name) == 0
2702 || (strcmp ("double", name) == 0
2703 && gfc_match (" complex") == MATCH_YES)))
2704 || (!matched_type && gfc_match (" double complex") == MATCH_YES))
2706 if (!gfc_notify_std (GFC_STD_GNU, "DOUBLE COMPLEX at %C"))
2707 return MATCH_ERROR;
2709 if (matched_type
2710 && !gfc_notify_std (GFC_STD_F2008, "TYPE with "
2711 "intrinsic-type-spec at %C"))
2712 return MATCH_ERROR;
2714 if (matched_type && gfc_match_char (')') != MATCH_YES)
2715 return MATCH_ERROR;
2717 ts->type = BT_COMPLEX;
2718 ts->kind = gfc_default_double_kind;
2719 return MATCH_YES;
2722 if ((matched_type && strcmp ("logical", name) == 0)
2723 || (!matched_type && gfc_match (" logical") == MATCH_YES))
2725 ts->type = BT_LOGICAL;
2726 ts->kind = gfc_default_logical_kind;
2727 goto get_kind;
2730 if (matched_type)
2731 m = gfc_match_char (')');
2733 if (m == MATCH_YES)
2734 ts->type = BT_DERIVED;
2735 else
2737 /* Match CLASS declarations. */
2738 m = gfc_match (" class ( * )");
2739 if (m == MATCH_ERROR)
2740 return MATCH_ERROR;
2741 else if (m == MATCH_YES)
2743 gfc_symbol *upe;
2744 gfc_symtree *st;
2745 ts->type = BT_CLASS;
2746 gfc_find_symbol ("STAR", gfc_current_ns, 1, &upe);
2747 if (upe == NULL)
2749 upe = gfc_new_symbol ("STAR", gfc_current_ns);
2750 st = gfc_new_symtree (&gfc_current_ns->sym_root, "STAR");
2751 st->n.sym = upe;
2752 gfc_set_sym_referenced (upe);
2753 upe->refs++;
2754 upe->ts.type = BT_VOID;
2755 upe->attr.unlimited_polymorphic = 1;
2756 /* This is essential to force the construction of
2757 unlimited polymorphic component class containers. */
2758 upe->attr.zero_comp = 1;
2759 if (!gfc_add_flavor (&upe->attr, FL_DERIVED, NULL,
2760 &gfc_current_locus))
2761 return MATCH_ERROR;
2763 else
2765 st = gfc_find_symtree (gfc_current_ns->sym_root, "STAR");
2766 if (st == NULL)
2767 st = gfc_new_symtree (&gfc_current_ns->sym_root, "STAR");
2768 st->n.sym = upe;
2769 upe->refs++;
2771 ts->u.derived = upe;
2772 return m;
2775 m = gfc_match (" class ( %n )", name);
2776 if (m != MATCH_YES)
2777 return m;
2778 ts->type = BT_CLASS;
2780 if (!gfc_notify_std (GFC_STD_F2003, "CLASS statement at %C"))
2781 return MATCH_ERROR;
2784 /* Defer association of the derived type until the end of the
2785 specification block. However, if the derived type can be
2786 found, add it to the typespec. */
2787 if (gfc_matching_function)
2789 ts->u.derived = NULL;
2790 if (gfc_current_state () != COMP_INTERFACE
2791 && !gfc_find_symbol (name, NULL, 1, &sym) && sym)
2793 sym = gfc_find_dt_in_generic (sym);
2794 ts->u.derived = sym;
2796 return MATCH_YES;
2799 /* Search for the name but allow the components to be defined later. If
2800 type = -1, this typespec has been seen in a function declaration but
2801 the type could not be accessed at that point. The actual derived type is
2802 stored in a symtree with the first letter of the name capitalized; the
2803 symtree with the all lower-case name contains the associated
2804 generic function. */
2805 dt_name = gfc_get_string ("%c%s",
2806 (char) TOUPPER ((unsigned char) name[0]),
2807 (const char*)&name[1]);
2808 sym = NULL;
2809 dt_sym = NULL;
2810 if (ts->kind != -1)
2812 gfc_get_ha_symbol (name, &sym);
2813 if (sym->generic && gfc_find_symbol (dt_name, NULL, 0, &dt_sym))
2815 gfc_error ("Type name '%s' at %C is ambiguous", name);
2816 return MATCH_ERROR;
2818 if (sym->generic && !dt_sym)
2819 dt_sym = gfc_find_dt_in_generic (sym);
2821 else if (ts->kind == -1)
2823 int iface = gfc_state_stack->previous->state != COMP_INTERFACE
2824 || gfc_current_ns->has_import_set;
2825 gfc_find_symbol (name, NULL, iface, &sym);
2826 if (sym && sym->generic && gfc_find_symbol (dt_name, NULL, 1, &dt_sym))
2828 gfc_error ("Type name '%s' at %C is ambiguous", name);
2829 return MATCH_ERROR;
2831 if (sym && sym->generic && !dt_sym)
2832 dt_sym = gfc_find_dt_in_generic (sym);
2834 ts->kind = 0;
2835 if (sym == NULL)
2836 return MATCH_NO;
2839 if ((sym->attr.flavor != FL_UNKNOWN
2840 && !(sym->attr.flavor == FL_PROCEDURE && sym->attr.generic))
2841 || sym->attr.subroutine)
2843 gfc_error ("Type name '%s' at %C conflicts with previously declared "
2844 "entity at %L, which has the same name", name,
2845 &sym->declared_at);
2846 return MATCH_ERROR;
2849 gfc_set_sym_referenced (sym);
2850 if (!sym->attr.generic
2851 && !gfc_add_generic (&sym->attr, sym->name, NULL))
2852 return MATCH_ERROR;
2854 if (!sym->attr.function
2855 && !gfc_add_function (&sym->attr, sym->name, NULL))
2856 return MATCH_ERROR;
2858 if (!dt_sym)
2860 gfc_interface *intr, *head;
2862 /* Use upper case to save the actual derived-type symbol. */
2863 gfc_get_symbol (dt_name, NULL, &dt_sym);
2864 dt_sym->name = gfc_get_string (sym->name);
2865 head = sym->generic;
2866 intr = gfc_get_interface ();
2867 intr->sym = dt_sym;
2868 intr->where = gfc_current_locus;
2869 intr->next = head;
2870 sym->generic = intr;
2871 sym->attr.if_source = IFSRC_DECL;
2874 gfc_set_sym_referenced (dt_sym);
2876 if (dt_sym->attr.flavor != FL_DERIVED
2877 && !gfc_add_flavor (&dt_sym->attr, FL_DERIVED, sym->name, NULL))
2878 return MATCH_ERROR;
2880 ts->u.derived = dt_sym;
2882 return MATCH_YES;
2884 get_kind:
2885 if (matched_type
2886 && !gfc_notify_std (GFC_STD_F2008, "TYPE with "
2887 "intrinsic-type-spec at %C"))
2888 return MATCH_ERROR;
2890 /* For all types except double, derived and character, look for an
2891 optional kind specifier. MATCH_NO is actually OK at this point. */
2892 if (implicit_flag == 1)
2894 if (matched_type && gfc_match_char (')') != MATCH_YES)
2895 return MATCH_ERROR;
2897 return MATCH_YES;
2900 if (gfc_current_form == FORM_FREE)
2902 c = gfc_peek_ascii_char ();
2903 if (!gfc_is_whitespace (c) && c != '*' && c != '('
2904 && c != ':' && c != ',')
2906 if (matched_type && c == ')')
2908 gfc_next_ascii_char ();
2909 return MATCH_YES;
2911 return MATCH_NO;
2915 m = gfc_match_kind_spec (ts, false);
2916 if (m == MATCH_NO && ts->type != BT_CHARACTER)
2917 m = gfc_match_old_kind_spec (ts);
2919 if (matched_type && gfc_match_char (')') != MATCH_YES)
2920 return MATCH_ERROR;
2922 /* Defer association of the KIND expression of function results
2923 until after USE and IMPORT statements. */
2924 if ((gfc_current_state () == COMP_NONE && gfc_error_flag_test ())
2925 || gfc_matching_function)
2926 return MATCH_YES;
2928 if (m == MATCH_NO)
2929 m = MATCH_YES; /* No kind specifier found. */
2931 return m;
2935 /* Match an IMPLICIT NONE statement. Actually, this statement is
2936 already matched in parse.c, or we would not end up here in the
2937 first place. So the only thing we need to check, is if there is
2938 trailing garbage. If not, the match is successful. */
2940 match
2941 gfc_match_implicit_none (void)
2943 return (gfc_match_eos () == MATCH_YES) ? MATCH_YES : MATCH_NO;
2947 /* Match the letter range(s) of an IMPLICIT statement. */
2949 static match
2950 match_implicit_range (void)
2952 char c, c1, c2;
2953 int inner;
2954 locus cur_loc;
2956 cur_loc = gfc_current_locus;
2958 gfc_gobble_whitespace ();
2959 c = gfc_next_ascii_char ();
2960 if (c != '(')
2962 gfc_error ("Missing character range in IMPLICIT at %C");
2963 goto bad;
2966 inner = 1;
2967 while (inner)
2969 gfc_gobble_whitespace ();
2970 c1 = gfc_next_ascii_char ();
2971 if (!ISALPHA (c1))
2972 goto bad;
2974 gfc_gobble_whitespace ();
2975 c = gfc_next_ascii_char ();
2977 switch (c)
2979 case ')':
2980 inner = 0; /* Fall through. */
2982 case ',':
2983 c2 = c1;
2984 break;
2986 case '-':
2987 gfc_gobble_whitespace ();
2988 c2 = gfc_next_ascii_char ();
2989 if (!ISALPHA (c2))
2990 goto bad;
2992 gfc_gobble_whitespace ();
2993 c = gfc_next_ascii_char ();
2995 if ((c != ',') && (c != ')'))
2996 goto bad;
2997 if (c == ')')
2998 inner = 0;
3000 break;
3002 default:
3003 goto bad;
3006 if (c1 > c2)
3008 gfc_error ("Letters must be in alphabetic order in "
3009 "IMPLICIT statement at %C");
3010 goto bad;
3013 /* See if we can add the newly matched range to the pending
3014 implicits from this IMPLICIT statement. We do not check for
3015 conflicts with whatever earlier IMPLICIT statements may have
3016 set. This is done when we've successfully finished matching
3017 the current one. */
3018 if (!gfc_add_new_implicit_range (c1, c2))
3019 goto bad;
3022 return MATCH_YES;
3024 bad:
3025 gfc_syntax_error (ST_IMPLICIT);
3027 gfc_current_locus = cur_loc;
3028 return MATCH_ERROR;
3032 /* Match an IMPLICIT statement, storing the types for
3033 gfc_set_implicit() if the statement is accepted by the parser.
3034 There is a strange looking, but legal syntactic construction
3035 possible. It looks like:
3037 IMPLICIT INTEGER (a-b) (c-d)
3039 This is legal if "a-b" is a constant expression that happens to
3040 equal one of the legal kinds for integers. The real problem
3041 happens with an implicit specification that looks like:
3043 IMPLICIT INTEGER (a-b)
3045 In this case, a typespec matcher that is "greedy" (as most of the
3046 matchers are) gobbles the character range as a kindspec, leaving
3047 nothing left. We therefore have to go a bit more slowly in the
3048 matching process by inhibiting the kindspec checking during
3049 typespec matching and checking for a kind later. */
3051 match
3052 gfc_match_implicit (void)
3054 gfc_typespec ts;
3055 locus cur_loc;
3056 char c;
3057 match m;
3059 gfc_clear_ts (&ts);
3061 /* We don't allow empty implicit statements. */
3062 if (gfc_match_eos () == MATCH_YES)
3064 gfc_error ("Empty IMPLICIT statement at %C");
3065 return MATCH_ERROR;
3070 /* First cleanup. */
3071 gfc_clear_new_implicit ();
3073 /* A basic type is mandatory here. */
3074 m = gfc_match_decl_type_spec (&ts, 1);
3075 if (m == MATCH_ERROR)
3076 goto error;
3077 if (m == MATCH_NO)
3078 goto syntax;
3080 cur_loc = gfc_current_locus;
3081 m = match_implicit_range ();
3083 if (m == MATCH_YES)
3085 /* We may have <TYPE> (<RANGE>). */
3086 gfc_gobble_whitespace ();
3087 c = gfc_next_ascii_char ();
3088 if ((c == '\n') || (c == ','))
3090 /* Check for CHARACTER with no length parameter. */
3091 if (ts.type == BT_CHARACTER && !ts.u.cl)
3093 ts.kind = gfc_default_character_kind;
3094 ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
3095 ts.u.cl->length = gfc_get_int_expr (gfc_default_integer_kind,
3096 NULL, 1);
3099 /* Record the Successful match. */
3100 if (!gfc_merge_new_implicit (&ts))
3101 return MATCH_ERROR;
3102 continue;
3105 gfc_current_locus = cur_loc;
3108 /* Discard the (incorrectly) matched range. */
3109 gfc_clear_new_implicit ();
3111 /* Last chance -- check <TYPE> <SELECTOR> (<RANGE>). */
3112 if (ts.type == BT_CHARACTER)
3113 m = gfc_match_char_spec (&ts);
3114 else
3116 m = gfc_match_kind_spec (&ts, false);
3117 if (m == MATCH_NO)
3119 m = gfc_match_old_kind_spec (&ts);
3120 if (m == MATCH_ERROR)
3121 goto error;
3122 if (m == MATCH_NO)
3123 goto syntax;
3126 if (m == MATCH_ERROR)
3127 goto error;
3129 m = match_implicit_range ();
3130 if (m == MATCH_ERROR)
3131 goto error;
3132 if (m == MATCH_NO)
3133 goto syntax;
3135 gfc_gobble_whitespace ();
3136 c = gfc_next_ascii_char ();
3137 if ((c != '\n') && (c != ','))
3138 goto syntax;
3140 if (!gfc_merge_new_implicit (&ts))
3141 return MATCH_ERROR;
3143 while (c == ',');
3145 return MATCH_YES;
3147 syntax:
3148 gfc_syntax_error (ST_IMPLICIT);
3150 error:
3151 return MATCH_ERROR;
3155 match
3156 gfc_match_import (void)
3158 char name[GFC_MAX_SYMBOL_LEN + 1];
3159 match m;
3160 gfc_symbol *sym;
3161 gfc_symtree *st;
3163 if (gfc_current_ns->proc_name == NULL
3164 || gfc_current_ns->proc_name->attr.if_source != IFSRC_IFBODY)
3166 gfc_error ("IMPORT statement at %C only permitted in "
3167 "an INTERFACE body");
3168 return MATCH_ERROR;
3171 if (!gfc_notify_std (GFC_STD_F2003, "IMPORT statement at %C"))
3172 return MATCH_ERROR;
3174 if (gfc_match_eos () == MATCH_YES)
3176 /* All host variables should be imported. */
3177 gfc_current_ns->has_import_set = 1;
3178 return MATCH_YES;
3181 if (gfc_match (" ::") == MATCH_YES)
3183 if (gfc_match_eos () == MATCH_YES)
3185 gfc_error ("Expecting list of named entities at %C");
3186 return MATCH_ERROR;
3190 for(;;)
3192 sym = NULL;
3193 m = gfc_match (" %n", name);
3194 switch (m)
3196 case MATCH_YES:
3197 if (gfc_current_ns->parent != NULL
3198 && gfc_find_symbol (name, gfc_current_ns->parent, 1, &sym))
3200 gfc_error ("Type name '%s' at %C is ambiguous", name);
3201 return MATCH_ERROR;
3203 else if (!sym && gfc_current_ns->proc_name->ns->parent != NULL
3204 && gfc_find_symbol (name,
3205 gfc_current_ns->proc_name->ns->parent,
3206 1, &sym))
3208 gfc_error ("Type name '%s' at %C is ambiguous", name);
3209 return MATCH_ERROR;
3212 if (sym == NULL)
3214 gfc_error ("Cannot IMPORT '%s' from host scoping unit "
3215 "at %C - does not exist.", name);
3216 return MATCH_ERROR;
3219 if (gfc_find_symtree (gfc_current_ns->sym_root, name))
3221 gfc_warning ("'%s' is already IMPORTed from host scoping unit "
3222 "at %C.", name);
3223 goto next_item;
3226 st = gfc_new_symtree (&gfc_current_ns->sym_root, name);
3227 st->n.sym = sym;
3228 sym->refs++;
3229 sym->attr.imported = 1;
3231 if (sym->attr.generic && (sym = gfc_find_dt_in_generic (sym)))
3233 /* The actual derived type is stored in a symtree with the first
3234 letter of the name capitalized; the symtree with the all
3235 lower-case name contains the associated generic function. */
3236 st = gfc_new_symtree (&gfc_current_ns->sym_root,
3237 gfc_get_string ("%c%s",
3238 (char) TOUPPER ((unsigned char) name[0]),
3239 &name[1]));
3240 st->n.sym = sym;
3241 sym->refs++;
3242 sym->attr.imported = 1;
3245 goto next_item;
3247 case MATCH_NO:
3248 break;
3250 case MATCH_ERROR:
3251 return MATCH_ERROR;
3254 next_item:
3255 if (gfc_match_eos () == MATCH_YES)
3256 break;
3257 if (gfc_match_char (',') != MATCH_YES)
3258 goto syntax;
3261 return MATCH_YES;
3263 syntax:
3264 gfc_error ("Syntax error in IMPORT statement at %C");
3265 return MATCH_ERROR;
3269 /* A minimal implementation of gfc_match without whitespace, escape
3270 characters or variable arguments. Returns true if the next
3271 characters match the TARGET template exactly. */
3273 static bool
3274 match_string_p (const char *target)
3276 const char *p;
3278 for (p = target; *p; p++)
3279 if ((char) gfc_next_ascii_char () != *p)
3280 return false;
3281 return true;
3284 /* Matches an attribute specification including array specs. If
3285 successful, leaves the variables current_attr and current_as
3286 holding the specification. Also sets the colon_seen variable for
3287 later use by matchers associated with initializations.
3289 This subroutine is a little tricky in the sense that we don't know
3290 if we really have an attr-spec until we hit the double colon.
3291 Until that time, we can only return MATCH_NO. This forces us to
3292 check for duplicate specification at this level. */
3294 static match
3295 match_attr_spec (void)
3297 /* Modifiers that can exist in a type statement. */
3298 enum
3299 { GFC_DECL_BEGIN = 0,
3300 DECL_ALLOCATABLE = GFC_DECL_BEGIN, DECL_DIMENSION, DECL_EXTERNAL,
3301 DECL_IN, DECL_OUT, DECL_INOUT, DECL_INTRINSIC, DECL_OPTIONAL,
3302 DECL_PARAMETER, DECL_POINTER, DECL_PROTECTED, DECL_PRIVATE,
3303 DECL_PUBLIC, DECL_SAVE, DECL_TARGET, DECL_VALUE, DECL_VOLATILE,
3304 DECL_IS_BIND_C, DECL_CODIMENSION, DECL_ASYNCHRONOUS, DECL_CONTIGUOUS,
3305 DECL_NONE, GFC_DECL_END /* Sentinel */
3308 /* GFC_DECL_END is the sentinel, index starts at 0. */
3309 #define NUM_DECL GFC_DECL_END
3311 locus start, seen_at[NUM_DECL];
3312 int seen[NUM_DECL];
3313 unsigned int d;
3314 const char *attr;
3315 match m;
3316 bool t;
3318 gfc_clear_attr (&current_attr);
3319 start = gfc_current_locus;
3321 current_as = NULL;
3322 colon_seen = 0;
3324 /* See if we get all of the keywords up to the final double colon. */
3325 for (d = GFC_DECL_BEGIN; d != GFC_DECL_END; d++)
3326 seen[d] = 0;
3328 for (;;)
3330 char ch;
3332 d = DECL_NONE;
3333 gfc_gobble_whitespace ();
3335 ch = gfc_next_ascii_char ();
3336 if (ch == ':')
3338 /* This is the successful exit condition for the loop. */
3339 if (gfc_next_ascii_char () == ':')
3340 break;
3342 else if (ch == ',')
3344 gfc_gobble_whitespace ();
3345 switch (gfc_peek_ascii_char ())
3347 case 'a':
3348 gfc_next_ascii_char ();
3349 switch (gfc_next_ascii_char ())
3351 case 'l':
3352 if (match_string_p ("locatable"))
3354 /* Matched "allocatable". */
3355 d = DECL_ALLOCATABLE;
3357 break;
3359 case 's':
3360 if (match_string_p ("ynchronous"))
3362 /* Matched "asynchronous". */
3363 d = DECL_ASYNCHRONOUS;
3365 break;
3367 break;
3369 case 'b':
3370 /* Try and match the bind(c). */
3371 m = gfc_match_bind_c (NULL, true);
3372 if (m == MATCH_YES)
3373 d = DECL_IS_BIND_C;
3374 else if (m == MATCH_ERROR)
3375 goto cleanup;
3376 break;
3378 case 'c':
3379 gfc_next_ascii_char ();
3380 if ('o' != gfc_next_ascii_char ())
3381 break;
3382 switch (gfc_next_ascii_char ())
3384 case 'd':
3385 if (match_string_p ("imension"))
3387 d = DECL_CODIMENSION;
3388 break;
3390 case 'n':
3391 if (match_string_p ("tiguous"))
3393 d = DECL_CONTIGUOUS;
3394 break;
3397 break;
3399 case 'd':
3400 if (match_string_p ("dimension"))
3401 d = DECL_DIMENSION;
3402 break;
3404 case 'e':
3405 if (match_string_p ("external"))
3406 d = DECL_EXTERNAL;
3407 break;
3409 case 'i':
3410 if (match_string_p ("int"))
3412 ch = gfc_next_ascii_char ();
3413 if (ch == 'e')
3415 if (match_string_p ("nt"))
3417 /* Matched "intent". */
3418 /* TODO: Call match_intent_spec from here. */
3419 if (gfc_match (" ( in out )") == MATCH_YES)
3420 d = DECL_INOUT;
3421 else if (gfc_match (" ( in )") == MATCH_YES)
3422 d = DECL_IN;
3423 else if (gfc_match (" ( out )") == MATCH_YES)
3424 d = DECL_OUT;
3427 else if (ch == 'r')
3429 if (match_string_p ("insic"))
3431 /* Matched "intrinsic". */
3432 d = DECL_INTRINSIC;
3436 break;
3438 case 'o':
3439 if (match_string_p ("optional"))
3440 d = DECL_OPTIONAL;
3441 break;
3443 case 'p':
3444 gfc_next_ascii_char ();
3445 switch (gfc_next_ascii_char ())
3447 case 'a':
3448 if (match_string_p ("rameter"))
3450 /* Matched "parameter". */
3451 d = DECL_PARAMETER;
3453 break;
3455 case 'o':
3456 if (match_string_p ("inter"))
3458 /* Matched "pointer". */
3459 d = DECL_POINTER;
3461 break;
3463 case 'r':
3464 ch = gfc_next_ascii_char ();
3465 if (ch == 'i')
3467 if (match_string_p ("vate"))
3469 /* Matched "private". */
3470 d = DECL_PRIVATE;
3473 else if (ch == 'o')
3475 if (match_string_p ("tected"))
3477 /* Matched "protected". */
3478 d = DECL_PROTECTED;
3481 break;
3483 case 'u':
3484 if (match_string_p ("blic"))
3486 /* Matched "public". */
3487 d = DECL_PUBLIC;
3489 break;
3491 break;
3493 case 's':
3494 if (match_string_p ("save"))
3495 d = DECL_SAVE;
3496 break;
3498 case 't':
3499 if (match_string_p ("target"))
3500 d = DECL_TARGET;
3501 break;
3503 case 'v':
3504 gfc_next_ascii_char ();
3505 ch = gfc_next_ascii_char ();
3506 if (ch == 'a')
3508 if (match_string_p ("lue"))
3510 /* Matched "value". */
3511 d = DECL_VALUE;
3514 else if (ch == 'o')
3516 if (match_string_p ("latile"))
3518 /* Matched "volatile". */
3519 d = DECL_VOLATILE;
3522 break;
3526 /* No double colon and no recognizable decl_type, so assume that
3527 we've been looking at something else the whole time. */
3528 if (d == DECL_NONE)
3530 m = MATCH_NO;
3531 goto cleanup;
3534 /* Check to make sure any parens are paired up correctly. */
3535 if (gfc_match_parens () == MATCH_ERROR)
3537 m = MATCH_ERROR;
3538 goto cleanup;
3541 seen[d]++;
3542 seen_at[d] = gfc_current_locus;
3544 if (d == DECL_DIMENSION || d == DECL_CODIMENSION)
3546 gfc_array_spec *as = NULL;
3548 m = gfc_match_array_spec (&as, d == DECL_DIMENSION,
3549 d == DECL_CODIMENSION);
3551 if (current_as == NULL)
3552 current_as = as;
3553 else if (m == MATCH_YES)
3555 if (!merge_array_spec (as, current_as, false))
3556 m = MATCH_ERROR;
3557 free (as);
3560 if (m == MATCH_NO)
3562 if (d == DECL_CODIMENSION)
3563 gfc_error ("Missing codimension specification at %C");
3564 else
3565 gfc_error ("Missing dimension specification at %C");
3566 m = MATCH_ERROR;
3569 if (m == MATCH_ERROR)
3570 goto cleanup;
3574 /* Since we've seen a double colon, we have to be looking at an
3575 attr-spec. This means that we can now issue errors. */
3576 for (d = GFC_DECL_BEGIN; d != GFC_DECL_END; d++)
3577 if (seen[d] > 1)
3579 switch (d)
3581 case DECL_ALLOCATABLE:
3582 attr = "ALLOCATABLE";
3583 break;
3584 case DECL_ASYNCHRONOUS:
3585 attr = "ASYNCHRONOUS";
3586 break;
3587 case DECL_CODIMENSION:
3588 attr = "CODIMENSION";
3589 break;
3590 case DECL_CONTIGUOUS:
3591 attr = "CONTIGUOUS";
3592 break;
3593 case DECL_DIMENSION:
3594 attr = "DIMENSION";
3595 break;
3596 case DECL_EXTERNAL:
3597 attr = "EXTERNAL";
3598 break;
3599 case DECL_IN:
3600 attr = "INTENT (IN)";
3601 break;
3602 case DECL_OUT:
3603 attr = "INTENT (OUT)";
3604 break;
3605 case DECL_INOUT:
3606 attr = "INTENT (IN OUT)";
3607 break;
3608 case DECL_INTRINSIC:
3609 attr = "INTRINSIC";
3610 break;
3611 case DECL_OPTIONAL:
3612 attr = "OPTIONAL";
3613 break;
3614 case DECL_PARAMETER:
3615 attr = "PARAMETER";
3616 break;
3617 case DECL_POINTER:
3618 attr = "POINTER";
3619 break;
3620 case DECL_PROTECTED:
3621 attr = "PROTECTED";
3622 break;
3623 case DECL_PRIVATE:
3624 attr = "PRIVATE";
3625 break;
3626 case DECL_PUBLIC:
3627 attr = "PUBLIC";
3628 break;
3629 case DECL_SAVE:
3630 attr = "SAVE";
3631 break;
3632 case DECL_TARGET:
3633 attr = "TARGET";
3634 break;
3635 case DECL_IS_BIND_C:
3636 attr = "IS_BIND_C";
3637 break;
3638 case DECL_VALUE:
3639 attr = "VALUE";
3640 break;
3641 case DECL_VOLATILE:
3642 attr = "VOLATILE";
3643 break;
3644 default:
3645 attr = NULL; /* This shouldn't happen. */
3648 gfc_error ("Duplicate %s attribute at %L", attr, &seen_at[d]);
3649 m = MATCH_ERROR;
3650 goto cleanup;
3653 /* Now that we've dealt with duplicate attributes, add the attributes
3654 to the current attribute. */
3655 for (d = GFC_DECL_BEGIN; d != GFC_DECL_END; d++)
3657 if (seen[d] == 0)
3658 continue;
3660 if (gfc_current_state () == COMP_DERIVED
3661 && d != DECL_DIMENSION && d != DECL_CODIMENSION
3662 && d != DECL_POINTER && d != DECL_PRIVATE
3663 && d != DECL_PUBLIC && d != DECL_CONTIGUOUS && d != DECL_NONE)
3665 if (d == DECL_ALLOCATABLE)
3667 if (!gfc_notify_std (GFC_STD_F2003, "ALLOCATABLE "
3668 "attribute at %C in a TYPE definition"))
3670 m = MATCH_ERROR;
3671 goto cleanup;
3674 else
3676 gfc_error ("Attribute at %L is not allowed in a TYPE definition",
3677 &seen_at[d]);
3678 m = MATCH_ERROR;
3679 goto cleanup;
3683 if ((d == DECL_PRIVATE || d == DECL_PUBLIC)
3684 && gfc_current_state () != COMP_MODULE)
3686 if (d == DECL_PRIVATE)
3687 attr = "PRIVATE";
3688 else
3689 attr = "PUBLIC";
3690 if (gfc_current_state () == COMP_DERIVED
3691 && gfc_state_stack->previous
3692 && gfc_state_stack->previous->state == COMP_MODULE)
3694 if (!gfc_notify_std (GFC_STD_F2003, "Attribute %s "
3695 "at %L in a TYPE definition", attr,
3696 &seen_at[d]))
3698 m = MATCH_ERROR;
3699 goto cleanup;
3702 else
3704 gfc_error ("%s attribute at %L is not allowed outside of the "
3705 "specification part of a module", attr, &seen_at[d]);
3706 m = MATCH_ERROR;
3707 goto cleanup;
3711 switch (d)
3713 case DECL_ALLOCATABLE:
3714 t = gfc_add_allocatable (&current_attr, &seen_at[d]);
3715 break;
3717 case DECL_ASYNCHRONOUS:
3718 if (!gfc_notify_std (GFC_STD_F2003, "ASYNCHRONOUS attribute at %C"))
3719 t = false;
3720 else
3721 t = gfc_add_asynchronous (&current_attr, NULL, &seen_at[d]);
3722 break;
3724 case DECL_CODIMENSION:
3725 t = gfc_add_codimension (&current_attr, NULL, &seen_at[d]);
3726 break;
3728 case DECL_CONTIGUOUS:
3729 if (!gfc_notify_std (GFC_STD_F2008, "CONTIGUOUS attribute at %C"))
3730 t = false;
3731 else
3732 t = gfc_add_contiguous (&current_attr, NULL, &seen_at[d]);
3733 break;
3735 case DECL_DIMENSION:
3736 t = gfc_add_dimension (&current_attr, NULL, &seen_at[d]);
3737 break;
3739 case DECL_EXTERNAL:
3740 t = gfc_add_external (&current_attr, &seen_at[d]);
3741 break;
3743 case DECL_IN:
3744 t = gfc_add_intent (&current_attr, INTENT_IN, &seen_at[d]);
3745 break;
3747 case DECL_OUT:
3748 t = gfc_add_intent (&current_attr, INTENT_OUT, &seen_at[d]);
3749 break;
3751 case DECL_INOUT:
3752 t = gfc_add_intent (&current_attr, INTENT_INOUT, &seen_at[d]);
3753 break;
3755 case DECL_INTRINSIC:
3756 t = gfc_add_intrinsic (&current_attr, &seen_at[d]);
3757 break;
3759 case DECL_OPTIONAL:
3760 t = gfc_add_optional (&current_attr, &seen_at[d]);
3761 break;
3763 case DECL_PARAMETER:
3764 t = gfc_add_flavor (&current_attr, FL_PARAMETER, NULL, &seen_at[d]);
3765 break;
3767 case DECL_POINTER:
3768 t = gfc_add_pointer (&current_attr, &seen_at[d]);
3769 break;
3771 case DECL_PROTECTED:
3772 if (gfc_current_ns->proc_name->attr.flavor != FL_MODULE)
3774 gfc_error ("PROTECTED at %C only allowed in specification "
3775 "part of a module");
3776 t = false;
3777 break;
3780 if (!gfc_notify_std (GFC_STD_F2003, "PROTECTED attribute at %C"))
3781 t = false;
3782 else
3783 t = gfc_add_protected (&current_attr, NULL, &seen_at[d]);
3784 break;
3786 case DECL_PRIVATE:
3787 t = gfc_add_access (&current_attr, ACCESS_PRIVATE, NULL,
3788 &seen_at[d]);
3789 break;
3791 case DECL_PUBLIC:
3792 t = gfc_add_access (&current_attr, ACCESS_PUBLIC, NULL,
3793 &seen_at[d]);
3794 break;
3796 case DECL_SAVE:
3797 t = gfc_add_save (&current_attr, SAVE_EXPLICIT, NULL, &seen_at[d]);
3798 break;
3800 case DECL_TARGET:
3801 t = gfc_add_target (&current_attr, &seen_at[d]);
3802 break;
3804 case DECL_IS_BIND_C:
3805 t = gfc_add_is_bind_c(&current_attr, NULL, &seen_at[d], 0);
3806 break;
3808 case DECL_VALUE:
3809 if (!gfc_notify_std (GFC_STD_F2003, "VALUE attribute at %C"))
3810 t = false;
3811 else
3812 t = gfc_add_value (&current_attr, NULL, &seen_at[d]);
3813 break;
3815 case DECL_VOLATILE:
3816 if (!gfc_notify_std (GFC_STD_F2003, "VOLATILE attribute at %C"))
3817 t = false;
3818 else
3819 t = gfc_add_volatile (&current_attr, NULL, &seen_at[d]);
3820 break;
3822 default:
3823 gfc_internal_error ("match_attr_spec(): Bad attribute");
3826 if (!t)
3828 m = MATCH_ERROR;
3829 goto cleanup;
3833 /* Since Fortran 2008 module variables implicitly have the SAVE attribute. */
3834 if (gfc_current_state () == COMP_MODULE && !current_attr.save
3835 && (gfc_option.allow_std & GFC_STD_F2008) != 0)
3836 current_attr.save = SAVE_IMPLICIT;
3838 colon_seen = 1;
3839 return MATCH_YES;
3841 cleanup:
3842 gfc_current_locus = start;
3843 gfc_free_array_spec (current_as);
3844 current_as = NULL;
3845 return m;
3849 /* Set the binding label, dest_label, either with the binding label
3850 stored in the given gfc_typespec, ts, or if none was provided, it
3851 will be the symbol name in all lower case, as required by the draft
3852 (J3/04-007, section 15.4.1). If a binding label was given and
3853 there is more than one argument (num_idents), it is an error. */
3855 static bool
3856 set_binding_label (const char **dest_label, const char *sym_name,
3857 int num_idents)
3859 if (num_idents > 1 && has_name_equals)
3861 gfc_error ("Multiple identifiers provided with "
3862 "single NAME= specifier at %C");
3863 return false;
3866 if (curr_binding_label)
3867 /* Binding label given; store in temp holder till have sym. */
3868 *dest_label = curr_binding_label;
3869 else
3871 /* No binding label given, and the NAME= specifier did not exist,
3872 which means there was no NAME="". */
3873 if (sym_name != NULL && has_name_equals == 0)
3874 *dest_label = IDENTIFIER_POINTER (get_identifier (sym_name));
3877 return true;
3881 /* Set the status of the given common block as being BIND(C) or not,
3882 depending on the given parameter, is_bind_c. */
3884 void
3885 set_com_block_bind_c (gfc_common_head *com_block, int is_bind_c)
3887 com_block->is_bind_c = is_bind_c;
3888 return;
3892 /* Verify that the given gfc_typespec is for a C interoperable type. */
3894 bool
3895 gfc_verify_c_interop (gfc_typespec *ts)
3897 if (ts->type == BT_DERIVED && ts->u.derived != NULL)
3898 return (ts->u.derived->ts.is_c_interop || ts->u.derived->attr.is_bind_c)
3899 ? true : false;
3900 else if (ts->type == BT_CLASS)
3901 return false;
3902 else if (ts->is_c_interop != 1 && ts->type != BT_ASSUMED)
3903 return false;
3905 return true;
3909 /* Verify that the variables of a given common block, which has been
3910 defined with the attribute specifier bind(c), to be of a C
3911 interoperable type. Errors will be reported here, if
3912 encountered. */
3914 bool
3915 verify_com_block_vars_c_interop (gfc_common_head *com_block)
3917 gfc_symbol *curr_sym = NULL;
3918 bool retval = true;
3920 curr_sym = com_block->head;
3922 /* Make sure we have at least one symbol. */
3923 if (curr_sym == NULL)
3924 return retval;
3926 /* Here we know we have a symbol, so we'll execute this loop
3927 at least once. */
3930 /* The second to last param, 1, says this is in a common block. */
3931 retval = verify_bind_c_sym (curr_sym, &(curr_sym->ts), 1, com_block);
3932 curr_sym = curr_sym->common_next;
3933 } while (curr_sym != NULL);
3935 return retval;
3939 /* Verify that a given BIND(C) symbol is C interoperable. If it is not,
3940 an appropriate error message is reported. */
3942 bool
3943 verify_bind_c_sym (gfc_symbol *tmp_sym, gfc_typespec *ts,
3944 int is_in_common, gfc_common_head *com_block)
3946 bool bind_c_function = false;
3947 bool retval = true;
3949 if (tmp_sym->attr.function && tmp_sym->attr.is_bind_c)
3950 bind_c_function = true;
3952 if (tmp_sym->attr.function && tmp_sym->result != NULL)
3954 tmp_sym = tmp_sym->result;
3955 /* Make sure it wasn't an implicitly typed result. */
3956 if (tmp_sym->attr.implicit_type && gfc_option.warn_c_binding_type)
3958 gfc_warning ("Implicitly declared BIND(C) function '%s' at "
3959 "%L may not be C interoperable", tmp_sym->name,
3960 &tmp_sym->declared_at);
3961 tmp_sym->ts.f90_type = tmp_sym->ts.type;
3962 /* Mark it as C interoperable to prevent duplicate warnings. */
3963 tmp_sym->ts.is_c_interop = 1;
3964 tmp_sym->attr.is_c_interop = 1;
3968 /* Here, we know we have the bind(c) attribute, so if we have
3969 enough type info, then verify that it's a C interop kind.
3970 The info could be in the symbol already, or possibly still in
3971 the given ts (current_ts), so look in both. */
3972 if (tmp_sym->ts.type != BT_UNKNOWN || ts->type != BT_UNKNOWN)
3974 if (!gfc_verify_c_interop (&(tmp_sym->ts)))
3976 /* See if we're dealing with a sym in a common block or not. */
3977 if (is_in_common == 1 && gfc_option.warn_c_binding_type)
3979 gfc_warning ("Variable '%s' in common block '%s' at %L "
3980 "may not be a C interoperable "
3981 "kind though common block '%s' is BIND(C)",
3982 tmp_sym->name, com_block->name,
3983 &(tmp_sym->declared_at), com_block->name);
3985 else
3987 if (tmp_sym->ts.type == BT_DERIVED || ts->type == BT_DERIVED)
3988 gfc_error ("Type declaration '%s' at %L is not C "
3989 "interoperable but it is BIND(C)",
3990 tmp_sym->name, &(tmp_sym->declared_at));
3991 else if (gfc_option.warn_c_binding_type)
3992 gfc_warning ("Variable '%s' at %L "
3993 "may not be a C interoperable "
3994 "kind but it is bind(c)",
3995 tmp_sym->name, &(tmp_sym->declared_at));
3999 /* Variables declared w/in a common block can't be bind(c)
4000 since there's no way for C to see these variables, so there's
4001 semantically no reason for the attribute. */
4002 if (is_in_common == 1 && tmp_sym->attr.is_bind_c == 1)
4004 gfc_error ("Variable '%s' in common block '%s' at "
4005 "%L cannot be declared with BIND(C) "
4006 "since it is not a global",
4007 tmp_sym->name, com_block->name,
4008 &(tmp_sym->declared_at));
4009 retval = false;
4012 /* Scalar variables that are bind(c) can not have the pointer
4013 or allocatable attributes. */
4014 if (tmp_sym->attr.is_bind_c == 1)
4016 if (tmp_sym->attr.pointer == 1)
4018 gfc_error ("Variable '%s' at %L cannot have both the "
4019 "POINTER and BIND(C) attributes",
4020 tmp_sym->name, &(tmp_sym->declared_at));
4021 retval = false;
4024 if (tmp_sym->attr.allocatable == 1)
4026 gfc_error ("Variable '%s' at %L cannot have both the "
4027 "ALLOCATABLE and BIND(C) attributes",
4028 tmp_sym->name, &(tmp_sym->declared_at));
4029 retval = false;
4034 /* If it is a BIND(C) function, make sure the return value is a
4035 scalar value. The previous tests in this function made sure
4036 the type is interoperable. */
4037 if (bind_c_function && tmp_sym->as != NULL)
4038 gfc_error ("Return type of BIND(C) function '%s' at %L cannot "
4039 "be an array", tmp_sym->name, &(tmp_sym->declared_at));
4041 /* BIND(C) functions can not return a character string. */
4042 if (bind_c_function && tmp_sym->ts.type == BT_CHARACTER)
4043 if (tmp_sym->ts.u.cl == NULL || tmp_sym->ts.u.cl->length == NULL
4044 || tmp_sym->ts.u.cl->length->expr_type != EXPR_CONSTANT
4045 || mpz_cmp_si (tmp_sym->ts.u.cl->length->value.integer, 1) != 0)
4046 gfc_error ("Return type of BIND(C) function '%s' at %L cannot "
4047 "be a character string", tmp_sym->name,
4048 &(tmp_sym->declared_at));
4051 /* See if the symbol has been marked as private. If it has, make sure
4052 there is no binding label and warn the user if there is one. */
4053 if (tmp_sym->attr.access == ACCESS_PRIVATE
4054 && tmp_sym->binding_label)
4055 /* Use gfc_warning_now because we won't say that the symbol fails
4056 just because of this. */
4057 gfc_warning_now ("Symbol '%s' at %L is marked PRIVATE but has been "
4058 "given the binding label '%s'", tmp_sym->name,
4059 &(tmp_sym->declared_at), tmp_sym->binding_label);
4061 return retval;
4065 /* Set the appropriate fields for a symbol that's been declared as
4066 BIND(C) (the is_bind_c flag and the binding label), and verify that
4067 the type is C interoperable. Errors are reported by the functions
4068 used to set/test these fields. */
4070 bool
4071 set_verify_bind_c_sym (gfc_symbol *tmp_sym, int num_idents)
4073 bool retval = true;
4075 /* TODO: Do we need to make sure the vars aren't marked private? */
4077 /* Set the is_bind_c bit in symbol_attribute. */
4078 gfc_add_is_bind_c (&(tmp_sym->attr), tmp_sym->name, &gfc_current_locus, 0);
4080 if (!set_binding_label (&tmp_sym->binding_label, tmp_sym->name, num_idents))
4081 return false;
4083 return retval;
4087 /* Set the fields marking the given common block as BIND(C), including
4088 a binding label, and report any errors encountered. */
4090 bool
4091 set_verify_bind_c_com_block (gfc_common_head *com_block, int num_idents)
4093 bool retval = true;
4095 /* destLabel, common name, typespec (which may have binding label). */
4096 if (!set_binding_label (&com_block->binding_label, com_block->name,
4097 num_idents))
4098 return false;
4100 /* Set the given common block (com_block) to being bind(c) (1). */
4101 set_com_block_bind_c (com_block, 1);
4103 return retval;
4107 /* Retrieve the list of one or more identifiers that the given bind(c)
4108 attribute applies to. */
4110 bool
4111 get_bind_c_idents (void)
4113 char name[GFC_MAX_SYMBOL_LEN + 1];
4114 int num_idents = 0;
4115 gfc_symbol *tmp_sym = NULL;
4116 match found_id;
4117 gfc_common_head *com_block = NULL;
4119 if (gfc_match_name (name) == MATCH_YES)
4121 found_id = MATCH_YES;
4122 gfc_get_ha_symbol (name, &tmp_sym);
4124 else if (match_common_name (name) == MATCH_YES)
4126 found_id = MATCH_YES;
4127 com_block = gfc_get_common (name, 0);
4129 else
4131 gfc_error ("Need either entity or common block name for "
4132 "attribute specification statement at %C");
4133 return false;
4136 /* Save the current identifier and look for more. */
4139 /* Increment the number of identifiers found for this spec stmt. */
4140 num_idents++;
4142 /* Make sure we have a sym or com block, and verify that it can
4143 be bind(c). Set the appropriate field(s) and look for more
4144 identifiers. */
4145 if (tmp_sym != NULL || com_block != NULL)
4147 if (tmp_sym != NULL)
4149 if (!set_verify_bind_c_sym (tmp_sym, num_idents))
4150 return false;
4152 else
4154 if (!set_verify_bind_c_com_block (com_block, num_idents))
4155 return false;
4158 /* Look to see if we have another identifier. */
4159 tmp_sym = NULL;
4160 if (gfc_match_eos () == MATCH_YES)
4161 found_id = MATCH_NO;
4162 else if (gfc_match_char (',') != MATCH_YES)
4163 found_id = MATCH_NO;
4164 else if (gfc_match_name (name) == MATCH_YES)
4166 found_id = MATCH_YES;
4167 gfc_get_ha_symbol (name, &tmp_sym);
4169 else if (match_common_name (name) == MATCH_YES)
4171 found_id = MATCH_YES;
4172 com_block = gfc_get_common (name, 0);
4174 else
4176 gfc_error ("Missing entity or common block name for "
4177 "attribute specification statement at %C");
4178 return false;
4181 else
4183 gfc_internal_error ("Missing symbol");
4185 } while (found_id == MATCH_YES);
4187 /* if we get here we were successful */
4188 return true;
4192 /* Try and match a BIND(C) attribute specification statement. */
4194 match
4195 gfc_match_bind_c_stmt (void)
4197 match found_match = MATCH_NO;
4198 gfc_typespec *ts;
4200 ts = &current_ts;
4202 /* This may not be necessary. */
4203 gfc_clear_ts (ts);
4204 /* Clear the temporary binding label holder. */
4205 curr_binding_label = NULL;
4207 /* Look for the bind(c). */
4208 found_match = gfc_match_bind_c (NULL, true);
4210 if (found_match == MATCH_YES)
4212 if (!gfc_notify_std (GFC_STD_F2003, "BIND(C) statement at %C"))
4213 return MATCH_ERROR;
4215 /* Look for the :: now, but it is not required. */
4216 gfc_match (" :: ");
4218 /* Get the identifier(s) that needs to be updated. This may need to
4219 change to hand the flag(s) for the attr specified so all identifiers
4220 found can have all appropriate parts updated (assuming that the same
4221 spec stmt can have multiple attrs, such as both bind(c) and
4222 allocatable...). */
4223 if (!get_bind_c_idents ())
4224 /* Error message should have printed already. */
4225 return MATCH_ERROR;
4228 return found_match;
4232 /* Match a data declaration statement. */
4234 match
4235 gfc_match_data_decl (void)
4237 gfc_symbol *sym;
4238 match m;
4239 int elem;
4241 num_idents_on_line = 0;
4243 m = gfc_match_decl_type_spec (&current_ts, 0);
4244 if (m != MATCH_YES)
4245 return m;
4247 if ((current_ts.type == BT_DERIVED || current_ts.type == BT_CLASS)
4248 && gfc_current_state () != COMP_DERIVED)
4250 sym = gfc_use_derived (current_ts.u.derived);
4252 if (sym == NULL)
4254 m = MATCH_ERROR;
4255 goto cleanup;
4258 current_ts.u.derived = sym;
4261 m = match_attr_spec ();
4262 if (m == MATCH_ERROR)
4264 m = MATCH_NO;
4265 goto cleanup;
4268 if (current_ts.type == BT_CLASS
4269 && current_ts.u.derived->attr.unlimited_polymorphic)
4270 goto ok;
4272 if ((current_ts.type == BT_DERIVED || current_ts.type == BT_CLASS)
4273 && current_ts.u.derived->components == NULL
4274 && !current_ts.u.derived->attr.zero_comp)
4277 if (current_attr.pointer && gfc_current_state () == COMP_DERIVED)
4278 goto ok;
4280 gfc_find_symbol (current_ts.u.derived->name,
4281 current_ts.u.derived->ns, 1, &sym);
4283 /* Any symbol that we find had better be a type definition
4284 which has its components defined. */
4285 if (sym != NULL && sym->attr.flavor == FL_DERIVED
4286 && (current_ts.u.derived->components != NULL
4287 || current_ts.u.derived->attr.zero_comp))
4288 goto ok;
4290 gfc_error ("Derived type at %C has not been previously defined "
4291 "and so cannot appear in a derived type definition");
4292 m = MATCH_ERROR;
4293 goto cleanup;
4297 /* If we have an old-style character declaration, and no new-style
4298 attribute specifications, then there a comma is optional between
4299 the type specification and the variable list. */
4300 if (m == MATCH_NO && current_ts.type == BT_CHARACTER && old_char_selector)
4301 gfc_match_char (',');
4303 /* Give the types/attributes to symbols that follow. Give the element
4304 a number so that repeat character length expressions can be copied. */
4305 elem = 1;
4306 for (;;)
4308 num_idents_on_line++;
4309 m = variable_decl (elem++);
4310 if (m == MATCH_ERROR)
4311 goto cleanup;
4312 if (m == MATCH_NO)
4313 break;
4315 if (gfc_match_eos () == MATCH_YES)
4316 goto cleanup;
4317 if (gfc_match_char (',') != MATCH_YES)
4318 break;
4321 if (gfc_error_flag_test () == 0)
4322 gfc_error ("Syntax error in data declaration at %C");
4323 m = MATCH_ERROR;
4325 gfc_free_data_all (gfc_current_ns);
4327 cleanup:
4328 gfc_free_array_spec (current_as);
4329 current_as = NULL;
4330 return m;
4334 /* Match a prefix associated with a function or subroutine
4335 declaration. If the typespec pointer is nonnull, then a typespec
4336 can be matched. Note that if nothing matches, MATCH_YES is
4337 returned (the null string was matched). */
4339 match
4340 gfc_match_prefix (gfc_typespec *ts)
4342 bool seen_type;
4343 bool seen_impure;
4344 bool found_prefix;
4346 gfc_clear_attr (&current_attr);
4347 seen_type = false;
4348 seen_impure = false;
4350 gcc_assert (!gfc_matching_prefix);
4351 gfc_matching_prefix = true;
4355 found_prefix = false;
4357 if (!seen_type && ts != NULL
4358 && gfc_match_decl_type_spec (ts, 0) == MATCH_YES
4359 && gfc_match_space () == MATCH_YES)
4362 seen_type = true;
4363 found_prefix = true;
4366 if (gfc_match ("elemental% ") == MATCH_YES)
4368 if (!gfc_add_elemental (&current_attr, NULL))
4369 goto error;
4371 found_prefix = true;
4374 if (gfc_match ("pure% ") == MATCH_YES)
4376 if (!gfc_add_pure (&current_attr, NULL))
4377 goto error;
4379 found_prefix = true;
4382 if (gfc_match ("recursive% ") == MATCH_YES)
4384 if (!gfc_add_recursive (&current_attr, NULL))
4385 goto error;
4387 found_prefix = true;
4390 /* IMPURE is a somewhat special case, as it needs not set an actual
4391 attribute but rather only prevents ELEMENTAL routines from being
4392 automatically PURE. */
4393 if (gfc_match ("impure% ") == MATCH_YES)
4395 if (!gfc_notify_std (GFC_STD_F2008, "IMPURE procedure at %C"))
4396 goto error;
4398 seen_impure = true;
4399 found_prefix = true;
4402 while (found_prefix);
4404 /* IMPURE and PURE must not both appear, of course. */
4405 if (seen_impure && current_attr.pure)
4407 gfc_error ("PURE and IMPURE must not appear both at %C");
4408 goto error;
4411 /* If IMPURE it not seen but the procedure is ELEMENTAL, mark it as PURE. */
4412 if (!seen_impure && current_attr.elemental && !current_attr.pure)
4414 if (!gfc_add_pure (&current_attr, NULL))
4415 goto error;
4418 /* At this point, the next item is not a prefix. */
4419 gcc_assert (gfc_matching_prefix);
4420 gfc_matching_prefix = false;
4421 return MATCH_YES;
4423 error:
4424 gcc_assert (gfc_matching_prefix);
4425 gfc_matching_prefix = false;
4426 return MATCH_ERROR;
4430 /* Copy attributes matched by gfc_match_prefix() to attributes on a symbol. */
4432 static bool
4433 copy_prefix (symbol_attribute *dest, locus *where)
4435 if (current_attr.pure && !gfc_add_pure (dest, where))
4436 return false;
4438 if (current_attr.elemental && !gfc_add_elemental (dest, where))
4439 return false;
4441 if (current_attr.recursive && !gfc_add_recursive (dest, where))
4442 return false;
4444 return true;
4448 /* Match a formal argument list. */
4450 match
4451 gfc_match_formal_arglist (gfc_symbol *progname, int st_flag, int null_flag)
4453 gfc_formal_arglist *head, *tail, *p, *q;
4454 char name[GFC_MAX_SYMBOL_LEN + 1];
4455 gfc_symbol *sym;
4456 match m;
4458 head = tail = NULL;
4460 if (gfc_match_char ('(') != MATCH_YES)
4462 if (null_flag)
4463 goto ok;
4464 return MATCH_NO;
4467 if (gfc_match_char (')') == MATCH_YES)
4468 goto ok;
4470 for (;;)
4472 if (gfc_match_char ('*') == MATCH_YES)
4474 sym = NULL;
4475 if (!gfc_notify_std (GFC_STD_F95_OBS, "Alternate-return argument "
4476 "at %C"))
4478 m = MATCH_ERROR;
4479 goto cleanup;
4482 else
4484 m = gfc_match_name (name);
4485 if (m != MATCH_YES)
4486 goto cleanup;
4488 if (gfc_get_symbol (name, NULL, &sym))
4489 goto cleanup;
4492 p = gfc_get_formal_arglist ();
4494 if (head == NULL)
4495 head = tail = p;
4496 else
4498 tail->next = p;
4499 tail = p;
4502 tail->sym = sym;
4504 /* We don't add the VARIABLE flavor because the name could be a
4505 dummy procedure. We don't apply these attributes to formal
4506 arguments of statement functions. */
4507 if (sym != NULL && !st_flag
4508 && (!gfc_add_dummy(&sym->attr, sym->name, NULL)
4509 || !gfc_missing_attr (&sym->attr, NULL)))
4511 m = MATCH_ERROR;
4512 goto cleanup;
4515 /* The name of a program unit can be in a different namespace,
4516 so check for it explicitly. After the statement is accepted,
4517 the name is checked for especially in gfc_get_symbol(). */
4518 if (gfc_new_block != NULL && sym != NULL
4519 && strcmp (sym->name, gfc_new_block->name) == 0)
4521 gfc_error ("Name '%s' at %C is the name of the procedure",
4522 sym->name);
4523 m = MATCH_ERROR;
4524 goto cleanup;
4527 if (gfc_match_char (')') == MATCH_YES)
4528 goto ok;
4530 m = gfc_match_char (',');
4531 if (m != MATCH_YES)
4533 gfc_error ("Unexpected junk in formal argument list at %C");
4534 goto cleanup;
4539 /* Check for duplicate symbols in the formal argument list. */
4540 if (head != NULL)
4542 for (p = head; p->next; p = p->next)
4544 if (p->sym == NULL)
4545 continue;
4547 for (q = p->next; q; q = q->next)
4548 if (p->sym == q->sym)
4550 gfc_error ("Duplicate symbol '%s' in formal argument list "
4551 "at %C", p->sym->name);
4553 m = MATCH_ERROR;
4554 goto cleanup;
4559 if (!gfc_add_explicit_interface (progname, IFSRC_DECL, head, NULL))
4561 m = MATCH_ERROR;
4562 goto cleanup;
4565 return MATCH_YES;
4567 cleanup:
4568 gfc_free_formal_arglist (head);
4569 return m;
4573 /* Match a RESULT specification following a function declaration or
4574 ENTRY statement. Also matches the end-of-statement. */
4576 static match
4577 match_result (gfc_symbol *function, gfc_symbol **result)
4579 char name[GFC_MAX_SYMBOL_LEN + 1];
4580 gfc_symbol *r;
4581 match m;
4583 if (gfc_match (" result (") != MATCH_YES)
4584 return MATCH_NO;
4586 m = gfc_match_name (name);
4587 if (m != MATCH_YES)
4588 return m;
4590 /* Get the right paren, and that's it because there could be the
4591 bind(c) attribute after the result clause. */
4592 if (gfc_match_char (')') != MATCH_YES)
4594 /* TODO: should report the missing right paren here. */
4595 return MATCH_ERROR;
4598 if (strcmp (function->name, name) == 0)
4600 gfc_error ("RESULT variable at %C must be different than function name");
4601 return MATCH_ERROR;
4604 if (gfc_get_symbol (name, NULL, &r))
4605 return MATCH_ERROR;
4607 if (!gfc_add_result (&r->attr, r->name, NULL))
4608 return MATCH_ERROR;
4610 *result = r;
4612 return MATCH_YES;
4616 /* Match a function suffix, which could be a combination of a result
4617 clause and BIND(C), either one, or neither. The draft does not
4618 require them to come in a specific order. */
4620 match
4621 gfc_match_suffix (gfc_symbol *sym, gfc_symbol **result)
4623 match is_bind_c; /* Found bind(c). */
4624 match is_result; /* Found result clause. */
4625 match found_match; /* Status of whether we've found a good match. */
4626 char peek_char; /* Character we're going to peek at. */
4627 bool allow_binding_name;
4629 /* Initialize to having found nothing. */
4630 found_match = MATCH_NO;
4631 is_bind_c = MATCH_NO;
4632 is_result = MATCH_NO;
4634 /* Get the next char to narrow between result and bind(c). */
4635 gfc_gobble_whitespace ();
4636 peek_char = gfc_peek_ascii_char ();
4638 /* C binding names are not allowed for internal procedures. */
4639 if (gfc_current_state () == COMP_CONTAINS
4640 && sym->ns->proc_name->attr.flavor != FL_MODULE)
4641 allow_binding_name = false;
4642 else
4643 allow_binding_name = true;
4645 switch (peek_char)
4647 case 'r':
4648 /* Look for result clause. */
4649 is_result = match_result (sym, result);
4650 if (is_result == MATCH_YES)
4652 /* Now see if there is a bind(c) after it. */
4653 is_bind_c = gfc_match_bind_c (sym, allow_binding_name);
4654 /* We've found the result clause and possibly bind(c). */
4655 found_match = MATCH_YES;
4657 else
4658 /* This should only be MATCH_ERROR. */
4659 found_match = is_result;
4660 break;
4661 case 'b':
4662 /* Look for bind(c) first. */
4663 is_bind_c = gfc_match_bind_c (sym, allow_binding_name);
4664 if (is_bind_c == MATCH_YES)
4666 /* Now see if a result clause followed it. */
4667 is_result = match_result (sym, result);
4668 found_match = MATCH_YES;
4670 else
4672 /* Should only be a MATCH_ERROR if we get here after seeing 'b'. */
4673 found_match = MATCH_ERROR;
4675 break;
4676 default:
4677 gfc_error ("Unexpected junk after function declaration at %C");
4678 found_match = MATCH_ERROR;
4679 break;
4682 if (is_bind_c == MATCH_YES)
4684 /* Fortran 2008 draft allows BIND(C) for internal procedures. */
4685 if (gfc_current_state () == COMP_CONTAINS
4686 && sym->ns->proc_name->attr.flavor != FL_MODULE
4687 && !gfc_notify_std (GFC_STD_F2008, "BIND(C) attribute "
4688 "at %L may not be specified for an internal "
4689 "procedure", &gfc_current_locus))
4690 return MATCH_ERROR;
4692 if (!gfc_add_is_bind_c (&(sym->attr), sym->name, &gfc_current_locus, 1))
4693 return MATCH_ERROR;
4696 return found_match;
4700 /* Procedure pointer return value without RESULT statement:
4701 Add "hidden" result variable named "ppr@". */
4703 static bool
4704 add_hidden_procptr_result (gfc_symbol *sym)
4706 bool case1,case2;
4708 if (gfc_notification_std (GFC_STD_F2003) == ERROR)
4709 return false;
4711 /* First usage case: PROCEDURE and EXTERNAL statements. */
4712 case1 = gfc_current_state () == COMP_FUNCTION && gfc_current_block ()
4713 && strcmp (gfc_current_block ()->name, sym->name) == 0
4714 && sym->attr.external;
4715 /* Second usage case: INTERFACE statements. */
4716 case2 = gfc_current_state () == COMP_INTERFACE && gfc_state_stack->previous
4717 && gfc_state_stack->previous->state == COMP_FUNCTION
4718 && strcmp (gfc_state_stack->previous->sym->name, sym->name) == 0;
4720 if (case1 || case2)
4722 gfc_symtree *stree;
4723 if (case1)
4724 gfc_get_sym_tree ("ppr@", gfc_current_ns, &stree, false);
4725 else if (case2)
4727 gfc_symtree *st2;
4728 gfc_get_sym_tree ("ppr@", gfc_current_ns->parent, &stree, false);
4729 st2 = gfc_new_symtree (&gfc_current_ns->sym_root, "ppr@");
4730 st2->n.sym = stree->n.sym;
4732 sym->result = stree->n.sym;
4734 sym->result->attr.proc_pointer = sym->attr.proc_pointer;
4735 sym->result->attr.pointer = sym->attr.pointer;
4736 sym->result->attr.external = sym->attr.external;
4737 sym->result->attr.referenced = sym->attr.referenced;
4738 sym->result->ts = sym->ts;
4739 sym->attr.proc_pointer = 0;
4740 sym->attr.pointer = 0;
4741 sym->attr.external = 0;
4742 if (sym->result->attr.external && sym->result->attr.pointer)
4744 sym->result->attr.pointer = 0;
4745 sym->result->attr.proc_pointer = 1;
4748 return gfc_add_result (&sym->result->attr, sym->result->name, NULL);
4750 /* POINTER after PROCEDURE/EXTERNAL/INTERFACE statement. */
4751 else if (sym->attr.function && !sym->attr.external && sym->attr.pointer
4752 && sym->result && sym->result != sym && sym->result->attr.external
4753 && sym == gfc_current_ns->proc_name
4754 && sym == sym->result->ns->proc_name
4755 && strcmp ("ppr@", sym->result->name) == 0)
4757 sym->result->attr.proc_pointer = 1;
4758 sym->attr.pointer = 0;
4759 return true;
4761 else
4762 return false;
4766 /* Match the interface for a PROCEDURE declaration,
4767 including brackets (R1212). */
4769 static match
4770 match_procedure_interface (gfc_symbol **proc_if)
4772 match m;
4773 gfc_symtree *st;
4774 locus old_loc, entry_loc;
4775 gfc_namespace *old_ns = gfc_current_ns;
4776 char name[GFC_MAX_SYMBOL_LEN + 1];
4778 old_loc = entry_loc = gfc_current_locus;
4779 gfc_clear_ts (&current_ts);
4781 if (gfc_match (" (") != MATCH_YES)
4783 gfc_current_locus = entry_loc;
4784 return MATCH_NO;
4787 /* Get the type spec. for the procedure interface. */
4788 old_loc = gfc_current_locus;
4789 m = gfc_match_decl_type_spec (&current_ts, 0);
4790 gfc_gobble_whitespace ();
4791 if (m == MATCH_YES || (m == MATCH_NO && gfc_peek_ascii_char () == ')'))
4792 goto got_ts;
4794 if (m == MATCH_ERROR)
4795 return m;
4797 /* Procedure interface is itself a procedure. */
4798 gfc_current_locus = old_loc;
4799 m = gfc_match_name (name);
4801 /* First look to see if it is already accessible in the current
4802 namespace because it is use associated or contained. */
4803 st = NULL;
4804 if (gfc_find_sym_tree (name, NULL, 0, &st))
4805 return MATCH_ERROR;
4807 /* If it is still not found, then try the parent namespace, if it
4808 exists and create the symbol there if it is still not found. */
4809 if (gfc_current_ns->parent)
4810 gfc_current_ns = gfc_current_ns->parent;
4811 if (st == NULL && gfc_get_ha_sym_tree (name, &st))
4812 return MATCH_ERROR;
4814 gfc_current_ns = old_ns;
4815 *proc_if = st->n.sym;
4817 if (*proc_if)
4819 (*proc_if)->refs++;
4820 /* Resolve interface if possible. That way, attr.procedure is only set
4821 if it is declared by a later procedure-declaration-stmt, which is
4822 invalid per F08:C1216 (cf. resolve_procedure_interface). */
4823 while ((*proc_if)->ts.interface)
4824 *proc_if = (*proc_if)->ts.interface;
4826 if ((*proc_if)->attr.flavor == FL_UNKNOWN
4827 && (*proc_if)->ts.type == BT_UNKNOWN
4828 && !gfc_add_flavor (&(*proc_if)->attr, FL_PROCEDURE,
4829 (*proc_if)->name, NULL))
4830 return MATCH_ERROR;
4833 got_ts:
4834 if (gfc_match (" )") != MATCH_YES)
4836 gfc_current_locus = entry_loc;
4837 return MATCH_NO;
4840 return MATCH_YES;
4844 /* Match a PROCEDURE declaration (R1211). */
4846 static match
4847 match_procedure_decl (void)
4849 match m;
4850 gfc_symbol *sym, *proc_if = NULL;
4851 int num;
4852 gfc_expr *initializer = NULL;
4854 /* Parse interface (with brackets). */
4855 m = match_procedure_interface (&proc_if);
4856 if (m != MATCH_YES)
4857 return m;
4859 /* Parse attributes (with colons). */
4860 m = match_attr_spec();
4861 if (m == MATCH_ERROR)
4862 return MATCH_ERROR;
4864 if (proc_if && proc_if->attr.is_bind_c && !current_attr.is_bind_c)
4866 current_attr.is_bind_c = 1;
4867 has_name_equals = 0;
4868 curr_binding_label = NULL;
4871 /* Get procedure symbols. */
4872 for(num=1;;num++)
4874 m = gfc_match_symbol (&sym, 0);
4875 if (m == MATCH_NO)
4876 goto syntax;
4877 else if (m == MATCH_ERROR)
4878 return m;
4880 /* Add current_attr to the symbol attributes. */
4881 if (!gfc_copy_attr (&sym->attr, &current_attr, NULL))
4882 return MATCH_ERROR;
4884 if (sym->attr.is_bind_c)
4886 /* Check for C1218. */
4887 if (!proc_if || !proc_if->attr.is_bind_c)
4889 gfc_error ("BIND(C) attribute at %C requires "
4890 "an interface with BIND(C)");
4891 return MATCH_ERROR;
4893 /* Check for C1217. */
4894 if (has_name_equals && sym->attr.pointer)
4896 gfc_error ("BIND(C) procedure with NAME may not have "
4897 "POINTER attribute at %C");
4898 return MATCH_ERROR;
4900 if (has_name_equals && sym->attr.dummy)
4902 gfc_error ("Dummy procedure at %C may not have "
4903 "BIND(C) attribute with NAME");
4904 return MATCH_ERROR;
4906 /* Set binding label for BIND(C). */
4907 if (!set_binding_label (&sym->binding_label, sym->name, num))
4908 return MATCH_ERROR;
4911 if (!gfc_add_external (&sym->attr, NULL))
4912 return MATCH_ERROR;
4914 if (add_hidden_procptr_result (sym))
4915 sym = sym->result;
4917 if (!gfc_add_proc (&sym->attr, sym->name, NULL))
4918 return MATCH_ERROR;
4920 /* Set interface. */
4921 if (proc_if != NULL)
4923 if (sym->ts.type != BT_UNKNOWN)
4925 gfc_error ("Procedure '%s' at %L already has basic type of %s",
4926 sym->name, &gfc_current_locus,
4927 gfc_basic_typename (sym->ts.type));
4928 return MATCH_ERROR;
4930 sym->ts.interface = proc_if;
4931 sym->attr.untyped = 1;
4932 sym->attr.if_source = IFSRC_IFBODY;
4934 else if (current_ts.type != BT_UNKNOWN)
4936 if (!gfc_add_type (sym, &current_ts, &gfc_current_locus))
4937 return MATCH_ERROR;
4938 sym->ts.interface = gfc_new_symbol ("", gfc_current_ns);
4939 sym->ts.interface->ts = current_ts;
4940 sym->ts.interface->attr.flavor = FL_PROCEDURE;
4941 sym->ts.interface->attr.function = 1;
4942 sym->attr.function = 1;
4943 sym->attr.if_source = IFSRC_UNKNOWN;
4946 if (gfc_match (" =>") == MATCH_YES)
4948 if (!current_attr.pointer)
4950 gfc_error ("Initialization at %C isn't for a pointer variable");
4951 m = MATCH_ERROR;
4952 goto cleanup;
4955 m = match_pointer_init (&initializer, 1);
4956 if (m != MATCH_YES)
4957 goto cleanup;
4959 if (!add_init_expr_to_sym (sym->name, &initializer, &gfc_current_locus))
4960 goto cleanup;
4964 if (gfc_match_eos () == MATCH_YES)
4965 return MATCH_YES;
4966 if (gfc_match_char (',') != MATCH_YES)
4967 goto syntax;
4970 syntax:
4971 gfc_error ("Syntax error in PROCEDURE statement at %C");
4972 return MATCH_ERROR;
4974 cleanup:
4975 /* Free stuff up and return. */
4976 gfc_free_expr (initializer);
4977 return m;
4981 static match
4982 match_binding_attributes (gfc_typebound_proc* ba, bool generic, bool ppc);
4985 /* Match a procedure pointer component declaration (R445). */
4987 static match
4988 match_ppc_decl (void)
4990 match m;
4991 gfc_symbol *proc_if = NULL;
4992 gfc_typespec ts;
4993 int num;
4994 gfc_component *c;
4995 gfc_expr *initializer = NULL;
4996 gfc_typebound_proc* tb;
4997 char name[GFC_MAX_SYMBOL_LEN + 1];
4999 /* Parse interface (with brackets). */
5000 m = match_procedure_interface (&proc_if);
5001 if (m != MATCH_YES)
5002 goto syntax;
5004 /* Parse attributes. */
5005 tb = XCNEW (gfc_typebound_proc);
5006 tb->where = gfc_current_locus;
5007 m = match_binding_attributes (tb, false, true);
5008 if (m == MATCH_ERROR)
5009 return m;
5011 gfc_clear_attr (&current_attr);
5012 current_attr.procedure = 1;
5013 current_attr.proc_pointer = 1;
5014 current_attr.access = tb->access;
5015 current_attr.flavor = FL_PROCEDURE;
5017 /* Match the colons (required). */
5018 if (gfc_match (" ::") != MATCH_YES)
5020 gfc_error ("Expected '::' after binding-attributes at %C");
5021 return MATCH_ERROR;
5024 /* Check for C450. */
5025 if (!tb->nopass && proc_if == NULL)
5027 gfc_error("NOPASS or explicit interface required at %C");
5028 return MATCH_ERROR;
5031 if (!gfc_notify_std (GFC_STD_F2003, "Procedure pointer component at %C"))
5032 return MATCH_ERROR;
5034 /* Match PPC names. */
5035 ts = current_ts;
5036 for(num=1;;num++)
5038 m = gfc_match_name (name);
5039 if (m == MATCH_NO)
5040 goto syntax;
5041 else if (m == MATCH_ERROR)
5042 return m;
5044 if (!gfc_add_component (gfc_current_block(), name, &c))
5045 return MATCH_ERROR;
5047 /* Add current_attr to the symbol attributes. */
5048 if (!gfc_copy_attr (&c->attr, &current_attr, NULL))
5049 return MATCH_ERROR;
5051 if (!gfc_add_external (&c->attr, NULL))
5052 return MATCH_ERROR;
5054 if (!gfc_add_proc (&c->attr, name, NULL))
5055 return MATCH_ERROR;
5057 if (num == 1)
5058 c->tb = tb;
5059 else
5061 c->tb = XCNEW (gfc_typebound_proc);
5062 c->tb->where = gfc_current_locus;
5063 *c->tb = *tb;
5066 /* Set interface. */
5067 if (proc_if != NULL)
5069 c->ts.interface = proc_if;
5070 c->attr.untyped = 1;
5071 c->attr.if_source = IFSRC_IFBODY;
5073 else if (ts.type != BT_UNKNOWN)
5075 c->ts = ts;
5076 c->ts.interface = gfc_new_symbol ("", gfc_current_ns);
5077 c->ts.interface->result = c->ts.interface;
5078 c->ts.interface->ts = ts;
5079 c->ts.interface->attr.flavor = FL_PROCEDURE;
5080 c->ts.interface->attr.function = 1;
5081 c->attr.function = 1;
5082 c->attr.if_source = IFSRC_UNKNOWN;
5085 if (gfc_match (" =>") == MATCH_YES)
5087 m = match_pointer_init (&initializer, 1);
5088 if (m != MATCH_YES)
5090 gfc_free_expr (initializer);
5091 return m;
5093 c->initializer = initializer;
5096 if (gfc_match_eos () == MATCH_YES)
5097 return MATCH_YES;
5098 if (gfc_match_char (',') != MATCH_YES)
5099 goto syntax;
5102 syntax:
5103 gfc_error ("Syntax error in procedure pointer component at %C");
5104 return MATCH_ERROR;
5108 /* Match a PROCEDURE declaration inside an interface (R1206). */
5110 static match
5111 match_procedure_in_interface (void)
5113 match m;
5114 gfc_symbol *sym;
5115 char name[GFC_MAX_SYMBOL_LEN + 1];
5116 locus old_locus;
5118 if (current_interface.type == INTERFACE_NAMELESS
5119 || current_interface.type == INTERFACE_ABSTRACT)
5121 gfc_error ("PROCEDURE at %C must be in a generic interface");
5122 return MATCH_ERROR;
5125 /* Check if the F2008 optional double colon appears. */
5126 gfc_gobble_whitespace ();
5127 old_locus = gfc_current_locus;
5128 if (gfc_match ("::") == MATCH_YES)
5130 if (!gfc_notify_std (GFC_STD_F2008, "double colon in "
5131 "MODULE PROCEDURE statement at %L", &old_locus))
5132 return MATCH_ERROR;
5134 else
5135 gfc_current_locus = old_locus;
5137 for(;;)
5139 m = gfc_match_name (name);
5140 if (m == MATCH_NO)
5141 goto syntax;
5142 else if (m == MATCH_ERROR)
5143 return m;
5144 if (gfc_get_symbol (name, gfc_current_ns->parent, &sym))
5145 return MATCH_ERROR;
5147 if (!gfc_add_interface (sym))
5148 return MATCH_ERROR;
5150 if (gfc_match_eos () == MATCH_YES)
5151 break;
5152 if (gfc_match_char (',') != MATCH_YES)
5153 goto syntax;
5156 return MATCH_YES;
5158 syntax:
5159 gfc_error ("Syntax error in PROCEDURE statement at %C");
5160 return MATCH_ERROR;
5164 /* General matcher for PROCEDURE declarations. */
5166 static match match_procedure_in_type (void);
5168 match
5169 gfc_match_procedure (void)
5171 match m;
5173 switch (gfc_current_state ())
5175 case COMP_NONE:
5176 case COMP_PROGRAM:
5177 case COMP_MODULE:
5178 case COMP_SUBROUTINE:
5179 case COMP_FUNCTION:
5180 case COMP_BLOCK:
5181 m = match_procedure_decl ();
5182 break;
5183 case COMP_INTERFACE:
5184 m = match_procedure_in_interface ();
5185 break;
5186 case COMP_DERIVED:
5187 m = match_ppc_decl ();
5188 break;
5189 case COMP_DERIVED_CONTAINS:
5190 m = match_procedure_in_type ();
5191 break;
5192 default:
5193 return MATCH_NO;
5196 if (m != MATCH_YES)
5197 return m;
5199 if (!gfc_notify_std (GFC_STD_F2003, "PROCEDURE statement at %C"))
5200 return MATCH_ERROR;
5202 return m;
5206 /* Warn if a matched procedure has the same name as an intrinsic; this is
5207 simply a wrapper around gfc_warn_intrinsic_shadow that interprets the current
5208 parser-state-stack to find out whether we're in a module. */
5210 static void
5211 warn_intrinsic_shadow (const gfc_symbol* sym, bool func)
5213 bool in_module;
5215 in_module = (gfc_state_stack->previous
5216 && gfc_state_stack->previous->state == COMP_MODULE);
5218 gfc_warn_intrinsic_shadow (sym, in_module, func);
5222 /* Match a function declaration. */
5224 match
5225 gfc_match_function_decl (void)
5227 char name[GFC_MAX_SYMBOL_LEN + 1];
5228 gfc_symbol *sym, *result;
5229 locus old_loc;
5230 match m;
5231 match suffix_match;
5232 match found_match; /* Status returned by match func. */
5234 if (gfc_current_state () != COMP_NONE
5235 && gfc_current_state () != COMP_INTERFACE
5236 && gfc_current_state () != COMP_CONTAINS)
5237 return MATCH_NO;
5239 gfc_clear_ts (&current_ts);
5241 old_loc = gfc_current_locus;
5243 m = gfc_match_prefix (&current_ts);
5244 if (m != MATCH_YES)
5246 gfc_current_locus = old_loc;
5247 return m;
5250 if (gfc_match ("function% %n", name) != MATCH_YES)
5252 gfc_current_locus = old_loc;
5253 return MATCH_NO;
5255 if (get_proc_name (name, &sym, false))
5256 return MATCH_ERROR;
5258 if (add_hidden_procptr_result (sym))
5259 sym = sym->result;
5261 gfc_new_block = sym;
5263 m = gfc_match_formal_arglist (sym, 0, 0);
5264 if (m == MATCH_NO)
5266 gfc_error ("Expected formal argument list in function "
5267 "definition at %C");
5268 m = MATCH_ERROR;
5269 goto cleanup;
5271 else if (m == MATCH_ERROR)
5272 goto cleanup;
5274 result = NULL;
5276 /* According to the draft, the bind(c) and result clause can
5277 come in either order after the formal_arg_list (i.e., either
5278 can be first, both can exist together or by themselves or neither
5279 one). Therefore, the match_result can't match the end of the
5280 string, and check for the bind(c) or result clause in either order. */
5281 found_match = gfc_match_eos ();
5283 /* Make sure that it isn't already declared as BIND(C). If it is, it
5284 must have been marked BIND(C) with a BIND(C) attribute and that is
5285 not allowed for procedures. */
5286 if (sym->attr.is_bind_c == 1)
5288 sym->attr.is_bind_c = 0;
5289 if (sym->old_symbol != NULL)
5290 gfc_error_now ("BIND(C) attribute at %L can only be used for "
5291 "variables or common blocks",
5292 &(sym->old_symbol->declared_at));
5293 else
5294 gfc_error_now ("BIND(C) attribute at %L can only be used for "
5295 "variables or common blocks", &gfc_current_locus);
5298 if (found_match != MATCH_YES)
5300 /* If we haven't found the end-of-statement, look for a suffix. */
5301 suffix_match = gfc_match_suffix (sym, &result);
5302 if (suffix_match == MATCH_YES)
5303 /* Need to get the eos now. */
5304 found_match = gfc_match_eos ();
5305 else
5306 found_match = suffix_match;
5309 if(found_match != MATCH_YES)
5310 m = MATCH_ERROR;
5311 else
5313 /* Make changes to the symbol. */
5314 m = MATCH_ERROR;
5316 if (!gfc_add_function (&sym->attr, sym->name, NULL))
5317 goto cleanup;
5319 if (!gfc_missing_attr (&sym->attr, NULL)
5320 || !copy_prefix (&sym->attr, &sym->declared_at))
5321 goto cleanup;
5323 /* Delay matching the function characteristics until after the
5324 specification block by signalling kind=-1. */
5325 sym->declared_at = old_loc;
5326 if (current_ts.type != BT_UNKNOWN)
5327 current_ts.kind = -1;
5328 else
5329 current_ts.kind = 0;
5331 if (result == NULL)
5333 if (current_ts.type != BT_UNKNOWN
5334 && !gfc_add_type (sym, &current_ts, &gfc_current_locus))
5335 goto cleanup;
5336 sym->result = sym;
5338 else
5340 if (current_ts.type != BT_UNKNOWN
5341 && !gfc_add_type (result, &current_ts, &gfc_current_locus))
5342 goto cleanup;
5343 sym->result = result;
5346 /* Warn if this procedure has the same name as an intrinsic. */
5347 warn_intrinsic_shadow (sym, true);
5349 return MATCH_YES;
5352 cleanup:
5353 gfc_current_locus = old_loc;
5354 return m;
5358 /* This is mostly a copy of parse.c(add_global_procedure) but modified to
5359 pass the name of the entry, rather than the gfc_current_block name, and
5360 to return false upon finding an existing global entry. */
5362 static bool
5363 add_global_entry (const char *name, const char *binding_label, bool sub,
5364 locus *where)
5366 gfc_gsymbol *s;
5367 enum gfc_symbol_type type;
5369 type = sub ? GSYM_SUBROUTINE : GSYM_FUNCTION;
5371 /* Only in Fortran 2003: For procedures with a binding label also the Fortran
5372 name is a global identifier. */
5373 if (!binding_label || gfc_notification_std (GFC_STD_F2008))
5375 s = gfc_get_gsymbol (name);
5377 if (s->defined || (s->type != GSYM_UNKNOWN && s->type != type))
5379 gfc_global_used (s, where);
5380 return false;
5382 else
5384 s->type = type;
5385 s->sym_name = name;
5386 s->where = *where;
5387 s->defined = 1;
5388 s->ns = gfc_current_ns;
5392 /* Don't add the symbol multiple times. */
5393 if (binding_label
5394 && (!gfc_notification_std (GFC_STD_F2008)
5395 || strcmp (name, binding_label) != 0))
5397 s = gfc_get_gsymbol (binding_label);
5399 if (s->defined || (s->type != GSYM_UNKNOWN && s->type != type))
5401 gfc_global_used (s, where);
5402 return false;
5404 else
5406 s->type = type;
5407 s->sym_name = name;
5408 s->binding_label = binding_label;
5409 s->where = *where;
5410 s->defined = 1;
5411 s->ns = gfc_current_ns;
5415 return true;
5419 /* Match an ENTRY statement. */
5421 match
5422 gfc_match_entry (void)
5424 gfc_symbol *proc;
5425 gfc_symbol *result;
5426 gfc_symbol *entry;
5427 char name[GFC_MAX_SYMBOL_LEN + 1];
5428 gfc_compile_state state;
5429 match m;
5430 gfc_entry_list *el;
5431 locus old_loc;
5432 bool module_procedure;
5433 char peek_char;
5434 match is_bind_c;
5436 m = gfc_match_name (name);
5437 if (m != MATCH_YES)
5438 return m;
5440 if (!gfc_notify_std (GFC_STD_F2008_OBS, "ENTRY statement at %C"))
5441 return MATCH_ERROR;
5443 state = gfc_current_state ();
5444 if (state != COMP_SUBROUTINE && state != COMP_FUNCTION)
5446 switch (state)
5448 case COMP_PROGRAM:
5449 gfc_error ("ENTRY statement at %C cannot appear within a PROGRAM");
5450 break;
5451 case COMP_MODULE:
5452 gfc_error ("ENTRY statement at %C cannot appear within a MODULE");
5453 break;
5454 case COMP_BLOCK_DATA:
5455 gfc_error ("ENTRY statement at %C cannot appear within "
5456 "a BLOCK DATA");
5457 break;
5458 case COMP_INTERFACE:
5459 gfc_error ("ENTRY statement at %C cannot appear within "
5460 "an INTERFACE");
5461 break;
5462 case COMP_DERIVED:
5463 gfc_error ("ENTRY statement at %C cannot appear within "
5464 "a DERIVED TYPE block");
5465 break;
5466 case COMP_IF:
5467 gfc_error ("ENTRY statement at %C cannot appear within "
5468 "an IF-THEN block");
5469 break;
5470 case COMP_DO:
5471 case COMP_DO_CONCURRENT:
5472 gfc_error ("ENTRY statement at %C cannot appear within "
5473 "a DO block");
5474 break;
5475 case COMP_SELECT:
5476 gfc_error ("ENTRY statement at %C cannot appear within "
5477 "a SELECT block");
5478 break;
5479 case COMP_FORALL:
5480 gfc_error ("ENTRY statement at %C cannot appear within "
5481 "a FORALL block");
5482 break;
5483 case COMP_WHERE:
5484 gfc_error ("ENTRY statement at %C cannot appear within "
5485 "a WHERE block");
5486 break;
5487 case COMP_CONTAINS:
5488 gfc_error ("ENTRY statement at %C cannot appear within "
5489 "a contained subprogram");
5490 break;
5491 default:
5492 gfc_internal_error ("gfc_match_entry(): Bad state");
5494 return MATCH_ERROR;
5497 module_procedure = gfc_current_ns->parent != NULL
5498 && gfc_current_ns->parent->proc_name
5499 && gfc_current_ns->parent->proc_name->attr.flavor
5500 == FL_MODULE;
5502 if (gfc_current_ns->parent != NULL
5503 && gfc_current_ns->parent->proc_name
5504 && !module_procedure)
5506 gfc_error("ENTRY statement at %C cannot appear in a "
5507 "contained procedure");
5508 return MATCH_ERROR;
5511 /* Module function entries need special care in get_proc_name
5512 because previous references within the function will have
5513 created symbols attached to the current namespace. */
5514 if (get_proc_name (name, &entry,
5515 gfc_current_ns->parent != NULL
5516 && module_procedure))
5517 return MATCH_ERROR;
5519 proc = gfc_current_block ();
5521 /* Make sure that it isn't already declared as BIND(C). If it is, it
5522 must have been marked BIND(C) with a BIND(C) attribute and that is
5523 not allowed for procedures. */
5524 if (entry->attr.is_bind_c == 1)
5526 entry->attr.is_bind_c = 0;
5527 if (entry->old_symbol != NULL)
5528 gfc_error_now ("BIND(C) attribute at %L can only be used for "
5529 "variables or common blocks",
5530 &(entry->old_symbol->declared_at));
5531 else
5532 gfc_error_now ("BIND(C) attribute at %L can only be used for "
5533 "variables or common blocks", &gfc_current_locus);
5536 /* Check what next non-whitespace character is so we can tell if there
5537 is the required parens if we have a BIND(C). */
5538 old_loc = gfc_current_locus;
5539 gfc_gobble_whitespace ();
5540 peek_char = gfc_peek_ascii_char ();
5542 if (state == COMP_SUBROUTINE)
5544 m = gfc_match_formal_arglist (entry, 0, 1);
5545 if (m != MATCH_YES)
5546 return MATCH_ERROR;
5548 /* Call gfc_match_bind_c with allow_binding_name = true as ENTRY can
5549 never be an internal procedure. */
5550 is_bind_c = gfc_match_bind_c (entry, true);
5551 if (is_bind_c == MATCH_ERROR)
5552 return MATCH_ERROR;
5553 if (is_bind_c == MATCH_YES)
5555 if (peek_char != '(')
5557 gfc_error ("Missing required parentheses before BIND(C) at %C");
5558 return MATCH_ERROR;
5560 if (!gfc_add_is_bind_c (&(entry->attr), entry->name,
5561 &(entry->declared_at), 1))
5562 return MATCH_ERROR;
5565 if (!gfc_current_ns->parent
5566 && !add_global_entry (name, entry->binding_label, true,
5567 &old_loc))
5568 return MATCH_ERROR;
5570 /* An entry in a subroutine. */
5571 if (!gfc_add_entry (&entry->attr, entry->name, NULL)
5572 || !gfc_add_subroutine (&entry->attr, entry->name, NULL))
5573 return MATCH_ERROR;
5575 else
5577 /* An entry in a function.
5578 We need to take special care because writing
5579 ENTRY f()
5581 ENTRY f
5582 is allowed, whereas
5583 ENTRY f() RESULT (r)
5584 can't be written as
5585 ENTRY f RESULT (r). */
5586 if (gfc_match_eos () == MATCH_YES)
5588 gfc_current_locus = old_loc;
5589 /* Match the empty argument list, and add the interface to
5590 the symbol. */
5591 m = gfc_match_formal_arglist (entry, 0, 1);
5593 else
5594 m = gfc_match_formal_arglist (entry, 0, 0);
5596 if (m != MATCH_YES)
5597 return MATCH_ERROR;
5599 result = NULL;
5601 if (gfc_match_eos () == MATCH_YES)
5603 if (!gfc_add_entry (&entry->attr, entry->name, NULL)
5604 || !gfc_add_function (&entry->attr, entry->name, NULL))
5605 return MATCH_ERROR;
5607 entry->result = entry;
5609 else
5611 m = gfc_match_suffix (entry, &result);
5612 if (m == MATCH_NO)
5613 gfc_syntax_error (ST_ENTRY);
5614 if (m != MATCH_YES)
5615 return MATCH_ERROR;
5617 if (result)
5619 if (!gfc_add_result (&result->attr, result->name, NULL)
5620 || !gfc_add_entry (&entry->attr, result->name, NULL)
5621 || !gfc_add_function (&entry->attr, result->name, NULL))
5622 return MATCH_ERROR;
5623 entry->result = result;
5625 else
5627 if (!gfc_add_entry (&entry->attr, entry->name, NULL)
5628 || !gfc_add_function (&entry->attr, entry->name, NULL))
5629 return MATCH_ERROR;
5630 entry->result = entry;
5634 if (!gfc_current_ns->parent
5635 && !add_global_entry (name, entry->binding_label, false,
5636 &old_loc))
5637 return MATCH_ERROR;
5640 if (gfc_match_eos () != MATCH_YES)
5642 gfc_syntax_error (ST_ENTRY);
5643 return MATCH_ERROR;
5646 entry->attr.recursive = proc->attr.recursive;
5647 entry->attr.elemental = proc->attr.elemental;
5648 entry->attr.pure = proc->attr.pure;
5650 el = gfc_get_entry_list ();
5651 el->sym = entry;
5652 el->next = gfc_current_ns->entries;
5653 gfc_current_ns->entries = el;
5654 if (el->next)
5655 el->id = el->next->id + 1;
5656 else
5657 el->id = 1;
5659 new_st.op = EXEC_ENTRY;
5660 new_st.ext.entry = el;
5662 return MATCH_YES;
5666 /* Match a subroutine statement, including optional prefixes. */
5668 match
5669 gfc_match_subroutine (void)
5671 char name[GFC_MAX_SYMBOL_LEN + 1];
5672 gfc_symbol *sym;
5673 match m;
5674 match is_bind_c;
5675 char peek_char;
5676 bool allow_binding_name;
5678 if (gfc_current_state () != COMP_NONE
5679 && gfc_current_state () != COMP_INTERFACE
5680 && gfc_current_state () != COMP_CONTAINS)
5681 return MATCH_NO;
5683 m = gfc_match_prefix (NULL);
5684 if (m != MATCH_YES)
5685 return m;
5687 m = gfc_match ("subroutine% %n", name);
5688 if (m != MATCH_YES)
5689 return m;
5691 if (get_proc_name (name, &sym, false))
5692 return MATCH_ERROR;
5694 /* Set declared_at as it might point to, e.g., a PUBLIC statement, if
5695 the symbol existed before. */
5696 sym->declared_at = gfc_current_locus;
5698 if (add_hidden_procptr_result (sym))
5699 sym = sym->result;
5701 gfc_new_block = sym;
5703 /* Check what next non-whitespace character is so we can tell if there
5704 is the required parens if we have a BIND(C). */
5705 gfc_gobble_whitespace ();
5706 peek_char = gfc_peek_ascii_char ();
5708 if (!gfc_add_subroutine (&sym->attr, sym->name, NULL))
5709 return MATCH_ERROR;
5711 if (gfc_match_formal_arglist (sym, 0, 1) != MATCH_YES)
5712 return MATCH_ERROR;
5714 /* Make sure that it isn't already declared as BIND(C). If it is, it
5715 must have been marked BIND(C) with a BIND(C) attribute and that is
5716 not allowed for procedures. */
5717 if (sym->attr.is_bind_c == 1)
5719 sym->attr.is_bind_c = 0;
5720 if (sym->old_symbol != NULL)
5721 gfc_error_now ("BIND(C) attribute at %L can only be used for "
5722 "variables or common blocks",
5723 &(sym->old_symbol->declared_at));
5724 else
5725 gfc_error_now ("BIND(C) attribute at %L can only be used for "
5726 "variables or common blocks", &gfc_current_locus);
5729 /* C binding names are not allowed for internal procedures. */
5730 if (gfc_current_state () == COMP_CONTAINS
5731 && sym->ns->proc_name->attr.flavor != FL_MODULE)
5732 allow_binding_name = false;
5733 else
5734 allow_binding_name = true;
5736 /* Here, we are just checking if it has the bind(c) attribute, and if
5737 so, then we need to make sure it's all correct. If it doesn't,
5738 we still need to continue matching the rest of the subroutine line. */
5739 is_bind_c = gfc_match_bind_c (sym, allow_binding_name);
5740 if (is_bind_c == MATCH_ERROR)
5742 /* There was an attempt at the bind(c), but it was wrong. An
5743 error message should have been printed w/in the gfc_match_bind_c
5744 so here we'll just return the MATCH_ERROR. */
5745 return MATCH_ERROR;
5748 if (is_bind_c == MATCH_YES)
5750 /* The following is allowed in the Fortran 2008 draft. */
5751 if (gfc_current_state () == COMP_CONTAINS
5752 && sym->ns->proc_name->attr.flavor != FL_MODULE
5753 && !gfc_notify_std (GFC_STD_F2008, "BIND(C) attribute "
5754 "at %L may not be specified for an internal "
5755 "procedure", &gfc_current_locus))
5756 return MATCH_ERROR;
5758 if (peek_char != '(')
5760 gfc_error ("Missing required parentheses before BIND(C) at %C");
5761 return MATCH_ERROR;
5763 if (!gfc_add_is_bind_c (&(sym->attr), sym->name,
5764 &(sym->declared_at), 1))
5765 return MATCH_ERROR;
5768 if (gfc_match_eos () != MATCH_YES)
5770 gfc_syntax_error (ST_SUBROUTINE);
5771 return MATCH_ERROR;
5774 if (!copy_prefix (&sym->attr, &sym->declared_at))
5775 return MATCH_ERROR;
5777 /* Warn if it has the same name as an intrinsic. */
5778 warn_intrinsic_shadow (sym, false);
5780 return MATCH_YES;
5784 /* Match a BIND(C) specifier, with the optional 'name=' specifier if
5785 given, and set the binding label in either the given symbol (if not
5786 NULL), or in the current_ts. The symbol may be NULL because we may
5787 encounter the BIND(C) before the declaration itself. Return
5788 MATCH_NO if what we're looking at isn't a BIND(C) specifier,
5789 MATCH_ERROR if it is a BIND(C) clause but an error was encountered,
5790 or MATCH_YES if the specifier was correct and the binding label and
5791 bind(c) fields were set correctly for the given symbol or the
5792 current_ts. If allow_binding_name is false, no binding name may be
5793 given. */
5795 match
5796 gfc_match_bind_c (gfc_symbol *sym, bool allow_binding_name)
5798 /* binding label, if exists */
5799 const char* binding_label = NULL;
5800 match double_quote;
5801 match single_quote;
5803 /* Initialize the flag that specifies whether we encountered a NAME=
5804 specifier or not. */
5805 has_name_equals = 0;
5807 /* This much we have to be able to match, in this order, if
5808 there is a bind(c) label. */
5809 if (gfc_match (" bind ( c ") != MATCH_YES)
5810 return MATCH_NO;
5812 /* Now see if there is a binding label, or if we've reached the
5813 end of the bind(c) attribute without one. */
5814 if (gfc_match_char (',') == MATCH_YES)
5816 if (gfc_match (" name = ") != MATCH_YES)
5818 gfc_error ("Syntax error in NAME= specifier for binding label "
5819 "at %C");
5820 /* should give an error message here */
5821 return MATCH_ERROR;
5824 has_name_equals = 1;
5826 /* Get the opening quote. */
5827 double_quote = MATCH_YES;
5828 single_quote = MATCH_YES;
5829 double_quote = gfc_match_char ('"');
5830 if (double_quote != MATCH_YES)
5831 single_quote = gfc_match_char ('\'');
5832 if (double_quote != MATCH_YES && single_quote != MATCH_YES)
5834 gfc_error ("Syntax error in NAME= specifier for binding label "
5835 "at %C");
5836 return MATCH_ERROR;
5839 /* Grab the binding label, using functions that will not lower
5840 case the names automatically. */
5841 if (gfc_match_name_C (&binding_label) != MATCH_YES)
5842 return MATCH_ERROR;
5844 /* Get the closing quotation. */
5845 if (double_quote == MATCH_YES)
5847 if (gfc_match_char ('"') != MATCH_YES)
5849 gfc_error ("Missing closing quote '\"' for binding label at %C");
5850 /* User started string with '"' so looked to match it. */
5851 return MATCH_ERROR;
5854 else
5856 if (gfc_match_char ('\'') != MATCH_YES)
5858 gfc_error ("Missing closing quote '\'' for binding label at %C");
5859 /* User started string with "'" char. */
5860 return MATCH_ERROR;
5865 /* Get the required right paren. */
5866 if (gfc_match_char (')') != MATCH_YES)
5868 gfc_error ("Missing closing paren for binding label at %C");
5869 return MATCH_ERROR;
5872 if (has_name_equals && !allow_binding_name)
5874 gfc_error ("No binding name is allowed in BIND(C) at %C");
5875 return MATCH_ERROR;
5878 if (has_name_equals && sym != NULL && sym->attr.dummy)
5880 gfc_error ("For dummy procedure %s, no binding name is "
5881 "allowed in BIND(C) at %C", sym->name);
5882 return MATCH_ERROR;
5886 /* Save the binding label to the symbol. If sym is null, we're
5887 probably matching the typespec attributes of a declaration and
5888 haven't gotten the name yet, and therefore, no symbol yet. */
5889 if (binding_label)
5891 if (sym != NULL)
5892 sym->binding_label = binding_label;
5893 else
5894 curr_binding_label = binding_label;
5896 else if (allow_binding_name)
5898 /* No binding label, but if symbol isn't null, we
5899 can set the label for it here.
5900 If name="" or allow_binding_name is false, no C binding name is
5901 created. */
5902 if (sym != NULL && sym->name != NULL && has_name_equals == 0)
5903 sym->binding_label = IDENTIFIER_POINTER (get_identifier (sym->name));
5906 if (has_name_equals && gfc_current_state () == COMP_INTERFACE
5907 && current_interface.type == INTERFACE_ABSTRACT)
5909 gfc_error ("NAME not allowed on BIND(C) for ABSTRACT INTERFACE at %C");
5910 return MATCH_ERROR;
5913 return MATCH_YES;
5917 /* Return nonzero if we're currently compiling a contained procedure. */
5919 static int
5920 contained_procedure (void)
5922 gfc_state_data *s = gfc_state_stack;
5924 if ((s->state == COMP_SUBROUTINE || s->state == COMP_FUNCTION)
5925 && s->previous != NULL && s->previous->state == COMP_CONTAINS)
5926 return 1;
5928 return 0;
5931 /* Set the kind of each enumerator. The kind is selected such that it is
5932 interoperable with the corresponding C enumeration type, making
5933 sure that -fshort-enums is honored. */
5935 static void
5936 set_enum_kind(void)
5938 enumerator_history *current_history = NULL;
5939 int kind;
5940 int i;
5942 if (max_enum == NULL || enum_history == NULL)
5943 return;
5945 if (!flag_short_enums)
5946 return;
5948 i = 0;
5951 kind = gfc_integer_kinds[i++].kind;
5953 while (kind < gfc_c_int_kind
5954 && gfc_check_integer_range (max_enum->initializer->value.integer,
5955 kind) != ARITH_OK);
5957 current_history = enum_history;
5958 while (current_history != NULL)
5960 current_history->sym->ts.kind = kind;
5961 current_history = current_history->next;
5966 /* Match any of the various end-block statements. Returns the type of
5967 END to the caller. The END INTERFACE, END IF, END DO, END SELECT
5968 and END BLOCK statements cannot be replaced by a single END statement. */
5970 match
5971 gfc_match_end (gfc_statement *st)
5973 char name[GFC_MAX_SYMBOL_LEN + 1];
5974 gfc_compile_state state;
5975 locus old_loc;
5976 const char *block_name;
5977 const char *target;
5978 int eos_ok;
5979 match m;
5980 gfc_namespace *parent_ns, *ns, *prev_ns;
5981 gfc_namespace **nsp;
5983 old_loc = gfc_current_locus;
5984 if (gfc_match ("end") != MATCH_YES)
5985 return MATCH_NO;
5987 state = gfc_current_state ();
5988 block_name = gfc_current_block () == NULL
5989 ? NULL : gfc_current_block ()->name;
5991 switch (state)
5993 case COMP_ASSOCIATE:
5994 case COMP_BLOCK:
5995 if (!strncmp (block_name, "block@", strlen("block@")))
5996 block_name = NULL;
5997 break;
5999 case COMP_CONTAINS:
6000 case COMP_DERIVED_CONTAINS:
6001 state = gfc_state_stack->previous->state;
6002 block_name = gfc_state_stack->previous->sym == NULL
6003 ? NULL : gfc_state_stack->previous->sym->name;
6004 break;
6006 default:
6007 break;
6010 switch (state)
6012 case COMP_NONE:
6013 case COMP_PROGRAM:
6014 *st = ST_END_PROGRAM;
6015 target = " program";
6016 eos_ok = 1;
6017 break;
6019 case COMP_SUBROUTINE:
6020 *st = ST_END_SUBROUTINE;
6021 target = " subroutine";
6022 eos_ok = !contained_procedure ();
6023 break;
6025 case COMP_FUNCTION:
6026 *st = ST_END_FUNCTION;
6027 target = " function";
6028 eos_ok = !contained_procedure ();
6029 break;
6031 case COMP_BLOCK_DATA:
6032 *st = ST_END_BLOCK_DATA;
6033 target = " block data";
6034 eos_ok = 1;
6035 break;
6037 case COMP_MODULE:
6038 *st = ST_END_MODULE;
6039 target = " module";
6040 eos_ok = 1;
6041 break;
6043 case COMP_INTERFACE:
6044 *st = ST_END_INTERFACE;
6045 target = " interface";
6046 eos_ok = 0;
6047 break;
6049 case COMP_DERIVED:
6050 case COMP_DERIVED_CONTAINS:
6051 *st = ST_END_TYPE;
6052 target = " type";
6053 eos_ok = 0;
6054 break;
6056 case COMP_ASSOCIATE:
6057 *st = ST_END_ASSOCIATE;
6058 target = " associate";
6059 eos_ok = 0;
6060 break;
6062 case COMP_BLOCK:
6063 *st = ST_END_BLOCK;
6064 target = " block";
6065 eos_ok = 0;
6066 break;
6068 case COMP_IF:
6069 *st = ST_ENDIF;
6070 target = " if";
6071 eos_ok = 0;
6072 break;
6074 case COMP_DO:
6075 case COMP_DO_CONCURRENT:
6076 *st = ST_ENDDO;
6077 target = " do";
6078 eos_ok = 0;
6079 break;
6081 case COMP_CRITICAL:
6082 *st = ST_END_CRITICAL;
6083 target = " critical";
6084 eos_ok = 0;
6085 break;
6087 case COMP_SELECT:
6088 case COMP_SELECT_TYPE:
6089 *st = ST_END_SELECT;
6090 target = " select";
6091 eos_ok = 0;
6092 break;
6094 case COMP_FORALL:
6095 *st = ST_END_FORALL;
6096 target = " forall";
6097 eos_ok = 0;
6098 break;
6100 case COMP_WHERE:
6101 *st = ST_END_WHERE;
6102 target = " where";
6103 eos_ok = 0;
6104 break;
6106 case COMP_ENUM:
6107 *st = ST_END_ENUM;
6108 target = " enum";
6109 eos_ok = 0;
6110 last_initializer = NULL;
6111 set_enum_kind ();
6112 gfc_free_enum_history ();
6113 break;
6115 default:
6116 gfc_error ("Unexpected END statement at %C");
6117 goto cleanup;
6120 old_loc = gfc_current_locus;
6121 if (gfc_match_eos () == MATCH_YES)
6123 if (!eos_ok && (*st == ST_END_SUBROUTINE || *st == ST_END_FUNCTION))
6125 if (!gfc_notify_std (GFC_STD_F2008, "END statement "
6126 "instead of %s statement at %L",
6127 gfc_ascii_statement(*st), &old_loc))
6128 goto cleanup;
6130 else if (!eos_ok)
6132 /* We would have required END [something]. */
6133 gfc_error ("%s statement expected at %L",
6134 gfc_ascii_statement (*st), &old_loc);
6135 goto cleanup;
6138 return MATCH_YES;
6141 /* Verify that we've got the sort of end-block that we're expecting. */
6142 if (gfc_match (target) != MATCH_YES)
6144 gfc_error ("Expecting %s statement at %L", gfc_ascii_statement (*st),
6145 &old_loc);
6146 goto cleanup;
6149 old_loc = gfc_current_locus;
6150 /* If we're at the end, make sure a block name wasn't required. */
6151 if (gfc_match_eos () == MATCH_YES)
6154 if (*st != ST_ENDDO && *st != ST_ENDIF && *st != ST_END_SELECT
6155 && *st != ST_END_FORALL && *st != ST_END_WHERE && *st != ST_END_BLOCK
6156 && *st != ST_END_ASSOCIATE && *st != ST_END_CRITICAL)
6157 return MATCH_YES;
6159 if (!block_name)
6160 return MATCH_YES;
6162 gfc_error ("Expected block name of '%s' in %s statement at %L",
6163 block_name, gfc_ascii_statement (*st), &old_loc);
6165 return MATCH_ERROR;
6168 /* END INTERFACE has a special handler for its several possible endings. */
6169 if (*st == ST_END_INTERFACE)
6170 return gfc_match_end_interface ();
6172 /* We haven't hit the end of statement, so what is left must be an
6173 end-name. */
6174 m = gfc_match_space ();
6175 if (m == MATCH_YES)
6176 m = gfc_match_name (name);
6178 if (m == MATCH_NO)
6179 gfc_error ("Expected terminating name at %C");
6180 if (m != MATCH_YES)
6181 goto cleanup;
6183 if (block_name == NULL)
6184 goto syntax;
6186 if (strcmp (name, block_name) != 0 && strcmp (block_name, "ppr@") != 0)
6188 gfc_error ("Expected label '%s' for %s statement at %C", block_name,
6189 gfc_ascii_statement (*st));
6190 goto cleanup;
6192 /* Procedure pointer as function result. */
6193 else if (strcmp (block_name, "ppr@") == 0
6194 && strcmp (name, gfc_current_block ()->ns->proc_name->name) != 0)
6196 gfc_error ("Expected label '%s' for %s statement at %C",
6197 gfc_current_block ()->ns->proc_name->name,
6198 gfc_ascii_statement (*st));
6199 goto cleanup;
6202 if (gfc_match_eos () == MATCH_YES)
6203 return MATCH_YES;
6205 syntax:
6206 gfc_syntax_error (*st);
6208 cleanup:
6209 gfc_current_locus = old_loc;
6211 /* If we are missing an END BLOCK, we created a half-ready namespace.
6212 Remove it from the parent namespace's sibling list. */
6214 if (state == COMP_BLOCK)
6216 parent_ns = gfc_current_ns->parent;
6218 nsp = &(gfc_state_stack->previous->tail->ext.block.ns);
6220 prev_ns = NULL;
6221 ns = *nsp;
6222 while (ns)
6224 if (ns == gfc_current_ns)
6226 if (prev_ns == NULL)
6227 *nsp = NULL;
6228 else
6229 prev_ns->sibling = ns->sibling;
6231 prev_ns = ns;
6232 ns = ns->sibling;
6235 gfc_free_namespace (gfc_current_ns);
6236 gfc_current_ns = parent_ns;
6239 return MATCH_ERROR;
6244 /***************** Attribute declaration statements ****************/
6246 /* Set the attribute of a single variable. */
6248 static match
6249 attr_decl1 (void)
6251 char name[GFC_MAX_SYMBOL_LEN + 1];
6252 gfc_array_spec *as;
6253 gfc_symbol *sym;
6254 locus var_locus;
6255 match m;
6257 as = NULL;
6259 m = gfc_match_name (name);
6260 if (m != MATCH_YES)
6261 goto cleanup;
6263 if (find_special (name, &sym, false))
6264 return MATCH_ERROR;
6266 if (!check_function_name (name))
6268 m = MATCH_ERROR;
6269 goto cleanup;
6272 var_locus = gfc_current_locus;
6274 /* Deal with possible array specification for certain attributes. */
6275 if (current_attr.dimension
6276 || current_attr.codimension
6277 || current_attr.allocatable
6278 || current_attr.pointer
6279 || current_attr.target)
6281 m = gfc_match_array_spec (&as, !current_attr.codimension,
6282 !current_attr.dimension
6283 && !current_attr.pointer
6284 && !current_attr.target);
6285 if (m == MATCH_ERROR)
6286 goto cleanup;
6288 if (current_attr.dimension && m == MATCH_NO)
6290 gfc_error ("Missing array specification at %L in DIMENSION "
6291 "statement", &var_locus);
6292 m = MATCH_ERROR;
6293 goto cleanup;
6296 if (current_attr.dimension && sym->value)
6298 gfc_error ("Dimensions specified for %s at %L after its "
6299 "initialisation", sym->name, &var_locus);
6300 m = MATCH_ERROR;
6301 goto cleanup;
6304 if (current_attr.codimension && m == MATCH_NO)
6306 gfc_error ("Missing array specification at %L in CODIMENSION "
6307 "statement", &var_locus);
6308 m = MATCH_ERROR;
6309 goto cleanup;
6312 if ((current_attr.allocatable || current_attr.pointer)
6313 && (m == MATCH_YES) && (as->type != AS_DEFERRED))
6315 gfc_error ("Array specification must be deferred at %L", &var_locus);
6316 m = MATCH_ERROR;
6317 goto cleanup;
6321 /* Update symbol table. DIMENSION attribute is set in
6322 gfc_set_array_spec(). For CLASS variables, this must be applied
6323 to the first component, or '_data' field. */
6324 if (sym->ts.type == BT_CLASS && sym->ts.u.derived->attr.is_class)
6326 if (!gfc_copy_attr (&CLASS_DATA(sym)->attr, &current_attr, &var_locus))
6328 m = MATCH_ERROR;
6329 goto cleanup;
6332 else
6334 if (current_attr.dimension == 0 && current_attr.codimension == 0
6335 && !gfc_copy_attr (&sym->attr, &current_attr, &var_locus))
6337 m = MATCH_ERROR;
6338 goto cleanup;
6342 if (sym->ts.type == BT_CLASS
6343 && !gfc_build_class_symbol (&sym->ts, &sym->attr, &sym->as, false))
6345 m = MATCH_ERROR;
6346 goto cleanup;
6349 if (!gfc_set_array_spec (sym, as, &var_locus))
6351 m = MATCH_ERROR;
6352 goto cleanup;
6355 if (sym->attr.cray_pointee && sym->as != NULL)
6357 /* Fix the array spec. */
6358 m = gfc_mod_pointee_as (sym->as);
6359 if (m == MATCH_ERROR)
6360 goto cleanup;
6363 if (!gfc_add_attribute (&sym->attr, &var_locus))
6365 m = MATCH_ERROR;
6366 goto cleanup;
6369 if ((current_attr.external || current_attr.intrinsic)
6370 && sym->attr.flavor != FL_PROCEDURE
6371 && !gfc_add_flavor (&sym->attr, FL_PROCEDURE, sym->name, NULL))
6373 m = MATCH_ERROR;
6374 goto cleanup;
6377 add_hidden_procptr_result (sym);
6379 return MATCH_YES;
6381 cleanup:
6382 gfc_free_array_spec (as);
6383 return m;
6387 /* Generic attribute declaration subroutine. Used for attributes that
6388 just have a list of names. */
6390 static match
6391 attr_decl (void)
6393 match m;
6395 /* Gobble the optional double colon, by simply ignoring the result
6396 of gfc_match(). */
6397 gfc_match (" ::");
6399 for (;;)
6401 m = attr_decl1 ();
6402 if (m != MATCH_YES)
6403 break;
6405 if (gfc_match_eos () == MATCH_YES)
6407 m = MATCH_YES;
6408 break;
6411 if (gfc_match_char (',') != MATCH_YES)
6413 gfc_error ("Unexpected character in variable list at %C");
6414 m = MATCH_ERROR;
6415 break;
6419 return m;
6423 /* This routine matches Cray Pointer declarations of the form:
6424 pointer ( <pointer>, <pointee> )
6426 pointer ( <pointer1>, <pointee1> ), ( <pointer2>, <pointee2> ), ...
6427 The pointer, if already declared, should be an integer. Otherwise, we
6428 set it as BT_INTEGER with kind gfc_index_integer_kind. The pointee may
6429 be either a scalar, or an array declaration. No space is allocated for
6430 the pointee. For the statement
6431 pointer (ipt, ar(10))
6432 any subsequent uses of ar will be translated (in C-notation) as
6433 ar(i) => ((<type> *) ipt)(i)
6434 After gimplification, pointee variable will disappear in the code. */
6436 static match
6437 cray_pointer_decl (void)
6439 match m;
6440 gfc_array_spec *as = NULL;
6441 gfc_symbol *cptr; /* Pointer symbol. */
6442 gfc_symbol *cpte; /* Pointee symbol. */
6443 locus var_locus;
6444 bool done = false;
6446 while (!done)
6448 if (gfc_match_char ('(') != MATCH_YES)
6450 gfc_error ("Expected '(' at %C");
6451 return MATCH_ERROR;
6454 /* Match pointer. */
6455 var_locus = gfc_current_locus;
6456 gfc_clear_attr (&current_attr);
6457 gfc_add_cray_pointer (&current_attr, &var_locus);
6458 current_ts.type = BT_INTEGER;
6459 current_ts.kind = gfc_index_integer_kind;
6461 m = gfc_match_symbol (&cptr, 0);
6462 if (m != MATCH_YES)
6464 gfc_error ("Expected variable name at %C");
6465 return m;
6468 if (!gfc_add_cray_pointer (&cptr->attr, &var_locus))
6469 return MATCH_ERROR;
6471 gfc_set_sym_referenced (cptr);
6473 if (cptr->ts.type == BT_UNKNOWN) /* Override the type, if necessary. */
6475 cptr->ts.type = BT_INTEGER;
6476 cptr->ts.kind = gfc_index_integer_kind;
6478 else if (cptr->ts.type != BT_INTEGER)
6480 gfc_error ("Cray pointer at %C must be an integer");
6481 return MATCH_ERROR;
6483 else if (cptr->ts.kind < gfc_index_integer_kind)
6484 gfc_warning ("Cray pointer at %C has %d bytes of precision;"
6485 " memory addresses require %d bytes",
6486 cptr->ts.kind, gfc_index_integer_kind);
6488 if (gfc_match_char (',') != MATCH_YES)
6490 gfc_error ("Expected \",\" at %C");
6491 return MATCH_ERROR;
6494 /* Match Pointee. */
6495 var_locus = gfc_current_locus;
6496 gfc_clear_attr (&current_attr);
6497 gfc_add_cray_pointee (&current_attr, &var_locus);
6498 current_ts.type = BT_UNKNOWN;
6499 current_ts.kind = 0;
6501 m = gfc_match_symbol (&cpte, 0);
6502 if (m != MATCH_YES)
6504 gfc_error ("Expected variable name at %C");
6505 return m;
6508 /* Check for an optional array spec. */
6509 m = gfc_match_array_spec (&as, true, false);
6510 if (m == MATCH_ERROR)
6512 gfc_free_array_spec (as);
6513 return m;
6515 else if (m == MATCH_NO)
6517 gfc_free_array_spec (as);
6518 as = NULL;
6521 if (!gfc_add_cray_pointee (&cpte->attr, &var_locus))
6522 return MATCH_ERROR;
6524 gfc_set_sym_referenced (cpte);
6526 if (cpte->as == NULL)
6528 if (!gfc_set_array_spec (cpte, as, &var_locus))
6529 gfc_internal_error ("Couldn't set Cray pointee array spec.");
6531 else if (as != NULL)
6533 gfc_error ("Duplicate array spec for Cray pointee at %C");
6534 gfc_free_array_spec (as);
6535 return MATCH_ERROR;
6538 as = NULL;
6540 if (cpte->as != NULL)
6542 /* Fix array spec. */
6543 m = gfc_mod_pointee_as (cpte->as);
6544 if (m == MATCH_ERROR)
6545 return m;
6548 /* Point the Pointee at the Pointer. */
6549 cpte->cp_pointer = cptr;
6551 if (gfc_match_char (')') != MATCH_YES)
6553 gfc_error ("Expected \")\" at %C");
6554 return MATCH_ERROR;
6556 m = gfc_match_char (',');
6557 if (m != MATCH_YES)
6558 done = true; /* Stop searching for more declarations. */
6562 if (m == MATCH_ERROR /* Failed when trying to find ',' above. */
6563 || gfc_match_eos () != MATCH_YES)
6565 gfc_error ("Expected \",\" or end of statement at %C");
6566 return MATCH_ERROR;
6568 return MATCH_YES;
6572 match
6573 gfc_match_external (void)
6576 gfc_clear_attr (&current_attr);
6577 current_attr.external = 1;
6579 return attr_decl ();
6583 match
6584 gfc_match_intent (void)
6586 sym_intent intent;
6588 /* This is not allowed within a BLOCK construct! */
6589 if (gfc_current_state () == COMP_BLOCK)
6591 gfc_error ("INTENT is not allowed inside of BLOCK at %C");
6592 return MATCH_ERROR;
6595 intent = match_intent_spec ();
6596 if (intent == INTENT_UNKNOWN)
6597 return MATCH_ERROR;
6599 gfc_clear_attr (&current_attr);
6600 current_attr.intent = intent;
6602 return attr_decl ();
6606 match
6607 gfc_match_intrinsic (void)
6610 gfc_clear_attr (&current_attr);
6611 current_attr.intrinsic = 1;
6613 return attr_decl ();
6617 match
6618 gfc_match_optional (void)
6620 /* This is not allowed within a BLOCK construct! */
6621 if (gfc_current_state () == COMP_BLOCK)
6623 gfc_error ("OPTIONAL is not allowed inside of BLOCK at %C");
6624 return MATCH_ERROR;
6627 gfc_clear_attr (&current_attr);
6628 current_attr.optional = 1;
6630 return attr_decl ();
6634 match
6635 gfc_match_pointer (void)
6637 gfc_gobble_whitespace ();
6638 if (gfc_peek_ascii_char () == '(')
6640 if (!gfc_option.flag_cray_pointer)
6642 gfc_error ("Cray pointer declaration at %C requires -fcray-pointer "
6643 "flag");
6644 return MATCH_ERROR;
6646 return cray_pointer_decl ();
6648 else
6650 gfc_clear_attr (&current_attr);
6651 current_attr.pointer = 1;
6653 return attr_decl ();
6658 match
6659 gfc_match_allocatable (void)
6661 gfc_clear_attr (&current_attr);
6662 current_attr.allocatable = 1;
6664 return attr_decl ();
6668 match
6669 gfc_match_codimension (void)
6671 gfc_clear_attr (&current_attr);
6672 current_attr.codimension = 1;
6674 return attr_decl ();
6678 match
6679 gfc_match_contiguous (void)
6681 if (!gfc_notify_std (GFC_STD_F2008, "CONTIGUOUS statement at %C"))
6682 return MATCH_ERROR;
6684 gfc_clear_attr (&current_attr);
6685 current_attr.contiguous = 1;
6687 return attr_decl ();
6691 match
6692 gfc_match_dimension (void)
6694 gfc_clear_attr (&current_attr);
6695 current_attr.dimension = 1;
6697 return attr_decl ();
6701 match
6702 gfc_match_target (void)
6704 gfc_clear_attr (&current_attr);
6705 current_attr.target = 1;
6707 return attr_decl ();
6711 /* Match the list of entities being specified in a PUBLIC or PRIVATE
6712 statement. */
6714 static match
6715 access_attr_decl (gfc_statement st)
6717 char name[GFC_MAX_SYMBOL_LEN + 1];
6718 interface_type type;
6719 gfc_user_op *uop;
6720 gfc_symbol *sym, *dt_sym;
6721 gfc_intrinsic_op op;
6722 match m;
6724 if (gfc_match (" ::") == MATCH_NO && gfc_match_space () == MATCH_NO)
6725 goto done;
6727 for (;;)
6729 m = gfc_match_generic_spec (&type, name, &op);
6730 if (m == MATCH_NO)
6731 goto syntax;
6732 if (m == MATCH_ERROR)
6733 return MATCH_ERROR;
6735 switch (type)
6737 case INTERFACE_NAMELESS:
6738 case INTERFACE_ABSTRACT:
6739 goto syntax;
6741 case INTERFACE_GENERIC:
6742 if (gfc_get_symbol (name, NULL, &sym))
6743 goto done;
6745 if (!gfc_add_access (&sym->attr,
6746 (st == ST_PUBLIC)
6747 ? ACCESS_PUBLIC : ACCESS_PRIVATE,
6748 sym->name, NULL))
6749 return MATCH_ERROR;
6751 if (sym->attr.generic && (dt_sym = gfc_find_dt_in_generic (sym))
6752 && !gfc_add_access (&dt_sym->attr,
6753 (st == ST_PUBLIC)
6754 ? ACCESS_PUBLIC : ACCESS_PRIVATE,
6755 sym->name, NULL))
6756 return MATCH_ERROR;
6758 break;
6760 case INTERFACE_INTRINSIC_OP:
6761 if (gfc_current_ns->operator_access[op] == ACCESS_UNKNOWN)
6763 gfc_intrinsic_op other_op;
6765 gfc_current_ns->operator_access[op] =
6766 (st == ST_PUBLIC) ? ACCESS_PUBLIC : ACCESS_PRIVATE;
6768 /* Handle the case if there is another op with the same
6769 function, for INTRINSIC_EQ vs. INTRINSIC_EQ_OS and so on. */
6770 other_op = gfc_equivalent_op (op);
6772 if (other_op != INTRINSIC_NONE)
6773 gfc_current_ns->operator_access[other_op] =
6774 (st == ST_PUBLIC) ? ACCESS_PUBLIC : ACCESS_PRIVATE;
6777 else
6779 gfc_error ("Access specification of the %s operator at %C has "
6780 "already been specified", gfc_op2string (op));
6781 goto done;
6784 break;
6786 case INTERFACE_USER_OP:
6787 uop = gfc_get_uop (name);
6789 if (uop->access == ACCESS_UNKNOWN)
6791 uop->access = (st == ST_PUBLIC)
6792 ? ACCESS_PUBLIC : ACCESS_PRIVATE;
6794 else
6796 gfc_error ("Access specification of the .%s. operator at %C "
6797 "has already been specified", sym->name);
6798 goto done;
6801 break;
6804 if (gfc_match_char (',') == MATCH_NO)
6805 break;
6808 if (gfc_match_eos () != MATCH_YES)
6809 goto syntax;
6810 return MATCH_YES;
6812 syntax:
6813 gfc_syntax_error (st);
6815 done:
6816 return MATCH_ERROR;
6820 match
6821 gfc_match_protected (void)
6823 gfc_symbol *sym;
6824 match m;
6826 if (gfc_current_ns->proc_name->attr.flavor != FL_MODULE)
6828 gfc_error ("PROTECTED at %C only allowed in specification "
6829 "part of a module");
6830 return MATCH_ERROR;
6834 if (!gfc_notify_std (GFC_STD_F2003, "PROTECTED statement at %C"))
6835 return MATCH_ERROR;
6837 if (gfc_match (" ::") == MATCH_NO && gfc_match_space () == MATCH_NO)
6839 return MATCH_ERROR;
6842 if (gfc_match_eos () == MATCH_YES)
6843 goto syntax;
6845 for(;;)
6847 m = gfc_match_symbol (&sym, 0);
6848 switch (m)
6850 case MATCH_YES:
6851 if (!gfc_add_protected (&sym->attr, sym->name, &gfc_current_locus))
6852 return MATCH_ERROR;
6853 goto next_item;
6855 case MATCH_NO:
6856 break;
6858 case MATCH_ERROR:
6859 return MATCH_ERROR;
6862 next_item:
6863 if (gfc_match_eos () == MATCH_YES)
6864 break;
6865 if (gfc_match_char (',') != MATCH_YES)
6866 goto syntax;
6869 return MATCH_YES;
6871 syntax:
6872 gfc_error ("Syntax error in PROTECTED statement at %C");
6873 return MATCH_ERROR;
6877 /* The PRIVATE statement is a bit weird in that it can be an attribute
6878 declaration, but also works as a standalone statement inside of a
6879 type declaration or a module. */
6881 match
6882 gfc_match_private (gfc_statement *st)
6885 if (gfc_match ("private") != MATCH_YES)
6886 return MATCH_NO;
6888 if (gfc_current_state () != COMP_MODULE
6889 && !(gfc_current_state () == COMP_DERIVED
6890 && gfc_state_stack->previous
6891 && gfc_state_stack->previous->state == COMP_MODULE)
6892 && !(gfc_current_state () == COMP_DERIVED_CONTAINS
6893 && gfc_state_stack->previous && gfc_state_stack->previous->previous
6894 && gfc_state_stack->previous->previous->state == COMP_MODULE))
6896 gfc_error ("PRIVATE statement at %C is only allowed in the "
6897 "specification part of a module");
6898 return MATCH_ERROR;
6901 if (gfc_current_state () == COMP_DERIVED)
6903 if (gfc_match_eos () == MATCH_YES)
6905 *st = ST_PRIVATE;
6906 return MATCH_YES;
6909 gfc_syntax_error (ST_PRIVATE);
6910 return MATCH_ERROR;
6913 if (gfc_match_eos () == MATCH_YES)
6915 *st = ST_PRIVATE;
6916 return MATCH_YES;
6919 *st = ST_ATTR_DECL;
6920 return access_attr_decl (ST_PRIVATE);
6924 match
6925 gfc_match_public (gfc_statement *st)
6928 if (gfc_match ("public") != MATCH_YES)
6929 return MATCH_NO;
6931 if (gfc_current_state () != COMP_MODULE)
6933 gfc_error ("PUBLIC statement at %C is only allowed in the "
6934 "specification part of a module");
6935 return MATCH_ERROR;
6938 if (gfc_match_eos () == MATCH_YES)
6940 *st = ST_PUBLIC;
6941 return MATCH_YES;
6944 *st = ST_ATTR_DECL;
6945 return access_attr_decl (ST_PUBLIC);
6949 /* Workhorse for gfc_match_parameter. */
6951 static match
6952 do_parm (void)
6954 gfc_symbol *sym;
6955 gfc_expr *init;
6956 match m;
6957 bool t;
6959 m = gfc_match_symbol (&sym, 0);
6960 if (m == MATCH_NO)
6961 gfc_error ("Expected variable name at %C in PARAMETER statement");
6963 if (m != MATCH_YES)
6964 return m;
6966 if (gfc_match_char ('=') == MATCH_NO)
6968 gfc_error ("Expected = sign in PARAMETER statement at %C");
6969 return MATCH_ERROR;
6972 m = gfc_match_init_expr (&init);
6973 if (m == MATCH_NO)
6974 gfc_error ("Expected expression at %C in PARAMETER statement");
6975 if (m != MATCH_YES)
6976 return m;
6978 if (sym->ts.type == BT_UNKNOWN
6979 && !gfc_set_default_type (sym, 1, NULL))
6981 m = MATCH_ERROR;
6982 goto cleanup;
6985 if (!gfc_check_assign_symbol (sym, NULL, init)
6986 || !gfc_add_flavor (&sym->attr, FL_PARAMETER, sym->name, NULL))
6988 m = MATCH_ERROR;
6989 goto cleanup;
6992 if (sym->value)
6994 gfc_error ("Initializing already initialized variable at %C");
6995 m = MATCH_ERROR;
6996 goto cleanup;
6999 t = add_init_expr_to_sym (sym->name, &init, &gfc_current_locus);
7000 return (t) ? MATCH_YES : MATCH_ERROR;
7002 cleanup:
7003 gfc_free_expr (init);
7004 return m;
7008 /* Match a parameter statement, with the weird syntax that these have. */
7010 match
7011 gfc_match_parameter (void)
7013 match m;
7015 if (gfc_match_char ('(') == MATCH_NO)
7016 return MATCH_NO;
7018 for (;;)
7020 m = do_parm ();
7021 if (m != MATCH_YES)
7022 break;
7024 if (gfc_match (" )%t") == MATCH_YES)
7025 break;
7027 if (gfc_match_char (',') != MATCH_YES)
7029 gfc_error ("Unexpected characters in PARAMETER statement at %C");
7030 m = MATCH_ERROR;
7031 break;
7035 return m;
7039 /* Save statements have a special syntax. */
7041 match
7042 gfc_match_save (void)
7044 char n[GFC_MAX_SYMBOL_LEN+1];
7045 gfc_common_head *c;
7046 gfc_symbol *sym;
7047 match m;
7049 if (gfc_match_eos () == MATCH_YES)
7051 if (gfc_current_ns->seen_save)
7053 if (!gfc_notify_std (GFC_STD_LEGACY, "Blanket SAVE statement at %C "
7054 "follows previous SAVE statement"))
7055 return MATCH_ERROR;
7058 gfc_current_ns->save_all = gfc_current_ns->seen_save = 1;
7059 return MATCH_YES;
7062 if (gfc_current_ns->save_all)
7064 if (!gfc_notify_std (GFC_STD_LEGACY, "SAVE statement at %C follows "
7065 "blanket SAVE statement"))
7066 return MATCH_ERROR;
7069 gfc_match (" ::");
7071 for (;;)
7073 m = gfc_match_symbol (&sym, 0);
7074 switch (m)
7076 case MATCH_YES:
7077 if (!gfc_add_save (&sym->attr, SAVE_EXPLICIT, sym->name,
7078 &gfc_current_locus))
7079 return MATCH_ERROR;
7080 goto next_item;
7082 case MATCH_NO:
7083 break;
7085 case MATCH_ERROR:
7086 return MATCH_ERROR;
7089 m = gfc_match (" / %n /", &n);
7090 if (m == MATCH_ERROR)
7091 return MATCH_ERROR;
7092 if (m == MATCH_NO)
7093 goto syntax;
7095 c = gfc_get_common (n, 0);
7096 c->saved = 1;
7098 gfc_current_ns->seen_save = 1;
7100 next_item:
7101 if (gfc_match_eos () == MATCH_YES)
7102 break;
7103 if (gfc_match_char (',') != MATCH_YES)
7104 goto syntax;
7107 return MATCH_YES;
7109 syntax:
7110 gfc_error ("Syntax error in SAVE statement at %C");
7111 return MATCH_ERROR;
7115 match
7116 gfc_match_value (void)
7118 gfc_symbol *sym;
7119 match m;
7121 /* This is not allowed within a BLOCK construct! */
7122 if (gfc_current_state () == COMP_BLOCK)
7124 gfc_error ("VALUE is not allowed inside of BLOCK at %C");
7125 return MATCH_ERROR;
7128 if (!gfc_notify_std (GFC_STD_F2003, "VALUE statement at %C"))
7129 return MATCH_ERROR;
7131 if (gfc_match (" ::") == MATCH_NO && gfc_match_space () == MATCH_NO)
7133 return MATCH_ERROR;
7136 if (gfc_match_eos () == MATCH_YES)
7137 goto syntax;
7139 for(;;)
7141 m = gfc_match_symbol (&sym, 0);
7142 switch (m)
7144 case MATCH_YES:
7145 if (!gfc_add_value (&sym->attr, sym->name, &gfc_current_locus))
7146 return MATCH_ERROR;
7147 goto next_item;
7149 case MATCH_NO:
7150 break;
7152 case MATCH_ERROR:
7153 return MATCH_ERROR;
7156 next_item:
7157 if (gfc_match_eos () == MATCH_YES)
7158 break;
7159 if (gfc_match_char (',') != MATCH_YES)
7160 goto syntax;
7163 return MATCH_YES;
7165 syntax:
7166 gfc_error ("Syntax error in VALUE statement at %C");
7167 return MATCH_ERROR;
7171 match
7172 gfc_match_volatile (void)
7174 gfc_symbol *sym;
7175 match m;
7177 if (!gfc_notify_std (GFC_STD_F2003, "VOLATILE statement at %C"))
7178 return MATCH_ERROR;
7180 if (gfc_match (" ::") == MATCH_NO && gfc_match_space () == MATCH_NO)
7182 return MATCH_ERROR;
7185 if (gfc_match_eos () == MATCH_YES)
7186 goto syntax;
7188 for(;;)
7190 /* VOLATILE is special because it can be added to host-associated
7191 symbols locally. Except for coarrays. */
7192 m = gfc_match_symbol (&sym, 1);
7193 switch (m)
7195 case MATCH_YES:
7196 /* F2008, C560+C561. VOLATILE for host-/use-associated variable or
7197 for variable in a BLOCK which is defined outside of the BLOCK. */
7198 if (sym->ns != gfc_current_ns && sym->attr.codimension)
7200 gfc_error ("Specifying VOLATILE for coarray variable '%s' at "
7201 "%C, which is use-/host-associated", sym->name);
7202 return MATCH_ERROR;
7204 if (!gfc_add_volatile (&sym->attr, sym->name, &gfc_current_locus))
7205 return MATCH_ERROR;
7206 goto next_item;
7208 case MATCH_NO:
7209 break;
7211 case MATCH_ERROR:
7212 return MATCH_ERROR;
7215 next_item:
7216 if (gfc_match_eos () == MATCH_YES)
7217 break;
7218 if (gfc_match_char (',') != MATCH_YES)
7219 goto syntax;
7222 return MATCH_YES;
7224 syntax:
7225 gfc_error ("Syntax error in VOLATILE statement at %C");
7226 return MATCH_ERROR;
7230 match
7231 gfc_match_asynchronous (void)
7233 gfc_symbol *sym;
7234 match m;
7236 if (!gfc_notify_std (GFC_STD_F2003, "ASYNCHRONOUS statement at %C"))
7237 return MATCH_ERROR;
7239 if (gfc_match (" ::") == MATCH_NO && gfc_match_space () == MATCH_NO)
7241 return MATCH_ERROR;
7244 if (gfc_match_eos () == MATCH_YES)
7245 goto syntax;
7247 for(;;)
7249 /* ASYNCHRONOUS is special because it can be added to host-associated
7250 symbols locally. */
7251 m = gfc_match_symbol (&sym, 1);
7252 switch (m)
7254 case MATCH_YES:
7255 if (!gfc_add_asynchronous (&sym->attr, sym->name, &gfc_current_locus))
7256 return MATCH_ERROR;
7257 goto next_item;
7259 case MATCH_NO:
7260 break;
7262 case MATCH_ERROR:
7263 return MATCH_ERROR;
7266 next_item:
7267 if (gfc_match_eos () == MATCH_YES)
7268 break;
7269 if (gfc_match_char (',') != MATCH_YES)
7270 goto syntax;
7273 return MATCH_YES;
7275 syntax:
7276 gfc_error ("Syntax error in ASYNCHRONOUS statement at %C");
7277 return MATCH_ERROR;
7281 /* Match a module procedure statement. Note that we have to modify
7282 symbols in the parent's namespace because the current one was there
7283 to receive symbols that are in an interface's formal argument list. */
7285 match
7286 gfc_match_modproc (void)
7288 char name[GFC_MAX_SYMBOL_LEN + 1];
7289 gfc_symbol *sym;
7290 match m;
7291 locus old_locus;
7292 gfc_namespace *module_ns;
7293 gfc_interface *old_interface_head, *interface;
7295 if (gfc_state_stack->state != COMP_INTERFACE
7296 || gfc_state_stack->previous == NULL
7297 || current_interface.type == INTERFACE_NAMELESS
7298 || current_interface.type == INTERFACE_ABSTRACT)
7300 gfc_error ("MODULE PROCEDURE at %C must be in a generic module "
7301 "interface");
7302 return MATCH_ERROR;
7305 module_ns = gfc_current_ns->parent;
7306 for (; module_ns; module_ns = module_ns->parent)
7307 if (module_ns->proc_name->attr.flavor == FL_MODULE
7308 || module_ns->proc_name->attr.flavor == FL_PROGRAM
7309 || (module_ns->proc_name->attr.flavor == FL_PROCEDURE
7310 && !module_ns->proc_name->attr.contained))
7311 break;
7313 if (module_ns == NULL)
7314 return MATCH_ERROR;
7316 /* Store the current state of the interface. We will need it if we
7317 end up with a syntax error and need to recover. */
7318 old_interface_head = gfc_current_interface_head ();
7320 /* Check if the F2008 optional double colon appears. */
7321 gfc_gobble_whitespace ();
7322 old_locus = gfc_current_locus;
7323 if (gfc_match ("::") == MATCH_YES)
7325 if (!gfc_notify_std (GFC_STD_F2008, "double colon in "
7326 "MODULE PROCEDURE statement at %L", &old_locus))
7327 return MATCH_ERROR;
7329 else
7330 gfc_current_locus = old_locus;
7332 for (;;)
7334 bool last = false;
7335 old_locus = gfc_current_locus;
7337 m = gfc_match_name (name);
7338 if (m == MATCH_NO)
7339 goto syntax;
7340 if (m != MATCH_YES)
7341 return MATCH_ERROR;
7343 /* Check for syntax error before starting to add symbols to the
7344 current namespace. */
7345 if (gfc_match_eos () == MATCH_YES)
7346 last = true;
7348 if (!last && gfc_match_char (',') != MATCH_YES)
7349 goto syntax;
7351 /* Now we're sure the syntax is valid, we process this item
7352 further. */
7353 if (gfc_get_symbol (name, module_ns, &sym))
7354 return MATCH_ERROR;
7356 if (sym->attr.intrinsic)
7358 gfc_error ("Intrinsic procedure at %L cannot be a MODULE "
7359 "PROCEDURE", &old_locus);
7360 return MATCH_ERROR;
7363 if (sym->attr.proc != PROC_MODULE
7364 && !gfc_add_procedure (&sym->attr, PROC_MODULE, sym->name, NULL))
7365 return MATCH_ERROR;
7367 if (!gfc_add_interface (sym))
7368 return MATCH_ERROR;
7370 sym->attr.mod_proc = 1;
7371 sym->declared_at = old_locus;
7373 if (last)
7374 break;
7377 return MATCH_YES;
7379 syntax:
7380 /* Restore the previous state of the interface. */
7381 interface = gfc_current_interface_head ();
7382 gfc_set_current_interface_head (old_interface_head);
7384 /* Free the new interfaces. */
7385 while (interface != old_interface_head)
7387 gfc_interface *i = interface->next;
7388 free (interface);
7389 interface = i;
7392 /* And issue a syntax error. */
7393 gfc_syntax_error (ST_MODULE_PROC);
7394 return MATCH_ERROR;
7398 /* Check a derived type that is being extended. */
7400 static gfc_symbol*
7401 check_extended_derived_type (char *name)
7403 gfc_symbol *extended;
7405 if (gfc_find_symbol (name, gfc_current_ns, 1, &extended))
7407 gfc_error ("Ambiguous symbol in TYPE definition at %C");
7408 return NULL;
7411 extended = gfc_find_dt_in_generic (extended);
7413 /* F08:C428. */
7414 if (!extended)
7416 gfc_error ("Symbol '%s' at %C has not been previously defined", name);
7417 return NULL;
7420 if (extended->attr.flavor != FL_DERIVED)
7422 gfc_error ("'%s' in EXTENDS expression at %C is not a "
7423 "derived type", name);
7424 return NULL;
7427 if (extended->attr.is_bind_c)
7429 gfc_error ("'%s' cannot be extended at %C because it "
7430 "is BIND(C)", extended->name);
7431 return NULL;
7434 if (extended->attr.sequence)
7436 gfc_error ("'%s' cannot be extended at %C because it "
7437 "is a SEQUENCE type", extended->name);
7438 return NULL;
7441 return extended;
7445 /* Match the optional attribute specifiers for a type declaration.
7446 Return MATCH_ERROR if an error is encountered in one of the handled
7447 attributes (public, private, bind(c)), MATCH_NO if what's found is
7448 not a handled attribute, and MATCH_YES otherwise. TODO: More error
7449 checking on attribute conflicts needs to be done. */
7451 match
7452 gfc_get_type_attr_spec (symbol_attribute *attr, char *name)
7454 /* See if the derived type is marked as private. */
7455 if (gfc_match (" , private") == MATCH_YES)
7457 if (gfc_current_state () != COMP_MODULE)
7459 gfc_error ("Derived type at %C can only be PRIVATE in the "
7460 "specification part of a module");
7461 return MATCH_ERROR;
7464 if (!gfc_add_access (attr, ACCESS_PRIVATE, NULL, NULL))
7465 return MATCH_ERROR;
7467 else if (gfc_match (" , public") == MATCH_YES)
7469 if (gfc_current_state () != COMP_MODULE)
7471 gfc_error ("Derived type at %C can only be PUBLIC in the "
7472 "specification part of a module");
7473 return MATCH_ERROR;
7476 if (!gfc_add_access (attr, ACCESS_PUBLIC, NULL, NULL))
7477 return MATCH_ERROR;
7479 else if (gfc_match (" , bind ( c )") == MATCH_YES)
7481 /* If the type is defined to be bind(c) it then needs to make
7482 sure that all fields are interoperable. This will
7483 need to be a semantic check on the finished derived type.
7484 See 15.2.3 (lines 9-12) of F2003 draft. */
7485 if (!gfc_add_is_bind_c (attr, NULL, &gfc_current_locus, 0))
7486 return MATCH_ERROR;
7488 /* TODO: attr conflicts need to be checked, probably in symbol.c. */
7490 else if (gfc_match (" , abstract") == MATCH_YES)
7492 if (!gfc_notify_std (GFC_STD_F2003, "ABSTRACT type at %C"))
7493 return MATCH_ERROR;
7495 if (!gfc_add_abstract (attr, &gfc_current_locus))
7496 return MATCH_ERROR;
7498 else if (name && gfc_match (" , extends ( %n )", name) == MATCH_YES)
7500 if (!gfc_add_extension (attr, &gfc_current_locus))
7501 return MATCH_ERROR;
7503 else
7504 return MATCH_NO;
7506 /* If we get here, something matched. */
7507 return MATCH_YES;
7511 /* Match the beginning of a derived type declaration. If a type name
7512 was the result of a function, then it is possible to have a symbol
7513 already to be known as a derived type yet have no components. */
7515 match
7516 gfc_match_derived_decl (void)
7518 char name[GFC_MAX_SYMBOL_LEN + 1];
7519 char parent[GFC_MAX_SYMBOL_LEN + 1];
7520 symbol_attribute attr;
7521 gfc_symbol *sym, *gensym;
7522 gfc_symbol *extended;
7523 match m;
7524 match is_type_attr_spec = MATCH_NO;
7525 bool seen_attr = false;
7526 gfc_interface *intr = NULL, *head;
7528 if (gfc_current_state () == COMP_DERIVED)
7529 return MATCH_NO;
7531 name[0] = '\0';
7532 parent[0] = '\0';
7533 gfc_clear_attr (&attr);
7534 extended = NULL;
7538 is_type_attr_spec = gfc_get_type_attr_spec (&attr, parent);
7539 if (is_type_attr_spec == MATCH_ERROR)
7540 return MATCH_ERROR;
7541 if (is_type_attr_spec == MATCH_YES)
7542 seen_attr = true;
7543 } while (is_type_attr_spec == MATCH_YES);
7545 /* Deal with derived type extensions. The extension attribute has
7546 been added to 'attr' but now the parent type must be found and
7547 checked. */
7548 if (parent[0])
7549 extended = check_extended_derived_type (parent);
7551 if (parent[0] && !extended)
7552 return MATCH_ERROR;
7554 if (gfc_match (" ::") != MATCH_YES && seen_attr)
7556 gfc_error ("Expected :: in TYPE definition at %C");
7557 return MATCH_ERROR;
7560 m = gfc_match (" %n%t", name);
7561 if (m != MATCH_YES)
7562 return m;
7564 /* Make sure the name is not the name of an intrinsic type. */
7565 if (gfc_is_intrinsic_typename (name))
7567 gfc_error ("Type name '%s' at %C cannot be the same as an intrinsic "
7568 "type", name);
7569 return MATCH_ERROR;
7572 if (gfc_get_symbol (name, NULL, &gensym))
7573 return MATCH_ERROR;
7575 if (!gensym->attr.generic && gensym->ts.type != BT_UNKNOWN)
7577 gfc_error ("Derived type name '%s' at %C already has a basic type "
7578 "of %s", gensym->name, gfc_typename (&gensym->ts));
7579 return MATCH_ERROR;
7582 if (!gensym->attr.generic
7583 && !gfc_add_generic (&gensym->attr, gensym->name, NULL))
7584 return MATCH_ERROR;
7586 if (!gensym->attr.function
7587 && !gfc_add_function (&gensym->attr, gensym->name, NULL))
7588 return MATCH_ERROR;
7590 sym = gfc_find_dt_in_generic (gensym);
7592 if (sym && (sym->components != NULL || sym->attr.zero_comp))
7594 gfc_error ("Derived type definition of '%s' at %C has already been "
7595 "defined", sym->name);
7596 return MATCH_ERROR;
7599 if (!sym)
7601 /* Use upper case to save the actual derived-type symbol. */
7602 gfc_get_symbol (gfc_get_string ("%c%s",
7603 (char) TOUPPER ((unsigned char) gensym->name[0]),
7604 &gensym->name[1]), NULL, &sym);
7605 sym->name = gfc_get_string (gensym->name);
7606 head = gensym->generic;
7607 intr = gfc_get_interface ();
7608 intr->sym = sym;
7609 intr->where = gfc_current_locus;
7610 intr->sym->declared_at = gfc_current_locus;
7611 intr->next = head;
7612 gensym->generic = intr;
7613 gensym->attr.if_source = IFSRC_DECL;
7616 /* The symbol may already have the derived attribute without the
7617 components. The ways this can happen is via a function
7618 definition, an INTRINSIC statement or a subtype in another
7619 derived type that is a pointer. The first part of the AND clause
7620 is true if the symbol is not the return value of a function. */
7621 if (sym->attr.flavor != FL_DERIVED
7622 && !gfc_add_flavor (&sym->attr, FL_DERIVED, sym->name, NULL))
7623 return MATCH_ERROR;
7625 if (attr.access != ACCESS_UNKNOWN
7626 && !gfc_add_access (&sym->attr, attr.access, sym->name, NULL))
7627 return MATCH_ERROR;
7628 else if (sym->attr.access == ACCESS_UNKNOWN
7629 && gensym->attr.access != ACCESS_UNKNOWN
7630 && !gfc_add_access (&sym->attr, gensym->attr.access,
7631 sym->name, NULL))
7632 return MATCH_ERROR;
7634 if (sym->attr.access != ACCESS_UNKNOWN
7635 && gensym->attr.access == ACCESS_UNKNOWN)
7636 gensym->attr.access = sym->attr.access;
7638 /* See if the derived type was labeled as bind(c). */
7639 if (attr.is_bind_c != 0)
7640 sym->attr.is_bind_c = attr.is_bind_c;
7642 /* Construct the f2k_derived namespace if it is not yet there. */
7643 if (!sym->f2k_derived)
7644 sym->f2k_derived = gfc_get_namespace (NULL, 0);
7646 if (extended && !sym->components)
7648 gfc_component *p;
7649 gfc_symtree *st;
7651 /* Add the extended derived type as the first component. */
7652 gfc_add_component (sym, parent, &p);
7653 extended->refs++;
7654 gfc_set_sym_referenced (extended);
7656 p->ts.type = BT_DERIVED;
7657 p->ts.u.derived = extended;
7658 p->initializer = gfc_default_initializer (&p->ts);
7660 /* Set extension level. */
7661 if (extended->attr.extension == 255)
7663 /* Since the extension field is 8 bit wide, we can only have
7664 up to 255 extension levels. */
7665 gfc_error ("Maximum extension level reached with type '%s' at %L",
7666 extended->name, &extended->declared_at);
7667 return MATCH_ERROR;
7669 sym->attr.extension = extended->attr.extension + 1;
7671 /* Provide the links between the extended type and its extension. */
7672 if (!extended->f2k_derived)
7673 extended->f2k_derived = gfc_get_namespace (NULL, 0);
7674 st = gfc_new_symtree (&extended->f2k_derived->sym_root, sym->name);
7675 st->n.sym = sym;
7678 if (!sym->hash_value)
7679 /* Set the hash for the compound name for this type. */
7680 sym->hash_value = gfc_hash_value (sym);
7682 /* Take over the ABSTRACT attribute. */
7683 sym->attr.abstract = attr.abstract;
7685 gfc_new_block = sym;
7687 return MATCH_YES;
7691 /* Cray Pointees can be declared as:
7692 pointer (ipt, a (n,m,...,*)) */
7694 match
7695 gfc_mod_pointee_as (gfc_array_spec *as)
7697 as->cray_pointee = true; /* This will be useful to know later. */
7698 if (as->type == AS_ASSUMED_SIZE)
7699 as->cp_was_assumed = true;
7700 else if (as->type == AS_ASSUMED_SHAPE)
7702 gfc_error ("Cray Pointee at %C cannot be assumed shape array");
7703 return MATCH_ERROR;
7705 return MATCH_YES;
7709 /* Match the enum definition statement, here we are trying to match
7710 the first line of enum definition statement.
7711 Returns MATCH_YES if match is found. */
7713 match
7714 gfc_match_enum (void)
7716 match m;
7718 m = gfc_match_eos ();
7719 if (m != MATCH_YES)
7720 return m;
7722 if (!gfc_notify_std (GFC_STD_F2003, "ENUM and ENUMERATOR at %C"))
7723 return MATCH_ERROR;
7725 return MATCH_YES;
7729 /* Returns an initializer whose value is one higher than the value of the
7730 LAST_INITIALIZER argument. If the argument is NULL, the
7731 initializers value will be set to zero. The initializer's kind
7732 will be set to gfc_c_int_kind.
7734 If -fshort-enums is given, the appropriate kind will be selected
7735 later after all enumerators have been parsed. A warning is issued
7736 here if an initializer exceeds gfc_c_int_kind. */
7738 static gfc_expr *
7739 enum_initializer (gfc_expr *last_initializer, locus where)
7741 gfc_expr *result;
7742 result = gfc_get_constant_expr (BT_INTEGER, gfc_c_int_kind, &where);
7744 mpz_init (result->value.integer);
7746 if (last_initializer != NULL)
7748 mpz_add_ui (result->value.integer, last_initializer->value.integer, 1);
7749 result->where = last_initializer->where;
7751 if (gfc_check_integer_range (result->value.integer,
7752 gfc_c_int_kind) != ARITH_OK)
7754 gfc_error ("Enumerator exceeds the C integer type at %C");
7755 return NULL;
7758 else
7760 /* Control comes here, if it's the very first enumerator and no
7761 initializer has been given. It will be initialized to zero. */
7762 mpz_set_si (result->value.integer, 0);
7765 return result;
7769 /* Match a variable name with an optional initializer. When this
7770 subroutine is called, a variable is expected to be parsed next.
7771 Depending on what is happening at the moment, updates either the
7772 symbol table or the current interface. */
7774 static match
7775 enumerator_decl (void)
7777 char name[GFC_MAX_SYMBOL_LEN + 1];
7778 gfc_expr *initializer;
7779 gfc_array_spec *as = NULL;
7780 gfc_symbol *sym;
7781 locus var_locus;
7782 match m;
7783 bool t;
7784 locus old_locus;
7786 initializer = NULL;
7787 old_locus = gfc_current_locus;
7789 /* When we get here, we've just matched a list of attributes and
7790 maybe a type and a double colon. The next thing we expect to see
7791 is the name of the symbol. */
7792 m = gfc_match_name (name);
7793 if (m != MATCH_YES)
7794 goto cleanup;
7796 var_locus = gfc_current_locus;
7798 /* OK, we've successfully matched the declaration. Now put the
7799 symbol in the current namespace. If we fail to create the symbol,
7800 bail out. */
7801 if (!build_sym (name, NULL, false, &as, &var_locus))
7803 m = MATCH_ERROR;
7804 goto cleanup;
7807 /* The double colon must be present in order to have initializers.
7808 Otherwise the statement is ambiguous with an assignment statement. */
7809 if (colon_seen)
7811 if (gfc_match_char ('=') == MATCH_YES)
7813 m = gfc_match_init_expr (&initializer);
7814 if (m == MATCH_NO)
7816 gfc_error ("Expected an initialization expression at %C");
7817 m = MATCH_ERROR;
7820 if (m != MATCH_YES)
7821 goto cleanup;
7825 /* If we do not have an initializer, the initialization value of the
7826 previous enumerator (stored in last_initializer) is incremented
7827 by 1 and is used to initialize the current enumerator. */
7828 if (initializer == NULL)
7829 initializer = enum_initializer (last_initializer, old_locus);
7831 if (initializer == NULL || initializer->ts.type != BT_INTEGER)
7833 gfc_error ("ENUMERATOR %L not initialized with integer expression",
7834 &var_locus);
7835 m = MATCH_ERROR;
7836 goto cleanup;
7839 /* Store this current initializer, for the next enumerator variable
7840 to be parsed. add_init_expr_to_sym() zeros initializer, so we
7841 use last_initializer below. */
7842 last_initializer = initializer;
7843 t = add_init_expr_to_sym (name, &initializer, &var_locus);
7845 /* Maintain enumerator history. */
7846 gfc_find_symbol (name, NULL, 0, &sym);
7847 create_enum_history (sym, last_initializer);
7849 return (t) ? MATCH_YES : MATCH_ERROR;
7851 cleanup:
7852 /* Free stuff up and return. */
7853 gfc_free_expr (initializer);
7855 return m;
7859 /* Match the enumerator definition statement. */
7861 match
7862 gfc_match_enumerator_def (void)
7864 match m;
7865 bool t;
7867 gfc_clear_ts (&current_ts);
7869 m = gfc_match (" enumerator");
7870 if (m != MATCH_YES)
7871 return m;
7873 m = gfc_match (" :: ");
7874 if (m == MATCH_ERROR)
7875 return m;
7877 colon_seen = (m == MATCH_YES);
7879 if (gfc_current_state () != COMP_ENUM)
7881 gfc_error ("ENUM definition statement expected before %C");
7882 gfc_free_enum_history ();
7883 return MATCH_ERROR;
7886 (&current_ts)->type = BT_INTEGER;
7887 (&current_ts)->kind = gfc_c_int_kind;
7889 gfc_clear_attr (&current_attr);
7890 t = gfc_add_flavor (&current_attr, FL_PARAMETER, NULL, NULL);
7891 if (!t)
7893 m = MATCH_ERROR;
7894 goto cleanup;
7897 for (;;)
7899 m = enumerator_decl ();
7900 if (m == MATCH_ERROR)
7902 gfc_free_enum_history ();
7903 goto cleanup;
7905 if (m == MATCH_NO)
7906 break;
7908 if (gfc_match_eos () == MATCH_YES)
7909 goto cleanup;
7910 if (gfc_match_char (',') != MATCH_YES)
7911 break;
7914 if (gfc_current_state () == COMP_ENUM)
7916 gfc_free_enum_history ();
7917 gfc_error ("Syntax error in ENUMERATOR definition at %C");
7918 m = MATCH_ERROR;
7921 cleanup:
7922 gfc_free_array_spec (current_as);
7923 current_as = NULL;
7924 return m;
7929 /* Match binding attributes. */
7931 static match
7932 match_binding_attributes (gfc_typebound_proc* ba, bool generic, bool ppc)
7934 bool found_passing = false;
7935 bool seen_ptr = false;
7936 match m = MATCH_YES;
7938 /* Initialize to defaults. Do so even before the MATCH_NO check so that in
7939 this case the defaults are in there. */
7940 ba->access = ACCESS_UNKNOWN;
7941 ba->pass_arg = NULL;
7942 ba->pass_arg_num = 0;
7943 ba->nopass = 0;
7944 ba->non_overridable = 0;
7945 ba->deferred = 0;
7946 ba->ppc = ppc;
7948 /* If we find a comma, we believe there are binding attributes. */
7949 m = gfc_match_char (',');
7950 if (m == MATCH_NO)
7951 goto done;
7955 /* Access specifier. */
7957 m = gfc_match (" public");
7958 if (m == MATCH_ERROR)
7959 goto error;
7960 if (m == MATCH_YES)
7962 if (ba->access != ACCESS_UNKNOWN)
7964 gfc_error ("Duplicate access-specifier at %C");
7965 goto error;
7968 ba->access = ACCESS_PUBLIC;
7969 continue;
7972 m = gfc_match (" private");
7973 if (m == MATCH_ERROR)
7974 goto error;
7975 if (m == MATCH_YES)
7977 if (ba->access != ACCESS_UNKNOWN)
7979 gfc_error ("Duplicate access-specifier at %C");
7980 goto error;
7983 ba->access = ACCESS_PRIVATE;
7984 continue;
7987 /* If inside GENERIC, the following is not allowed. */
7988 if (!generic)
7991 /* NOPASS flag. */
7992 m = gfc_match (" nopass");
7993 if (m == MATCH_ERROR)
7994 goto error;
7995 if (m == MATCH_YES)
7997 if (found_passing)
7999 gfc_error ("Binding attributes already specify passing,"
8000 " illegal NOPASS at %C");
8001 goto error;
8004 found_passing = true;
8005 ba->nopass = 1;
8006 continue;
8009 /* PASS possibly including argument. */
8010 m = gfc_match (" pass");
8011 if (m == MATCH_ERROR)
8012 goto error;
8013 if (m == MATCH_YES)
8015 char arg[GFC_MAX_SYMBOL_LEN + 1];
8017 if (found_passing)
8019 gfc_error ("Binding attributes already specify passing,"
8020 " illegal PASS at %C");
8021 goto error;
8024 m = gfc_match (" ( %n )", arg);
8025 if (m == MATCH_ERROR)
8026 goto error;
8027 if (m == MATCH_YES)
8028 ba->pass_arg = gfc_get_string (arg);
8029 gcc_assert ((m == MATCH_YES) == (ba->pass_arg != NULL));
8031 found_passing = true;
8032 ba->nopass = 0;
8033 continue;
8036 if (ppc)
8038 /* POINTER flag. */
8039 m = gfc_match (" pointer");
8040 if (m == MATCH_ERROR)
8041 goto error;
8042 if (m == MATCH_YES)
8044 if (seen_ptr)
8046 gfc_error ("Duplicate POINTER attribute at %C");
8047 goto error;
8050 seen_ptr = true;
8051 continue;
8054 else
8056 /* NON_OVERRIDABLE flag. */
8057 m = gfc_match (" non_overridable");
8058 if (m == MATCH_ERROR)
8059 goto error;
8060 if (m == MATCH_YES)
8062 if (ba->non_overridable)
8064 gfc_error ("Duplicate NON_OVERRIDABLE at %C");
8065 goto error;
8068 ba->non_overridable = 1;
8069 continue;
8072 /* DEFERRED flag. */
8073 m = gfc_match (" deferred");
8074 if (m == MATCH_ERROR)
8075 goto error;
8076 if (m == MATCH_YES)
8078 if (ba->deferred)
8080 gfc_error ("Duplicate DEFERRED at %C");
8081 goto error;
8084 ba->deferred = 1;
8085 continue;
8091 /* Nothing matching found. */
8092 if (generic)
8093 gfc_error ("Expected access-specifier at %C");
8094 else
8095 gfc_error ("Expected binding attribute at %C");
8096 goto error;
8098 while (gfc_match_char (',') == MATCH_YES);
8100 /* NON_OVERRIDABLE and DEFERRED exclude themselves. */
8101 if (ba->non_overridable && ba->deferred)
8103 gfc_error ("NON_OVERRIDABLE and DEFERRED can't both appear at %C");
8104 goto error;
8107 m = MATCH_YES;
8109 done:
8110 if (ba->access == ACCESS_UNKNOWN)
8111 ba->access = gfc_typebound_default_access;
8113 if (ppc && !seen_ptr)
8115 gfc_error ("POINTER attribute is required for procedure pointer component"
8116 " at %C");
8117 goto error;
8120 return m;
8122 error:
8123 return MATCH_ERROR;
8127 /* Match a PROCEDURE specific binding inside a derived type. */
8129 static match
8130 match_procedure_in_type (void)
8132 char name[GFC_MAX_SYMBOL_LEN + 1];
8133 char target_buf[GFC_MAX_SYMBOL_LEN + 1];
8134 char* target = NULL, *ifc = NULL;
8135 gfc_typebound_proc tb;
8136 bool seen_colons;
8137 bool seen_attrs;
8138 match m;
8139 gfc_symtree* stree;
8140 gfc_namespace* ns;
8141 gfc_symbol* block;
8142 int num;
8144 /* Check current state. */
8145 gcc_assert (gfc_state_stack->state == COMP_DERIVED_CONTAINS);
8146 block = gfc_state_stack->previous->sym;
8147 gcc_assert (block);
8149 /* Try to match PROCEDURE(interface). */
8150 if (gfc_match (" (") == MATCH_YES)
8152 m = gfc_match_name (target_buf);
8153 if (m == MATCH_ERROR)
8154 return m;
8155 if (m != MATCH_YES)
8157 gfc_error ("Interface-name expected after '(' at %C");
8158 return MATCH_ERROR;
8161 if (gfc_match (" )") != MATCH_YES)
8163 gfc_error ("')' expected at %C");
8164 return MATCH_ERROR;
8167 ifc = target_buf;
8170 /* Construct the data structure. */
8171 memset (&tb, 0, sizeof (tb));
8172 tb.where = gfc_current_locus;
8174 /* Match binding attributes. */
8175 m = match_binding_attributes (&tb, false, false);
8176 if (m == MATCH_ERROR)
8177 return m;
8178 seen_attrs = (m == MATCH_YES);
8180 /* Check that attribute DEFERRED is given if an interface is specified. */
8181 if (tb.deferred && !ifc)
8183 gfc_error ("Interface must be specified for DEFERRED binding at %C");
8184 return MATCH_ERROR;
8186 if (ifc && !tb.deferred)
8188 gfc_error ("PROCEDURE(interface) at %C should be declared DEFERRED");
8189 return MATCH_ERROR;
8192 /* Match the colons. */
8193 m = gfc_match (" ::");
8194 if (m == MATCH_ERROR)
8195 return m;
8196 seen_colons = (m == MATCH_YES);
8197 if (seen_attrs && !seen_colons)
8199 gfc_error ("Expected '::' after binding-attributes at %C");
8200 return MATCH_ERROR;
8203 /* Match the binding names. */
8204 for(num=1;;num++)
8206 m = gfc_match_name (name);
8207 if (m == MATCH_ERROR)
8208 return m;
8209 if (m == MATCH_NO)
8211 gfc_error ("Expected binding name at %C");
8212 return MATCH_ERROR;
8215 if (num>1 && !gfc_notify_std (GFC_STD_F2008, "PROCEDURE list at %C"))
8216 return MATCH_ERROR;
8218 /* Try to match the '=> target', if it's there. */
8219 target = ifc;
8220 m = gfc_match (" =>");
8221 if (m == MATCH_ERROR)
8222 return m;
8223 if (m == MATCH_YES)
8225 if (tb.deferred)
8227 gfc_error ("'=> target' is invalid for DEFERRED binding at %C");
8228 return MATCH_ERROR;
8231 if (!seen_colons)
8233 gfc_error ("'::' needed in PROCEDURE binding with explicit target"
8234 " at %C");
8235 return MATCH_ERROR;
8238 m = gfc_match_name (target_buf);
8239 if (m == MATCH_ERROR)
8240 return m;
8241 if (m == MATCH_NO)
8243 gfc_error ("Expected binding target after '=>' at %C");
8244 return MATCH_ERROR;
8246 target = target_buf;
8249 /* If no target was found, it has the same name as the binding. */
8250 if (!target)
8251 target = name;
8253 /* Get the namespace to insert the symbols into. */
8254 ns = block->f2k_derived;
8255 gcc_assert (ns);
8257 /* If the binding is DEFERRED, check that the containing type is ABSTRACT. */
8258 if (tb.deferred && !block->attr.abstract)
8260 gfc_error ("Type '%s' containing DEFERRED binding at %C "
8261 "is not ABSTRACT", block->name);
8262 return MATCH_ERROR;
8265 /* See if we already have a binding with this name in the symtree which
8266 would be an error. If a GENERIC already targeted this binding, it may
8267 be already there but then typebound is still NULL. */
8268 stree = gfc_find_symtree (ns->tb_sym_root, name);
8269 if (stree && stree->n.tb)
8271 gfc_error ("There is already a procedure with binding name '%s' for "
8272 "the derived type '%s' at %C", name, block->name);
8273 return MATCH_ERROR;
8276 /* Insert it and set attributes. */
8278 if (!stree)
8280 stree = gfc_new_symtree (&ns->tb_sym_root, name);
8281 gcc_assert (stree);
8283 stree->n.tb = gfc_get_typebound_proc (&tb);
8285 if (gfc_get_sym_tree (target, gfc_current_ns, &stree->n.tb->u.specific,
8286 false))
8287 return MATCH_ERROR;
8288 gfc_set_sym_referenced (stree->n.tb->u.specific->n.sym);
8290 if (gfc_match_eos () == MATCH_YES)
8291 return MATCH_YES;
8292 if (gfc_match_char (',') != MATCH_YES)
8293 goto syntax;
8296 syntax:
8297 gfc_error ("Syntax error in PROCEDURE statement at %C");
8298 return MATCH_ERROR;
8302 /* Match a GENERIC procedure binding inside a derived type. */
8304 match
8305 gfc_match_generic (void)
8307 char name[GFC_MAX_SYMBOL_LEN + 1];
8308 char bind_name[GFC_MAX_SYMBOL_LEN + 16]; /* Allow space for OPERATOR(...). */
8309 gfc_symbol* block;
8310 gfc_typebound_proc tbattr; /* Used for match_binding_attributes. */
8311 gfc_typebound_proc* tb;
8312 gfc_namespace* ns;
8313 interface_type op_type;
8314 gfc_intrinsic_op op;
8315 match m;
8317 /* Check current state. */
8318 if (gfc_current_state () == COMP_DERIVED)
8320 gfc_error ("GENERIC at %C must be inside a derived-type CONTAINS");
8321 return MATCH_ERROR;
8323 if (gfc_current_state () != COMP_DERIVED_CONTAINS)
8324 return MATCH_NO;
8325 block = gfc_state_stack->previous->sym;
8326 ns = block->f2k_derived;
8327 gcc_assert (block && ns);
8329 memset (&tbattr, 0, sizeof (tbattr));
8330 tbattr.where = gfc_current_locus;
8332 /* See if we get an access-specifier. */
8333 m = match_binding_attributes (&tbattr, true, false);
8334 if (m == MATCH_ERROR)
8335 goto error;
8337 /* Now the colons, those are required. */
8338 if (gfc_match (" ::") != MATCH_YES)
8340 gfc_error ("Expected '::' at %C");
8341 goto error;
8344 /* Match the binding name; depending on type (operator / generic) format
8345 it for future error messages into bind_name. */
8347 m = gfc_match_generic_spec (&op_type, name, &op);
8348 if (m == MATCH_ERROR)
8349 return MATCH_ERROR;
8350 if (m == MATCH_NO)
8352 gfc_error ("Expected generic name or operator descriptor at %C");
8353 goto error;
8356 switch (op_type)
8358 case INTERFACE_GENERIC:
8359 snprintf (bind_name, sizeof (bind_name), "%s", name);
8360 break;
8362 case INTERFACE_USER_OP:
8363 snprintf (bind_name, sizeof (bind_name), "OPERATOR(.%s.)", name);
8364 break;
8366 case INTERFACE_INTRINSIC_OP:
8367 snprintf (bind_name, sizeof (bind_name), "OPERATOR(%s)",
8368 gfc_op2string (op));
8369 break;
8371 default:
8372 gcc_unreachable ();
8375 /* Match the required =>. */
8376 if (gfc_match (" =>") != MATCH_YES)
8378 gfc_error ("Expected '=>' at %C");
8379 goto error;
8382 /* Try to find existing GENERIC binding with this name / for this operator;
8383 if there is something, check that it is another GENERIC and then extend
8384 it rather than building a new node. Otherwise, create it and put it
8385 at the right position. */
8387 switch (op_type)
8389 case INTERFACE_USER_OP:
8390 case INTERFACE_GENERIC:
8392 const bool is_op = (op_type == INTERFACE_USER_OP);
8393 gfc_symtree* st;
8395 st = gfc_find_symtree (is_op ? ns->tb_uop_root : ns->tb_sym_root, name);
8396 if (st)
8398 tb = st->n.tb;
8399 gcc_assert (tb);
8401 else
8402 tb = NULL;
8404 break;
8407 case INTERFACE_INTRINSIC_OP:
8408 tb = ns->tb_op[op];
8409 break;
8411 default:
8412 gcc_unreachable ();
8415 if (tb)
8417 if (!tb->is_generic)
8419 gcc_assert (op_type == INTERFACE_GENERIC);
8420 gfc_error ("There's already a non-generic procedure with binding name"
8421 " '%s' for the derived type '%s' at %C",
8422 bind_name, block->name);
8423 goto error;
8426 if (tb->access != tbattr.access)
8428 gfc_error ("Binding at %C must have the same access as already"
8429 " defined binding '%s'", bind_name);
8430 goto error;
8433 else
8435 tb = gfc_get_typebound_proc (NULL);
8436 tb->where = gfc_current_locus;
8437 tb->access = tbattr.access;
8438 tb->is_generic = 1;
8439 tb->u.generic = NULL;
8441 switch (op_type)
8443 case INTERFACE_GENERIC:
8444 case INTERFACE_USER_OP:
8446 const bool is_op = (op_type == INTERFACE_USER_OP);
8447 gfc_symtree* st;
8449 st = gfc_new_symtree (is_op ? &ns->tb_uop_root : &ns->tb_sym_root,
8450 name);
8451 gcc_assert (st);
8452 st->n.tb = tb;
8454 break;
8457 case INTERFACE_INTRINSIC_OP:
8458 ns->tb_op[op] = tb;
8459 break;
8461 default:
8462 gcc_unreachable ();
8466 /* Now, match all following names as specific targets. */
8469 gfc_symtree* target_st;
8470 gfc_tbp_generic* target;
8472 m = gfc_match_name (name);
8473 if (m == MATCH_ERROR)
8474 goto error;
8475 if (m == MATCH_NO)
8477 gfc_error ("Expected specific binding name at %C");
8478 goto error;
8481 target_st = gfc_get_tbp_symtree (&ns->tb_sym_root, name);
8483 /* See if this is a duplicate specification. */
8484 for (target = tb->u.generic; target; target = target->next)
8485 if (target_st == target->specific_st)
8487 gfc_error ("'%s' already defined as specific binding for the"
8488 " generic '%s' at %C", name, bind_name);
8489 goto error;
8492 target = gfc_get_tbp_generic ();
8493 target->specific_st = target_st;
8494 target->specific = NULL;
8495 target->next = tb->u.generic;
8496 target->is_operator = ((op_type == INTERFACE_USER_OP)
8497 || (op_type == INTERFACE_INTRINSIC_OP));
8498 tb->u.generic = target;
8500 while (gfc_match (" ,") == MATCH_YES);
8502 /* Here should be the end. */
8503 if (gfc_match_eos () != MATCH_YES)
8505 gfc_error ("Junk after GENERIC binding at %C");
8506 goto error;
8509 return MATCH_YES;
8511 error:
8512 return MATCH_ERROR;
8516 /* Match a FINAL declaration inside a derived type. */
8518 match
8519 gfc_match_final_decl (void)
8521 char name[GFC_MAX_SYMBOL_LEN + 1];
8522 gfc_symbol* sym;
8523 match m;
8524 gfc_namespace* module_ns;
8525 bool first, last;
8526 gfc_symbol* block;
8528 if (gfc_current_form == FORM_FREE)
8530 char c = gfc_peek_ascii_char ();
8531 if (!gfc_is_whitespace (c) && c != ':')
8532 return MATCH_NO;
8535 if (gfc_state_stack->state != COMP_DERIVED_CONTAINS)
8537 if (gfc_current_form == FORM_FIXED)
8538 return MATCH_NO;
8540 gfc_error ("FINAL declaration at %C must be inside a derived type "
8541 "CONTAINS section");
8542 return MATCH_ERROR;
8545 block = gfc_state_stack->previous->sym;
8546 gcc_assert (block);
8548 if (!gfc_state_stack->previous || !gfc_state_stack->previous->previous
8549 || gfc_state_stack->previous->previous->state != COMP_MODULE)
8551 gfc_error ("Derived type declaration with FINAL at %C must be in the"
8552 " specification part of a MODULE");
8553 return MATCH_ERROR;
8556 module_ns = gfc_current_ns;
8557 gcc_assert (module_ns);
8558 gcc_assert (module_ns->proc_name->attr.flavor == FL_MODULE);
8560 /* Match optional ::, don't care about MATCH_YES or MATCH_NO. */
8561 if (gfc_match (" ::") == MATCH_ERROR)
8562 return MATCH_ERROR;
8564 /* Match the sequence of procedure names. */
8565 first = true;
8566 last = false;
8569 gfc_finalizer* f;
8571 if (first && gfc_match_eos () == MATCH_YES)
8573 gfc_error ("Empty FINAL at %C");
8574 return MATCH_ERROR;
8577 m = gfc_match_name (name);
8578 if (m == MATCH_NO)
8580 gfc_error ("Expected module procedure name at %C");
8581 return MATCH_ERROR;
8583 else if (m != MATCH_YES)
8584 return MATCH_ERROR;
8586 if (gfc_match_eos () == MATCH_YES)
8587 last = true;
8588 if (!last && gfc_match_char (',') != MATCH_YES)
8590 gfc_error ("Expected ',' at %C");
8591 return MATCH_ERROR;
8594 if (gfc_get_symbol (name, module_ns, &sym))
8596 gfc_error ("Unknown procedure name \"%s\" at %C", name);
8597 return MATCH_ERROR;
8600 /* Mark the symbol as module procedure. */
8601 if (sym->attr.proc != PROC_MODULE
8602 && !gfc_add_procedure (&sym->attr, PROC_MODULE, sym->name, NULL))
8603 return MATCH_ERROR;
8605 /* Check if we already have this symbol in the list, this is an error. */
8606 for (f = block->f2k_derived->finalizers; f; f = f->next)
8607 if (f->proc_sym == sym)
8609 gfc_error ("'%s' at %C is already defined as FINAL procedure!",
8610 name);
8611 return MATCH_ERROR;
8614 /* Add this symbol to the list of finalizers. */
8615 gcc_assert (block->f2k_derived);
8616 ++sym->refs;
8617 f = XCNEW (gfc_finalizer);
8618 f->proc_sym = sym;
8619 f->proc_tree = NULL;
8620 f->where = gfc_current_locus;
8621 f->next = block->f2k_derived->finalizers;
8622 block->f2k_derived->finalizers = f;
8624 first = false;
8626 while (!last);
8628 return MATCH_YES;
8632 const ext_attr_t ext_attr_list[] = {
8633 { "dllimport", EXT_ATTR_DLLIMPORT, "dllimport" },
8634 { "dllexport", EXT_ATTR_DLLEXPORT, "dllexport" },
8635 { "cdecl", EXT_ATTR_CDECL, "cdecl" },
8636 { "stdcall", EXT_ATTR_STDCALL, "stdcall" },
8637 { "fastcall", EXT_ATTR_FASTCALL, "fastcall" },
8638 { "no_arg_check", EXT_ATTR_NO_ARG_CHECK, NULL },
8639 { NULL, EXT_ATTR_LAST, NULL }
8642 /* Match a !GCC$ ATTRIBUTES statement of the form:
8643 !GCC$ ATTRIBUTES attribute-list :: var-name [, var-name] ...
8644 When we come here, we have already matched the !GCC$ ATTRIBUTES string.
8646 TODO: We should support all GCC attributes using the same syntax for
8647 the attribute list, i.e. the list in C
8648 __attributes(( attribute-list ))
8649 matches then
8650 !GCC$ ATTRIBUTES attribute-list ::
8651 Cf. c-parser.c's c_parser_attributes; the data can then directly be
8652 saved into a TREE.
8654 As there is absolutely no risk of confusion, we should never return
8655 MATCH_NO. */
8656 match
8657 gfc_match_gcc_attributes (void)
8659 symbol_attribute attr;
8660 char name[GFC_MAX_SYMBOL_LEN + 1];
8661 unsigned id;
8662 gfc_symbol *sym;
8663 match m;
8665 gfc_clear_attr (&attr);
8666 for(;;)
8668 char ch;
8670 if (gfc_match_name (name) != MATCH_YES)
8671 return MATCH_ERROR;
8673 for (id = 0; id < EXT_ATTR_LAST; id++)
8674 if (strcmp (name, ext_attr_list[id].name) == 0)
8675 break;
8677 if (id == EXT_ATTR_LAST)
8679 gfc_error ("Unknown attribute in !GCC$ ATTRIBUTES statement at %C");
8680 return MATCH_ERROR;
8683 if (!gfc_add_ext_attribute (&attr, (ext_attr_id_t)id, &gfc_current_locus))
8684 return MATCH_ERROR;
8686 gfc_gobble_whitespace ();
8687 ch = gfc_next_ascii_char ();
8688 if (ch == ':')
8690 /* This is the successful exit condition for the loop. */
8691 if (gfc_next_ascii_char () == ':')
8692 break;
8695 if (ch == ',')
8696 continue;
8698 goto syntax;
8701 if (gfc_match_eos () == MATCH_YES)
8702 goto syntax;
8704 for(;;)
8706 m = gfc_match_name (name);
8707 if (m != MATCH_YES)
8708 return m;
8710 if (find_special (name, &sym, true))
8711 return MATCH_ERROR;
8713 sym->attr.ext_attr |= attr.ext_attr;
8715 if (gfc_match_eos () == MATCH_YES)
8716 break;
8718 if (gfc_match_char (',') != MATCH_YES)
8719 goto syntax;
8722 return MATCH_YES;
8724 syntax:
8725 gfc_error ("Syntax error in !GCC$ ATTRIBUTES statement at %C");
8726 return MATCH_ERROR;