* gcc.dg/20061124-1.c: Add exit() function prototype.
[official-gcc.git] / gcc / fortran / decl.c
blob25fa6b58b85d21167b6250da3b458151b5dff63e
1 /* Declaration statement matcher
2 Copyright (C) 2002, 2004, 2005, 2006 Free Software Foundation, Inc.
3 Contributed by Andy Vaught
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
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 COPYING. If not, write to the Free
19 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
20 02110-1301, USA. */
23 #include "config.h"
24 #include "system.h"
25 #include "gfortran.h"
26 #include "match.h"
27 #include "parse.h"
30 /* This flag is set if an old-style length selector is matched
31 during a type-declaration statement. */
33 static int old_char_selector;
35 /* When variables acquire types and attributes from a declaration
36 statement, they get them from the following static variables. The
37 first part of a declaration sets these variables and the second
38 part copies these into symbol structures. */
40 static gfc_typespec current_ts;
42 static symbol_attribute current_attr;
43 static gfc_array_spec *current_as;
44 static int colon_seen;
46 /* Initializer of the previous enumerator. */
48 static gfc_expr *last_initializer;
50 /* History of all the enumerators is maintained, so that
51 kind values of all the enumerators could be updated depending
52 upon the maximum initialized value. */
54 typedef struct enumerator_history
56 gfc_symbol *sym;
57 gfc_expr *initializer;
58 struct enumerator_history *next;
60 enumerator_history;
62 /* Header of enum history chain. */
64 static enumerator_history *enum_history = NULL;
66 /* Pointer of enum history node containing largest initializer. */
68 static enumerator_history *max_enum = NULL;
70 /* gfc_new_block points to the symbol of a newly matched block. */
72 gfc_symbol *gfc_new_block;
75 /********************* DATA statement subroutines *********************/
77 /* Free a gfc_data_variable structure and everything beneath it. */
79 static void
80 free_variable (gfc_data_variable * p)
82 gfc_data_variable *q;
84 for (; p; p = q)
86 q = p->next;
87 gfc_free_expr (p->expr);
88 gfc_free_iterator (&p->iter, 0);
89 free_variable (p->list);
91 gfc_free (p);
96 /* Free a gfc_data_value structure and everything beneath it. */
98 static void
99 free_value (gfc_data_value * p)
101 gfc_data_value *q;
103 for (; p; p = q)
105 q = p->next;
106 gfc_free_expr (p->expr);
107 gfc_free (p);
112 /* Free a list of gfc_data structures. */
114 void
115 gfc_free_data (gfc_data * p)
117 gfc_data *q;
119 for (; p; p = q)
121 q = p->next;
123 free_variable (p->var);
124 free_value (p->value);
126 gfc_free (p);
131 /* Free all data in a namespace. */
132 static void
133 gfc_free_data_all (gfc_namespace * ns)
135 gfc_data *d;
137 for (;ns->data;)
139 d = ns->data->next;
140 gfc_free (ns->data);
141 ns->data = d;
146 static match var_element (gfc_data_variable *);
148 /* Match a list of variables terminated by an iterator and a right
149 parenthesis. */
151 static match
152 var_list (gfc_data_variable * parent)
154 gfc_data_variable *tail, var;
155 match m;
157 m = var_element (&var);
158 if (m == MATCH_ERROR)
159 return MATCH_ERROR;
160 if (m == MATCH_NO)
161 goto syntax;
163 tail = gfc_get_data_variable ();
164 *tail = var;
166 parent->list = tail;
168 for (;;)
170 if (gfc_match_char (',') != MATCH_YES)
171 goto syntax;
173 m = gfc_match_iterator (&parent->iter, 1);
174 if (m == MATCH_YES)
175 break;
176 if (m == MATCH_ERROR)
177 return MATCH_ERROR;
179 m = var_element (&var);
180 if (m == MATCH_ERROR)
181 return MATCH_ERROR;
182 if (m == MATCH_NO)
183 goto syntax;
185 tail->next = gfc_get_data_variable ();
186 tail = tail->next;
188 *tail = var;
191 if (gfc_match_char (')') != MATCH_YES)
192 goto syntax;
193 return MATCH_YES;
195 syntax:
196 gfc_syntax_error (ST_DATA);
197 return MATCH_ERROR;
201 /* Match a single element in a data variable list, which can be a
202 variable-iterator list. */
204 static match
205 var_element (gfc_data_variable * new)
207 match m;
208 gfc_symbol *sym;
210 memset (new, 0, sizeof (gfc_data_variable));
212 if (gfc_match_char ('(') == MATCH_YES)
213 return var_list (new);
215 m = gfc_match_variable (&new->expr, 0);
216 if (m != MATCH_YES)
217 return m;
219 sym = new->expr->symtree->n.sym;
221 if (!sym->attr.function && gfc_current_ns->parent && gfc_current_ns->parent == sym->ns)
223 gfc_error ("Host associated variable '%s' may not be in the DATA "
224 "statement at %C", sym->name);
225 return MATCH_ERROR;
228 if (gfc_current_state () != COMP_BLOCK_DATA
229 && sym->attr.in_common
230 && gfc_notify_std (GFC_STD_GNU, "Extension: initialization of "
231 "common block variable '%s' in DATA statement at %C",
232 sym->name) == FAILURE)
233 return MATCH_ERROR;
235 if (gfc_add_data (&sym->attr, sym->name, &new->expr->where) == FAILURE)
236 return MATCH_ERROR;
238 return MATCH_YES;
242 /* Match the top-level list of data variables. */
244 static match
245 top_var_list (gfc_data * d)
247 gfc_data_variable var, *tail, *new;
248 match m;
250 tail = NULL;
252 for (;;)
254 m = var_element (&var);
255 if (m == MATCH_NO)
256 goto syntax;
257 if (m == MATCH_ERROR)
258 return MATCH_ERROR;
260 new = gfc_get_data_variable ();
261 *new = var;
263 if (tail == NULL)
264 d->var = new;
265 else
266 tail->next = new;
268 tail = new;
270 if (gfc_match_char ('/') == MATCH_YES)
271 break;
272 if (gfc_match_char (',') != MATCH_YES)
273 goto syntax;
276 return MATCH_YES;
278 syntax:
279 gfc_syntax_error (ST_DATA);
280 gfc_free_data_all (gfc_current_ns);
281 return MATCH_ERROR;
285 static match
286 match_data_constant (gfc_expr ** result)
288 char name[GFC_MAX_SYMBOL_LEN + 1];
289 gfc_symbol *sym;
290 gfc_expr *expr;
291 match m;
293 m = gfc_match_literal_constant (&expr, 1);
294 if (m == MATCH_YES)
296 *result = expr;
297 return MATCH_YES;
300 if (m == MATCH_ERROR)
301 return MATCH_ERROR;
303 m = gfc_match_null (result);
304 if (m != MATCH_NO)
305 return m;
307 m = gfc_match_name (name);
308 if (m != MATCH_YES)
309 return m;
311 if (gfc_find_symbol (name, NULL, 1, &sym))
312 return MATCH_ERROR;
314 if (sym == NULL
315 || (sym->attr.flavor != FL_PARAMETER && sym->attr.flavor != FL_DERIVED))
317 gfc_error ("Symbol '%s' must be a PARAMETER in DATA statement at %C",
318 name);
319 return MATCH_ERROR;
321 else if (sym->attr.flavor == FL_DERIVED)
322 return gfc_match_structure_constructor (sym, result);
324 *result = gfc_copy_expr (sym->value);
325 return MATCH_YES;
329 /* Match a list of values in a DATA statement. The leading '/' has
330 already been seen at this point. */
332 static match
333 top_val_list (gfc_data * data)
335 gfc_data_value *new, *tail;
336 gfc_expr *expr;
337 const char *msg;
338 match m;
340 tail = NULL;
342 for (;;)
344 m = match_data_constant (&expr);
345 if (m == MATCH_NO)
346 goto syntax;
347 if (m == MATCH_ERROR)
348 return MATCH_ERROR;
350 new = gfc_get_data_value ();
352 if (tail == NULL)
353 data->value = new;
354 else
355 tail->next = new;
357 tail = new;
359 if (expr->ts.type != BT_INTEGER || gfc_match_char ('*') != MATCH_YES)
361 tail->expr = expr;
362 tail->repeat = 1;
364 else
366 signed int tmp;
367 msg = gfc_extract_int (expr, &tmp);
368 gfc_free_expr (expr);
369 if (msg != NULL)
371 gfc_error (msg);
372 return MATCH_ERROR;
374 tail->repeat = tmp;
376 m = match_data_constant (&tail->expr);
377 if (m == MATCH_NO)
378 goto syntax;
379 if (m == MATCH_ERROR)
380 return MATCH_ERROR;
383 if (gfc_match_char ('/') == MATCH_YES)
384 break;
385 if (gfc_match_char (',') == MATCH_NO)
386 goto syntax;
389 return MATCH_YES;
391 syntax:
392 gfc_syntax_error (ST_DATA);
393 gfc_free_data_all (gfc_current_ns);
394 return MATCH_ERROR;
398 /* Matches an old style initialization. */
400 static match
401 match_old_style_init (const char *name)
403 match m;
404 gfc_symtree *st;
405 gfc_symbol *sym;
406 gfc_data *newdata;
408 /* Set up data structure to hold initializers. */
409 gfc_find_sym_tree (name, NULL, 0, &st);
410 sym = st->n.sym;
412 newdata = gfc_get_data ();
413 newdata->var = gfc_get_data_variable ();
414 newdata->var->expr = gfc_get_variable_expr (st);
415 newdata->where = gfc_current_locus;
417 /* Match initial value list. This also eats the terminal
418 '/'. */
419 m = top_val_list (newdata);
420 if (m != MATCH_YES)
422 gfc_free (newdata);
423 return m;
426 if (gfc_pure (NULL))
428 gfc_error ("Initialization at %C is not allowed in a PURE procedure");
429 gfc_free (newdata);
430 return MATCH_ERROR;
433 /* Mark the variable as having appeared in a data statement. */
434 if (gfc_add_data (&sym->attr, sym->name, &sym->declared_at) == FAILURE)
436 gfc_free (newdata);
437 return MATCH_ERROR;
440 /* Chain in namespace list of DATA initializers. */
441 newdata->next = gfc_current_ns->data;
442 gfc_current_ns->data = newdata;
444 return m;
447 /* Match the stuff following a DATA statement. If ERROR_FLAG is set,
448 we are matching a DATA statement and are therefore issuing an error
449 if we encounter something unexpected, if not, we're trying to match
450 an old-style initialization expression of the form INTEGER I /2/. */
452 match
453 gfc_match_data (void)
455 gfc_data *new;
456 match m;
458 for (;;)
460 new = gfc_get_data ();
461 new->where = gfc_current_locus;
463 m = top_var_list (new);
464 if (m != MATCH_YES)
465 goto cleanup;
467 m = top_val_list (new);
468 if (m != MATCH_YES)
469 goto cleanup;
471 new->next = gfc_current_ns->data;
472 gfc_current_ns->data = new;
474 if (gfc_match_eos () == MATCH_YES)
475 break;
477 gfc_match_char (','); /* Optional comma */
480 if (gfc_pure (NULL))
482 gfc_error ("DATA statement at %C is not allowed in a PURE procedure");
483 return MATCH_ERROR;
486 return MATCH_YES;
488 cleanup:
489 gfc_free_data (new);
490 return MATCH_ERROR;
494 /************************ Declaration statements *********************/
496 /* Match an intent specification. Since this can only happen after an
497 INTENT word, a legal intent-spec must follow. */
499 static sym_intent
500 match_intent_spec (void)
503 if (gfc_match (" ( in out )") == MATCH_YES)
504 return INTENT_INOUT;
505 if (gfc_match (" ( in )") == MATCH_YES)
506 return INTENT_IN;
507 if (gfc_match (" ( out )") == MATCH_YES)
508 return INTENT_OUT;
510 gfc_error ("Bad INTENT specification at %C");
511 return INTENT_UNKNOWN;
515 /* Matches a character length specification, which is either a
516 specification expression or a '*'. */
518 static match
519 char_len_param_value (gfc_expr ** expr)
522 if (gfc_match_char ('*') == MATCH_YES)
524 *expr = NULL;
525 return MATCH_YES;
528 return gfc_match_expr (expr);
532 /* A character length is a '*' followed by a literal integer or a
533 char_len_param_value in parenthesis. */
535 static match
536 match_char_length (gfc_expr ** expr)
538 int length;
539 match m;
541 m = gfc_match_char ('*');
542 if (m != MATCH_YES)
543 return m;
545 m = gfc_match_small_literal_int (&length, NULL);
546 if (m == MATCH_ERROR)
547 return m;
549 if (m == MATCH_YES)
551 *expr = gfc_int_expr (length);
552 return m;
555 if (gfc_match_char ('(') == MATCH_NO)
556 goto syntax;
558 m = char_len_param_value (expr);
559 if (m == MATCH_ERROR)
560 return m;
561 if (m == MATCH_NO)
562 goto syntax;
564 if (gfc_match_char (')') == MATCH_NO)
566 gfc_free_expr (*expr);
567 *expr = NULL;
568 goto syntax;
571 return MATCH_YES;
573 syntax:
574 gfc_error ("Syntax error in character length specification at %C");
575 return MATCH_ERROR;
579 /* Special subroutine for finding a symbol. Check if the name is found
580 in the current name space. If not, and we're compiling a function or
581 subroutine and the parent compilation unit is an interface, then check
582 to see if the name we've been given is the name of the interface
583 (located in another namespace). */
585 static int
586 find_special (const char *name, gfc_symbol ** result)
588 gfc_state_data *s;
589 int i;
591 i = gfc_get_symbol (name, NULL, result);
592 if (i==0)
593 goto end;
595 if (gfc_current_state () != COMP_SUBROUTINE
596 && gfc_current_state () != COMP_FUNCTION)
597 goto end;
599 s = gfc_state_stack->previous;
600 if (s == NULL)
601 goto end;
603 if (s->state != COMP_INTERFACE)
604 goto end;
605 if (s->sym == NULL)
606 goto end; /* Nameless interface */
608 if (strcmp (name, s->sym->name) == 0)
610 *result = s->sym;
611 return 0;
614 end:
615 return i;
619 /* Special subroutine for getting a symbol node associated with a
620 procedure name, used in SUBROUTINE and FUNCTION statements. The
621 symbol is created in the parent using with symtree node in the
622 child unit pointing to the symbol. If the current namespace has no
623 parent, then the symbol is just created in the current unit. */
625 static int
626 get_proc_name (const char *name, gfc_symbol ** result,
627 bool module_fcn_entry)
629 gfc_symtree *st;
630 gfc_symbol *sym;
631 int rc;
633 /* Module functions have to be left in their own namespace because
634 they have potentially (almost certainly!) already been referenced.
635 In this sense, they are rather like external functions. This is
636 fixed up in resolve.c(resolve_entries), where the symbol name-
637 space is set to point to the master function, so that the fake
638 result mechanism can work. */
639 if (module_fcn_entry)
640 rc = gfc_get_symbol (name, NULL, result);
641 else
642 rc = gfc_get_symbol (name, gfc_current_ns->parent, result);
644 sym = *result;
645 gfc_current_ns->refs++;
647 if (sym && !sym->new && gfc_current_state () != COMP_INTERFACE)
649 /* Trap another encompassed procedure with the same name. All
650 these conditions are necessary to avoid picking up an entry
651 whose name clashes with that of the encompassing procedure;
652 this is handled using gsymbols to register unique,globally
653 accessible names. */
654 if (sym->attr.flavor != 0
655 && sym->attr.proc != 0
656 && (sym->attr.subroutine || sym->attr.function)
657 && sym->attr.if_source != IFSRC_UNKNOWN)
658 gfc_error_now ("Procedure '%s' at %C is already defined at %L",
659 name, &sym->declared_at);
661 /* Trap declarations of attributes in encompassing scope. The
662 signature for this is that ts.kind is set. Legitimate
663 references only set ts.type. */
664 if (sym->ts.kind != 0
665 && !sym->attr.implicit_type
666 && sym->attr.proc == 0
667 && gfc_current_ns->parent != NULL
668 && sym->attr.access == 0
669 && !module_fcn_entry)
670 gfc_error_now ("Procedure '%s' at %C has an explicit interface"
671 " and must not have attributes declared at %L",
672 name, &sym->declared_at);
675 if (gfc_current_ns->parent == NULL || *result == NULL)
676 return rc;
678 /* Module function entries will already have a symtree in
679 the current namespace but will need one at module level. */
680 if (module_fcn_entry)
681 st = gfc_new_symtree (&gfc_current_ns->parent->sym_root, name);
682 else
683 st = gfc_new_symtree (&gfc_current_ns->sym_root, name);
685 st->n.sym = sym;
686 sym->refs++;
688 /* See if the procedure should be a module procedure */
690 if (((sym->ns->proc_name != NULL
691 && sym->ns->proc_name->attr.flavor == FL_MODULE
692 && sym->attr.proc != PROC_MODULE) || module_fcn_entry)
693 && gfc_add_procedure (&sym->attr, PROC_MODULE,
694 sym->name, NULL) == FAILURE)
695 rc = 2;
697 return rc;
701 /* Function called by variable_decl() that adds a name to the symbol
702 table. */
704 static try
705 build_sym (const char *name, gfc_charlen * cl,
706 gfc_array_spec ** as, locus * var_locus)
708 symbol_attribute attr;
709 gfc_symbol *sym;
711 /* if (find_special (name, &sym)) */
712 if (gfc_get_symbol (name, NULL, &sym))
713 return FAILURE;
715 /* Start updating the symbol table. Add basic type attribute
716 if present. */
717 if (current_ts.type != BT_UNKNOWN
718 &&(sym->attr.implicit_type == 0
719 || !gfc_compare_types (&sym->ts, &current_ts))
720 && gfc_add_type (sym, &current_ts, var_locus) == FAILURE)
721 return FAILURE;
723 if (sym->ts.type == BT_CHARACTER)
724 sym->ts.cl = cl;
726 /* Add dimension attribute if present. */
727 if (gfc_set_array_spec (sym, *as, var_locus) == FAILURE)
728 return FAILURE;
729 *as = NULL;
731 /* Add attribute to symbol. The copy is so that we can reset the
732 dimension attribute. */
733 attr = current_attr;
734 attr.dimension = 0;
736 if (gfc_copy_attr (&sym->attr, &attr, var_locus) == FAILURE)
737 return FAILURE;
739 return SUCCESS;
742 /* Set character constant to the given length. The constant will be padded or
743 truncated. */
745 void
746 gfc_set_constant_character_len (int len, gfc_expr * expr)
748 char * s;
749 int slen;
751 gcc_assert (expr->expr_type == EXPR_CONSTANT);
752 gcc_assert (expr->ts.type == BT_CHARACTER && expr->ts.kind == 1);
754 slen = expr->value.character.length;
755 if (len != slen)
757 s = gfc_getmem (len + 1);
758 memcpy (s, expr->value.character.string, MIN (len, slen));
759 if (len > slen)
760 memset (&s[slen], ' ', len - slen);
761 s[len] = '\0';
762 gfc_free (expr->value.character.string);
763 expr->value.character.string = s;
764 expr->value.character.length = len;
769 /* Function to create and update the enumerator history
770 using the information passed as arguments.
771 Pointer "max_enum" is also updated, to point to
772 enum history node containing largest initializer.
774 SYM points to the symbol node of enumerator.
775 INIT points to its enumerator value. */
777 static void
778 create_enum_history(gfc_symbol *sym, gfc_expr *init)
780 enumerator_history *new_enum_history;
781 gcc_assert (sym != NULL && init != NULL);
783 new_enum_history = gfc_getmem (sizeof (enumerator_history));
785 new_enum_history->sym = sym;
786 new_enum_history->initializer = init;
787 new_enum_history->next = NULL;
789 if (enum_history == NULL)
791 enum_history = new_enum_history;
792 max_enum = enum_history;
794 else
796 new_enum_history->next = enum_history;
797 enum_history = new_enum_history;
799 if (mpz_cmp (max_enum->initializer->value.integer,
800 new_enum_history->initializer->value.integer) < 0)
801 max_enum = new_enum_history;
806 /* Function to free enum kind history. */
808 void
809 gfc_free_enum_history(void)
811 enumerator_history *current = enum_history;
812 enumerator_history *next;
814 while (current != NULL)
816 next = current->next;
817 gfc_free (current);
818 current = next;
820 max_enum = NULL;
821 enum_history = NULL;
825 /* Function called by variable_decl() that adds an initialization
826 expression to a symbol. */
828 static try
829 add_init_expr_to_sym (const char *name, gfc_expr ** initp,
830 locus * var_locus)
832 symbol_attribute attr;
833 gfc_symbol *sym;
834 gfc_expr *init;
836 init = *initp;
837 if (find_special (name, &sym))
838 return FAILURE;
840 attr = sym->attr;
842 /* If this symbol is confirming an implicit parameter type,
843 then an initialization expression is not allowed. */
844 if (attr.flavor == FL_PARAMETER
845 && sym->value != NULL
846 && *initp != NULL)
848 gfc_error ("Initializer not allowed for PARAMETER '%s' at %C",
849 sym->name);
850 return FAILURE;
853 if (attr.in_common
854 && !attr.data
855 && *initp != NULL)
857 gfc_error ("Initializer not allowed for COMMON variable '%s' at %C",
858 sym->name);
859 return FAILURE;
862 if (init == NULL)
864 /* An initializer is required for PARAMETER declarations. */
865 if (attr.flavor == FL_PARAMETER)
867 gfc_error ("PARAMETER at %L is missing an initializer", var_locus);
868 return FAILURE;
871 else
873 /* If a variable appears in a DATA block, it cannot have an
874 initializer. */
875 if (sym->attr.data)
877 gfc_error
878 ("Variable '%s' at %C with an initializer already appears "
879 "in a DATA statement", sym->name);
880 return FAILURE;
883 /* Check if the assignment can happen. This has to be put off
884 until later for a derived type variable. */
885 if (sym->ts.type != BT_DERIVED && init->ts.type != BT_DERIVED
886 && gfc_check_assign_symbol (sym, init) == FAILURE)
887 return FAILURE;
889 if (sym->ts.type == BT_CHARACTER && sym->ts.cl)
891 /* Update symbol character length according initializer. */
892 if (sym->ts.cl->length == NULL)
894 /* If there are multiple CHARACTER variables declared on
895 the same line, we don't want them to share the same
896 length. */
897 sym->ts.cl = gfc_get_charlen ();
898 sym->ts.cl->next = gfc_current_ns->cl_list;
899 gfc_current_ns->cl_list = sym->ts.cl;
901 if (sym->attr.flavor == FL_PARAMETER
902 && init->expr_type == EXPR_ARRAY)
903 sym->ts.cl->length = gfc_copy_expr (init->ts.cl->length);
905 /* Update initializer character length according symbol. */
906 else if (sym->ts.cl->length->expr_type == EXPR_CONSTANT)
908 int len = mpz_get_si (sym->ts.cl->length->value.integer);
909 gfc_constructor * p;
911 if (init->expr_type == EXPR_CONSTANT)
912 gfc_set_constant_character_len (len, init);
913 else if (init->expr_type == EXPR_ARRAY)
915 gfc_free_expr (init->ts.cl->length);
916 init->ts.cl->length = gfc_copy_expr (sym->ts.cl->length);
917 for (p = init->value.constructor; p; p = p->next)
918 gfc_set_constant_character_len (len, p->expr);
923 /* Add initializer. Make sure we keep the ranks sane. */
924 if (sym->attr.dimension && init->rank == 0)
925 init->rank = sym->as->rank;
927 sym->value = init;
928 *initp = NULL;
931 /* Maintain enumerator history. */
932 if (gfc_current_state () == COMP_ENUM)
933 create_enum_history (sym, init);
935 return SUCCESS;
939 /* Function called by variable_decl() that adds a name to a structure
940 being built. */
942 static try
943 build_struct (const char *name, gfc_charlen * cl, gfc_expr ** init,
944 gfc_array_spec ** as)
946 gfc_component *c;
948 /* If the current symbol is of the same derived type that we're
949 constructing, it must have the pointer attribute. */
950 if (current_ts.type == BT_DERIVED
951 && current_ts.derived == gfc_current_block ()
952 && current_attr.pointer == 0)
954 gfc_error ("Component at %C must have the POINTER attribute");
955 return FAILURE;
958 if (gfc_current_block ()->attr.pointer
959 && (*as)->rank != 0)
961 if ((*as)->type != AS_DEFERRED && (*as)->type != AS_EXPLICIT)
963 gfc_error ("Array component of structure at %C must have explicit "
964 "or deferred shape");
965 return FAILURE;
969 if (gfc_add_component (gfc_current_block (), name, &c) == FAILURE)
970 return FAILURE;
972 c->ts = current_ts;
973 c->ts.cl = cl;
974 gfc_set_component_attr (c, &current_attr);
976 c->initializer = *init;
977 *init = NULL;
979 c->as = *as;
980 if (c->as != NULL)
981 c->dimension = 1;
982 *as = NULL;
984 /* Check array components. */
985 if (!c->dimension)
987 if (c->allocatable)
989 gfc_error ("Allocatable component at %C must be an array");
990 return FAILURE;
992 else
993 return SUCCESS;
996 if (c->pointer)
998 if (c->as->type != AS_DEFERRED)
1000 gfc_error ("Pointer array component of structure at %C must have a "
1001 "deferred shape");
1002 return FAILURE;
1005 else if (c->allocatable)
1007 if (c->as->type != AS_DEFERRED)
1009 gfc_error ("Allocatable component of structure at %C must have a "
1010 "deferred shape");
1011 return FAILURE;
1014 else
1016 if (c->as->type != AS_EXPLICIT)
1018 gfc_error
1019 ("Array component of structure at %C must have an explicit "
1020 "shape");
1021 return FAILURE;
1025 return SUCCESS;
1029 /* Match a 'NULL()', and possibly take care of some side effects. */
1031 match
1032 gfc_match_null (gfc_expr ** result)
1034 gfc_symbol *sym;
1035 gfc_expr *e;
1036 match m;
1038 m = gfc_match (" null ( )");
1039 if (m != MATCH_YES)
1040 return m;
1042 /* The NULL symbol now has to be/become an intrinsic function. */
1043 if (gfc_get_symbol ("null", NULL, &sym))
1045 gfc_error ("NULL() initialization at %C is ambiguous");
1046 return MATCH_ERROR;
1049 gfc_intrinsic_symbol (sym);
1051 if (sym->attr.proc != PROC_INTRINSIC
1052 && (gfc_add_procedure (&sym->attr, PROC_INTRINSIC,
1053 sym->name, NULL) == FAILURE
1054 || gfc_add_function (&sym->attr, sym->name, NULL) == FAILURE))
1055 return MATCH_ERROR;
1057 e = gfc_get_expr ();
1058 e->where = gfc_current_locus;
1059 e->expr_type = EXPR_NULL;
1060 e->ts.type = BT_UNKNOWN;
1062 *result = e;
1064 return MATCH_YES;
1068 /* Match a variable name with an optional initializer. When this
1069 subroutine is called, a variable is expected to be parsed next.
1070 Depending on what is happening at the moment, updates either the
1071 symbol table or the current interface. */
1073 static match
1074 variable_decl (int elem)
1076 char name[GFC_MAX_SYMBOL_LEN + 1];
1077 gfc_expr *initializer, *char_len;
1078 gfc_array_spec *as;
1079 gfc_array_spec *cp_as; /* Extra copy for Cray Pointees. */
1080 gfc_charlen *cl;
1081 locus var_locus;
1082 match m;
1083 try t;
1084 gfc_symbol *sym;
1085 locus old_locus;
1087 initializer = NULL;
1088 as = NULL;
1089 cp_as = NULL;
1090 old_locus = gfc_current_locus;
1092 /* When we get here, we've just matched a list of attributes and
1093 maybe a type and a double colon. The next thing we expect to see
1094 is the name of the symbol. */
1095 m = gfc_match_name (name);
1096 if (m != MATCH_YES)
1097 goto cleanup;
1099 var_locus = gfc_current_locus;
1101 /* Now we could see the optional array spec. or character length. */
1102 m = gfc_match_array_spec (&as);
1103 if (gfc_option.flag_cray_pointer && m == MATCH_YES)
1104 cp_as = gfc_copy_array_spec (as);
1105 else if (m == MATCH_ERROR)
1106 goto cleanup;
1108 if (m == MATCH_NO)
1109 as = gfc_copy_array_spec (current_as);
1110 else if (gfc_current_state () == COMP_ENUM)
1112 gfc_error ("Enumerator cannot be array at %C");
1113 gfc_free_enum_history ();
1114 m = MATCH_ERROR;
1115 goto cleanup;
1119 char_len = NULL;
1120 cl = NULL;
1122 if (current_ts.type == BT_CHARACTER)
1124 switch (match_char_length (&char_len))
1126 case MATCH_YES:
1127 cl = gfc_get_charlen ();
1128 cl->next = gfc_current_ns->cl_list;
1129 gfc_current_ns->cl_list = cl;
1131 cl->length = char_len;
1132 break;
1134 /* Non-constant lengths need to be copied after the first
1135 element. */
1136 case MATCH_NO:
1137 if (elem > 1 && current_ts.cl->length
1138 && current_ts.cl->length->expr_type != EXPR_CONSTANT)
1140 cl = gfc_get_charlen ();
1141 cl->next = gfc_current_ns->cl_list;
1142 gfc_current_ns->cl_list = cl;
1143 cl->length = gfc_copy_expr (current_ts.cl->length);
1145 else
1146 cl = current_ts.cl;
1148 break;
1150 case MATCH_ERROR:
1151 goto cleanup;
1155 /* If this symbol has already shown up in a Cray Pointer declaration,
1156 then we want to set the type & bail out. */
1157 if (gfc_option.flag_cray_pointer)
1159 gfc_find_symbol (name, gfc_current_ns, 1, &sym);
1160 if (sym != NULL && sym->attr.cray_pointee)
1162 sym->ts.type = current_ts.type;
1163 sym->ts.kind = current_ts.kind;
1164 sym->ts.cl = cl;
1165 sym->ts.derived = current_ts.derived;
1166 m = MATCH_YES;
1168 /* Check to see if we have an array specification. */
1169 if (cp_as != NULL)
1171 if (sym->as != NULL)
1173 gfc_error ("Duplicate array spec for Cray pointee at %C");
1174 gfc_free_array_spec (cp_as);
1175 m = MATCH_ERROR;
1176 goto cleanup;
1178 else
1180 if (gfc_set_array_spec (sym, cp_as, &var_locus) == FAILURE)
1181 gfc_internal_error ("Couldn't set pointee array spec.");
1183 /* Fix the array spec. */
1184 m = gfc_mod_pointee_as (sym->as);
1185 if (m == MATCH_ERROR)
1186 goto cleanup;
1189 goto cleanup;
1191 else
1193 gfc_free_array_spec (cp_as);
1198 /* OK, we've successfully matched the declaration. Now put the
1199 symbol in the current namespace, because it might be used in the
1200 optional initialization expression for this symbol, e.g. this is
1201 perfectly legal:
1203 integer, parameter :: i = huge(i)
1205 This is only true for parameters or variables of a basic type.
1206 For components of derived types, it is not true, so we don't
1207 create a symbol for those yet. If we fail to create the symbol,
1208 bail out. */
1209 if (gfc_current_state () != COMP_DERIVED
1210 && build_sym (name, cl, &as, &var_locus) == FAILURE)
1212 m = MATCH_ERROR;
1213 goto cleanup;
1216 /* An interface body specifies all of the procedure's characteristics and these
1217 shall be consistent with those specified in the procedure definition, except
1218 that the interface may specify a procedure that is not pure if the procedure
1219 is defined to be pure(12.3.2). */
1220 if (current_ts.type == BT_DERIVED
1221 && gfc_current_ns->proc_name
1222 && gfc_current_ns->proc_name->attr.if_source == IFSRC_IFBODY
1223 && current_ts.derived->ns != gfc_current_ns
1224 && !gfc_current_ns->has_import_set)
1226 gfc_error ("the type of '%s' at %C has not been declared within the "
1227 "interface", name);
1228 m = MATCH_ERROR;
1229 goto cleanup;
1232 /* In functions that have a RESULT variable defined, the function
1233 name always refers to function calls. Therefore, the name is
1234 not allowed to appear in specification statements. */
1235 if (gfc_current_state () == COMP_FUNCTION
1236 && gfc_current_block () != NULL
1237 && gfc_current_block ()->result != NULL
1238 && gfc_current_block ()->result != gfc_current_block ()
1239 && strcmp (gfc_current_block ()->name, name) == 0)
1241 gfc_error ("Function name '%s' not allowed at %C", name);
1242 m = MATCH_ERROR;
1243 goto cleanup;
1246 /* We allow old-style initializations of the form
1247 integer i /2/, j(4) /3*3, 1/
1248 (if no colon has been seen). These are different from data
1249 statements in that initializers are only allowed to apply to the
1250 variable immediately preceding, i.e.
1251 integer i, j /1, 2/
1252 is not allowed. Therefore we have to do some work manually, that
1253 could otherwise be left to the matchers for DATA statements. */
1255 if (!colon_seen && gfc_match (" /") == MATCH_YES)
1257 if (gfc_notify_std (GFC_STD_GNU, "Extension: Old-style "
1258 "initialization at %C") == FAILURE)
1259 return MATCH_ERROR;
1261 return match_old_style_init (name);
1264 /* The double colon must be present in order to have initializers.
1265 Otherwise the statement is ambiguous with an assignment statement. */
1266 if (colon_seen)
1268 if (gfc_match (" =>") == MATCH_YES)
1271 if (!current_attr.pointer)
1273 gfc_error ("Initialization at %C isn't for a pointer variable");
1274 m = MATCH_ERROR;
1275 goto cleanup;
1278 m = gfc_match_null (&initializer);
1279 if (m == MATCH_NO)
1281 gfc_error ("Pointer initialization requires a NULL() at %C");
1282 m = MATCH_ERROR;
1285 if (gfc_pure (NULL))
1287 gfc_error
1288 ("Initialization of pointer at %C is not allowed in a "
1289 "PURE procedure");
1290 m = MATCH_ERROR;
1293 if (m != MATCH_YES)
1294 goto cleanup;
1297 else if (gfc_match_char ('=') == MATCH_YES)
1299 if (current_attr.pointer)
1301 gfc_error
1302 ("Pointer initialization at %C requires '=>', not '='");
1303 m = MATCH_ERROR;
1304 goto cleanup;
1307 m = gfc_match_init_expr (&initializer);
1308 if (m == MATCH_NO)
1310 gfc_error ("Expected an initialization expression at %C");
1311 m = MATCH_ERROR;
1314 if (current_attr.flavor != FL_PARAMETER && gfc_pure (NULL))
1316 gfc_error
1317 ("Initialization of variable at %C is not allowed in a "
1318 "PURE procedure");
1319 m = MATCH_ERROR;
1322 if (m != MATCH_YES)
1323 goto cleanup;
1327 if (initializer != NULL && current_attr.allocatable
1328 && gfc_current_state () == COMP_DERIVED)
1330 gfc_error ("Initialization of allocatable component at %C is not allowed");
1331 m = MATCH_ERROR;
1332 goto cleanup;
1335 /* Check if we are parsing an enumeration and if the current enumerator
1336 variable has an initializer or not. If it does not have an
1337 initializer, the initialization value of the previous enumerator
1338 (stored in last_initializer) is incremented by 1 and is used to
1339 initialize the current enumerator. */
1340 if (gfc_current_state () == COMP_ENUM)
1342 if (initializer == NULL)
1343 initializer = gfc_enum_initializer (last_initializer, old_locus);
1345 if (initializer == NULL || initializer->ts.type != BT_INTEGER)
1347 gfc_error("ENUMERATOR %L not initialized with integer expression",
1348 &var_locus);
1349 m = MATCH_ERROR;
1350 gfc_free_enum_history ();
1351 goto cleanup;
1354 /* Store this current initializer, for the next enumerator
1355 variable to be parsed. */
1356 last_initializer = initializer;
1359 /* Add the initializer. Note that it is fine if initializer is
1360 NULL here, because we sometimes also need to check if a
1361 declaration *must* have an initialization expression. */
1362 if (gfc_current_state () != COMP_DERIVED)
1363 t = add_init_expr_to_sym (name, &initializer, &var_locus);
1364 else
1366 if (current_ts.type == BT_DERIVED
1367 && !current_attr.pointer
1368 && !initializer)
1369 initializer = gfc_default_initializer (&current_ts);
1370 t = build_struct (name, cl, &initializer, &as);
1373 m = (t == SUCCESS) ? MATCH_YES : MATCH_ERROR;
1375 cleanup:
1376 /* Free stuff up and return. */
1377 gfc_free_expr (initializer);
1378 gfc_free_array_spec (as);
1380 return m;
1384 /* Match an extended-f77 kind specification. */
1386 match
1387 gfc_match_old_kind_spec (gfc_typespec * ts)
1389 match m;
1390 int original_kind;
1392 if (gfc_match_char ('*') != MATCH_YES)
1393 return MATCH_NO;
1395 m = gfc_match_small_literal_int (&ts->kind, NULL);
1396 if (m != MATCH_YES)
1397 return MATCH_ERROR;
1399 original_kind = ts->kind;
1401 /* Massage the kind numbers for complex types. */
1402 if (ts->type == BT_COMPLEX)
1404 if (ts->kind % 2)
1406 gfc_error ("Old-style type declaration %s*%d not supported at %C",
1407 gfc_basic_typename (ts->type), original_kind);
1408 return MATCH_ERROR;
1410 ts->kind /= 2;
1413 if (gfc_validate_kind (ts->type, ts->kind, true) < 0)
1415 gfc_error ("Old-style type declaration %s*%d not supported at %C",
1416 gfc_basic_typename (ts->type), original_kind);
1417 return MATCH_ERROR;
1420 if (gfc_notify_std (GFC_STD_GNU, "Nonstandard type declaration %s*%d at %C",
1421 gfc_basic_typename (ts->type), original_kind) == FAILURE)
1422 return MATCH_ERROR;
1424 return MATCH_YES;
1428 /* Match a kind specification. Since kinds are generally optional, we
1429 usually return MATCH_NO if something goes wrong. If a "kind="
1430 string is found, then we know we have an error. */
1432 match
1433 gfc_match_kind_spec (gfc_typespec * ts)
1435 locus where;
1436 gfc_expr *e;
1437 match m, n;
1438 const char *msg;
1440 m = MATCH_NO;
1441 e = NULL;
1443 where = gfc_current_locus;
1445 if (gfc_match_char ('(') == MATCH_NO)
1446 return MATCH_NO;
1448 /* Also gobbles optional text. */
1449 if (gfc_match (" kind = ") == MATCH_YES)
1450 m = MATCH_ERROR;
1452 n = gfc_match_init_expr (&e);
1453 if (n == MATCH_NO)
1454 gfc_error ("Expected initialization expression at %C");
1455 if (n != MATCH_YES)
1456 return MATCH_ERROR;
1458 if (e->rank != 0)
1460 gfc_error ("Expected scalar initialization expression at %C");
1461 m = MATCH_ERROR;
1462 goto no_match;
1465 msg = gfc_extract_int (e, &ts->kind);
1466 if (msg != NULL)
1468 gfc_error (msg);
1469 m = MATCH_ERROR;
1470 goto no_match;
1473 gfc_free_expr (e);
1474 e = NULL;
1476 if (gfc_validate_kind (ts->type, ts->kind, true) < 0)
1478 gfc_error ("Kind %d not supported for type %s at %C", ts->kind,
1479 gfc_basic_typename (ts->type));
1481 m = MATCH_ERROR;
1482 goto no_match;
1485 if (gfc_match_char (')') != MATCH_YES)
1487 gfc_error ("Missing right parenthesis at %C");
1488 goto no_match;
1491 return MATCH_YES;
1493 no_match:
1494 gfc_free_expr (e);
1495 gfc_current_locus = where;
1496 return m;
1500 /* Match the various kind/length specifications in a CHARACTER
1501 declaration. We don't return MATCH_NO. */
1503 static match
1504 match_char_spec (gfc_typespec * ts)
1506 int i, kind, seen_length;
1507 gfc_charlen *cl;
1508 gfc_expr *len;
1509 match m;
1511 kind = gfc_default_character_kind;
1512 len = NULL;
1513 seen_length = 0;
1515 /* Try the old-style specification first. */
1516 old_char_selector = 0;
1518 m = match_char_length (&len);
1519 if (m != MATCH_NO)
1521 if (m == MATCH_YES)
1522 old_char_selector = 1;
1523 seen_length = 1;
1524 goto done;
1527 m = gfc_match_char ('(');
1528 if (m != MATCH_YES)
1530 m = MATCH_YES; /* character without length is a single char */
1531 goto done;
1534 /* Try the weird case: ( KIND = <int> [ , LEN = <len-param> ] ) */
1535 if (gfc_match (" kind =") == MATCH_YES)
1537 m = gfc_match_small_int (&kind);
1538 if (m == MATCH_ERROR)
1539 goto done;
1540 if (m == MATCH_NO)
1541 goto syntax;
1543 if (gfc_match (" , len =") == MATCH_NO)
1544 goto rparen;
1546 m = char_len_param_value (&len);
1547 if (m == MATCH_NO)
1548 goto syntax;
1549 if (m == MATCH_ERROR)
1550 goto done;
1551 seen_length = 1;
1553 goto rparen;
1556 /* Try to match ( LEN = <len-param> ) or ( LEN = <len-param>, KIND = <int> ) */
1557 if (gfc_match (" len =") == MATCH_YES)
1559 m = char_len_param_value (&len);
1560 if (m == MATCH_NO)
1561 goto syntax;
1562 if (m == MATCH_ERROR)
1563 goto done;
1564 seen_length = 1;
1566 if (gfc_match_char (')') == MATCH_YES)
1567 goto done;
1569 if (gfc_match (" , kind =") != MATCH_YES)
1570 goto syntax;
1572 gfc_match_small_int (&kind);
1574 if (gfc_validate_kind (BT_CHARACTER, kind, true) < 0)
1576 gfc_error ("Kind %d is not a CHARACTER kind at %C", kind);
1577 return MATCH_YES;
1580 goto rparen;
1583 /* Try to match ( <len-param> ) or ( <len-param> , [ KIND = ] <int> ) */
1584 m = char_len_param_value (&len);
1585 if (m == MATCH_NO)
1586 goto syntax;
1587 if (m == MATCH_ERROR)
1588 goto done;
1589 seen_length = 1;
1591 m = gfc_match_char (')');
1592 if (m == MATCH_YES)
1593 goto done;
1595 if (gfc_match_char (',') != MATCH_YES)
1596 goto syntax;
1598 gfc_match (" kind ="); /* Gobble optional text */
1600 m = gfc_match_small_int (&kind);
1601 if (m == MATCH_ERROR)
1602 goto done;
1603 if (m == MATCH_NO)
1604 goto syntax;
1606 rparen:
1607 /* Require a right-paren at this point. */
1608 m = gfc_match_char (')');
1609 if (m == MATCH_YES)
1610 goto done;
1612 syntax:
1613 gfc_error ("Syntax error in CHARACTER declaration at %C");
1614 m = MATCH_ERROR;
1616 done:
1617 if (m == MATCH_YES && gfc_validate_kind (BT_CHARACTER, kind, true) < 0)
1619 gfc_error ("Kind %d is not a CHARACTER kind at %C", kind);
1620 m = MATCH_ERROR;
1623 if (m != MATCH_YES)
1625 gfc_free_expr (len);
1626 return m;
1629 /* Do some final massaging of the length values. */
1630 cl = gfc_get_charlen ();
1631 cl->next = gfc_current_ns->cl_list;
1632 gfc_current_ns->cl_list = cl;
1634 if (seen_length == 0)
1635 cl->length = gfc_int_expr (1);
1636 else
1638 if (len == NULL || gfc_extract_int (len, &i) != NULL || i >= 0)
1639 cl->length = len;
1640 else
1642 gfc_free_expr (len);
1643 cl->length = gfc_int_expr (0);
1647 ts->cl = cl;
1648 ts->kind = kind;
1650 return MATCH_YES;
1654 /* Matches a type specification. If successful, sets the ts structure
1655 to the matched specification. This is necessary for FUNCTION and
1656 IMPLICIT statements.
1658 If implicit_flag is nonzero, then we don't check for the optional
1659 kind specification. Not doing so is needed for matching an IMPLICIT
1660 statement correctly. */
1662 static match
1663 match_type_spec (gfc_typespec * ts, int implicit_flag)
1665 char name[GFC_MAX_SYMBOL_LEN + 1];
1666 gfc_symbol *sym;
1667 match m;
1668 int c;
1670 gfc_clear_ts (ts);
1672 if (gfc_match (" byte") == MATCH_YES)
1674 if (gfc_notify_std(GFC_STD_GNU, "Extension: BYTE type at %C")
1675 == FAILURE)
1676 return MATCH_ERROR;
1678 if (gfc_validate_kind (BT_INTEGER, 1, true) < 0)
1680 gfc_error ("BYTE type used at %C "
1681 "is not available on the target machine");
1682 return MATCH_ERROR;
1685 ts->type = BT_INTEGER;
1686 ts->kind = 1;
1687 return MATCH_YES;
1690 if (gfc_match (" integer") == MATCH_YES)
1692 ts->type = BT_INTEGER;
1693 ts->kind = gfc_default_integer_kind;
1694 goto get_kind;
1697 if (gfc_match (" character") == MATCH_YES)
1699 ts->type = BT_CHARACTER;
1700 if (implicit_flag == 0)
1701 return match_char_spec (ts);
1702 else
1703 return MATCH_YES;
1706 if (gfc_match (" real") == MATCH_YES)
1708 ts->type = BT_REAL;
1709 ts->kind = gfc_default_real_kind;
1710 goto get_kind;
1713 if (gfc_match (" double precision") == MATCH_YES)
1715 ts->type = BT_REAL;
1716 ts->kind = gfc_default_double_kind;
1717 return MATCH_YES;
1720 if (gfc_match (" complex") == MATCH_YES)
1722 ts->type = BT_COMPLEX;
1723 ts->kind = gfc_default_complex_kind;
1724 goto get_kind;
1727 if (gfc_match (" double complex") == MATCH_YES)
1729 if (gfc_notify_std (GFC_STD_GNU, "DOUBLE COMPLEX at %C does not "
1730 "conform to the Fortran 95 standard") == FAILURE)
1731 return MATCH_ERROR;
1733 ts->type = BT_COMPLEX;
1734 ts->kind = gfc_default_double_kind;
1735 return MATCH_YES;
1738 if (gfc_match (" logical") == MATCH_YES)
1740 ts->type = BT_LOGICAL;
1741 ts->kind = gfc_default_logical_kind;
1742 goto get_kind;
1745 m = gfc_match (" type ( %n )", name);
1746 if (m != MATCH_YES)
1747 return m;
1749 /* Search for the name but allow the components to be defined later. */
1750 if (gfc_get_ha_symbol (name, &sym))
1752 gfc_error ("Type name '%s' at %C is ambiguous", name);
1753 return MATCH_ERROR;
1756 if (sym->attr.flavor != FL_DERIVED
1757 && gfc_add_flavor (&sym->attr, FL_DERIVED, sym->name, NULL) == FAILURE)
1758 return MATCH_ERROR;
1760 ts->type = BT_DERIVED;
1761 ts->kind = 0;
1762 ts->derived = sym;
1764 return MATCH_YES;
1766 get_kind:
1767 /* For all types except double, derived and character, look for an
1768 optional kind specifier. MATCH_NO is actually OK at this point. */
1769 if (implicit_flag == 1)
1770 return MATCH_YES;
1772 if (gfc_current_form == FORM_FREE)
1774 c = gfc_peek_char();
1775 if (!gfc_is_whitespace(c) && c != '*' && c != '('
1776 && c != ':' && c != ',')
1777 return MATCH_NO;
1780 m = gfc_match_kind_spec (ts);
1781 if (m == MATCH_NO && ts->type != BT_CHARACTER)
1782 m = gfc_match_old_kind_spec (ts);
1784 if (m == MATCH_NO)
1785 m = MATCH_YES; /* No kind specifier found. */
1787 return m;
1791 /* Match an IMPLICIT NONE statement. Actually, this statement is
1792 already matched in parse.c, or we would not end up here in the
1793 first place. So the only thing we need to check, is if there is
1794 trailing garbage. If not, the match is successful. */
1796 match
1797 gfc_match_implicit_none (void)
1800 return (gfc_match_eos () == MATCH_YES) ? MATCH_YES : MATCH_NO;
1804 /* Match the letter range(s) of an IMPLICIT statement. */
1806 static match
1807 match_implicit_range (void)
1809 int c, c1, c2, inner;
1810 locus cur_loc;
1812 cur_loc = gfc_current_locus;
1814 gfc_gobble_whitespace ();
1815 c = gfc_next_char ();
1816 if (c != '(')
1818 gfc_error ("Missing character range in IMPLICIT at %C");
1819 goto bad;
1822 inner = 1;
1823 while (inner)
1825 gfc_gobble_whitespace ();
1826 c1 = gfc_next_char ();
1827 if (!ISALPHA (c1))
1828 goto bad;
1830 gfc_gobble_whitespace ();
1831 c = gfc_next_char ();
1833 switch (c)
1835 case ')':
1836 inner = 0; /* Fall through */
1838 case ',':
1839 c2 = c1;
1840 break;
1842 case '-':
1843 gfc_gobble_whitespace ();
1844 c2 = gfc_next_char ();
1845 if (!ISALPHA (c2))
1846 goto bad;
1848 gfc_gobble_whitespace ();
1849 c = gfc_next_char ();
1851 if ((c != ',') && (c != ')'))
1852 goto bad;
1853 if (c == ')')
1854 inner = 0;
1856 break;
1858 default:
1859 goto bad;
1862 if (c1 > c2)
1864 gfc_error ("Letters must be in alphabetic order in "
1865 "IMPLICIT statement at %C");
1866 goto bad;
1869 /* See if we can add the newly matched range to the pending
1870 implicits from this IMPLICIT statement. We do not check for
1871 conflicts with whatever earlier IMPLICIT statements may have
1872 set. This is done when we've successfully finished matching
1873 the current one. */
1874 if (gfc_add_new_implicit_range (c1, c2) != SUCCESS)
1875 goto bad;
1878 return MATCH_YES;
1880 bad:
1881 gfc_syntax_error (ST_IMPLICIT);
1883 gfc_current_locus = cur_loc;
1884 return MATCH_ERROR;
1888 /* Match an IMPLICIT statement, storing the types for
1889 gfc_set_implicit() if the statement is accepted by the parser.
1890 There is a strange looking, but legal syntactic construction
1891 possible. It looks like:
1893 IMPLICIT INTEGER (a-b) (c-d)
1895 This is legal if "a-b" is a constant expression that happens to
1896 equal one of the legal kinds for integers. The real problem
1897 happens with an implicit specification that looks like:
1899 IMPLICIT INTEGER (a-b)
1901 In this case, a typespec matcher that is "greedy" (as most of the
1902 matchers are) gobbles the character range as a kindspec, leaving
1903 nothing left. We therefore have to go a bit more slowly in the
1904 matching process by inhibiting the kindspec checking during
1905 typespec matching and checking for a kind later. */
1907 match
1908 gfc_match_implicit (void)
1910 gfc_typespec ts;
1911 locus cur_loc;
1912 int c;
1913 match m;
1915 /* We don't allow empty implicit statements. */
1916 if (gfc_match_eos () == MATCH_YES)
1918 gfc_error ("Empty IMPLICIT statement at %C");
1919 return MATCH_ERROR;
1924 /* First cleanup. */
1925 gfc_clear_new_implicit ();
1927 /* A basic type is mandatory here. */
1928 m = match_type_spec (&ts, 1);
1929 if (m == MATCH_ERROR)
1930 goto error;
1931 if (m == MATCH_NO)
1932 goto syntax;
1934 cur_loc = gfc_current_locus;
1935 m = match_implicit_range ();
1937 if (m == MATCH_YES)
1939 /* We may have <TYPE> (<RANGE>). */
1940 gfc_gobble_whitespace ();
1941 c = gfc_next_char ();
1942 if ((c == '\n') || (c == ','))
1944 /* Check for CHARACTER with no length parameter. */
1945 if (ts.type == BT_CHARACTER && !ts.cl)
1947 ts.kind = gfc_default_character_kind;
1948 ts.cl = gfc_get_charlen ();
1949 ts.cl->next = gfc_current_ns->cl_list;
1950 gfc_current_ns->cl_list = ts.cl;
1951 ts.cl->length = gfc_int_expr (1);
1954 /* Record the Successful match. */
1955 if (gfc_merge_new_implicit (&ts) != SUCCESS)
1956 return MATCH_ERROR;
1957 continue;
1960 gfc_current_locus = cur_loc;
1963 /* Discard the (incorrectly) matched range. */
1964 gfc_clear_new_implicit ();
1966 /* Last chance -- check <TYPE> <SELECTOR> (<RANGE>). */
1967 if (ts.type == BT_CHARACTER)
1968 m = match_char_spec (&ts);
1969 else
1971 m = gfc_match_kind_spec (&ts);
1972 if (m == MATCH_NO)
1974 m = gfc_match_old_kind_spec (&ts);
1975 if (m == MATCH_ERROR)
1976 goto error;
1977 if (m == MATCH_NO)
1978 goto syntax;
1981 if (m == MATCH_ERROR)
1982 goto error;
1984 m = match_implicit_range ();
1985 if (m == MATCH_ERROR)
1986 goto error;
1987 if (m == MATCH_NO)
1988 goto syntax;
1990 gfc_gobble_whitespace ();
1991 c = gfc_next_char ();
1992 if ((c != '\n') && (c != ','))
1993 goto syntax;
1995 if (gfc_merge_new_implicit (&ts) != SUCCESS)
1996 return MATCH_ERROR;
1998 while (c == ',');
2000 return MATCH_YES;
2002 syntax:
2003 gfc_syntax_error (ST_IMPLICIT);
2005 error:
2006 return MATCH_ERROR;
2009 match
2010 gfc_match_import (void)
2012 char name[GFC_MAX_SYMBOL_LEN + 1];
2013 match m;
2014 gfc_symbol *sym;
2015 gfc_symtree *st;
2017 if (gfc_current_ns->proc_name == NULL ||
2018 gfc_current_ns->proc_name->attr.if_source != IFSRC_IFBODY)
2020 gfc_error ("IMPORT statement at %C only permitted in "
2021 "an INTERFACE body");
2022 return MATCH_ERROR;
2025 if (gfc_notify_std (GFC_STD_F2003,
2026 "Fortran 2003: IMPORT statement at %C")
2027 == FAILURE)
2028 return MATCH_ERROR;
2030 if (gfc_match_eos () == MATCH_YES)
2032 /* All host variables should be imported. */
2033 gfc_current_ns->has_import_set = 1;
2034 return MATCH_YES;
2037 if (gfc_match (" ::") == MATCH_YES)
2039 if (gfc_match_eos () == MATCH_YES)
2041 gfc_error ("Expecting list of named entities at %C");
2042 return MATCH_ERROR;
2046 for(;;)
2048 m = gfc_match (" %n", name);
2049 switch (m)
2051 case MATCH_YES:
2052 if (gfc_find_symbol (name, gfc_current_ns->parent, 1, &sym))
2054 gfc_error ("Type name '%s' at %C is ambiguous", name);
2055 return MATCH_ERROR;
2058 if (sym == NULL)
2060 gfc_error ("Cannot IMPORT '%s' from host scoping unit "
2061 "at %C - does not exist.", name);
2062 return MATCH_ERROR;
2065 if (gfc_find_symtree (gfc_current_ns->sym_root,name))
2067 gfc_warning ("'%s' is already IMPORTed from host scoping unit "
2068 "at %C.", name);
2069 goto next_item;
2072 st = gfc_new_symtree (&gfc_current_ns->sym_root, name);
2073 st->n.sym = sym;
2074 sym->refs++;
2075 sym->ns = gfc_current_ns;
2077 goto next_item;
2079 case MATCH_NO:
2080 break;
2082 case MATCH_ERROR:
2083 return MATCH_ERROR;
2086 next_item:
2087 if (gfc_match_eos () == MATCH_YES)
2088 break;
2089 if (gfc_match_char (',') != MATCH_YES)
2090 goto syntax;
2093 return MATCH_YES;
2095 syntax:
2096 gfc_error ("Syntax error in IMPORT statement at %C");
2097 return MATCH_ERROR;
2100 /* Matches an attribute specification including array specs. If
2101 successful, leaves the variables current_attr and current_as
2102 holding the specification. Also sets the colon_seen variable for
2103 later use by matchers associated with initializations.
2105 This subroutine is a little tricky in the sense that we don't know
2106 if we really have an attr-spec until we hit the double colon.
2107 Until that time, we can only return MATCH_NO. This forces us to
2108 check for duplicate specification at this level. */
2110 static match
2111 match_attr_spec (void)
2114 /* Modifiers that can exist in a type statement. */
2115 typedef enum
2116 { GFC_DECL_BEGIN = 0,
2117 DECL_ALLOCATABLE = GFC_DECL_BEGIN, DECL_DIMENSION, DECL_EXTERNAL,
2118 DECL_IN, DECL_OUT, DECL_INOUT, DECL_INTRINSIC, DECL_OPTIONAL,
2119 DECL_PARAMETER, DECL_POINTER, DECL_PRIVATE, DECL_PUBLIC, DECL_SAVE,
2120 DECL_TARGET, DECL_VOLATILE, DECL_COLON, DECL_NONE,
2121 GFC_DECL_END /* Sentinel */
2123 decl_types;
2125 /* GFC_DECL_END is the sentinel, index starts at 0. */
2126 #define NUM_DECL GFC_DECL_END
2128 static mstring decls[] = {
2129 minit (", allocatable", DECL_ALLOCATABLE),
2130 minit (", dimension", DECL_DIMENSION),
2131 minit (", external", DECL_EXTERNAL),
2132 minit (", intent ( in )", DECL_IN),
2133 minit (", intent ( out )", DECL_OUT),
2134 minit (", intent ( in out )", DECL_INOUT),
2135 minit (", intrinsic", DECL_INTRINSIC),
2136 minit (", optional", DECL_OPTIONAL),
2137 minit (", parameter", DECL_PARAMETER),
2138 minit (", pointer", DECL_POINTER),
2139 minit (", private", DECL_PRIVATE),
2140 minit (", public", DECL_PUBLIC),
2141 minit (", save", DECL_SAVE),
2142 minit (", target", DECL_TARGET),
2143 minit (", volatile", DECL_VOLATILE),
2144 minit ("::", DECL_COLON),
2145 minit (NULL, DECL_NONE)
2148 locus start, seen_at[NUM_DECL];
2149 int seen[NUM_DECL];
2150 decl_types d;
2151 const char *attr;
2152 match m;
2153 try t;
2155 gfc_clear_attr (&current_attr);
2156 start = gfc_current_locus;
2158 current_as = NULL;
2159 colon_seen = 0;
2161 /* See if we get all of the keywords up to the final double colon. */
2162 for (d = GFC_DECL_BEGIN; d != GFC_DECL_END; d++)
2163 seen[d] = 0;
2165 for (;;)
2167 d = (decl_types) gfc_match_strings (decls);
2168 if (d == DECL_NONE || d == DECL_COLON)
2169 break;
2171 if (gfc_current_state () == COMP_ENUM)
2173 gfc_error ("Enumerator cannot have attributes %C");
2174 return MATCH_ERROR;
2177 seen[d]++;
2178 seen_at[d] = gfc_current_locus;
2180 if (d == DECL_DIMENSION)
2182 m = gfc_match_array_spec (&current_as);
2184 if (m == MATCH_NO)
2186 gfc_error ("Missing dimension specification at %C");
2187 m = MATCH_ERROR;
2190 if (m == MATCH_ERROR)
2191 goto cleanup;
2195 /* If we are parsing an enumeration and have ensured that no other
2196 attributes are present we can now set the parameter attribute. */
2197 if (gfc_current_state () == COMP_ENUM)
2199 t = gfc_add_flavor (&current_attr, FL_PARAMETER, NULL, NULL);
2200 if (t == FAILURE)
2202 m = MATCH_ERROR;
2203 goto cleanup;
2207 /* No double colon, so assume that we've been looking at something
2208 else the whole time. */
2209 if (d == DECL_NONE)
2211 m = MATCH_NO;
2212 goto cleanup;
2215 /* Since we've seen a double colon, we have to be looking at an
2216 attr-spec. This means that we can now issue errors. */
2217 for (d = GFC_DECL_BEGIN; d != GFC_DECL_END; d++)
2218 if (seen[d] > 1)
2220 switch (d)
2222 case DECL_ALLOCATABLE:
2223 attr = "ALLOCATABLE";
2224 break;
2225 case DECL_DIMENSION:
2226 attr = "DIMENSION";
2227 break;
2228 case DECL_EXTERNAL:
2229 attr = "EXTERNAL";
2230 break;
2231 case DECL_IN:
2232 attr = "INTENT (IN)";
2233 break;
2234 case DECL_OUT:
2235 attr = "INTENT (OUT)";
2236 break;
2237 case DECL_INOUT:
2238 attr = "INTENT (IN OUT)";
2239 break;
2240 case DECL_INTRINSIC:
2241 attr = "INTRINSIC";
2242 break;
2243 case DECL_OPTIONAL:
2244 attr = "OPTIONAL";
2245 break;
2246 case DECL_PARAMETER:
2247 attr = "PARAMETER";
2248 break;
2249 case DECL_POINTER:
2250 attr = "POINTER";
2251 break;
2252 case DECL_PRIVATE:
2253 attr = "PRIVATE";
2254 break;
2255 case DECL_PUBLIC:
2256 attr = "PUBLIC";
2257 break;
2258 case DECL_SAVE:
2259 attr = "SAVE";
2260 break;
2261 case DECL_TARGET:
2262 attr = "TARGET";
2263 break;
2264 case DECL_VOLATILE:
2265 attr = "VOLATILE";
2266 break;
2267 default:
2268 attr = NULL; /* This shouldn't happen */
2271 gfc_error ("Duplicate %s attribute at %L", attr, &seen_at[d]);
2272 m = MATCH_ERROR;
2273 goto cleanup;
2276 /* Now that we've dealt with duplicate attributes, add the attributes
2277 to the current attribute. */
2278 for (d = GFC_DECL_BEGIN; d != GFC_DECL_END; d++)
2280 if (seen[d] == 0)
2281 continue;
2283 if (gfc_current_state () == COMP_DERIVED
2284 && d != DECL_DIMENSION && d != DECL_POINTER
2285 && d != DECL_COLON && d != DECL_NONE)
2287 if (d == DECL_ALLOCATABLE)
2289 if (gfc_notify_std (GFC_STD_F2003,
2290 "Fortran 2003: ALLOCATABLE "
2291 "attribute at %C in a TYPE "
2292 "definition") == FAILURE)
2294 m = MATCH_ERROR;
2295 goto cleanup;
2298 else
2300 gfc_error ("Attribute at %L is not allowed in a TYPE definition",
2301 &seen_at[d]);
2302 m = MATCH_ERROR;
2303 goto cleanup;
2307 if ((d == DECL_PRIVATE || d == DECL_PUBLIC)
2308 && gfc_current_state () != COMP_MODULE)
2310 if (d == DECL_PRIVATE)
2311 attr = "PRIVATE";
2312 else
2313 attr = "PUBLIC";
2315 gfc_error ("%s attribute at %L is not allowed outside of a MODULE",
2316 attr, &seen_at[d]);
2317 m = MATCH_ERROR;
2318 goto cleanup;
2321 switch (d)
2323 case DECL_ALLOCATABLE:
2324 t = gfc_add_allocatable (&current_attr, &seen_at[d]);
2325 break;
2327 case DECL_DIMENSION:
2328 t = gfc_add_dimension (&current_attr, NULL, &seen_at[d]);
2329 break;
2331 case DECL_EXTERNAL:
2332 t = gfc_add_external (&current_attr, &seen_at[d]);
2333 break;
2335 case DECL_IN:
2336 t = gfc_add_intent (&current_attr, INTENT_IN, &seen_at[d]);
2337 break;
2339 case DECL_OUT:
2340 t = gfc_add_intent (&current_attr, INTENT_OUT, &seen_at[d]);
2341 break;
2343 case DECL_INOUT:
2344 t = gfc_add_intent (&current_attr, INTENT_INOUT, &seen_at[d]);
2345 break;
2347 case DECL_INTRINSIC:
2348 t = gfc_add_intrinsic (&current_attr, &seen_at[d]);
2349 break;
2351 case DECL_OPTIONAL:
2352 t = gfc_add_optional (&current_attr, &seen_at[d]);
2353 break;
2355 case DECL_PARAMETER:
2356 t = gfc_add_flavor (&current_attr, FL_PARAMETER, NULL, &seen_at[d]);
2357 break;
2359 case DECL_POINTER:
2360 t = gfc_add_pointer (&current_attr, &seen_at[d]);
2361 break;
2363 case DECL_PRIVATE:
2364 t = gfc_add_access (&current_attr, ACCESS_PRIVATE, NULL,
2365 &seen_at[d]);
2366 break;
2368 case DECL_PUBLIC:
2369 t = gfc_add_access (&current_attr, ACCESS_PUBLIC, NULL,
2370 &seen_at[d]);
2371 break;
2373 case DECL_SAVE:
2374 t = gfc_add_save (&current_attr, NULL, &seen_at[d]);
2375 break;
2377 case DECL_TARGET:
2378 t = gfc_add_target (&current_attr, &seen_at[d]);
2379 break;
2381 case DECL_VOLATILE:
2382 if (gfc_notify_std (GFC_STD_F2003,
2383 "Fortran 2003: VOLATILE attribute at %C")
2384 == FAILURE)
2385 t = FAILURE;
2386 else
2387 t = gfc_add_volatile (&current_attr, NULL, &seen_at[d]);
2388 break;
2390 default:
2391 gfc_internal_error ("match_attr_spec(): Bad attribute");
2394 if (t == FAILURE)
2396 m = MATCH_ERROR;
2397 goto cleanup;
2401 colon_seen = 1;
2402 return MATCH_YES;
2404 cleanup:
2405 gfc_current_locus = start;
2406 gfc_free_array_spec (current_as);
2407 current_as = NULL;
2408 return m;
2412 /* Match a data declaration statement. */
2414 match
2415 gfc_match_data_decl (void)
2417 gfc_symbol *sym;
2418 match m;
2419 int elem;
2421 m = match_type_spec (&current_ts, 0);
2422 if (m != MATCH_YES)
2423 return m;
2425 if (current_ts.type == BT_DERIVED && gfc_current_state () != COMP_DERIVED)
2427 sym = gfc_use_derived (current_ts.derived);
2429 if (sym == NULL)
2431 m = MATCH_ERROR;
2432 goto cleanup;
2435 current_ts.derived = sym;
2438 m = match_attr_spec ();
2439 if (m == MATCH_ERROR)
2441 m = MATCH_NO;
2442 goto cleanup;
2445 if (current_ts.type == BT_DERIVED && current_ts.derived->components == NULL)
2448 if (current_attr.pointer && gfc_current_state () == COMP_DERIVED)
2449 goto ok;
2451 gfc_find_symbol (current_ts.derived->name,
2452 current_ts.derived->ns->parent, 1, &sym);
2454 /* Any symbol that we find had better be a type definition
2455 which has its components defined. */
2456 if (sym != NULL && sym->attr.flavor == FL_DERIVED
2457 && current_ts.derived->components != NULL)
2458 goto ok;
2460 /* Now we have an error, which we signal, and then fix up
2461 because the knock-on is plain and simple confusing. */
2462 gfc_error_now ("Derived type at %C has not been previously defined "
2463 "and so cannot appear in a derived type definition");
2464 current_attr.pointer = 1;
2465 goto ok;
2469 /* If we have an old-style character declaration, and no new-style
2470 attribute specifications, then there a comma is optional between
2471 the type specification and the variable list. */
2472 if (m == MATCH_NO && current_ts.type == BT_CHARACTER && old_char_selector)
2473 gfc_match_char (',');
2475 /* Give the types/attributes to symbols that follow. Give the element
2476 a number so that repeat character length expressions can be copied. */
2477 elem = 1;
2478 for (;;)
2480 m = variable_decl (elem++);
2481 if (m == MATCH_ERROR)
2482 goto cleanup;
2483 if (m == MATCH_NO)
2484 break;
2486 if (gfc_match_eos () == MATCH_YES)
2487 goto cleanup;
2488 if (gfc_match_char (',') != MATCH_YES)
2489 break;
2492 if (gfc_error_flag_test () == 0)
2493 gfc_error ("Syntax error in data declaration at %C");
2494 m = MATCH_ERROR;
2496 gfc_free_data_all (gfc_current_ns);
2498 cleanup:
2499 gfc_free_array_spec (current_as);
2500 current_as = NULL;
2501 return m;
2505 /* Match a prefix associated with a function or subroutine
2506 declaration. If the typespec pointer is nonnull, then a typespec
2507 can be matched. Note that if nothing matches, MATCH_YES is
2508 returned (the null string was matched). */
2510 static match
2511 match_prefix (gfc_typespec * ts)
2513 int seen_type;
2515 gfc_clear_attr (&current_attr);
2516 seen_type = 0;
2518 loop:
2519 if (!seen_type && ts != NULL
2520 && match_type_spec (ts, 0) == MATCH_YES
2521 && gfc_match_space () == MATCH_YES)
2524 seen_type = 1;
2525 goto loop;
2528 if (gfc_match ("elemental% ") == MATCH_YES)
2530 if (gfc_add_elemental (&current_attr, NULL) == FAILURE)
2531 return MATCH_ERROR;
2533 goto loop;
2536 if (gfc_match ("pure% ") == MATCH_YES)
2538 if (gfc_add_pure (&current_attr, NULL) == FAILURE)
2539 return MATCH_ERROR;
2541 goto loop;
2544 if (gfc_match ("recursive% ") == MATCH_YES)
2546 if (gfc_add_recursive (&current_attr, NULL) == FAILURE)
2547 return MATCH_ERROR;
2549 goto loop;
2552 /* At this point, the next item is not a prefix. */
2553 return MATCH_YES;
2557 /* Copy attributes matched by match_prefix() to attributes on a symbol. */
2559 static try
2560 copy_prefix (symbol_attribute * dest, locus * where)
2563 if (current_attr.pure && gfc_add_pure (dest, where) == FAILURE)
2564 return FAILURE;
2566 if (current_attr.elemental && gfc_add_elemental (dest, where) == FAILURE)
2567 return FAILURE;
2569 if (current_attr.recursive && gfc_add_recursive (dest, where) == FAILURE)
2570 return FAILURE;
2572 return SUCCESS;
2576 /* Match a formal argument list. */
2578 match
2579 gfc_match_formal_arglist (gfc_symbol * progname, int st_flag, int null_flag)
2581 gfc_formal_arglist *head, *tail, *p, *q;
2582 char name[GFC_MAX_SYMBOL_LEN + 1];
2583 gfc_symbol *sym;
2584 match m;
2586 head = tail = NULL;
2588 if (gfc_match_char ('(') != MATCH_YES)
2590 if (null_flag)
2591 goto ok;
2592 return MATCH_NO;
2595 if (gfc_match_char (')') == MATCH_YES)
2596 goto ok;
2598 for (;;)
2600 if (gfc_match_char ('*') == MATCH_YES)
2601 sym = NULL;
2602 else
2604 m = gfc_match_name (name);
2605 if (m != MATCH_YES)
2606 goto cleanup;
2608 if (gfc_get_symbol (name, NULL, &sym))
2609 goto cleanup;
2612 p = gfc_get_formal_arglist ();
2614 if (head == NULL)
2615 head = tail = p;
2616 else
2618 tail->next = p;
2619 tail = p;
2622 tail->sym = sym;
2624 /* We don't add the VARIABLE flavor because the name could be a
2625 dummy procedure. We don't apply these attributes to formal
2626 arguments of statement functions. */
2627 if (sym != NULL && !st_flag
2628 && (gfc_add_dummy (&sym->attr, sym->name, NULL) == FAILURE
2629 || gfc_missing_attr (&sym->attr, NULL) == FAILURE))
2631 m = MATCH_ERROR;
2632 goto cleanup;
2635 /* The name of a program unit can be in a different namespace,
2636 so check for it explicitly. After the statement is accepted,
2637 the name is checked for especially in gfc_get_symbol(). */
2638 if (gfc_new_block != NULL && sym != NULL
2639 && strcmp (sym->name, gfc_new_block->name) == 0)
2641 gfc_error ("Name '%s' at %C is the name of the procedure",
2642 sym->name);
2643 m = MATCH_ERROR;
2644 goto cleanup;
2647 if (gfc_match_char (')') == MATCH_YES)
2648 goto ok;
2650 m = gfc_match_char (',');
2651 if (m != MATCH_YES)
2653 gfc_error ("Unexpected junk in formal argument list at %C");
2654 goto cleanup;
2659 /* Check for duplicate symbols in the formal argument list. */
2660 if (head != NULL)
2662 for (p = head; p->next; p = p->next)
2664 if (p->sym == NULL)
2665 continue;
2667 for (q = p->next; q; q = q->next)
2668 if (p->sym == q->sym)
2670 gfc_error
2671 ("Duplicate symbol '%s' in formal argument list at %C",
2672 p->sym->name);
2674 m = MATCH_ERROR;
2675 goto cleanup;
2680 if (gfc_add_explicit_interface (progname, IFSRC_DECL, head, NULL) ==
2681 FAILURE)
2683 m = MATCH_ERROR;
2684 goto cleanup;
2687 return MATCH_YES;
2689 cleanup:
2690 gfc_free_formal_arglist (head);
2691 return m;
2695 /* Match a RESULT specification following a function declaration or
2696 ENTRY statement. Also matches the end-of-statement. */
2698 static match
2699 match_result (gfc_symbol * function, gfc_symbol ** result)
2701 char name[GFC_MAX_SYMBOL_LEN + 1];
2702 gfc_symbol *r;
2703 match m;
2705 if (gfc_match (" result (") != MATCH_YES)
2706 return MATCH_NO;
2708 m = gfc_match_name (name);
2709 if (m != MATCH_YES)
2710 return m;
2712 if (gfc_match (" )%t") != MATCH_YES)
2714 gfc_error ("Unexpected junk following RESULT variable at %C");
2715 return MATCH_ERROR;
2718 if (strcmp (function->name, name) == 0)
2720 gfc_error
2721 ("RESULT variable at %C must be different than function name");
2722 return MATCH_ERROR;
2725 if (gfc_get_symbol (name, NULL, &r))
2726 return MATCH_ERROR;
2728 if (gfc_add_flavor (&r->attr, FL_VARIABLE, r->name, NULL) == FAILURE
2729 || gfc_add_result (&r->attr, r->name, NULL) == FAILURE)
2730 return MATCH_ERROR;
2732 *result = r;
2734 return MATCH_YES;
2738 /* Match a function declaration. */
2740 match
2741 gfc_match_function_decl (void)
2743 char name[GFC_MAX_SYMBOL_LEN + 1];
2744 gfc_symbol *sym, *result;
2745 locus old_loc;
2746 match m;
2748 if (gfc_current_state () != COMP_NONE
2749 && gfc_current_state () != COMP_INTERFACE
2750 && gfc_current_state () != COMP_CONTAINS)
2751 return MATCH_NO;
2753 gfc_clear_ts (&current_ts);
2755 old_loc = gfc_current_locus;
2757 m = match_prefix (&current_ts);
2758 if (m != MATCH_YES)
2760 gfc_current_locus = old_loc;
2761 return m;
2764 if (gfc_match ("function% %n", name) != MATCH_YES)
2766 gfc_current_locus = old_loc;
2767 return MATCH_NO;
2770 if (get_proc_name (name, &sym, false))
2771 return MATCH_ERROR;
2772 gfc_new_block = sym;
2774 m = gfc_match_formal_arglist (sym, 0, 0);
2775 if (m == MATCH_NO)
2777 gfc_error ("Expected formal argument list in function "
2778 "definition at %C");
2779 m = MATCH_ERROR;
2780 goto cleanup;
2782 else if (m == MATCH_ERROR)
2783 goto cleanup;
2785 result = NULL;
2787 if (gfc_match_eos () != MATCH_YES)
2789 /* See if a result variable is present. */
2790 m = match_result (sym, &result);
2791 if (m == MATCH_NO)
2792 gfc_error ("Unexpected junk after function declaration at %C");
2794 if (m != MATCH_YES)
2796 m = MATCH_ERROR;
2797 goto cleanup;
2801 /* Make changes to the symbol. */
2802 m = MATCH_ERROR;
2804 if (gfc_add_function (&sym->attr, sym->name, NULL) == FAILURE)
2805 goto cleanup;
2807 if (gfc_missing_attr (&sym->attr, NULL) == FAILURE
2808 || copy_prefix (&sym->attr, &sym->declared_at) == FAILURE)
2809 goto cleanup;
2811 if (current_ts.type != BT_UNKNOWN
2812 && sym->ts.type != BT_UNKNOWN
2813 && !sym->attr.implicit_type)
2815 gfc_error ("Function '%s' at %C already has a type of %s", name,
2816 gfc_basic_typename (sym->ts.type));
2817 goto cleanup;
2820 if (result == NULL)
2822 sym->ts = current_ts;
2823 sym->result = sym;
2825 else
2827 result->ts = current_ts;
2828 sym->result = result;
2831 return MATCH_YES;
2833 cleanup:
2834 gfc_current_locus = old_loc;
2835 return m;
2838 /* This is mostly a copy of parse.c(add_global_procedure) but modified to pass the
2839 name of the entry, rather than the gfc_current_block name, and to return false
2840 upon finding an existing global entry. */
2842 static bool
2843 add_global_entry (const char * name, int sub)
2845 gfc_gsymbol *s;
2847 s = gfc_get_gsymbol(name);
2849 if (s->defined
2850 || (s->type != GSYM_UNKNOWN && s->type != (sub ? GSYM_SUBROUTINE : GSYM_FUNCTION)))
2851 global_used(s, NULL);
2852 else
2854 s->type = sub ? GSYM_SUBROUTINE : GSYM_FUNCTION;
2855 s->where = gfc_current_locus;
2856 s->defined = 1;
2857 return true;
2859 return false;
2862 /* Match an ENTRY statement. */
2864 match
2865 gfc_match_entry (void)
2867 gfc_symbol *proc;
2868 gfc_symbol *result;
2869 gfc_symbol *entry;
2870 char name[GFC_MAX_SYMBOL_LEN + 1];
2871 gfc_compile_state state;
2872 match m;
2873 gfc_entry_list *el;
2874 locus old_loc;
2875 bool module_procedure;
2877 m = gfc_match_name (name);
2878 if (m != MATCH_YES)
2879 return m;
2881 state = gfc_current_state ();
2882 if (state != COMP_SUBROUTINE && state != COMP_FUNCTION)
2884 switch (state)
2886 case COMP_PROGRAM:
2887 gfc_error ("ENTRY statement at %C cannot appear within a PROGRAM");
2888 break;
2889 case COMP_MODULE:
2890 gfc_error ("ENTRY statement at %C cannot appear within a MODULE");
2891 break;
2892 case COMP_BLOCK_DATA:
2893 gfc_error
2894 ("ENTRY statement at %C cannot appear within a BLOCK DATA");
2895 break;
2896 case COMP_INTERFACE:
2897 gfc_error
2898 ("ENTRY statement at %C cannot appear within an INTERFACE");
2899 break;
2900 case COMP_DERIVED:
2901 gfc_error
2902 ("ENTRY statement at %C cannot appear "
2903 "within a DERIVED TYPE block");
2904 break;
2905 case COMP_IF:
2906 gfc_error
2907 ("ENTRY statement at %C cannot appear within an IF-THEN block");
2908 break;
2909 case COMP_DO:
2910 gfc_error
2911 ("ENTRY statement at %C cannot appear within a DO block");
2912 break;
2913 case COMP_SELECT:
2914 gfc_error
2915 ("ENTRY statement at %C cannot appear within a SELECT block");
2916 break;
2917 case COMP_FORALL:
2918 gfc_error
2919 ("ENTRY statement at %C cannot appear within a FORALL block");
2920 break;
2921 case COMP_WHERE:
2922 gfc_error
2923 ("ENTRY statement at %C cannot appear within a WHERE block");
2924 break;
2925 case COMP_CONTAINS:
2926 gfc_error
2927 ("ENTRY statement at %C cannot appear "
2928 "within a contained subprogram");
2929 break;
2930 default:
2931 gfc_internal_error ("gfc_match_entry(): Bad state");
2933 return MATCH_ERROR;
2936 module_procedure = gfc_current_ns->parent != NULL
2937 && gfc_current_ns->parent->proc_name
2938 && gfc_current_ns->parent->proc_name->attr.flavor == FL_MODULE;
2940 if (gfc_current_ns->parent != NULL
2941 && gfc_current_ns->parent->proc_name
2942 && !module_procedure)
2944 gfc_error("ENTRY statement at %C cannot appear in a "
2945 "contained procedure");
2946 return MATCH_ERROR;
2949 /* Module function entries need special care in get_proc_name
2950 because previous references within the function will have
2951 created symbols attached to the current namespace. */
2952 if (get_proc_name (name, &entry,
2953 gfc_current_ns->parent != NULL
2954 && module_procedure
2955 && gfc_current_ns->proc_name->attr.function))
2956 return MATCH_ERROR;
2958 proc = gfc_current_block ();
2960 if (state == COMP_SUBROUTINE)
2962 /* An entry in a subroutine. */
2963 if (!add_global_entry (name, 1))
2964 return MATCH_ERROR;
2966 m = gfc_match_formal_arglist (entry, 0, 1);
2967 if (m != MATCH_YES)
2968 return MATCH_ERROR;
2970 if (gfc_add_entry (&entry->attr, entry->name, NULL) == FAILURE
2971 || gfc_add_subroutine (&entry->attr, entry->name, NULL) == FAILURE)
2972 return MATCH_ERROR;
2974 else
2976 /* An entry in a function.
2977 We need to take special care because writing
2978 ENTRY f()
2980 ENTRY f
2981 is allowed, whereas
2982 ENTRY f() RESULT (r)
2983 can't be written as
2984 ENTRY f RESULT (r). */
2985 if (!add_global_entry (name, 0))
2986 return MATCH_ERROR;
2988 old_loc = gfc_current_locus;
2989 if (gfc_match_eos () == MATCH_YES)
2991 gfc_current_locus = old_loc;
2992 /* Match the empty argument list, and add the interface to
2993 the symbol. */
2994 m = gfc_match_formal_arglist (entry, 0, 1);
2996 else
2997 m = gfc_match_formal_arglist (entry, 0, 0);
2999 if (m != MATCH_YES)
3000 return MATCH_ERROR;
3002 result = NULL;
3004 if (gfc_match_eos () == MATCH_YES)
3006 if (gfc_add_entry (&entry->attr, entry->name, NULL) == FAILURE
3007 || gfc_add_function (&entry->attr, entry->name, NULL) == FAILURE)
3008 return MATCH_ERROR;
3010 entry->result = entry;
3012 else
3014 m = match_result (proc, &result);
3015 if (m == MATCH_NO)
3016 gfc_syntax_error (ST_ENTRY);
3017 if (m != MATCH_YES)
3018 return MATCH_ERROR;
3020 if (gfc_add_result (&result->attr, result->name, NULL) == FAILURE
3021 || gfc_add_entry (&entry->attr, result->name, NULL) == FAILURE
3022 || gfc_add_function (&entry->attr, result->name,
3023 NULL) == FAILURE)
3024 return MATCH_ERROR;
3026 entry->result = result;
3029 if (proc->attr.recursive && result == NULL)
3031 gfc_error ("RESULT attribute required in ENTRY statement at %C");
3032 return MATCH_ERROR;
3036 if (gfc_match_eos () != MATCH_YES)
3038 gfc_syntax_error (ST_ENTRY);
3039 return MATCH_ERROR;
3042 entry->attr.recursive = proc->attr.recursive;
3043 entry->attr.elemental = proc->attr.elemental;
3044 entry->attr.pure = proc->attr.pure;
3046 el = gfc_get_entry_list ();
3047 el->sym = entry;
3048 el->next = gfc_current_ns->entries;
3049 gfc_current_ns->entries = el;
3050 if (el->next)
3051 el->id = el->next->id + 1;
3052 else
3053 el->id = 1;
3055 new_st.op = EXEC_ENTRY;
3056 new_st.ext.entry = el;
3058 return MATCH_YES;
3062 /* Match a subroutine statement, including optional prefixes. */
3064 match
3065 gfc_match_subroutine (void)
3067 char name[GFC_MAX_SYMBOL_LEN + 1];
3068 gfc_symbol *sym;
3069 match m;
3071 if (gfc_current_state () != COMP_NONE
3072 && gfc_current_state () != COMP_INTERFACE
3073 && gfc_current_state () != COMP_CONTAINS)
3074 return MATCH_NO;
3076 m = match_prefix (NULL);
3077 if (m != MATCH_YES)
3078 return m;
3080 m = gfc_match ("subroutine% %n", name);
3081 if (m != MATCH_YES)
3082 return m;
3084 if (get_proc_name (name, &sym, false))
3085 return MATCH_ERROR;
3086 gfc_new_block = sym;
3088 if (gfc_add_subroutine (&sym->attr, sym->name, NULL) == FAILURE)
3089 return MATCH_ERROR;
3091 if (gfc_match_formal_arglist (sym, 0, 1) != MATCH_YES)
3092 return MATCH_ERROR;
3094 if (gfc_match_eos () != MATCH_YES)
3096 gfc_syntax_error (ST_SUBROUTINE);
3097 return MATCH_ERROR;
3100 if (copy_prefix (&sym->attr, &sym->declared_at) == FAILURE)
3101 return MATCH_ERROR;
3103 return MATCH_YES;
3107 /* Return nonzero if we're currently compiling a contained procedure. */
3109 static int
3110 contained_procedure (void)
3112 gfc_state_data *s;
3114 for (s=gfc_state_stack; s; s=s->previous)
3115 if ((s->state == COMP_SUBROUTINE || s->state == COMP_FUNCTION)
3116 && s->previous != NULL
3117 && s->previous->state == COMP_CONTAINS)
3118 return 1;
3120 return 0;
3123 /* Set the kind of each enumerator. The kind is selected such that it is
3124 interoperable with the corresponding C enumeration type, making
3125 sure that -fshort-enums is honored. */
3127 static void
3128 set_enum_kind(void)
3130 enumerator_history *current_history = NULL;
3131 int kind;
3132 int i;
3134 if (max_enum == NULL || enum_history == NULL)
3135 return;
3137 if (!gfc_option.fshort_enums)
3138 return;
3140 i = 0;
3143 kind = gfc_integer_kinds[i++].kind;
3145 while (kind < gfc_c_int_kind
3146 && gfc_check_integer_range (max_enum->initializer->value.integer,
3147 kind) != ARITH_OK);
3149 current_history = enum_history;
3150 while (current_history != NULL)
3152 current_history->sym->ts.kind = kind;
3153 current_history = current_history->next;
3157 /* Match any of the various end-block statements. Returns the type of
3158 END to the caller. The END INTERFACE, END IF, END DO and END
3159 SELECT statements cannot be replaced by a single END statement. */
3161 match
3162 gfc_match_end (gfc_statement * st)
3164 char name[GFC_MAX_SYMBOL_LEN + 1];
3165 gfc_compile_state state;
3166 locus old_loc;
3167 const char *block_name;
3168 const char *target;
3169 int eos_ok;
3170 match m;
3172 old_loc = gfc_current_locus;
3173 if (gfc_match ("end") != MATCH_YES)
3174 return MATCH_NO;
3176 state = gfc_current_state ();
3177 block_name =
3178 gfc_current_block () == NULL ? NULL : gfc_current_block ()->name;
3180 if (state == COMP_CONTAINS)
3182 state = gfc_state_stack->previous->state;
3183 block_name = gfc_state_stack->previous->sym == NULL ? NULL
3184 : gfc_state_stack->previous->sym->name;
3187 switch (state)
3189 case COMP_NONE:
3190 case COMP_PROGRAM:
3191 *st = ST_END_PROGRAM;
3192 target = " program";
3193 eos_ok = 1;
3194 break;
3196 case COMP_SUBROUTINE:
3197 *st = ST_END_SUBROUTINE;
3198 target = " subroutine";
3199 eos_ok = !contained_procedure ();
3200 break;
3202 case COMP_FUNCTION:
3203 *st = ST_END_FUNCTION;
3204 target = " function";
3205 eos_ok = !contained_procedure ();
3206 break;
3208 case COMP_BLOCK_DATA:
3209 *st = ST_END_BLOCK_DATA;
3210 target = " block data";
3211 eos_ok = 1;
3212 break;
3214 case COMP_MODULE:
3215 *st = ST_END_MODULE;
3216 target = " module";
3217 eos_ok = 1;
3218 break;
3220 case COMP_INTERFACE:
3221 *st = ST_END_INTERFACE;
3222 target = " interface";
3223 eos_ok = 0;
3224 break;
3226 case COMP_DERIVED:
3227 *st = ST_END_TYPE;
3228 target = " type";
3229 eos_ok = 0;
3230 break;
3232 case COMP_IF:
3233 *st = ST_ENDIF;
3234 target = " if";
3235 eos_ok = 0;
3236 break;
3238 case COMP_DO:
3239 *st = ST_ENDDO;
3240 target = " do";
3241 eos_ok = 0;
3242 break;
3244 case COMP_SELECT:
3245 *st = ST_END_SELECT;
3246 target = " select";
3247 eos_ok = 0;
3248 break;
3250 case COMP_FORALL:
3251 *st = ST_END_FORALL;
3252 target = " forall";
3253 eos_ok = 0;
3254 break;
3256 case COMP_WHERE:
3257 *st = ST_END_WHERE;
3258 target = " where";
3259 eos_ok = 0;
3260 break;
3262 case COMP_ENUM:
3263 *st = ST_END_ENUM;
3264 target = " enum";
3265 eos_ok = 0;
3266 last_initializer = NULL;
3267 set_enum_kind ();
3268 gfc_free_enum_history ();
3269 break;
3271 default:
3272 gfc_error ("Unexpected END statement at %C");
3273 goto cleanup;
3276 if (gfc_match_eos () == MATCH_YES)
3278 if (!eos_ok)
3280 /* We would have required END [something] */
3281 gfc_error ("%s statement expected at %L",
3282 gfc_ascii_statement (*st), &old_loc);
3283 goto cleanup;
3286 return MATCH_YES;
3289 /* Verify that we've got the sort of end-block that we're expecting. */
3290 if (gfc_match (target) != MATCH_YES)
3292 gfc_error ("Expecting %s statement at %C", gfc_ascii_statement (*st));
3293 goto cleanup;
3296 /* If we're at the end, make sure a block name wasn't required. */
3297 if (gfc_match_eos () == MATCH_YES)
3300 if (*st != ST_ENDDO && *st != ST_ENDIF && *st != ST_END_SELECT)
3301 return MATCH_YES;
3303 if (gfc_current_block () == NULL)
3304 return MATCH_YES;
3306 gfc_error ("Expected block name of '%s' in %s statement at %C",
3307 block_name, gfc_ascii_statement (*st));
3309 return MATCH_ERROR;
3312 /* END INTERFACE has a special handler for its several possible endings. */
3313 if (*st == ST_END_INTERFACE)
3314 return gfc_match_end_interface ();
3316 /* We haven't hit the end of statement, so what is left must be an end-name. */
3317 m = gfc_match_space ();
3318 if (m == MATCH_YES)
3319 m = gfc_match_name (name);
3321 if (m == MATCH_NO)
3322 gfc_error ("Expected terminating name at %C");
3323 if (m != MATCH_YES)
3324 goto cleanup;
3326 if (block_name == NULL)
3327 goto syntax;
3329 if (strcmp (name, block_name) != 0)
3331 gfc_error ("Expected label '%s' for %s statement at %C", block_name,
3332 gfc_ascii_statement (*st));
3333 goto cleanup;
3336 if (gfc_match_eos () == MATCH_YES)
3337 return MATCH_YES;
3339 syntax:
3340 gfc_syntax_error (*st);
3342 cleanup:
3343 gfc_current_locus = old_loc;
3344 return MATCH_ERROR;
3349 /***************** Attribute declaration statements ****************/
3351 /* Set the attribute of a single variable. */
3353 static match
3354 attr_decl1 (void)
3356 char name[GFC_MAX_SYMBOL_LEN + 1];
3357 gfc_array_spec *as;
3358 gfc_symbol *sym;
3359 locus var_locus;
3360 match m;
3362 as = NULL;
3364 m = gfc_match_name (name);
3365 if (m != MATCH_YES)
3366 goto cleanup;
3368 if (find_special (name, &sym))
3369 return MATCH_ERROR;
3371 var_locus = gfc_current_locus;
3373 /* Deal with possible array specification for certain attributes. */
3374 if (current_attr.dimension
3375 || current_attr.allocatable
3376 || current_attr.pointer
3377 || current_attr.target)
3379 m = gfc_match_array_spec (&as);
3380 if (m == MATCH_ERROR)
3381 goto cleanup;
3383 if (current_attr.dimension && m == MATCH_NO)
3385 gfc_error
3386 ("Missing array specification at %L in DIMENSION statement",
3387 &var_locus);
3388 m = MATCH_ERROR;
3389 goto cleanup;
3392 if ((current_attr.allocatable || current_attr.pointer)
3393 && (m == MATCH_YES) && (as->type != AS_DEFERRED))
3395 gfc_error ("Array specification must be deferred at %L",
3396 &var_locus);
3397 m = MATCH_ERROR;
3398 goto cleanup;
3402 /* Update symbol table. DIMENSION attribute is set in gfc_set_array_spec(). */
3403 if (current_attr.dimension == 0
3404 && gfc_copy_attr (&sym->attr, &current_attr, NULL) == FAILURE)
3406 m = MATCH_ERROR;
3407 goto cleanup;
3410 if (gfc_set_array_spec (sym, as, &var_locus) == FAILURE)
3412 m = MATCH_ERROR;
3413 goto cleanup;
3416 if (sym->attr.cray_pointee && sym->as != NULL)
3418 /* Fix the array spec. */
3419 m = gfc_mod_pointee_as (sym->as);
3420 if (m == MATCH_ERROR)
3421 goto cleanup;
3424 if (gfc_add_attribute (&sym->attr, &var_locus) == FAILURE)
3426 m = MATCH_ERROR;
3427 goto cleanup;
3430 if ((current_attr.external || current_attr.intrinsic)
3431 && sym->attr.flavor != FL_PROCEDURE
3432 && gfc_add_flavor (&sym->attr, FL_PROCEDURE, sym->name, NULL) == FAILURE)
3434 m = MATCH_ERROR;
3435 goto cleanup;
3438 return MATCH_YES;
3440 cleanup:
3441 gfc_free_array_spec (as);
3442 return m;
3446 /* Generic attribute declaration subroutine. Used for attributes that
3447 just have a list of names. */
3449 static match
3450 attr_decl (void)
3452 match m;
3454 /* Gobble the optional double colon, by simply ignoring the result
3455 of gfc_match(). */
3456 gfc_match (" ::");
3458 for (;;)
3460 m = attr_decl1 ();
3461 if (m != MATCH_YES)
3462 break;
3464 if (gfc_match_eos () == MATCH_YES)
3466 m = MATCH_YES;
3467 break;
3470 if (gfc_match_char (',') != MATCH_YES)
3472 gfc_error ("Unexpected character in variable list at %C");
3473 m = MATCH_ERROR;
3474 break;
3478 return m;
3482 /* This routine matches Cray Pointer declarations of the form:
3483 pointer ( <pointer>, <pointee> )
3485 pointer ( <pointer1>, <pointee1> ), ( <pointer2>, <pointee2> ), ...
3486 The pointer, if already declared, should be an integer. Otherwise, we
3487 set it as BT_INTEGER with kind gfc_index_integer_kind. The pointee may
3488 be either a scalar, or an array declaration. No space is allocated for
3489 the pointee. For the statement
3490 pointer (ipt, ar(10))
3491 any subsequent uses of ar will be translated (in C-notation) as
3492 ar(i) => ((<type> *) ipt)(i)
3493 After gimplification, pointee variable will disappear in the code. */
3495 static match
3496 cray_pointer_decl (void)
3498 match m;
3499 gfc_array_spec *as;
3500 gfc_symbol *cptr; /* Pointer symbol. */
3501 gfc_symbol *cpte; /* Pointee symbol. */
3502 locus var_locus;
3503 bool done = false;
3505 while (!done)
3507 if (gfc_match_char ('(') != MATCH_YES)
3509 gfc_error ("Expected '(' at %C");
3510 return MATCH_ERROR;
3513 /* Match pointer. */
3514 var_locus = gfc_current_locus;
3515 gfc_clear_attr (&current_attr);
3516 gfc_add_cray_pointer (&current_attr, &var_locus);
3517 current_ts.type = BT_INTEGER;
3518 current_ts.kind = gfc_index_integer_kind;
3520 m = gfc_match_symbol (&cptr, 0);
3521 if (m != MATCH_YES)
3523 gfc_error ("Expected variable name at %C");
3524 return m;
3527 if (gfc_add_cray_pointer (&cptr->attr, &var_locus) == FAILURE)
3528 return MATCH_ERROR;
3530 gfc_set_sym_referenced (cptr);
3532 if (cptr->ts.type == BT_UNKNOWN) /* Override the type, if necessary. */
3534 cptr->ts.type = BT_INTEGER;
3535 cptr->ts.kind = gfc_index_integer_kind;
3537 else if (cptr->ts.type != BT_INTEGER)
3539 gfc_error ("Cray pointer at %C must be an integer");
3540 return MATCH_ERROR;
3542 else if (cptr->ts.kind < gfc_index_integer_kind)
3543 gfc_warning ("Cray pointer at %C has %d bytes of precision;"
3544 " memory addresses require %d bytes",
3545 cptr->ts.kind,
3546 gfc_index_integer_kind);
3548 if (gfc_match_char (',') != MATCH_YES)
3550 gfc_error ("Expected \",\" at %C");
3551 return MATCH_ERROR;
3554 /* Match Pointee. */
3555 var_locus = gfc_current_locus;
3556 gfc_clear_attr (&current_attr);
3557 gfc_add_cray_pointee (&current_attr, &var_locus);
3558 current_ts.type = BT_UNKNOWN;
3559 current_ts.kind = 0;
3561 m = gfc_match_symbol (&cpte, 0);
3562 if (m != MATCH_YES)
3564 gfc_error ("Expected variable name at %C");
3565 return m;
3568 /* Check for an optional array spec. */
3569 m = gfc_match_array_spec (&as);
3570 if (m == MATCH_ERROR)
3572 gfc_free_array_spec (as);
3573 return m;
3575 else if (m == MATCH_NO)
3577 gfc_free_array_spec (as);
3578 as = NULL;
3581 if (gfc_add_cray_pointee (&cpte->attr, &var_locus) == FAILURE)
3582 return MATCH_ERROR;
3584 gfc_set_sym_referenced (cpte);
3586 if (cpte->as == NULL)
3588 if (gfc_set_array_spec (cpte, as, &var_locus) == FAILURE)
3589 gfc_internal_error ("Couldn't set Cray pointee array spec.");
3591 else if (as != NULL)
3593 gfc_error ("Duplicate array spec for Cray pointee at %C");
3594 gfc_free_array_spec (as);
3595 return MATCH_ERROR;
3598 as = NULL;
3600 if (cpte->as != NULL)
3602 /* Fix array spec. */
3603 m = gfc_mod_pointee_as (cpte->as);
3604 if (m == MATCH_ERROR)
3605 return m;
3608 /* Point the Pointee at the Pointer. */
3609 cpte->cp_pointer = cptr;
3611 if (gfc_match_char (')') != MATCH_YES)
3613 gfc_error ("Expected \")\" at %C");
3614 return MATCH_ERROR;
3616 m = gfc_match_char (',');
3617 if (m != MATCH_YES)
3618 done = true; /* Stop searching for more declarations. */
3622 if (m == MATCH_ERROR /* Failed when trying to find ',' above. */
3623 || gfc_match_eos () != MATCH_YES)
3625 gfc_error ("Expected \",\" or end of statement at %C");
3626 return MATCH_ERROR;
3628 return MATCH_YES;
3632 match
3633 gfc_match_external (void)
3636 gfc_clear_attr (&current_attr);
3637 current_attr.external = 1;
3639 return attr_decl ();
3644 match
3645 gfc_match_intent (void)
3647 sym_intent intent;
3649 intent = match_intent_spec ();
3650 if (intent == INTENT_UNKNOWN)
3651 return MATCH_ERROR;
3653 gfc_clear_attr (&current_attr);
3654 current_attr.intent = intent;
3656 return attr_decl ();
3660 match
3661 gfc_match_intrinsic (void)
3664 gfc_clear_attr (&current_attr);
3665 current_attr.intrinsic = 1;
3667 return attr_decl ();
3671 match
3672 gfc_match_optional (void)
3675 gfc_clear_attr (&current_attr);
3676 current_attr.optional = 1;
3678 return attr_decl ();
3682 match
3683 gfc_match_pointer (void)
3685 gfc_gobble_whitespace ();
3686 if (gfc_peek_char () == '(')
3688 if (!gfc_option.flag_cray_pointer)
3690 gfc_error ("Cray pointer declaration at %C requires -fcray-pointer"
3691 " flag");
3692 return MATCH_ERROR;
3694 return cray_pointer_decl ();
3696 else
3698 gfc_clear_attr (&current_attr);
3699 current_attr.pointer = 1;
3701 return attr_decl ();
3706 match
3707 gfc_match_allocatable (void)
3710 gfc_clear_attr (&current_attr);
3711 current_attr.allocatable = 1;
3713 return attr_decl ();
3717 match
3718 gfc_match_dimension (void)
3721 gfc_clear_attr (&current_attr);
3722 current_attr.dimension = 1;
3724 return attr_decl ();
3728 match
3729 gfc_match_target (void)
3732 gfc_clear_attr (&current_attr);
3733 current_attr.target = 1;
3735 return attr_decl ();
3739 /* Match the list of entities being specified in a PUBLIC or PRIVATE
3740 statement. */
3742 static match
3743 access_attr_decl (gfc_statement st)
3745 char name[GFC_MAX_SYMBOL_LEN + 1];
3746 interface_type type;
3747 gfc_user_op *uop;
3748 gfc_symbol *sym;
3749 gfc_intrinsic_op operator;
3750 match m;
3752 if (gfc_match (" ::") == MATCH_NO && gfc_match_space () == MATCH_NO)
3753 goto done;
3755 for (;;)
3757 m = gfc_match_generic_spec (&type, name, &operator);
3758 if (m == MATCH_NO)
3759 goto syntax;
3760 if (m == MATCH_ERROR)
3761 return MATCH_ERROR;
3763 switch (type)
3765 case INTERFACE_NAMELESS:
3766 goto syntax;
3768 case INTERFACE_GENERIC:
3769 if (gfc_get_symbol (name, NULL, &sym))
3770 goto done;
3772 if (gfc_add_access (&sym->attr,
3773 (st ==
3774 ST_PUBLIC) ? ACCESS_PUBLIC : ACCESS_PRIVATE,
3775 sym->name, NULL) == FAILURE)
3776 return MATCH_ERROR;
3778 break;
3780 case INTERFACE_INTRINSIC_OP:
3781 if (gfc_current_ns->operator_access[operator] == ACCESS_UNKNOWN)
3783 gfc_current_ns->operator_access[operator] =
3784 (st == ST_PUBLIC) ? ACCESS_PUBLIC : ACCESS_PRIVATE;
3786 else
3788 gfc_error ("Access specification of the %s operator at %C has "
3789 "already been specified", gfc_op2string (operator));
3790 goto done;
3793 break;
3795 case INTERFACE_USER_OP:
3796 uop = gfc_get_uop (name);
3798 if (uop->access == ACCESS_UNKNOWN)
3800 uop->access =
3801 (st == ST_PUBLIC) ? ACCESS_PUBLIC : ACCESS_PRIVATE;
3803 else
3805 gfc_error
3806 ("Access specification of the .%s. operator at %C has "
3807 "already been specified", sym->name);
3808 goto done;
3811 break;
3814 if (gfc_match_char (',') == MATCH_NO)
3815 break;
3818 if (gfc_match_eos () != MATCH_YES)
3819 goto syntax;
3820 return MATCH_YES;
3822 syntax:
3823 gfc_syntax_error (st);
3825 done:
3826 return MATCH_ERROR;
3830 /* The PRIVATE statement is a bit weird in that it can be a attribute
3831 declaration, but also works as a standlone statement inside of a
3832 type declaration or a module. */
3834 match
3835 gfc_match_private (gfc_statement * st)
3838 if (gfc_match ("private") != MATCH_YES)
3839 return MATCH_NO;
3841 if (gfc_current_state () == COMP_DERIVED)
3843 if (gfc_match_eos () == MATCH_YES)
3845 *st = ST_PRIVATE;
3846 return MATCH_YES;
3849 gfc_syntax_error (ST_PRIVATE);
3850 return MATCH_ERROR;
3853 if (gfc_match_eos () == MATCH_YES)
3855 *st = ST_PRIVATE;
3856 return MATCH_YES;
3859 *st = ST_ATTR_DECL;
3860 return access_attr_decl (ST_PRIVATE);
3864 match
3865 gfc_match_public (gfc_statement * st)
3868 if (gfc_match ("public") != MATCH_YES)
3869 return MATCH_NO;
3871 if (gfc_match_eos () == MATCH_YES)
3873 *st = ST_PUBLIC;
3874 return MATCH_YES;
3877 *st = ST_ATTR_DECL;
3878 return access_attr_decl (ST_PUBLIC);
3882 /* Workhorse for gfc_match_parameter. */
3884 static match
3885 do_parm (void)
3887 gfc_symbol *sym;
3888 gfc_expr *init;
3889 match m;
3891 m = gfc_match_symbol (&sym, 0);
3892 if (m == MATCH_NO)
3893 gfc_error ("Expected variable name at %C in PARAMETER statement");
3895 if (m != MATCH_YES)
3896 return m;
3898 if (gfc_match_char ('=') == MATCH_NO)
3900 gfc_error ("Expected = sign in PARAMETER statement at %C");
3901 return MATCH_ERROR;
3904 m = gfc_match_init_expr (&init);
3905 if (m == MATCH_NO)
3906 gfc_error ("Expected expression at %C in PARAMETER statement");
3907 if (m != MATCH_YES)
3908 return m;
3910 if (sym->ts.type == BT_UNKNOWN
3911 && gfc_set_default_type (sym, 1, NULL) == FAILURE)
3913 m = MATCH_ERROR;
3914 goto cleanup;
3917 if (gfc_check_assign_symbol (sym, init) == FAILURE
3918 || gfc_add_flavor (&sym->attr, FL_PARAMETER, sym->name, NULL) == FAILURE)
3920 m = MATCH_ERROR;
3921 goto cleanup;
3924 if (sym->ts.type == BT_CHARACTER
3925 && sym->ts.cl != NULL
3926 && sym->ts.cl->length != NULL
3927 && sym->ts.cl->length->expr_type == EXPR_CONSTANT
3928 && init->expr_type == EXPR_CONSTANT
3929 && init->ts.type == BT_CHARACTER
3930 && init->ts.kind == 1)
3931 gfc_set_constant_character_len (
3932 mpz_get_si (sym->ts.cl->length->value.integer), init);
3934 sym->value = init;
3935 return MATCH_YES;
3937 cleanup:
3938 gfc_free_expr (init);
3939 return m;
3943 /* Match a parameter statement, with the weird syntax that these have. */
3945 match
3946 gfc_match_parameter (void)
3948 match m;
3950 if (gfc_match_char ('(') == MATCH_NO)
3951 return MATCH_NO;
3953 for (;;)
3955 m = do_parm ();
3956 if (m != MATCH_YES)
3957 break;
3959 if (gfc_match (" )%t") == MATCH_YES)
3960 break;
3962 if (gfc_match_char (',') != MATCH_YES)
3964 gfc_error ("Unexpected characters in PARAMETER statement at %C");
3965 m = MATCH_ERROR;
3966 break;
3970 return m;
3974 /* Save statements have a special syntax. */
3976 match
3977 gfc_match_save (void)
3979 char n[GFC_MAX_SYMBOL_LEN+1];
3980 gfc_common_head *c;
3981 gfc_symbol *sym;
3982 match m;
3984 if (gfc_match_eos () == MATCH_YES)
3986 if (gfc_current_ns->seen_save)
3988 if (gfc_notify_std (GFC_STD_LEGACY,
3989 "Blanket SAVE statement at %C follows previous "
3990 "SAVE statement")
3991 == FAILURE)
3992 return MATCH_ERROR;
3995 gfc_current_ns->save_all = gfc_current_ns->seen_save = 1;
3996 return MATCH_YES;
3999 if (gfc_current_ns->save_all)
4001 if (gfc_notify_std (GFC_STD_LEGACY,
4002 "SAVE statement at %C follows blanket SAVE statement")
4003 == FAILURE)
4004 return MATCH_ERROR;
4007 gfc_match (" ::");
4009 for (;;)
4011 m = gfc_match_symbol (&sym, 0);
4012 switch (m)
4014 case MATCH_YES:
4015 if (gfc_add_save (&sym->attr, sym->name,
4016 &gfc_current_locus) == FAILURE)
4017 return MATCH_ERROR;
4018 goto next_item;
4020 case MATCH_NO:
4021 break;
4023 case MATCH_ERROR:
4024 return MATCH_ERROR;
4027 m = gfc_match (" / %n /", &n);
4028 if (m == MATCH_ERROR)
4029 return MATCH_ERROR;
4030 if (m == MATCH_NO)
4031 goto syntax;
4033 c = gfc_get_common (n, 0);
4034 c->saved = 1;
4036 gfc_current_ns->seen_save = 1;
4038 next_item:
4039 if (gfc_match_eos () == MATCH_YES)
4040 break;
4041 if (gfc_match_char (',') != MATCH_YES)
4042 goto syntax;
4045 return MATCH_YES;
4047 syntax:
4048 gfc_error ("Syntax error in SAVE statement at %C");
4049 return MATCH_ERROR;
4053 match
4054 gfc_match_volatile (void)
4056 gfc_symbol *sym;
4057 match m;
4059 if (gfc_notify_std (GFC_STD_F2003,
4060 "Fortran 2003: VOLATILE statement at %C")
4061 == FAILURE)
4062 return MATCH_ERROR;
4064 if (gfc_match (" ::") == MATCH_NO && gfc_match_space () == MATCH_NO)
4066 return MATCH_ERROR;
4069 if (gfc_match_eos () == MATCH_YES)
4070 goto syntax;
4072 for(;;)
4074 m = gfc_match_symbol (&sym, 0);
4075 switch (m)
4077 case MATCH_YES:
4078 if (gfc_add_volatile (&sym->attr, sym->name,
4079 &gfc_current_locus) == FAILURE)
4080 return MATCH_ERROR;
4081 goto next_item;
4083 case MATCH_NO:
4084 break;
4086 case MATCH_ERROR:
4087 return MATCH_ERROR;
4090 next_item:
4091 if (gfc_match_eos () == MATCH_YES)
4092 break;
4093 if (gfc_match_char (',') != MATCH_YES)
4094 goto syntax;
4097 return MATCH_YES;
4099 syntax:
4100 gfc_error ("Syntax error in VOLATILE statement at %C");
4101 return MATCH_ERROR;
4106 /* Match a module procedure statement. Note that we have to modify
4107 symbols in the parent's namespace because the current one was there
4108 to receive symbols that are in an interface's formal argument list. */
4110 match
4111 gfc_match_modproc (void)
4113 char name[GFC_MAX_SYMBOL_LEN + 1];
4114 gfc_symbol *sym;
4115 match m;
4117 if (gfc_state_stack->state != COMP_INTERFACE
4118 || gfc_state_stack->previous == NULL
4119 || current_interface.type == INTERFACE_NAMELESS)
4121 gfc_error
4122 ("MODULE PROCEDURE at %C must be in a generic module interface");
4123 return MATCH_ERROR;
4126 for (;;)
4128 m = gfc_match_name (name);
4129 if (m == MATCH_NO)
4130 goto syntax;
4131 if (m != MATCH_YES)
4132 return MATCH_ERROR;
4134 if (gfc_get_symbol (name, gfc_current_ns->parent, &sym))
4135 return MATCH_ERROR;
4137 if (sym->attr.proc != PROC_MODULE
4138 && gfc_add_procedure (&sym->attr, PROC_MODULE,
4139 sym->name, NULL) == FAILURE)
4140 return MATCH_ERROR;
4142 if (gfc_add_interface (sym) == FAILURE)
4143 return MATCH_ERROR;
4145 if (gfc_match_eos () == MATCH_YES)
4146 break;
4147 if (gfc_match_char (',') != MATCH_YES)
4148 goto syntax;
4151 return MATCH_YES;
4153 syntax:
4154 gfc_syntax_error (ST_MODULE_PROC);
4155 return MATCH_ERROR;
4159 /* Match the beginning of a derived type declaration. If a type name
4160 was the result of a function, then it is possible to have a symbol
4161 already to be known as a derived type yet have no components. */
4163 match
4164 gfc_match_derived_decl (void)
4166 char name[GFC_MAX_SYMBOL_LEN + 1];
4167 symbol_attribute attr;
4168 gfc_symbol *sym;
4169 match m;
4171 if (gfc_current_state () == COMP_DERIVED)
4172 return MATCH_NO;
4174 gfc_clear_attr (&attr);
4176 loop:
4177 if (gfc_match (" , private") == MATCH_YES)
4179 if (gfc_find_state (COMP_MODULE) == FAILURE)
4181 gfc_error
4182 ("Derived type at %C can only be PRIVATE within a MODULE");
4183 return MATCH_ERROR;
4186 if (gfc_add_access (&attr, ACCESS_PRIVATE, NULL, NULL) == FAILURE)
4187 return MATCH_ERROR;
4188 goto loop;
4191 if (gfc_match (" , public") == MATCH_YES)
4193 if (gfc_find_state (COMP_MODULE) == FAILURE)
4195 gfc_error ("Derived type at %C can only be PUBLIC within a MODULE");
4196 return MATCH_ERROR;
4199 if (gfc_add_access (&attr, ACCESS_PUBLIC, NULL, NULL) == FAILURE)
4200 return MATCH_ERROR;
4201 goto loop;
4204 if (gfc_match (" ::") != MATCH_YES && attr.access != ACCESS_UNKNOWN)
4206 gfc_error ("Expected :: in TYPE definition at %C");
4207 return MATCH_ERROR;
4210 m = gfc_match (" %n%t", name);
4211 if (m != MATCH_YES)
4212 return m;
4214 /* Make sure the name isn't the name of an intrinsic type. The
4215 'double precision' type doesn't get past the name matcher. */
4216 if (strcmp (name, "integer") == 0
4217 || strcmp (name, "real") == 0
4218 || strcmp (name, "character") == 0
4219 || strcmp (name, "logical") == 0
4220 || strcmp (name, "complex") == 0)
4222 gfc_error
4223 ("Type name '%s' at %C cannot be the same as an intrinsic type",
4224 name);
4225 return MATCH_ERROR;
4228 if (gfc_get_symbol (name, NULL, &sym))
4229 return MATCH_ERROR;
4231 if (sym->ts.type != BT_UNKNOWN)
4233 gfc_error ("Derived type name '%s' at %C already has a basic type "
4234 "of %s", sym->name, gfc_typename (&sym->ts));
4235 return MATCH_ERROR;
4238 /* The symbol may already have the derived attribute without the
4239 components. The ways this can happen is via a function
4240 definition, an INTRINSIC statement or a subtype in another
4241 derived type that is a pointer. The first part of the AND clause
4242 is true if a the symbol is not the return value of a function. */
4243 if (sym->attr.flavor != FL_DERIVED
4244 && gfc_add_flavor (&sym->attr, FL_DERIVED, sym->name, NULL) == FAILURE)
4245 return MATCH_ERROR;
4247 if (sym->components != NULL)
4249 gfc_error
4250 ("Derived type definition of '%s' at %C has already been defined",
4251 sym->name);
4252 return MATCH_ERROR;
4255 if (attr.access != ACCESS_UNKNOWN
4256 && gfc_add_access (&sym->attr, attr.access, sym->name, NULL) == FAILURE)
4257 return MATCH_ERROR;
4259 gfc_new_block = sym;
4261 return MATCH_YES;
4265 /* Cray Pointees can be declared as:
4266 pointer (ipt, a (n,m,...,*))
4267 By default, this is treated as an AS_ASSUMED_SIZE array. We'll
4268 cheat and set a constant bound of 1 for the last dimension, if this
4269 is the case. Since there is no bounds-checking for Cray Pointees,
4270 this will be okay. */
4273 gfc_mod_pointee_as (gfc_array_spec *as)
4275 as->cray_pointee = true; /* This will be useful to know later. */
4276 if (as->type == AS_ASSUMED_SIZE)
4278 as->type = AS_EXPLICIT;
4279 as->upper[as->rank - 1] = gfc_int_expr (1);
4280 as->cp_was_assumed = true;
4282 else if (as->type == AS_ASSUMED_SHAPE)
4284 gfc_error ("Cray Pointee at %C cannot be assumed shape array");
4285 return MATCH_ERROR;
4287 return MATCH_YES;
4291 /* Match the enum definition statement, here we are trying to match
4292 the first line of enum definition statement.
4293 Returns MATCH_YES if match is found. */
4295 match
4296 gfc_match_enum (void)
4298 match m;
4300 m = gfc_match_eos ();
4301 if (m != MATCH_YES)
4302 return m;
4304 if (gfc_notify_std (GFC_STD_F2003,
4305 "Fortran 2003: ENUM AND ENUMERATOR at %C")
4306 == FAILURE)
4307 return MATCH_ERROR;
4309 return MATCH_YES;
4313 /* Match the enumerator definition statement. */
4315 match
4316 gfc_match_enumerator_def (void)
4318 match m;
4319 int elem;
4321 gfc_clear_ts (&current_ts);
4323 m = gfc_match (" enumerator");
4324 if (m != MATCH_YES)
4325 return m;
4327 if (gfc_current_state () != COMP_ENUM)
4329 gfc_error ("ENUM definition statement expected before %C");
4330 gfc_free_enum_history ();
4331 return MATCH_ERROR;
4334 (&current_ts)->type = BT_INTEGER;
4335 (&current_ts)->kind = gfc_c_int_kind;
4337 m = match_attr_spec ();
4338 if (m == MATCH_ERROR)
4340 m = MATCH_NO;
4341 goto cleanup;
4344 elem = 1;
4345 for (;;)
4347 m = variable_decl (elem++);
4348 if (m == MATCH_ERROR)
4349 goto cleanup;
4350 if (m == MATCH_NO)
4351 break;
4353 if (gfc_match_eos () == MATCH_YES)
4354 goto cleanup;
4355 if (gfc_match_char (',') != MATCH_YES)
4356 break;
4359 if (gfc_current_state () == COMP_ENUM)
4361 gfc_free_enum_history ();
4362 gfc_error ("Syntax error in ENUMERATOR definition at %C");
4363 m = MATCH_ERROR;
4366 cleanup:
4367 gfc_free_array_spec (current_as);
4368 current_as = NULL;
4369 return m;