Merged trunk at revision 161680 into branch.
[official-gcc.git] / gcc / fortran / match.c
blob92c4da0a4b5a9376edbcceeb26084e970413507c
1 /* Matching subroutines in all sizes, shapes and colors.
2 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
3 2009, 2010
4 2010 Free Software Foundation, Inc.
5 Contributed by Andy Vaught
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify it under
10 the terms of the GNU General Public License as published by the Free
11 Software Foundation; either version 3, or (at your option) any later
12 version.
14 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 for more details.
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
23 #include "config.h"
24 #include "system.h"
25 #include "flags.h"
26 #include "gfortran.h"
27 #include "match.h"
28 #include "parse.h"
30 int gfc_matching_procptr_assignment = 0;
31 bool gfc_matching_prefix = false;
33 /* Stack of SELECT TYPE statements. */
34 gfc_select_type_stack *select_type_stack = NULL;
36 /* For debugging and diagnostic purposes. Return the textual representation
37 of the intrinsic operator OP. */
38 const char *
39 gfc_op2string (gfc_intrinsic_op op)
41 switch (op)
43 case INTRINSIC_UPLUS:
44 case INTRINSIC_PLUS:
45 return "+";
47 case INTRINSIC_UMINUS:
48 case INTRINSIC_MINUS:
49 return "-";
51 case INTRINSIC_POWER:
52 return "**";
53 case INTRINSIC_CONCAT:
54 return "//";
55 case INTRINSIC_TIMES:
56 return "*";
57 case INTRINSIC_DIVIDE:
58 return "/";
60 case INTRINSIC_AND:
61 return ".and.";
62 case INTRINSIC_OR:
63 return ".or.";
64 case INTRINSIC_EQV:
65 return ".eqv.";
66 case INTRINSIC_NEQV:
67 return ".neqv.";
69 case INTRINSIC_EQ_OS:
70 return ".eq.";
71 case INTRINSIC_EQ:
72 return "==";
73 case INTRINSIC_NE_OS:
74 return ".ne.";
75 case INTRINSIC_NE:
76 return "/=";
77 case INTRINSIC_GE_OS:
78 return ".ge.";
79 case INTRINSIC_GE:
80 return ">=";
81 case INTRINSIC_LE_OS:
82 return ".le.";
83 case INTRINSIC_LE:
84 return "<=";
85 case INTRINSIC_LT_OS:
86 return ".lt.";
87 case INTRINSIC_LT:
88 return "<";
89 case INTRINSIC_GT_OS:
90 return ".gt.";
91 case INTRINSIC_GT:
92 return ">";
93 case INTRINSIC_NOT:
94 return ".not.";
96 case INTRINSIC_ASSIGN:
97 return "=";
99 case INTRINSIC_PARENTHESES:
100 return "parens";
102 default:
103 break;
106 gfc_internal_error ("gfc_op2string(): Bad code");
107 /* Not reached. */
111 /******************** Generic matching subroutines ************************/
113 /* This function scans the current statement counting the opened and closed
114 parenthesis to make sure they are balanced. */
116 match
117 gfc_match_parens (void)
119 locus old_loc, where;
120 int count, instring;
121 gfc_char_t c, quote;
123 old_loc = gfc_current_locus;
124 count = 0;
125 instring = 0;
126 quote = ' ';
128 for (;;)
130 c = gfc_next_char_literal (instring);
131 if (c == '\n')
132 break;
133 if (quote == ' ' && ((c == '\'') || (c == '"')))
135 quote = c;
136 instring = 1;
137 continue;
139 if (quote != ' ' && c == quote)
141 quote = ' ';
142 instring = 0;
143 continue;
146 if (c == '(' && quote == ' ')
148 count++;
149 where = gfc_current_locus;
151 if (c == ')' && quote == ' ')
153 count--;
154 where = gfc_current_locus;
158 gfc_current_locus = old_loc;
160 if (count > 0)
162 gfc_error ("Missing ')' in statement at or before %L", &where);
163 return MATCH_ERROR;
165 if (count < 0)
167 gfc_error ("Missing '(' in statement at or before %L", &where);
168 return MATCH_ERROR;
171 return MATCH_YES;
175 /* See if the next character is a special character that has
176 escaped by a \ via the -fbackslash option. */
178 match
179 gfc_match_special_char (gfc_char_t *res)
181 int len, i;
182 gfc_char_t c, n;
183 match m;
185 m = MATCH_YES;
187 switch ((c = gfc_next_char_literal (1)))
189 case 'a':
190 *res = '\a';
191 break;
192 case 'b':
193 *res = '\b';
194 break;
195 case 't':
196 *res = '\t';
197 break;
198 case 'f':
199 *res = '\f';
200 break;
201 case 'n':
202 *res = '\n';
203 break;
204 case 'r':
205 *res = '\r';
206 break;
207 case 'v':
208 *res = '\v';
209 break;
210 case '\\':
211 *res = '\\';
212 break;
213 case '0':
214 *res = '\0';
215 break;
217 case 'x':
218 case 'u':
219 case 'U':
220 /* Hexadecimal form of wide characters. */
221 len = (c == 'x' ? 2 : (c == 'u' ? 4 : 8));
222 n = 0;
223 for (i = 0; i < len; i++)
225 char buf[2] = { '\0', '\0' };
227 c = gfc_next_char_literal (1);
228 if (!gfc_wide_fits_in_byte (c)
229 || !gfc_check_digit ((unsigned char) c, 16))
230 return MATCH_NO;
232 buf[0] = (unsigned char) c;
233 n = n << 4;
234 n += strtol (buf, NULL, 16);
236 *res = n;
237 break;
239 default:
240 /* Unknown backslash codes are simply not expanded. */
241 m = MATCH_NO;
242 break;
245 return m;
249 /* In free form, match at least one space. Always matches in fixed
250 form. */
252 match
253 gfc_match_space (void)
255 locus old_loc;
256 char c;
258 if (gfc_current_form == FORM_FIXED)
259 return MATCH_YES;
261 old_loc = gfc_current_locus;
263 c = gfc_next_ascii_char ();
264 if (!gfc_is_whitespace (c))
266 gfc_current_locus = old_loc;
267 return MATCH_NO;
270 gfc_gobble_whitespace ();
272 return MATCH_YES;
276 /* Match an end of statement. End of statement is optional
277 whitespace, followed by a ';' or '\n' or comment '!'. If a
278 semicolon is found, we continue to eat whitespace and semicolons. */
280 match
281 gfc_match_eos (void)
283 locus old_loc;
284 int flag;
285 char c;
287 flag = 0;
289 for (;;)
291 old_loc = gfc_current_locus;
292 gfc_gobble_whitespace ();
294 c = gfc_next_ascii_char ();
295 switch (c)
297 case '!':
300 c = gfc_next_ascii_char ();
302 while (c != '\n');
304 /* Fall through. */
306 case '\n':
307 return MATCH_YES;
309 case ';':
310 flag = 1;
311 continue;
314 break;
317 gfc_current_locus = old_loc;
318 return (flag) ? MATCH_YES : MATCH_NO;
322 /* Match a literal integer on the input, setting the value on
323 MATCH_YES. Literal ints occur in kind-parameters as well as
324 old-style character length specifications. If cnt is non-NULL it
325 will be set to the number of digits. */
327 match
328 gfc_match_small_literal_int (int *value, int *cnt)
330 locus old_loc;
331 char c;
332 int i, j;
334 old_loc = gfc_current_locus;
336 *value = -1;
337 gfc_gobble_whitespace ();
338 c = gfc_next_ascii_char ();
339 if (cnt)
340 *cnt = 0;
342 if (!ISDIGIT (c))
344 gfc_current_locus = old_loc;
345 return MATCH_NO;
348 i = c - '0';
349 j = 1;
351 for (;;)
353 old_loc = gfc_current_locus;
354 c = gfc_next_ascii_char ();
356 if (!ISDIGIT (c))
357 break;
359 i = 10 * i + c - '0';
360 j++;
362 if (i > 99999999)
364 gfc_error ("Integer too large at %C");
365 return MATCH_ERROR;
369 gfc_current_locus = old_loc;
371 *value = i;
372 if (cnt)
373 *cnt = j;
374 return MATCH_YES;
378 /* Match a small, constant integer expression, like in a kind
379 statement. On MATCH_YES, 'value' is set. */
381 match
382 gfc_match_small_int (int *value)
384 gfc_expr *expr;
385 const char *p;
386 match m;
387 int i;
389 m = gfc_match_expr (&expr);
390 if (m != MATCH_YES)
391 return m;
393 p = gfc_extract_int (expr, &i);
394 gfc_free_expr (expr);
396 if (p != NULL)
398 gfc_error (p);
399 m = MATCH_ERROR;
402 *value = i;
403 return m;
407 /* This function is the same as the gfc_match_small_int, except that
408 we're keeping the pointer to the expr. This function could just be
409 removed and the previously mentioned one modified, though all calls
410 to it would have to be modified then (and there were a number of
411 them). Return MATCH_ERROR if fail to extract the int; otherwise,
412 return the result of gfc_match_expr(). The expr (if any) that was
413 matched is returned in the parameter expr. */
415 match
416 gfc_match_small_int_expr (int *value, gfc_expr **expr)
418 const char *p;
419 match m;
420 int i;
422 m = gfc_match_expr (expr);
423 if (m != MATCH_YES)
424 return m;
426 p = gfc_extract_int (*expr, &i);
428 if (p != NULL)
430 gfc_error (p);
431 m = MATCH_ERROR;
434 *value = i;
435 return m;
439 /* Matches a statement label. Uses gfc_match_small_literal_int() to
440 do most of the work. */
442 match
443 gfc_match_st_label (gfc_st_label **label)
445 locus old_loc;
446 match m;
447 int i, cnt;
449 old_loc = gfc_current_locus;
451 m = gfc_match_small_literal_int (&i, &cnt);
452 if (m != MATCH_YES)
453 return m;
455 if (cnt > 5)
457 gfc_error ("Too many digits in statement label at %C");
458 goto cleanup;
461 if (i == 0)
463 gfc_error ("Statement label at %C is zero");
464 goto cleanup;
467 *label = gfc_get_st_label (i);
468 return MATCH_YES;
470 cleanup:
472 gfc_current_locus = old_loc;
473 return MATCH_ERROR;
477 /* Match and validate a label associated with a named IF, DO or SELECT
478 statement. If the symbol does not have the label attribute, we add
479 it. We also make sure the symbol does not refer to another
480 (active) block. A matched label is pointed to by gfc_new_block. */
482 match
483 gfc_match_label (void)
485 char name[GFC_MAX_SYMBOL_LEN + 1];
486 match m;
488 gfc_new_block = NULL;
490 m = gfc_match (" %n :", name);
491 if (m != MATCH_YES)
492 return m;
494 if (gfc_get_symbol (name, NULL, &gfc_new_block))
496 gfc_error ("Label name '%s' at %C is ambiguous", name);
497 return MATCH_ERROR;
500 if (gfc_new_block->attr.flavor == FL_LABEL)
502 gfc_error ("Duplicate construct label '%s' at %C", name);
503 return MATCH_ERROR;
506 if (gfc_add_flavor (&gfc_new_block->attr, FL_LABEL,
507 gfc_new_block->name, NULL) == FAILURE)
508 return MATCH_ERROR;
510 return MATCH_YES;
514 /* See if the current input looks like a name of some sort. Modifies
515 the passed buffer which must be GFC_MAX_SYMBOL_LEN+1 bytes long.
516 Note that options.c restricts max_identifier_length to not more
517 than GFC_MAX_SYMBOL_LEN. */
519 match
520 gfc_match_name (char *buffer)
522 locus old_loc;
523 int i;
524 char c;
526 old_loc = gfc_current_locus;
527 gfc_gobble_whitespace ();
529 c = gfc_next_ascii_char ();
530 if (!(ISALPHA (c) || (c == '_' && gfc_option.flag_allow_leading_underscore)))
532 if (gfc_error_flag_test() == 0 && c != '(')
533 gfc_error ("Invalid character in name at %C");
534 gfc_current_locus = old_loc;
535 return MATCH_NO;
538 i = 0;
542 buffer[i++] = c;
544 if (i > gfc_option.max_identifier_length)
546 gfc_error ("Name at %C is too long");
547 return MATCH_ERROR;
550 old_loc = gfc_current_locus;
551 c = gfc_next_ascii_char ();
553 while (ISALNUM (c) || c == '_' || (gfc_option.flag_dollar_ok && c == '$'));
555 if (c == '$' && !gfc_option.flag_dollar_ok)
557 gfc_error ("Invalid character '$' at %C. Use -fdollar-ok to allow it "
558 "as an extension");
559 return MATCH_ERROR;
562 buffer[i] = '\0';
563 gfc_current_locus = old_loc;
565 return MATCH_YES;
569 /* Match a valid name for C, which is almost the same as for Fortran,
570 except that you can start with an underscore, etc.. It could have
571 been done by modifying the gfc_match_name, but this way other
572 things C allows can be added, such as no limits on the length.
573 Right now, the length is limited to the same thing as Fortran..
574 Also, by rewriting it, we use the gfc_next_char_C() to prevent the
575 input characters from being automatically lower cased, since C is
576 case sensitive. The parameter, buffer, is used to return the name
577 that is matched. Return MATCH_ERROR if the name is too long
578 (though this is a self-imposed limit), MATCH_NO if what we're
579 seeing isn't a name, and MATCH_YES if we successfully match a C
580 name. */
582 match
583 gfc_match_name_C (char *buffer)
585 locus old_loc;
586 int i = 0;
587 gfc_char_t c;
589 old_loc = gfc_current_locus;
590 gfc_gobble_whitespace ();
592 /* Get the next char (first possible char of name) and see if
593 it's valid for C (either a letter or an underscore). */
594 c = gfc_next_char_literal (1);
596 /* If the user put nothing expect spaces between the quotes, it is valid
597 and simply means there is no name= specifier and the name is the fortran
598 symbol name, all lowercase. */
599 if (c == '"' || c == '\'')
601 buffer[0] = '\0';
602 gfc_current_locus = old_loc;
603 return MATCH_YES;
606 if (!ISALPHA (c) && c != '_')
608 gfc_error ("Invalid C name in NAME= specifier at %C");
609 return MATCH_ERROR;
612 /* Continue to read valid variable name characters. */
615 gcc_assert (gfc_wide_fits_in_byte (c));
617 buffer[i++] = (unsigned char) c;
619 /* C does not define a maximum length of variable names, to my
620 knowledge, but the compiler typically places a limit on them.
621 For now, i'll use the same as the fortran limit for simplicity,
622 but this may need to be changed to a dynamic buffer that can
623 be realloc'ed here if necessary, or more likely, a larger
624 upper-bound set. */
625 if (i > gfc_option.max_identifier_length)
627 gfc_error ("Name at %C is too long");
628 return MATCH_ERROR;
631 old_loc = gfc_current_locus;
633 /* Get next char; param means we're in a string. */
634 c = gfc_next_char_literal (1);
635 } while (ISALNUM (c) || c == '_');
637 buffer[i] = '\0';
638 gfc_current_locus = old_loc;
640 /* See if we stopped because of whitespace. */
641 if (c == ' ')
643 gfc_gobble_whitespace ();
644 c = gfc_peek_ascii_char ();
645 if (c != '"' && c != '\'')
647 gfc_error ("Embedded space in NAME= specifier at %C");
648 return MATCH_ERROR;
652 /* If we stopped because we had an invalid character for a C name, report
653 that to the user by returning MATCH_NO. */
654 if (c != '"' && c != '\'')
656 gfc_error ("Invalid C name in NAME= specifier at %C");
657 return MATCH_ERROR;
660 return MATCH_YES;
664 /* Match a symbol on the input. Modifies the pointer to the symbol
665 pointer if successful. */
667 match
668 gfc_match_sym_tree (gfc_symtree **matched_symbol, int host_assoc)
670 char buffer[GFC_MAX_SYMBOL_LEN + 1];
671 match m;
673 m = gfc_match_name (buffer);
674 if (m != MATCH_YES)
675 return m;
677 if (host_assoc)
678 return (gfc_get_ha_sym_tree (buffer, matched_symbol))
679 ? MATCH_ERROR : MATCH_YES;
681 if (gfc_get_sym_tree (buffer, NULL, matched_symbol, false))
682 return MATCH_ERROR;
684 return MATCH_YES;
688 match
689 gfc_match_symbol (gfc_symbol **matched_symbol, int host_assoc)
691 gfc_symtree *st;
692 match m;
694 m = gfc_match_sym_tree (&st, host_assoc);
696 if (m == MATCH_YES)
698 if (st)
699 *matched_symbol = st->n.sym;
700 else
701 *matched_symbol = NULL;
703 else
704 *matched_symbol = NULL;
705 return m;
709 /* Match an intrinsic operator. Returns an INTRINSIC enum. While matching,
710 we always find INTRINSIC_PLUS before INTRINSIC_UPLUS. We work around this
711 in matchexp.c. */
713 match
714 gfc_match_intrinsic_op (gfc_intrinsic_op *result)
716 locus orig_loc = gfc_current_locus;
717 char ch;
719 gfc_gobble_whitespace ();
720 ch = gfc_next_ascii_char ();
721 switch (ch)
723 case '+':
724 /* Matched "+". */
725 *result = INTRINSIC_PLUS;
726 return MATCH_YES;
728 case '-':
729 /* Matched "-". */
730 *result = INTRINSIC_MINUS;
731 return MATCH_YES;
733 case '=':
734 if (gfc_next_ascii_char () == '=')
736 /* Matched "==". */
737 *result = INTRINSIC_EQ;
738 return MATCH_YES;
740 break;
742 case '<':
743 if (gfc_peek_ascii_char () == '=')
745 /* Matched "<=". */
746 gfc_next_ascii_char ();
747 *result = INTRINSIC_LE;
748 return MATCH_YES;
750 /* Matched "<". */
751 *result = INTRINSIC_LT;
752 return MATCH_YES;
754 case '>':
755 if (gfc_peek_ascii_char () == '=')
757 /* Matched ">=". */
758 gfc_next_ascii_char ();
759 *result = INTRINSIC_GE;
760 return MATCH_YES;
762 /* Matched ">". */
763 *result = INTRINSIC_GT;
764 return MATCH_YES;
766 case '*':
767 if (gfc_peek_ascii_char () == '*')
769 /* Matched "**". */
770 gfc_next_ascii_char ();
771 *result = INTRINSIC_POWER;
772 return MATCH_YES;
774 /* Matched "*". */
775 *result = INTRINSIC_TIMES;
776 return MATCH_YES;
778 case '/':
779 ch = gfc_peek_ascii_char ();
780 if (ch == '=')
782 /* Matched "/=". */
783 gfc_next_ascii_char ();
784 *result = INTRINSIC_NE;
785 return MATCH_YES;
787 else if (ch == '/')
789 /* Matched "//". */
790 gfc_next_ascii_char ();
791 *result = INTRINSIC_CONCAT;
792 return MATCH_YES;
794 /* Matched "/". */
795 *result = INTRINSIC_DIVIDE;
796 return MATCH_YES;
798 case '.':
799 ch = gfc_next_ascii_char ();
800 switch (ch)
802 case 'a':
803 if (gfc_next_ascii_char () == 'n'
804 && gfc_next_ascii_char () == 'd'
805 && gfc_next_ascii_char () == '.')
807 /* Matched ".and.". */
808 *result = INTRINSIC_AND;
809 return MATCH_YES;
811 break;
813 case 'e':
814 if (gfc_next_ascii_char () == 'q')
816 ch = gfc_next_ascii_char ();
817 if (ch == '.')
819 /* Matched ".eq.". */
820 *result = INTRINSIC_EQ_OS;
821 return MATCH_YES;
823 else if (ch == 'v')
825 if (gfc_next_ascii_char () == '.')
827 /* Matched ".eqv.". */
828 *result = INTRINSIC_EQV;
829 return MATCH_YES;
833 break;
835 case 'g':
836 ch = gfc_next_ascii_char ();
837 if (ch == 'e')
839 if (gfc_next_ascii_char () == '.')
841 /* Matched ".ge.". */
842 *result = INTRINSIC_GE_OS;
843 return MATCH_YES;
846 else if (ch == 't')
848 if (gfc_next_ascii_char () == '.')
850 /* Matched ".gt.". */
851 *result = INTRINSIC_GT_OS;
852 return MATCH_YES;
855 break;
857 case 'l':
858 ch = gfc_next_ascii_char ();
859 if (ch == 'e')
861 if (gfc_next_ascii_char () == '.')
863 /* Matched ".le.". */
864 *result = INTRINSIC_LE_OS;
865 return MATCH_YES;
868 else if (ch == 't')
870 if (gfc_next_ascii_char () == '.')
872 /* Matched ".lt.". */
873 *result = INTRINSIC_LT_OS;
874 return MATCH_YES;
877 break;
879 case 'n':
880 ch = gfc_next_ascii_char ();
881 if (ch == 'e')
883 ch = gfc_next_ascii_char ();
884 if (ch == '.')
886 /* Matched ".ne.". */
887 *result = INTRINSIC_NE_OS;
888 return MATCH_YES;
890 else if (ch == 'q')
892 if (gfc_next_ascii_char () == 'v'
893 && gfc_next_ascii_char () == '.')
895 /* Matched ".neqv.". */
896 *result = INTRINSIC_NEQV;
897 return MATCH_YES;
901 else if (ch == 'o')
903 if (gfc_next_ascii_char () == 't'
904 && gfc_next_ascii_char () == '.')
906 /* Matched ".not.". */
907 *result = INTRINSIC_NOT;
908 return MATCH_YES;
911 break;
913 case 'o':
914 if (gfc_next_ascii_char () == 'r'
915 && gfc_next_ascii_char () == '.')
917 /* Matched ".or.". */
918 *result = INTRINSIC_OR;
919 return MATCH_YES;
921 break;
923 default:
924 break;
926 break;
928 default:
929 break;
932 gfc_current_locus = orig_loc;
933 return MATCH_NO;
937 /* Match a loop control phrase:
939 <LVALUE> = <EXPR>, <EXPR> [, <EXPR> ]
941 If the final integer expression is not present, a constant unity
942 expression is returned. We don't return MATCH_ERROR until after
943 the equals sign is seen. */
945 match
946 gfc_match_iterator (gfc_iterator *iter, int init_flag)
948 char name[GFC_MAX_SYMBOL_LEN + 1];
949 gfc_expr *var, *e1, *e2, *e3;
950 locus start;
951 match m;
953 e1 = e2 = e3 = NULL;
955 /* Match the start of an iterator without affecting the symbol table. */
957 start = gfc_current_locus;
958 m = gfc_match (" %n =", name);
959 gfc_current_locus = start;
961 if (m != MATCH_YES)
962 return MATCH_NO;
964 m = gfc_match_variable (&var, 0);
965 if (m != MATCH_YES)
966 return MATCH_NO;
968 /* F2008, C617 & C565. */
969 if (var->symtree->n.sym->attr.codimension)
971 gfc_error ("Loop variable at %C cannot be a coarray");
972 goto cleanup;
975 if (var->ref != NULL)
977 gfc_error ("Loop variable at %C cannot be a sub-component");
978 goto cleanup;
981 if (var->symtree->n.sym->attr.intent == INTENT_IN)
983 gfc_error ("Loop variable '%s' at %C cannot be INTENT(IN)",
984 var->symtree->n.sym->name);
985 goto cleanup;
988 gfc_match_char ('=');
990 var->symtree->n.sym->attr.implied_index = 1;
992 m = init_flag ? gfc_match_init_expr (&e1) : gfc_match_expr (&e1);
993 if (m == MATCH_NO)
994 goto syntax;
995 if (m == MATCH_ERROR)
996 goto cleanup;
998 if (gfc_match_char (',') != MATCH_YES)
999 goto syntax;
1001 m = init_flag ? gfc_match_init_expr (&e2) : gfc_match_expr (&e2);
1002 if (m == MATCH_NO)
1003 goto syntax;
1004 if (m == MATCH_ERROR)
1005 goto cleanup;
1007 if (gfc_match_char (',') != MATCH_YES)
1009 e3 = gfc_get_int_expr (gfc_default_integer_kind, NULL, 1);
1010 goto done;
1013 m = init_flag ? gfc_match_init_expr (&e3) : gfc_match_expr (&e3);
1014 if (m == MATCH_ERROR)
1015 goto cleanup;
1016 if (m == MATCH_NO)
1018 gfc_error ("Expected a step value in iterator at %C");
1019 goto cleanup;
1022 done:
1023 iter->var = var;
1024 iter->start = e1;
1025 iter->end = e2;
1026 iter->step = e3;
1027 return MATCH_YES;
1029 syntax:
1030 gfc_error ("Syntax error in iterator at %C");
1032 cleanup:
1033 gfc_free_expr (e1);
1034 gfc_free_expr (e2);
1035 gfc_free_expr (e3);
1037 return MATCH_ERROR;
1041 /* Tries to match the next non-whitespace character on the input.
1042 This subroutine does not return MATCH_ERROR. */
1044 match
1045 gfc_match_char (char c)
1047 locus where;
1049 where = gfc_current_locus;
1050 gfc_gobble_whitespace ();
1052 if (gfc_next_ascii_char () == c)
1053 return MATCH_YES;
1055 gfc_current_locus = where;
1056 return MATCH_NO;
1060 /* General purpose matching subroutine. The target string is a
1061 scanf-like format string in which spaces correspond to arbitrary
1062 whitespace (including no whitespace), characters correspond to
1063 themselves. The %-codes are:
1065 %% Literal percent sign
1066 %e Expression, pointer to a pointer is set
1067 %s Symbol, pointer to the symbol is set
1068 %n Name, character buffer is set to name
1069 %t Matches end of statement.
1070 %o Matches an intrinsic operator, returned as an INTRINSIC enum.
1071 %l Matches a statement label
1072 %v Matches a variable expression (an lvalue)
1073 % Matches a required space (in free form) and optional spaces. */
1075 match
1076 gfc_match (const char *target, ...)
1078 gfc_st_label **label;
1079 int matches, *ip;
1080 locus old_loc;
1081 va_list argp;
1082 char c, *np;
1083 match m, n;
1084 void **vp;
1085 const char *p;
1087 old_loc = gfc_current_locus;
1088 va_start (argp, target);
1089 m = MATCH_NO;
1090 matches = 0;
1091 p = target;
1093 loop:
1094 c = *p++;
1095 switch (c)
1097 case ' ':
1098 gfc_gobble_whitespace ();
1099 goto loop;
1100 case '\0':
1101 m = MATCH_YES;
1102 break;
1104 case '%':
1105 c = *p++;
1106 switch (c)
1108 case 'e':
1109 vp = va_arg (argp, void **);
1110 n = gfc_match_expr ((gfc_expr **) vp);
1111 if (n != MATCH_YES)
1113 m = n;
1114 goto not_yes;
1117 matches++;
1118 goto loop;
1120 case 'v':
1121 vp = va_arg (argp, void **);
1122 n = gfc_match_variable ((gfc_expr **) vp, 0);
1123 if (n != MATCH_YES)
1125 m = n;
1126 goto not_yes;
1129 matches++;
1130 goto loop;
1132 case 's':
1133 vp = va_arg (argp, void **);
1134 n = gfc_match_symbol ((gfc_symbol **) vp, 0);
1135 if (n != MATCH_YES)
1137 m = n;
1138 goto not_yes;
1141 matches++;
1142 goto loop;
1144 case 'n':
1145 np = va_arg (argp, char *);
1146 n = gfc_match_name (np);
1147 if (n != MATCH_YES)
1149 m = n;
1150 goto not_yes;
1153 matches++;
1154 goto loop;
1156 case 'l':
1157 label = va_arg (argp, gfc_st_label **);
1158 n = gfc_match_st_label (label);
1159 if (n != MATCH_YES)
1161 m = n;
1162 goto not_yes;
1165 matches++;
1166 goto loop;
1168 case 'o':
1169 ip = va_arg (argp, int *);
1170 n = gfc_match_intrinsic_op ((gfc_intrinsic_op *) ip);
1171 if (n != MATCH_YES)
1173 m = n;
1174 goto not_yes;
1177 matches++;
1178 goto loop;
1180 case 't':
1181 if (gfc_match_eos () != MATCH_YES)
1183 m = MATCH_NO;
1184 goto not_yes;
1186 goto loop;
1188 case ' ':
1189 if (gfc_match_space () == MATCH_YES)
1190 goto loop;
1191 m = MATCH_NO;
1192 goto not_yes;
1194 case '%':
1195 break; /* Fall through to character matcher. */
1197 default:
1198 gfc_internal_error ("gfc_match(): Bad match code %c", c);
1201 default:
1203 /* gfc_next_ascii_char converts characters to lower-case, so we shouldn't
1204 expect an upper case character here! */
1205 gcc_assert (TOLOWER (c) == c);
1207 if (c == gfc_next_ascii_char ())
1208 goto loop;
1209 break;
1212 not_yes:
1213 va_end (argp);
1215 if (m != MATCH_YES)
1217 /* Clean up after a failed match. */
1218 gfc_current_locus = old_loc;
1219 va_start (argp, target);
1221 p = target;
1222 for (; matches > 0; matches--)
1224 while (*p++ != '%');
1226 switch (*p++)
1228 case '%':
1229 matches++;
1230 break; /* Skip. */
1232 /* Matches that don't have to be undone */
1233 case 'o':
1234 case 'l':
1235 case 'n':
1236 case 's':
1237 (void) va_arg (argp, void **);
1238 break;
1240 case 'e':
1241 case 'v':
1242 vp = va_arg (argp, void **);
1243 gfc_free_expr ((struct gfc_expr *)*vp);
1244 *vp = NULL;
1245 break;
1249 va_end (argp);
1252 return m;
1256 /*********************** Statement level matching **********************/
1258 /* Matches the start of a program unit, which is the program keyword
1259 followed by an obligatory symbol. */
1261 match
1262 gfc_match_program (void)
1264 gfc_symbol *sym;
1265 match m;
1267 m = gfc_match ("% %s%t", &sym);
1269 if (m == MATCH_NO)
1271 gfc_error ("Invalid form of PROGRAM statement at %C");
1272 m = MATCH_ERROR;
1275 if (m == MATCH_ERROR)
1276 return m;
1278 if (gfc_add_flavor (&sym->attr, FL_PROGRAM, sym->name, NULL) == FAILURE)
1279 return MATCH_ERROR;
1281 gfc_new_block = sym;
1283 return MATCH_YES;
1287 /* Match a simple assignment statement. */
1289 match
1290 gfc_match_assignment (void)
1292 gfc_expr *lvalue, *rvalue;
1293 locus old_loc;
1294 match m;
1296 old_loc = gfc_current_locus;
1298 lvalue = NULL;
1299 m = gfc_match (" %v =", &lvalue);
1300 if (m != MATCH_YES)
1302 gfc_current_locus = old_loc;
1303 gfc_free_expr (lvalue);
1304 return MATCH_NO;
1307 rvalue = NULL;
1308 m = gfc_match (" %e%t", &rvalue);
1309 if (m != MATCH_YES)
1311 gfc_current_locus = old_loc;
1312 gfc_free_expr (lvalue);
1313 gfc_free_expr (rvalue);
1314 return m;
1317 gfc_set_sym_referenced (lvalue->symtree->n.sym);
1319 new_st.op = EXEC_ASSIGN;
1320 new_st.expr1 = lvalue;
1321 new_st.expr2 = rvalue;
1323 gfc_check_do_variable (lvalue->symtree);
1325 return MATCH_YES;
1329 /* Match a pointer assignment statement. */
1331 match
1332 gfc_match_pointer_assignment (void)
1334 gfc_expr *lvalue, *rvalue;
1335 locus old_loc;
1336 match m;
1338 old_loc = gfc_current_locus;
1340 lvalue = rvalue = NULL;
1341 gfc_matching_procptr_assignment = 0;
1343 m = gfc_match (" %v =>", &lvalue);
1344 if (m != MATCH_YES)
1346 m = MATCH_NO;
1347 goto cleanup;
1350 if (lvalue->symtree->n.sym->attr.proc_pointer
1351 || gfc_is_proc_ptr_comp (lvalue, NULL))
1352 gfc_matching_procptr_assignment = 1;
1354 m = gfc_match (" %e%t", &rvalue);
1355 gfc_matching_procptr_assignment = 0;
1356 if (m != MATCH_YES)
1357 goto cleanup;
1359 new_st.op = EXEC_POINTER_ASSIGN;
1360 new_st.expr1 = lvalue;
1361 new_st.expr2 = rvalue;
1363 return MATCH_YES;
1365 cleanup:
1366 gfc_current_locus = old_loc;
1367 gfc_free_expr (lvalue);
1368 gfc_free_expr (rvalue);
1369 return m;
1373 /* We try to match an easy arithmetic IF statement. This only happens
1374 when just after having encountered a simple IF statement. This code
1375 is really duplicate with parts of the gfc_match_if code, but this is
1376 *much* easier. */
1378 static match
1379 match_arithmetic_if (void)
1381 gfc_st_label *l1, *l2, *l3;
1382 gfc_expr *expr;
1383 match m;
1385 m = gfc_match (" ( %e ) %l , %l , %l%t", &expr, &l1, &l2, &l3);
1386 if (m != MATCH_YES)
1387 return m;
1389 if (gfc_reference_st_label (l1, ST_LABEL_TARGET) == FAILURE
1390 || gfc_reference_st_label (l2, ST_LABEL_TARGET) == FAILURE
1391 || gfc_reference_st_label (l3, ST_LABEL_TARGET) == FAILURE)
1393 gfc_free_expr (expr);
1394 return MATCH_ERROR;
1397 if (gfc_notify_std (GFC_STD_F95_OBS, "Obsolescent feature: Arithmetic IF "
1398 "statement at %C") == FAILURE)
1399 return MATCH_ERROR;
1401 new_st.op = EXEC_ARITHMETIC_IF;
1402 new_st.expr1 = expr;
1403 new_st.label1 = l1;
1404 new_st.label2 = l2;
1405 new_st.label3 = l3;
1407 return MATCH_YES;
1411 /* The IF statement is a bit of a pain. First of all, there are three
1412 forms of it, the simple IF, the IF that starts a block and the
1413 arithmetic IF.
1415 There is a problem with the simple IF and that is the fact that we
1416 only have a single level of undo information on symbols. What this
1417 means is for a simple IF, we must re-match the whole IF statement
1418 multiple times in order to guarantee that the symbol table ends up
1419 in the proper state. */
1421 static match match_simple_forall (void);
1422 static match match_simple_where (void);
1424 match
1425 gfc_match_if (gfc_statement *if_type)
1427 gfc_expr *expr;
1428 gfc_st_label *l1, *l2, *l3;
1429 locus old_loc, old_loc2;
1430 gfc_code *p;
1431 match m, n;
1433 n = gfc_match_label ();
1434 if (n == MATCH_ERROR)
1435 return n;
1437 old_loc = gfc_current_locus;
1439 m = gfc_match (" if ( %e", &expr);
1440 if (m != MATCH_YES)
1441 return m;
1443 old_loc2 = gfc_current_locus;
1444 gfc_current_locus = old_loc;
1446 if (gfc_match_parens () == MATCH_ERROR)
1447 return MATCH_ERROR;
1449 gfc_current_locus = old_loc2;
1451 if (gfc_match_char (')') != MATCH_YES)
1453 gfc_error ("Syntax error in IF-expression at %C");
1454 gfc_free_expr (expr);
1455 return MATCH_ERROR;
1458 m = gfc_match (" %l , %l , %l%t", &l1, &l2, &l3);
1460 if (m == MATCH_YES)
1462 if (n == MATCH_YES)
1464 gfc_error ("Block label not appropriate for arithmetic IF "
1465 "statement at %C");
1466 gfc_free_expr (expr);
1467 return MATCH_ERROR;
1470 if (gfc_reference_st_label (l1, ST_LABEL_TARGET) == FAILURE
1471 || gfc_reference_st_label (l2, ST_LABEL_TARGET) == FAILURE
1472 || gfc_reference_st_label (l3, ST_LABEL_TARGET) == FAILURE)
1474 gfc_free_expr (expr);
1475 return MATCH_ERROR;
1478 if (gfc_notify_std (GFC_STD_F95_OBS, "Obsolescent feature: Arithmetic IF "
1479 "statement at %C") == FAILURE)
1480 return MATCH_ERROR;
1482 new_st.op = EXEC_ARITHMETIC_IF;
1483 new_st.expr1 = expr;
1484 new_st.label1 = l1;
1485 new_st.label2 = l2;
1486 new_st.label3 = l3;
1488 *if_type = ST_ARITHMETIC_IF;
1489 return MATCH_YES;
1492 if (gfc_match (" then%t") == MATCH_YES)
1494 new_st.op = EXEC_IF;
1495 new_st.expr1 = expr;
1496 *if_type = ST_IF_BLOCK;
1497 return MATCH_YES;
1500 if (n == MATCH_YES)
1502 gfc_error ("Block label is not appropriate for IF statement at %C");
1503 gfc_free_expr (expr);
1504 return MATCH_ERROR;
1507 /* At this point the only thing left is a simple IF statement. At
1508 this point, n has to be MATCH_NO, so we don't have to worry about
1509 re-matching a block label. From what we've got so far, try
1510 matching an assignment. */
1512 *if_type = ST_SIMPLE_IF;
1514 m = gfc_match_assignment ();
1515 if (m == MATCH_YES)
1516 goto got_match;
1518 gfc_free_expr (expr);
1519 gfc_undo_symbols ();
1520 gfc_current_locus = old_loc;
1522 /* m can be MATCH_NO or MATCH_ERROR, here. For MATCH_ERROR, a mangled
1523 assignment was found. For MATCH_NO, continue to call the various
1524 matchers. */
1525 if (m == MATCH_ERROR)
1526 return MATCH_ERROR;
1528 gfc_match (" if ( %e ) ", &expr); /* Guaranteed to match. */
1530 m = gfc_match_pointer_assignment ();
1531 if (m == MATCH_YES)
1532 goto got_match;
1534 gfc_free_expr (expr);
1535 gfc_undo_symbols ();
1536 gfc_current_locus = old_loc;
1538 gfc_match (" if ( %e ) ", &expr); /* Guaranteed to match. */
1540 /* Look at the next keyword to see which matcher to call. Matching
1541 the keyword doesn't affect the symbol table, so we don't have to
1542 restore between tries. */
1544 #define match(string, subr, statement) \
1545 if (gfc_match(string) == MATCH_YES) { m = subr(); goto got_match; }
1547 gfc_clear_error ();
1549 match ("allocate", gfc_match_allocate, ST_ALLOCATE)
1550 match ("assign", gfc_match_assign, ST_LABEL_ASSIGNMENT)
1551 match ("backspace", gfc_match_backspace, ST_BACKSPACE)
1552 match ("call", gfc_match_call, ST_CALL)
1553 match ("close", gfc_match_close, ST_CLOSE)
1554 match ("continue", gfc_match_continue, ST_CONTINUE)
1555 match ("cycle", gfc_match_cycle, ST_CYCLE)
1556 match ("deallocate", gfc_match_deallocate, ST_DEALLOCATE)
1557 match ("end file", gfc_match_endfile, ST_END_FILE)
1558 match ("error stop", gfc_match_error_stop, ST_ERROR_STOP)
1559 match ("exit", gfc_match_exit, ST_EXIT)
1560 match ("flush", gfc_match_flush, ST_FLUSH)
1561 match ("forall", match_simple_forall, ST_FORALL)
1562 match ("go to", gfc_match_goto, ST_GOTO)
1563 match ("if", match_arithmetic_if, ST_ARITHMETIC_IF)
1564 match ("inquire", gfc_match_inquire, ST_INQUIRE)
1565 match ("nullify", gfc_match_nullify, ST_NULLIFY)
1566 match ("open", gfc_match_open, ST_OPEN)
1567 match ("pause", gfc_match_pause, ST_NONE)
1568 match ("print", gfc_match_print, ST_WRITE)
1569 match ("read", gfc_match_read, ST_READ)
1570 match ("return", gfc_match_return, ST_RETURN)
1571 match ("rewind", gfc_match_rewind, ST_REWIND)
1572 match ("stop", gfc_match_stop, ST_STOP)
1573 match ("wait", gfc_match_wait, ST_WAIT)
1574 match ("sync all", gfc_match_sync_all, ST_SYNC_CALL);
1575 match ("sync images", gfc_match_sync_images, ST_SYNC_IMAGES);
1576 match ("sync memory", gfc_match_sync_memory, ST_SYNC_MEMORY);
1577 match ("where", match_simple_where, ST_WHERE)
1578 match ("write", gfc_match_write, ST_WRITE)
1580 /* The gfc_match_assignment() above may have returned a MATCH_NO
1581 where the assignment was to a named constant. Check that
1582 special case here. */
1583 m = gfc_match_assignment ();
1584 if (m == MATCH_NO)
1586 gfc_error ("Cannot assign to a named constant at %C");
1587 gfc_free_expr (expr);
1588 gfc_undo_symbols ();
1589 gfc_current_locus = old_loc;
1590 return MATCH_ERROR;
1593 /* All else has failed, so give up. See if any of the matchers has
1594 stored an error message of some sort. */
1595 if (gfc_error_check () == 0)
1596 gfc_error ("Unclassifiable statement in IF-clause at %C");
1598 gfc_free_expr (expr);
1599 return MATCH_ERROR;
1601 got_match:
1602 if (m == MATCH_NO)
1603 gfc_error ("Syntax error in IF-clause at %C");
1604 if (m != MATCH_YES)
1606 gfc_free_expr (expr);
1607 return MATCH_ERROR;
1610 /* At this point, we've matched the single IF and the action clause
1611 is in new_st. Rearrange things so that the IF statement appears
1612 in new_st. */
1614 p = gfc_get_code ();
1615 p->next = gfc_get_code ();
1616 *p->next = new_st;
1617 p->next->loc = gfc_current_locus;
1619 p->expr1 = expr;
1620 p->op = EXEC_IF;
1622 gfc_clear_new_st ();
1624 new_st.op = EXEC_IF;
1625 new_st.block = p;
1627 return MATCH_YES;
1630 #undef match
1633 /* Match an ELSE statement. */
1635 match
1636 gfc_match_else (void)
1638 char name[GFC_MAX_SYMBOL_LEN + 1];
1640 if (gfc_match_eos () == MATCH_YES)
1641 return MATCH_YES;
1643 if (gfc_match_name (name) != MATCH_YES
1644 || gfc_current_block () == NULL
1645 || gfc_match_eos () != MATCH_YES)
1647 gfc_error ("Unexpected junk after ELSE statement at %C");
1648 return MATCH_ERROR;
1651 if (strcmp (name, gfc_current_block ()->name) != 0)
1653 gfc_error ("Label '%s' at %C doesn't match IF label '%s'",
1654 name, gfc_current_block ()->name);
1655 return MATCH_ERROR;
1658 return MATCH_YES;
1662 /* Match an ELSE IF statement. */
1664 match
1665 gfc_match_elseif (void)
1667 char name[GFC_MAX_SYMBOL_LEN + 1];
1668 gfc_expr *expr;
1669 match m;
1671 m = gfc_match (" ( %e ) then", &expr);
1672 if (m != MATCH_YES)
1673 return m;
1675 if (gfc_match_eos () == MATCH_YES)
1676 goto done;
1678 if (gfc_match_name (name) != MATCH_YES
1679 || gfc_current_block () == NULL
1680 || gfc_match_eos () != MATCH_YES)
1682 gfc_error ("Unexpected junk after ELSE IF statement at %C");
1683 goto cleanup;
1686 if (strcmp (name, gfc_current_block ()->name) != 0)
1688 gfc_error ("Label '%s' at %C doesn't match IF label '%s'",
1689 name, gfc_current_block ()->name);
1690 goto cleanup;
1693 done:
1694 new_st.op = EXEC_IF;
1695 new_st.expr1 = expr;
1696 return MATCH_YES;
1698 cleanup:
1699 gfc_free_expr (expr);
1700 return MATCH_ERROR;
1704 /* Free a gfc_iterator structure. */
1706 void
1707 gfc_free_iterator (gfc_iterator *iter, int flag)
1710 if (iter == NULL)
1711 return;
1713 gfc_free_expr (iter->var);
1714 gfc_free_expr (iter->start);
1715 gfc_free_expr (iter->end);
1716 gfc_free_expr (iter->step);
1718 if (flag)
1719 gfc_free (iter);
1723 /* Match a CRITICAL statement. */
1724 match
1725 gfc_match_critical (void)
1727 gfc_st_label *label = NULL;
1729 if (gfc_match_label () == MATCH_ERROR)
1730 return MATCH_ERROR;
1732 if (gfc_match (" critical") != MATCH_YES)
1733 return MATCH_NO;
1735 if (gfc_match_st_label (&label) == MATCH_ERROR)
1736 return MATCH_ERROR;
1738 if (gfc_match_eos () != MATCH_YES)
1740 gfc_syntax_error (ST_CRITICAL);
1741 return MATCH_ERROR;
1744 if (gfc_pure (NULL))
1746 gfc_error ("Image control statement CRITICAL at %C in PURE procedure");
1747 return MATCH_ERROR;
1750 if (gfc_notify_std (GFC_STD_F2008, "Fortran 2008: CRITICAL statement at %C")
1751 == FAILURE)
1752 return MATCH_ERROR;
1754 if (gfc_option.coarray == GFC_FCOARRAY_NONE)
1756 gfc_fatal_error ("Coarrays disabled at %C, use -fcoarray= to enable");
1757 return MATCH_ERROR;
1760 if (gfc_find_state (COMP_CRITICAL) == SUCCESS)
1762 gfc_error ("Nested CRITICAL block at %C");
1763 return MATCH_ERROR;
1766 new_st.op = EXEC_CRITICAL;
1768 if (label != NULL
1769 && gfc_reference_st_label (label, ST_LABEL_TARGET) == FAILURE)
1770 return MATCH_ERROR;
1772 return MATCH_YES;
1776 /* Match a BLOCK statement. */
1778 match
1779 gfc_match_block (void)
1781 match m;
1783 if (gfc_match_label () == MATCH_ERROR)
1784 return MATCH_ERROR;
1786 if (gfc_match (" block") != MATCH_YES)
1787 return MATCH_NO;
1789 /* For this to be a correct BLOCK statement, the line must end now. */
1790 m = gfc_match_eos ();
1791 if (m == MATCH_ERROR)
1792 return MATCH_ERROR;
1793 if (m == MATCH_NO)
1794 return MATCH_NO;
1796 return MATCH_YES;
1800 /* Match an ASSOCIATE statement. */
1802 match
1803 gfc_match_associate (void)
1805 if (gfc_match_label () == MATCH_ERROR)
1806 return MATCH_ERROR;
1808 if (gfc_match (" associate") != MATCH_YES)
1809 return MATCH_NO;
1811 /* Match the association list. */
1812 if (gfc_match_char ('(') != MATCH_YES)
1814 gfc_error ("Expected association list at %C");
1815 return MATCH_ERROR;
1817 new_st.ext.block.assoc = NULL;
1818 while (true)
1820 gfc_association_list* newAssoc = gfc_get_association_list ();
1821 gfc_association_list* a;
1823 /* Match the next association. */
1824 if (gfc_match (" %n => %e", newAssoc->name, &newAssoc->target)
1825 != MATCH_YES)
1827 gfc_error ("Expected association at %C");
1828 goto assocListError;
1831 /* Check that the current name is not yet in the list. */
1832 for (a = new_st.ext.block.assoc; a; a = a->next)
1833 if (!strcmp (a->name, newAssoc->name))
1835 gfc_error ("Duplicate name '%s' in association at %C",
1836 newAssoc->name);
1837 goto assocListError;
1840 /* The target expression must not be coindexed. */
1841 if (gfc_is_coindexed (newAssoc->target))
1843 gfc_error ("Association target at %C must not be coindexed");
1844 goto assocListError;
1847 /* The target is a variable (and may be used as lvalue) if it's an
1848 EXPR_VARIABLE and does not have vector-subscripts. */
1849 newAssoc->variable = (newAssoc->target->expr_type == EXPR_VARIABLE
1850 && !gfc_has_vector_subscript (newAssoc->target));
1852 /* Put it into the list. */
1853 newAssoc->next = new_st.ext.block.assoc;
1854 new_st.ext.block.assoc = newAssoc;
1856 /* Try next one or end if closing parenthesis is found. */
1857 gfc_gobble_whitespace ();
1858 if (gfc_peek_char () == ')')
1859 break;
1860 if (gfc_match_char (',') != MATCH_YES)
1862 gfc_error ("Expected ')' or ',' at %C");
1863 return MATCH_ERROR;
1866 continue;
1868 assocListError:
1869 gfc_free (newAssoc);
1870 goto error;
1872 if (gfc_match_char (')') != MATCH_YES)
1874 /* This should never happen as we peek above. */
1875 gcc_unreachable ();
1878 if (gfc_match_eos () != MATCH_YES)
1880 gfc_error ("Junk after ASSOCIATE statement at %C");
1881 goto error;
1884 return MATCH_YES;
1886 error:
1887 gfc_free_association_list (new_st.ext.block.assoc);
1888 return MATCH_ERROR;
1892 /* Match a DO statement. */
1894 match
1895 gfc_match_do (void)
1897 gfc_iterator iter, *ip;
1898 locus old_loc;
1899 gfc_st_label *label;
1900 match m;
1902 old_loc = gfc_current_locus;
1904 label = NULL;
1905 iter.var = iter.start = iter.end = iter.step = NULL;
1907 m = gfc_match_label ();
1908 if (m == MATCH_ERROR)
1909 return m;
1911 if (gfc_match (" do") != MATCH_YES)
1912 return MATCH_NO;
1914 m = gfc_match_st_label (&label);
1915 if (m == MATCH_ERROR)
1916 goto cleanup;
1918 /* Match an infinite DO, make it like a DO WHILE(.TRUE.). */
1920 if (gfc_match_eos () == MATCH_YES)
1922 iter.end = gfc_get_logical_expr (gfc_default_logical_kind, NULL, true);
1923 new_st.op = EXEC_DO_WHILE;
1924 goto done;
1927 /* Match an optional comma, if no comma is found, a space is obligatory. */
1928 if (gfc_match_char (',') != MATCH_YES && gfc_match ("% ") != MATCH_YES)
1929 return MATCH_NO;
1931 /* Check for balanced parens. */
1933 if (gfc_match_parens () == MATCH_ERROR)
1934 return MATCH_ERROR;
1936 /* See if we have a DO WHILE. */
1937 if (gfc_match (" while ( %e )%t", &iter.end) == MATCH_YES)
1939 new_st.op = EXEC_DO_WHILE;
1940 goto done;
1943 /* The abortive DO WHILE may have done something to the symbol
1944 table, so we start over. */
1945 gfc_undo_symbols ();
1946 gfc_current_locus = old_loc;
1948 gfc_match_label (); /* This won't error. */
1949 gfc_match (" do "); /* This will work. */
1951 gfc_match_st_label (&label); /* Can't error out. */
1952 gfc_match_char (','); /* Optional comma. */
1954 m = gfc_match_iterator (&iter, 0);
1955 if (m == MATCH_NO)
1956 return MATCH_NO;
1957 if (m == MATCH_ERROR)
1958 goto cleanup;
1960 iter.var->symtree->n.sym->attr.implied_index = 0;
1961 gfc_check_do_variable (iter.var->symtree);
1963 if (gfc_match_eos () != MATCH_YES)
1965 gfc_syntax_error (ST_DO);
1966 goto cleanup;
1969 new_st.op = EXEC_DO;
1971 done:
1972 if (label != NULL
1973 && gfc_reference_st_label (label, ST_LABEL_TARGET) == FAILURE)
1974 goto cleanup;
1976 new_st.label1 = label;
1978 if (new_st.op == EXEC_DO_WHILE)
1979 new_st.expr1 = iter.end;
1980 else
1982 new_st.ext.iterator = ip = gfc_get_iterator ();
1983 *ip = iter;
1986 return MATCH_YES;
1988 cleanup:
1989 gfc_free_iterator (&iter, 0);
1991 return MATCH_ERROR;
1995 /* Match an EXIT or CYCLE statement. */
1997 static match
1998 match_exit_cycle (gfc_statement st, gfc_exec_op op)
2000 gfc_state_data *p, *o;
2001 gfc_symbol *sym;
2002 match m;
2004 if (gfc_match_eos () == MATCH_YES)
2005 sym = NULL;
2006 else
2008 m = gfc_match ("% %s%t", &sym);
2009 if (m == MATCH_ERROR)
2010 return MATCH_ERROR;
2011 if (m == MATCH_NO)
2013 gfc_syntax_error (st);
2014 return MATCH_ERROR;
2017 if (sym->attr.flavor != FL_LABEL)
2019 gfc_error ("Name '%s' in %s statement at %C is not a loop name",
2020 sym->name, gfc_ascii_statement (st));
2021 return MATCH_ERROR;
2025 /* Find the loop mentioned specified by the label (or lack of a label). */
2026 for (o = NULL, p = gfc_state_stack; p; p = p->previous)
2027 if (p->state == COMP_DO && (sym == NULL || sym == p->sym))
2028 break;
2029 else if (o == NULL && p->state == COMP_OMP_STRUCTURED_BLOCK)
2030 o = p;
2031 else if (p->state == COMP_CRITICAL)
2033 gfc_error("%s statement at %C leaves CRITICAL construct",
2034 gfc_ascii_statement (st));
2035 return MATCH_ERROR;
2038 if (p == NULL)
2040 if (sym == NULL)
2041 gfc_error ("%s statement at %C is not within a loop",
2042 gfc_ascii_statement (st));
2043 else
2044 gfc_error ("%s statement at %C is not within loop '%s'",
2045 gfc_ascii_statement (st), sym->name);
2047 return MATCH_ERROR;
2050 if (o != NULL)
2052 gfc_error ("%s statement at %C leaving OpenMP structured block",
2053 gfc_ascii_statement (st));
2054 return MATCH_ERROR;
2056 else if (st == ST_EXIT
2057 && p->previous != NULL
2058 && p->previous->state == COMP_OMP_STRUCTURED_BLOCK
2059 && (p->previous->head->op == EXEC_OMP_DO
2060 || p->previous->head->op == EXEC_OMP_PARALLEL_DO))
2062 gcc_assert (p->previous->head->next != NULL);
2063 gcc_assert (p->previous->head->next->op == EXEC_DO
2064 || p->previous->head->next->op == EXEC_DO_WHILE);
2065 gfc_error ("EXIT statement at %C terminating !$OMP DO loop");
2066 return MATCH_ERROR;
2069 /* Save the first statement in the loop - needed by the backend. */
2070 new_st.ext.whichloop = p->head;
2072 new_st.op = op;
2074 return MATCH_YES;
2078 /* Match the EXIT statement. */
2080 match
2081 gfc_match_exit (void)
2083 return match_exit_cycle (ST_EXIT, EXEC_EXIT);
2087 /* Match the CYCLE statement. */
2089 match
2090 gfc_match_cycle (void)
2092 return match_exit_cycle (ST_CYCLE, EXEC_CYCLE);
2096 /* Match a number or character constant after an (ALL) STOP or PAUSE statement. */
2098 static match
2099 gfc_match_stopcode (gfc_statement st)
2101 gfc_expr *e;
2102 match m;
2104 e = NULL;
2106 if (gfc_match_eos () != MATCH_YES)
2108 m = gfc_match_init_expr (&e);
2109 if (m == MATCH_ERROR)
2110 goto cleanup;
2111 if (m == MATCH_NO)
2112 goto syntax;
2114 if (gfc_match_eos () != MATCH_YES)
2115 goto syntax;
2118 if (gfc_pure (NULL))
2120 gfc_error ("%s statement not allowed in PURE procedure at %C",
2121 gfc_ascii_statement (st));
2122 goto cleanup;
2125 if (st == ST_STOP && gfc_find_state (COMP_CRITICAL) == SUCCESS)
2127 gfc_error ("Image control statement STOP at %C in CRITICAL block");
2128 goto cleanup;
2131 if (e != NULL)
2133 if (!(e->ts.type == BT_CHARACTER || e->ts.type == BT_INTEGER))
2135 gfc_error ("STOP code at %L must be either INTEGER or CHARACTER type",
2136 &e->where);
2137 goto cleanup;
2140 if (e->rank != 0)
2142 gfc_error ("STOP code at %L must be scalar",
2143 &e->where);
2144 goto cleanup;
2147 if (e->ts.type == BT_CHARACTER
2148 && e->ts.kind != gfc_default_character_kind)
2150 gfc_error ("STOP code at %L must be default character KIND=%d",
2151 &e->where, (int) gfc_default_character_kind);
2152 goto cleanup;
2155 if (e->ts.type == BT_INTEGER
2156 && e->ts.kind != gfc_default_integer_kind)
2158 gfc_error ("STOP code at %L must be default integer KIND=%d",
2159 &e->where, (int) gfc_default_integer_kind);
2160 goto cleanup;
2164 switch (st)
2166 case ST_STOP:
2167 new_st.op = EXEC_STOP;
2168 break;
2169 case ST_ERROR_STOP:
2170 new_st.op = EXEC_ERROR_STOP;
2171 break;
2172 case ST_PAUSE:
2173 new_st.op = EXEC_PAUSE;
2174 break;
2175 default:
2176 gcc_unreachable ();
2179 new_st.expr1 = e;
2180 new_st.ext.stop_code = -1;
2182 return MATCH_YES;
2184 syntax:
2185 gfc_syntax_error (st);
2187 cleanup:
2189 gfc_free_expr (e);
2190 return MATCH_ERROR;
2194 /* Match the (deprecated) PAUSE statement. */
2196 match
2197 gfc_match_pause (void)
2199 match m;
2201 m = gfc_match_stopcode (ST_PAUSE);
2202 if (m == MATCH_YES)
2204 if (gfc_notify_std (GFC_STD_F95_DEL, "Deleted feature: PAUSE statement"
2205 " at %C")
2206 == FAILURE)
2207 m = MATCH_ERROR;
2209 return m;
2213 /* Match the STOP statement. */
2215 match
2216 gfc_match_stop (void)
2218 return gfc_match_stopcode (ST_STOP);
2222 /* Match the ERROR STOP statement. */
2224 match
2225 gfc_match_error_stop (void)
2227 if (gfc_notify_std (GFC_STD_F2008, "Fortran 2008: ERROR STOP statement at %C")
2228 == FAILURE)
2229 return MATCH_ERROR;
2231 return gfc_match_stopcode (ST_ERROR_STOP);
2235 /* Match SYNC ALL/IMAGES/MEMORY statement. Syntax:
2236 SYNC ALL [(sync-stat-list)]
2237 SYNC MEMORY [(sync-stat-list)]
2238 SYNC IMAGES (image-set [, sync-stat-list] )
2239 with sync-stat is int-expr or *. */
2241 static match
2242 sync_statement (gfc_statement st)
2244 match m;
2245 gfc_expr *tmp, *imageset, *stat, *errmsg;
2246 bool saw_stat, saw_errmsg;
2248 tmp = imageset = stat = errmsg = NULL;
2249 saw_stat = saw_errmsg = false;
2251 if (gfc_pure (NULL))
2253 gfc_error ("Image control statement SYNC at %C in PURE procedure");
2254 return MATCH_ERROR;
2257 if (gfc_notify_std (GFC_STD_F2008, "Fortran 2008: SYNC statement at %C")
2258 == FAILURE)
2259 return MATCH_ERROR;
2261 if (gfc_option.coarray == GFC_FCOARRAY_NONE)
2263 gfc_fatal_error ("Coarrays disabled at %C, use -fcoarray= to enable");
2264 return MATCH_ERROR;
2267 if (gfc_find_state (COMP_CRITICAL) == SUCCESS)
2269 gfc_error ("Image control statement SYNC at %C in CRITICAL block");
2270 return MATCH_ERROR;
2273 if (gfc_match_eos () == MATCH_YES)
2275 if (st == ST_SYNC_IMAGES)
2276 goto syntax;
2277 goto done;
2280 if (gfc_match_char ('(') != MATCH_YES)
2281 goto syntax;
2283 if (st == ST_SYNC_IMAGES)
2285 /* Denote '*' as imageset == NULL. */
2286 m = gfc_match_char ('*');
2287 if (m == MATCH_ERROR)
2288 goto syntax;
2289 if (m == MATCH_NO)
2291 if (gfc_match ("%e", &imageset) != MATCH_YES)
2292 goto syntax;
2294 m = gfc_match_char (',');
2295 if (m == MATCH_ERROR)
2296 goto syntax;
2297 if (m == MATCH_NO)
2299 m = gfc_match_char (')');
2300 if (m == MATCH_YES)
2301 goto done;
2302 goto syntax;
2306 for (;;)
2308 m = gfc_match (" stat = %v", &tmp);
2309 if (m == MATCH_ERROR)
2310 goto syntax;
2311 if (m == MATCH_YES)
2313 if (saw_stat)
2315 gfc_error ("Redundant STAT tag found at %L ", &tmp->where);
2316 goto cleanup;
2318 stat = tmp;
2319 saw_stat = true;
2321 if (gfc_match_char (',') == MATCH_YES)
2322 continue;
2325 m = gfc_match (" errmsg = %v", &tmp);
2326 if (m == MATCH_ERROR)
2327 goto syntax;
2328 if (m == MATCH_YES)
2330 if (saw_errmsg)
2332 gfc_error ("Redundant ERRMSG tag found at %L ", &tmp->where);
2333 goto cleanup;
2335 errmsg = tmp;
2336 saw_errmsg = true;
2338 if (gfc_match_char (',') == MATCH_YES)
2339 continue;
2342 gfc_gobble_whitespace ();
2344 if (gfc_peek_char () == ')')
2345 break;
2347 goto syntax;
2350 if (gfc_match (" )%t") != MATCH_YES)
2351 goto syntax;
2353 done:
2354 switch (st)
2356 case ST_SYNC_ALL:
2357 new_st.op = EXEC_SYNC_ALL;
2358 break;
2359 case ST_SYNC_IMAGES:
2360 new_st.op = EXEC_SYNC_IMAGES;
2361 break;
2362 case ST_SYNC_MEMORY:
2363 new_st.op = EXEC_SYNC_MEMORY;
2364 break;
2365 default:
2366 gcc_unreachable ();
2369 new_st.expr1 = imageset;
2370 new_st.expr2 = stat;
2371 new_st.expr3 = errmsg;
2373 return MATCH_YES;
2375 syntax:
2376 gfc_syntax_error (st);
2378 cleanup:
2379 gfc_free_expr (tmp);
2380 gfc_free_expr (imageset);
2381 gfc_free_expr (stat);
2382 gfc_free_expr (errmsg);
2384 return MATCH_ERROR;
2388 /* Match SYNC ALL statement. */
2390 match
2391 gfc_match_sync_all (void)
2393 return sync_statement (ST_SYNC_ALL);
2397 /* Match SYNC IMAGES statement. */
2399 match
2400 gfc_match_sync_images (void)
2402 return sync_statement (ST_SYNC_IMAGES);
2406 /* Match SYNC MEMORY statement. */
2408 match
2409 gfc_match_sync_memory (void)
2411 return sync_statement (ST_SYNC_MEMORY);
2415 /* Match a CONTINUE statement. */
2417 match
2418 gfc_match_continue (void)
2420 if (gfc_match_eos () != MATCH_YES)
2422 gfc_syntax_error (ST_CONTINUE);
2423 return MATCH_ERROR;
2426 new_st.op = EXEC_CONTINUE;
2427 return MATCH_YES;
2431 /* Match the (deprecated) ASSIGN statement. */
2433 match
2434 gfc_match_assign (void)
2436 gfc_expr *expr;
2437 gfc_st_label *label;
2439 if (gfc_match (" %l", &label) == MATCH_YES)
2441 if (gfc_reference_st_label (label, ST_LABEL_UNKNOWN) == FAILURE)
2442 return MATCH_ERROR;
2443 if (gfc_match (" to %v%t", &expr) == MATCH_YES)
2445 if (gfc_notify_std (GFC_STD_F95_DEL, "Deleted feature: ASSIGN "
2446 "statement at %C")
2447 == FAILURE)
2448 return MATCH_ERROR;
2450 expr->symtree->n.sym->attr.assign = 1;
2452 new_st.op = EXEC_LABEL_ASSIGN;
2453 new_st.label1 = label;
2454 new_st.expr1 = expr;
2455 return MATCH_YES;
2458 return MATCH_NO;
2462 /* Match the GO TO statement. As a computed GOTO statement is
2463 matched, it is transformed into an equivalent SELECT block. No
2464 tree is necessary, and the resulting jumps-to-jumps are
2465 specifically optimized away by the back end. */
2467 match
2468 gfc_match_goto (void)
2470 gfc_code *head, *tail;
2471 gfc_expr *expr;
2472 gfc_case *cp;
2473 gfc_st_label *label;
2474 int i;
2475 match m;
2477 if (gfc_match (" %l%t", &label) == MATCH_YES)
2479 if (gfc_reference_st_label (label, ST_LABEL_TARGET) == FAILURE)
2480 return MATCH_ERROR;
2482 new_st.op = EXEC_GOTO;
2483 new_st.label1 = label;
2484 return MATCH_YES;
2487 /* The assigned GO TO statement. */
2489 if (gfc_match_variable (&expr, 0) == MATCH_YES)
2491 if (gfc_notify_std (GFC_STD_F95_DEL, "Deleted feature: Assigned GOTO "
2492 "statement at %C")
2493 == FAILURE)
2494 return MATCH_ERROR;
2496 new_st.op = EXEC_GOTO;
2497 new_st.expr1 = expr;
2499 if (gfc_match_eos () == MATCH_YES)
2500 return MATCH_YES;
2502 /* Match label list. */
2503 gfc_match_char (',');
2504 if (gfc_match_char ('(') != MATCH_YES)
2506 gfc_syntax_error (ST_GOTO);
2507 return MATCH_ERROR;
2509 head = tail = NULL;
2513 m = gfc_match_st_label (&label);
2514 if (m != MATCH_YES)
2515 goto syntax;
2517 if (gfc_reference_st_label (label, ST_LABEL_TARGET) == FAILURE)
2518 goto cleanup;
2520 if (head == NULL)
2521 head = tail = gfc_get_code ();
2522 else
2524 tail->block = gfc_get_code ();
2525 tail = tail->block;
2528 tail->label1 = label;
2529 tail->op = EXEC_GOTO;
2531 while (gfc_match_char (',') == MATCH_YES);
2533 if (gfc_match (")%t") != MATCH_YES)
2534 goto syntax;
2536 if (head == NULL)
2538 gfc_error ("Statement label list in GOTO at %C cannot be empty");
2539 goto syntax;
2541 new_st.block = head;
2543 return MATCH_YES;
2546 /* Last chance is a computed GO TO statement. */
2547 if (gfc_match_char ('(') != MATCH_YES)
2549 gfc_syntax_error (ST_GOTO);
2550 return MATCH_ERROR;
2553 head = tail = NULL;
2554 i = 1;
2558 m = gfc_match_st_label (&label);
2559 if (m != MATCH_YES)
2560 goto syntax;
2562 if (gfc_reference_st_label (label, ST_LABEL_TARGET) == FAILURE)
2563 goto cleanup;
2565 if (head == NULL)
2566 head = tail = gfc_get_code ();
2567 else
2569 tail->block = gfc_get_code ();
2570 tail = tail->block;
2573 cp = gfc_get_case ();
2574 cp->low = cp->high = gfc_get_int_expr (gfc_default_integer_kind,
2575 NULL, i++);
2577 tail->op = EXEC_SELECT;
2578 tail->ext.case_list = cp;
2580 tail->next = gfc_get_code ();
2581 tail->next->op = EXEC_GOTO;
2582 tail->next->label1 = label;
2584 while (gfc_match_char (',') == MATCH_YES);
2586 if (gfc_match_char (')') != MATCH_YES)
2587 goto syntax;
2589 if (head == NULL)
2591 gfc_error ("Statement label list in GOTO at %C cannot be empty");
2592 goto syntax;
2595 /* Get the rest of the statement. */
2596 gfc_match_char (',');
2598 if (gfc_match (" %e%t", &expr) != MATCH_YES)
2599 goto syntax;
2601 if (gfc_notify_std (GFC_STD_F95_OBS, "Obsolescent feature: Computed GOTO "
2602 "at %C") == FAILURE)
2603 return MATCH_ERROR;
2605 /* At this point, a computed GOTO has been fully matched and an
2606 equivalent SELECT statement constructed. */
2608 new_st.op = EXEC_SELECT;
2609 new_st.expr1 = NULL;
2611 /* Hack: For a "real" SELECT, the expression is in expr. We put
2612 it in expr2 so we can distinguish then and produce the correct
2613 diagnostics. */
2614 new_st.expr2 = expr;
2615 new_st.block = head;
2616 return MATCH_YES;
2618 syntax:
2619 gfc_syntax_error (ST_GOTO);
2620 cleanup:
2621 gfc_free_statements (head);
2622 return MATCH_ERROR;
2626 /* Frees a list of gfc_alloc structures. */
2628 void
2629 gfc_free_alloc_list (gfc_alloc *p)
2631 gfc_alloc *q;
2633 for (; p; p = q)
2635 q = p->next;
2636 gfc_free_expr (p->expr);
2637 gfc_free (p);
2642 /* Match a Fortran 2003 derived-type-spec (F03:R455), which is just the name of
2643 an accessible derived type. */
2645 static match
2646 match_derived_type_spec (gfc_typespec *ts)
2648 locus old_locus;
2649 gfc_symbol *derived;
2651 old_locus = gfc_current_locus;
2653 if (gfc_match_symbol (&derived, 1) == MATCH_YES)
2655 if (derived->attr.flavor == FL_DERIVED)
2657 ts->type = BT_DERIVED;
2658 ts->u.derived = derived;
2659 return MATCH_YES;
2661 else
2663 /* Enforce F03:C476. */
2664 gfc_error ("'%s' at %L is not an accessible derived type",
2665 derived->name, &gfc_current_locus);
2666 return MATCH_ERROR;
2670 gfc_current_locus = old_locus;
2671 return MATCH_NO;
2675 /* Match a Fortran 2003 type-spec (F03:R401). This is similar to
2676 gfc_match_decl_type_spec() from decl.c, with the following exceptions:
2677 It only includes the intrinsic types from the Fortran 2003 standard
2678 (thus, neither BYTE nor forms like REAL*4 are allowed). Additionally,
2679 the implicit_flag is not needed, so it was removed. Derived types are
2680 identified by their name alone. */
2682 static match
2683 match_type_spec (gfc_typespec *ts)
2685 match m;
2686 locus old_locus;
2688 gfc_clear_ts (ts);
2689 old_locus = gfc_current_locus;
2691 if (gfc_match ("integer") == MATCH_YES)
2693 ts->type = BT_INTEGER;
2694 ts->kind = gfc_default_integer_kind;
2695 goto kind_selector;
2698 if (gfc_match ("real") == MATCH_YES)
2700 ts->type = BT_REAL;
2701 ts->kind = gfc_default_real_kind;
2702 goto kind_selector;
2705 if (gfc_match ("double precision") == MATCH_YES)
2707 ts->type = BT_REAL;
2708 ts->kind = gfc_default_double_kind;
2709 return MATCH_YES;
2712 if (gfc_match ("complex") == MATCH_YES)
2714 ts->type = BT_COMPLEX;
2715 ts->kind = gfc_default_complex_kind;
2716 goto kind_selector;
2719 if (gfc_match ("character") == MATCH_YES)
2721 ts->type = BT_CHARACTER;
2722 goto char_selector;
2725 if (gfc_match ("logical") == MATCH_YES)
2727 ts->type = BT_LOGICAL;
2728 ts->kind = gfc_default_logical_kind;
2729 goto kind_selector;
2732 m = match_derived_type_spec (ts);
2733 if (m == MATCH_YES)
2735 old_locus = gfc_current_locus;
2736 if (gfc_match (" :: ") != MATCH_YES)
2737 return MATCH_ERROR;
2738 gfc_current_locus = old_locus;
2739 /* Enfore F03:C401. */
2740 if (ts->u.derived->attr.abstract)
2742 gfc_error ("Derived type '%s' at %L may not be ABSTRACT",
2743 ts->u.derived->name, &old_locus);
2744 return MATCH_ERROR;
2746 return MATCH_YES;
2748 else if (m == MATCH_ERROR && gfc_match (" :: ") == MATCH_YES)
2749 return MATCH_ERROR;
2751 /* If a type is not matched, simply return MATCH_NO. */
2752 gfc_current_locus = old_locus;
2753 return MATCH_NO;
2755 kind_selector:
2757 gfc_gobble_whitespace ();
2758 if (gfc_peek_ascii_char () == '*')
2760 gfc_error ("Invalid type-spec at %C");
2761 return MATCH_ERROR;
2764 m = gfc_match_kind_spec (ts, false);
2766 if (m == MATCH_NO)
2767 m = MATCH_YES; /* No kind specifier found. */
2769 return m;
2771 char_selector:
2773 m = gfc_match_char_spec (ts);
2775 if (m == MATCH_NO)
2776 m = MATCH_YES; /* No kind specifier found. */
2778 return m;
2782 /* Match an ALLOCATE statement. */
2784 match
2785 gfc_match_allocate (void)
2787 gfc_alloc *head, *tail;
2788 gfc_expr *stat, *errmsg, *tmp, *source, *mold;
2789 gfc_typespec ts;
2790 gfc_symbol *sym;
2791 match m;
2792 locus old_locus;
2793 bool saw_stat, saw_errmsg, saw_source, saw_mold, b1, b2, b3;
2795 head = tail = NULL;
2796 stat = errmsg = source = mold = tmp = NULL;
2797 saw_stat = saw_errmsg = saw_source = saw_mold = false;
2799 if (gfc_match_char ('(') != MATCH_YES)
2800 goto syntax;
2802 /* Match an optional type-spec. */
2803 old_locus = gfc_current_locus;
2804 m = match_type_spec (&ts);
2805 if (m == MATCH_ERROR)
2806 goto cleanup;
2807 else if (m == MATCH_NO)
2808 ts.type = BT_UNKNOWN;
2809 else
2811 if (gfc_match (" :: ") == MATCH_YES)
2813 if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: typespec in "
2814 "ALLOCATE at %L", &old_locus) == FAILURE)
2815 goto cleanup;
2817 else
2819 ts.type = BT_UNKNOWN;
2820 gfc_current_locus = old_locus;
2824 for (;;)
2826 if (head == NULL)
2827 head = tail = gfc_get_alloc ();
2828 else
2830 tail->next = gfc_get_alloc ();
2831 tail = tail->next;
2834 m = gfc_match_variable (&tail->expr, 0);
2835 if (m == MATCH_NO)
2836 goto syntax;
2837 if (m == MATCH_ERROR)
2838 goto cleanup;
2840 if (gfc_check_do_variable (tail->expr->symtree))
2841 goto cleanup;
2843 if (gfc_pure (NULL) && gfc_impure_variable (tail->expr->symtree->n.sym))
2845 gfc_error ("Bad allocate-object at %C for a PURE procedure");
2846 goto cleanup;
2849 /* The ALLOCATE statement had an optional typespec. Check the
2850 constraints. */
2851 if (ts.type != BT_UNKNOWN)
2853 /* Enforce F03:C624. */
2854 if (!gfc_type_compatible (&tail->expr->ts, &ts))
2856 gfc_error ("Type of entity at %L is type incompatible with "
2857 "typespec", &tail->expr->where);
2858 goto cleanup;
2861 /* Enforce F03:C627. */
2862 if (ts.kind != tail->expr->ts.kind)
2864 gfc_error ("Kind type parameter for entity at %L differs from "
2865 "the kind type parameter of the typespec",
2866 &tail->expr->where);
2867 goto cleanup;
2871 if (tail->expr->ts.type == BT_DERIVED)
2872 tail->expr->ts.u.derived = gfc_use_derived (tail->expr->ts.u.derived);
2874 /* FIXME: disable the checking on derived types and arrays. */
2875 sym = tail->expr->symtree->n.sym;
2876 b1 = !(tail->expr->ref
2877 && (tail->expr->ref->type == REF_COMPONENT
2878 || tail->expr->ref->type == REF_ARRAY));
2879 if (sym && sym->ts.type == BT_CLASS)
2880 b2 = !(CLASS_DATA (sym)->attr.allocatable
2881 || CLASS_DATA (sym)->attr.pointer);
2882 else
2883 b2 = sym && !(sym->attr.allocatable || sym->attr.pointer
2884 || sym->attr.proc_pointer);
2885 b3 = sym && sym->ns && sym->ns->proc_name
2886 && (sym->ns->proc_name->attr.allocatable
2887 || sym->ns->proc_name->attr.pointer
2888 || sym->ns->proc_name->attr.proc_pointer);
2889 if (b1 && b2 && !b3)
2891 gfc_error ("Allocate-object at %C is not a nonprocedure pointer "
2892 "or an allocatable variable");
2893 goto cleanup;
2896 if (gfc_peek_ascii_char () == '(' && !sym->attr.dimension)
2898 gfc_error ("Shape specification for allocatable scalar at %C");
2899 goto cleanup;
2902 if (gfc_match_char (',') != MATCH_YES)
2903 break;
2905 alloc_opt_list:
2907 m = gfc_match (" stat = %v", &tmp);
2908 if (m == MATCH_ERROR)
2909 goto cleanup;
2910 if (m == MATCH_YES)
2912 /* Enforce C630. */
2913 if (saw_stat)
2915 gfc_error ("Redundant STAT tag found at %L ", &tmp->where);
2916 goto cleanup;
2919 stat = tmp;
2920 saw_stat = true;
2922 if (gfc_check_do_variable (stat->symtree))
2923 goto cleanup;
2925 if (gfc_match_char (',') == MATCH_YES)
2926 goto alloc_opt_list;
2929 m = gfc_match (" errmsg = %v", &tmp);
2930 if (m == MATCH_ERROR)
2931 goto cleanup;
2932 if (m == MATCH_YES)
2934 if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: ERRMSG tag at %L",
2935 &tmp->where) == FAILURE)
2936 goto cleanup;
2938 /* Enforce C630. */
2939 if (saw_errmsg)
2941 gfc_error ("Redundant ERRMSG tag found at %L ", &tmp->where);
2942 goto cleanup;
2945 errmsg = tmp;
2946 saw_errmsg = true;
2948 if (gfc_match_char (',') == MATCH_YES)
2949 goto alloc_opt_list;
2952 m = gfc_match (" source = %e", &tmp);
2953 if (m == MATCH_ERROR)
2954 goto cleanup;
2955 if (m == MATCH_YES)
2957 if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: SOURCE tag at %L",
2958 &tmp->where) == FAILURE)
2959 goto cleanup;
2961 /* Enforce C630. */
2962 if (saw_source)
2964 gfc_error ("Redundant SOURCE tag found at %L ", &tmp->where);
2965 goto cleanup;
2968 /* The next 2 conditionals check C631. */
2969 if (ts.type != BT_UNKNOWN)
2971 gfc_error ("SOURCE tag at %L conflicts with the typespec at %L",
2972 &tmp->where, &old_locus);
2973 goto cleanup;
2976 if (head->next)
2978 gfc_error ("SOURCE tag at %L requires only a single entity in "
2979 "the allocation-list", &tmp->where);
2980 goto cleanup;
2983 source = tmp;
2984 saw_source = true;
2986 if (gfc_match_char (',') == MATCH_YES)
2987 goto alloc_opt_list;
2990 m = gfc_match (" mold = %e", &tmp);
2991 if (m == MATCH_ERROR)
2992 goto cleanup;
2993 if (m == MATCH_YES)
2995 if (gfc_notify_std (GFC_STD_F2008, "Fortran 2008: MOLD tag at %L",
2996 &tmp->where) == FAILURE)
2997 goto cleanup;
2999 /* Check F08:C636. */
3000 if (saw_mold)
3002 gfc_error ("Redundant MOLD tag found at %L ", &tmp->where);
3003 goto cleanup;
3006 /* Check F08:C637. */
3007 if (ts.type != BT_UNKNOWN)
3009 gfc_error ("MOLD tag at %L conflicts with the typespec at %L",
3010 &tmp->where, &old_locus);
3011 goto cleanup;
3014 mold = tmp;
3015 saw_mold = true;
3016 mold->mold = 1;
3018 if (gfc_match_char (',') == MATCH_YES)
3019 goto alloc_opt_list;
3022 gfc_gobble_whitespace ();
3024 if (gfc_peek_char () == ')')
3025 break;
3029 if (gfc_match (" )%t") != MATCH_YES)
3030 goto syntax;
3032 /* Check F08:C637. */
3033 if (source && mold)
3035 gfc_error ("MOLD tag at %L conflicts with SOURCE tag at %L",
3036 &mold->where, &source->where);
3037 goto cleanup;
3040 new_st.op = EXEC_ALLOCATE;
3041 new_st.expr1 = stat;
3042 new_st.expr2 = errmsg;
3043 if (source)
3044 new_st.expr3 = source;
3045 else
3046 new_st.expr3 = mold;
3047 new_st.ext.alloc.list = head;
3048 new_st.ext.alloc.ts = ts;
3050 return MATCH_YES;
3052 syntax:
3053 gfc_syntax_error (ST_ALLOCATE);
3055 cleanup:
3056 gfc_free_expr (errmsg);
3057 gfc_free_expr (source);
3058 gfc_free_expr (stat);
3059 gfc_free_expr (mold);
3060 if (tmp && tmp->expr_type) gfc_free_expr (tmp);
3061 gfc_free_alloc_list (head);
3062 return MATCH_ERROR;
3066 /* Match a NULLIFY statement. A NULLIFY statement is transformed into
3067 a set of pointer assignments to intrinsic NULL(). */
3069 match
3070 gfc_match_nullify (void)
3072 gfc_code *tail;
3073 gfc_expr *e, *p;
3074 match m;
3076 tail = NULL;
3078 if (gfc_match_char ('(') != MATCH_YES)
3079 goto syntax;
3081 for (;;)
3083 m = gfc_match_variable (&p, 0);
3084 if (m == MATCH_ERROR)
3085 goto cleanup;
3086 if (m == MATCH_NO)
3087 goto syntax;
3089 if (gfc_check_do_variable (p->symtree))
3090 goto cleanup;
3092 if (gfc_pure (NULL) && gfc_impure_variable (p->symtree->n.sym))
3094 gfc_error ("Illegal variable in NULLIFY at %C for a PURE procedure");
3095 goto cleanup;
3098 /* build ' => NULL() '. */
3099 e = gfc_get_null_expr (&gfc_current_locus);
3101 /* Chain to list. */
3102 if (tail == NULL)
3103 tail = &new_st;
3104 else
3106 tail->next = gfc_get_code ();
3107 tail = tail->next;
3110 tail->op = EXEC_POINTER_ASSIGN;
3111 tail->expr1 = p;
3112 tail->expr2 = e;
3114 if (gfc_match (" )%t") == MATCH_YES)
3115 break;
3116 if (gfc_match_char (',') != MATCH_YES)
3117 goto syntax;
3120 return MATCH_YES;
3122 syntax:
3123 gfc_syntax_error (ST_NULLIFY);
3125 cleanup:
3126 gfc_free_statements (new_st.next);
3127 new_st.next = NULL;
3128 gfc_free_expr (new_st.expr1);
3129 new_st.expr1 = NULL;
3130 gfc_free_expr (new_st.expr2);
3131 new_st.expr2 = NULL;
3132 return MATCH_ERROR;
3136 /* Match a DEALLOCATE statement. */
3138 match
3139 gfc_match_deallocate (void)
3141 gfc_alloc *head, *tail;
3142 gfc_expr *stat, *errmsg, *tmp;
3143 gfc_symbol *sym;
3144 match m;
3145 bool saw_stat, saw_errmsg, b1, b2;
3147 head = tail = NULL;
3148 stat = errmsg = tmp = NULL;
3149 saw_stat = saw_errmsg = false;
3151 if (gfc_match_char ('(') != MATCH_YES)
3152 goto syntax;
3154 for (;;)
3156 if (head == NULL)
3157 head = tail = gfc_get_alloc ();
3158 else
3160 tail->next = gfc_get_alloc ();
3161 tail = tail->next;
3164 m = gfc_match_variable (&tail->expr, 0);
3165 if (m == MATCH_ERROR)
3166 goto cleanup;
3167 if (m == MATCH_NO)
3168 goto syntax;
3170 if (gfc_check_do_variable (tail->expr->symtree))
3171 goto cleanup;
3173 sym = tail->expr->symtree->n.sym;
3175 if (gfc_pure (NULL) && gfc_impure_variable (sym))
3177 gfc_error ("Illegal allocate-object at %C for a PURE procedure");
3178 goto cleanup;
3181 /* FIXME: disable the checking on derived types. */
3182 b1 = !(tail->expr->ref
3183 && (tail->expr->ref->type == REF_COMPONENT
3184 || tail->expr->ref->type == REF_ARRAY));
3185 if (sym && sym->ts.type == BT_CLASS)
3186 b2 = !(CLASS_DATA (sym)->attr.allocatable
3187 || CLASS_DATA (sym)->attr.pointer);
3188 else
3189 b2 = sym && !(sym->attr.allocatable || sym->attr.pointer
3190 || sym->attr.proc_pointer);
3191 if (b1 && b2)
3193 gfc_error ("Allocate-object at %C is not a nonprocedure pointer "
3194 "or an allocatable variable");
3195 goto cleanup;
3198 if (gfc_match_char (',') != MATCH_YES)
3199 break;
3201 dealloc_opt_list:
3203 m = gfc_match (" stat = %v", &tmp);
3204 if (m == MATCH_ERROR)
3205 goto cleanup;
3206 if (m == MATCH_YES)
3208 if (saw_stat)
3210 gfc_error ("Redundant STAT tag found at %L ", &tmp->where);
3211 gfc_free_expr (tmp);
3212 goto cleanup;
3215 stat = tmp;
3216 saw_stat = true;
3218 if (gfc_check_do_variable (stat->symtree))
3219 goto cleanup;
3221 if (gfc_match_char (',') == MATCH_YES)
3222 goto dealloc_opt_list;
3225 m = gfc_match (" errmsg = %v", &tmp);
3226 if (m == MATCH_ERROR)
3227 goto cleanup;
3228 if (m == MATCH_YES)
3230 if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: ERRMSG at %L",
3231 &tmp->where) == FAILURE)
3232 goto cleanup;
3234 if (saw_errmsg)
3236 gfc_error ("Redundant ERRMSG tag found at %L ", &tmp->where);
3237 gfc_free_expr (tmp);
3238 goto cleanup;
3241 errmsg = tmp;
3242 saw_errmsg = true;
3244 if (gfc_match_char (',') == MATCH_YES)
3245 goto dealloc_opt_list;
3248 gfc_gobble_whitespace ();
3250 if (gfc_peek_char () == ')')
3251 break;
3254 if (gfc_match (" )%t") != MATCH_YES)
3255 goto syntax;
3257 new_st.op = EXEC_DEALLOCATE;
3258 new_st.expr1 = stat;
3259 new_st.expr2 = errmsg;
3260 new_st.ext.alloc.list = head;
3262 return MATCH_YES;
3264 syntax:
3265 gfc_syntax_error (ST_DEALLOCATE);
3267 cleanup:
3268 gfc_free_expr (errmsg);
3269 gfc_free_expr (stat);
3270 gfc_free_alloc_list (head);
3271 return MATCH_ERROR;
3275 /* Match a RETURN statement. */
3277 match
3278 gfc_match_return (void)
3280 gfc_expr *e;
3281 match m;
3282 gfc_compile_state s;
3284 e = NULL;
3286 if (gfc_find_state (COMP_CRITICAL) == SUCCESS)
3288 gfc_error ("Image control statement RETURN at %C in CRITICAL block");
3289 return MATCH_ERROR;
3292 if (gfc_match_eos () == MATCH_YES)
3293 goto done;
3295 if (gfc_find_state (COMP_SUBROUTINE) == FAILURE)
3297 gfc_error ("Alternate RETURN statement at %C is only allowed within "
3298 "a SUBROUTINE");
3299 goto cleanup;
3302 if (gfc_notify_std (GFC_STD_F95_OBS, "Obsolescent feature: Alternate RETURN "
3303 "at %C") == FAILURE)
3304 return MATCH_ERROR;
3306 if (gfc_current_form == FORM_FREE)
3308 /* The following are valid, so we can't require a blank after the
3309 RETURN keyword:
3310 return+1
3311 return(1) */
3312 char c = gfc_peek_ascii_char ();
3313 if (ISALPHA (c) || ISDIGIT (c))
3314 return MATCH_NO;
3317 m = gfc_match (" %e%t", &e);
3318 if (m == MATCH_YES)
3319 goto done;
3320 if (m == MATCH_ERROR)
3321 goto cleanup;
3323 gfc_syntax_error (ST_RETURN);
3325 cleanup:
3326 gfc_free_expr (e);
3327 return MATCH_ERROR;
3329 done:
3330 gfc_enclosing_unit (&s);
3331 if (s == COMP_PROGRAM
3332 && gfc_notify_std (GFC_STD_GNU, "Extension: RETURN statement in "
3333 "main program at %C") == FAILURE)
3334 return MATCH_ERROR;
3336 new_st.op = EXEC_RETURN;
3337 new_st.expr1 = e;
3339 return MATCH_YES;
3343 /* Match the call of a type-bound procedure, if CALL%var has already been
3344 matched and var found to be a derived-type variable. */
3346 static match
3347 match_typebound_call (gfc_symtree* varst)
3349 gfc_expr* base;
3350 match m;
3352 base = gfc_get_expr ();
3353 base->expr_type = EXPR_VARIABLE;
3354 base->symtree = varst;
3355 base->where = gfc_current_locus;
3356 gfc_set_sym_referenced (varst->n.sym);
3358 m = gfc_match_varspec (base, 0, true, true);
3359 if (m == MATCH_NO)
3360 gfc_error ("Expected component reference at %C");
3361 if (m != MATCH_YES)
3362 return MATCH_ERROR;
3364 if (gfc_match_eos () != MATCH_YES)
3366 gfc_error ("Junk after CALL at %C");
3367 return MATCH_ERROR;
3370 if (base->expr_type == EXPR_COMPCALL)
3371 new_st.op = EXEC_COMPCALL;
3372 else if (base->expr_type == EXPR_PPC)
3373 new_st.op = EXEC_CALL_PPC;
3374 else
3376 gfc_error ("Expected type-bound procedure or procedure pointer component "
3377 "at %C");
3378 return MATCH_ERROR;
3380 new_st.expr1 = base;
3382 return MATCH_YES;
3386 /* Match a CALL statement. The tricky part here are possible
3387 alternate return specifiers. We handle these by having all
3388 "subroutines" actually return an integer via a register that gives
3389 the return number. If the call specifies alternate returns, we
3390 generate code for a SELECT statement whose case clauses contain
3391 GOTOs to the various labels. */
3393 match
3394 gfc_match_call (void)
3396 char name[GFC_MAX_SYMBOL_LEN + 1];
3397 gfc_actual_arglist *a, *arglist;
3398 gfc_case *new_case;
3399 gfc_symbol *sym;
3400 gfc_symtree *st;
3401 gfc_code *c;
3402 match m;
3403 int i;
3405 arglist = NULL;
3407 m = gfc_match ("% %n", name);
3408 if (m == MATCH_NO)
3409 goto syntax;
3410 if (m != MATCH_YES)
3411 return m;
3413 if (gfc_get_ha_sym_tree (name, &st))
3414 return MATCH_ERROR;
3416 sym = st->n.sym;
3418 /* If this is a variable of derived-type, it probably starts a type-bound
3419 procedure call. */
3420 if ((sym->attr.flavor != FL_PROCEDURE
3421 || gfc_is_function_return_value (sym, gfc_current_ns))
3422 && (sym->ts.type == BT_DERIVED || sym->ts.type == BT_CLASS))
3423 return match_typebound_call (st);
3425 /* If it does not seem to be callable (include functions so that the
3426 right association is made. They are thrown out in resolution.)
3427 ... */
3428 if (!sym->attr.generic
3429 && !sym->attr.subroutine
3430 && !sym->attr.function)
3432 if (!(sym->attr.external && !sym->attr.referenced))
3434 /* ...create a symbol in this scope... */
3435 if (sym->ns != gfc_current_ns
3436 && gfc_get_sym_tree (name, NULL, &st, false) == 1)
3437 return MATCH_ERROR;
3439 if (sym != st->n.sym)
3440 sym = st->n.sym;
3443 /* ...and then to try to make the symbol into a subroutine. */
3444 if (gfc_add_subroutine (&sym->attr, sym->name, NULL) == FAILURE)
3445 return MATCH_ERROR;
3448 gfc_set_sym_referenced (sym);
3450 if (gfc_match_eos () != MATCH_YES)
3452 m = gfc_match_actual_arglist (1, &arglist);
3453 if (m == MATCH_NO)
3454 goto syntax;
3455 if (m == MATCH_ERROR)
3456 goto cleanup;
3458 if (gfc_match_eos () != MATCH_YES)
3459 goto syntax;
3462 /* If any alternate return labels were found, construct a SELECT
3463 statement that will jump to the right place. */
3465 i = 0;
3466 for (a = arglist; a; a = a->next)
3467 if (a->expr == NULL)
3468 i = 1;
3470 if (i)
3472 gfc_symtree *select_st;
3473 gfc_symbol *select_sym;
3474 char name[GFC_MAX_SYMBOL_LEN + 1];
3476 new_st.next = c = gfc_get_code ();
3477 c->op = EXEC_SELECT;
3478 sprintf (name, "_result_%s", sym->name);
3479 gfc_get_ha_sym_tree (name, &select_st); /* Can't fail. */
3481 select_sym = select_st->n.sym;
3482 select_sym->ts.type = BT_INTEGER;
3483 select_sym->ts.kind = gfc_default_integer_kind;
3484 gfc_set_sym_referenced (select_sym);
3485 c->expr1 = gfc_get_expr ();
3486 c->expr1->expr_type = EXPR_VARIABLE;
3487 c->expr1->symtree = select_st;
3488 c->expr1->ts = select_sym->ts;
3489 c->expr1->where = gfc_current_locus;
3491 i = 0;
3492 for (a = arglist; a; a = a->next)
3494 if (a->expr != NULL)
3495 continue;
3497 if (gfc_reference_st_label (a->label, ST_LABEL_TARGET) == FAILURE)
3498 continue;
3500 i++;
3502 c->block = gfc_get_code ();
3503 c = c->block;
3504 c->op = EXEC_SELECT;
3506 new_case = gfc_get_case ();
3507 new_case->high = gfc_get_int_expr (gfc_default_integer_kind, NULL, i);
3508 new_case->low = new_case->high;
3509 c->ext.case_list = new_case;
3511 c->next = gfc_get_code ();
3512 c->next->op = EXEC_GOTO;
3513 c->next->label1 = a->label;
3517 new_st.op = EXEC_CALL;
3518 new_st.symtree = st;
3519 new_st.ext.actual = arglist;
3521 return MATCH_YES;
3523 syntax:
3524 gfc_syntax_error (ST_CALL);
3526 cleanup:
3527 gfc_free_actual_arglist (arglist);
3528 return MATCH_ERROR;
3532 /* Given a name, return a pointer to the common head structure,
3533 creating it if it does not exist. If FROM_MODULE is nonzero, we
3534 mangle the name so that it doesn't interfere with commons defined
3535 in the using namespace.
3536 TODO: Add to global symbol tree. */
3538 gfc_common_head *
3539 gfc_get_common (const char *name, int from_module)
3541 gfc_symtree *st;
3542 static int serial = 0;
3543 char mangled_name[GFC_MAX_SYMBOL_LEN + 1];
3545 if (from_module)
3547 /* A use associated common block is only needed to correctly layout
3548 the variables it contains. */
3549 snprintf (mangled_name, GFC_MAX_SYMBOL_LEN, "_%d_%s", serial++, name);
3550 st = gfc_new_symtree (&gfc_current_ns->common_root, mangled_name);
3552 else
3554 st = gfc_find_symtree (gfc_current_ns->common_root, name);
3556 if (st == NULL)
3557 st = gfc_new_symtree (&gfc_current_ns->common_root, name);
3560 if (st->n.common == NULL)
3562 st->n.common = gfc_get_common_head ();
3563 st->n.common->where = gfc_current_locus;
3564 strcpy (st->n.common->name, name);
3567 return st->n.common;
3571 /* Match a common block name. */
3573 match match_common_name (char *name)
3575 match m;
3577 if (gfc_match_char ('/') == MATCH_NO)
3579 name[0] = '\0';
3580 return MATCH_YES;
3583 if (gfc_match_char ('/') == MATCH_YES)
3585 name[0] = '\0';
3586 return MATCH_YES;
3589 m = gfc_match_name (name);
3591 if (m == MATCH_ERROR)
3592 return MATCH_ERROR;
3593 if (m == MATCH_YES && gfc_match_char ('/') == MATCH_YES)
3594 return MATCH_YES;
3596 gfc_error ("Syntax error in common block name at %C");
3597 return MATCH_ERROR;
3601 /* Match a COMMON statement. */
3603 match
3604 gfc_match_common (void)
3606 gfc_symbol *sym, **head, *tail, *other, *old_blank_common;
3607 char name[GFC_MAX_SYMBOL_LEN + 1];
3608 gfc_common_head *t;
3609 gfc_array_spec *as;
3610 gfc_equiv *e1, *e2;
3611 match m;
3612 gfc_gsymbol *gsym;
3614 old_blank_common = gfc_current_ns->blank_common.head;
3615 if (old_blank_common)
3617 while (old_blank_common->common_next)
3618 old_blank_common = old_blank_common->common_next;
3621 as = NULL;
3623 for (;;)
3625 m = match_common_name (name);
3626 if (m == MATCH_ERROR)
3627 goto cleanup;
3629 gsym = gfc_get_gsymbol (name);
3630 if (gsym->type != GSYM_UNKNOWN && gsym->type != GSYM_COMMON)
3632 gfc_error ("Symbol '%s' at %C is already an external symbol that "
3633 "is not COMMON", name);
3634 goto cleanup;
3637 if (gsym->type == GSYM_UNKNOWN)
3639 gsym->type = GSYM_COMMON;
3640 gsym->where = gfc_current_locus;
3641 gsym->defined = 1;
3644 gsym->used = 1;
3646 if (name[0] == '\0')
3648 t = &gfc_current_ns->blank_common;
3649 if (t->head == NULL)
3650 t->where = gfc_current_locus;
3652 else
3654 t = gfc_get_common (name, 0);
3656 head = &t->head;
3658 if (*head == NULL)
3659 tail = NULL;
3660 else
3662 tail = *head;
3663 while (tail->common_next)
3664 tail = tail->common_next;
3667 /* Grab the list of symbols. */
3668 for (;;)
3670 m = gfc_match_symbol (&sym, 0);
3671 if (m == MATCH_ERROR)
3672 goto cleanup;
3673 if (m == MATCH_NO)
3674 goto syntax;
3676 /* Store a ref to the common block for error checking. */
3677 sym->common_block = t;
3679 /* See if we know the current common block is bind(c), and if
3680 so, then see if we can check if the symbol is (which it'll
3681 need to be). This can happen if the bind(c) attr stmt was
3682 applied to the common block, and the variable(s) already
3683 defined, before declaring the common block. */
3684 if (t->is_bind_c == 1)
3686 if (sym->ts.type != BT_UNKNOWN && sym->ts.is_c_interop != 1)
3688 /* If we find an error, just print it and continue,
3689 cause it's just semantic, and we can see if there
3690 are more errors. */
3691 gfc_error_now ("Variable '%s' at %L in common block '%s' "
3692 "at %C must be declared with a C "
3693 "interoperable kind since common block "
3694 "'%s' is bind(c)",
3695 sym->name, &(sym->declared_at), t->name,
3696 t->name);
3699 if (sym->attr.is_bind_c == 1)
3700 gfc_error_now ("Variable '%s' in common block "
3701 "'%s' at %C can not be bind(c) since "
3702 "it is not global", sym->name, t->name);
3705 if (sym->attr.in_common)
3707 gfc_error ("Symbol '%s' at %C is already in a COMMON block",
3708 sym->name);
3709 goto cleanup;
3712 if (((sym->value != NULL && sym->value->expr_type != EXPR_NULL)
3713 || sym->attr.data) && gfc_current_state () != COMP_BLOCK_DATA)
3715 if (gfc_notify_std (GFC_STD_GNU, "Initialized symbol '%s' at %C "
3716 "can only be COMMON in "
3717 "BLOCK DATA", sym->name)
3718 == FAILURE)
3719 goto cleanup;
3722 if (gfc_add_in_common (&sym->attr, sym->name, NULL) == FAILURE)
3723 goto cleanup;
3725 if (tail != NULL)
3726 tail->common_next = sym;
3727 else
3728 *head = sym;
3730 tail = sym;
3732 /* Deal with an optional array specification after the
3733 symbol name. */
3734 m = gfc_match_array_spec (&as, true, true);
3735 if (m == MATCH_ERROR)
3736 goto cleanup;
3738 if (m == MATCH_YES)
3740 if (as->type != AS_EXPLICIT)
3742 gfc_error ("Array specification for symbol '%s' in COMMON "
3743 "at %C must be explicit", sym->name);
3744 goto cleanup;
3747 if (gfc_add_dimension (&sym->attr, sym->name, NULL) == FAILURE)
3748 goto cleanup;
3750 if (sym->attr.pointer)
3752 gfc_error ("Symbol '%s' in COMMON at %C cannot be a "
3753 "POINTER array", sym->name);
3754 goto cleanup;
3757 sym->as = as;
3758 as = NULL;
3762 sym->common_head = t;
3764 /* Check to see if the symbol is already in an equivalence group.
3765 If it is, set the other members as being in common. */
3766 if (sym->attr.in_equivalence)
3768 for (e1 = gfc_current_ns->equiv; e1; e1 = e1->next)
3770 for (e2 = e1; e2; e2 = e2->eq)
3771 if (e2->expr->symtree->n.sym == sym)
3772 goto equiv_found;
3774 continue;
3776 equiv_found:
3778 for (e2 = e1; e2; e2 = e2->eq)
3780 other = e2->expr->symtree->n.sym;
3781 if (other->common_head
3782 && other->common_head != sym->common_head)
3784 gfc_error ("Symbol '%s', in COMMON block '%s' at "
3785 "%C is being indirectly equivalenced to "
3786 "another COMMON block '%s'",
3787 sym->name, sym->common_head->name,
3788 other->common_head->name);
3789 goto cleanup;
3791 other->attr.in_common = 1;
3792 other->common_head = t;
3798 gfc_gobble_whitespace ();
3799 if (gfc_match_eos () == MATCH_YES)
3800 goto done;
3801 if (gfc_peek_ascii_char () == '/')
3802 break;
3803 if (gfc_match_char (',') != MATCH_YES)
3804 goto syntax;
3805 gfc_gobble_whitespace ();
3806 if (gfc_peek_ascii_char () == '/')
3807 break;
3811 done:
3812 return MATCH_YES;
3814 syntax:
3815 gfc_syntax_error (ST_COMMON);
3817 cleanup:
3818 if (old_blank_common)
3819 old_blank_common->common_next = NULL;
3820 else
3821 gfc_current_ns->blank_common.head = NULL;
3822 gfc_free_array_spec (as);
3823 return MATCH_ERROR;
3827 /* Match a BLOCK DATA program unit. */
3829 match
3830 gfc_match_block_data (void)
3832 char name[GFC_MAX_SYMBOL_LEN + 1];
3833 gfc_symbol *sym;
3834 match m;
3836 if (gfc_match_eos () == MATCH_YES)
3838 gfc_new_block = NULL;
3839 return MATCH_YES;
3842 m = gfc_match ("% %n%t", name);
3843 if (m != MATCH_YES)
3844 return MATCH_ERROR;
3846 if (gfc_get_symbol (name, NULL, &sym))
3847 return MATCH_ERROR;
3849 if (gfc_add_flavor (&sym->attr, FL_BLOCK_DATA, sym->name, NULL) == FAILURE)
3850 return MATCH_ERROR;
3852 gfc_new_block = sym;
3854 return MATCH_YES;
3858 /* Free a namelist structure. */
3860 void
3861 gfc_free_namelist (gfc_namelist *name)
3863 gfc_namelist *n;
3865 for (; name; name = n)
3867 n = name->next;
3868 gfc_free (name);
3873 /* Match a NAMELIST statement. */
3875 match
3876 gfc_match_namelist (void)
3878 gfc_symbol *group_name, *sym;
3879 gfc_namelist *nl;
3880 match m, m2;
3882 m = gfc_match (" / %s /", &group_name);
3883 if (m == MATCH_NO)
3884 goto syntax;
3885 if (m == MATCH_ERROR)
3886 goto error;
3888 for (;;)
3890 if (group_name->ts.type != BT_UNKNOWN)
3892 gfc_error ("Namelist group name '%s' at %C already has a basic "
3893 "type of %s", group_name->name,
3894 gfc_typename (&group_name->ts));
3895 return MATCH_ERROR;
3898 if (group_name->attr.flavor == FL_NAMELIST
3899 && group_name->attr.use_assoc
3900 && gfc_notify_std (GFC_STD_GNU, "Namelist group name '%s' "
3901 "at %C already is USE associated and can"
3902 "not be respecified.", group_name->name)
3903 == FAILURE)
3904 return MATCH_ERROR;
3906 if (group_name->attr.flavor != FL_NAMELIST
3907 && gfc_add_flavor (&group_name->attr, FL_NAMELIST,
3908 group_name->name, NULL) == FAILURE)
3909 return MATCH_ERROR;
3911 for (;;)
3913 m = gfc_match_symbol (&sym, 1);
3914 if (m == MATCH_NO)
3915 goto syntax;
3916 if (m == MATCH_ERROR)
3917 goto error;
3919 if (sym->attr.in_namelist == 0
3920 && gfc_add_in_namelist (&sym->attr, sym->name, NULL) == FAILURE)
3921 goto error;
3923 /* Use gfc_error_check here, rather than goto error, so that
3924 these are the only errors for the next two lines. */
3925 if (sym->as && sym->as->type == AS_ASSUMED_SIZE)
3927 gfc_error ("Assumed size array '%s' in namelist '%s' at "
3928 "%C is not allowed", sym->name, group_name->name);
3929 gfc_error_check ();
3932 if (sym->ts.type == BT_CHARACTER && sym->ts.u.cl->length == NULL)
3934 gfc_error ("Assumed character length '%s' in namelist '%s' at "
3935 "%C is not allowed", sym->name, group_name->name);
3936 gfc_error_check ();
3939 nl = gfc_get_namelist ();
3940 nl->sym = sym;
3941 sym->refs++;
3943 if (group_name->namelist == NULL)
3944 group_name->namelist = group_name->namelist_tail = nl;
3945 else
3947 group_name->namelist_tail->next = nl;
3948 group_name->namelist_tail = nl;
3951 if (gfc_match_eos () == MATCH_YES)
3952 goto done;
3954 m = gfc_match_char (',');
3956 if (gfc_match_char ('/') == MATCH_YES)
3958 m2 = gfc_match (" %s /", &group_name);
3959 if (m2 == MATCH_YES)
3960 break;
3961 if (m2 == MATCH_ERROR)
3962 goto error;
3963 goto syntax;
3966 if (m != MATCH_YES)
3967 goto syntax;
3971 done:
3972 return MATCH_YES;
3974 syntax:
3975 gfc_syntax_error (ST_NAMELIST);
3977 error:
3978 return MATCH_ERROR;
3982 /* Match a MODULE statement. */
3984 match
3985 gfc_match_module (void)
3987 match m;
3989 m = gfc_match (" %s%t", &gfc_new_block);
3990 if (m != MATCH_YES)
3991 return m;
3993 if (gfc_add_flavor (&gfc_new_block->attr, FL_MODULE,
3994 gfc_new_block->name, NULL) == FAILURE)
3995 return MATCH_ERROR;
3997 return MATCH_YES;
4001 /* Free equivalence sets and lists. Recursively is the easiest way to
4002 do this. */
4004 void
4005 gfc_free_equiv (gfc_equiv *eq)
4007 if (eq == NULL)
4008 return;
4010 gfc_free_equiv (eq->eq);
4011 gfc_free_equiv (eq->next);
4012 gfc_free_expr (eq->expr);
4013 gfc_free (eq);
4017 /* Match an EQUIVALENCE statement. */
4019 match
4020 gfc_match_equivalence (void)
4022 gfc_equiv *eq, *set, *tail;
4023 gfc_ref *ref;
4024 gfc_symbol *sym;
4025 match m;
4026 gfc_common_head *common_head = NULL;
4027 bool common_flag;
4028 int cnt;
4030 tail = NULL;
4032 for (;;)
4034 eq = gfc_get_equiv ();
4035 if (tail == NULL)
4036 tail = eq;
4038 eq->next = gfc_current_ns->equiv;
4039 gfc_current_ns->equiv = eq;
4041 if (gfc_match_char ('(') != MATCH_YES)
4042 goto syntax;
4044 set = eq;
4045 common_flag = FALSE;
4046 cnt = 0;
4048 for (;;)
4050 m = gfc_match_equiv_variable (&set->expr);
4051 if (m == MATCH_ERROR)
4052 goto cleanup;
4053 if (m == MATCH_NO)
4054 goto syntax;
4056 /* count the number of objects. */
4057 cnt++;
4059 if (gfc_match_char ('%') == MATCH_YES)
4061 gfc_error ("Derived type component %C is not a "
4062 "permitted EQUIVALENCE member");
4063 goto cleanup;
4066 for (ref = set->expr->ref; ref; ref = ref->next)
4067 if (ref->type == REF_ARRAY && ref->u.ar.type == AR_SECTION)
4069 gfc_error ("Array reference in EQUIVALENCE at %C cannot "
4070 "be an array section");
4071 goto cleanup;
4074 sym = set->expr->symtree->n.sym;
4076 if (gfc_add_in_equivalence (&sym->attr, sym->name, NULL) == FAILURE)
4077 goto cleanup;
4079 if (sym->attr.in_common)
4081 common_flag = TRUE;
4082 common_head = sym->common_head;
4085 if (gfc_match_char (')') == MATCH_YES)
4086 break;
4088 if (gfc_match_char (',') != MATCH_YES)
4089 goto syntax;
4091 set->eq = gfc_get_equiv ();
4092 set = set->eq;
4095 if (cnt < 2)
4097 gfc_error ("EQUIVALENCE at %C requires two or more objects");
4098 goto cleanup;
4101 /* If one of the members of an equivalence is in common, then
4102 mark them all as being in common. Before doing this, check
4103 that members of the equivalence group are not in different
4104 common blocks. */
4105 if (common_flag)
4106 for (set = eq; set; set = set->eq)
4108 sym = set->expr->symtree->n.sym;
4109 if (sym->common_head && sym->common_head != common_head)
4111 gfc_error ("Attempt to indirectly overlap COMMON "
4112 "blocks %s and %s by EQUIVALENCE at %C",
4113 sym->common_head->name, common_head->name);
4114 goto cleanup;
4116 sym->attr.in_common = 1;
4117 sym->common_head = common_head;
4120 if (gfc_match_eos () == MATCH_YES)
4121 break;
4122 if (gfc_match_char (',') != MATCH_YES)
4124 gfc_error ("Expecting a comma in EQUIVALENCE at %C");
4125 goto cleanup;
4129 return MATCH_YES;
4131 syntax:
4132 gfc_syntax_error (ST_EQUIVALENCE);
4134 cleanup:
4135 eq = tail->next;
4136 tail->next = NULL;
4138 gfc_free_equiv (gfc_current_ns->equiv);
4139 gfc_current_ns->equiv = eq;
4141 return MATCH_ERROR;
4145 /* Check that a statement function is not recursive. This is done by looking
4146 for the statement function symbol(sym) by looking recursively through its
4147 expression(e). If a reference to sym is found, true is returned.
4148 12.5.4 requires that any variable of function that is implicitly typed
4149 shall have that type confirmed by any subsequent type declaration. The
4150 implicit typing is conveniently done here. */
4151 static bool
4152 recursive_stmt_fcn (gfc_expr *, gfc_symbol *);
4154 static bool
4155 check_stmt_fcn (gfc_expr *e, gfc_symbol *sym, int *f ATTRIBUTE_UNUSED)
4158 if (e == NULL)
4159 return false;
4161 switch (e->expr_type)
4163 case EXPR_FUNCTION:
4164 if (e->symtree == NULL)
4165 return false;
4167 /* Check the name before testing for nested recursion! */
4168 if (sym->name == e->symtree->n.sym->name)
4169 return true;
4171 /* Catch recursion via other statement functions. */
4172 if (e->symtree->n.sym->attr.proc == PROC_ST_FUNCTION
4173 && e->symtree->n.sym->value
4174 && recursive_stmt_fcn (e->symtree->n.sym->value, sym))
4175 return true;
4177 if (e->symtree->n.sym->ts.type == BT_UNKNOWN)
4178 gfc_set_default_type (e->symtree->n.sym, 0, NULL);
4180 break;
4182 case EXPR_VARIABLE:
4183 if (e->symtree && sym->name == e->symtree->n.sym->name)
4184 return true;
4186 if (e->symtree->n.sym->ts.type == BT_UNKNOWN)
4187 gfc_set_default_type (e->symtree->n.sym, 0, NULL);
4188 break;
4190 default:
4191 break;
4194 return false;
4198 static bool
4199 recursive_stmt_fcn (gfc_expr *e, gfc_symbol *sym)
4201 return gfc_traverse_expr (e, sym, check_stmt_fcn, 0);
4205 /* Match a statement function declaration. It is so easy to match
4206 non-statement function statements with a MATCH_ERROR as opposed to
4207 MATCH_NO that we suppress error message in most cases. */
4209 match
4210 gfc_match_st_function (void)
4212 gfc_error_buf old_error;
4213 gfc_symbol *sym;
4214 gfc_expr *expr;
4215 match m;
4217 m = gfc_match_symbol (&sym, 0);
4218 if (m != MATCH_YES)
4219 return m;
4221 gfc_push_error (&old_error);
4223 if (gfc_add_procedure (&sym->attr, PROC_ST_FUNCTION,
4224 sym->name, NULL) == FAILURE)
4225 goto undo_error;
4227 if (gfc_match_formal_arglist (sym, 1, 0) != MATCH_YES)
4228 goto undo_error;
4230 m = gfc_match (" = %e%t", &expr);
4231 if (m == MATCH_NO)
4232 goto undo_error;
4234 gfc_free_error (&old_error);
4235 if (m == MATCH_ERROR)
4236 return m;
4238 if (recursive_stmt_fcn (expr, sym))
4240 gfc_error ("Statement function at %L is recursive", &expr->where);
4241 return MATCH_ERROR;
4244 sym->value = expr;
4246 if (gfc_notify_std (GFC_STD_F95_OBS, "Obsolescent feature: "
4247 "Statement function at %C") == FAILURE)
4248 return MATCH_ERROR;
4250 return MATCH_YES;
4252 undo_error:
4253 gfc_pop_error (&old_error);
4254 return MATCH_NO;
4258 /***************** SELECT CASE subroutines ******************/
4260 /* Free a single case structure. */
4262 static void
4263 free_case (gfc_case *p)
4265 if (p->low == p->high)
4266 p->high = NULL;
4267 gfc_free_expr (p->low);
4268 gfc_free_expr (p->high);
4269 gfc_free (p);
4273 /* Free a list of case structures. */
4275 void
4276 gfc_free_case_list (gfc_case *p)
4278 gfc_case *q;
4280 for (; p; p = q)
4282 q = p->next;
4283 free_case (p);
4288 /* Match a single case selector. */
4290 static match
4291 match_case_selector (gfc_case **cp)
4293 gfc_case *c;
4294 match m;
4296 c = gfc_get_case ();
4297 c->where = gfc_current_locus;
4299 if (gfc_match_char (':') == MATCH_YES)
4301 m = gfc_match_init_expr (&c->high);
4302 if (m == MATCH_NO)
4303 goto need_expr;
4304 if (m == MATCH_ERROR)
4305 goto cleanup;
4307 else
4309 m = gfc_match_init_expr (&c->low);
4310 if (m == MATCH_ERROR)
4311 goto cleanup;
4312 if (m == MATCH_NO)
4313 goto need_expr;
4315 /* If we're not looking at a ':' now, make a range out of a single
4316 target. Else get the upper bound for the case range. */
4317 if (gfc_match_char (':') != MATCH_YES)
4318 c->high = c->low;
4319 else
4321 m = gfc_match_init_expr (&c->high);
4322 if (m == MATCH_ERROR)
4323 goto cleanup;
4324 /* MATCH_NO is fine. It's OK if nothing is there! */
4328 *cp = c;
4329 return MATCH_YES;
4331 need_expr:
4332 gfc_error ("Expected initialization expression in CASE at %C");
4334 cleanup:
4335 free_case (c);
4336 return MATCH_ERROR;
4340 /* Match the end of a case statement. */
4342 static match
4343 match_case_eos (void)
4345 char name[GFC_MAX_SYMBOL_LEN + 1];
4346 match m;
4348 if (gfc_match_eos () == MATCH_YES)
4349 return MATCH_YES;
4351 /* If the case construct doesn't have a case-construct-name, we
4352 should have matched the EOS. */
4353 if (!gfc_current_block ())
4354 return MATCH_NO;
4356 gfc_gobble_whitespace ();
4358 m = gfc_match_name (name);
4359 if (m != MATCH_YES)
4360 return m;
4362 if (strcmp (name, gfc_current_block ()->name) != 0)
4364 gfc_error ("Expected block name '%s' of SELECT construct at %C",
4365 gfc_current_block ()->name);
4366 return MATCH_ERROR;
4369 return gfc_match_eos ();
4373 /* Match a SELECT statement. */
4375 match
4376 gfc_match_select (void)
4378 gfc_expr *expr;
4379 match m;
4381 m = gfc_match_label ();
4382 if (m == MATCH_ERROR)
4383 return m;
4385 m = gfc_match (" select case ( %e )%t", &expr);
4386 if (m != MATCH_YES)
4387 return m;
4389 new_st.op = EXEC_SELECT;
4390 new_st.expr1 = expr;
4392 return MATCH_YES;
4396 /* Push the current selector onto the SELECT TYPE stack. */
4398 static void
4399 select_type_push (gfc_symbol *sel)
4401 gfc_select_type_stack *top = gfc_get_select_type_stack ();
4402 top->selector = sel;
4403 top->tmp = NULL;
4404 top->prev = select_type_stack;
4406 select_type_stack = top;
4410 /* Set the temporary for the current SELECT TYPE selector. */
4412 static void
4413 select_type_set_tmp (gfc_typespec *ts)
4415 char name[GFC_MAX_SYMBOL_LEN];
4416 gfc_symtree *tmp;
4418 if (!gfc_type_is_extensible (ts->u.derived))
4419 return;
4421 if (ts->type == BT_CLASS)
4422 sprintf (name, "tmp$class$%s", ts->u.derived->name);
4423 else
4424 sprintf (name, "tmp$type$%s", ts->u.derived->name);
4425 gfc_get_sym_tree (name, gfc_current_ns, &tmp, false);
4426 gfc_add_type (tmp->n.sym, ts, NULL);
4427 gfc_set_sym_referenced (tmp->n.sym);
4428 gfc_add_pointer (&tmp->n.sym->attr, NULL);
4429 gfc_add_flavor (&tmp->n.sym->attr, FL_VARIABLE, name, NULL);
4430 if (ts->type == BT_CLASS)
4432 gfc_build_class_symbol (&tmp->n.sym->ts, &tmp->n.sym->attr,
4433 &tmp->n.sym->as, false);
4434 tmp->n.sym->attr.class_ok = 1;
4437 select_type_stack->tmp = tmp;
4441 /* Match a SELECT TYPE statement. */
4443 match
4444 gfc_match_select_type (void)
4446 gfc_expr *expr1, *expr2 = NULL;
4447 match m;
4448 char name[GFC_MAX_SYMBOL_LEN];
4450 m = gfc_match_label ();
4451 if (m == MATCH_ERROR)
4452 return m;
4454 m = gfc_match (" select type ( ");
4455 if (m != MATCH_YES)
4456 return m;
4458 gfc_current_ns = gfc_build_block_ns (gfc_current_ns);
4460 m = gfc_match (" %n => %e", name, &expr2);
4461 if (m == MATCH_YES)
4463 expr1 = gfc_get_expr();
4464 expr1->expr_type = EXPR_VARIABLE;
4465 if (gfc_get_sym_tree (name, NULL, &expr1->symtree, false))
4467 m = MATCH_ERROR;
4468 goto cleanup;
4470 if (expr2->ts.type == BT_UNKNOWN)
4471 expr1->symtree->n.sym->attr.untyped = 1;
4472 else
4473 expr1->symtree->n.sym->ts = expr2->ts;
4474 expr1->symtree->n.sym->attr.referenced = 1;
4475 expr1->symtree->n.sym->attr.class_ok = 1;
4477 else
4479 m = gfc_match (" %e ", &expr1);
4480 if (m != MATCH_YES)
4481 goto cleanup;
4484 m = gfc_match (" )%t");
4485 if (m != MATCH_YES)
4486 goto cleanup;
4488 /* Check for F03:C811. */
4489 if (!expr2 && (expr1->expr_type != EXPR_VARIABLE || expr1->ref != NULL))
4491 gfc_error ("Selector in SELECT TYPE at %C is not a named variable; "
4492 "use associate-name=>");
4493 m = MATCH_ERROR;
4494 goto cleanup;
4497 new_st.op = EXEC_SELECT_TYPE;
4498 new_st.expr1 = expr1;
4499 new_st.expr2 = expr2;
4500 new_st.ext.block.ns = gfc_current_ns;
4502 select_type_push (expr1->symtree->n.sym);
4504 return MATCH_YES;
4506 cleanup:
4507 gfc_current_ns = gfc_current_ns->parent;
4508 return m;
4512 /* Match a CASE statement. */
4514 match
4515 gfc_match_case (void)
4517 gfc_case *c, *head, *tail;
4518 match m;
4520 head = tail = NULL;
4522 if (gfc_current_state () != COMP_SELECT)
4524 gfc_error ("Unexpected CASE statement at %C");
4525 return MATCH_ERROR;
4528 if (gfc_match ("% default") == MATCH_YES)
4530 m = match_case_eos ();
4531 if (m == MATCH_NO)
4532 goto syntax;
4533 if (m == MATCH_ERROR)
4534 goto cleanup;
4536 new_st.op = EXEC_SELECT;
4537 c = gfc_get_case ();
4538 c->where = gfc_current_locus;
4539 new_st.ext.case_list = c;
4540 return MATCH_YES;
4543 if (gfc_match_char ('(') != MATCH_YES)
4544 goto syntax;
4546 for (;;)
4548 if (match_case_selector (&c) == MATCH_ERROR)
4549 goto cleanup;
4551 if (head == NULL)
4552 head = c;
4553 else
4554 tail->next = c;
4556 tail = c;
4558 if (gfc_match_char (')') == MATCH_YES)
4559 break;
4560 if (gfc_match_char (',') != MATCH_YES)
4561 goto syntax;
4564 m = match_case_eos ();
4565 if (m == MATCH_NO)
4566 goto syntax;
4567 if (m == MATCH_ERROR)
4568 goto cleanup;
4570 new_st.op = EXEC_SELECT;
4571 new_st.ext.case_list = head;
4573 return MATCH_YES;
4575 syntax:
4576 gfc_error ("Syntax error in CASE specification at %C");
4578 cleanup:
4579 gfc_free_case_list (head); /* new_st is cleaned up in parse.c. */
4580 return MATCH_ERROR;
4584 /* Match a TYPE IS statement. */
4586 match
4587 gfc_match_type_is (void)
4589 gfc_case *c = NULL;
4590 match m;
4592 if (gfc_current_state () != COMP_SELECT_TYPE)
4594 gfc_error ("Unexpected TYPE IS statement at %C");
4595 return MATCH_ERROR;
4598 if (gfc_match_char ('(') != MATCH_YES)
4599 goto syntax;
4601 c = gfc_get_case ();
4602 c->where = gfc_current_locus;
4604 /* TODO: Once unlimited polymorphism is implemented, we will need to call
4605 match_type_spec here. */
4606 if (match_derived_type_spec (&c->ts) == MATCH_ERROR)
4607 goto cleanup;
4609 if (gfc_match_char (')') != MATCH_YES)
4610 goto syntax;
4612 m = match_case_eos ();
4613 if (m == MATCH_NO)
4614 goto syntax;
4615 if (m == MATCH_ERROR)
4616 goto cleanup;
4618 new_st.op = EXEC_SELECT_TYPE;
4619 new_st.ext.case_list = c;
4621 /* Create temporary variable. */
4622 select_type_set_tmp (&c->ts);
4624 return MATCH_YES;
4626 syntax:
4627 gfc_error ("Syntax error in TYPE IS specification at %C");
4629 cleanup:
4630 if (c != NULL)
4631 gfc_free_case_list (c); /* new_st is cleaned up in parse.c. */
4632 return MATCH_ERROR;
4636 /* Match a CLASS IS or CLASS DEFAULT statement. */
4638 match
4639 gfc_match_class_is (void)
4641 gfc_case *c = NULL;
4642 match m;
4644 if (gfc_current_state () != COMP_SELECT_TYPE)
4645 return MATCH_NO;
4647 if (gfc_match ("% default") == MATCH_YES)
4649 m = match_case_eos ();
4650 if (m == MATCH_NO)
4651 goto syntax;
4652 if (m == MATCH_ERROR)
4653 goto cleanup;
4655 new_st.op = EXEC_SELECT_TYPE;
4656 c = gfc_get_case ();
4657 c->where = gfc_current_locus;
4658 c->ts.type = BT_UNKNOWN;
4659 new_st.ext.case_list = c;
4660 return MATCH_YES;
4663 m = gfc_match ("% is");
4664 if (m == MATCH_NO)
4665 goto syntax;
4666 if (m == MATCH_ERROR)
4667 goto cleanup;
4669 if (gfc_match_char ('(') != MATCH_YES)
4670 goto syntax;
4672 c = gfc_get_case ();
4673 c->where = gfc_current_locus;
4675 if (match_derived_type_spec (&c->ts) == MATCH_ERROR)
4676 goto cleanup;
4678 if (c->ts.type == BT_DERIVED)
4679 c->ts.type = BT_CLASS;
4681 if (gfc_match_char (')') != MATCH_YES)
4682 goto syntax;
4684 m = match_case_eos ();
4685 if (m == MATCH_NO)
4686 goto syntax;
4687 if (m == MATCH_ERROR)
4688 goto cleanup;
4690 new_st.op = EXEC_SELECT_TYPE;
4691 new_st.ext.case_list = c;
4693 /* Create temporary variable. */
4694 select_type_set_tmp (&c->ts);
4696 return MATCH_YES;
4698 syntax:
4699 gfc_error ("Syntax error in CLASS IS specification at %C");
4701 cleanup:
4702 if (c != NULL)
4703 gfc_free_case_list (c); /* new_st is cleaned up in parse.c. */
4704 return MATCH_ERROR;
4708 /********************* WHERE subroutines ********************/
4710 /* Match the rest of a simple WHERE statement that follows an IF statement.
4713 static match
4714 match_simple_where (void)
4716 gfc_expr *expr;
4717 gfc_code *c;
4718 match m;
4720 m = gfc_match (" ( %e )", &expr);
4721 if (m != MATCH_YES)
4722 return m;
4724 m = gfc_match_assignment ();
4725 if (m == MATCH_NO)
4726 goto syntax;
4727 if (m == MATCH_ERROR)
4728 goto cleanup;
4730 if (gfc_match_eos () != MATCH_YES)
4731 goto syntax;
4733 c = gfc_get_code ();
4735 c->op = EXEC_WHERE;
4736 c->expr1 = expr;
4737 c->next = gfc_get_code ();
4739 *c->next = new_st;
4740 gfc_clear_new_st ();
4742 new_st.op = EXEC_WHERE;
4743 new_st.block = c;
4745 return MATCH_YES;
4747 syntax:
4748 gfc_syntax_error (ST_WHERE);
4750 cleanup:
4751 gfc_free_expr (expr);
4752 return MATCH_ERROR;
4756 /* Match a WHERE statement. */
4758 match
4759 gfc_match_where (gfc_statement *st)
4761 gfc_expr *expr;
4762 match m0, m;
4763 gfc_code *c;
4765 m0 = gfc_match_label ();
4766 if (m0 == MATCH_ERROR)
4767 return m0;
4769 m = gfc_match (" where ( %e )", &expr);
4770 if (m != MATCH_YES)
4771 return m;
4773 if (gfc_match_eos () == MATCH_YES)
4775 *st = ST_WHERE_BLOCK;
4776 new_st.op = EXEC_WHERE;
4777 new_st.expr1 = expr;
4778 return MATCH_YES;
4781 m = gfc_match_assignment ();
4782 if (m == MATCH_NO)
4783 gfc_syntax_error (ST_WHERE);
4785 if (m != MATCH_YES)
4787 gfc_free_expr (expr);
4788 return MATCH_ERROR;
4791 /* We've got a simple WHERE statement. */
4792 *st = ST_WHERE;
4793 c = gfc_get_code ();
4795 c->op = EXEC_WHERE;
4796 c->expr1 = expr;
4797 c->next = gfc_get_code ();
4799 *c->next = new_st;
4800 gfc_clear_new_st ();
4802 new_st.op = EXEC_WHERE;
4803 new_st.block = c;
4805 return MATCH_YES;
4809 /* Match an ELSEWHERE statement. We leave behind a WHERE node in
4810 new_st if successful. */
4812 match
4813 gfc_match_elsewhere (void)
4815 char name[GFC_MAX_SYMBOL_LEN + 1];
4816 gfc_expr *expr;
4817 match m;
4819 if (gfc_current_state () != COMP_WHERE)
4821 gfc_error ("ELSEWHERE statement at %C not enclosed in WHERE block");
4822 return MATCH_ERROR;
4825 expr = NULL;
4827 if (gfc_match_char ('(') == MATCH_YES)
4829 m = gfc_match_expr (&expr);
4830 if (m == MATCH_NO)
4831 goto syntax;
4832 if (m == MATCH_ERROR)
4833 return MATCH_ERROR;
4835 if (gfc_match_char (')') != MATCH_YES)
4836 goto syntax;
4839 if (gfc_match_eos () != MATCH_YES)
4841 /* Only makes sense if we have a where-construct-name. */
4842 if (!gfc_current_block ())
4844 m = MATCH_ERROR;
4845 goto cleanup;
4847 /* Better be a name at this point. */
4848 m = gfc_match_name (name);
4849 if (m == MATCH_NO)
4850 goto syntax;
4851 if (m == MATCH_ERROR)
4852 goto cleanup;
4854 if (gfc_match_eos () != MATCH_YES)
4855 goto syntax;
4857 if (strcmp (name, gfc_current_block ()->name) != 0)
4859 gfc_error ("Label '%s' at %C doesn't match WHERE label '%s'",
4860 name, gfc_current_block ()->name);
4861 goto cleanup;
4865 new_st.op = EXEC_WHERE;
4866 new_st.expr1 = expr;
4867 return MATCH_YES;
4869 syntax:
4870 gfc_syntax_error (ST_ELSEWHERE);
4872 cleanup:
4873 gfc_free_expr (expr);
4874 return MATCH_ERROR;
4878 /******************** FORALL subroutines ********************/
4880 /* Free a list of FORALL iterators. */
4882 void
4883 gfc_free_forall_iterator (gfc_forall_iterator *iter)
4885 gfc_forall_iterator *next;
4887 while (iter)
4889 next = iter->next;
4890 gfc_free_expr (iter->var);
4891 gfc_free_expr (iter->start);
4892 gfc_free_expr (iter->end);
4893 gfc_free_expr (iter->stride);
4894 gfc_free (iter);
4895 iter = next;
4900 /* Match an iterator as part of a FORALL statement. The format is:
4902 <var> = <start>:<end>[:<stride>]
4904 On MATCH_NO, the caller tests for the possibility that there is a
4905 scalar mask expression. */
4907 static match
4908 match_forall_iterator (gfc_forall_iterator **result)
4910 gfc_forall_iterator *iter;
4911 locus where;
4912 match m;
4914 where = gfc_current_locus;
4915 iter = XCNEW (gfc_forall_iterator);
4917 m = gfc_match_expr (&iter->var);
4918 if (m != MATCH_YES)
4919 goto cleanup;
4921 if (gfc_match_char ('=') != MATCH_YES
4922 || iter->var->expr_type != EXPR_VARIABLE)
4924 m = MATCH_NO;
4925 goto cleanup;
4928 m = gfc_match_expr (&iter->start);
4929 if (m != MATCH_YES)
4930 goto cleanup;
4932 if (gfc_match_char (':') != MATCH_YES)
4933 goto syntax;
4935 m = gfc_match_expr (&iter->end);
4936 if (m == MATCH_NO)
4937 goto syntax;
4938 if (m == MATCH_ERROR)
4939 goto cleanup;
4941 if (gfc_match_char (':') == MATCH_NO)
4942 iter->stride = gfc_get_int_expr (gfc_default_integer_kind, NULL, 1);
4943 else
4945 m = gfc_match_expr (&iter->stride);
4946 if (m == MATCH_NO)
4947 goto syntax;
4948 if (m == MATCH_ERROR)
4949 goto cleanup;
4952 /* Mark the iteration variable's symbol as used as a FORALL index. */
4953 iter->var->symtree->n.sym->forall_index = true;
4955 *result = iter;
4956 return MATCH_YES;
4958 syntax:
4959 gfc_error ("Syntax error in FORALL iterator at %C");
4960 m = MATCH_ERROR;
4962 cleanup:
4964 gfc_current_locus = where;
4965 gfc_free_forall_iterator (iter);
4966 return m;
4970 /* Match the header of a FORALL statement. */
4972 static match
4973 match_forall_header (gfc_forall_iterator **phead, gfc_expr **mask)
4975 gfc_forall_iterator *head, *tail, *new_iter;
4976 gfc_expr *msk;
4977 match m;
4979 gfc_gobble_whitespace ();
4981 head = tail = NULL;
4982 msk = NULL;
4984 if (gfc_match_char ('(') != MATCH_YES)
4985 return MATCH_NO;
4987 m = match_forall_iterator (&new_iter);
4988 if (m == MATCH_ERROR)
4989 goto cleanup;
4990 if (m == MATCH_NO)
4991 goto syntax;
4993 head = tail = new_iter;
4995 for (;;)
4997 if (gfc_match_char (',') != MATCH_YES)
4998 break;
5000 m = match_forall_iterator (&new_iter);
5001 if (m == MATCH_ERROR)
5002 goto cleanup;
5004 if (m == MATCH_YES)
5006 tail->next = new_iter;
5007 tail = new_iter;
5008 continue;
5011 /* Have to have a mask expression. */
5013 m = gfc_match_expr (&msk);
5014 if (m == MATCH_NO)
5015 goto syntax;
5016 if (m == MATCH_ERROR)
5017 goto cleanup;
5019 break;
5022 if (gfc_match_char (')') == MATCH_NO)
5023 goto syntax;
5025 *phead = head;
5026 *mask = msk;
5027 return MATCH_YES;
5029 syntax:
5030 gfc_syntax_error (ST_FORALL);
5032 cleanup:
5033 gfc_free_expr (msk);
5034 gfc_free_forall_iterator (head);
5036 return MATCH_ERROR;
5039 /* Match the rest of a simple FORALL statement that follows an
5040 IF statement. */
5042 static match
5043 match_simple_forall (void)
5045 gfc_forall_iterator *head;
5046 gfc_expr *mask;
5047 gfc_code *c;
5048 match m;
5050 mask = NULL;
5051 head = NULL;
5052 c = NULL;
5054 m = match_forall_header (&head, &mask);
5056 if (m == MATCH_NO)
5057 goto syntax;
5058 if (m != MATCH_YES)
5059 goto cleanup;
5061 m = gfc_match_assignment ();
5063 if (m == MATCH_ERROR)
5064 goto cleanup;
5065 if (m == MATCH_NO)
5067 m = gfc_match_pointer_assignment ();
5068 if (m == MATCH_ERROR)
5069 goto cleanup;
5070 if (m == MATCH_NO)
5071 goto syntax;
5074 c = gfc_get_code ();
5075 *c = new_st;
5076 c->loc = gfc_current_locus;
5078 if (gfc_match_eos () != MATCH_YES)
5079 goto syntax;
5081 gfc_clear_new_st ();
5082 new_st.op = EXEC_FORALL;
5083 new_st.expr1 = mask;
5084 new_st.ext.forall_iterator = head;
5085 new_st.block = gfc_get_code ();
5087 new_st.block->op = EXEC_FORALL;
5088 new_st.block->next = c;
5090 return MATCH_YES;
5092 syntax:
5093 gfc_syntax_error (ST_FORALL);
5095 cleanup:
5096 gfc_free_forall_iterator (head);
5097 gfc_free_expr (mask);
5099 return MATCH_ERROR;
5103 /* Match a FORALL statement. */
5105 match
5106 gfc_match_forall (gfc_statement *st)
5108 gfc_forall_iterator *head;
5109 gfc_expr *mask;
5110 gfc_code *c;
5111 match m0, m;
5113 head = NULL;
5114 mask = NULL;
5115 c = NULL;
5117 m0 = gfc_match_label ();
5118 if (m0 == MATCH_ERROR)
5119 return MATCH_ERROR;
5121 m = gfc_match (" forall");
5122 if (m != MATCH_YES)
5123 return m;
5125 m = match_forall_header (&head, &mask);
5126 if (m == MATCH_ERROR)
5127 goto cleanup;
5128 if (m == MATCH_NO)
5129 goto syntax;
5131 if (gfc_match_eos () == MATCH_YES)
5133 *st = ST_FORALL_BLOCK;
5134 new_st.op = EXEC_FORALL;
5135 new_st.expr1 = mask;
5136 new_st.ext.forall_iterator = head;
5137 return MATCH_YES;
5140 m = gfc_match_assignment ();
5141 if (m == MATCH_ERROR)
5142 goto cleanup;
5143 if (m == MATCH_NO)
5145 m = gfc_match_pointer_assignment ();
5146 if (m == MATCH_ERROR)
5147 goto cleanup;
5148 if (m == MATCH_NO)
5149 goto syntax;
5152 c = gfc_get_code ();
5153 *c = new_st;
5154 c->loc = gfc_current_locus;
5156 gfc_clear_new_st ();
5157 new_st.op = EXEC_FORALL;
5158 new_st.expr1 = mask;
5159 new_st.ext.forall_iterator = head;
5160 new_st.block = gfc_get_code ();
5161 new_st.block->op = EXEC_FORALL;
5162 new_st.block->next = c;
5164 *st = ST_FORALL;
5165 return MATCH_YES;
5167 syntax:
5168 gfc_syntax_error (ST_FORALL);
5170 cleanup:
5171 gfc_free_forall_iterator (head);
5172 gfc_free_expr (mask);
5173 gfc_free_statements (c);
5174 return MATCH_NO;