re PR fortran/90290 (-std=f2008 should reject non-constant stop and error stop codes)
[official-gcc.git] / gcc / fortran / match.c
blob69698e5ba2ecec701037fb7eb7425a37c656a5ba
1 /* Matching subroutines in all sizes, shapes and colors.
2 Copyright (C) 2000-2019 Free Software Foundation, Inc.
3 Contributed by Andy Vaught
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "options.h"
25 #include "gfortran.h"
26 #include "match.h"
27 #include "parse.h"
29 int gfc_matching_ptr_assignment = 0;
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 /* List of type parameter expressions. */
37 gfc_actual_arglist *type_param_spec_list;
39 /* For debugging and diagnostic purposes. Return the textual representation
40 of the intrinsic operator OP. */
41 const char *
42 gfc_op2string (gfc_intrinsic_op op)
44 switch (op)
46 case INTRINSIC_UPLUS:
47 case INTRINSIC_PLUS:
48 return "+";
50 case INTRINSIC_UMINUS:
51 case INTRINSIC_MINUS:
52 return "-";
54 case INTRINSIC_POWER:
55 return "**";
56 case INTRINSIC_CONCAT:
57 return "//";
58 case INTRINSIC_TIMES:
59 return "*";
60 case INTRINSIC_DIVIDE:
61 return "/";
63 case INTRINSIC_AND:
64 return ".and.";
65 case INTRINSIC_OR:
66 return ".or.";
67 case INTRINSIC_EQV:
68 return ".eqv.";
69 case INTRINSIC_NEQV:
70 return ".neqv.";
72 case INTRINSIC_EQ_OS:
73 return ".eq.";
74 case INTRINSIC_EQ:
75 return "==";
76 case INTRINSIC_NE_OS:
77 return ".ne.";
78 case INTRINSIC_NE:
79 return "/=";
80 case INTRINSIC_GE_OS:
81 return ".ge.";
82 case INTRINSIC_GE:
83 return ">=";
84 case INTRINSIC_LE_OS:
85 return ".le.";
86 case INTRINSIC_LE:
87 return "<=";
88 case INTRINSIC_LT_OS:
89 return ".lt.";
90 case INTRINSIC_LT:
91 return "<";
92 case INTRINSIC_GT_OS:
93 return ".gt.";
94 case INTRINSIC_GT:
95 return ">";
96 case INTRINSIC_NOT:
97 return ".not.";
99 case INTRINSIC_ASSIGN:
100 return "=";
102 case INTRINSIC_PARENTHESES:
103 return "parens";
105 case INTRINSIC_NONE:
106 return "none";
108 /* DTIO */
109 case INTRINSIC_FORMATTED:
110 return "formatted";
111 case INTRINSIC_UNFORMATTED:
112 return "unformatted";
114 default:
115 break;
118 gfc_internal_error ("gfc_op2string(): Bad code");
119 /* Not reached. */
123 /******************** Generic matching subroutines ************************/
125 /* Matches a member separator. With standard FORTRAN this is '%', but with
126 DEC structures we must carefully match dot ('.').
127 Because operators are spelled ".op.", a dotted string such as "x.y.z..."
128 can be either a component reference chain or a combination of binary
129 operations.
130 There is no real way to win because the string may be grammatically
131 ambiguous. The following rules help avoid ambiguities - they match
132 some behavior of other (older) compilers. If the rules here are changed
133 the test cases should be updated. If the user has problems with these rules
134 they probably deserve the consequences. Consider "x.y.z":
135 (1) If any user defined operator ".y." exists, this is always y(x,z)
136 (even if ".y." is the wrong type and/or x has a member y).
137 (2) Otherwise if x has a member y, and y is itself a derived type,
138 this is (x->y)->z, even if an intrinsic operator exists which
139 can handle (x,z).
140 (3) If x has no member y or (x->y) is not a derived type but ".y."
141 is an intrinsic operator (such as ".eq."), this is y(x,z).
142 (4) Lastly if there is no operator ".y." and x has no member "y", it is an
143 error.
144 It is worth noting that the logic here does not support mixed use of member
145 accessors within a single string. That is, even if x has component y and y
146 has component z, the following are all syntax errors:
147 "x%y.z" "x.y%z" "(x.y).z" "(x%y)%z"
150 match
151 gfc_match_member_sep(gfc_symbol *sym)
153 char name[GFC_MAX_SYMBOL_LEN + 1];
154 locus dot_loc, start_loc;
155 gfc_intrinsic_op iop;
156 match m;
157 gfc_symbol *tsym;
158 gfc_component *c = NULL;
160 /* What a relief: '%' is an unambiguous member separator. */
161 if (gfc_match_char ('%') == MATCH_YES)
162 return MATCH_YES;
164 /* Beware ye who enter here. */
165 if (!flag_dec_structure || !sym)
166 return MATCH_NO;
168 tsym = NULL;
170 /* We may be given either a derived type variable or the derived type
171 declaration itself (which actually contains the components);
172 we need the latter to search for components. */
173 if (gfc_fl_struct (sym->attr.flavor))
174 tsym = sym;
175 else if (gfc_bt_struct (sym->ts.type))
176 tsym = sym->ts.u.derived;
178 iop = INTRINSIC_NONE;
179 name[0] = '\0';
180 m = MATCH_NO;
182 /* If we have to reject come back here later. */
183 start_loc = gfc_current_locus;
185 /* Look for a component access next. */
186 if (gfc_match_char ('.') != MATCH_YES)
187 return MATCH_NO;
189 /* If we accept, come back here. */
190 dot_loc = gfc_current_locus;
192 /* Try to match a symbol name following the dot. */
193 if (gfc_match_name (name) != MATCH_YES)
195 gfc_error ("Expected structure component or operator name "
196 "after '.' at %C");
197 goto error;
200 /* If no dot follows we have "x.y" which should be a component access. */
201 if (gfc_match_char ('.') != MATCH_YES)
202 goto yes;
204 /* Now we have a string "x.y.z" which could be a nested member access
205 (x->y)->z or a binary operation y on x and z. */
207 /* First use any user-defined operators ".y." */
208 if (gfc_find_uop (name, sym->ns) != NULL)
209 goto no;
211 /* Match accesses to existing derived-type components for
212 derived-type vars: "x.y.z" = (x->y)->z */
213 c = gfc_find_component(tsym, name, false, true, NULL);
214 if (c && (gfc_bt_struct (c->ts.type) || c->ts.type == BT_CLASS))
215 goto yes;
217 /* If y is not a component or has no members, try intrinsic operators. */
218 gfc_current_locus = start_loc;
219 if (gfc_match_intrinsic_op (&iop) != MATCH_YES)
221 /* If ".y." is not an intrinsic operator but y was a valid non-
222 structure component, match and leave the trailing dot to be
223 dealt with later. */
224 if (c)
225 goto yes;
227 gfc_error ("%qs is neither a defined operator nor a "
228 "structure component in dotted string at %C", name);
229 goto error;
232 /* .y. is an intrinsic operator, overriding any possible member access. */
233 goto no;
235 /* Return keeping the current locus consistent with the match result. */
236 error:
237 m = MATCH_ERROR;
239 gfc_current_locus = start_loc;
240 return m;
241 yes:
242 gfc_current_locus = dot_loc;
243 return MATCH_YES;
247 /* This function scans the current statement counting the opened and closed
248 parenthesis to make sure they are balanced. */
250 match
251 gfc_match_parens (void)
253 locus old_loc, where;
254 int count;
255 gfc_instring instring;
256 gfc_char_t c, quote;
258 old_loc = gfc_current_locus;
259 count = 0;
260 instring = NONSTRING;
261 quote = ' ';
263 for (;;)
265 if (count > 0)
266 where = gfc_current_locus;
267 c = gfc_next_char_literal (instring);
268 if (c == '\n')
269 break;
270 if (quote == ' ' && ((c == '\'') || (c == '"')))
272 quote = c;
273 instring = INSTRING_WARN;
274 continue;
276 if (quote != ' ' && c == quote)
278 quote = ' ';
279 instring = NONSTRING;
280 continue;
283 if (c == '(' && quote == ' ')
285 count++;
287 if (c == ')' && quote == ' ')
289 count--;
290 where = gfc_current_locus;
294 gfc_current_locus = old_loc;
296 if (count != 0)
298 gfc_error ("Missing %qs in statement at or before %L",
299 count > 0? ")":"(", &where);
300 return MATCH_ERROR;
303 return MATCH_YES;
307 /* See if the next character is a special character that has
308 escaped by a \ via the -fbackslash option. */
310 match
311 gfc_match_special_char (gfc_char_t *res)
313 int len, i;
314 gfc_char_t c, n;
315 match m;
317 m = MATCH_YES;
319 switch ((c = gfc_next_char_literal (INSTRING_WARN)))
321 case 'a':
322 *res = '\a';
323 break;
324 case 'b':
325 *res = '\b';
326 break;
327 case 't':
328 *res = '\t';
329 break;
330 case 'f':
331 *res = '\f';
332 break;
333 case 'n':
334 *res = '\n';
335 break;
336 case 'r':
337 *res = '\r';
338 break;
339 case 'v':
340 *res = '\v';
341 break;
342 case '\\':
343 *res = '\\';
344 break;
345 case '0':
346 *res = '\0';
347 break;
349 case 'x':
350 case 'u':
351 case 'U':
352 /* Hexadecimal form of wide characters. */
353 len = (c == 'x' ? 2 : (c == 'u' ? 4 : 8));
354 n = 0;
355 for (i = 0; i < len; i++)
357 char buf[2] = { '\0', '\0' };
359 c = gfc_next_char_literal (INSTRING_WARN);
360 if (!gfc_wide_fits_in_byte (c)
361 || !gfc_check_digit ((unsigned char) c, 16))
362 return MATCH_NO;
364 buf[0] = (unsigned char) c;
365 n = n << 4;
366 n += strtol (buf, NULL, 16);
368 *res = n;
369 break;
371 default:
372 /* Unknown backslash codes are simply not expanded. */
373 m = MATCH_NO;
374 break;
377 return m;
381 /* In free form, match at least one space. Always matches in fixed
382 form. */
384 match
385 gfc_match_space (void)
387 locus old_loc;
388 char c;
390 if (gfc_current_form == FORM_FIXED)
391 return MATCH_YES;
393 old_loc = gfc_current_locus;
395 c = gfc_next_ascii_char ();
396 if (!gfc_is_whitespace (c))
398 gfc_current_locus = old_loc;
399 return MATCH_NO;
402 gfc_gobble_whitespace ();
404 return MATCH_YES;
408 /* Match an end of statement. End of statement is optional
409 whitespace, followed by a ';' or '\n' or comment '!'. If a
410 semicolon is found, we continue to eat whitespace and semicolons. */
412 match
413 gfc_match_eos (void)
415 locus old_loc;
416 int flag;
417 char c;
419 flag = 0;
421 for (;;)
423 old_loc = gfc_current_locus;
424 gfc_gobble_whitespace ();
426 c = gfc_next_ascii_char ();
427 switch (c)
429 case '!':
432 c = gfc_next_ascii_char ();
434 while (c != '\n');
436 /* Fall through. */
438 case '\n':
439 return MATCH_YES;
441 case ';':
442 flag = 1;
443 continue;
446 break;
449 gfc_current_locus = old_loc;
450 return (flag) ? MATCH_YES : MATCH_NO;
454 /* Match a literal integer on the input, setting the value on
455 MATCH_YES. Literal ints occur in kind-parameters as well as
456 old-style character length specifications. If cnt is non-NULL it
457 will be set to the number of digits. */
459 match
460 gfc_match_small_literal_int (int *value, int *cnt)
462 locus old_loc;
463 char c;
464 int i, j;
466 old_loc = gfc_current_locus;
468 *value = -1;
469 gfc_gobble_whitespace ();
470 c = gfc_next_ascii_char ();
471 if (cnt)
472 *cnt = 0;
474 if (!ISDIGIT (c))
476 gfc_current_locus = old_loc;
477 return MATCH_NO;
480 i = c - '0';
481 j = 1;
483 for (;;)
485 old_loc = gfc_current_locus;
486 c = gfc_next_ascii_char ();
488 if (!ISDIGIT (c))
489 break;
491 i = 10 * i + c - '0';
492 j++;
494 if (i > 99999999)
496 gfc_error ("Integer too large at %C");
497 return MATCH_ERROR;
501 gfc_current_locus = old_loc;
503 *value = i;
504 if (cnt)
505 *cnt = j;
506 return MATCH_YES;
510 /* Match a small, constant integer expression, like in a kind
511 statement. On MATCH_YES, 'value' is set. */
513 match
514 gfc_match_small_int (int *value)
516 gfc_expr *expr;
517 match m;
518 int i;
520 m = gfc_match_expr (&expr);
521 if (m != MATCH_YES)
522 return m;
524 if (gfc_extract_int (expr, &i, 1))
525 m = MATCH_ERROR;
526 gfc_free_expr (expr);
528 *value = i;
529 return m;
533 /* This function is the same as the gfc_match_small_int, except that
534 we're keeping the pointer to the expr. This function could just be
535 removed and the previously mentioned one modified, though all calls
536 to it would have to be modified then (and there were a number of
537 them). Return MATCH_ERROR if fail to extract the int; otherwise,
538 return the result of gfc_match_expr(). The expr (if any) that was
539 matched is returned in the parameter expr. */
541 match
542 gfc_match_small_int_expr (int *value, gfc_expr **expr)
544 match m;
545 int i;
547 m = gfc_match_expr (expr);
548 if (m != MATCH_YES)
549 return m;
551 if (gfc_extract_int (*expr, &i, 1))
552 m = MATCH_ERROR;
554 *value = i;
555 return m;
559 /* Matches a statement label. Uses gfc_match_small_literal_int() to
560 do most of the work. */
562 match
563 gfc_match_st_label (gfc_st_label **label)
565 locus old_loc;
566 match m;
567 int i, cnt;
569 old_loc = gfc_current_locus;
571 m = gfc_match_small_literal_int (&i, &cnt);
572 if (m != MATCH_YES)
573 return m;
575 if (cnt > 5)
577 gfc_error ("Too many digits in statement label at %C");
578 goto cleanup;
581 if (i == 0)
583 gfc_error ("Statement label at %C is zero");
584 goto cleanup;
587 *label = gfc_get_st_label (i);
588 return MATCH_YES;
590 cleanup:
592 gfc_current_locus = old_loc;
593 return MATCH_ERROR;
597 /* Match and validate a label associated with a named IF, DO or SELECT
598 statement. If the symbol does not have the label attribute, we add
599 it. We also make sure the symbol does not refer to another
600 (active) block. A matched label is pointed to by gfc_new_block. */
602 match
603 gfc_match_label (void)
605 char name[GFC_MAX_SYMBOL_LEN + 1];
606 match m;
608 gfc_new_block = NULL;
610 m = gfc_match (" %n :", name);
611 if (m != MATCH_YES)
612 return m;
614 if (gfc_get_symbol (name, NULL, &gfc_new_block))
616 gfc_error ("Label name %qs at %C is ambiguous", name);
617 return MATCH_ERROR;
620 if (gfc_new_block->attr.flavor == FL_LABEL)
622 gfc_error ("Duplicate construct label %qs at %C", name);
623 return MATCH_ERROR;
626 if (!gfc_add_flavor (&gfc_new_block->attr, FL_LABEL,
627 gfc_new_block->name, NULL))
628 return MATCH_ERROR;
630 return MATCH_YES;
634 /* See if the current input looks like a name of some sort. Modifies
635 the passed buffer which must be GFC_MAX_SYMBOL_LEN+1 bytes long.
636 Note that options.c restricts max_identifier_length to not more
637 than GFC_MAX_SYMBOL_LEN. */
639 match
640 gfc_match_name (char *buffer)
642 locus old_loc;
643 int i;
644 char c;
646 old_loc = gfc_current_locus;
647 gfc_gobble_whitespace ();
649 c = gfc_next_ascii_char ();
650 if (!(ISALPHA (c) || (c == '_' && flag_allow_leading_underscore)))
652 /* Special cases for unary minus and plus, which allows for a sensible
653 error message for code of the form 'c = exp(-a*b) )' where an
654 extra ')' appears at the end of statement. */
655 if (!gfc_error_flag_test () && c != '(' && c != '-' && c != '+')
656 gfc_error ("Invalid character in name at %C");
657 gfc_current_locus = old_loc;
658 return MATCH_NO;
661 i = 0;
665 buffer[i++] = c;
667 if (i > gfc_option.max_identifier_length)
669 gfc_error ("Name at %C is too long");
670 return MATCH_ERROR;
673 old_loc = gfc_current_locus;
674 c = gfc_next_ascii_char ();
676 while (ISALNUM (c) || c == '_' || (flag_dollar_ok && c == '$'));
678 if (c == '$' && !flag_dollar_ok)
680 gfc_fatal_error ("Invalid character %<$%> at %L. Use %<-fdollar-ok%> to "
681 "allow it as an extension", &old_loc);
682 return MATCH_ERROR;
685 buffer[i] = '\0';
686 gfc_current_locus = old_loc;
688 return MATCH_YES;
692 /* Match a symbol on the input. Modifies the pointer to the symbol
693 pointer if successful. */
695 match
696 gfc_match_sym_tree (gfc_symtree **matched_symbol, int host_assoc)
698 char buffer[GFC_MAX_SYMBOL_LEN + 1];
699 match m;
701 m = gfc_match_name (buffer);
702 if (m != MATCH_YES)
703 return m;
705 if (host_assoc)
706 return (gfc_get_ha_sym_tree (buffer, matched_symbol))
707 ? MATCH_ERROR : MATCH_YES;
709 if (gfc_get_sym_tree (buffer, NULL, matched_symbol, false))
710 return MATCH_ERROR;
712 return MATCH_YES;
716 match
717 gfc_match_symbol (gfc_symbol **matched_symbol, int host_assoc)
719 gfc_symtree *st;
720 match m;
722 m = gfc_match_sym_tree (&st, host_assoc);
724 if (m == MATCH_YES)
726 if (st)
727 *matched_symbol = st->n.sym;
728 else
729 *matched_symbol = NULL;
731 else
732 *matched_symbol = NULL;
733 return m;
737 /* Match an intrinsic operator. Returns an INTRINSIC enum. While matching,
738 we always find INTRINSIC_PLUS before INTRINSIC_UPLUS. We work around this
739 in matchexp.c. */
741 match
742 gfc_match_intrinsic_op (gfc_intrinsic_op *result)
744 locus orig_loc = gfc_current_locus;
745 char ch;
747 gfc_gobble_whitespace ();
748 ch = gfc_next_ascii_char ();
749 switch (ch)
751 case '+':
752 /* Matched "+". */
753 *result = INTRINSIC_PLUS;
754 return MATCH_YES;
756 case '-':
757 /* Matched "-". */
758 *result = INTRINSIC_MINUS;
759 return MATCH_YES;
761 case '=':
762 if (gfc_next_ascii_char () == '=')
764 /* Matched "==". */
765 *result = INTRINSIC_EQ;
766 return MATCH_YES;
768 break;
770 case '<':
771 if (gfc_peek_ascii_char () == '=')
773 /* Matched "<=". */
774 gfc_next_ascii_char ();
775 *result = INTRINSIC_LE;
776 return MATCH_YES;
778 /* Matched "<". */
779 *result = INTRINSIC_LT;
780 return MATCH_YES;
782 case '>':
783 if (gfc_peek_ascii_char () == '=')
785 /* Matched ">=". */
786 gfc_next_ascii_char ();
787 *result = INTRINSIC_GE;
788 return MATCH_YES;
790 /* Matched ">". */
791 *result = INTRINSIC_GT;
792 return MATCH_YES;
794 case '*':
795 if (gfc_peek_ascii_char () == '*')
797 /* Matched "**". */
798 gfc_next_ascii_char ();
799 *result = INTRINSIC_POWER;
800 return MATCH_YES;
802 /* Matched "*". */
803 *result = INTRINSIC_TIMES;
804 return MATCH_YES;
806 case '/':
807 ch = gfc_peek_ascii_char ();
808 if (ch == '=')
810 /* Matched "/=". */
811 gfc_next_ascii_char ();
812 *result = INTRINSIC_NE;
813 return MATCH_YES;
815 else if (ch == '/')
817 /* Matched "//". */
818 gfc_next_ascii_char ();
819 *result = INTRINSIC_CONCAT;
820 return MATCH_YES;
822 /* Matched "/". */
823 *result = INTRINSIC_DIVIDE;
824 return MATCH_YES;
826 case '.':
827 ch = gfc_next_ascii_char ();
828 switch (ch)
830 case 'a':
831 if (gfc_next_ascii_char () == 'n'
832 && gfc_next_ascii_char () == 'd'
833 && gfc_next_ascii_char () == '.')
835 /* Matched ".and.". */
836 *result = INTRINSIC_AND;
837 return MATCH_YES;
839 break;
841 case 'e':
842 if (gfc_next_ascii_char () == 'q')
844 ch = gfc_next_ascii_char ();
845 if (ch == '.')
847 /* Matched ".eq.". */
848 *result = INTRINSIC_EQ_OS;
849 return MATCH_YES;
851 else if (ch == 'v')
853 if (gfc_next_ascii_char () == '.')
855 /* Matched ".eqv.". */
856 *result = INTRINSIC_EQV;
857 return MATCH_YES;
861 break;
863 case 'g':
864 ch = gfc_next_ascii_char ();
865 if (ch == 'e')
867 if (gfc_next_ascii_char () == '.')
869 /* Matched ".ge.". */
870 *result = INTRINSIC_GE_OS;
871 return MATCH_YES;
874 else if (ch == 't')
876 if (gfc_next_ascii_char () == '.')
878 /* Matched ".gt.". */
879 *result = INTRINSIC_GT_OS;
880 return MATCH_YES;
883 break;
885 case 'l':
886 ch = gfc_next_ascii_char ();
887 if (ch == 'e')
889 if (gfc_next_ascii_char () == '.')
891 /* Matched ".le.". */
892 *result = INTRINSIC_LE_OS;
893 return MATCH_YES;
896 else if (ch == 't')
898 if (gfc_next_ascii_char () == '.')
900 /* Matched ".lt.". */
901 *result = INTRINSIC_LT_OS;
902 return MATCH_YES;
905 break;
907 case 'n':
908 ch = gfc_next_ascii_char ();
909 if (ch == 'e')
911 ch = gfc_next_ascii_char ();
912 if (ch == '.')
914 /* Matched ".ne.". */
915 *result = INTRINSIC_NE_OS;
916 return MATCH_YES;
918 else if (ch == 'q')
920 if (gfc_next_ascii_char () == 'v'
921 && gfc_next_ascii_char () == '.')
923 /* Matched ".neqv.". */
924 *result = INTRINSIC_NEQV;
925 return MATCH_YES;
929 else if (ch == 'o')
931 if (gfc_next_ascii_char () == 't'
932 && gfc_next_ascii_char () == '.')
934 /* Matched ".not.". */
935 *result = INTRINSIC_NOT;
936 return MATCH_YES;
939 break;
941 case 'o':
942 if (gfc_next_ascii_char () == 'r'
943 && gfc_next_ascii_char () == '.')
945 /* Matched ".or.". */
946 *result = INTRINSIC_OR;
947 return MATCH_YES;
949 break;
951 case 'x':
952 if (gfc_next_ascii_char () == 'o'
953 && gfc_next_ascii_char () == 'r'
954 && gfc_next_ascii_char () == '.')
956 if (!gfc_notify_std (GFC_STD_LEGACY, ".XOR. operator at %C"))
957 return MATCH_ERROR;
958 /* Matched ".xor." - equivalent to ".neqv.". */
959 *result = INTRINSIC_NEQV;
960 return MATCH_YES;
962 break;
964 default:
965 break;
967 break;
969 default:
970 break;
973 gfc_current_locus = orig_loc;
974 return MATCH_NO;
978 /* Match a loop control phrase:
980 <LVALUE> = <EXPR>, <EXPR> [, <EXPR> ]
982 If the final integer expression is not present, a constant unity
983 expression is returned. We don't return MATCH_ERROR until after
984 the equals sign is seen. */
986 match
987 gfc_match_iterator (gfc_iterator *iter, int init_flag)
989 char name[GFC_MAX_SYMBOL_LEN + 1];
990 gfc_expr *var, *e1, *e2, *e3;
991 locus start;
992 match m;
994 e1 = e2 = e3 = NULL;
996 /* Match the start of an iterator without affecting the symbol table. */
998 start = gfc_current_locus;
999 m = gfc_match (" %n =", name);
1000 gfc_current_locus = start;
1002 if (m != MATCH_YES)
1003 return MATCH_NO;
1005 m = gfc_match_variable (&var, 0);
1006 if (m != MATCH_YES)
1007 return MATCH_NO;
1009 if (var->symtree->n.sym->attr.dimension)
1011 gfc_error ("Loop variable at %C cannot be an array");
1012 goto cleanup;
1015 /* F2008, C617 & C565. */
1016 if (var->symtree->n.sym->attr.codimension)
1018 gfc_error ("Loop variable at %C cannot be a coarray");
1019 goto cleanup;
1022 if (var->ref != NULL)
1024 gfc_error ("Loop variable at %C cannot be a sub-component");
1025 goto cleanup;
1028 gfc_match_char ('=');
1030 var->symtree->n.sym->attr.implied_index = 1;
1032 m = init_flag ? gfc_match_init_expr (&e1) : gfc_match_expr (&e1);
1033 if (m == MATCH_NO)
1034 goto syntax;
1035 if (m == MATCH_ERROR)
1036 goto cleanup;
1038 if (gfc_match_char (',') != MATCH_YES)
1039 goto syntax;
1041 m = init_flag ? gfc_match_init_expr (&e2) : gfc_match_expr (&e2);
1042 if (m == MATCH_NO)
1043 goto syntax;
1044 if (m == MATCH_ERROR)
1045 goto cleanup;
1047 if (gfc_match_char (',') != MATCH_YES)
1049 e3 = gfc_get_int_expr (gfc_default_integer_kind, NULL, 1);
1050 goto done;
1053 m = init_flag ? gfc_match_init_expr (&e3) : gfc_match_expr (&e3);
1054 if (m == MATCH_ERROR)
1055 goto cleanup;
1056 if (m == MATCH_NO)
1058 gfc_error ("Expected a step value in iterator at %C");
1059 goto cleanup;
1062 done:
1063 iter->var = var;
1064 iter->start = e1;
1065 iter->end = e2;
1066 iter->step = e3;
1067 return MATCH_YES;
1069 syntax:
1070 gfc_error ("Syntax error in iterator at %C");
1072 cleanup:
1073 gfc_free_expr (e1);
1074 gfc_free_expr (e2);
1075 gfc_free_expr (e3);
1077 return MATCH_ERROR;
1081 /* Tries to match the next non-whitespace character on the input.
1082 This subroutine does not return MATCH_ERROR. */
1084 match
1085 gfc_match_char (char c)
1087 locus where;
1089 where = gfc_current_locus;
1090 gfc_gobble_whitespace ();
1092 if (gfc_next_ascii_char () == c)
1093 return MATCH_YES;
1095 gfc_current_locus = where;
1096 return MATCH_NO;
1100 /* General purpose matching subroutine. The target string is a
1101 scanf-like format string in which spaces correspond to arbitrary
1102 whitespace (including no whitespace), characters correspond to
1103 themselves. The %-codes are:
1105 %% Literal percent sign
1106 %e Expression, pointer to a pointer is set
1107 %s Symbol, pointer to the symbol is set
1108 %n Name, character buffer is set to name
1109 %t Matches end of statement.
1110 %o Matches an intrinsic operator, returned as an INTRINSIC enum.
1111 %l Matches a statement label
1112 %v Matches a variable expression (an lvalue)
1113 % Matches a required space (in free form) and optional spaces. */
1115 match
1116 gfc_match (const char *target, ...)
1118 gfc_st_label **label;
1119 int matches, *ip;
1120 locus old_loc;
1121 va_list argp;
1122 char c, *np;
1123 match m, n;
1124 void **vp;
1125 const char *p;
1127 old_loc = gfc_current_locus;
1128 va_start (argp, target);
1129 m = MATCH_NO;
1130 matches = 0;
1131 p = target;
1133 loop:
1134 c = *p++;
1135 switch (c)
1137 case ' ':
1138 gfc_gobble_whitespace ();
1139 goto loop;
1140 case '\0':
1141 m = MATCH_YES;
1142 break;
1144 case '%':
1145 c = *p++;
1146 switch (c)
1148 case 'e':
1149 vp = va_arg (argp, void **);
1150 n = gfc_match_expr ((gfc_expr **) vp);
1151 if (n != MATCH_YES)
1153 m = n;
1154 goto not_yes;
1157 matches++;
1158 goto loop;
1160 case 'v':
1161 vp = va_arg (argp, void **);
1162 n = gfc_match_variable ((gfc_expr **) vp, 0);
1163 if (n != MATCH_YES)
1165 m = n;
1166 goto not_yes;
1169 matches++;
1170 goto loop;
1172 case 's':
1173 vp = va_arg (argp, void **);
1174 n = gfc_match_symbol ((gfc_symbol **) vp, 0);
1175 if (n != MATCH_YES)
1177 m = n;
1178 goto not_yes;
1181 matches++;
1182 goto loop;
1184 case 'n':
1185 np = va_arg (argp, char *);
1186 n = gfc_match_name (np);
1187 if (n != MATCH_YES)
1189 m = n;
1190 goto not_yes;
1193 matches++;
1194 goto loop;
1196 case 'l':
1197 label = va_arg (argp, gfc_st_label **);
1198 n = gfc_match_st_label (label);
1199 if (n != MATCH_YES)
1201 m = n;
1202 goto not_yes;
1205 matches++;
1206 goto loop;
1208 case 'o':
1209 ip = va_arg (argp, int *);
1210 n = gfc_match_intrinsic_op ((gfc_intrinsic_op *) ip);
1211 if (n != MATCH_YES)
1213 m = n;
1214 goto not_yes;
1217 matches++;
1218 goto loop;
1220 case 't':
1221 if (gfc_match_eos () != MATCH_YES)
1223 m = MATCH_NO;
1224 goto not_yes;
1226 goto loop;
1228 case ' ':
1229 if (gfc_match_space () == MATCH_YES)
1230 goto loop;
1231 m = MATCH_NO;
1232 goto not_yes;
1234 case '%':
1235 break; /* Fall through to character matcher. */
1237 default:
1238 gfc_internal_error ("gfc_match(): Bad match code %c", c);
1240 /* FALLTHRU */
1242 default:
1244 /* gfc_next_ascii_char converts characters to lower-case, so we shouldn't
1245 expect an upper case character here! */
1246 gcc_assert (TOLOWER (c) == c);
1248 if (c == gfc_next_ascii_char ())
1249 goto loop;
1250 break;
1253 not_yes:
1254 va_end (argp);
1256 if (m != MATCH_YES)
1258 /* Clean up after a failed match. */
1259 gfc_current_locus = old_loc;
1260 va_start (argp, target);
1262 p = target;
1263 for (; matches > 0; matches--)
1265 while (*p++ != '%');
1267 switch (*p++)
1269 case '%':
1270 matches++;
1271 break; /* Skip. */
1273 /* Matches that don't have to be undone */
1274 case 'o':
1275 case 'l':
1276 case 'n':
1277 case 's':
1278 (void) va_arg (argp, void **);
1279 break;
1281 case 'e':
1282 case 'v':
1283 vp = va_arg (argp, void **);
1284 gfc_free_expr ((struct gfc_expr *)*vp);
1285 *vp = NULL;
1286 break;
1290 va_end (argp);
1293 return m;
1297 /*********************** Statement level matching **********************/
1299 /* Matches the start of a program unit, which is the program keyword
1300 followed by an obligatory symbol. */
1302 match
1303 gfc_match_program (void)
1305 gfc_symbol *sym;
1306 match m;
1308 m = gfc_match ("% %s%t", &sym);
1310 if (m == MATCH_NO)
1312 gfc_error ("Invalid form of PROGRAM statement at %C");
1313 m = MATCH_ERROR;
1316 if (m == MATCH_ERROR)
1317 return m;
1319 if (!gfc_add_flavor (&sym->attr, FL_PROGRAM, sym->name, NULL))
1320 return MATCH_ERROR;
1322 gfc_new_block = sym;
1324 return MATCH_YES;
1328 /* Match a simple assignment statement. */
1330 match
1331 gfc_match_assignment (void)
1333 gfc_expr *lvalue, *rvalue;
1334 locus old_loc;
1335 match m;
1337 old_loc = gfc_current_locus;
1339 lvalue = NULL;
1340 m = gfc_match (" %v =", &lvalue);
1341 if (m != MATCH_YES)
1343 gfc_current_locus = old_loc;
1344 gfc_free_expr (lvalue);
1345 return MATCH_NO;
1348 rvalue = NULL;
1349 m = gfc_match (" %e%t", &rvalue);
1351 if (lvalue->expr_type == EXPR_CONSTANT)
1353 /* This clobbers %len and %kind. */
1354 m = MATCH_ERROR;
1355 gfc_error ("Assignment to a constant expression at %C");
1358 if (m != MATCH_YES)
1360 gfc_current_locus = old_loc;
1361 gfc_free_expr (lvalue);
1362 gfc_free_expr (rvalue);
1363 return m;
1366 gfc_set_sym_referenced (lvalue->symtree->n.sym);
1368 new_st.op = EXEC_ASSIGN;
1369 new_st.expr1 = lvalue;
1370 new_st.expr2 = rvalue;
1372 gfc_check_do_variable (lvalue->symtree);
1374 if (lvalue->ts.type == BT_CLASS)
1375 gfc_find_vtab (&rvalue->ts);
1377 return MATCH_YES;
1381 /* Match a pointer assignment statement. */
1383 match
1384 gfc_match_pointer_assignment (void)
1386 gfc_expr *lvalue, *rvalue;
1387 locus old_loc;
1388 match m;
1390 old_loc = gfc_current_locus;
1392 lvalue = rvalue = NULL;
1393 gfc_matching_ptr_assignment = 0;
1394 gfc_matching_procptr_assignment = 0;
1396 m = gfc_match (" %v =>", &lvalue);
1397 if (m != MATCH_YES)
1399 m = MATCH_NO;
1400 goto cleanup;
1403 if (lvalue->symtree->n.sym->attr.proc_pointer
1404 || gfc_is_proc_ptr_comp (lvalue))
1405 gfc_matching_procptr_assignment = 1;
1406 else
1407 gfc_matching_ptr_assignment = 1;
1409 m = gfc_match (" %e%t", &rvalue);
1410 gfc_matching_ptr_assignment = 0;
1411 gfc_matching_procptr_assignment = 0;
1412 if (m != MATCH_YES)
1413 goto cleanup;
1415 new_st.op = EXEC_POINTER_ASSIGN;
1416 new_st.expr1 = lvalue;
1417 new_st.expr2 = rvalue;
1419 return MATCH_YES;
1421 cleanup:
1422 gfc_current_locus = old_loc;
1423 gfc_free_expr (lvalue);
1424 gfc_free_expr (rvalue);
1425 return m;
1429 /* We try to match an easy arithmetic IF statement. This only happens
1430 when just after having encountered a simple IF statement. This code
1431 is really duplicate with parts of the gfc_match_if code, but this is
1432 *much* easier. */
1434 static match
1435 match_arithmetic_if (void)
1437 gfc_st_label *l1, *l2, *l3;
1438 gfc_expr *expr;
1439 match m;
1441 m = gfc_match (" ( %e ) %l , %l , %l%t", &expr, &l1, &l2, &l3);
1442 if (m != MATCH_YES)
1443 return m;
1445 if (!gfc_reference_st_label (l1, ST_LABEL_TARGET)
1446 || !gfc_reference_st_label (l2, ST_LABEL_TARGET)
1447 || !gfc_reference_st_label (l3, ST_LABEL_TARGET))
1449 gfc_free_expr (expr);
1450 return MATCH_ERROR;
1453 if (!gfc_notify_std (GFC_STD_F95_OBS | GFC_STD_F2018_DEL,
1454 "Arithmetic IF statement at %C"))
1455 return MATCH_ERROR;
1457 new_st.op = EXEC_ARITHMETIC_IF;
1458 new_st.expr1 = expr;
1459 new_st.label1 = l1;
1460 new_st.label2 = l2;
1461 new_st.label3 = l3;
1463 return MATCH_YES;
1467 /* The IF statement is a bit of a pain. First of all, there are three
1468 forms of it, the simple IF, the IF that starts a block and the
1469 arithmetic IF.
1471 There is a problem with the simple IF and that is the fact that we
1472 only have a single level of undo information on symbols. What this
1473 means is for a simple IF, we must re-match the whole IF statement
1474 multiple times in order to guarantee that the symbol table ends up
1475 in the proper state. */
1477 static match match_simple_forall (void);
1478 static match match_simple_where (void);
1480 match
1481 gfc_match_if (gfc_statement *if_type)
1483 gfc_expr *expr;
1484 gfc_st_label *l1, *l2, *l3;
1485 locus old_loc, old_loc2;
1486 gfc_code *p;
1487 match m, n;
1489 n = gfc_match_label ();
1490 if (n == MATCH_ERROR)
1491 return n;
1493 old_loc = gfc_current_locus;
1495 m = gfc_match (" if ", &expr);
1496 if (m != MATCH_YES)
1497 return m;
1499 if (gfc_match_char ('(') != MATCH_YES)
1501 gfc_error ("Missing %<(%> in IF-expression at %C");
1502 return MATCH_ERROR;
1505 m = gfc_match ("%e", &expr);
1506 if (m != MATCH_YES)
1507 return m;
1509 old_loc2 = gfc_current_locus;
1510 gfc_current_locus = old_loc;
1512 if (gfc_match_parens () == MATCH_ERROR)
1513 return MATCH_ERROR;
1515 gfc_current_locus = old_loc2;
1517 if (gfc_match_char (')') != MATCH_YES)
1519 gfc_error ("Syntax error in IF-expression at %C");
1520 gfc_free_expr (expr);
1521 return MATCH_ERROR;
1524 m = gfc_match (" %l , %l , %l%t", &l1, &l2, &l3);
1526 if (m == MATCH_YES)
1528 if (n == MATCH_YES)
1530 gfc_error ("Block label not appropriate for arithmetic IF "
1531 "statement at %C");
1532 gfc_free_expr (expr);
1533 return MATCH_ERROR;
1536 if (!gfc_reference_st_label (l1, ST_LABEL_TARGET)
1537 || !gfc_reference_st_label (l2, ST_LABEL_TARGET)
1538 || !gfc_reference_st_label (l3, ST_LABEL_TARGET))
1540 gfc_free_expr (expr);
1541 return MATCH_ERROR;
1544 if (!gfc_notify_std (GFC_STD_F95_OBS | GFC_STD_F2018_DEL,
1545 "Arithmetic IF statement at %C"))
1546 return MATCH_ERROR;
1548 new_st.op = EXEC_ARITHMETIC_IF;
1549 new_st.expr1 = expr;
1550 new_st.label1 = l1;
1551 new_st.label2 = l2;
1552 new_st.label3 = l3;
1554 *if_type = ST_ARITHMETIC_IF;
1555 return MATCH_YES;
1558 if (gfc_match (" then%t") == MATCH_YES)
1560 new_st.op = EXEC_IF;
1561 new_st.expr1 = expr;
1562 *if_type = ST_IF_BLOCK;
1563 return MATCH_YES;
1566 if (n == MATCH_YES)
1568 gfc_error ("Block label is not appropriate for IF statement at %C");
1569 gfc_free_expr (expr);
1570 return MATCH_ERROR;
1573 /* At this point the only thing left is a simple IF statement. At
1574 this point, n has to be MATCH_NO, so we don't have to worry about
1575 re-matching a block label. From what we've got so far, try
1576 matching an assignment. */
1578 *if_type = ST_SIMPLE_IF;
1580 m = gfc_match_assignment ();
1581 if (m == MATCH_YES)
1582 goto got_match;
1584 gfc_free_expr (expr);
1585 gfc_undo_symbols ();
1586 gfc_current_locus = old_loc;
1588 /* m can be MATCH_NO or MATCH_ERROR, here. For MATCH_ERROR, a mangled
1589 assignment was found. For MATCH_NO, continue to call the various
1590 matchers. */
1591 if (m == MATCH_ERROR)
1592 return MATCH_ERROR;
1594 gfc_match (" if ( %e ) ", &expr); /* Guaranteed to match. */
1596 m = gfc_match_pointer_assignment ();
1597 if (m == MATCH_YES)
1598 goto got_match;
1600 gfc_free_expr (expr);
1601 gfc_undo_symbols ();
1602 gfc_current_locus = old_loc;
1604 gfc_match (" if ( %e ) ", &expr); /* Guaranteed to match. */
1606 /* Look at the next keyword to see which matcher to call. Matching
1607 the keyword doesn't affect the symbol table, so we don't have to
1608 restore between tries. */
1610 #define match(string, subr, statement) \
1611 if (gfc_match (string) == MATCH_YES) { m = subr(); goto got_match; }
1613 gfc_clear_error ();
1615 match ("allocate", gfc_match_allocate, ST_ALLOCATE)
1616 match ("assign", gfc_match_assign, ST_LABEL_ASSIGNMENT)
1617 match ("backspace", gfc_match_backspace, ST_BACKSPACE)
1618 match ("call", gfc_match_call, ST_CALL)
1619 match ("change team", gfc_match_change_team, ST_CHANGE_TEAM)
1620 match ("close", gfc_match_close, ST_CLOSE)
1621 match ("continue", gfc_match_continue, ST_CONTINUE)
1622 match ("cycle", gfc_match_cycle, ST_CYCLE)
1623 match ("deallocate", gfc_match_deallocate, ST_DEALLOCATE)
1624 match ("end file", gfc_match_endfile, ST_END_FILE)
1625 match ("end team", gfc_match_end_team, ST_END_TEAM)
1626 match ("error stop", gfc_match_error_stop, ST_ERROR_STOP)
1627 match ("event post", gfc_match_event_post, ST_EVENT_POST)
1628 match ("event wait", gfc_match_event_wait, ST_EVENT_WAIT)
1629 match ("exit", gfc_match_exit, ST_EXIT)
1630 match ("fail image", gfc_match_fail_image, ST_FAIL_IMAGE)
1631 match ("flush", gfc_match_flush, ST_FLUSH)
1632 match ("forall", match_simple_forall, ST_FORALL)
1633 match ("form team", gfc_match_form_team, ST_FORM_TEAM)
1634 match ("go to", gfc_match_goto, ST_GOTO)
1635 match ("if", match_arithmetic_if, ST_ARITHMETIC_IF)
1636 match ("inquire", gfc_match_inquire, ST_INQUIRE)
1637 match ("lock", gfc_match_lock, ST_LOCK)
1638 match ("nullify", gfc_match_nullify, ST_NULLIFY)
1639 match ("open", gfc_match_open, ST_OPEN)
1640 match ("pause", gfc_match_pause, ST_NONE)
1641 match ("print", gfc_match_print, ST_WRITE)
1642 match ("read", gfc_match_read, ST_READ)
1643 match ("return", gfc_match_return, ST_RETURN)
1644 match ("rewind", gfc_match_rewind, ST_REWIND)
1645 match ("stop", gfc_match_stop, ST_STOP)
1646 match ("wait", gfc_match_wait, ST_WAIT)
1647 match ("sync all", gfc_match_sync_all, ST_SYNC_CALL);
1648 match ("sync images", gfc_match_sync_images, ST_SYNC_IMAGES);
1649 match ("sync memory", gfc_match_sync_memory, ST_SYNC_MEMORY);
1650 match ("sync team", gfc_match_sync_team, ST_SYNC_TEAM)
1651 match ("unlock", gfc_match_unlock, ST_UNLOCK)
1652 match ("where", match_simple_where, ST_WHERE)
1653 match ("write", gfc_match_write, ST_WRITE)
1655 if (flag_dec)
1656 match ("type", gfc_match_print, ST_WRITE)
1658 /* All else has failed, so give up. See if any of the matchers has
1659 stored an error message of some sort. */
1660 if (!gfc_error_check ())
1661 gfc_error ("Syntax error in IF-clause after %C");
1663 gfc_free_expr (expr);
1664 return MATCH_ERROR;
1666 got_match:
1667 if (m == MATCH_NO)
1668 gfc_error ("Syntax error in IF-clause after %C");
1669 if (m != MATCH_YES)
1671 gfc_free_expr (expr);
1672 return MATCH_ERROR;
1675 /* At this point, we've matched the single IF and the action clause
1676 is in new_st. Rearrange things so that the IF statement appears
1677 in new_st. */
1679 p = gfc_get_code (EXEC_IF);
1680 p->next = XCNEW (gfc_code);
1681 *p->next = new_st;
1682 p->next->loc = gfc_current_locus;
1684 p->expr1 = expr;
1686 gfc_clear_new_st ();
1688 new_st.op = EXEC_IF;
1689 new_st.block = p;
1691 return MATCH_YES;
1694 #undef match
1697 /* Match an ELSE statement. */
1699 match
1700 gfc_match_else (void)
1702 char name[GFC_MAX_SYMBOL_LEN + 1];
1704 if (gfc_match_eos () == MATCH_YES)
1705 return MATCH_YES;
1707 if (gfc_match_name (name) != MATCH_YES
1708 || gfc_current_block () == NULL
1709 || gfc_match_eos () != MATCH_YES)
1711 gfc_error ("Invalid character(s) in ELSE statement after %C");
1712 return MATCH_ERROR;
1715 if (strcmp (name, gfc_current_block ()->name) != 0)
1717 gfc_error ("Label %qs at %C doesn't match IF label %qs",
1718 name, gfc_current_block ()->name);
1719 return MATCH_ERROR;
1722 return MATCH_YES;
1726 /* Match an ELSE IF statement. */
1728 match
1729 gfc_match_elseif (void)
1731 char name[GFC_MAX_SYMBOL_LEN + 1];
1732 gfc_expr *expr, *then;
1733 locus where;
1734 match m;
1736 if (gfc_match_char ('(') != MATCH_YES)
1738 gfc_error ("Missing %<(%> in ELSE IF expression at %C");
1739 return MATCH_ERROR;
1742 m = gfc_match (" %e ", &expr);
1743 if (m != MATCH_YES)
1744 return m;
1746 if (gfc_match_char (')') != MATCH_YES)
1748 gfc_error ("Missing %<)%> in ELSE IF expression at %C");
1749 goto cleanup;
1752 m = gfc_match (" then ", &then);
1754 where = gfc_current_locus;
1756 if (m == MATCH_YES && (gfc_match_eos () == MATCH_YES
1757 || (gfc_current_block ()
1758 && gfc_match_name (name) == MATCH_YES)))
1759 goto done;
1761 if (gfc_match_eos () == MATCH_YES)
1763 gfc_error ("Missing THEN in ELSE IF statement after %L", &where);
1764 goto cleanup;
1767 if (gfc_match_name (name) != MATCH_YES
1768 || gfc_current_block () == NULL
1769 || gfc_match_eos () != MATCH_YES)
1771 gfc_error ("Syntax error in ELSE IF statement after %L", &where);
1772 goto cleanup;
1775 if (strcmp (name, gfc_current_block ()->name) != 0)
1777 gfc_error ("Label %qs after %L doesn't match IF label %qs",
1778 name, &where, gfc_current_block ()->name);
1779 goto cleanup;
1782 if (m != MATCH_YES)
1783 return m;
1785 done:
1786 new_st.op = EXEC_IF;
1787 new_st.expr1 = expr;
1788 return MATCH_YES;
1790 cleanup:
1791 gfc_free_expr (expr);
1792 return MATCH_ERROR;
1796 /* Free a gfc_iterator structure. */
1798 void
1799 gfc_free_iterator (gfc_iterator *iter, int flag)
1802 if (iter == NULL)
1803 return;
1805 gfc_free_expr (iter->var);
1806 gfc_free_expr (iter->start);
1807 gfc_free_expr (iter->end);
1808 gfc_free_expr (iter->step);
1810 if (flag)
1811 free (iter);
1815 /* Match a CRITICAL statement. */
1816 match
1817 gfc_match_critical (void)
1819 gfc_st_label *label = NULL;
1821 if (gfc_match_label () == MATCH_ERROR)
1822 return MATCH_ERROR;
1824 if (gfc_match (" critical") != MATCH_YES)
1825 return MATCH_NO;
1827 if (gfc_match_st_label (&label) == MATCH_ERROR)
1828 return MATCH_ERROR;
1830 if (gfc_match_eos () != MATCH_YES)
1832 gfc_syntax_error (ST_CRITICAL);
1833 return MATCH_ERROR;
1836 if (gfc_pure (NULL))
1838 gfc_error ("Image control statement CRITICAL at %C in PURE procedure");
1839 return MATCH_ERROR;
1842 if (gfc_find_state (COMP_DO_CONCURRENT))
1844 gfc_error ("Image control statement CRITICAL at %C in DO CONCURRENT "
1845 "block");
1846 return MATCH_ERROR;
1849 gfc_unset_implicit_pure (NULL);
1851 if (!gfc_notify_std (GFC_STD_F2008, "CRITICAL statement at %C"))
1852 return MATCH_ERROR;
1854 if (flag_coarray == GFC_FCOARRAY_NONE)
1856 gfc_fatal_error ("Coarrays disabled at %C, use %<-fcoarray=%> to "
1857 "enable");
1858 return MATCH_ERROR;
1861 if (gfc_find_state (COMP_CRITICAL))
1863 gfc_error ("Nested CRITICAL block at %C");
1864 return MATCH_ERROR;
1867 new_st.op = EXEC_CRITICAL;
1869 if (label != NULL
1870 && !gfc_reference_st_label (label, ST_LABEL_TARGET))
1871 return MATCH_ERROR;
1873 return MATCH_YES;
1877 /* Match a BLOCK statement. */
1879 match
1880 gfc_match_block (void)
1882 match m;
1884 if (gfc_match_label () == MATCH_ERROR)
1885 return MATCH_ERROR;
1887 if (gfc_match (" block") != MATCH_YES)
1888 return MATCH_NO;
1890 /* For this to be a correct BLOCK statement, the line must end now. */
1891 m = gfc_match_eos ();
1892 if (m == MATCH_ERROR)
1893 return MATCH_ERROR;
1894 if (m == MATCH_NO)
1895 return MATCH_NO;
1897 return MATCH_YES;
1901 /* Match an ASSOCIATE statement. */
1903 match
1904 gfc_match_associate (void)
1906 if (gfc_match_label () == MATCH_ERROR)
1907 return MATCH_ERROR;
1909 if (gfc_match (" associate") != MATCH_YES)
1910 return MATCH_NO;
1912 /* Match the association list. */
1913 if (gfc_match_char ('(') != MATCH_YES)
1915 gfc_error ("Expected association list at %C");
1916 return MATCH_ERROR;
1918 new_st.ext.block.assoc = NULL;
1919 while (true)
1921 gfc_association_list* newAssoc = gfc_get_association_list ();
1922 gfc_association_list* a;
1924 /* Match the next association. */
1925 if (gfc_match (" %n =>", newAssoc->name) != MATCH_YES)
1927 gfc_error ("Expected association at %C");
1928 goto assocListError;
1931 if (gfc_match (" %e", &newAssoc->target) != MATCH_YES)
1933 /* Have another go, allowing for procedure pointer selectors. */
1934 gfc_matching_procptr_assignment = 1;
1935 if (gfc_match (" %e", &newAssoc->target) != MATCH_YES)
1937 gfc_error ("Invalid association target at %C");
1938 goto assocListError;
1940 gfc_matching_procptr_assignment = 0;
1942 newAssoc->where = gfc_current_locus;
1944 /* Check that the current name is not yet in the list. */
1945 for (a = new_st.ext.block.assoc; a; a = a->next)
1946 if (!strcmp (a->name, newAssoc->name))
1948 gfc_error ("Duplicate name %qs in association at %C",
1949 newAssoc->name);
1950 goto assocListError;
1953 /* The target expression must not be coindexed. */
1954 if (gfc_is_coindexed (newAssoc->target))
1956 gfc_error ("Association target at %C must not be coindexed");
1957 goto assocListError;
1960 /* The `variable' field is left blank for now; because the target is not
1961 yet resolved, we can't use gfc_has_vector_subscript to determine it
1962 for now. This is set during resolution. */
1964 /* Put it into the list. */
1965 newAssoc->next = new_st.ext.block.assoc;
1966 new_st.ext.block.assoc = newAssoc;
1968 /* Try next one or end if closing parenthesis is found. */
1969 gfc_gobble_whitespace ();
1970 if (gfc_peek_char () == ')')
1971 break;
1972 if (gfc_match_char (',') != MATCH_YES)
1974 gfc_error ("Expected %<)%> or %<,%> at %C");
1975 return MATCH_ERROR;
1978 continue;
1980 assocListError:
1981 free (newAssoc);
1982 goto error;
1984 if (gfc_match_char (')') != MATCH_YES)
1986 /* This should never happen as we peek above. */
1987 gcc_unreachable ();
1990 if (gfc_match_eos () != MATCH_YES)
1992 gfc_error ("Junk after ASSOCIATE statement at %C");
1993 goto error;
1996 return MATCH_YES;
1998 error:
1999 gfc_free_association_list (new_st.ext.block.assoc);
2000 return MATCH_ERROR;
2004 /* Match a Fortran 2003 derived-type-spec (F03:R455), which is just the name of
2005 an accessible derived type. */
2007 static match
2008 match_derived_type_spec (gfc_typespec *ts)
2010 char name[GFC_MAX_SYMBOL_LEN + 1];
2011 locus old_locus;
2012 gfc_symbol *derived, *der_type;
2013 match m = MATCH_YES;
2014 gfc_actual_arglist *decl_type_param_list = NULL;
2015 bool is_pdt_template = false;
2017 old_locus = gfc_current_locus;
2019 if (gfc_match ("%n", name) != MATCH_YES)
2021 gfc_current_locus = old_locus;
2022 return MATCH_NO;
2025 gfc_find_symbol (name, NULL, 1, &derived);
2027 /* Match the PDT spec list, if there. */
2028 if (derived && derived->attr.flavor == FL_PROCEDURE)
2030 gfc_find_symbol (gfc_dt_upper_string (name), NULL, 1, &der_type);
2031 is_pdt_template = der_type
2032 && der_type->attr.flavor == FL_DERIVED
2033 && der_type->attr.pdt_template;
2036 if (is_pdt_template)
2037 m = gfc_match_actual_arglist (1, &decl_type_param_list, true);
2039 if (m == MATCH_ERROR)
2041 gfc_free_actual_arglist (decl_type_param_list);
2042 return m;
2045 if (derived && derived->attr.flavor == FL_PROCEDURE && derived->attr.generic)
2046 derived = gfc_find_dt_in_generic (derived);
2048 /* If this is a PDT, find the specific instance. */
2049 if (m == MATCH_YES && is_pdt_template)
2051 gfc_namespace *old_ns;
2053 old_ns = gfc_current_ns;
2054 while (gfc_current_ns && gfc_current_ns->parent)
2055 gfc_current_ns = gfc_current_ns->parent;
2057 if (type_param_spec_list)
2058 gfc_free_actual_arglist (type_param_spec_list);
2059 m = gfc_get_pdt_instance (decl_type_param_list, &der_type,
2060 &type_param_spec_list);
2061 gfc_free_actual_arglist (decl_type_param_list);
2063 if (m != MATCH_YES)
2064 return m;
2065 derived = der_type;
2066 gcc_assert (!derived->attr.pdt_template && derived->attr.pdt_type);
2067 gfc_set_sym_referenced (derived);
2069 gfc_current_ns = old_ns;
2072 if (derived && derived->attr.flavor == FL_DERIVED)
2074 ts->type = BT_DERIVED;
2075 ts->u.derived = derived;
2076 return MATCH_YES;
2079 gfc_current_locus = old_locus;
2080 return MATCH_NO;
2084 /* Match a Fortran 2003 type-spec (F03:R401). This is similar to
2085 gfc_match_decl_type_spec() from decl.c, with the following exceptions:
2086 It only includes the intrinsic types from the Fortran 2003 standard
2087 (thus, neither BYTE nor forms like REAL*4 are allowed). Additionally,
2088 the implicit_flag is not needed, so it was removed. Derived types are
2089 identified by their name alone. */
2091 match
2092 gfc_match_type_spec (gfc_typespec *ts)
2094 match m;
2095 locus old_locus;
2096 char c, name[GFC_MAX_SYMBOL_LEN + 1];
2098 gfc_clear_ts (ts);
2099 gfc_gobble_whitespace ();
2100 old_locus = gfc_current_locus;
2102 /* If c isn't [a-z], then return immediately. */
2103 c = gfc_peek_ascii_char ();
2104 if (!ISALPHA(c))
2105 return MATCH_NO;
2107 type_param_spec_list = NULL;
2109 if (match_derived_type_spec (ts) == MATCH_YES)
2111 /* Enforce F03:C401. */
2112 if (ts->u.derived->attr.abstract)
2114 gfc_error ("Derived type %qs at %L may not be ABSTRACT",
2115 ts->u.derived->name, &old_locus);
2116 return MATCH_ERROR;
2118 return MATCH_YES;
2121 if (gfc_match ("integer") == MATCH_YES)
2123 ts->type = BT_INTEGER;
2124 ts->kind = gfc_default_integer_kind;
2125 goto kind_selector;
2128 if (gfc_match ("double precision") == MATCH_YES)
2130 ts->type = BT_REAL;
2131 ts->kind = gfc_default_double_kind;
2132 return MATCH_YES;
2135 if (gfc_match ("complex") == MATCH_YES)
2137 ts->type = BT_COMPLEX;
2138 ts->kind = gfc_default_complex_kind;
2139 goto kind_selector;
2142 if (gfc_match ("character") == MATCH_YES)
2144 ts->type = BT_CHARACTER;
2146 m = gfc_match_char_spec (ts);
2148 if (m == MATCH_NO)
2149 m = MATCH_YES;
2151 return m;
2154 /* REAL is a real pain because it can be a type, intrinsic subprogram,
2155 or list item in a type-list of an OpenMP reduction clause. Need to
2156 differentiate REAL([KIND]=scalar-int-initialization-expr) from
2157 REAL(A,[KIND]) and REAL(KIND,A). Logically, when this code was
2158 written the use of LOGICAL as a type-spec or intrinsic subprogram
2159 was overlooked. */
2161 m = gfc_match (" %n", name);
2162 if (m == MATCH_YES
2163 && (strcmp (name, "real") == 0 || strcmp (name, "logical") == 0))
2165 char c;
2166 gfc_expr *e;
2167 locus where;
2169 if (*name == 'r')
2171 ts->type = BT_REAL;
2172 ts->kind = gfc_default_real_kind;
2174 else
2176 ts->type = BT_LOGICAL;
2177 ts->kind = gfc_default_logical_kind;
2180 gfc_gobble_whitespace ();
2182 /* Prevent REAL*4, etc. */
2183 c = gfc_peek_ascii_char ();
2184 if (c == '*')
2186 gfc_error ("Invalid type-spec at %C");
2187 return MATCH_ERROR;
2190 /* Found leading colon in REAL::, a trailing ')' in for example
2191 TYPE IS (REAL), or REAL, for an OpenMP list-item. */
2192 if (c == ':' || c == ')' || (flag_openmp && c == ','))
2193 return MATCH_YES;
2195 /* Found something other than the opening '(' in REAL(... */
2196 if (c != '(')
2197 return MATCH_NO;
2198 else
2199 gfc_next_char (); /* Burn the '('. */
2201 /* Look for the optional KIND=. */
2202 where = gfc_current_locus;
2203 m = gfc_match ("%n", name);
2204 if (m == MATCH_YES)
2206 gfc_gobble_whitespace ();
2207 c = gfc_next_char ();
2208 if (c == '=')
2210 if (strcmp(name, "a") == 0 || strcmp(name, "l") == 0)
2211 return MATCH_NO;
2212 else if (strcmp(name, "kind") == 0)
2213 goto found;
2214 else
2215 return MATCH_ERROR;
2217 else
2218 gfc_current_locus = where;
2220 else
2221 gfc_current_locus = where;
2223 found:
2225 m = gfc_match_init_expr (&e);
2226 if (m == MATCH_NO || m == MATCH_ERROR)
2227 return MATCH_NO;
2229 /* If a comma appears, it is an intrinsic subprogram. */
2230 gfc_gobble_whitespace ();
2231 c = gfc_peek_ascii_char ();
2232 if (c == ',')
2234 gfc_free_expr (e);
2235 return MATCH_NO;
2238 /* If ')' appears, we have REAL(initialization-expr), here check for
2239 a scalar integer initialization-expr and valid kind parameter. */
2240 if (c == ')')
2242 if (e->ts.type != BT_INTEGER || e->rank > 0)
2244 gfc_free_expr (e);
2245 return MATCH_NO;
2248 if (e->expr_type != EXPR_CONSTANT)
2249 goto ohno;
2251 gfc_next_char (); /* Burn the ')'. */
2252 ts->kind = (int) mpz_get_si (e->value.integer);
2253 if (gfc_validate_kind (ts->type, ts->kind , true) == -1)
2255 gfc_error ("Invalid type-spec at %C");
2256 return MATCH_ERROR;
2259 gfc_free_expr (e);
2261 return MATCH_YES;
2265 ohno:
2267 /* If a type is not matched, simply return MATCH_NO. */
2268 gfc_current_locus = old_locus;
2269 return MATCH_NO;
2271 kind_selector:
2273 gfc_gobble_whitespace ();
2275 /* This prevents INTEGER*4, etc. */
2276 if (gfc_peek_ascii_char () == '*')
2278 gfc_error ("Invalid type-spec at %C");
2279 return MATCH_ERROR;
2282 m = gfc_match_kind_spec (ts, false);
2284 /* No kind specifier found. */
2285 if (m == MATCH_NO)
2286 m = MATCH_YES;
2288 return m;
2292 /******************** FORALL subroutines ********************/
2294 /* Free a list of FORALL iterators. */
2296 void
2297 gfc_free_forall_iterator (gfc_forall_iterator *iter)
2299 gfc_forall_iterator *next;
2301 while (iter)
2303 next = iter->next;
2304 gfc_free_expr (iter->var);
2305 gfc_free_expr (iter->start);
2306 gfc_free_expr (iter->end);
2307 gfc_free_expr (iter->stride);
2308 free (iter);
2309 iter = next;
2314 /* Match an iterator as part of a FORALL statement. The format is:
2316 <var> = <start>:<end>[:<stride>]
2318 On MATCH_NO, the caller tests for the possibility that there is a
2319 scalar mask expression. */
2321 static match
2322 match_forall_iterator (gfc_forall_iterator **result)
2324 gfc_forall_iterator *iter;
2325 locus where;
2326 match m;
2328 where = gfc_current_locus;
2329 iter = XCNEW (gfc_forall_iterator);
2331 m = gfc_match_expr (&iter->var);
2332 if (m != MATCH_YES)
2333 goto cleanup;
2335 if (gfc_match_char ('=') != MATCH_YES
2336 || iter->var->expr_type != EXPR_VARIABLE)
2338 m = MATCH_NO;
2339 goto cleanup;
2342 m = gfc_match_expr (&iter->start);
2343 if (m != MATCH_YES)
2344 goto cleanup;
2346 if (gfc_match_char (':') != MATCH_YES)
2347 goto syntax;
2349 m = gfc_match_expr (&iter->end);
2350 if (m == MATCH_NO)
2351 goto syntax;
2352 if (m == MATCH_ERROR)
2353 goto cleanup;
2355 if (gfc_match_char (':') == MATCH_NO)
2356 iter->stride = gfc_get_int_expr (gfc_default_integer_kind, NULL, 1);
2357 else
2359 m = gfc_match_expr (&iter->stride);
2360 if (m == MATCH_NO)
2361 goto syntax;
2362 if (m == MATCH_ERROR)
2363 goto cleanup;
2366 /* Mark the iteration variable's symbol as used as a FORALL index. */
2367 iter->var->symtree->n.sym->forall_index = true;
2369 *result = iter;
2370 return MATCH_YES;
2372 syntax:
2373 gfc_error ("Syntax error in FORALL iterator at %C");
2374 m = MATCH_ERROR;
2376 cleanup:
2378 gfc_current_locus = where;
2379 gfc_free_forall_iterator (iter);
2380 return m;
2384 /* Match the header of a FORALL statement. */
2386 static match
2387 match_forall_header (gfc_forall_iterator **phead, gfc_expr **mask)
2389 gfc_forall_iterator *head, *tail, *new_iter;
2390 gfc_expr *msk;
2391 match m;
2393 gfc_gobble_whitespace ();
2395 head = tail = NULL;
2396 msk = NULL;
2398 if (gfc_match_char ('(') != MATCH_YES)
2399 return MATCH_NO;
2401 m = match_forall_iterator (&new_iter);
2402 if (m == MATCH_ERROR)
2403 goto cleanup;
2404 if (m == MATCH_NO)
2405 goto syntax;
2407 head = tail = new_iter;
2409 for (;;)
2411 if (gfc_match_char (',') != MATCH_YES)
2412 break;
2414 m = match_forall_iterator (&new_iter);
2415 if (m == MATCH_ERROR)
2416 goto cleanup;
2418 if (m == MATCH_YES)
2420 tail->next = new_iter;
2421 tail = new_iter;
2422 continue;
2425 /* Have to have a mask expression. */
2427 m = gfc_match_expr (&msk);
2428 if (m == MATCH_NO)
2429 goto syntax;
2430 if (m == MATCH_ERROR)
2431 goto cleanup;
2433 break;
2436 if (gfc_match_char (')') == MATCH_NO)
2437 goto syntax;
2439 *phead = head;
2440 *mask = msk;
2441 return MATCH_YES;
2443 syntax:
2444 gfc_syntax_error (ST_FORALL);
2446 cleanup:
2447 gfc_free_expr (msk);
2448 gfc_free_forall_iterator (head);
2450 return MATCH_ERROR;
2453 /* Match the rest of a simple FORALL statement that follows an
2454 IF statement. */
2456 static match
2457 match_simple_forall (void)
2459 gfc_forall_iterator *head;
2460 gfc_expr *mask;
2461 gfc_code *c;
2462 match m;
2464 mask = NULL;
2465 head = NULL;
2466 c = NULL;
2468 m = match_forall_header (&head, &mask);
2470 if (m == MATCH_NO)
2471 goto syntax;
2472 if (m != MATCH_YES)
2473 goto cleanup;
2475 m = gfc_match_assignment ();
2477 if (m == MATCH_ERROR)
2478 goto cleanup;
2479 if (m == MATCH_NO)
2481 m = gfc_match_pointer_assignment ();
2482 if (m == MATCH_ERROR)
2483 goto cleanup;
2484 if (m == MATCH_NO)
2485 goto syntax;
2488 c = XCNEW (gfc_code);
2489 *c = new_st;
2490 c->loc = gfc_current_locus;
2492 if (gfc_match_eos () != MATCH_YES)
2493 goto syntax;
2495 gfc_clear_new_st ();
2496 new_st.op = EXEC_FORALL;
2497 new_st.expr1 = mask;
2498 new_st.ext.forall_iterator = head;
2499 new_st.block = gfc_get_code (EXEC_FORALL);
2500 new_st.block->next = c;
2502 return MATCH_YES;
2504 syntax:
2505 gfc_syntax_error (ST_FORALL);
2507 cleanup:
2508 gfc_free_forall_iterator (head);
2509 gfc_free_expr (mask);
2511 return MATCH_ERROR;
2515 /* Match a FORALL statement. */
2517 match
2518 gfc_match_forall (gfc_statement *st)
2520 gfc_forall_iterator *head;
2521 gfc_expr *mask;
2522 gfc_code *c;
2523 match m0, m;
2525 head = NULL;
2526 mask = NULL;
2527 c = NULL;
2529 m0 = gfc_match_label ();
2530 if (m0 == MATCH_ERROR)
2531 return MATCH_ERROR;
2533 m = gfc_match (" forall");
2534 if (m != MATCH_YES)
2535 return m;
2537 m = match_forall_header (&head, &mask);
2538 if (m == MATCH_ERROR)
2539 goto cleanup;
2540 if (m == MATCH_NO)
2541 goto syntax;
2543 if (gfc_match_eos () == MATCH_YES)
2545 *st = ST_FORALL_BLOCK;
2546 new_st.op = EXEC_FORALL;
2547 new_st.expr1 = mask;
2548 new_st.ext.forall_iterator = head;
2549 return MATCH_YES;
2552 m = gfc_match_assignment ();
2553 if (m == MATCH_ERROR)
2554 goto cleanup;
2555 if (m == MATCH_NO)
2557 m = gfc_match_pointer_assignment ();
2558 if (m == MATCH_ERROR)
2559 goto cleanup;
2560 if (m == MATCH_NO)
2561 goto syntax;
2564 c = XCNEW (gfc_code);
2565 *c = new_st;
2566 c->loc = gfc_current_locus;
2568 gfc_clear_new_st ();
2569 new_st.op = EXEC_FORALL;
2570 new_st.expr1 = mask;
2571 new_st.ext.forall_iterator = head;
2572 new_st.block = gfc_get_code (EXEC_FORALL);
2573 new_st.block->next = c;
2575 *st = ST_FORALL;
2576 return MATCH_YES;
2578 syntax:
2579 gfc_syntax_error (ST_FORALL);
2581 cleanup:
2582 gfc_free_forall_iterator (head);
2583 gfc_free_expr (mask);
2584 gfc_free_statements (c);
2585 return MATCH_NO;
2589 /* Match a DO statement. */
2591 match
2592 gfc_match_do (void)
2594 gfc_iterator iter, *ip;
2595 locus old_loc;
2596 gfc_st_label *label;
2597 match m;
2599 old_loc = gfc_current_locus;
2601 memset (&iter, '\0', sizeof (gfc_iterator));
2602 label = NULL;
2604 m = gfc_match_label ();
2605 if (m == MATCH_ERROR)
2606 return m;
2608 if (gfc_match (" do") != MATCH_YES)
2609 return MATCH_NO;
2611 m = gfc_match_st_label (&label);
2612 if (m == MATCH_ERROR)
2613 goto cleanup;
2615 /* Match an infinite DO, make it like a DO WHILE(.TRUE.). */
2617 if (gfc_match_eos () == MATCH_YES)
2619 iter.end = gfc_get_logical_expr (gfc_default_logical_kind, NULL, true);
2620 new_st.op = EXEC_DO_WHILE;
2621 goto done;
2624 /* Match an optional comma, if no comma is found, a space is obligatory. */
2625 if (gfc_match_char (',') != MATCH_YES && gfc_match ("% ") != MATCH_YES)
2626 return MATCH_NO;
2628 /* Check for balanced parens. */
2630 if (gfc_match_parens () == MATCH_ERROR)
2631 return MATCH_ERROR;
2633 if (gfc_match (" concurrent") == MATCH_YES)
2635 gfc_forall_iterator *head;
2636 gfc_expr *mask;
2638 if (!gfc_notify_std (GFC_STD_F2008, "DO CONCURRENT construct at %C"))
2639 return MATCH_ERROR;
2642 mask = NULL;
2643 head = NULL;
2644 m = match_forall_header (&head, &mask);
2646 if (m == MATCH_NO)
2647 return m;
2648 if (m == MATCH_ERROR)
2649 goto concurr_cleanup;
2651 if (gfc_match_eos () != MATCH_YES)
2652 goto concurr_cleanup;
2654 if (label != NULL
2655 && !gfc_reference_st_label (label, ST_LABEL_DO_TARGET))
2656 goto concurr_cleanup;
2658 new_st.label1 = label;
2659 new_st.op = EXEC_DO_CONCURRENT;
2660 new_st.expr1 = mask;
2661 new_st.ext.forall_iterator = head;
2663 return MATCH_YES;
2665 concurr_cleanup:
2666 gfc_syntax_error (ST_DO);
2667 gfc_free_expr (mask);
2668 gfc_free_forall_iterator (head);
2669 return MATCH_ERROR;
2672 /* See if we have a DO WHILE. */
2673 if (gfc_match (" while ( %e )%t", &iter.end) == MATCH_YES)
2675 new_st.op = EXEC_DO_WHILE;
2676 goto done;
2679 /* The abortive DO WHILE may have done something to the symbol
2680 table, so we start over. */
2681 gfc_undo_symbols ();
2682 gfc_current_locus = old_loc;
2684 gfc_match_label (); /* This won't error. */
2685 gfc_match (" do "); /* This will work. */
2687 gfc_match_st_label (&label); /* Can't error out. */
2688 gfc_match_char (','); /* Optional comma. */
2690 m = gfc_match_iterator (&iter, 0);
2691 if (m == MATCH_NO)
2692 return MATCH_NO;
2693 if (m == MATCH_ERROR)
2694 goto cleanup;
2696 iter.var->symtree->n.sym->attr.implied_index = 0;
2697 gfc_check_do_variable (iter.var->symtree);
2699 if (gfc_match_eos () != MATCH_YES)
2701 gfc_syntax_error (ST_DO);
2702 goto cleanup;
2705 new_st.op = EXEC_DO;
2707 done:
2708 if (label != NULL
2709 && !gfc_reference_st_label (label, ST_LABEL_DO_TARGET))
2710 goto cleanup;
2712 new_st.label1 = label;
2714 if (new_st.op == EXEC_DO_WHILE)
2715 new_st.expr1 = iter.end;
2716 else
2718 new_st.ext.iterator = ip = gfc_get_iterator ();
2719 *ip = iter;
2722 return MATCH_YES;
2724 cleanup:
2725 gfc_free_iterator (&iter, 0);
2727 return MATCH_ERROR;
2731 /* Match an EXIT or CYCLE statement. */
2733 static match
2734 match_exit_cycle (gfc_statement st, gfc_exec_op op)
2736 gfc_state_data *p, *o;
2737 gfc_symbol *sym;
2738 match m;
2739 int cnt;
2741 if (gfc_match_eos () == MATCH_YES)
2742 sym = NULL;
2743 else
2745 char name[GFC_MAX_SYMBOL_LEN + 1];
2746 gfc_symtree* stree;
2748 m = gfc_match ("% %n%t", name);
2749 if (m == MATCH_ERROR)
2750 return MATCH_ERROR;
2751 if (m == MATCH_NO)
2753 gfc_syntax_error (st);
2754 return MATCH_ERROR;
2757 /* Find the corresponding symbol. If there's a BLOCK statement
2758 between here and the label, it is not in gfc_current_ns but a parent
2759 namespace! */
2760 stree = gfc_find_symtree_in_proc (name, gfc_current_ns);
2761 if (!stree)
2763 gfc_error ("Name %qs in %s statement at %C is unknown",
2764 name, gfc_ascii_statement (st));
2765 return MATCH_ERROR;
2768 sym = stree->n.sym;
2769 if (sym->attr.flavor != FL_LABEL)
2771 gfc_error ("Name %qs in %s statement at %C is not a construct name",
2772 name, gfc_ascii_statement (st));
2773 return MATCH_ERROR;
2777 /* Find the loop specified by the label (or lack of a label). */
2778 for (o = NULL, p = gfc_state_stack; p; p = p->previous)
2779 if (o == NULL && p->state == COMP_OMP_STRUCTURED_BLOCK)
2780 o = p;
2781 else if (p->state == COMP_CRITICAL)
2783 gfc_error("%s statement at %C leaves CRITICAL construct",
2784 gfc_ascii_statement (st));
2785 return MATCH_ERROR;
2787 else if (p->state == COMP_DO_CONCURRENT
2788 && (op == EXEC_EXIT || (sym && sym != p->sym)))
2790 /* F2008, C821 & C845. */
2791 gfc_error("%s statement at %C leaves DO CONCURRENT construct",
2792 gfc_ascii_statement (st));
2793 return MATCH_ERROR;
2795 else if ((sym && sym == p->sym)
2796 || (!sym && (p->state == COMP_DO
2797 || p->state == COMP_DO_CONCURRENT)))
2798 break;
2800 if (p == NULL)
2802 if (sym == NULL)
2803 gfc_error ("%s statement at %C is not within a construct",
2804 gfc_ascii_statement (st));
2805 else
2806 gfc_error ("%s statement at %C is not within construct %qs",
2807 gfc_ascii_statement (st), sym->name);
2809 return MATCH_ERROR;
2812 /* Special checks for EXIT from non-loop constructs. */
2813 switch (p->state)
2815 case COMP_DO:
2816 case COMP_DO_CONCURRENT:
2817 break;
2819 case COMP_CRITICAL:
2820 /* This is already handled above. */
2821 gcc_unreachable ();
2823 case COMP_ASSOCIATE:
2824 case COMP_BLOCK:
2825 case COMP_IF:
2826 case COMP_SELECT:
2827 case COMP_SELECT_TYPE:
2828 gcc_assert (sym);
2829 if (op == EXEC_CYCLE)
2831 gfc_error ("CYCLE statement at %C is not applicable to non-loop"
2832 " construct %qs", sym->name);
2833 return MATCH_ERROR;
2835 gcc_assert (op == EXEC_EXIT);
2836 if (!gfc_notify_std (GFC_STD_F2008, "EXIT statement with no"
2837 " do-construct-name at %C"))
2838 return MATCH_ERROR;
2839 break;
2841 default:
2842 gfc_error ("%s statement at %C is not applicable to construct %qs",
2843 gfc_ascii_statement (st), sym->name);
2844 return MATCH_ERROR;
2847 if (o != NULL)
2849 gfc_error (is_oacc (p)
2850 ? G_("%s statement at %C leaving OpenACC structured block")
2851 : G_("%s statement at %C leaving OpenMP structured block"),
2852 gfc_ascii_statement (st));
2853 return MATCH_ERROR;
2856 for (o = p, cnt = 0; o->state == COMP_DO && o->previous != NULL; cnt++)
2857 o = o->previous;
2858 if (cnt > 0
2859 && o != NULL
2860 && o->state == COMP_OMP_STRUCTURED_BLOCK
2861 && (o->head->op == EXEC_OACC_LOOP
2862 || o->head->op == EXEC_OACC_PARALLEL_LOOP))
2864 int collapse = 1;
2865 gcc_assert (o->head->next != NULL
2866 && (o->head->next->op == EXEC_DO
2867 || o->head->next->op == EXEC_DO_WHILE)
2868 && o->previous != NULL
2869 && o->previous->tail->op == o->head->op);
2870 if (o->previous->tail->ext.omp_clauses != NULL
2871 && o->previous->tail->ext.omp_clauses->collapse > 1)
2872 collapse = o->previous->tail->ext.omp_clauses->collapse;
2873 if (st == ST_EXIT && cnt <= collapse)
2875 gfc_error ("EXIT statement at %C terminating !$ACC LOOP loop");
2876 return MATCH_ERROR;
2878 if (st == ST_CYCLE && cnt < collapse)
2880 gfc_error ("CYCLE statement at %C to non-innermost collapsed"
2881 " !$ACC LOOP loop");
2882 return MATCH_ERROR;
2885 if (cnt > 0
2886 && o != NULL
2887 && (o->state == COMP_OMP_STRUCTURED_BLOCK)
2888 && (o->head->op == EXEC_OMP_DO
2889 || o->head->op == EXEC_OMP_PARALLEL_DO
2890 || o->head->op == EXEC_OMP_SIMD
2891 || o->head->op == EXEC_OMP_DO_SIMD
2892 || o->head->op == EXEC_OMP_PARALLEL_DO_SIMD))
2894 int count = 1;
2895 gcc_assert (o->head->next != NULL
2896 && (o->head->next->op == EXEC_DO
2897 || o->head->next->op == EXEC_DO_WHILE)
2898 && o->previous != NULL
2899 && o->previous->tail->op == o->head->op);
2900 if (o->previous->tail->ext.omp_clauses != NULL)
2902 if (o->previous->tail->ext.omp_clauses->collapse > 1)
2903 count = o->previous->tail->ext.omp_clauses->collapse;
2904 if (o->previous->tail->ext.omp_clauses->orderedc)
2905 count = o->previous->tail->ext.omp_clauses->orderedc;
2907 if (st == ST_EXIT && cnt <= count)
2909 gfc_error ("EXIT statement at %C terminating !$OMP DO loop");
2910 return MATCH_ERROR;
2912 if (st == ST_CYCLE && cnt < count)
2914 gfc_error ("CYCLE statement at %C to non-innermost collapsed"
2915 " !$OMP DO loop");
2916 return MATCH_ERROR;
2920 /* Save the first statement in the construct - needed by the backend. */
2921 new_st.ext.which_construct = p->construct;
2923 new_st.op = op;
2925 return MATCH_YES;
2929 /* Match the EXIT statement. */
2931 match
2932 gfc_match_exit (void)
2934 return match_exit_cycle (ST_EXIT, EXEC_EXIT);
2938 /* Match the CYCLE statement. */
2940 match
2941 gfc_match_cycle (void)
2943 return match_exit_cycle (ST_CYCLE, EXEC_CYCLE);
2947 /* Match a stop-code after an (ERROR) STOP or PAUSE statement. The
2948 requirements for a stop-code differ in the standards.
2950 Fortran 95 has
2952 R840 stop-stmt is STOP [ stop-code ]
2953 R841 stop-code is scalar-char-constant
2954 or digit [ digit [ digit [ digit [ digit ] ] ] ]
2956 Fortran 2003 matches Fortran 95 except R840 and R841 are now R849 and R850.
2957 Fortran 2008 has
2959 R855 stop-stmt is STOP [ stop-code ]
2960 R856 allstop-stmt is ALL STOP [ stop-code ]
2961 R857 stop-code is scalar-default-char-constant-expr
2962 or scalar-int-constant-expr
2964 For free-form source code, all standards contain a statement of the form:
2966 A blank shall be used to separate names, constants, or labels from
2967 adjacent keywords, names, constants, or labels.
2969 A stop-code is not a name, constant, or label. So, under Fortran 95 and 2003,
2971 STOP123
2973 is valid, but it is invalid Fortran 2008. */
2975 static match
2976 gfc_match_stopcode (gfc_statement st)
2978 gfc_expr *e = NULL;
2979 match m;
2980 bool f95, f03, f08;
2982 /* Set f95 for -std=f95. */
2983 f95 = (gfc_option.allow_std == GFC_STD_OPT_F95);
2985 /* Set f03 for -std=f2003. */
2986 f03 = (gfc_option.allow_std == GFC_STD_OPT_F03);
2988 /* Set f08 for -std=f2008. */
2989 f08 = (gfc_option.allow_std == GFC_STD_OPT_F08);
2991 /* Look for a blank between STOP and the stop-code for F2008 or later. */
2992 if (gfc_current_form != FORM_FIXED && !(f95 || f03))
2994 char c = gfc_peek_ascii_char ();
2996 /* Look for end-of-statement. There is no stop-code. */
2997 if (c == '\n' || c == '!' || c == ';')
2998 goto done;
3000 if (c != ' ')
3002 gfc_error ("Blank required in %s statement near %C",
3003 gfc_ascii_statement (st));
3004 return MATCH_ERROR;
3008 if (gfc_match_eos () != MATCH_YES)
3010 int stopcode;
3011 locus old_locus;
3013 /* First look for the F95 or F2003 digit [...] construct. */
3014 old_locus = gfc_current_locus;
3015 m = gfc_match_small_int (&stopcode);
3016 if (m == MATCH_YES && (f95 || f03))
3018 if (stopcode < 0)
3020 gfc_error ("STOP code at %C cannot be negative");
3021 return MATCH_ERROR;
3024 if (stopcode > 99999)
3026 gfc_error ("STOP code at %C contains too many digits");
3027 return MATCH_ERROR;
3031 /* Reset the locus and now load gfc_expr. */
3032 gfc_current_locus = old_locus;
3033 m = gfc_match_expr (&e);
3034 if (m == MATCH_ERROR)
3035 goto cleanup;
3036 if (m == MATCH_NO)
3037 goto syntax;
3039 if (gfc_match_eos () != MATCH_YES)
3040 goto syntax;
3043 if (gfc_pure (NULL))
3045 if (st == ST_ERROR_STOP)
3047 if (!gfc_notify_std (GFC_STD_F2018, "%s statement at %C in PURE "
3048 "procedure", gfc_ascii_statement (st)))
3049 goto cleanup;
3051 else
3053 gfc_error ("%s statement not allowed in PURE procedure at %C",
3054 gfc_ascii_statement (st));
3055 goto cleanup;
3059 gfc_unset_implicit_pure (NULL);
3061 if (st == ST_STOP && gfc_find_state (COMP_CRITICAL))
3063 gfc_error ("Image control statement STOP at %C in CRITICAL block");
3064 goto cleanup;
3066 if (st == ST_STOP && gfc_find_state (COMP_DO_CONCURRENT))
3068 gfc_error ("Image control statement STOP at %C in DO CONCURRENT block");
3069 goto cleanup;
3072 if (e != NULL)
3074 gfc_simplify_expr (e, 0);
3076 /* Test for F95 and F2003 style STOP stop-code. */
3077 if (e->expr_type != EXPR_CONSTANT && (f95 || f03))
3079 gfc_error ("STOP code at %L must be a scalar CHARACTER constant "
3080 "or digit[digit[digit[digit[digit]]]]", &e->where);
3081 goto cleanup;
3084 /* Use the machinery for an initialization expression to reduce the
3085 stop-code to a constant. */
3086 gfc_init_expr_flag = true;
3087 gfc_reduce_init_expr (e);
3088 gfc_init_expr_flag = false;
3090 /* Test for F2008 style STOP stop-code. */
3091 if (e->expr_type != EXPR_CONSTANT && f08)
3093 gfc_error ("STOP code at %L must be a scalar default CHARACTER or "
3094 "INTEGER constant expression", &e->where);
3095 goto cleanup;
3098 if (!(e->ts.type == BT_CHARACTER || e->ts.type == BT_INTEGER))
3100 gfc_error ("STOP code at %L must be either INTEGER or CHARACTER type",
3101 &e->where);
3102 goto cleanup;
3105 if (e->rank != 0)
3107 gfc_error ("STOP code at %L must be scalar", &e->where);
3108 goto cleanup;
3111 if (e->ts.type == BT_CHARACTER
3112 && e->ts.kind != gfc_default_character_kind)
3114 gfc_error ("STOP code at %L must be default character KIND=%d",
3115 &e->where, (int) gfc_default_character_kind);
3116 goto cleanup;
3119 if (e->ts.type == BT_INTEGER && e->ts.kind != gfc_default_integer_kind)
3121 gfc_error ("STOP code at %L must be default integer KIND=%d",
3122 &e->where, (int) gfc_default_integer_kind);
3123 goto cleanup;
3127 done:
3129 switch (st)
3131 case ST_STOP:
3132 new_st.op = EXEC_STOP;
3133 break;
3134 case ST_ERROR_STOP:
3135 new_st.op = EXEC_ERROR_STOP;
3136 break;
3137 case ST_PAUSE:
3138 new_st.op = EXEC_PAUSE;
3139 break;
3140 default:
3141 gcc_unreachable ();
3144 new_st.expr1 = e;
3145 new_st.ext.stop_code = -1;
3147 return MATCH_YES;
3149 syntax:
3150 gfc_syntax_error (st);
3152 cleanup:
3154 gfc_free_expr (e);
3155 return MATCH_ERROR;
3159 /* Match the (deprecated) PAUSE statement. */
3161 match
3162 gfc_match_pause (void)
3164 match m;
3166 m = gfc_match_stopcode (ST_PAUSE);
3167 if (m == MATCH_YES)
3169 if (!gfc_notify_std (GFC_STD_F95_DEL, "PAUSE statement at %C"))
3170 m = MATCH_ERROR;
3172 return m;
3176 /* Match the STOP statement. */
3178 match
3179 gfc_match_stop (void)
3181 return gfc_match_stopcode (ST_STOP);
3185 /* Match the ERROR STOP statement. */
3187 match
3188 gfc_match_error_stop (void)
3190 if (!gfc_notify_std (GFC_STD_F2008, "ERROR STOP statement at %C"))
3191 return MATCH_ERROR;
3193 return gfc_match_stopcode (ST_ERROR_STOP);
3196 /* Match EVENT POST/WAIT statement. Syntax:
3197 EVENT POST ( event-variable [, sync-stat-list] )
3198 EVENT WAIT ( event-variable [, wait-spec-list] )
3199 with
3200 wait-spec-list is sync-stat-list or until-spec
3201 until-spec is UNTIL_COUNT = scalar-int-expr
3202 sync-stat is STAT= or ERRMSG=. */
3204 static match
3205 event_statement (gfc_statement st)
3207 match m;
3208 gfc_expr *tmp, *eventvar, *until_count, *stat, *errmsg;
3209 bool saw_until_count, saw_stat, saw_errmsg;
3211 tmp = eventvar = until_count = stat = errmsg = NULL;
3212 saw_until_count = saw_stat = saw_errmsg = false;
3214 if (gfc_pure (NULL))
3216 gfc_error ("Image control statement EVENT %s at %C in PURE procedure",
3217 st == ST_EVENT_POST ? "POST" : "WAIT");
3218 return MATCH_ERROR;
3221 gfc_unset_implicit_pure (NULL);
3223 if (flag_coarray == GFC_FCOARRAY_NONE)
3225 gfc_fatal_error ("Coarrays disabled at %C, use %<-fcoarray=%> to enable");
3226 return MATCH_ERROR;
3229 if (gfc_find_state (COMP_CRITICAL))
3231 gfc_error ("Image control statement EVENT %s at %C in CRITICAL block",
3232 st == ST_EVENT_POST ? "POST" : "WAIT");
3233 return MATCH_ERROR;
3236 if (gfc_find_state (COMP_DO_CONCURRENT))
3238 gfc_error ("Image control statement EVENT %s at %C in DO CONCURRENT "
3239 "block", st == ST_EVENT_POST ? "POST" : "WAIT");
3240 return MATCH_ERROR;
3243 if (gfc_match_char ('(') != MATCH_YES)
3244 goto syntax;
3246 if (gfc_match ("%e", &eventvar) != MATCH_YES)
3247 goto syntax;
3248 m = gfc_match_char (',');
3249 if (m == MATCH_ERROR)
3250 goto syntax;
3251 if (m == MATCH_NO)
3253 m = gfc_match_char (')');
3254 if (m == MATCH_YES)
3255 goto done;
3256 goto syntax;
3259 for (;;)
3261 m = gfc_match (" stat = %v", &tmp);
3262 if (m == MATCH_ERROR)
3263 goto syntax;
3264 if (m == MATCH_YES)
3266 if (saw_stat)
3268 gfc_error ("Redundant STAT tag found at %L", &tmp->where);
3269 goto cleanup;
3271 stat = tmp;
3272 saw_stat = true;
3274 m = gfc_match_char (',');
3275 if (m == MATCH_YES)
3276 continue;
3278 tmp = NULL;
3279 break;
3282 m = gfc_match (" errmsg = %v", &tmp);
3283 if (m == MATCH_ERROR)
3284 goto syntax;
3285 if (m == MATCH_YES)
3287 if (saw_errmsg)
3289 gfc_error ("Redundant ERRMSG tag found at %L", &tmp->where);
3290 goto cleanup;
3292 errmsg = tmp;
3293 saw_errmsg = true;
3295 m = gfc_match_char (',');
3296 if (m == MATCH_YES)
3297 continue;
3299 tmp = NULL;
3300 break;
3303 m = gfc_match (" until_count = %e", &tmp);
3304 if (m == MATCH_ERROR || st == ST_EVENT_POST)
3305 goto syntax;
3306 if (m == MATCH_YES)
3308 if (saw_until_count)
3310 gfc_error ("Redundant UNTIL_COUNT tag found at %L",
3311 &tmp->where);
3312 goto cleanup;
3314 until_count = tmp;
3315 saw_until_count = true;
3317 m = gfc_match_char (',');
3318 if (m == MATCH_YES)
3319 continue;
3321 tmp = NULL;
3322 break;
3325 break;
3328 if (m == MATCH_ERROR)
3329 goto syntax;
3331 if (gfc_match (" )%t") != MATCH_YES)
3332 goto syntax;
3334 done:
3335 switch (st)
3337 case ST_EVENT_POST:
3338 new_st.op = EXEC_EVENT_POST;
3339 break;
3340 case ST_EVENT_WAIT:
3341 new_st.op = EXEC_EVENT_WAIT;
3342 break;
3343 default:
3344 gcc_unreachable ();
3347 new_st.expr1 = eventvar;
3348 new_st.expr2 = stat;
3349 new_st.expr3 = errmsg;
3350 new_st.expr4 = until_count;
3352 return MATCH_YES;
3354 syntax:
3355 gfc_syntax_error (st);
3357 cleanup:
3358 if (until_count != tmp)
3359 gfc_free_expr (until_count);
3360 if (errmsg != tmp)
3361 gfc_free_expr (errmsg);
3362 if (stat != tmp)
3363 gfc_free_expr (stat);
3365 gfc_free_expr (tmp);
3366 gfc_free_expr (eventvar);
3368 return MATCH_ERROR;
3373 match
3374 gfc_match_event_post (void)
3376 if (!gfc_notify_std (GFC_STD_F2018, "EVENT POST statement at %C"))
3377 return MATCH_ERROR;
3379 return event_statement (ST_EVENT_POST);
3383 match
3384 gfc_match_event_wait (void)
3386 if (!gfc_notify_std (GFC_STD_F2018, "EVENT WAIT statement at %C"))
3387 return MATCH_ERROR;
3389 return event_statement (ST_EVENT_WAIT);
3393 /* Match a FAIL IMAGE statement. */
3395 match
3396 gfc_match_fail_image (void)
3398 if (!gfc_notify_std (GFC_STD_F2018, "FAIL IMAGE statement at %C"))
3399 return MATCH_ERROR;
3401 if (gfc_match_char ('(') == MATCH_YES)
3402 goto syntax;
3404 new_st.op = EXEC_FAIL_IMAGE;
3406 return MATCH_YES;
3408 syntax:
3409 gfc_syntax_error (ST_FAIL_IMAGE);
3411 return MATCH_ERROR;
3414 /* Match a FORM TEAM statement. */
3416 match
3417 gfc_match_form_team (void)
3419 match m;
3420 gfc_expr *teamid,*team;
3422 if (!gfc_notify_std (GFC_STD_F2018, "FORM TEAM statement at %C"))
3423 return MATCH_ERROR;
3425 if (gfc_match_char ('(') == MATCH_NO)
3426 goto syntax;
3428 new_st.op = EXEC_FORM_TEAM;
3430 if (gfc_match ("%e", &teamid) != MATCH_YES)
3431 goto syntax;
3432 m = gfc_match_char (',');
3433 if (m == MATCH_ERROR)
3434 goto syntax;
3435 if (gfc_match ("%e", &team) != MATCH_YES)
3436 goto syntax;
3438 m = gfc_match_char (')');
3439 if (m == MATCH_NO)
3440 goto syntax;
3442 new_st.expr1 = teamid;
3443 new_st.expr2 = team;
3445 return MATCH_YES;
3447 syntax:
3448 gfc_syntax_error (ST_FORM_TEAM);
3450 return MATCH_ERROR;
3453 /* Match a CHANGE TEAM statement. */
3455 match
3456 gfc_match_change_team (void)
3458 match m;
3459 gfc_expr *team;
3461 if (!gfc_notify_std (GFC_STD_F2018, "CHANGE TEAM statement at %C"))
3462 return MATCH_ERROR;
3464 if (gfc_match_char ('(') == MATCH_NO)
3465 goto syntax;
3467 new_st.op = EXEC_CHANGE_TEAM;
3469 if (gfc_match ("%e", &team) != MATCH_YES)
3470 goto syntax;
3472 m = gfc_match_char (')');
3473 if (m == MATCH_NO)
3474 goto syntax;
3476 new_st.expr1 = team;
3478 return MATCH_YES;
3480 syntax:
3481 gfc_syntax_error (ST_CHANGE_TEAM);
3483 return MATCH_ERROR;
3486 /* Match a END TEAM statement. */
3488 match
3489 gfc_match_end_team (void)
3491 if (!gfc_notify_std (GFC_STD_F2018, "END TEAM statement at %C"))
3492 return MATCH_ERROR;
3494 if (gfc_match_char ('(') == MATCH_YES)
3495 goto syntax;
3497 new_st.op = EXEC_END_TEAM;
3499 return MATCH_YES;
3501 syntax:
3502 gfc_syntax_error (ST_END_TEAM);
3504 return MATCH_ERROR;
3507 /* Match a SYNC TEAM statement. */
3509 match
3510 gfc_match_sync_team (void)
3512 match m;
3513 gfc_expr *team;
3515 if (!gfc_notify_std (GFC_STD_F2018, "SYNC TEAM statement at %C"))
3516 return MATCH_ERROR;
3518 if (gfc_match_char ('(') == MATCH_NO)
3519 goto syntax;
3521 new_st.op = EXEC_SYNC_TEAM;
3523 if (gfc_match ("%e", &team) != MATCH_YES)
3524 goto syntax;
3526 m = gfc_match_char (')');
3527 if (m == MATCH_NO)
3528 goto syntax;
3530 new_st.expr1 = team;
3532 return MATCH_YES;
3534 syntax:
3535 gfc_syntax_error (ST_SYNC_TEAM);
3537 return MATCH_ERROR;
3540 /* Match LOCK/UNLOCK statement. Syntax:
3541 LOCK ( lock-variable [ , lock-stat-list ] )
3542 UNLOCK ( lock-variable [ , sync-stat-list ] )
3543 where lock-stat is ACQUIRED_LOCK or sync-stat
3544 and sync-stat is STAT= or ERRMSG=. */
3546 static match
3547 lock_unlock_statement (gfc_statement st)
3549 match m;
3550 gfc_expr *tmp, *lockvar, *acq_lock, *stat, *errmsg;
3551 bool saw_acq_lock, saw_stat, saw_errmsg;
3553 tmp = lockvar = acq_lock = stat = errmsg = NULL;
3554 saw_acq_lock = saw_stat = saw_errmsg = false;
3556 if (gfc_pure (NULL))
3558 gfc_error ("Image control statement %s at %C in PURE procedure",
3559 st == ST_LOCK ? "LOCK" : "UNLOCK");
3560 return MATCH_ERROR;
3563 gfc_unset_implicit_pure (NULL);
3565 if (flag_coarray == GFC_FCOARRAY_NONE)
3567 gfc_fatal_error ("Coarrays disabled at %C, use %<-fcoarray=%> to enable");
3568 return MATCH_ERROR;
3571 if (gfc_find_state (COMP_CRITICAL))
3573 gfc_error ("Image control statement %s at %C in CRITICAL block",
3574 st == ST_LOCK ? "LOCK" : "UNLOCK");
3575 return MATCH_ERROR;
3578 if (gfc_find_state (COMP_DO_CONCURRENT))
3580 gfc_error ("Image control statement %s at %C in DO CONCURRENT block",
3581 st == ST_LOCK ? "LOCK" : "UNLOCK");
3582 return MATCH_ERROR;
3585 if (gfc_match_char ('(') != MATCH_YES)
3586 goto syntax;
3588 if (gfc_match ("%e", &lockvar) != MATCH_YES)
3589 goto syntax;
3590 m = gfc_match_char (',');
3591 if (m == MATCH_ERROR)
3592 goto syntax;
3593 if (m == MATCH_NO)
3595 m = gfc_match_char (')');
3596 if (m == MATCH_YES)
3597 goto done;
3598 goto syntax;
3601 for (;;)
3603 m = gfc_match (" stat = %v", &tmp);
3604 if (m == MATCH_ERROR)
3605 goto syntax;
3606 if (m == MATCH_YES)
3608 if (saw_stat)
3610 gfc_error ("Redundant STAT tag found at %L", &tmp->where);
3611 goto cleanup;
3613 stat = tmp;
3614 saw_stat = true;
3616 m = gfc_match_char (',');
3617 if (m == MATCH_YES)
3618 continue;
3620 tmp = NULL;
3621 break;
3624 m = gfc_match (" errmsg = %v", &tmp);
3625 if (m == MATCH_ERROR)
3626 goto syntax;
3627 if (m == MATCH_YES)
3629 if (saw_errmsg)
3631 gfc_error ("Redundant ERRMSG tag found at %L", &tmp->where);
3632 goto cleanup;
3634 errmsg = tmp;
3635 saw_errmsg = true;
3637 m = gfc_match_char (',');
3638 if (m == MATCH_YES)
3639 continue;
3641 tmp = NULL;
3642 break;
3645 m = gfc_match (" acquired_lock = %v", &tmp);
3646 if (m == MATCH_ERROR || st == ST_UNLOCK)
3647 goto syntax;
3648 if (m == MATCH_YES)
3650 if (saw_acq_lock)
3652 gfc_error ("Redundant ACQUIRED_LOCK tag found at %L",
3653 &tmp->where);
3654 goto cleanup;
3656 acq_lock = tmp;
3657 saw_acq_lock = true;
3659 m = gfc_match_char (',');
3660 if (m == MATCH_YES)
3661 continue;
3663 tmp = NULL;
3664 break;
3667 break;
3670 if (m == MATCH_ERROR)
3671 goto syntax;
3673 if (gfc_match (" )%t") != MATCH_YES)
3674 goto syntax;
3676 done:
3677 switch (st)
3679 case ST_LOCK:
3680 new_st.op = EXEC_LOCK;
3681 break;
3682 case ST_UNLOCK:
3683 new_st.op = EXEC_UNLOCK;
3684 break;
3685 default:
3686 gcc_unreachable ();
3689 new_st.expr1 = lockvar;
3690 new_st.expr2 = stat;
3691 new_st.expr3 = errmsg;
3692 new_st.expr4 = acq_lock;
3694 return MATCH_YES;
3696 syntax:
3697 gfc_syntax_error (st);
3699 cleanup:
3700 if (acq_lock != tmp)
3701 gfc_free_expr (acq_lock);
3702 if (errmsg != tmp)
3703 gfc_free_expr (errmsg);
3704 if (stat != tmp)
3705 gfc_free_expr (stat);
3707 gfc_free_expr (tmp);
3708 gfc_free_expr (lockvar);
3710 return MATCH_ERROR;
3714 match
3715 gfc_match_lock (void)
3717 if (!gfc_notify_std (GFC_STD_F2008, "LOCK statement at %C"))
3718 return MATCH_ERROR;
3720 return lock_unlock_statement (ST_LOCK);
3724 match
3725 gfc_match_unlock (void)
3727 if (!gfc_notify_std (GFC_STD_F2008, "UNLOCK statement at %C"))
3728 return MATCH_ERROR;
3730 return lock_unlock_statement (ST_UNLOCK);
3734 /* Match SYNC ALL/IMAGES/MEMORY statement. Syntax:
3735 SYNC ALL [(sync-stat-list)]
3736 SYNC MEMORY [(sync-stat-list)]
3737 SYNC IMAGES (image-set [, sync-stat-list] )
3738 with sync-stat is int-expr or *. */
3740 static match
3741 sync_statement (gfc_statement st)
3743 match m;
3744 gfc_expr *tmp, *imageset, *stat, *errmsg;
3745 bool saw_stat, saw_errmsg;
3747 tmp = imageset = stat = errmsg = NULL;
3748 saw_stat = saw_errmsg = false;
3750 if (gfc_pure (NULL))
3752 gfc_error ("Image control statement SYNC at %C in PURE procedure");
3753 return MATCH_ERROR;
3756 gfc_unset_implicit_pure (NULL);
3758 if (!gfc_notify_std (GFC_STD_F2008, "SYNC statement at %C"))
3759 return MATCH_ERROR;
3761 if (flag_coarray == GFC_FCOARRAY_NONE)
3763 gfc_fatal_error ("Coarrays disabled at %C, use %<-fcoarray=%> to "
3764 "enable");
3765 return MATCH_ERROR;
3768 if (gfc_find_state (COMP_CRITICAL))
3770 gfc_error ("Image control statement SYNC at %C in CRITICAL block");
3771 return MATCH_ERROR;
3774 if (gfc_find_state (COMP_DO_CONCURRENT))
3776 gfc_error ("Image control statement SYNC at %C in DO CONCURRENT block");
3777 return MATCH_ERROR;
3780 if (gfc_match_eos () == MATCH_YES)
3782 if (st == ST_SYNC_IMAGES)
3783 goto syntax;
3784 goto done;
3787 if (gfc_match_char ('(') != MATCH_YES)
3788 goto syntax;
3790 if (st == ST_SYNC_IMAGES)
3792 /* Denote '*' as imageset == NULL. */
3793 m = gfc_match_char ('*');
3794 if (m == MATCH_ERROR)
3795 goto syntax;
3796 if (m == MATCH_NO)
3798 if (gfc_match ("%e", &imageset) != MATCH_YES)
3799 goto syntax;
3801 m = gfc_match_char (',');
3802 if (m == MATCH_ERROR)
3803 goto syntax;
3804 if (m == MATCH_NO)
3806 m = gfc_match_char (')');
3807 if (m == MATCH_YES)
3808 goto done;
3809 goto syntax;
3813 for (;;)
3815 m = gfc_match (" stat = %v", &tmp);
3816 if (m == MATCH_ERROR)
3817 goto syntax;
3818 if (m == MATCH_YES)
3820 if (saw_stat)
3822 gfc_error ("Redundant STAT tag found at %L", &tmp->where);
3823 goto cleanup;
3825 stat = tmp;
3826 saw_stat = true;
3828 if (gfc_match_char (',') == MATCH_YES)
3829 continue;
3831 tmp = NULL;
3832 break;
3835 m = gfc_match (" errmsg = %v", &tmp);
3836 if (m == MATCH_ERROR)
3837 goto syntax;
3838 if (m == MATCH_YES)
3840 if (saw_errmsg)
3842 gfc_error ("Redundant ERRMSG tag found at %L", &tmp->where);
3843 goto cleanup;
3845 errmsg = tmp;
3846 saw_errmsg = true;
3848 if (gfc_match_char (',') == MATCH_YES)
3849 continue;
3851 tmp = NULL;
3852 break;
3855 break;
3858 if (gfc_match (" )%t") != MATCH_YES)
3859 goto syntax;
3861 done:
3862 switch (st)
3864 case ST_SYNC_ALL:
3865 new_st.op = EXEC_SYNC_ALL;
3866 break;
3867 case ST_SYNC_IMAGES:
3868 new_st.op = EXEC_SYNC_IMAGES;
3869 break;
3870 case ST_SYNC_MEMORY:
3871 new_st.op = EXEC_SYNC_MEMORY;
3872 break;
3873 default:
3874 gcc_unreachable ();
3877 new_st.expr1 = imageset;
3878 new_st.expr2 = stat;
3879 new_st.expr3 = errmsg;
3881 return MATCH_YES;
3883 syntax:
3884 gfc_syntax_error (st);
3886 cleanup:
3887 if (stat != tmp)
3888 gfc_free_expr (stat);
3889 if (errmsg != tmp)
3890 gfc_free_expr (errmsg);
3892 gfc_free_expr (tmp);
3893 gfc_free_expr (imageset);
3895 return MATCH_ERROR;
3899 /* Match SYNC ALL statement. */
3901 match
3902 gfc_match_sync_all (void)
3904 return sync_statement (ST_SYNC_ALL);
3908 /* Match SYNC IMAGES statement. */
3910 match
3911 gfc_match_sync_images (void)
3913 return sync_statement (ST_SYNC_IMAGES);
3917 /* Match SYNC MEMORY statement. */
3919 match
3920 gfc_match_sync_memory (void)
3922 return sync_statement (ST_SYNC_MEMORY);
3926 /* Match a CONTINUE statement. */
3928 match
3929 gfc_match_continue (void)
3931 if (gfc_match_eos () != MATCH_YES)
3933 gfc_syntax_error (ST_CONTINUE);
3934 return MATCH_ERROR;
3937 new_st.op = EXEC_CONTINUE;
3938 return MATCH_YES;
3942 /* Match the (deprecated) ASSIGN statement. */
3944 match
3945 gfc_match_assign (void)
3947 gfc_expr *expr;
3948 gfc_st_label *label;
3950 if (gfc_match (" %l", &label) == MATCH_YES)
3952 if (!gfc_reference_st_label (label, ST_LABEL_UNKNOWN))
3953 return MATCH_ERROR;
3954 if (gfc_match (" to %v%t", &expr) == MATCH_YES)
3956 if (!gfc_notify_std (GFC_STD_F95_DEL, "ASSIGN statement at %C"))
3957 return MATCH_ERROR;
3959 expr->symtree->n.sym->attr.assign = 1;
3961 new_st.op = EXEC_LABEL_ASSIGN;
3962 new_st.label1 = label;
3963 new_st.expr1 = expr;
3964 return MATCH_YES;
3967 return MATCH_NO;
3971 /* Match the GO TO statement. As a computed GOTO statement is
3972 matched, it is transformed into an equivalent SELECT block. No
3973 tree is necessary, and the resulting jumps-to-jumps are
3974 specifically optimized away by the back end. */
3976 match
3977 gfc_match_goto (void)
3979 gfc_code *head, *tail;
3980 gfc_expr *expr;
3981 gfc_case *cp;
3982 gfc_st_label *label;
3983 int i;
3984 match m;
3986 if (gfc_match (" %l%t", &label) == MATCH_YES)
3988 if (!gfc_reference_st_label (label, ST_LABEL_TARGET))
3989 return MATCH_ERROR;
3991 new_st.op = EXEC_GOTO;
3992 new_st.label1 = label;
3993 return MATCH_YES;
3996 /* The assigned GO TO statement. */
3998 if (gfc_match_variable (&expr, 0) == MATCH_YES)
4000 if (!gfc_notify_std (GFC_STD_F95_DEL, "Assigned GOTO statement at %C"))
4001 return MATCH_ERROR;
4003 new_st.op = EXEC_GOTO;
4004 new_st.expr1 = expr;
4006 if (gfc_match_eos () == MATCH_YES)
4007 return MATCH_YES;
4009 /* Match label list. */
4010 gfc_match_char (',');
4011 if (gfc_match_char ('(') != MATCH_YES)
4013 gfc_syntax_error (ST_GOTO);
4014 return MATCH_ERROR;
4016 head = tail = NULL;
4020 m = gfc_match_st_label (&label);
4021 if (m != MATCH_YES)
4022 goto syntax;
4024 if (!gfc_reference_st_label (label, ST_LABEL_TARGET))
4025 goto cleanup;
4027 if (head == NULL)
4028 head = tail = gfc_get_code (EXEC_GOTO);
4029 else
4031 tail->block = gfc_get_code (EXEC_GOTO);
4032 tail = tail->block;
4035 tail->label1 = label;
4037 while (gfc_match_char (',') == MATCH_YES);
4039 if (gfc_match (")%t") != MATCH_YES)
4040 goto syntax;
4042 if (head == NULL)
4044 gfc_error ("Statement label list in GOTO at %C cannot be empty");
4045 goto syntax;
4047 new_st.block = head;
4049 return MATCH_YES;
4052 /* Last chance is a computed GO TO statement. */
4053 if (gfc_match_char ('(') != MATCH_YES)
4055 gfc_syntax_error (ST_GOTO);
4056 return MATCH_ERROR;
4059 head = tail = NULL;
4060 i = 1;
4064 m = gfc_match_st_label (&label);
4065 if (m != MATCH_YES)
4066 goto syntax;
4068 if (!gfc_reference_st_label (label, ST_LABEL_TARGET))
4069 goto cleanup;
4071 if (head == NULL)
4072 head = tail = gfc_get_code (EXEC_SELECT);
4073 else
4075 tail->block = gfc_get_code (EXEC_SELECT);
4076 tail = tail->block;
4079 cp = gfc_get_case ();
4080 cp->low = cp->high = gfc_get_int_expr (gfc_default_integer_kind,
4081 NULL, i++);
4083 tail->ext.block.case_list = cp;
4085 tail->next = gfc_get_code (EXEC_GOTO);
4086 tail->next->label1 = label;
4088 while (gfc_match_char (',') == MATCH_YES);
4090 if (gfc_match_char (')') != MATCH_YES)
4091 goto syntax;
4093 if (head == NULL)
4095 gfc_error ("Statement label list in GOTO at %C cannot be empty");
4096 goto syntax;
4099 /* Get the rest of the statement. */
4100 gfc_match_char (',');
4102 if (gfc_match (" %e%t", &expr) != MATCH_YES)
4103 goto syntax;
4105 if (!gfc_notify_std (GFC_STD_F95_OBS, "Computed GOTO at %C"))
4106 return MATCH_ERROR;
4108 /* At this point, a computed GOTO has been fully matched and an
4109 equivalent SELECT statement constructed. */
4111 new_st.op = EXEC_SELECT;
4112 new_st.expr1 = NULL;
4114 /* Hack: For a "real" SELECT, the expression is in expr. We put
4115 it in expr2 so we can distinguish then and produce the correct
4116 diagnostics. */
4117 new_st.expr2 = expr;
4118 new_st.block = head;
4119 return MATCH_YES;
4121 syntax:
4122 gfc_syntax_error (ST_GOTO);
4123 cleanup:
4124 gfc_free_statements (head);
4125 return MATCH_ERROR;
4129 /* Frees a list of gfc_alloc structures. */
4131 void
4132 gfc_free_alloc_list (gfc_alloc *p)
4134 gfc_alloc *q;
4136 for (; p; p = q)
4138 q = p->next;
4139 gfc_free_expr (p->expr);
4140 free (p);
4145 /* Match an ALLOCATE statement. */
4147 match
4148 gfc_match_allocate (void)
4150 gfc_alloc *head, *tail;
4151 gfc_expr *stat, *errmsg, *tmp, *source, *mold;
4152 gfc_typespec ts;
4153 gfc_symbol *sym;
4154 match m;
4155 locus old_locus, deferred_locus, assumed_locus;
4156 bool saw_stat, saw_errmsg, saw_source, saw_mold, saw_deferred, b1, b2, b3;
4157 bool saw_unlimited = false, saw_assumed = false;
4159 head = tail = NULL;
4160 stat = errmsg = source = mold = tmp = NULL;
4161 saw_stat = saw_errmsg = saw_source = saw_mold = saw_deferred = false;
4163 if (gfc_match_char ('(') != MATCH_YES)
4165 gfc_syntax_error (ST_ALLOCATE);
4166 return MATCH_ERROR;
4169 /* Match an optional type-spec. */
4170 old_locus = gfc_current_locus;
4171 m = gfc_match_type_spec (&ts);
4172 if (m == MATCH_ERROR)
4173 goto cleanup;
4174 else if (m == MATCH_NO)
4176 char name[GFC_MAX_SYMBOL_LEN + 3];
4178 if (gfc_match ("%n :: ", name) == MATCH_YES)
4180 gfc_error ("Error in type-spec at %L", &old_locus);
4181 goto cleanup;
4184 ts.type = BT_UNKNOWN;
4186 else
4188 /* Needed for the F2008:C631 check below. */
4189 assumed_locus = gfc_current_locus;
4191 if (gfc_match (" :: ") == MATCH_YES)
4193 if (!gfc_notify_std (GFC_STD_F2003, "typespec in ALLOCATE at %L",
4194 &old_locus))
4195 goto cleanup;
4197 if (ts.deferred)
4199 gfc_error ("Type-spec at %L cannot contain a deferred "
4200 "type parameter", &old_locus);
4201 goto cleanup;
4204 if (ts.type == BT_CHARACTER)
4206 if (!ts.u.cl->length)
4207 saw_assumed = true;
4208 else
4209 ts.u.cl->length_from_typespec = true;
4212 if (type_param_spec_list
4213 && gfc_spec_list_type (type_param_spec_list, NULL)
4214 == SPEC_DEFERRED)
4216 gfc_error ("The type parameter spec list in the type-spec at "
4217 "%L cannot contain DEFERRED parameters", &old_locus);
4218 goto cleanup;
4221 else
4223 ts.type = BT_UNKNOWN;
4224 gfc_current_locus = old_locus;
4228 for (;;)
4230 if (head == NULL)
4231 head = tail = gfc_get_alloc ();
4232 else
4234 tail->next = gfc_get_alloc ();
4235 tail = tail->next;
4238 m = gfc_match_variable (&tail->expr, 0);
4239 if (m == MATCH_NO)
4240 goto syntax;
4241 if (m == MATCH_ERROR)
4242 goto cleanup;
4244 if (gfc_check_do_variable (tail->expr->symtree))
4245 goto cleanup;
4247 bool impure = gfc_impure_variable (tail->expr->symtree->n.sym);
4248 if (impure && gfc_pure (NULL))
4250 gfc_error ("Bad allocate-object at %C for a PURE procedure");
4251 goto cleanup;
4254 if (impure)
4255 gfc_unset_implicit_pure (NULL);
4257 /* F2008:C631 (R626) A type-param-value in a type-spec shall be an
4258 asterisk if and only if each allocate-object is a dummy argument
4259 for which the corresponding type parameter is assumed. */
4260 if (saw_assumed
4261 && (tail->expr->ts.deferred
4262 || (tail->expr->ts.u.cl && tail->expr->ts.u.cl->length)
4263 || tail->expr->symtree->n.sym->attr.dummy == 0))
4265 gfc_error ("Incompatible allocate-object at %C for CHARACTER "
4266 "type-spec at %L", &assumed_locus);
4267 goto cleanup;
4270 if (tail->expr->ts.deferred)
4272 saw_deferred = true;
4273 deferred_locus = tail->expr->where;
4276 if (gfc_find_state (COMP_DO_CONCURRENT)
4277 || gfc_find_state (COMP_CRITICAL))
4279 gfc_ref *ref;
4280 bool coarray = tail->expr->symtree->n.sym->attr.codimension;
4281 for (ref = tail->expr->ref; ref; ref = ref->next)
4282 if (ref->type == REF_COMPONENT)
4283 coarray = ref->u.c.component->attr.codimension;
4285 if (coarray && gfc_find_state (COMP_DO_CONCURRENT))
4287 gfc_error ("ALLOCATE of coarray at %C in DO CONCURRENT block");
4288 goto cleanup;
4290 if (coarray && gfc_find_state (COMP_CRITICAL))
4292 gfc_error ("ALLOCATE of coarray at %C in CRITICAL block");
4293 goto cleanup;
4297 /* Check for F08:C628. */
4298 sym = tail->expr->symtree->n.sym;
4299 b1 = !(tail->expr->ref
4300 && (tail->expr->ref->type == REF_COMPONENT
4301 || tail->expr->ref->type == REF_ARRAY));
4302 if (sym && sym->ts.type == BT_CLASS && sym->attr.class_ok)
4303 b2 = !(CLASS_DATA (sym)->attr.allocatable
4304 || CLASS_DATA (sym)->attr.class_pointer);
4305 else
4306 b2 = sym && !(sym->attr.allocatable || sym->attr.pointer
4307 || sym->attr.proc_pointer);
4308 b3 = sym && sym->ns && sym->ns->proc_name
4309 && (sym->ns->proc_name->attr.allocatable
4310 || sym->ns->proc_name->attr.pointer
4311 || sym->ns->proc_name->attr.proc_pointer);
4312 if (b1 && b2 && !b3)
4314 gfc_error ("Allocate-object at %L is neither a data pointer "
4315 "nor an allocatable variable", &tail->expr->where);
4316 goto cleanup;
4319 /* The ALLOCATE statement had an optional typespec. Check the
4320 constraints. */
4321 if (ts.type != BT_UNKNOWN)
4323 /* Enforce F03:C624. */
4324 if (!gfc_type_compatible (&tail->expr->ts, &ts))
4326 gfc_error ("Type of entity at %L is type incompatible with "
4327 "typespec", &tail->expr->where);
4328 goto cleanup;
4331 /* Enforce F03:C627. */
4332 if (ts.kind != tail->expr->ts.kind && !UNLIMITED_POLY (tail->expr))
4334 gfc_error ("Kind type parameter for entity at %L differs from "
4335 "the kind type parameter of the typespec",
4336 &tail->expr->where);
4337 goto cleanup;
4341 if (tail->expr->ts.type == BT_DERIVED)
4342 tail->expr->ts.u.derived = gfc_use_derived (tail->expr->ts.u.derived);
4344 if (type_param_spec_list)
4345 tail->expr->param_list = gfc_copy_actual_arglist (type_param_spec_list);
4347 saw_unlimited = saw_unlimited | UNLIMITED_POLY (tail->expr);
4349 if (gfc_peek_ascii_char () == '(' && !sym->attr.dimension)
4351 gfc_error ("Shape specification for allocatable scalar at %C");
4352 goto cleanup;
4355 if (gfc_match_char (',') != MATCH_YES)
4356 break;
4358 alloc_opt_list:
4360 m = gfc_match (" stat = %v", &tmp);
4361 if (m == MATCH_ERROR)
4362 goto cleanup;
4363 if (m == MATCH_YES)
4365 /* Enforce C630. */
4366 if (saw_stat)
4368 gfc_error ("Redundant STAT tag found at %L", &tmp->where);
4369 goto cleanup;
4372 stat = tmp;
4373 tmp = NULL;
4374 saw_stat = true;
4376 if (gfc_check_do_variable (stat->symtree))
4377 goto cleanup;
4379 if (gfc_match_char (',') == MATCH_YES)
4380 goto alloc_opt_list;
4383 m = gfc_match (" errmsg = %v", &tmp);
4384 if (m == MATCH_ERROR)
4385 goto cleanup;
4386 if (m == MATCH_YES)
4388 if (!gfc_notify_std (GFC_STD_F2003, "ERRMSG tag at %L", &tmp->where))
4389 goto cleanup;
4391 /* Enforce C630. */
4392 if (saw_errmsg)
4394 gfc_error ("Redundant ERRMSG tag found at %L", &tmp->where);
4395 goto cleanup;
4398 errmsg = tmp;
4399 tmp = NULL;
4400 saw_errmsg = true;
4402 if (gfc_match_char (',') == MATCH_YES)
4403 goto alloc_opt_list;
4406 m = gfc_match (" source = %e", &tmp);
4407 if (m == MATCH_ERROR)
4408 goto cleanup;
4409 if (m == MATCH_YES)
4411 if (!gfc_notify_std (GFC_STD_F2003, "SOURCE tag at %L", &tmp->where))
4412 goto cleanup;
4414 /* Enforce C630. */
4415 if (saw_source)
4417 gfc_error ("Redundant SOURCE tag found at %L", &tmp->where);
4418 goto cleanup;
4421 /* The next 2 conditionals check C631. */
4422 if (ts.type != BT_UNKNOWN)
4424 gfc_error ("SOURCE tag at %L conflicts with the typespec at %L",
4425 &tmp->where, &old_locus);
4426 goto cleanup;
4429 if (head->next
4430 && !gfc_notify_std (GFC_STD_F2008, "SOURCE tag at %L"
4431 " with more than a single allocate object",
4432 &tmp->where))
4433 goto cleanup;
4435 source = tmp;
4436 tmp = NULL;
4437 saw_source = true;
4439 if (gfc_match_char (',') == MATCH_YES)
4440 goto alloc_opt_list;
4443 m = gfc_match (" mold = %e", &tmp);
4444 if (m == MATCH_ERROR)
4445 goto cleanup;
4446 if (m == MATCH_YES)
4448 if (!gfc_notify_std (GFC_STD_F2008, "MOLD tag at %L", &tmp->where))
4449 goto cleanup;
4451 /* Check F08:C636. */
4452 if (saw_mold)
4454 gfc_error ("Redundant MOLD tag found at %L", &tmp->where);
4455 goto cleanup;
4458 /* Check F08:C637. */
4459 if (ts.type != BT_UNKNOWN)
4461 gfc_error ("MOLD tag at %L conflicts with the typespec at %L",
4462 &tmp->where, &old_locus);
4463 goto cleanup;
4466 mold = tmp;
4467 tmp = NULL;
4468 saw_mold = true;
4469 mold->mold = 1;
4471 if (gfc_match_char (',') == MATCH_YES)
4472 goto alloc_opt_list;
4475 gfc_gobble_whitespace ();
4477 if (gfc_peek_char () == ')')
4478 break;
4481 if (gfc_match (" )%t") != MATCH_YES)
4482 goto syntax;
4484 /* Check F08:C637. */
4485 if (source && mold)
4487 gfc_error ("MOLD tag at %L conflicts with SOURCE tag at %L",
4488 &mold->where, &source->where);
4489 goto cleanup;
4492 /* Check F03:C623, */
4493 if (saw_deferred && ts.type == BT_UNKNOWN && !source && !mold)
4495 gfc_error ("Allocate-object at %L with a deferred type parameter "
4496 "requires either a type-spec or SOURCE tag or a MOLD tag",
4497 &deferred_locus);
4498 goto cleanup;
4501 /* Check F03:C625, */
4502 if (saw_unlimited && ts.type == BT_UNKNOWN && !source && !mold)
4504 for (tail = head; tail; tail = tail->next)
4506 if (UNLIMITED_POLY (tail->expr))
4507 gfc_error ("Unlimited polymorphic allocate-object at %L "
4508 "requires either a type-spec or SOURCE tag "
4509 "or a MOLD tag", &tail->expr->where);
4511 goto cleanup;
4514 new_st.op = EXEC_ALLOCATE;
4515 new_st.expr1 = stat;
4516 new_st.expr2 = errmsg;
4517 if (source)
4518 new_st.expr3 = source;
4519 else
4520 new_st.expr3 = mold;
4521 new_st.ext.alloc.list = head;
4522 new_st.ext.alloc.ts = ts;
4524 if (type_param_spec_list)
4525 gfc_free_actual_arglist (type_param_spec_list);
4527 return MATCH_YES;
4529 syntax:
4530 gfc_syntax_error (ST_ALLOCATE);
4532 cleanup:
4533 gfc_free_expr (errmsg);
4534 gfc_free_expr (source);
4535 gfc_free_expr (stat);
4536 gfc_free_expr (mold);
4537 if (tmp && tmp->expr_type) gfc_free_expr (tmp);
4538 gfc_free_alloc_list (head);
4539 if (type_param_spec_list)
4540 gfc_free_actual_arglist (type_param_spec_list);
4541 return MATCH_ERROR;
4545 /* Match a NULLIFY statement. A NULLIFY statement is transformed into
4546 a set of pointer assignments to intrinsic NULL(). */
4548 match
4549 gfc_match_nullify (void)
4551 gfc_code *tail;
4552 gfc_expr *e, *p;
4553 match m;
4555 tail = NULL;
4557 if (gfc_match_char ('(') != MATCH_YES)
4558 goto syntax;
4560 for (;;)
4562 m = gfc_match_variable (&p, 0);
4563 if (m == MATCH_ERROR)
4564 goto cleanup;
4565 if (m == MATCH_NO)
4566 goto syntax;
4568 if (gfc_check_do_variable (p->symtree))
4569 goto cleanup;
4571 /* F2008, C1242. */
4572 if (gfc_is_coindexed (p))
4574 gfc_error ("Pointer object at %C shall not be coindexed");
4575 goto cleanup;
4578 /* build ' => NULL() '. */
4579 e = gfc_get_null_expr (&gfc_current_locus);
4581 /* Chain to list. */
4582 if (tail == NULL)
4584 tail = &new_st;
4585 tail->op = EXEC_POINTER_ASSIGN;
4587 else
4589 tail->next = gfc_get_code (EXEC_POINTER_ASSIGN);
4590 tail = tail->next;
4593 tail->expr1 = p;
4594 tail->expr2 = e;
4596 if (gfc_match (" )%t") == MATCH_YES)
4597 break;
4598 if (gfc_match_char (',') != MATCH_YES)
4599 goto syntax;
4602 return MATCH_YES;
4604 syntax:
4605 gfc_syntax_error (ST_NULLIFY);
4607 cleanup:
4608 gfc_free_statements (new_st.next);
4609 new_st.next = NULL;
4610 gfc_free_expr (new_st.expr1);
4611 new_st.expr1 = NULL;
4612 gfc_free_expr (new_st.expr2);
4613 new_st.expr2 = NULL;
4614 return MATCH_ERROR;
4618 /* Match a DEALLOCATE statement. */
4620 match
4621 gfc_match_deallocate (void)
4623 gfc_alloc *head, *tail;
4624 gfc_expr *stat, *errmsg, *tmp;
4625 gfc_symbol *sym;
4626 match m;
4627 bool saw_stat, saw_errmsg, b1, b2;
4629 head = tail = NULL;
4630 stat = errmsg = tmp = NULL;
4631 saw_stat = saw_errmsg = false;
4633 if (gfc_match_char ('(') != MATCH_YES)
4634 goto syntax;
4636 for (;;)
4638 if (head == NULL)
4639 head = tail = gfc_get_alloc ();
4640 else
4642 tail->next = gfc_get_alloc ();
4643 tail = tail->next;
4646 m = gfc_match_variable (&tail->expr, 0);
4647 if (m == MATCH_ERROR)
4648 goto cleanup;
4649 if (m == MATCH_NO)
4650 goto syntax;
4652 if (gfc_check_do_variable (tail->expr->symtree))
4653 goto cleanup;
4655 sym = tail->expr->symtree->n.sym;
4657 bool impure = gfc_impure_variable (sym);
4658 if (impure && gfc_pure (NULL))
4660 gfc_error ("Illegal allocate-object at %C for a PURE procedure");
4661 goto cleanup;
4664 if (impure)
4665 gfc_unset_implicit_pure (NULL);
4667 if (gfc_is_coarray (tail->expr)
4668 && gfc_find_state (COMP_DO_CONCURRENT))
4670 gfc_error ("DEALLOCATE of coarray at %C in DO CONCURRENT block");
4671 goto cleanup;
4674 if (gfc_is_coarray (tail->expr)
4675 && gfc_find_state (COMP_CRITICAL))
4677 gfc_error ("DEALLOCATE of coarray at %C in CRITICAL block");
4678 goto cleanup;
4681 /* FIXME: disable the checking on derived types. */
4682 b1 = !(tail->expr->ref
4683 && (tail->expr->ref->type == REF_COMPONENT
4684 || tail->expr->ref->type == REF_ARRAY));
4685 if (sym && sym->ts.type == BT_CLASS)
4686 b2 = !(CLASS_DATA (sym) && (CLASS_DATA (sym)->attr.allocatable
4687 || CLASS_DATA (sym)->attr.class_pointer));
4688 else
4689 b2 = sym && !(sym->attr.allocatable || sym->attr.pointer
4690 || sym->attr.proc_pointer);
4691 if (b1 && b2)
4693 gfc_error ("Allocate-object at %C is not a nonprocedure pointer "
4694 "nor an allocatable variable");
4695 goto cleanup;
4698 if (gfc_match_char (',') != MATCH_YES)
4699 break;
4701 dealloc_opt_list:
4703 m = gfc_match (" stat = %v", &tmp);
4704 if (m == MATCH_ERROR)
4705 goto cleanup;
4706 if (m == MATCH_YES)
4708 if (saw_stat)
4710 gfc_error ("Redundant STAT tag found at %L", &tmp->where);
4711 gfc_free_expr (tmp);
4712 goto cleanup;
4715 stat = tmp;
4716 saw_stat = true;
4718 if (gfc_check_do_variable (stat->symtree))
4719 goto cleanup;
4721 if (gfc_match_char (',') == MATCH_YES)
4722 goto dealloc_opt_list;
4725 m = gfc_match (" errmsg = %v", &tmp);
4726 if (m == MATCH_ERROR)
4727 goto cleanup;
4728 if (m == MATCH_YES)
4730 if (!gfc_notify_std (GFC_STD_F2003, "ERRMSG at %L", &tmp->where))
4731 goto cleanup;
4733 if (saw_errmsg)
4735 gfc_error ("Redundant ERRMSG tag found at %L", &tmp->where);
4736 gfc_free_expr (tmp);
4737 goto cleanup;
4740 errmsg = tmp;
4741 saw_errmsg = true;
4743 if (gfc_match_char (',') == MATCH_YES)
4744 goto dealloc_opt_list;
4747 gfc_gobble_whitespace ();
4749 if (gfc_peek_char () == ')')
4750 break;
4753 if (gfc_match (" )%t") != MATCH_YES)
4754 goto syntax;
4756 new_st.op = EXEC_DEALLOCATE;
4757 new_st.expr1 = stat;
4758 new_st.expr2 = errmsg;
4759 new_st.ext.alloc.list = head;
4761 return MATCH_YES;
4763 syntax:
4764 gfc_syntax_error (ST_DEALLOCATE);
4766 cleanup:
4767 gfc_free_expr (errmsg);
4768 gfc_free_expr (stat);
4769 gfc_free_alloc_list (head);
4770 return MATCH_ERROR;
4774 /* Match a RETURN statement. */
4776 match
4777 gfc_match_return (void)
4779 gfc_expr *e;
4780 match m;
4781 gfc_compile_state s;
4783 e = NULL;
4785 if (gfc_find_state (COMP_CRITICAL))
4787 gfc_error ("Image control statement RETURN at %C in CRITICAL block");
4788 return MATCH_ERROR;
4791 if (gfc_find_state (COMP_DO_CONCURRENT))
4793 gfc_error ("Image control statement RETURN at %C in DO CONCURRENT block");
4794 return MATCH_ERROR;
4797 if (gfc_match_eos () == MATCH_YES)
4798 goto done;
4800 if (!gfc_find_state (COMP_SUBROUTINE))
4802 gfc_error ("Alternate RETURN statement at %C is only allowed within "
4803 "a SUBROUTINE");
4804 goto cleanup;
4807 if (gfc_current_form == FORM_FREE)
4809 /* The following are valid, so we can't require a blank after the
4810 RETURN keyword:
4811 return+1
4812 return(1) */
4813 char c = gfc_peek_ascii_char ();
4814 if (ISALPHA (c) || ISDIGIT (c))
4815 return MATCH_NO;
4818 m = gfc_match (" %e%t", &e);
4819 if (m == MATCH_YES)
4820 goto done;
4821 if (m == MATCH_ERROR)
4822 goto cleanup;
4824 gfc_syntax_error (ST_RETURN);
4826 cleanup:
4827 gfc_free_expr (e);
4828 return MATCH_ERROR;
4830 done:
4831 gfc_enclosing_unit (&s);
4832 if (s == COMP_PROGRAM
4833 && !gfc_notify_std (GFC_STD_GNU, "RETURN statement in "
4834 "main program at %C"))
4835 return MATCH_ERROR;
4837 new_st.op = EXEC_RETURN;
4838 new_st.expr1 = e;
4840 return MATCH_YES;
4844 /* Match the call of a type-bound procedure, if CALL%var has already been
4845 matched and var found to be a derived-type variable. */
4847 static match
4848 match_typebound_call (gfc_symtree* varst)
4850 gfc_expr* base;
4851 match m;
4853 base = gfc_get_expr ();
4854 base->expr_type = EXPR_VARIABLE;
4855 base->symtree = varst;
4856 base->where = gfc_current_locus;
4857 gfc_set_sym_referenced (varst->n.sym);
4859 m = gfc_match_varspec (base, 0, true, true);
4860 if (m == MATCH_NO)
4861 gfc_error ("Expected component reference at %C");
4862 if (m != MATCH_YES)
4864 gfc_free_expr (base);
4865 return MATCH_ERROR;
4868 if (gfc_match_eos () != MATCH_YES)
4870 gfc_error ("Junk after CALL at %C");
4871 gfc_free_expr (base);
4872 return MATCH_ERROR;
4875 if (base->expr_type == EXPR_COMPCALL)
4876 new_st.op = EXEC_COMPCALL;
4877 else if (base->expr_type == EXPR_PPC)
4878 new_st.op = EXEC_CALL_PPC;
4879 else
4881 gfc_error ("Expected type-bound procedure or procedure pointer component "
4882 "at %C");
4883 gfc_free_expr (base);
4884 return MATCH_ERROR;
4886 new_st.expr1 = base;
4888 return MATCH_YES;
4892 /* Match a CALL statement. The tricky part here are possible
4893 alternate return specifiers. We handle these by having all
4894 "subroutines" actually return an integer via a register that gives
4895 the return number. If the call specifies alternate returns, we
4896 generate code for a SELECT statement whose case clauses contain
4897 GOTOs to the various labels. */
4899 match
4900 gfc_match_call (void)
4902 char name[GFC_MAX_SYMBOL_LEN + 1];
4903 gfc_actual_arglist *a, *arglist;
4904 gfc_case *new_case;
4905 gfc_symbol *sym;
4906 gfc_symtree *st;
4907 gfc_code *c;
4908 match m;
4909 int i;
4911 arglist = NULL;
4913 m = gfc_match ("% %n", name);
4914 if (m == MATCH_NO)
4915 goto syntax;
4916 if (m != MATCH_YES)
4917 return m;
4919 if (gfc_get_ha_sym_tree (name, &st))
4920 return MATCH_ERROR;
4922 sym = st->n.sym;
4924 /* If this is a variable of derived-type, it probably starts a type-bound
4925 procedure call. */
4926 if ((sym->attr.flavor != FL_PROCEDURE
4927 || gfc_is_function_return_value (sym, gfc_current_ns))
4928 && (sym->ts.type == BT_DERIVED || sym->ts.type == BT_CLASS))
4929 return match_typebound_call (st);
4931 /* If it does not seem to be callable (include functions so that the
4932 right association is made. They are thrown out in resolution.)
4933 ... */
4934 if (!sym->attr.generic
4935 && !sym->attr.subroutine
4936 && !sym->attr.function)
4938 if (!(sym->attr.external && !sym->attr.referenced))
4940 /* ...create a symbol in this scope... */
4941 if (sym->ns != gfc_current_ns
4942 && gfc_get_sym_tree (name, NULL, &st, false) == 1)
4943 return MATCH_ERROR;
4945 if (sym != st->n.sym)
4946 sym = st->n.sym;
4949 /* ...and then to try to make the symbol into a subroutine. */
4950 if (!gfc_add_subroutine (&sym->attr, sym->name, NULL))
4951 return MATCH_ERROR;
4954 gfc_set_sym_referenced (sym);
4956 if (gfc_match_eos () != MATCH_YES)
4958 m = gfc_match_actual_arglist (1, &arglist);
4959 if (m == MATCH_NO)
4960 goto syntax;
4961 if (m == MATCH_ERROR)
4962 goto cleanup;
4964 if (gfc_match_eos () != MATCH_YES)
4965 goto syntax;
4968 /* If any alternate return labels were found, construct a SELECT
4969 statement that will jump to the right place. */
4971 i = 0;
4972 for (a = arglist; a; a = a->next)
4973 if (a->expr == NULL)
4975 i = 1;
4976 break;
4979 if (i)
4981 gfc_symtree *select_st;
4982 gfc_symbol *select_sym;
4983 char name[GFC_MAX_SYMBOL_LEN + 1];
4985 new_st.next = c = gfc_get_code (EXEC_SELECT);
4986 sprintf (name, "_result_%s", sym->name);
4987 gfc_get_ha_sym_tree (name, &select_st); /* Can't fail. */
4989 select_sym = select_st->n.sym;
4990 select_sym->ts.type = BT_INTEGER;
4991 select_sym->ts.kind = gfc_default_integer_kind;
4992 gfc_set_sym_referenced (select_sym);
4993 c->expr1 = gfc_get_expr ();
4994 c->expr1->expr_type = EXPR_VARIABLE;
4995 c->expr1->symtree = select_st;
4996 c->expr1->ts = select_sym->ts;
4997 c->expr1->where = gfc_current_locus;
4999 i = 0;
5000 for (a = arglist; a; a = a->next)
5002 if (a->expr != NULL)
5003 continue;
5005 if (!gfc_reference_st_label (a->label, ST_LABEL_TARGET))
5006 continue;
5008 i++;
5010 c->block = gfc_get_code (EXEC_SELECT);
5011 c = c->block;
5013 new_case = gfc_get_case ();
5014 new_case->high = gfc_get_int_expr (gfc_default_integer_kind, NULL, i);
5015 new_case->low = new_case->high;
5016 c->ext.block.case_list = new_case;
5018 c->next = gfc_get_code (EXEC_GOTO);
5019 c->next->label1 = a->label;
5023 new_st.op = EXEC_CALL;
5024 new_st.symtree = st;
5025 new_st.ext.actual = arglist;
5027 return MATCH_YES;
5029 syntax:
5030 gfc_syntax_error (ST_CALL);
5032 cleanup:
5033 gfc_free_actual_arglist (arglist);
5034 return MATCH_ERROR;
5038 /* Given a name, return a pointer to the common head structure,
5039 creating it if it does not exist. If FROM_MODULE is nonzero, we
5040 mangle the name so that it doesn't interfere with commons defined
5041 in the using namespace.
5042 TODO: Add to global symbol tree. */
5044 gfc_common_head *
5045 gfc_get_common (const char *name, int from_module)
5047 gfc_symtree *st;
5048 static int serial = 0;
5049 char mangled_name[GFC_MAX_SYMBOL_LEN + 1];
5051 if (from_module)
5053 /* A use associated common block is only needed to correctly layout
5054 the variables it contains. */
5055 snprintf (mangled_name, GFC_MAX_SYMBOL_LEN, "_%d_%s", serial++, name);
5056 st = gfc_new_symtree (&gfc_current_ns->common_root, mangled_name);
5058 else
5060 st = gfc_find_symtree (gfc_current_ns->common_root, name);
5062 if (st == NULL)
5063 st = gfc_new_symtree (&gfc_current_ns->common_root, name);
5066 if (st->n.common == NULL)
5068 st->n.common = gfc_get_common_head ();
5069 st->n.common->where = gfc_current_locus;
5070 strcpy (st->n.common->name, name);
5073 return st->n.common;
5077 /* Match a common block name. */
5079 match match_common_name (char *name)
5081 match m;
5083 if (gfc_match_char ('/') == MATCH_NO)
5085 name[0] = '\0';
5086 return MATCH_YES;
5089 if (gfc_match_char ('/') == MATCH_YES)
5091 name[0] = '\0';
5092 return MATCH_YES;
5095 m = gfc_match_name (name);
5097 if (m == MATCH_ERROR)
5098 return MATCH_ERROR;
5099 if (m == MATCH_YES && gfc_match_char ('/') == MATCH_YES)
5100 return MATCH_YES;
5102 gfc_error ("Syntax error in common block name at %C");
5103 return MATCH_ERROR;
5107 /* Match a COMMON statement. */
5109 match
5110 gfc_match_common (void)
5112 gfc_symbol *sym, **head, *tail, *other;
5113 char name[GFC_MAX_SYMBOL_LEN + 1];
5114 gfc_common_head *t;
5115 gfc_array_spec *as;
5116 gfc_equiv *e1, *e2;
5117 match m;
5119 as = NULL;
5121 for (;;)
5123 m = match_common_name (name);
5124 if (m == MATCH_ERROR)
5125 goto cleanup;
5127 if (name[0] == '\0')
5129 t = &gfc_current_ns->blank_common;
5130 if (t->head == NULL)
5131 t->where = gfc_current_locus;
5133 else
5135 t = gfc_get_common (name, 0);
5137 head = &t->head;
5139 if (*head == NULL)
5140 tail = NULL;
5141 else
5143 tail = *head;
5144 while (tail->common_next)
5145 tail = tail->common_next;
5148 /* Grab the list of symbols. */
5149 for (;;)
5151 m = gfc_match_symbol (&sym, 0);
5152 if (m == MATCH_ERROR)
5153 goto cleanup;
5154 if (m == MATCH_NO)
5155 goto syntax;
5157 /* See if we know the current common block is bind(c), and if
5158 so, then see if we can check if the symbol is (which it'll
5159 need to be). This can happen if the bind(c) attr stmt was
5160 applied to the common block, and the variable(s) already
5161 defined, before declaring the common block. */
5162 if (t->is_bind_c == 1)
5164 if (sym->ts.type != BT_UNKNOWN && sym->ts.is_c_interop != 1)
5166 /* If we find an error, just print it and continue,
5167 cause it's just semantic, and we can see if there
5168 are more errors. */
5169 gfc_error_now ("Variable %qs at %L in common block %qs "
5170 "at %C must be declared with a C "
5171 "interoperable kind since common block "
5172 "%qs is bind(c)",
5173 sym->name, &(sym->declared_at), t->name,
5174 t->name);
5177 if (sym->attr.is_bind_c == 1)
5178 gfc_error_now ("Variable %qs in common block %qs at %C cannot "
5179 "be bind(c) since it is not global", sym->name,
5180 t->name);
5183 if (sym->attr.in_common)
5185 gfc_error ("Symbol %qs at %C is already in a COMMON block",
5186 sym->name);
5187 goto cleanup;
5190 if (((sym->value != NULL && sym->value->expr_type != EXPR_NULL)
5191 || sym->attr.data) && gfc_current_state () != COMP_BLOCK_DATA)
5193 if (!gfc_notify_std (GFC_STD_GNU, "Initialized symbol %qs at "
5194 "%C can only be COMMON in BLOCK DATA",
5195 sym->name))
5196 goto cleanup;
5199 /* Deal with an optional array specification after the
5200 symbol name. */
5201 m = gfc_match_array_spec (&as, true, true);
5202 if (m == MATCH_ERROR)
5203 goto cleanup;
5205 if (m == MATCH_YES)
5207 if (as->type != AS_EXPLICIT)
5209 gfc_error ("Array specification for symbol %qs in COMMON "
5210 "at %C must be explicit", sym->name);
5211 goto cleanup;
5214 if (!gfc_add_dimension (&sym->attr, sym->name, NULL))
5215 goto cleanup;
5217 if (sym->attr.pointer)
5219 gfc_error ("Symbol %qs in COMMON at %C cannot be a "
5220 "POINTER array", sym->name);
5221 goto cleanup;
5224 sym->as = as;
5225 as = NULL;
5229 /* Add the in_common attribute, but ignore the reported errors
5230 if any, and continue matching. */
5231 gfc_add_in_common (&sym->attr, sym->name, NULL);
5233 sym->common_block = t;
5234 sym->common_block->refs++;
5236 if (tail != NULL)
5237 tail->common_next = sym;
5238 else
5239 *head = sym;
5241 tail = sym;
5243 sym->common_head = t;
5245 /* Check to see if the symbol is already in an equivalence group.
5246 If it is, set the other members as being in common. */
5247 if (sym->attr.in_equivalence)
5249 for (e1 = gfc_current_ns->equiv; e1; e1 = e1->next)
5251 for (e2 = e1; e2; e2 = e2->eq)
5252 if (e2->expr->symtree->n.sym == sym)
5253 goto equiv_found;
5255 continue;
5257 equiv_found:
5259 for (e2 = e1; e2; e2 = e2->eq)
5261 other = e2->expr->symtree->n.sym;
5262 if (other->common_head
5263 && other->common_head != sym->common_head)
5265 gfc_error ("Symbol %qs, in COMMON block %qs at "
5266 "%C is being indirectly equivalenced to "
5267 "another COMMON block %qs",
5268 sym->name, sym->common_head->name,
5269 other->common_head->name);
5270 goto cleanup;
5272 other->attr.in_common = 1;
5273 other->common_head = t;
5279 gfc_gobble_whitespace ();
5280 if (gfc_match_eos () == MATCH_YES)
5281 goto done;
5282 if (gfc_peek_ascii_char () == '/')
5283 break;
5284 if (gfc_match_char (',') != MATCH_YES)
5285 goto syntax;
5286 gfc_gobble_whitespace ();
5287 if (gfc_peek_ascii_char () == '/')
5288 break;
5292 done:
5293 return MATCH_YES;
5295 syntax:
5296 gfc_syntax_error (ST_COMMON);
5298 cleanup:
5299 gfc_free_array_spec (as);
5300 return MATCH_ERROR;
5304 /* Match a BLOCK DATA program unit. */
5306 match
5307 gfc_match_block_data (void)
5309 char name[GFC_MAX_SYMBOL_LEN + 1];
5310 gfc_symbol *sym;
5311 match m;
5313 if (!gfc_notify_std (GFC_STD_F2018_OBS, "BLOCK DATA construct at %L",
5314 &gfc_current_locus))
5315 return MATCH_ERROR;
5317 if (gfc_match_eos () == MATCH_YES)
5319 gfc_new_block = NULL;
5320 return MATCH_YES;
5323 m = gfc_match ("% %n%t", name);
5324 if (m != MATCH_YES)
5325 return MATCH_ERROR;
5327 if (gfc_get_symbol (name, NULL, &sym))
5328 return MATCH_ERROR;
5330 if (!gfc_add_flavor (&sym->attr, FL_BLOCK_DATA, sym->name, NULL))
5331 return MATCH_ERROR;
5333 gfc_new_block = sym;
5335 return MATCH_YES;
5339 /* Free a namelist structure. */
5341 void
5342 gfc_free_namelist (gfc_namelist *name)
5344 gfc_namelist *n;
5346 for (; name; name = n)
5348 n = name->next;
5349 free (name);
5354 /* Free an OpenMP namelist structure. */
5356 void
5357 gfc_free_omp_namelist (gfc_omp_namelist *name)
5359 gfc_omp_namelist *n;
5361 for (; name; name = n)
5363 gfc_free_expr (name->expr);
5364 if (name->udr)
5366 if (name->udr->combiner)
5367 gfc_free_statement (name->udr->combiner);
5368 if (name->udr->initializer)
5369 gfc_free_statement (name->udr->initializer);
5370 free (name->udr);
5372 n = name->next;
5373 free (name);
5378 /* Match a NAMELIST statement. */
5380 match
5381 gfc_match_namelist (void)
5383 gfc_symbol *group_name, *sym;
5384 gfc_namelist *nl;
5385 match m, m2;
5387 m = gfc_match (" / %s /", &group_name);
5388 if (m == MATCH_NO)
5389 goto syntax;
5390 if (m == MATCH_ERROR)
5391 goto error;
5393 for (;;)
5395 if (group_name->ts.type != BT_UNKNOWN)
5397 gfc_error ("Namelist group name %qs at %C already has a basic "
5398 "type of %s", group_name->name,
5399 gfc_typename (&group_name->ts));
5400 return MATCH_ERROR;
5403 if (group_name->attr.flavor == FL_NAMELIST
5404 && group_name->attr.use_assoc
5405 && !gfc_notify_std (GFC_STD_GNU, "Namelist group name %qs "
5406 "at %C already is USE associated and can"
5407 "not be respecified.", group_name->name))
5408 return MATCH_ERROR;
5410 if (group_name->attr.flavor != FL_NAMELIST
5411 && !gfc_add_flavor (&group_name->attr, FL_NAMELIST,
5412 group_name->name, NULL))
5413 return MATCH_ERROR;
5415 for (;;)
5417 m = gfc_match_symbol (&sym, 1);
5418 if (m == MATCH_NO)
5419 goto syntax;
5420 if (m == MATCH_ERROR)
5421 goto error;
5423 if (sym->attr.in_namelist == 0
5424 && !gfc_add_in_namelist (&sym->attr, sym->name, NULL))
5425 goto error;
5427 /* Use gfc_error_check here, rather than goto error, so that
5428 these are the only errors for the next two lines. */
5429 if (sym->as && sym->as->type == AS_ASSUMED_SIZE)
5431 gfc_error ("Assumed size array %qs in namelist %qs at "
5432 "%C is not allowed", sym->name, group_name->name);
5433 gfc_error_check ();
5436 nl = gfc_get_namelist ();
5437 nl->sym = sym;
5438 sym->refs++;
5440 if (group_name->namelist == NULL)
5441 group_name->namelist = group_name->namelist_tail = nl;
5442 else
5444 group_name->namelist_tail->next = nl;
5445 group_name->namelist_tail = nl;
5448 if (gfc_match_eos () == MATCH_YES)
5449 goto done;
5451 m = gfc_match_char (',');
5453 if (gfc_match_char ('/') == MATCH_YES)
5455 m2 = gfc_match (" %s /", &group_name);
5456 if (m2 == MATCH_YES)
5457 break;
5458 if (m2 == MATCH_ERROR)
5459 goto error;
5460 goto syntax;
5463 if (m != MATCH_YES)
5464 goto syntax;
5468 done:
5469 return MATCH_YES;
5471 syntax:
5472 gfc_syntax_error (ST_NAMELIST);
5474 error:
5475 return MATCH_ERROR;
5479 /* Match a MODULE statement. */
5481 match
5482 gfc_match_module (void)
5484 match m;
5486 m = gfc_match (" %s%t", &gfc_new_block);
5487 if (m != MATCH_YES)
5488 return m;
5490 if (!gfc_add_flavor (&gfc_new_block->attr, FL_MODULE,
5491 gfc_new_block->name, NULL))
5492 return MATCH_ERROR;
5494 return MATCH_YES;
5498 /* Free equivalence sets and lists. Recursively is the easiest way to
5499 do this. */
5501 void
5502 gfc_free_equiv_until (gfc_equiv *eq, gfc_equiv *stop)
5504 if (eq == stop)
5505 return;
5507 gfc_free_equiv (eq->eq);
5508 gfc_free_equiv_until (eq->next, stop);
5509 gfc_free_expr (eq->expr);
5510 free (eq);
5514 void
5515 gfc_free_equiv (gfc_equiv *eq)
5517 gfc_free_equiv_until (eq, NULL);
5521 /* Match an EQUIVALENCE statement. */
5523 match
5524 gfc_match_equivalence (void)
5526 gfc_equiv *eq, *set, *tail;
5527 gfc_ref *ref;
5528 gfc_symbol *sym;
5529 match m;
5530 gfc_common_head *common_head = NULL;
5531 bool common_flag;
5532 int cnt;
5534 tail = NULL;
5536 for (;;)
5538 eq = gfc_get_equiv ();
5539 if (tail == NULL)
5540 tail = eq;
5542 eq->next = gfc_current_ns->equiv;
5543 gfc_current_ns->equiv = eq;
5545 if (gfc_match_char ('(') != MATCH_YES)
5546 goto syntax;
5548 set = eq;
5549 common_flag = FALSE;
5550 cnt = 0;
5552 for (;;)
5554 m = gfc_match_equiv_variable (&set->expr);
5555 if (m == MATCH_ERROR)
5556 goto cleanup;
5557 if (m == MATCH_NO)
5558 goto syntax;
5560 /* count the number of objects. */
5561 cnt++;
5563 if (gfc_match_char ('%') == MATCH_YES)
5565 gfc_error ("Derived type component %C is not a "
5566 "permitted EQUIVALENCE member");
5567 goto cleanup;
5570 for (ref = set->expr->ref; ref; ref = ref->next)
5571 if (ref->type == REF_ARRAY && ref->u.ar.type == AR_SECTION)
5573 gfc_error ("Array reference in EQUIVALENCE at %C cannot "
5574 "be an array section");
5575 goto cleanup;
5578 sym = set->expr->symtree->n.sym;
5580 if (!gfc_add_in_equivalence (&sym->attr, sym->name, NULL))
5581 goto cleanup;
5583 if (sym->attr.in_common)
5585 common_flag = TRUE;
5586 common_head = sym->common_head;
5589 if (gfc_match_char (')') == MATCH_YES)
5590 break;
5592 if (gfc_match_char (',') != MATCH_YES)
5593 goto syntax;
5595 set->eq = gfc_get_equiv ();
5596 set = set->eq;
5599 if (cnt < 2)
5601 gfc_error ("EQUIVALENCE at %C requires two or more objects");
5602 goto cleanup;
5605 /* If one of the members of an equivalence is in common, then
5606 mark them all as being in common. Before doing this, check
5607 that members of the equivalence group are not in different
5608 common blocks. */
5609 if (common_flag)
5610 for (set = eq; set; set = set->eq)
5612 sym = set->expr->symtree->n.sym;
5613 if (sym->common_head && sym->common_head != common_head)
5615 gfc_error ("Attempt to indirectly overlap COMMON "
5616 "blocks %s and %s by EQUIVALENCE at %C",
5617 sym->common_head->name, common_head->name);
5618 goto cleanup;
5620 sym->attr.in_common = 1;
5621 sym->common_head = common_head;
5624 if (gfc_match_eos () == MATCH_YES)
5625 break;
5626 if (gfc_match_char (',') != MATCH_YES)
5628 gfc_error ("Expecting a comma in EQUIVALENCE at %C");
5629 goto cleanup;
5633 if (!gfc_notify_std (GFC_STD_F2018_OBS, "EQUIVALENCE statement at %C"))
5634 return MATCH_ERROR;
5636 return MATCH_YES;
5638 syntax:
5639 gfc_syntax_error (ST_EQUIVALENCE);
5641 cleanup:
5642 eq = tail->next;
5643 tail->next = NULL;
5645 gfc_free_equiv (gfc_current_ns->equiv);
5646 gfc_current_ns->equiv = eq;
5648 return MATCH_ERROR;
5652 /* Check that a statement function is not recursive. This is done by looking
5653 for the statement function symbol(sym) by looking recursively through its
5654 expression(e). If a reference to sym is found, true is returned.
5655 12.5.4 requires that any variable of function that is implicitly typed
5656 shall have that type confirmed by any subsequent type declaration. The
5657 implicit typing is conveniently done here. */
5658 static bool
5659 recursive_stmt_fcn (gfc_expr *, gfc_symbol *);
5661 static bool
5662 check_stmt_fcn (gfc_expr *e, gfc_symbol *sym, int *f ATTRIBUTE_UNUSED)
5665 if (e == NULL)
5666 return false;
5668 switch (e->expr_type)
5670 case EXPR_FUNCTION:
5671 if (e->symtree == NULL)
5672 return false;
5674 /* Check the name before testing for nested recursion! */
5675 if (sym->name == e->symtree->n.sym->name)
5676 return true;
5678 /* Catch recursion via other statement functions. */
5679 if (e->symtree->n.sym->attr.proc == PROC_ST_FUNCTION
5680 && e->symtree->n.sym->value
5681 && recursive_stmt_fcn (e->symtree->n.sym->value, sym))
5682 return true;
5684 if (e->symtree->n.sym->ts.type == BT_UNKNOWN)
5685 gfc_set_default_type (e->symtree->n.sym, 0, NULL);
5687 break;
5689 case EXPR_VARIABLE:
5690 if (e->symtree && sym->name == e->symtree->n.sym->name)
5691 return true;
5693 if (e->symtree->n.sym->ts.type == BT_UNKNOWN)
5694 gfc_set_default_type (e->symtree->n.sym, 0, NULL);
5695 break;
5697 default:
5698 break;
5701 return false;
5705 static bool
5706 recursive_stmt_fcn (gfc_expr *e, gfc_symbol *sym)
5708 return gfc_traverse_expr (e, sym, check_stmt_fcn, 0);
5712 /* Match a statement function declaration. It is so easy to match
5713 non-statement function statements with a MATCH_ERROR as opposed to
5714 MATCH_NO that we suppress error message in most cases. */
5716 match
5717 gfc_match_st_function (void)
5719 gfc_error_buffer old_error;
5720 gfc_symbol *sym;
5721 gfc_expr *expr;
5722 match m;
5724 m = gfc_match_symbol (&sym, 0);
5725 if (m != MATCH_YES)
5726 return m;
5728 gfc_push_error (&old_error);
5730 if (!gfc_add_procedure (&sym->attr, PROC_ST_FUNCTION, sym->name, NULL))
5731 goto undo_error;
5733 if (gfc_match_formal_arglist (sym, 1, 0) != MATCH_YES)
5734 goto undo_error;
5736 m = gfc_match (" = %e%t", &expr);
5737 if (m == MATCH_NO)
5738 goto undo_error;
5740 gfc_free_error (&old_error);
5742 if (m == MATCH_ERROR)
5743 return m;
5745 if (recursive_stmt_fcn (expr, sym))
5747 gfc_error ("Statement function at %L is recursive", &expr->where);
5748 return MATCH_ERROR;
5751 sym->value = expr;
5753 if ((gfc_current_state () == COMP_FUNCTION
5754 || gfc_current_state () == COMP_SUBROUTINE)
5755 && gfc_state_stack->previous->state == COMP_INTERFACE)
5757 gfc_error ("Statement function at %L cannot appear within an INTERFACE",
5758 &expr->where);
5759 return MATCH_ERROR;
5762 if (!gfc_notify_std (GFC_STD_F95_OBS, "Statement function at %C"))
5763 return MATCH_ERROR;
5765 return MATCH_YES;
5767 undo_error:
5768 gfc_pop_error (&old_error);
5769 return MATCH_NO;
5773 /* Match an assignment to a pointer function (F2008). This could, in
5774 general be ambiguous with a statement function. In this implementation
5775 it remains so if it is the first statement after the specification
5776 block. */
5778 match
5779 gfc_match_ptr_fcn_assign (void)
5781 gfc_error_buffer old_error;
5782 locus old_loc;
5783 gfc_symbol *sym;
5784 gfc_expr *expr;
5785 match m;
5786 char name[GFC_MAX_SYMBOL_LEN + 1];
5788 old_loc = gfc_current_locus;
5789 m = gfc_match_name (name);
5790 if (m != MATCH_YES)
5791 return m;
5793 gfc_find_symbol (name, NULL, 1, &sym);
5794 if (sym && sym->attr.flavor != FL_PROCEDURE)
5795 return MATCH_NO;
5797 gfc_push_error (&old_error);
5799 if (sym && sym->attr.function)
5800 goto match_actual_arglist;
5802 gfc_current_locus = old_loc;
5803 m = gfc_match_symbol (&sym, 0);
5804 if (m != MATCH_YES)
5805 return m;
5807 if (!gfc_add_procedure (&sym->attr, PROC_UNKNOWN, sym->name, NULL))
5808 goto undo_error;
5810 match_actual_arglist:
5811 gfc_current_locus = old_loc;
5812 m = gfc_match (" %e", &expr);
5813 if (m != MATCH_YES)
5814 goto undo_error;
5816 new_st.op = EXEC_ASSIGN;
5817 new_st.expr1 = expr;
5818 expr = NULL;
5820 m = gfc_match (" = %e%t", &expr);
5821 if (m != MATCH_YES)
5822 goto undo_error;
5824 new_st.expr2 = expr;
5825 return MATCH_YES;
5827 undo_error:
5828 gfc_pop_error (&old_error);
5829 return MATCH_NO;
5833 /***************** SELECT CASE subroutines ******************/
5835 /* Free a single case structure. */
5837 static void
5838 free_case (gfc_case *p)
5840 if (p->low == p->high)
5841 p->high = NULL;
5842 gfc_free_expr (p->low);
5843 gfc_free_expr (p->high);
5844 free (p);
5848 /* Free a list of case structures. */
5850 void
5851 gfc_free_case_list (gfc_case *p)
5853 gfc_case *q;
5855 for (; p; p = q)
5857 q = p->next;
5858 free_case (p);
5863 /* Match a single case selector. Combining the requirements of F08:C830
5864 and F08:C832 (R838) means that the case-value must have either CHARACTER,
5865 INTEGER, or LOGICAL type. */
5867 static match
5868 match_case_selector (gfc_case **cp)
5870 gfc_case *c;
5871 match m;
5873 c = gfc_get_case ();
5874 c->where = gfc_current_locus;
5876 if (gfc_match_char (':') == MATCH_YES)
5878 m = gfc_match_init_expr (&c->high);
5879 if (m == MATCH_NO)
5880 goto need_expr;
5881 if (m == MATCH_ERROR)
5882 goto cleanup;
5884 if (c->high->ts.type != BT_LOGICAL && c->high->ts.type != BT_INTEGER
5885 && c->high->ts.type != BT_CHARACTER)
5887 gfc_error ("Expression in CASE selector at %L cannot be %s",
5888 &c->high->where, gfc_typename (&c->high->ts));
5889 goto cleanup;
5892 else
5894 m = gfc_match_init_expr (&c->low);
5895 if (m == MATCH_ERROR)
5896 goto cleanup;
5897 if (m == MATCH_NO)
5898 goto need_expr;
5900 if (c->low->ts.type != BT_LOGICAL && c->low->ts.type != BT_INTEGER
5901 && c->low->ts.type != BT_CHARACTER)
5903 gfc_error ("Expression in CASE selector at %L cannot be %s",
5904 &c->low->where, gfc_typename (&c->low->ts));
5905 goto cleanup;
5908 /* If we're not looking at a ':' now, make a range out of a single
5909 target. Else get the upper bound for the case range. */
5910 if (gfc_match_char (':') != MATCH_YES)
5911 c->high = c->low;
5912 else
5914 m = gfc_match_init_expr (&c->high);
5915 if (m == MATCH_ERROR)
5916 goto cleanup;
5917 /* MATCH_NO is fine. It's OK if nothing is there! */
5921 *cp = c;
5922 return MATCH_YES;
5924 need_expr:
5925 gfc_error ("Expected initialization expression in CASE at %C");
5927 cleanup:
5928 free_case (c);
5929 return MATCH_ERROR;
5933 /* Match the end of a case statement. */
5935 static match
5936 match_case_eos (void)
5938 char name[GFC_MAX_SYMBOL_LEN + 1];
5939 match m;
5941 if (gfc_match_eos () == MATCH_YES)
5942 return MATCH_YES;
5944 /* If the case construct doesn't have a case-construct-name, we
5945 should have matched the EOS. */
5946 if (!gfc_current_block ())
5947 return MATCH_NO;
5949 gfc_gobble_whitespace ();
5951 m = gfc_match_name (name);
5952 if (m != MATCH_YES)
5953 return m;
5955 if (strcmp (name, gfc_current_block ()->name) != 0)
5957 gfc_error ("Expected block name %qs of SELECT construct at %C",
5958 gfc_current_block ()->name);
5959 return MATCH_ERROR;
5962 return gfc_match_eos ();
5966 /* Match a SELECT statement. */
5968 match
5969 gfc_match_select (void)
5971 gfc_expr *expr;
5972 match m;
5974 m = gfc_match_label ();
5975 if (m == MATCH_ERROR)
5976 return m;
5978 m = gfc_match (" select case ( %e )%t", &expr);
5979 if (m != MATCH_YES)
5980 return m;
5982 new_st.op = EXEC_SELECT;
5983 new_st.expr1 = expr;
5985 return MATCH_YES;
5989 /* Transfer the selector typespec to the associate name. */
5991 static void
5992 copy_ts_from_selector_to_associate (gfc_expr *associate, gfc_expr *selector)
5994 gfc_ref *ref;
5995 gfc_symbol *assoc_sym;
5996 int rank = 0;
5998 assoc_sym = associate->symtree->n.sym;
6000 /* At this stage the expression rank and arrayspec dimensions have
6001 not been completely sorted out. We must get the expr2->rank
6002 right here, so that the correct class container is obtained. */
6003 ref = selector->ref;
6004 while (ref && ref->next)
6005 ref = ref->next;
6007 if (selector->ts.type == BT_CLASS && CLASS_DATA (selector)->as
6008 && ref && ref->type == REF_ARRAY)
6010 /* Ensure that the array reference type is set. We cannot use
6011 gfc_resolve_expr at this point, so the usable parts of
6012 resolve.c(resolve_array_ref) are employed to do it. */
6013 if (ref->u.ar.type == AR_UNKNOWN)
6015 ref->u.ar.type = AR_ELEMENT;
6016 for (int i = 0; i < ref->u.ar.dimen + ref->u.ar.codimen; i++)
6017 if (ref->u.ar.dimen_type[i] == DIMEN_RANGE
6018 || ref->u.ar.dimen_type[i] == DIMEN_VECTOR
6019 || (ref->u.ar.dimen_type[i] == DIMEN_UNKNOWN
6020 && ref->u.ar.start[i] && ref->u.ar.start[i]->rank))
6022 ref->u.ar.type = AR_SECTION;
6023 break;
6027 if (ref->u.ar.type == AR_FULL)
6028 selector->rank = CLASS_DATA (selector)->as->rank;
6029 else if (ref->u.ar.type == AR_SECTION)
6030 selector->rank = ref->u.ar.dimen;
6031 else
6032 selector->rank = 0;
6034 rank = selector->rank;
6037 if (rank)
6039 for (int i = 0; i < ref->u.ar.dimen + ref->u.ar.codimen; i++)
6040 if (ref->u.ar.dimen_type[i] == DIMEN_ELEMENT
6041 || (ref->u.ar.dimen_type[i] == DIMEN_UNKNOWN
6042 && ref->u.ar.end[i] == NULL
6043 && ref->u.ar.stride[i] == NULL))
6044 rank--;
6046 if (rank)
6048 assoc_sym->attr.dimension = 1;
6049 assoc_sym->as = gfc_get_array_spec ();
6050 assoc_sym->as->rank = rank;
6051 assoc_sym->as->type = AS_DEFERRED;
6053 else
6054 assoc_sym->as = NULL;
6056 else
6057 assoc_sym->as = NULL;
6059 if (selector->ts.type == BT_CLASS)
6061 /* The correct class container has to be available. */
6062 assoc_sym->ts.type = BT_CLASS;
6063 assoc_sym->ts.u.derived = CLASS_DATA (selector)->ts.u.derived;
6064 assoc_sym->attr.pointer = 1;
6065 gfc_build_class_symbol (&assoc_sym->ts, &assoc_sym->attr, &assoc_sym->as);
6070 /* Push the current selector onto the SELECT TYPE stack. */
6072 static void
6073 select_type_push (gfc_symbol *sel)
6075 gfc_select_type_stack *top = gfc_get_select_type_stack ();
6076 top->selector = sel;
6077 top->tmp = NULL;
6078 top->prev = select_type_stack;
6080 select_type_stack = top;
6084 /* Set the temporary for the current intrinsic SELECT TYPE selector. */
6086 static gfc_symtree *
6087 select_intrinsic_set_tmp (gfc_typespec *ts)
6089 char name[GFC_MAX_SYMBOL_LEN];
6090 gfc_symtree *tmp;
6091 HOST_WIDE_INT charlen = 0;
6093 if (ts->type == BT_CLASS || ts->type == BT_DERIVED)
6094 return NULL;
6096 if (select_type_stack->selector->ts.type == BT_CLASS
6097 && !select_type_stack->selector->attr.class_ok)
6098 return NULL;
6100 if (ts->type == BT_CHARACTER && ts->u.cl && ts->u.cl->length
6101 && ts->u.cl->length->expr_type == EXPR_CONSTANT)
6102 charlen = gfc_mpz_get_hwi (ts->u.cl->length->value.integer);
6104 if (ts->type != BT_CHARACTER)
6105 sprintf (name, "__tmp_%s_%d", gfc_basic_typename (ts->type),
6106 ts->kind);
6107 else
6108 snprintf (name, sizeof (name), "__tmp_%s_" HOST_WIDE_INT_PRINT_DEC "_%d",
6109 gfc_basic_typename (ts->type), charlen, ts->kind);
6111 gfc_get_sym_tree (name, gfc_current_ns, &tmp, false);
6112 gfc_add_type (tmp->n.sym, ts, NULL);
6114 /* Copy across the array spec to the selector. */
6115 if (select_type_stack->selector->ts.type == BT_CLASS
6116 && (CLASS_DATA (select_type_stack->selector)->attr.dimension
6117 || CLASS_DATA (select_type_stack->selector)->attr.codimension))
6119 tmp->n.sym->attr.pointer = 1;
6120 tmp->n.sym->attr.dimension
6121 = CLASS_DATA (select_type_stack->selector)->attr.dimension;
6122 tmp->n.sym->attr.codimension
6123 = CLASS_DATA (select_type_stack->selector)->attr.codimension;
6124 tmp->n.sym->as
6125 = gfc_copy_array_spec (CLASS_DATA (select_type_stack->selector)->as);
6128 gfc_set_sym_referenced (tmp->n.sym);
6129 gfc_add_flavor (&tmp->n.sym->attr, FL_VARIABLE, name, NULL);
6130 tmp->n.sym->attr.select_type_temporary = 1;
6132 return tmp;
6136 /* Set up a temporary for the current TYPE IS / CLASS IS branch . */
6138 static void
6139 select_type_set_tmp (gfc_typespec *ts)
6141 char name[GFC_MAX_SYMBOL_LEN];
6142 gfc_symtree *tmp = NULL;
6144 if (!ts)
6146 select_type_stack->tmp = NULL;
6147 return;
6150 tmp = select_intrinsic_set_tmp (ts);
6152 if (tmp == NULL)
6154 if (!ts->u.derived)
6155 return;
6157 if (ts->type == BT_CLASS)
6158 sprintf (name, "__tmp_class_%s", ts->u.derived->name);
6159 else
6160 sprintf (name, "__tmp_type_%s", ts->u.derived->name);
6161 gfc_get_sym_tree (name, gfc_current_ns, &tmp, false);
6162 gfc_add_type (tmp->n.sym, ts, NULL);
6164 if (select_type_stack->selector->ts.type == BT_CLASS
6165 && select_type_stack->selector->attr.class_ok)
6167 tmp->n.sym->attr.pointer
6168 = CLASS_DATA (select_type_stack->selector)->attr.class_pointer;
6170 /* Copy across the array spec to the selector. */
6171 if (CLASS_DATA (select_type_stack->selector)->attr.dimension
6172 || CLASS_DATA (select_type_stack->selector)->attr.codimension)
6174 tmp->n.sym->attr.dimension
6175 = CLASS_DATA (select_type_stack->selector)->attr.dimension;
6176 tmp->n.sym->attr.codimension
6177 = CLASS_DATA (select_type_stack->selector)->attr.codimension;
6178 tmp->n.sym->as
6179 = gfc_copy_array_spec (CLASS_DATA (select_type_stack->selector)->as);
6183 gfc_set_sym_referenced (tmp->n.sym);
6184 gfc_add_flavor (&tmp->n.sym->attr, FL_VARIABLE, name, NULL);
6185 tmp->n.sym->attr.select_type_temporary = 1;
6187 if (ts->type == BT_CLASS)
6188 gfc_build_class_symbol (&tmp->n.sym->ts, &tmp->n.sym->attr,
6189 &tmp->n.sym->as);
6192 /* Add an association for it, so the rest of the parser knows it is
6193 an associate-name. The target will be set during resolution. */
6194 tmp->n.sym->assoc = gfc_get_association_list ();
6195 tmp->n.sym->assoc->dangling = 1;
6196 tmp->n.sym->assoc->st = tmp;
6198 select_type_stack->tmp = tmp;
6202 /* Match a SELECT TYPE statement. */
6204 match
6205 gfc_match_select_type (void)
6207 gfc_expr *expr1, *expr2 = NULL;
6208 match m;
6209 char name[GFC_MAX_SYMBOL_LEN];
6210 bool class_array;
6211 gfc_symbol *sym;
6212 gfc_namespace *ns = gfc_current_ns;
6214 m = gfc_match_label ();
6215 if (m == MATCH_ERROR)
6216 return m;
6218 m = gfc_match (" select type ( ");
6219 if (m != MATCH_YES)
6220 return m;
6222 gfc_current_ns = gfc_build_block_ns (ns);
6223 m = gfc_match (" %n => %e", name, &expr2);
6224 if (m == MATCH_YES)
6226 expr1 = gfc_get_expr ();
6227 expr1->expr_type = EXPR_VARIABLE;
6228 expr1->where = expr2->where;
6229 if (gfc_get_sym_tree (name, NULL, &expr1->symtree, false))
6231 m = MATCH_ERROR;
6232 goto cleanup;
6235 sym = expr1->symtree->n.sym;
6236 if (expr2->ts.type == BT_UNKNOWN)
6237 sym->attr.untyped = 1;
6238 else
6239 copy_ts_from_selector_to_associate (expr1, expr2);
6241 sym->attr.flavor = FL_VARIABLE;
6242 sym->attr.referenced = 1;
6243 sym->attr.class_ok = 1;
6245 else
6247 m = gfc_match (" %e ", &expr1);
6248 if (m != MATCH_YES)
6250 std::swap (ns, gfc_current_ns);
6251 gfc_free_namespace (ns);
6252 return m;
6256 m = gfc_match (" )%t");
6257 if (m != MATCH_YES)
6259 gfc_error ("parse error in SELECT TYPE statement at %C");
6260 goto cleanup;
6263 /* This ghastly expression seems to be needed to distinguish a CLASS
6264 array, which can have a reference, from other expressions that
6265 have references, such as derived type components, and are not
6266 allowed by the standard.
6267 TODO: see if it is sufficient to exclude component and substring
6268 references. */
6269 class_array = (expr1->expr_type == EXPR_VARIABLE
6270 && expr1->ts.type == BT_CLASS
6271 && CLASS_DATA (expr1)
6272 && (strcmp (CLASS_DATA (expr1)->name, "_data") == 0)
6273 && (CLASS_DATA (expr1)->attr.dimension
6274 || CLASS_DATA (expr1)->attr.codimension)
6275 && expr1->ref
6276 && expr1->ref->type == REF_ARRAY
6277 && expr1->ref->u.ar.type == AR_FULL
6278 && expr1->ref->next == NULL);
6280 /* Check for F03:C811 (F08:C835). */
6281 if (!expr2 && (expr1->expr_type != EXPR_VARIABLE
6282 || (!class_array && expr1->ref != NULL)))
6284 gfc_error ("Selector in SELECT TYPE at %C is not a named variable; "
6285 "use associate-name=>");
6286 m = MATCH_ERROR;
6287 goto cleanup;
6290 new_st.op = EXEC_SELECT_TYPE;
6291 new_st.expr1 = expr1;
6292 new_st.expr2 = expr2;
6293 new_st.ext.block.ns = gfc_current_ns;
6295 select_type_push (expr1->symtree->n.sym);
6296 gfc_current_ns = ns;
6298 return MATCH_YES;
6300 cleanup:
6301 gfc_free_expr (expr1);
6302 gfc_free_expr (expr2);
6303 gfc_undo_symbols ();
6304 std::swap (ns, gfc_current_ns);
6305 gfc_free_namespace (ns);
6306 return m;
6310 /* Match a CASE statement. */
6312 match
6313 gfc_match_case (void)
6315 gfc_case *c, *head, *tail;
6316 match m;
6318 head = tail = NULL;
6320 if (gfc_current_state () != COMP_SELECT)
6322 gfc_error ("Unexpected CASE statement at %C");
6323 return MATCH_ERROR;
6326 if (gfc_match ("% default") == MATCH_YES)
6328 m = match_case_eos ();
6329 if (m == MATCH_NO)
6330 goto syntax;
6331 if (m == MATCH_ERROR)
6332 goto cleanup;
6334 new_st.op = EXEC_SELECT;
6335 c = gfc_get_case ();
6336 c->where = gfc_current_locus;
6337 new_st.ext.block.case_list = c;
6338 return MATCH_YES;
6341 if (gfc_match_char ('(') != MATCH_YES)
6342 goto syntax;
6344 for (;;)
6346 if (match_case_selector (&c) == MATCH_ERROR)
6347 goto cleanup;
6349 if (head == NULL)
6350 head = c;
6351 else
6352 tail->next = c;
6354 tail = c;
6356 if (gfc_match_char (')') == MATCH_YES)
6357 break;
6358 if (gfc_match_char (',') != MATCH_YES)
6359 goto syntax;
6362 m = match_case_eos ();
6363 if (m == MATCH_NO)
6364 goto syntax;
6365 if (m == MATCH_ERROR)
6366 goto cleanup;
6368 new_st.op = EXEC_SELECT;
6369 new_st.ext.block.case_list = head;
6371 return MATCH_YES;
6373 syntax:
6374 gfc_error ("Syntax error in CASE specification at %C");
6376 cleanup:
6377 gfc_free_case_list (head); /* new_st is cleaned up in parse.c. */
6378 return MATCH_ERROR;
6382 /* Match a TYPE IS statement. */
6384 match
6385 gfc_match_type_is (void)
6387 gfc_case *c = NULL;
6388 match m;
6390 if (gfc_current_state () != COMP_SELECT_TYPE)
6392 gfc_error ("Unexpected TYPE IS statement at %C");
6393 return MATCH_ERROR;
6396 if (gfc_match_char ('(') != MATCH_YES)
6397 goto syntax;
6399 c = gfc_get_case ();
6400 c->where = gfc_current_locus;
6402 m = gfc_match_type_spec (&c->ts);
6403 if (m == MATCH_NO)
6404 goto syntax;
6405 if (m == MATCH_ERROR)
6406 goto cleanup;
6408 if (gfc_match_char (')') != MATCH_YES)
6409 goto syntax;
6411 m = match_case_eos ();
6412 if (m == MATCH_NO)
6413 goto syntax;
6414 if (m == MATCH_ERROR)
6415 goto cleanup;
6417 new_st.op = EXEC_SELECT_TYPE;
6418 new_st.ext.block.case_list = c;
6420 if (c->ts.type == BT_DERIVED && c->ts.u.derived
6421 && (c->ts.u.derived->attr.sequence
6422 || c->ts.u.derived->attr.is_bind_c))
6424 gfc_error ("The type-spec shall not specify a sequence derived "
6425 "type or a type with the BIND attribute in SELECT "
6426 "TYPE at %C [F2003:C815]");
6427 return MATCH_ERROR;
6430 if (c->ts.type == BT_DERIVED
6431 && c->ts.u.derived && c->ts.u.derived->attr.pdt_type
6432 && gfc_spec_list_type (type_param_spec_list, c->ts.u.derived)
6433 != SPEC_ASSUMED)
6435 gfc_error ("All the LEN type parameters in the TYPE IS statement "
6436 "at %C must be ASSUMED");
6437 return MATCH_ERROR;
6440 /* Create temporary variable. */
6441 select_type_set_tmp (&c->ts);
6443 return MATCH_YES;
6445 syntax:
6446 gfc_error ("Syntax error in TYPE IS specification at %C");
6448 cleanup:
6449 if (c != NULL)
6450 gfc_free_case_list (c); /* new_st is cleaned up in parse.c. */
6451 return MATCH_ERROR;
6455 /* Match a CLASS IS or CLASS DEFAULT statement. */
6457 match
6458 gfc_match_class_is (void)
6460 gfc_case *c = NULL;
6461 match m;
6463 if (gfc_current_state () != COMP_SELECT_TYPE)
6464 return MATCH_NO;
6466 if (gfc_match ("% default") == MATCH_YES)
6468 m = match_case_eos ();
6469 if (m == MATCH_NO)
6470 goto syntax;
6471 if (m == MATCH_ERROR)
6472 goto cleanup;
6474 new_st.op = EXEC_SELECT_TYPE;
6475 c = gfc_get_case ();
6476 c->where = gfc_current_locus;
6477 c->ts.type = BT_UNKNOWN;
6478 new_st.ext.block.case_list = c;
6479 select_type_set_tmp (NULL);
6480 return MATCH_YES;
6483 m = gfc_match ("% is");
6484 if (m == MATCH_NO)
6485 goto syntax;
6486 if (m == MATCH_ERROR)
6487 goto cleanup;
6489 if (gfc_match_char ('(') != MATCH_YES)
6490 goto syntax;
6492 c = gfc_get_case ();
6493 c->where = gfc_current_locus;
6495 m = match_derived_type_spec (&c->ts);
6496 if (m == MATCH_NO)
6497 goto syntax;
6498 if (m == MATCH_ERROR)
6499 goto cleanup;
6501 if (c->ts.type == BT_DERIVED)
6502 c->ts.type = BT_CLASS;
6504 if (gfc_match_char (')') != MATCH_YES)
6505 goto syntax;
6507 m = match_case_eos ();
6508 if (m == MATCH_NO)
6509 goto syntax;
6510 if (m == MATCH_ERROR)
6511 goto cleanup;
6513 new_st.op = EXEC_SELECT_TYPE;
6514 new_st.ext.block.case_list = c;
6516 /* Create temporary variable. */
6517 select_type_set_tmp (&c->ts);
6519 return MATCH_YES;
6521 syntax:
6522 gfc_error ("Syntax error in CLASS IS specification at %C");
6524 cleanup:
6525 if (c != NULL)
6526 gfc_free_case_list (c); /* new_st is cleaned up in parse.c. */
6527 return MATCH_ERROR;
6531 /********************* WHERE subroutines ********************/
6533 /* Match the rest of a simple WHERE statement that follows an IF statement.
6536 static match
6537 match_simple_where (void)
6539 gfc_expr *expr;
6540 gfc_code *c;
6541 match m;
6543 m = gfc_match (" ( %e )", &expr);
6544 if (m != MATCH_YES)
6545 return m;
6547 m = gfc_match_assignment ();
6548 if (m == MATCH_NO)
6549 goto syntax;
6550 if (m == MATCH_ERROR)
6551 goto cleanup;
6553 if (gfc_match_eos () != MATCH_YES)
6554 goto syntax;
6556 c = gfc_get_code (EXEC_WHERE);
6557 c->expr1 = expr;
6559 c->next = XCNEW (gfc_code);
6560 *c->next = new_st;
6561 c->next->loc = gfc_current_locus;
6562 gfc_clear_new_st ();
6564 new_st.op = EXEC_WHERE;
6565 new_st.block = c;
6567 return MATCH_YES;
6569 syntax:
6570 gfc_syntax_error (ST_WHERE);
6572 cleanup:
6573 gfc_free_expr (expr);
6574 return MATCH_ERROR;
6578 /* Match a WHERE statement. */
6580 match
6581 gfc_match_where (gfc_statement *st)
6583 gfc_expr *expr;
6584 match m0, m;
6585 gfc_code *c;
6587 m0 = gfc_match_label ();
6588 if (m0 == MATCH_ERROR)
6589 return m0;
6591 m = gfc_match (" where ( %e )", &expr);
6592 if (m != MATCH_YES)
6593 return m;
6595 if (gfc_match_eos () == MATCH_YES)
6597 *st = ST_WHERE_BLOCK;
6598 new_st.op = EXEC_WHERE;
6599 new_st.expr1 = expr;
6600 return MATCH_YES;
6603 m = gfc_match_assignment ();
6604 if (m == MATCH_NO)
6605 gfc_syntax_error (ST_WHERE);
6607 if (m != MATCH_YES)
6609 gfc_free_expr (expr);
6610 return MATCH_ERROR;
6613 /* We've got a simple WHERE statement. */
6614 *st = ST_WHERE;
6615 c = gfc_get_code (EXEC_WHERE);
6616 c->expr1 = expr;
6618 /* Put in the assignment. It will not be processed by add_statement, so we
6619 need to copy the location here. */
6621 c->next = XCNEW (gfc_code);
6622 *c->next = new_st;
6623 c->next->loc = gfc_current_locus;
6624 gfc_clear_new_st ();
6626 new_st.op = EXEC_WHERE;
6627 new_st.block = c;
6629 return MATCH_YES;
6633 /* Match an ELSEWHERE statement. We leave behind a WHERE node in
6634 new_st if successful. */
6636 match
6637 gfc_match_elsewhere (void)
6639 char name[GFC_MAX_SYMBOL_LEN + 1];
6640 gfc_expr *expr;
6641 match m;
6643 if (gfc_current_state () != COMP_WHERE)
6645 gfc_error ("ELSEWHERE statement at %C not enclosed in WHERE block");
6646 return MATCH_ERROR;
6649 expr = NULL;
6651 if (gfc_match_char ('(') == MATCH_YES)
6653 m = gfc_match_expr (&expr);
6654 if (m == MATCH_NO)
6655 goto syntax;
6656 if (m == MATCH_ERROR)
6657 return MATCH_ERROR;
6659 if (gfc_match_char (')') != MATCH_YES)
6660 goto syntax;
6663 if (gfc_match_eos () != MATCH_YES)
6665 /* Only makes sense if we have a where-construct-name. */
6666 if (!gfc_current_block ())
6668 m = MATCH_ERROR;
6669 goto cleanup;
6671 /* Better be a name at this point. */
6672 m = gfc_match_name (name);
6673 if (m == MATCH_NO)
6674 goto syntax;
6675 if (m == MATCH_ERROR)
6676 goto cleanup;
6678 if (gfc_match_eos () != MATCH_YES)
6679 goto syntax;
6681 if (strcmp (name, gfc_current_block ()->name) != 0)
6683 gfc_error ("Label %qs at %C doesn't match WHERE label %qs",
6684 name, gfc_current_block ()->name);
6685 goto cleanup;
6689 new_st.op = EXEC_WHERE;
6690 new_st.expr1 = expr;
6691 return MATCH_YES;
6693 syntax:
6694 gfc_syntax_error (ST_ELSEWHERE);
6696 cleanup:
6697 gfc_free_expr (expr);
6698 return MATCH_ERROR;