Branch data Line data Source code
1 : : /* Matching subroutines in all sizes, shapes and colors.
2 : : Copyright (C) 2000-2024 Free Software Foundation, Inc.
3 : : Contributed by Andy Vaught
4 : :
5 : : This file is part of GCC.
6 : :
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.
11 : :
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.
16 : :
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/>. */
20 : :
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"
28 : :
29 : : int gfc_matching_ptr_assignment = 0;
30 : : int gfc_matching_procptr_assignment = 0;
31 : : bool gfc_matching_prefix = false;
32 : :
33 : : /* Stack of SELECT TYPE statements. */
34 : : gfc_select_type_stack *select_type_stack = NULL;
35 : :
36 : : /* List of type parameter expressions. */
37 : : gfc_actual_arglist *type_param_spec_list;
38 : :
39 : : /* For debugging and diagnostic purposes. Return the textual representation
40 : : of the intrinsic operator OP. */
41 : : const char *
42 : 7813771 : gfc_op2string (gfc_intrinsic_op op)
43 : : {
44 : 7813771 : switch (op)
45 : : {
46 : : case INTRINSIC_UPLUS:
47 : : case INTRINSIC_PLUS:
48 : : return "+";
49 : :
50 : 600864 : case INTRINSIC_UMINUS:
51 : 600864 : case INTRINSIC_MINUS:
52 : 600864 : return "-";
53 : :
54 : 300339 : case INTRINSIC_POWER:
55 : 300339 : return "**";
56 : 300339 : case INTRINSIC_CONCAT:
57 : 300339 : return "//";
58 : 300782 : case INTRINSIC_TIMES:
59 : 300782 : return "*";
60 : 300340 : case INTRINSIC_DIVIDE:
61 : 300340 : return "/";
62 : :
63 : 300457 : case INTRINSIC_AND:
64 : 300457 : return ".and.";
65 : 301148 : case INTRINSIC_OR:
66 : 301148 : return ".or.";
67 : 300448 : case INTRINSIC_EQV:
68 : 300448 : return ".eqv.";
69 : 300447 : case INTRINSIC_NEQV:
70 : 300447 : return ".neqv.";
71 : :
72 : 300360 : case INTRINSIC_EQ_OS:
73 : 300360 : return ".eq.";
74 : 300348 : case INTRINSIC_EQ:
75 : 300348 : return "==";
76 : 300360 : case INTRINSIC_NE_OS:
77 : 300360 : return ".ne.";
78 : 300348 : case INTRINSIC_NE:
79 : 300348 : return "/=";
80 : 300351 : case INTRINSIC_GE_OS:
81 : 300351 : return ".ge.";
82 : 300345 : case INTRINSIC_GE:
83 : 300345 : return ">=";
84 : 300352 : case INTRINSIC_LE_OS:
85 : 300352 : return ".le.";
86 : 300345 : case INTRINSIC_LE:
87 : 300345 : return "<=";
88 : 300397 : case INTRINSIC_LT_OS:
89 : 300397 : return ".lt.";
90 : 300369 : case INTRINSIC_LT:
91 : 300369 : return "<";
92 : 300360 : case INTRINSIC_GT_OS:
93 : 300360 : return ".gt.";
94 : 300345 : case INTRINSIC_GT:
95 : 300345 : return ">";
96 : 300338 : case INTRINSIC_NOT:
97 : 300338 : return ".not.";
98 : :
99 : 753 : case INTRINSIC_ASSIGN:
100 : 753 : return "=";
101 : :
102 : 300338 : case INTRINSIC_PARENTHESES:
103 : 300338 : return "parens";
104 : :
105 : 1 : case INTRINSIC_NONE:
106 : 1 : return "none";
107 : :
108 : : /* DTIO */
109 : 0 : case INTRINSIC_FORMATTED:
110 : 0 : return "formatted";
111 : 0 : case INTRINSIC_UNFORMATTED:
112 : 0 : return "unformatted";
113 : :
114 : 0 : default:
115 : 0 : break;
116 : : }
117 : :
118 : 0 : gfc_internal_error ("gfc_op2string(): Bad code");
119 : : /* Not reached. */
120 : : }
121 : :
122 : :
123 : : /******************** Generic matching subroutines ************************/
124 : :
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"
148 : : */
149 : :
150 : : match
151 : 6786582 : gfc_match_member_sep(gfc_symbol *sym)
152 : : {
153 : 6786582 : char name[GFC_MAX_SYMBOL_LEN + 1];
154 : 6786582 : locus dot_loc, start_loc;
155 : 6786582 : gfc_intrinsic_op iop;
156 : 6786582 : match m;
157 : 6786582 : gfc_symbol *tsym;
158 : 6786582 : gfc_component *c = NULL;
159 : :
160 : : /* What a relief: '%' is an unambiguous member separator. */
161 : 6786582 : if (gfc_match_char ('%') == MATCH_YES)
162 : : return MATCH_YES;
163 : :
164 : : /* Beware ye who enter here. */
165 : 6631462 : if (!flag_dec_structure || !sym)
166 : : return MATCH_NO;
167 : :
168 : 66707 : tsym = NULL;
169 : :
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 : 66707 : if (gfc_fl_struct (sym->attr.flavor))
174 : : tsym = sym;
175 : 66307 : else if (gfc_bt_struct (sym->ts.type))
176 : 2726 : tsym = sym->ts.u.derived;
177 : :
178 : 66707 : iop = INTRINSIC_NONE;
179 : 66707 : name[0] = '\0';
180 : 66707 : m = MATCH_NO;
181 : :
182 : : /* If we have to reject come back here later. */
183 : 66707 : start_loc = gfc_current_locus;
184 : :
185 : : /* Look for a component access next. */
186 : 66707 : if (gfc_match_char ('.') != MATCH_YES)
187 : : return MATCH_NO;
188 : :
189 : : /* If we accept, come back here. */
190 : 7865 : dot_loc = gfc_current_locus;
191 : :
192 : : /* Try to match a symbol name following the dot. */
193 : 7865 : if (gfc_match_name (name) != MATCH_YES)
194 : : {
195 : 1 : gfc_error ("Expected structure component or operator name "
196 : : "after %<.%> at %C");
197 : 1 : goto error;
198 : : }
199 : :
200 : : /* If no dot follows we have "x.y" which should be a component access. */
201 : 7864 : if (gfc_match_char ('.') != MATCH_YES)
202 : 1658 : goto yes;
203 : :
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. */
206 : :
207 : : /* First use any user-defined operators ".y." */
208 : 6206 : if (gfc_find_uop (name, sym->ns) != NULL)
209 : 6 : goto no;
210 : :
211 : : /* Match accesses to existing derived-type components for
212 : : derived-type vars: "x.y.z" = (x->y)->z */
213 : 6200 : c = gfc_find_component(tsym, name, false, true, NULL);
214 : 6200 : if (c && (gfc_bt_struct (c->ts.type) || c->ts.type == BT_CLASS))
215 : 314 : goto yes;
216 : :
217 : : /* If y is not a component or has no members, try intrinsic operators. */
218 : 5886 : gfc_current_locus = start_loc;
219 : 5886 : if (gfc_match_intrinsic_op (&iop) != MATCH_YES)
220 : : {
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 : 877 : if (c)
225 : 877 : goto yes;
226 : :
227 : 0 : gfc_error ("%qs is neither a defined operator nor a "
228 : : "structure component in dotted string at %C", name);
229 : 0 : goto error;
230 : : }
231 : :
232 : : /* .y. is an intrinsic operator, overriding any possible member access. */
233 : 5009 : goto no;
234 : :
235 : : /* Return keeping the current locus consistent with the match result. */
236 : : error:
237 : : m = MATCH_ERROR;
238 : 5016 : no:
239 : 5016 : gfc_current_locus = start_loc;
240 : 5016 : return m;
241 : 2849 : yes:
242 : 2849 : gfc_current_locus = dot_loc;
243 : 2849 : return MATCH_YES;
244 : : }
245 : :
246 : :
247 : : /* This function scans the current statement counting the opened and closed
248 : : parenthesis to make sure they are balanced. */
249 : :
250 : : match
251 : 329268 : gfc_match_parens (void)
252 : : {
253 : 329268 : locus old_loc, where;
254 : 329268 : int count;
255 : 329268 : gfc_instring instring;
256 : 329268 : gfc_char_t c, quote;
257 : :
258 : 329268 : old_loc = gfc_current_locus;
259 : 329268 : count = 0;
260 : 329268 : instring = NONSTRING;
261 : 329268 : quote = ' ';
262 : :
263 : 12466865 : for (;;)
264 : : {
265 : 12466865 : if (count > 0)
266 : 6833023 : where = gfc_current_locus;
267 : 12466865 : c = gfc_next_char_literal (instring);
268 : 12466865 : if (c == '\n')
269 : : break;
270 : 12137597 : if (quote == ' ' && ((c == '\'') || (c == '"')))
271 : : {
272 : 56107 : quote = c;
273 : 56107 : instring = INSTRING_WARN;
274 : 56107 : continue;
275 : : }
276 : 12081490 : if (quote != ' ' && c == quote)
277 : : {
278 : 56107 : quote = ' ';
279 : 56107 : instring = NONSTRING;
280 : 56107 : continue;
281 : : }
282 : :
283 : 12025383 : if (c == '(' && quote == ' ')
284 : : {
285 : 605137 : count++;
286 : : }
287 : 12025383 : if (c == ')' && quote == ' ')
288 : : {
289 : 605131 : count--;
290 : 605131 : where = gfc_current_locus;
291 : : }
292 : : }
293 : :
294 : 329268 : gfc_current_locus = old_loc;
295 : :
296 : 329268 : if (count != 0)
297 : : {
298 : 10 : gfc_error ("Missing %qs in statement at or before %L",
299 : : count > 0? ")":"(", &where);
300 : 10 : return MATCH_ERROR;
301 : : }
302 : :
303 : : return MATCH_YES;
304 : : }
305 : :
306 : :
307 : : /* See if the next character is a special character that has
308 : : escaped by a \ via the -fbackslash option. */
309 : :
310 : : match
311 : 12228 : gfc_match_special_char (gfc_char_t *res)
312 : : {
313 : 12228 : int len, i;
314 : 12228 : gfc_char_t c, n;
315 : 12228 : match m;
316 : :
317 : 12228 : m = MATCH_YES;
318 : :
319 : 12228 : switch ((c = gfc_next_char_literal (INSTRING_WARN)))
320 : : {
321 : 0 : case 'a':
322 : 0 : *res = '\a';
323 : 0 : break;
324 : 372 : case 'b':
325 : 372 : *res = '\b';
326 : 372 : break;
327 : 96 : case 't':
328 : 96 : *res = '\t';
329 : 96 : break;
330 : 0 : case 'f':
331 : 0 : *res = '\f';
332 : 0 : break;
333 : 36 : case 'n':
334 : 36 : *res = '\n';
335 : 36 : break;
336 : 96 : case 'r':
337 : 96 : *res = '\r';
338 : 96 : break;
339 : 0 : case 'v':
340 : 0 : *res = '\v';
341 : 0 : break;
342 : 48 : case '\\':
343 : 48 : *res = '\\';
344 : 48 : break;
345 : 2644 : case '0':
346 : 2644 : *res = '\0';
347 : 2644 : break;
348 : :
349 : 8936 : case 'x':
350 : 8936 : case 'u':
351 : 8936 : case 'U':
352 : : /* Hexadecimal form of wide characters. */
353 : 8936 : len = (c == 'x' ? 2 : (c == 'u' ? 4 : 8));
354 : 8936 : n = 0;
355 : 34168 : for (i = 0; i < len; i++)
356 : : {
357 : 25232 : char buf[2] = { '\0', '\0' };
358 : :
359 : 25232 : c = gfc_next_char_literal (INSTRING_WARN);
360 : 25232 : if (!gfc_wide_fits_in_byte (c)
361 : 25232 : || !gfc_check_digit ((unsigned char) c, 16))
362 : 0 : return MATCH_NO;
363 : :
364 : 25232 : buf[0] = (unsigned char) c;
365 : 25232 : n = n << 4;
366 : 25232 : n += strtol (buf, NULL, 16);
367 : : }
368 : 8936 : *res = n;
369 : 8936 : break;
370 : :
371 : : default:
372 : : /* Unknown backslash codes are simply not expanded. */
373 : : m = MATCH_NO;
374 : : break;
375 : : }
376 : :
377 : : return m;
378 : : }
379 : :
380 : :
381 : : /* In free form, match at least one space. Always matches in fixed
382 : : form. */
383 : :
384 : : match
385 : 397002 : gfc_match_space (void)
386 : : {
387 : 397002 : locus old_loc;
388 : 397002 : char c;
389 : :
390 : 397002 : if (gfc_current_form == FORM_FIXED)
391 : : return MATCH_YES;
392 : :
393 : 379143 : old_loc = gfc_current_locus;
394 : :
395 : 379143 : c = gfc_next_ascii_char ();
396 : 379143 : if (!gfc_is_whitespace (c))
397 : : {
398 : 15540 : gfc_current_locus = old_loc;
399 : 15540 : return MATCH_NO;
400 : : }
401 : :
402 : 363603 : gfc_gobble_whitespace ();
403 : :
404 : 363603 : return MATCH_YES;
405 : : }
406 : :
407 : :
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. */
411 : :
412 : : match
413 : 3045343 : gfc_match_eos (void)
414 : : {
415 : 3045343 : locus old_loc;
416 : 3045343 : int flag;
417 : 3045343 : char c;
418 : :
419 : 3045343 : flag = 0;
420 : :
421 : 3109367 : for (;;)
422 : : {
423 : 3077355 : old_loc = gfc_current_locus;
424 : 3077355 : gfc_gobble_whitespace ();
425 : :
426 : 3077355 : c = gfc_next_ascii_char ();
427 : 3077355 : switch (c)
428 : : {
429 : 0 : case '!':
430 : 0 : do
431 : : {
432 : 0 : c = gfc_next_ascii_char ();
433 : : }
434 : 0 : while (c != '\n');
435 : :
436 : : /* Fall through. */
437 : :
438 : : case '\n':
439 : : return MATCH_YES;
440 : :
441 : 32012 : case ';':
442 : 32012 : flag = 1;
443 : 32012 : continue;
444 : : }
445 : :
446 : 1940988 : break;
447 : : }
448 : :
449 : 1940988 : gfc_current_locus = old_loc;
450 : 1940988 : return (flag) ? MATCH_YES : MATCH_NO;
451 : : }
452 : :
453 : :
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.
458 : : When gobble_ws is false, do not skip over leading blanks. */
459 : :
460 : : match
461 : 653904 : gfc_match_small_literal_int (int *value, int *cnt, bool gobble_ws)
462 : : {
463 : 653904 : locus old_loc;
464 : 653904 : char c;
465 : 653904 : int i, j;
466 : :
467 : 653904 : old_loc = gfc_current_locus;
468 : :
469 : 653904 : *value = -1;
470 : 653904 : if (gobble_ws)
471 : 278381 : gfc_gobble_whitespace ();
472 : 653904 : c = gfc_next_ascii_char ();
473 : 653904 : if (cnt)
474 : 274529 : *cnt = 0;
475 : :
476 : 653904 : if (!ISDIGIT (c))
477 : : {
478 : 356582 : gfc_current_locus = old_loc;
479 : 356582 : return MATCH_NO;
480 : : }
481 : :
482 : 297322 : i = c - '0';
483 : 297322 : j = 1;
484 : :
485 : 366131 : for (;;)
486 : : {
487 : 366131 : old_loc = gfc_current_locus;
488 : 366131 : c = gfc_next_ascii_char ();
489 : :
490 : 366131 : if (!ISDIGIT (c))
491 : : break;
492 : :
493 : 68809 : i = 10 * i + c - '0';
494 : 68809 : j++;
495 : :
496 : 68809 : if (i > 99999999)
497 : : {
498 : 0 : gfc_error ("Integer too large at %C");
499 : 0 : return MATCH_ERROR;
500 : : }
501 : : }
502 : :
503 : 297322 : gfc_current_locus = old_loc;
504 : :
505 : 297322 : *value = i;
506 : 297322 : if (cnt)
507 : 11021 : *cnt = j;
508 : : return MATCH_YES;
509 : : }
510 : :
511 : :
512 : : /* Match a small, constant integer expression, like in a kind
513 : : statement. On MATCH_YES, 'value' is set. */
514 : :
515 : : match
516 : 177796 : gfc_match_small_int (int *value)
517 : : {
518 : 177796 : gfc_expr *expr;
519 : 177796 : match m;
520 : 177796 : int i;
521 : :
522 : 177796 : m = gfc_match_expr (&expr);
523 : 177796 : if (m != MATCH_YES)
524 : : return m;
525 : :
526 : 177796 : if (gfc_extract_int (expr, &i, 1))
527 : 872 : m = MATCH_ERROR;
528 : 177796 : gfc_free_expr (expr);
529 : :
530 : 177796 : *value = i;
531 : 177796 : return m;
532 : : }
533 : :
534 : :
535 : : /* Matches a statement label. Uses gfc_match_small_literal_int() to
536 : : do most of the work. */
537 : :
538 : : match
539 : 274525 : gfc_match_st_label (gfc_st_label **label)
540 : : {
541 : 274525 : locus old_loc;
542 : 274525 : match m;
543 : 274525 : int i, cnt;
544 : :
545 : 274525 : old_loc = gfc_current_locus;
546 : :
547 : 274525 : m = gfc_match_small_literal_int (&i, &cnt);
548 : 274525 : if (m != MATCH_YES)
549 : : return m;
550 : :
551 : 11019 : if (cnt > 5)
552 : : {
553 : 2 : gfc_error ("Too many digits in statement label at %C");
554 : 2 : goto cleanup;
555 : : }
556 : :
557 : 11017 : if (i == 0)
558 : : {
559 : 2 : gfc_error ("Statement label at %C is zero");
560 : 2 : goto cleanup;
561 : : }
562 : :
563 : 11015 : *label = gfc_get_st_label (i);
564 : 11015 : return MATCH_YES;
565 : :
566 : 4 : cleanup:
567 : :
568 : 4 : gfc_current_locus = old_loc;
569 : 4 : return MATCH_ERROR;
570 : : }
571 : :
572 : :
573 : : /* Match and validate a label associated with a named IF, DO or SELECT
574 : : statement. If the symbol does not have the label attribute, we add
575 : : it. We also make sure the symbol does not refer to another
576 : : (active) block. A matched label is pointed to by gfc_new_block. */
577 : :
578 : : static match
579 : 4836828 : gfc_match_label (void)
580 : : {
581 : 4836828 : char name[GFC_MAX_SYMBOL_LEN + 1];
582 : 4836828 : match m;
583 : :
584 : 4836828 : gfc_new_block = NULL;
585 : :
586 : 4836828 : m = gfc_match (" %n :", name);
587 : 4836828 : if (m != MATCH_YES)
588 : : return m;
589 : :
590 : 98127 : if (gfc_get_symbol (name, NULL, &gfc_new_block))
591 : : {
592 : 0 : gfc_error ("Label name %qs at %C is ambiguous", name);
593 : 0 : return MATCH_ERROR;
594 : : }
595 : :
596 : 98127 : if (gfc_new_block->attr.flavor == FL_LABEL)
597 : : {
598 : 70 : gfc_error ("Duplicate construct label %qs at %C", name);
599 : 70 : return MATCH_ERROR;
600 : : }
601 : :
602 : 98057 : if (!gfc_add_flavor (&gfc_new_block->attr, FL_LABEL,
603 : : gfc_new_block->name, NULL))
604 : : return MATCH_ERROR;
605 : :
606 : : return MATCH_YES;
607 : : }
608 : :
609 : :
610 : : /* See if the current input looks like a name of some sort. Modifies
611 : : the passed buffer which must be GFC_MAX_SYMBOL_LEN+1 bytes long.
612 : : Note that options.cc restricts max_identifier_length to not more
613 : : than GFC_MAX_SYMBOL_LEN.
614 : : When gobble_ws is false, do not skip over leading blanks. */
615 : :
616 : : match
617 : 24768927 : gfc_match_name (char *buffer, bool gobble_ws)
618 : : {
619 : 24768927 : locus old_loc;
620 : 24768927 : int i;
621 : 24768927 : char c;
622 : :
623 : 24768927 : old_loc = gfc_current_locus;
624 : 24768927 : if (gobble_ws)
625 : 24676357 : gfc_gobble_whitespace ();
626 : :
627 : 24768927 : c = gfc_next_ascii_char ();
628 : 24768927 : if (!(ISALPHA (c) || (c == '_' && flag_allow_leading_underscore)))
629 : : {
630 : : /* Special cases for unary minus and plus, which allows for a sensible
631 : : error message for code of the form 'c = exp(-a*b) )' where an
632 : : extra ')' appears at the end of statement. */
633 : 1474475 : if (!gfc_error_flag_test () && c != '(' && c != '-' && c != '+')
634 : 375866 : gfc_error ("Invalid character in name at %C");
635 : 1474475 : gfc_current_locus = old_loc;
636 : 1474475 : return MATCH_NO;
637 : : }
638 : :
639 : : i = 0;
640 : :
641 : 107288895 : do
642 : : {
643 : 107288895 : buffer[i++] = c;
644 : :
645 : 107288895 : if (i > gfc_option.max_identifier_length)
646 : : {
647 : 0 : gfc_error ("Name at %C is too long");
648 : 0 : return MATCH_ERROR;
649 : : }
650 : :
651 : 107288895 : old_loc = gfc_current_locus;
652 : 107288895 : c = gfc_next_ascii_char ();
653 : : }
654 : 107288895 : while (ISALNUM (c) || c == '_' || (flag_dollar_ok && c == '$'));
655 : :
656 : 23294452 : if (c == '$' && !flag_dollar_ok)
657 : : {
658 : 2 : gfc_fatal_error ("Invalid character %<$%> at %L. Use %<-fdollar-ok%> to "
659 : : "allow it as an extension", &old_loc);
660 : : return MATCH_ERROR;
661 : : }
662 : :
663 : 23294450 : buffer[i] = '\0';
664 : 23294450 : gfc_current_locus = old_loc;
665 : :
666 : 23294450 : return MATCH_YES;
667 : : }
668 : :
669 : :
670 : : /* Match a symbol on the input. Modifies the pointer to the symbol
671 : : pointer if successful. */
672 : :
673 : : match
674 : 3768210 : gfc_match_sym_tree (gfc_symtree **matched_symbol, int host_assoc)
675 : : {
676 : 3768210 : char buffer[GFC_MAX_SYMBOL_LEN + 1];
677 : 3768210 : match m;
678 : :
679 : 3768210 : m = gfc_match_name (buffer);
680 : 3768209 : if (m != MATCH_YES)
681 : : return m;
682 : :
683 : 3768054 : if (host_assoc)
684 : 2271680 : return (gfc_get_ha_sym_tree (buffer, matched_symbol))
685 : 2271680 : ? MATCH_ERROR : MATCH_YES;
686 : :
687 : 1496374 : if (gfc_get_sym_tree (buffer, NULL, matched_symbol, false))
688 : : return MATCH_ERROR;
689 : :
690 : : return MATCH_YES;
691 : : }
692 : :
693 : :
694 : : match
695 : 1325184 : gfc_match_symbol (gfc_symbol **matched_symbol, int host_assoc)
696 : : {
697 : 1325184 : gfc_symtree *st;
698 : 1325184 : match m;
699 : :
700 : 1325184 : m = gfc_match_sym_tree (&st, host_assoc);
701 : :
702 : 1325184 : if (m == MATCH_YES)
703 : : {
704 : 1325021 : if (st)
705 : 1325021 : *matched_symbol = st->n.sym;
706 : : else
707 : 0 : *matched_symbol = NULL;
708 : : }
709 : : else
710 : 163 : *matched_symbol = NULL;
711 : 1325184 : return m;
712 : : }
713 : :
714 : :
715 : : /* Match an intrinsic operator. Returns an INTRINSIC enum. While matching,
716 : : we always find INTRINSIC_PLUS before INTRINSIC_UPLUS. We work around this
717 : : in matchexp.cc. */
718 : :
719 : : match
720 : 68291738 : gfc_match_intrinsic_op (gfc_intrinsic_op *result)
721 : : {
722 : 68291738 : locus orig_loc = gfc_current_locus;
723 : 68291738 : char ch;
724 : :
725 : 68291738 : gfc_gobble_whitespace ();
726 : 68291738 : ch = gfc_next_ascii_char ();
727 : 68291738 : switch (ch)
728 : : {
729 : 329498 : case '+':
730 : : /* Matched "+". */
731 : 329498 : *result = INTRINSIC_PLUS;
732 : 329498 : return MATCH_YES;
733 : :
734 : 514399 : case '-':
735 : : /* Matched "-". */
736 : 514399 : *result = INTRINSIC_MINUS;
737 : 514399 : return MATCH_YES;
738 : :
739 : 255857 : case '=':
740 : 255857 : if (gfc_next_ascii_char () == '=')
741 : : {
742 : : /* Matched "==". */
743 : 147218 : *result = INTRINSIC_EQ;
744 : 147218 : return MATCH_YES;
745 : : }
746 : : break;
747 : :
748 : 77870 : case '<':
749 : 77870 : if (gfc_peek_ascii_char () == '=')
750 : : {
751 : : /* Matched "<=". */
752 : 33833 : gfc_next_ascii_char ();
753 : 33833 : *result = INTRINSIC_LE;
754 : 33833 : return MATCH_YES;
755 : : }
756 : : /* Matched "<". */
757 : 44037 : *result = INTRINSIC_LT;
758 : 44037 : return MATCH_YES;
759 : :
760 : 270305 : case '>':
761 : 270305 : if (gfc_peek_ascii_char () == '=')
762 : : {
763 : : /* Matched ">=". */
764 : 13869 : gfc_next_ascii_char ();
765 : 13869 : *result = INTRINSIC_GE;
766 : 13869 : return MATCH_YES;
767 : : }
768 : : /* Matched ">". */
769 : 256436 : *result = INTRINSIC_GT;
770 : 256436 : return MATCH_YES;
771 : :
772 : 197140 : case '*':
773 : 197140 : if (gfc_peek_ascii_char () == '*')
774 : : {
775 : : /* Matched "**". */
776 : 6944 : gfc_next_ascii_char ();
777 : 6944 : *result = INTRINSIC_POWER;
778 : 6944 : return MATCH_YES;
779 : : }
780 : : /* Matched "*". */
781 : 190196 : *result = INTRINSIC_TIMES;
782 : 190196 : return MATCH_YES;
783 : :
784 : 3381892 : case '/':
785 : 3381892 : ch = gfc_peek_ascii_char ();
786 : 3381892 : if (ch == '=')
787 : : {
788 : : /* Matched "/=". */
789 : 2827590 : gfc_next_ascii_char ();
790 : 2827590 : *result = INTRINSIC_NE;
791 : 2827590 : return MATCH_YES;
792 : : }
793 : 554302 : else if (ch == '/')
794 : : {
795 : : /* Matched "//". */
796 : 33177 : gfc_next_ascii_char ();
797 : 33177 : *result = INTRINSIC_CONCAT;
798 : 33177 : return MATCH_YES;
799 : : }
800 : : /* Matched "/". */
801 : 521125 : *result = INTRINSIC_DIVIDE;
802 : 521125 : return MATCH_YES;
803 : :
804 : 2792438 : case '.':
805 : 2792438 : ch = gfc_next_ascii_char ();
806 : 2792438 : switch (ch)
807 : : {
808 : 126672 : case 'a':
809 : 126672 : if (gfc_next_ascii_char () == 'n'
810 : 125762 : && gfc_next_ascii_char () == 'd'
811 : 252434 : && gfc_next_ascii_char () == '.')
812 : : {
813 : : /* Matched ".and.". */
814 : 125762 : *result = INTRINSIC_AND;
815 : 125762 : return MATCH_YES;
816 : : }
817 : : break;
818 : :
819 : 99886 : case 'e':
820 : 99886 : if (gfc_next_ascii_char () == 'q')
821 : : {
822 : 99802 : ch = gfc_next_ascii_char ();
823 : 99802 : if (ch == '.')
824 : : {
825 : : /* Matched ".eq.". */
826 : 80203 : *result = INTRINSIC_EQ_OS;
827 : 80203 : return MATCH_YES;
828 : : }
829 : 19599 : else if (ch == 'v')
830 : : {
831 : 19597 : if (gfc_next_ascii_char () == '.')
832 : : {
833 : : /* Matched ".eqv.". */
834 : 19597 : *result = INTRINSIC_EQV;
835 : 19597 : return MATCH_YES;
836 : : }
837 : : }
838 : : }
839 : : break;
840 : :
841 : 77288 : case 'g':
842 : 77288 : ch = gfc_next_ascii_char ();
843 : 77288 : if (ch == 'e')
844 : : {
845 : 20512 : if (gfc_next_ascii_char () == '.')
846 : : {
847 : : /* Matched ".ge.". */
848 : 20434 : *result = INTRINSIC_GE_OS;
849 : 20434 : return MATCH_YES;
850 : : }
851 : : }
852 : 56776 : else if (ch == 't')
853 : : {
854 : 56776 : if (gfc_next_ascii_char () == '.')
855 : : {
856 : : /* Matched ".gt.". */
857 : 56776 : *result = INTRINSIC_GT_OS;
858 : 56776 : return MATCH_YES;
859 : : }
860 : : }
861 : : break;
862 : :
863 : 52952 : case 'l':
864 : 52952 : ch = gfc_next_ascii_char ();
865 : 52952 : if (ch == 'e')
866 : : {
867 : 18568 : if (gfc_next_ascii_char () == '.')
868 : : {
869 : : /* Matched ".le.". */
870 : 18568 : *result = INTRINSIC_LE_OS;
871 : 18568 : return MATCH_YES;
872 : : }
873 : : }
874 : 34384 : else if (ch == 't')
875 : : {
876 : 34198 : if (gfc_next_ascii_char () == '.')
877 : : {
878 : : /* Matched ".lt.". */
879 : 34198 : *result = INTRINSIC_LT_OS;
880 : 34198 : return MATCH_YES;
881 : : }
882 : : }
883 : : break;
884 : :
885 : 1678477 : case 'n':
886 : 1678477 : ch = gfc_next_ascii_char ();
887 : 1678477 : if (ch == 'e')
888 : : {
889 : 1606100 : ch = gfc_next_ascii_char ();
890 : 1606100 : if (ch == '.')
891 : : {
892 : : /* Matched ".ne.". */
893 : 1383183 : *result = INTRINSIC_NE_OS;
894 : 1383183 : return MATCH_YES;
895 : : }
896 : 222917 : else if (ch == 'q')
897 : : {
898 : 222917 : if (gfc_next_ascii_char () == 'v'
899 : 222917 : && gfc_next_ascii_char () == '.')
900 : : {
901 : : /* Matched ".neqv.". */
902 : 222917 : *result = INTRINSIC_NEQV;
903 : 222917 : return MATCH_YES;
904 : : }
905 : : }
906 : : }
907 : 72377 : else if (ch == 'o')
908 : : {
909 : 72374 : if (gfc_next_ascii_char () == 't'
910 : 72374 : && gfc_next_ascii_char () == '.')
911 : : {
912 : : /* Matched ".not.". */
913 : 72329 : *result = INTRINSIC_NOT;
914 : 72329 : return MATCH_YES;
915 : : }
916 : : }
917 : : break;
918 : :
919 : 632408 : case 'o':
920 : 632408 : if (gfc_next_ascii_char () == 'r'
921 : 632408 : && gfc_next_ascii_char () == '.')
922 : : {
923 : : /* Matched ".or.". */
924 : 632183 : *result = INTRINSIC_OR;
925 : 632183 : return MATCH_YES;
926 : : }
927 : : break;
928 : :
929 : 449 : case 'x':
930 : 449 : if (gfc_next_ascii_char () == 'o'
931 : 327 : && gfc_next_ascii_char () == 'r'
932 : 776 : && gfc_next_ascii_char () == '.')
933 : : {
934 : 327 : if (!gfc_notify_std (GFC_STD_LEGACY, ".XOR. operator at %C"))
935 : : return MATCH_ERROR;
936 : : /* Matched ".xor." - equivalent to ".neqv.". */
937 : 320 : *result = INTRINSIC_NEQV;
938 : 320 : return MATCH_YES;
939 : : }
940 : : break;
941 : :
942 : : default:
943 : : break;
944 : : }
945 : : break;
946 : :
947 : : default:
948 : : break;
949 : : }
950 : :
951 : 60706939 : gfc_current_locus = orig_loc;
952 : 60706939 : return MATCH_NO;
953 : : }
954 : :
955 : :
956 : : /* Match a loop control phrase:
957 : :
958 : : <LVALUE> = <EXPR>, <EXPR> [, <EXPR> ]
959 : :
960 : : If the final integer expression is not present, a constant unity
961 : : expression is returned. We don't return MATCH_ERROR until after
962 : : the equals sign is seen. */
963 : :
964 : : match
965 : 40196 : gfc_match_iterator (gfc_iterator *iter, int init_flag)
966 : : {
967 : 40196 : char name[GFC_MAX_SYMBOL_LEN + 1];
968 : 40196 : gfc_expr *var, *e1, *e2, *e3;
969 : 40196 : locus start;
970 : 40196 : match m;
971 : :
972 : 40196 : e1 = e2 = e3 = NULL;
973 : :
974 : : /* Match the start of an iterator without affecting the symbol table. */
975 : :
976 : 40196 : start = gfc_current_locus;
977 : 40196 : m = gfc_match (" %n =", name);
978 : 40196 : gfc_current_locus = start;
979 : :
980 : 40196 : if (m != MATCH_YES)
981 : : return MATCH_NO;
982 : :
983 : 38546 : m = gfc_match_variable (&var, 0);
984 : 38546 : if (m != MATCH_YES)
985 : : return MATCH_NO;
986 : :
987 : 38546 : if (var->symtree->n.sym->attr.dimension)
988 : : {
989 : 4 : gfc_error ("Loop variable at %C cannot be an array");
990 : 4 : goto cleanup;
991 : : }
992 : :
993 : : /* F2008, C617 & C565. */
994 : 38542 : if (var->symtree->n.sym->attr.codimension)
995 : : {
996 : 1 : gfc_error ("Loop variable at %C cannot be a coarray");
997 : 1 : goto cleanup;
998 : : }
999 : :
1000 : 38541 : if (var->ref != NULL)
1001 : : {
1002 : 0 : gfc_error ("Loop variable at %C cannot be a sub-component");
1003 : 0 : goto cleanup;
1004 : : }
1005 : :
1006 : 38541 : gfc_match_char ('=');
1007 : :
1008 : 38541 : var->symtree->n.sym->attr.implied_index = 1;
1009 : :
1010 : 38541 : m = init_flag ? gfc_match_init_expr (&e1) : gfc_match_expr (&e1);
1011 : 38541 : if (m == MATCH_NO)
1012 : 0 : goto syntax;
1013 : 38541 : if (m == MATCH_ERROR)
1014 : 0 : goto cleanup;
1015 : :
1016 : 38541 : if (gfc_match_char (',') != MATCH_YES)
1017 : 1 : goto syntax;
1018 : :
1019 : 38540 : m = init_flag ? gfc_match_init_expr (&e2) : gfc_match_expr (&e2);
1020 : 38540 : if (m == MATCH_NO)
1021 : 0 : goto syntax;
1022 : 38540 : if (m == MATCH_ERROR)
1023 : 0 : goto cleanup;
1024 : :
1025 : 38540 : if (gfc_match_char (',') != MATCH_YES)
1026 : : {
1027 : 34985 : e3 = gfc_get_int_expr (gfc_default_integer_kind, NULL, 1);
1028 : 34985 : goto done;
1029 : : }
1030 : :
1031 : 3555 : m = init_flag ? gfc_match_init_expr (&e3) : gfc_match_expr (&e3);
1032 : 3555 : if (m == MATCH_ERROR)
1033 : 0 : goto cleanup;
1034 : 3555 : if (m == MATCH_NO)
1035 : : {
1036 : 0 : gfc_error ("Expected a step value in iterator at %C");
1037 : 0 : goto cleanup;
1038 : : }
1039 : :
1040 : 3555 : done:
1041 : 38540 : iter->var = var;
1042 : 38540 : iter->start = e1;
1043 : 38540 : iter->end = e2;
1044 : 38540 : iter->step = e3;
1045 : 38540 : return MATCH_YES;
1046 : :
1047 : 1 : syntax:
1048 : 1 : gfc_error ("Syntax error in iterator at %C");
1049 : :
1050 : 6 : cleanup:
1051 : 6 : gfc_free_expr (e1);
1052 : 6 : gfc_free_expr (e2);
1053 : 6 : gfc_free_expr (e3);
1054 : :
1055 : 6 : return MATCH_ERROR;
1056 : : }
1057 : :
1058 : :
1059 : : /* Tries to match the next non-whitespace character on the input.
1060 : : This subroutine does not return MATCH_ERROR.
1061 : : When gobble_ws is false, do not skip over leading blanks. */
1062 : :
1063 : : match
1064 : 35300880 : gfc_match_char (char c, bool gobble_ws)
1065 : : {
1066 : 35300880 : locus where;
1067 : :
1068 : 35300880 : where = gfc_current_locus;
1069 : 35300880 : if (gobble_ws)
1070 : 31403750 : gfc_gobble_whitespace ();
1071 : :
1072 : 35300880 : if (gfc_next_ascii_char () == c)
1073 : : return MATCH_YES;
1074 : :
1075 : 28733999 : gfc_current_locus = where;
1076 : 28733999 : return MATCH_NO;
1077 : : }
1078 : :
1079 : :
1080 : : /* General purpose matching subroutine. The target string is a
1081 : : scanf-like format string in which spaces correspond to arbitrary
1082 : : whitespace (including no whitespace), characters correspond to
1083 : : themselves. The %-codes are:
1084 : :
1085 : : %% Literal percent sign
1086 : : %e Expression, pointer to a pointer is set
1087 : : %s Symbol, pointer to the symbol is set (host_assoc = 0)
1088 : : %S Symbol, pointer to the symbol is set (host_assoc = 1)
1089 : : %n Name, character buffer is set to name
1090 : : %t Matches end of statement.
1091 : : %o Matches an intrinsic operator, returned as an INTRINSIC enum.
1092 : : %l Matches a statement label
1093 : : %v Matches a variable expression (an lvalue, except function references
1094 : : having a data pointer result)
1095 : : % Matches a required space (in free form) and optional spaces. */
1096 : :
1097 : : match
1098 : 79886911 : gfc_match (const char *target, ...)
1099 : : {
1100 : 79886911 : gfc_st_label **label;
1101 : 79886911 : int matches, *ip;
1102 : 79886911 : locus old_loc;
1103 : 79886911 : va_list argp;
1104 : 79886911 : char c, *np;
1105 : 79886911 : match m, n;
1106 : 79886911 : void **vp;
1107 : 79886911 : const char *p;
1108 : :
1109 : 79886911 : old_loc = gfc_current_locus;
1110 : 79886911 : va_start (argp, target);
1111 : 79886911 : m = MATCH_NO;
1112 : 79886911 : matches = 0;
1113 : 79886911 : p = target;
1114 : :
1115 : 351510510 : loop:
1116 : 351510510 : c = *p++;
1117 : 351510510 : switch (c)
1118 : : {
1119 : 101697377 : case ' ':
1120 : 101697377 : gfc_gobble_whitespace ();
1121 : 101697377 : goto loop;
1122 : : case '\0':
1123 : : m = MATCH_YES;
1124 : : break;
1125 : :
1126 : 20031546 : case '%':
1127 : 20031546 : c = *p++;
1128 : 20031546 : switch (c)
1129 : : {
1130 : 1685588 : case 'e':
1131 : 1685588 : vp = va_arg (argp, void **);
1132 : 1685588 : n = gfc_match_expr ((gfc_expr **) vp);
1133 : 1685588 : if (n != MATCH_YES)
1134 : : {
1135 : 579222 : m = n;
1136 : 579222 : goto not_yes;
1137 : : }
1138 : :
1139 : 1106366 : matches++;
1140 : 1106366 : goto loop;
1141 : :
1142 : 2361735 : case 'v':
1143 : 2361735 : vp = va_arg (argp, void **);
1144 : 2361735 : n = gfc_match_variable ((gfc_expr **) vp, 0);
1145 : 2361734 : if (n != MATCH_YES)
1146 : : {
1147 : 2229 : m = n;
1148 : 2229 : goto not_yes;
1149 : : }
1150 : :
1151 : 2359505 : matches++;
1152 : 2359505 : goto loop;
1153 : :
1154 : 28356 : case 's':
1155 : 28356 : case 'S':
1156 : 28356 : vp = va_arg (argp, void **);
1157 : 28356 : n = gfc_match_symbol ((gfc_symbol **) vp, c == 'S');
1158 : 28356 : if (n != MATCH_YES)
1159 : : {
1160 : 3 : m = n;
1161 : 3 : goto not_yes;
1162 : : }
1163 : :
1164 : 28353 : matches++;
1165 : 28353 : goto loop;
1166 : :
1167 : 11788851 : case 'n':
1168 : 11788851 : np = va_arg (argp, char *);
1169 : 11788851 : n = gfc_match_name (np);
1170 : 11788851 : if (n != MATCH_YES)
1171 : : {
1172 : 24375 : m = n;
1173 : 24375 : goto not_yes;
1174 : : }
1175 : :
1176 : 11764476 : matches++;
1177 : 11764476 : goto loop;
1178 : :
1179 : 197378 : case 'l':
1180 : 197378 : label = va_arg (argp, gfc_st_label **);
1181 : 197378 : n = gfc_match_st_label (label);
1182 : 197378 : if (n != MATCH_YES)
1183 : : {
1184 : 195119 : m = n;
1185 : 195119 : goto not_yes;
1186 : : }
1187 : :
1188 : 2259 : matches++;
1189 : 2259 : goto loop;
1190 : :
1191 : 1593 : case 'o':
1192 : 1593 : ip = va_arg (argp, int *);
1193 : 1593 : n = gfc_match_intrinsic_op ((gfc_intrinsic_op *) ip);
1194 : 1593 : if (n != MATCH_YES)
1195 : : {
1196 : 729 : m = n;
1197 : 729 : goto not_yes;
1198 : : }
1199 : :
1200 : 864 : matches++;
1201 : 864 : goto loop;
1202 : :
1203 : 261498 : case 't':
1204 : 261498 : if (gfc_match_eos () != MATCH_YES)
1205 : : {
1206 : 2234 : m = MATCH_NO;
1207 : 2234 : goto not_yes;
1208 : : }
1209 : 259264 : goto loop;
1210 : :
1211 : 296909 : case ' ':
1212 : 296909 : if (gfc_match_space () == MATCH_YES)
1213 : 293282 : goto loop;
1214 : 3627 : m = MATCH_NO;
1215 : 3627 : goto not_yes;
1216 : :
1217 : : case '%':
1218 : : break; /* Fall through to character matcher. */
1219 : :
1220 : 0 : default:
1221 : 0 : gfc_internal_error ("gfc_match(): Bad match code %c", c);
1222 : : }
1223 : : /* FALLTHRU */
1224 : :
1225 : 216578605 : default:
1226 : :
1227 : : /* gfc_next_ascii_char converts characters to lower-case, so we shouldn't
1228 : : expect an upper case character here! */
1229 : 216578605 : gcc_assert (TOLOWER (c) == c);
1230 : :
1231 : 216578605 : if (c == gfc_next_ascii_char ())
1232 : 154111853 : goto loop;
1233 : : break;
1234 : : }
1235 : :
1236 : 79886910 : not_yes:
1237 : 79886910 : va_end (argp);
1238 : :
1239 : 79886910 : if (m != MATCH_YES)
1240 : : {
1241 : : /* Clean up after a failed match. */
1242 : 63274290 : gfc_current_locus = old_loc;
1243 : 63274290 : va_start (argp, target);
1244 : :
1245 : 63274290 : p = target;
1246 : 70314202 : for (; matches > 0; matches--)
1247 : : {
1248 : 14322154 : while (*p++ != '%');
1249 : :
1250 : 7039912 : switch (*p++)
1251 : : {
1252 : 0 : case '%':
1253 : 0 : matches++;
1254 : 0 : break; /* Skip. */
1255 : :
1256 : : /* Matches that don't have to be undone */
1257 : 4879923 : case 'o':
1258 : 4879923 : case 'l':
1259 : 4879923 : case 'n':
1260 : 4879923 : case 's':
1261 : 4879923 : (void) va_arg (argp, void **);
1262 : 4879923 : break;
1263 : :
1264 : 2159989 : case 'e':
1265 : 2159989 : case 'v':
1266 : 2159989 : vp = va_arg (argp, void **);
1267 : 2159989 : gfc_free_expr ((struct gfc_expr *)*vp);
1268 : 2159989 : *vp = NULL;
1269 : 2159989 : break;
1270 : : }
1271 : : }
1272 : :
1273 : 63274290 : va_end (argp);
1274 : : }
1275 : :
1276 : 79886910 : return m;
1277 : : }
1278 : :
1279 : :
1280 : : /*********************** Statement level matching **********************/
1281 : :
1282 : : /* Matches the start of a program unit, which is the program keyword
1283 : : followed by an obligatory symbol. */
1284 : :
1285 : : match
1286 : 18007 : gfc_match_program (void)
1287 : : {
1288 : 18007 : gfc_symbol *sym;
1289 : 18007 : match m;
1290 : :
1291 : 18007 : m = gfc_match ("% %s%t", &sym);
1292 : :
1293 : 18007 : if (m == MATCH_NO)
1294 : : {
1295 : 0 : gfc_error ("Invalid form of PROGRAM statement at %C");
1296 : 0 : m = MATCH_ERROR;
1297 : : }
1298 : :
1299 : 18007 : if (m == MATCH_ERROR)
1300 : 0 : return m;
1301 : :
1302 : 18007 : if (!gfc_add_flavor (&sym->attr, FL_PROGRAM, sym->name, NULL))
1303 : : return MATCH_ERROR;
1304 : :
1305 : 18007 : gfc_new_block = sym;
1306 : :
1307 : 18007 : return MATCH_YES;
1308 : : }
1309 : :
1310 : :
1311 : : /* Match a simple assignment statement. */
1312 : :
1313 : : match
1314 : 1267282 : gfc_match_assignment (void)
1315 : : {
1316 : 1267282 : gfc_expr *lvalue, *rvalue;
1317 : 1267282 : locus old_loc;
1318 : 1267282 : match m;
1319 : :
1320 : 1267282 : old_loc = gfc_current_locus;
1321 : :
1322 : 1267282 : lvalue = NULL;
1323 : 1267282 : m = gfc_match (" %v =", &lvalue);
1324 : 1267281 : if (m != MATCH_YES)
1325 : : {
1326 : 1078753 : gfc_current_locus = old_loc;
1327 : 1078753 : gfc_free_expr (lvalue);
1328 : 1078753 : return MATCH_NO;
1329 : : }
1330 : :
1331 : 188528 : rvalue = NULL;
1332 : 188528 : m = gfc_match (" %e%t", &rvalue);
1333 : :
1334 : 188528 : if (m == MATCH_YES
1335 : 177781 : && rvalue->ts.type == BT_BOZ
1336 : 4 : && lvalue->ts.type == BT_CLASS)
1337 : : {
1338 : 1 : m = MATCH_ERROR;
1339 : 1 : gfc_error ("BOZ literal constant at %L is neither a DATA statement "
1340 : : "value nor an actual argument of INT/REAL/DBLE/CMPLX "
1341 : : "intrinsic subprogram", &rvalue->where);
1342 : : }
1343 : :
1344 : 188528 : if (lvalue->expr_type == EXPR_CONSTANT)
1345 : : {
1346 : : /* This clobbers %len and %kind. */
1347 : 6 : m = MATCH_ERROR;
1348 : 6 : gfc_error ("Assignment to a constant expression at %C");
1349 : : }
1350 : :
1351 : 188528 : if (m != MATCH_YES)
1352 : : {
1353 : 10753 : gfc_current_locus = old_loc;
1354 : 10753 : gfc_free_expr (lvalue);
1355 : 10753 : gfc_free_expr (rvalue);
1356 : 10753 : return m;
1357 : : }
1358 : :
1359 : 177775 : if (!lvalue->symtree)
1360 : : {
1361 : 0 : gfc_free_expr (lvalue);
1362 : 0 : gfc_free_expr (rvalue);
1363 : 0 : return MATCH_ERROR;
1364 : : }
1365 : :
1366 : :
1367 : 177775 : gfc_set_sym_referenced (lvalue->symtree->n.sym);
1368 : :
1369 : 177775 : new_st.op = EXEC_ASSIGN;
1370 : 177775 : new_st.expr1 = lvalue;
1371 : 177775 : new_st.expr2 = rvalue;
1372 : :
1373 : 177775 : gfc_check_do_variable (lvalue->symtree);
1374 : :
1375 : 177775 : return MATCH_YES;
1376 : : }
1377 : :
1378 : :
1379 : : /* Match a pointer assignment statement. */
1380 : :
1381 : : match
1382 : 1089506 : gfc_match_pointer_assignment (void)
1383 : : {
1384 : 1089506 : gfc_expr *lvalue, *rvalue;
1385 : 1089506 : locus old_loc;
1386 : 1089506 : match m;
1387 : :
1388 : 1089506 : old_loc = gfc_current_locus;
1389 : :
1390 : 1089506 : lvalue = rvalue = NULL;
1391 : 1089506 : gfc_matching_ptr_assignment = 0;
1392 : 1089506 : gfc_matching_procptr_assignment = 0;
1393 : :
1394 : 1089506 : m = gfc_match (" %v =>", &lvalue);
1395 : 1089506 : if (m != MATCH_YES || !lvalue->symtree)
1396 : : {
1397 : 1081028 : m = MATCH_NO;
1398 : 1081028 : goto cleanup;
1399 : : }
1400 : :
1401 : 8478 : if (lvalue->symtree->n.sym->attr.proc_pointer
1402 : 8478 : || gfc_is_proc_ptr_comp (lvalue))
1403 : 1237 : gfc_matching_procptr_assignment = 1;
1404 : : else
1405 : 7241 : gfc_matching_ptr_assignment = 1;
1406 : :
1407 : 8478 : m = gfc_match (" %e%t", &rvalue);
1408 : 8478 : gfc_matching_ptr_assignment = 0;
1409 : 8478 : gfc_matching_procptr_assignment = 0;
1410 : 8478 : if (m != MATCH_YES)
1411 : 1 : goto cleanup;
1412 : :
1413 : 8477 : new_st.op = EXEC_POINTER_ASSIGN;
1414 : 8477 : new_st.expr1 = lvalue;
1415 : 8477 : new_st.expr2 = rvalue;
1416 : :
1417 : 8477 : return MATCH_YES;
1418 : :
1419 : 1081029 : cleanup:
1420 : 1081029 : gfc_current_locus = old_loc;
1421 : 1081029 : gfc_free_expr (lvalue);
1422 : 1081029 : gfc_free_expr (rvalue);
1423 : 1081029 : return m;
1424 : : }
1425 : :
1426 : :
1427 : : /* We try to match an easy arithmetic IF statement. This only happens
1428 : : when just after having encountered a simple IF statement. This code
1429 : : is really duplicate with parts of the gfc_match_if code, but this is
1430 : : *much* easier. */
1431 : :
1432 : : static match
1433 : 24 : match_arithmetic_if (void)
1434 : : {
1435 : 24 : gfc_st_label *l1, *l2, *l3;
1436 : 24 : gfc_expr *expr;
1437 : 24 : match m;
1438 : :
1439 : 24 : m = gfc_match (" ( %e ) %l , %l , %l%t", &expr, &l1, &l2, &l3);
1440 : 24 : if (m != MATCH_YES)
1441 : : return m;
1442 : :
1443 : 24 : if (!gfc_reference_st_label (l1, ST_LABEL_TARGET)
1444 : 24 : || !gfc_reference_st_label (l2, ST_LABEL_TARGET)
1445 : 48 : || !gfc_reference_st_label (l3, ST_LABEL_TARGET))
1446 : : {
1447 : 0 : gfc_free_expr (expr);
1448 : 0 : return MATCH_ERROR;
1449 : : }
1450 : :
1451 : 24 : if (!gfc_notify_std (GFC_STD_F95_OBS | GFC_STD_F2018_DEL,
1452 : : "Arithmetic IF statement at %C"))
1453 : : return MATCH_ERROR;
1454 : :
1455 : 24 : new_st.op = EXEC_ARITHMETIC_IF;
1456 : 24 : new_st.expr1 = expr;
1457 : 24 : new_st.label1 = l1;
1458 : 24 : new_st.label2 = l2;
1459 : 24 : new_st.label3 = l3;
1460 : :
1461 : 24 : return MATCH_YES;
1462 : : }
1463 : :
1464 : :
1465 : : /* The IF statement is a bit of a pain. First of all, there are three
1466 : : forms of it, the simple IF, the IF that starts a block and the
1467 : : arithmetic IF.
1468 : :
1469 : : There is a problem with the simple IF and that is the fact that we
1470 : : only have a single level of undo information on symbols. What this
1471 : : means is for a simple IF, we must re-match the whole IF statement
1472 : : multiple times in order to guarantee that the symbol table ends up
1473 : : in the proper state. */
1474 : :
1475 : : static match match_simple_forall (void);
1476 : : static match match_simple_where (void);
1477 : :
1478 : : match
1479 : 677978 : gfc_match_if (gfc_statement *if_type)
1480 : : {
1481 : 677978 : gfc_expr *expr;
1482 : 677978 : gfc_st_label *l1, *l2, *l3;
1483 : 677978 : locus old_loc, old_loc2;
1484 : 677978 : gfc_code *p;
1485 : 677978 : match m, n;
1486 : :
1487 : 677978 : n = gfc_match_label ();
1488 : 677978 : if (n == MATCH_ERROR)
1489 : : return n;
1490 : :
1491 : 677970 : old_loc = gfc_current_locus;
1492 : :
1493 : 677970 : m = gfc_match (" if ", &expr);
1494 : 677970 : if (m != MATCH_YES)
1495 : : return m;
1496 : :
1497 : 195114 : if (gfc_match_char ('(') != MATCH_YES)
1498 : : {
1499 : 3 : gfc_error ("Missing %<(%> in IF-expression at %C");
1500 : 3 : return MATCH_ERROR;
1501 : : }
1502 : :
1503 : 195111 : m = gfc_match ("%e", &expr);
1504 : 195111 : if (m != MATCH_YES)
1505 : : return m;
1506 : :
1507 : 195089 : old_loc2 = gfc_current_locus;
1508 : 195089 : gfc_current_locus = old_loc;
1509 : :
1510 : 195089 : if (gfc_match_parens () == MATCH_ERROR)
1511 : : return MATCH_ERROR;
1512 : :
1513 : 195082 : gfc_current_locus = old_loc2;
1514 : :
1515 : 195082 : if (gfc_match_char (')') != MATCH_YES)
1516 : : {
1517 : 2 : gfc_error ("Syntax error in IF-expression at %C");
1518 : 2 : gfc_free_expr (expr);
1519 : 2 : return MATCH_ERROR;
1520 : : }
1521 : :
1522 : 195080 : m = gfc_match (" %l , %l , %l%t", &l1, &l2, &l3);
1523 : :
1524 : 195080 : if (m == MATCH_YES)
1525 : : {
1526 : 48 : if (n == MATCH_YES)
1527 : : {
1528 : 0 : gfc_error ("Block label not appropriate for arithmetic IF "
1529 : : "statement at %C");
1530 : 0 : gfc_free_expr (expr);
1531 : 0 : return MATCH_ERROR;
1532 : : }
1533 : :
1534 : 48 : if (!gfc_reference_st_label (l1, ST_LABEL_TARGET)
1535 : 48 : || !gfc_reference_st_label (l2, ST_LABEL_TARGET)
1536 : 96 : || !gfc_reference_st_label (l3, ST_LABEL_TARGET))
1537 : : {
1538 : 0 : gfc_free_expr (expr);
1539 : 0 : return MATCH_ERROR;
1540 : : }
1541 : :
1542 : 48 : if (!gfc_notify_std (GFC_STD_F95_OBS | GFC_STD_F2018_DEL,
1543 : : "Arithmetic IF statement at %C"))
1544 : : return MATCH_ERROR;
1545 : :
1546 : 48 : new_st.op = EXEC_ARITHMETIC_IF;
1547 : 48 : new_st.expr1 = expr;
1548 : 48 : new_st.label1 = l1;
1549 : 48 : new_st.label2 = l2;
1550 : 48 : new_st.label3 = l3;
1551 : :
1552 : 48 : *if_type = ST_ARITHMETIC_IF;
1553 : 48 : return MATCH_YES;
1554 : : }
1555 : :
1556 : 195032 : if (gfc_match (" then%t") == MATCH_YES)
1557 : : {
1558 : 13807 : new_st.op = EXEC_IF;
1559 : 13807 : new_st.expr1 = expr;
1560 : 13807 : *if_type = ST_IF_BLOCK;
1561 : 13807 : return MATCH_YES;
1562 : : }
1563 : :
1564 : 181225 : if (n == MATCH_YES)
1565 : : {
1566 : 0 : gfc_error ("Block label is not appropriate for IF statement at %C");
1567 : 0 : gfc_free_expr (expr);
1568 : 0 : return MATCH_ERROR;
1569 : : }
1570 : :
1571 : : /* At this point the only thing left is a simple IF statement. At
1572 : : this point, n has to be MATCH_NO, so we don't have to worry about
1573 : : re-matching a block label. From what we've got so far, try
1574 : : matching an assignment. */
1575 : :
1576 : 181225 : *if_type = ST_SIMPLE_IF;
1577 : :
1578 : 181225 : m = gfc_match_assignment ();
1579 : 181225 : if (m == MATCH_YES)
1580 : 4651 : goto got_match;
1581 : :
1582 : 176574 : gfc_free_expr (expr);
1583 : 176574 : gfc_undo_symbols ();
1584 : 176574 : gfc_current_locus = old_loc;
1585 : :
1586 : : /* m can be MATCH_NO or MATCH_ERROR, here. For MATCH_ERROR, a mangled
1587 : : assignment was found. For MATCH_NO, continue to call the various
1588 : : matchers. */
1589 : 176574 : if (m == MATCH_ERROR)
1590 : : return MATCH_ERROR;
1591 : :
1592 : 176574 : gfc_match (" if ( %e ) ", &expr); /* Guaranteed to match. */
1593 : :
1594 : 176574 : m = gfc_match_pointer_assignment ();
1595 : 176574 : if (m == MATCH_YES)
1596 : 68 : goto got_match;
1597 : :
1598 : 176506 : gfc_free_expr (expr);
1599 : 176506 : gfc_undo_symbols ();
1600 : 176506 : gfc_current_locus = old_loc;
1601 : :
1602 : 176506 : gfc_match (" if ( %e ) ", &expr); /* Guaranteed to match. */
1603 : :
1604 : : /* Look at the next keyword to see which matcher to call. Matching
1605 : : the keyword doesn't affect the symbol table, so we don't have to
1606 : : restore between tries. */
1607 : :
1608 : : #define match(string, subr, statement) \
1609 : : if (gfc_match (string) == MATCH_YES) { m = subr(); goto got_match; }
1610 : :
1611 : 176506 : gfc_clear_error ();
1612 : :
1613 : 176506 : match ("allocate", gfc_match_allocate, ST_ALLOCATE)
1614 : 176454 : match ("assign", gfc_match_assign, ST_LABEL_ASSIGNMENT)
1615 : 176452 : match ("backspace", gfc_match_backspace, ST_BACKSPACE)
1616 : 176446 : match ("call", gfc_match_call, ST_CALL)
1617 : 175726 : match ("change% team", gfc_match_change_team, ST_CHANGE_TEAM)
1618 : 175726 : match ("close", gfc_match_close, ST_CLOSE)
1619 : 175726 : match ("continue", gfc_match_continue, ST_CONTINUE)
1620 : 175726 : match ("cycle", gfc_match_cycle, ST_CYCLE)
1621 : 175637 : match ("deallocate", gfc_match_deallocate, ST_DEALLOCATE)
1622 : 175267 : match ("end file", gfc_match_endfile, ST_END_FILE)
1623 : 175267 : match ("end team", gfc_match_end_team, ST_END_TEAM)
1624 : 175267 : match ("error% stop", gfc_match_error_stop, ST_ERROR_STOP)
1625 : 157788 : match ("event% post", gfc_match_event_post, ST_EVENT_POST)
1626 : 157788 : match ("event% wait", gfc_match_event_wait, ST_EVENT_WAIT)
1627 : 157788 : match ("exit", gfc_match_exit, ST_EXIT)
1628 : 157481 : match ("fail% image", gfc_match_fail_image, ST_FAIL_IMAGE)
1629 : 157480 : match ("flush", gfc_match_flush, ST_FLUSH)
1630 : 157480 : match ("forall", match_simple_forall, ST_FORALL)
1631 : 157474 : match ("form% team", gfc_match_form_team, ST_FORM_TEAM)
1632 : 157474 : match ("go to", gfc_match_goto, ST_GOTO)
1633 : 157099 : match ("if", match_arithmetic_if, ST_ARITHMETIC_IF)
1634 : 157075 : match ("inquire", gfc_match_inquire, ST_INQUIRE)
1635 : 157075 : match ("lock", gfc_match_lock, ST_LOCK)
1636 : 157075 : match ("nullify", gfc_match_nullify, ST_NULLIFY)
1637 : 157075 : match ("open", gfc_match_open, ST_OPEN)
1638 : 157075 : match ("pause", gfc_match_pause, ST_NONE)
1639 : 157075 : match ("print", gfc_match_print, ST_WRITE)
1640 : 156605 : match ("read", gfc_match_read, ST_READ)
1641 : 156603 : match ("return", gfc_match_return, ST_RETURN)
1642 : 156290 : match ("rewind", gfc_match_rewind, ST_REWIND)
1643 : 156290 : match ("stop", gfc_match_stop, ST_STOP)
1644 : 377 : match ("wait", gfc_match_wait, ST_WAIT)
1645 : 377 : match ("sync% all", gfc_match_sync_all, ST_SYNC_CALL);
1646 : 377 : match ("sync% images", gfc_match_sync_images, ST_SYNC_IMAGES);
1647 : 377 : match ("sync% memory", gfc_match_sync_memory, ST_SYNC_MEMORY);
1648 : 377 : match ("sync% team", gfc_match_sync_team, ST_SYNC_TEAM)
1649 : 377 : match ("unlock", gfc_match_unlock, ST_UNLOCK)
1650 : 377 : match ("where", match_simple_where, ST_WHERE)
1651 : 370 : match ("write", gfc_match_write, ST_WRITE)
1652 : :
1653 : 6 : if (flag_dec)
1654 : 1 : match ("type", gfc_match_print, ST_WRITE)
1655 : :
1656 : : /* All else has failed, so give up. See if any of the matchers has
1657 : : stored an error message of some sort. */
1658 : 5 : if (!gfc_error_check ())
1659 : 5 : gfc_error ("Syntax error in IF-clause after %C");
1660 : :
1661 : 5 : gfc_free_expr (expr);
1662 : 5 : return MATCH_ERROR;
1663 : :
1664 : 181220 : got_match:
1665 : 181220 : if (m == MATCH_NO)
1666 : 0 : gfc_error ("Syntax error in IF-clause after %C");
1667 : 181220 : if (m != MATCH_YES)
1668 : : {
1669 : 77 : gfc_free_expr (expr);
1670 : 77 : return MATCH_ERROR;
1671 : : }
1672 : :
1673 : : /* At this point, we've matched the single IF and the action clause
1674 : : is in new_st. Rearrange things so that the IF statement appears
1675 : : in new_st. */
1676 : :
1677 : 181143 : p = gfc_get_code (EXEC_IF);
1678 : 181143 : p->next = XCNEW (gfc_code);
1679 : 181143 : *p->next = new_st;
1680 : 181143 : p->next->loc = gfc_current_locus;
1681 : :
1682 : 181143 : p->expr1 = expr;
1683 : :
1684 : 181143 : gfc_clear_new_st ();
1685 : :
1686 : 181143 : new_st.op = EXEC_IF;
1687 : 181143 : new_st.block = p;
1688 : :
1689 : 181143 : return MATCH_YES;
1690 : : }
1691 : :
1692 : : #undef match
1693 : :
1694 : :
1695 : : /* Match an ELSE statement. */
1696 : :
1697 : : match
1698 : 6088 : gfc_match_else (void)
1699 : : {
1700 : 6088 : char name[GFC_MAX_SYMBOL_LEN + 1];
1701 : :
1702 : 6088 : if (gfc_match_eos () == MATCH_YES)
1703 : : return MATCH_YES;
1704 : :
1705 : 2245 : if (gfc_match_name (name) != MATCH_YES
1706 : 2244 : || gfc_current_block () == NULL
1707 : 2262 : || gfc_match_eos () != MATCH_YES)
1708 : : {
1709 : 2243 : gfc_error ("Invalid character(s) in ELSE statement after %C");
1710 : 2243 : return MATCH_ERROR;
1711 : : }
1712 : :
1713 : 2 : if (strcmp (name, gfc_current_block ()->name) != 0)
1714 : : {
1715 : 1 : gfc_error ("Label %qs at %C doesn't match IF label %qs",
1716 : : name, gfc_current_block ()->name);
1717 : 1 : return MATCH_ERROR;
1718 : : }
1719 : :
1720 : : return MATCH_YES;
1721 : : }
1722 : :
1723 : :
1724 : : /* Match an ELSE IF statement. */
1725 : :
1726 : : match
1727 : 1928 : gfc_match_elseif (void)
1728 : : {
1729 : 1928 : char name[GFC_MAX_SYMBOL_LEN + 1];
1730 : 1928 : gfc_expr *expr, *then;
1731 : 1928 : locus where;
1732 : 1928 : match m;
1733 : :
1734 : 1928 : if (gfc_match_char ('(') != MATCH_YES)
1735 : : {
1736 : 1 : gfc_error ("Missing %<(%> in ELSE IF expression at %C");
1737 : 1 : return MATCH_ERROR;
1738 : : }
1739 : :
1740 : 1927 : m = gfc_match (" %e ", &expr);
1741 : 1927 : if (m != MATCH_YES)
1742 : : return m;
1743 : :
1744 : 1927 : if (gfc_match_char (')') != MATCH_YES)
1745 : : {
1746 : 1 : gfc_error ("Missing %<)%> in ELSE IF expression at %C");
1747 : 1 : goto cleanup;
1748 : : }
1749 : :
1750 : 1926 : m = gfc_match (" then ", &then);
1751 : :
1752 : 1926 : where = gfc_current_locus;
1753 : :
1754 : 1926 : if (m == MATCH_YES && (gfc_match_eos () == MATCH_YES
1755 : 3 : || (gfc_current_block ()
1756 : 2 : && gfc_match_name (name) == MATCH_YES)))
1757 : 1923 : goto done;
1758 : :
1759 : 3 : if (gfc_match_eos () == MATCH_YES)
1760 : : {
1761 : 1 : gfc_error ("Missing THEN in ELSE IF statement after %L", &where);
1762 : 1 : goto cleanup;
1763 : : }
1764 : :
1765 : 2 : if (gfc_match_name (name) != MATCH_YES
1766 : 2 : || gfc_current_block () == NULL
1767 : 3 : || gfc_match_eos () != MATCH_YES)
1768 : : {
1769 : 1 : gfc_error ("Syntax error in ELSE IF statement after %L", &where);
1770 : 1 : goto cleanup;
1771 : : }
1772 : :
1773 : 1 : if (strcmp (name, gfc_current_block ()->name) != 0)
1774 : : {
1775 : 1 : gfc_error ("Label %qs after %L doesn't match IF label %qs",
1776 : : name, &where, gfc_current_block ()->name);
1777 : 1 : goto cleanup;
1778 : : }
1779 : :
1780 : 0 : if (m != MATCH_YES)
1781 : : return m;
1782 : :
1783 : 0 : done:
1784 : 1923 : new_st.op = EXEC_IF;
1785 : 1923 : new_st.expr1 = expr;
1786 : 1923 : return MATCH_YES;
1787 : :
1788 : 4 : cleanup:
1789 : 4 : gfc_free_expr (expr);
1790 : 4 : return MATCH_ERROR;
1791 : : }
1792 : :
1793 : :
1794 : : /* Free a gfc_iterator structure. */
1795 : :
1796 : : void
1797 : 89834 : gfc_free_iterator (gfc_iterator *iter, int flag)
1798 : : {
1799 : :
1800 : 89834 : if (iter == NULL)
1801 : : return;
1802 : :
1803 : 51042 : gfc_free_expr (iter->var);
1804 : 51042 : gfc_free_expr (iter->start);
1805 : 51042 : gfc_free_expr (iter->end);
1806 : 51042 : gfc_free_expr (iter->step);
1807 : :
1808 : 51042 : if (flag)
1809 : 45855 : free (iter);
1810 : : }
1811 : :
1812 : :
1813 : : /* Match a CRITICAL statement. */
1814 : : match
1815 : 447132 : gfc_match_critical (void)
1816 : : {
1817 : 447132 : gfc_st_label *label = NULL;
1818 : :
1819 : 447132 : if (gfc_match_label () == MATCH_ERROR)
1820 : : return MATCH_ERROR;
1821 : :
1822 : 447124 : if (gfc_match (" critical") != MATCH_YES)
1823 : : return MATCH_NO;
1824 : :
1825 : 38 : if (gfc_match_st_label (&label) == MATCH_ERROR)
1826 : : return MATCH_ERROR;
1827 : :
1828 : 38 : if (gfc_match_eos () != MATCH_YES)
1829 : : {
1830 : 1 : gfc_syntax_error (ST_CRITICAL);
1831 : 1 : return MATCH_ERROR;
1832 : : }
1833 : :
1834 : 37 : if (gfc_pure (NULL))
1835 : : {
1836 : 1 : gfc_error ("Image control statement CRITICAL at %C in PURE procedure");
1837 : 1 : return MATCH_ERROR;
1838 : : }
1839 : :
1840 : 36 : if (gfc_find_state (COMP_DO_CONCURRENT))
1841 : : {
1842 : 1 : gfc_error ("Image control statement CRITICAL at %C in DO CONCURRENT "
1843 : : "block");
1844 : 1 : return MATCH_ERROR;
1845 : : }
1846 : :
1847 : 35 : gfc_unset_implicit_pure (NULL);
1848 : :
1849 : 35 : if (!gfc_notify_std (GFC_STD_F2008, "CRITICAL statement at %C"))
1850 : : return MATCH_ERROR;
1851 : :
1852 : 34 : if (flag_coarray == GFC_FCOARRAY_NONE)
1853 : : {
1854 : 0 : gfc_fatal_error ("Coarrays disabled at %C, use %<-fcoarray=%> to "
1855 : : "enable");
1856 : : return MATCH_ERROR;
1857 : : }
1858 : :
1859 : 34 : if (gfc_find_state (COMP_CRITICAL))
1860 : : {
1861 : 1 : gfc_error ("Nested CRITICAL block at %C");
1862 : 1 : return MATCH_ERROR;
1863 : : }
1864 : :
1865 : 33 : new_st.op = EXEC_CRITICAL;
1866 : :
1867 : 33 : if (label != NULL
1868 : 33 : && !gfc_reference_st_label (label, ST_LABEL_TARGET))
1869 : : return MATCH_ERROR;
1870 : :
1871 : : return MATCH_YES;
1872 : : }
1873 : :
1874 : :
1875 : : /* Match a BLOCK statement. */
1876 : :
1877 : : match
1878 : 449528 : gfc_match_block (void)
1879 : : {
1880 : 449528 : match m;
1881 : :
1882 : 449528 : if (gfc_match_label () == MATCH_ERROR)
1883 : : return MATCH_ERROR;
1884 : :
1885 : 449520 : if (gfc_match (" block") != MATCH_YES)
1886 : : return MATCH_NO;
1887 : :
1888 : : /* For this to be a correct BLOCK statement, the line must end now. */
1889 : 1289 : m = gfc_match_eos ();
1890 : 1289 : if (m == MATCH_ERROR)
1891 : : return MATCH_ERROR;
1892 : 1289 : if (m == MATCH_NO)
1893 : : return MATCH_NO;
1894 : :
1895 : : return MATCH_YES;
1896 : : }
1897 : :
1898 : :
1899 : : /* Match an ASSOCIATE statement. */
1900 : :
1901 : : match
1902 : 448324 : gfc_match_associate (void)
1903 : : {
1904 : 448324 : if (gfc_match_label () == MATCH_ERROR)
1905 : : return MATCH_ERROR;
1906 : :
1907 : 448316 : if (gfc_match (" associate") != MATCH_YES)
1908 : : return MATCH_NO;
1909 : :
1910 : : /* Match the association list. */
1911 : 1205 : if (gfc_match_char ('(') != MATCH_YES)
1912 : : {
1913 : 1 : gfc_error ("Expected association list at %C");
1914 : 1 : return MATCH_ERROR;
1915 : : }
1916 : 1204 : new_st.ext.block.assoc = NULL;
1917 : 1424 : while (true)
1918 : : {
1919 : 1314 : gfc_association_list* newAssoc = gfc_get_association_list ();
1920 : 1314 : gfc_association_list* a;
1921 : :
1922 : : /* Match the next association. */
1923 : 1314 : if (gfc_match (" %n =>", newAssoc->name) != MATCH_YES)
1924 : : {
1925 : 3 : gfc_error ("Expected association at %C");
1926 : 3 : goto assocListError;
1927 : : }
1928 : :
1929 : 1311 : if (gfc_match (" %e", &newAssoc->target) != MATCH_YES)
1930 : : {
1931 : : /* Have another go, allowing for procedure pointer selectors. */
1932 : 19 : gfc_matching_procptr_assignment = 1;
1933 : 19 : if (gfc_match (" %e", &newAssoc->target) != MATCH_YES)
1934 : : {
1935 : 5 : gfc_matching_procptr_assignment = 0;
1936 : 5 : gfc_error ("Invalid association target at %C");
1937 : 5 : goto assocListError;
1938 : : }
1939 : 14 : gfc_matching_procptr_assignment = 0;
1940 : : }
1941 : 1306 : newAssoc->where = gfc_current_locus;
1942 : :
1943 : : /* Check that the current name is not yet in the list. */
1944 : 1434 : for (a = new_st.ext.block.assoc; a; a = a->next)
1945 : 129 : if (!strcmp (a->name, newAssoc->name))
1946 : : {
1947 : 1 : gfc_error ("Duplicate name %qs in association at %C",
1948 : : newAssoc->name);
1949 : 1 : goto assocListError;
1950 : : }
1951 : :
1952 : : /* The target expression must not be coindexed. */
1953 : 1305 : if (gfc_is_coindexed (newAssoc->target))
1954 : : {
1955 : 1 : gfc_error ("Association target at %C must not be coindexed");
1956 : 1 : goto assocListError;
1957 : : }
1958 : :
1959 : : /* The target expression cannot be a BOZ literal constant. */
1960 : 1304 : if (newAssoc->target->ts.type == BT_BOZ)
1961 : : {
1962 : 1 : gfc_error ("Association target at %L cannot be a BOZ literal "
1963 : : "constant", &newAssoc->target->where);
1964 : 1 : goto assocListError;
1965 : : }
1966 : :
1967 : : /* The `variable' field is left blank for now; because the target is not
1968 : : yet resolved, we can't use gfc_has_vector_subscript to determine it
1969 : : for now. This is set during resolution. */
1970 : :
1971 : : /* Put it into the list. */
1972 : 1303 : newAssoc->next = new_st.ext.block.assoc;
1973 : 1303 : new_st.ext.block.assoc = newAssoc;
1974 : :
1975 : : /* Try next one or end if closing parenthesis is found. */
1976 : 1303 : gfc_gobble_whitespace ();
1977 : 1303 : if (gfc_peek_char () == ')')
1978 : : break;
1979 : 110 : if (gfc_match_char (',') != MATCH_YES)
1980 : : {
1981 : 0 : gfc_error ("Expected %<)%> or %<,%> at %C");
1982 : 0 : return MATCH_ERROR;
1983 : : }
1984 : :
1985 : 110 : continue;
1986 : :
1987 : 11 : assocListError:
1988 : 11 : free (newAssoc);
1989 : 11 : goto error;
1990 : 110 : }
1991 : 1193 : if (gfc_match_char (')') != MATCH_YES)
1992 : : {
1993 : : /* This should never happen as we peek above. */
1994 : 0 : gcc_unreachable ();
1995 : : }
1996 : :
1997 : 1193 : if (gfc_match_eos () != MATCH_YES)
1998 : : {
1999 : 1 : gfc_error ("Junk after ASSOCIATE statement at %C");
2000 : 1 : goto error;
2001 : : }
2002 : :
2003 : : return MATCH_YES;
2004 : :
2005 : 12 : error:
2006 : 12 : gfc_free_association_list (new_st.ext.block.assoc);
2007 : 12 : return MATCH_ERROR;
2008 : : }
2009 : :
2010 : :
2011 : : /* Match a Fortran 2003 derived-type-spec (F03:R455), which is just the name of
2012 : : an accessible derived type. */
2013 : :
2014 : : static match
2015 : 28497 : match_derived_type_spec (gfc_typespec *ts)
2016 : : {
2017 : 28497 : char name[GFC_MAX_SYMBOL_LEN + 1];
2018 : 28497 : locus old_locus;
2019 : 28497 : gfc_symbol *derived, *der_type;
2020 : 28497 : match m = MATCH_YES;
2021 : 28497 : gfc_actual_arglist *decl_type_param_list = NULL;
2022 : 28497 : bool is_pdt_template = false;
2023 : :
2024 : 28497 : old_locus = gfc_current_locus;
2025 : :
2026 : 28497 : if (gfc_match ("%n", name) != MATCH_YES)
2027 : : {
2028 : 1 : gfc_current_locus = old_locus;
2029 : 1 : return MATCH_NO;
2030 : : }
2031 : :
2032 : 28496 : gfc_find_symbol (name, NULL, 1, &derived);
2033 : :
2034 : : /* Match the PDT spec list, if there. */
2035 : 28496 : if (derived && derived->attr.flavor == FL_PROCEDURE)
2036 : : {
2037 : 6479 : gfc_find_symbol (gfc_dt_upper_string (name), NULL, 1, &der_type);
2038 : 6479 : is_pdt_template = der_type
2039 : : && der_type->attr.flavor == FL_DERIVED
2040 : 6479 : && der_type->attr.pdt_template;
2041 : : }
2042 : :
2043 : 70 : if (is_pdt_template)
2044 : 70 : m = gfc_match_actual_arglist (1, &decl_type_param_list, true);
2045 : :
2046 : 5867 : if (m == MATCH_ERROR)
2047 : : {
2048 : 0 : gfc_free_actual_arglist (decl_type_param_list);
2049 : 0 : return m;
2050 : : }
2051 : :
2052 : 28496 : if (derived && derived->attr.flavor == FL_PROCEDURE && derived->attr.generic)
2053 : 4456 : derived = gfc_find_dt_in_generic (derived);
2054 : :
2055 : : /* If this is a PDT, find the specific instance. */
2056 : 28496 : if (m == MATCH_YES && is_pdt_template)
2057 : : {
2058 : 70 : gfc_namespace *old_ns;
2059 : :
2060 : 70 : old_ns = gfc_current_ns;
2061 : 107 : while (gfc_current_ns && gfc_current_ns->parent)
2062 : 37 : gfc_current_ns = gfc_current_ns->parent;
2063 : :
2064 : 70 : if (type_param_spec_list)
2065 : 0 : gfc_free_actual_arglist (type_param_spec_list);
2066 : 70 : m = gfc_get_pdt_instance (decl_type_param_list, &der_type,
2067 : : &type_param_spec_list);
2068 : 70 : gfc_free_actual_arglist (decl_type_param_list);
2069 : :
2070 : 70 : if (m != MATCH_YES)
2071 : : return m;
2072 : 69 : derived = der_type;
2073 : 69 : gcc_assert (!derived->attr.pdt_template && derived->attr.pdt_type);
2074 : 69 : gfc_set_sym_referenced (derived);
2075 : :
2076 : 69 : gfc_current_ns = old_ns;
2077 : : }
2078 : :
2079 : 28495 : if (derived && derived->attr.flavor == FL_DERIVED)
2080 : : {
2081 : 4431 : ts->type = BT_DERIVED;
2082 : 4431 : ts->u.derived = derived;
2083 : 4431 : return MATCH_YES;
2084 : : }
2085 : :
2086 : 24064 : gfc_current_locus = old_locus;
2087 : 24064 : return MATCH_NO;
2088 : : }
2089 : :
2090 : :
2091 : : /* Match a Fortran 2003 type-spec (F03:R401). This is similar to
2092 : : gfc_match_decl_type_spec() from decl.cc, with the following exceptions:
2093 : : It only includes the intrinsic types from the Fortran 2003 standard
2094 : : (thus, neither BYTE nor forms like REAL*4 are allowed). Additionally,
2095 : : the implicit_flag is not needed, so it was removed. Derived types are
2096 : : identified by their name alone. */
2097 : :
2098 : : match
2099 : 121377 : gfc_match_type_spec (gfc_typespec *ts)
2100 : : {
2101 : 121377 : match m;
2102 : 121377 : locus old_locus;
2103 : 121377 : char c, name[GFC_MAX_SYMBOL_LEN + 1];
2104 : :
2105 : 121377 : gfc_clear_ts (ts);
2106 : 121377 : gfc_gobble_whitespace ();
2107 : 121377 : old_locus = gfc_current_locus;
2108 : :
2109 : : /* If c isn't [a-z], then return immediately. */
2110 : 121377 : c = gfc_peek_ascii_char ();
2111 : 121377 : if (!ISALPHA(c))
2112 : : return MATCH_NO;
2113 : :
2114 : 28185 : type_param_spec_list = NULL;
2115 : :
2116 : 28185 : if (match_derived_type_spec (ts) == MATCH_YES)
2117 : : {
2118 : : /* Enforce F03:C401. */
2119 : 4123 : if (ts->u.derived->attr.abstract)
2120 : : {
2121 : 1 : gfc_error ("Derived type %qs at %L may not be ABSTRACT",
2122 : : ts->u.derived->name, &old_locus);
2123 : 1 : return MATCH_ERROR;
2124 : : }
2125 : : return MATCH_YES;
2126 : : }
2127 : :
2128 : 24062 : if (gfc_match ("integer") == MATCH_YES)
2129 : : {
2130 : 1299 : ts->type = BT_INTEGER;
2131 : 1299 : ts->kind = gfc_default_integer_kind;
2132 : 1299 : goto kind_selector;
2133 : : }
2134 : :
2135 : 22763 : if (gfc_match ("double precision") == MATCH_YES)
2136 : : {
2137 : 59 : ts->type = BT_REAL;
2138 : 59 : ts->kind = gfc_default_double_kind;
2139 : 59 : return MATCH_YES;
2140 : : }
2141 : :
2142 : 22704 : if (gfc_match ("complex") == MATCH_YES)
2143 : : {
2144 : 103 : ts->type = BT_COMPLEX;
2145 : 103 : ts->kind = gfc_default_complex_kind;
2146 : 103 : goto kind_selector;
2147 : : }
2148 : :
2149 : 22601 : if (gfc_match ("character") == MATCH_YES)
2150 : : {
2151 : 1859 : ts->type = BT_CHARACTER;
2152 : :
2153 : 1859 : m = gfc_match_char_spec (ts);
2154 : :
2155 : 1859 : if (m == MATCH_NO)
2156 : 0 : m = MATCH_YES;
2157 : :
2158 : 1859 : return m;
2159 : : }
2160 : :
2161 : : /* REAL is a real pain because it can be a type, intrinsic subprogram,
2162 : : or list item in a type-list of an OpenMP reduction clause. Need to
2163 : : differentiate REAL([KIND]=scalar-int-initialization-expr) from
2164 : : REAL(A,[KIND]) and REAL(KIND,A). Logically, when this code was
2165 : : written the use of LOGICAL as a type-spec or intrinsic subprogram
2166 : : was overlooked. */
2167 : :
2168 : 20742 : m = gfc_match (" %n", name);
2169 : 20742 : if (m == MATCH_YES
2170 : 20741 : && (strcmp (name, "real") == 0 || strcmp (name, "logical") == 0))
2171 : : {
2172 : 2154 : char c;
2173 : 2154 : gfc_expr *e;
2174 : 2154 : locus where;
2175 : :
2176 : 2154 : if (*name == 'r')
2177 : : {
2178 : 1832 : ts->type = BT_REAL;
2179 : 1832 : ts->kind = gfc_default_real_kind;
2180 : : }
2181 : : else
2182 : : {
2183 : 322 : ts->type = BT_LOGICAL;
2184 : 322 : ts->kind = gfc_default_logical_kind;
2185 : : }
2186 : :
2187 : 2154 : gfc_gobble_whitespace ();
2188 : :
2189 : : /* Prevent REAL*4, etc. */
2190 : 2154 : c = gfc_peek_ascii_char ();
2191 : 2154 : if (c == '*')
2192 : : {
2193 : 4 : gfc_error ("Invalid type-spec at %C");
2194 : 2154 : return MATCH_ERROR;
2195 : : }
2196 : :
2197 : : /* Found leading colon in REAL::, a trailing ')' in for example
2198 : : TYPE IS (REAL), or REAL, for an OpenMP list-item. */
2199 : 2150 : if (c == ':' || c == ')' || (flag_openmp && c == ','))
2200 : : return MATCH_YES;
2201 : :
2202 : : /* Found something other than the opening '(' in REAL(... */
2203 : 526 : if (c != '(')
2204 : : return MATCH_NO;
2205 : : else
2206 : 526 : gfc_next_char (); /* Burn the '('. */
2207 : :
2208 : : /* Look for the optional KIND=. */
2209 : 526 : where = gfc_current_locus;
2210 : 526 : m = gfc_match ("%n", name);
2211 : 526 : if (m == MATCH_YES)
2212 : : {
2213 : 384 : gfc_gobble_whitespace ();
2214 : 384 : c = gfc_next_char ();
2215 : 384 : if (c == '=')
2216 : : {
2217 : 144 : if (strcmp(name, "a") == 0 || strcmp(name, "l") == 0)
2218 : : return MATCH_NO;
2219 : 140 : else if (strcmp(name, "kind") == 0)
2220 : 140 : goto found;
2221 : : else
2222 : : return MATCH_ERROR;
2223 : : }
2224 : : else
2225 : 240 : gfc_current_locus = where;
2226 : : }
2227 : : else
2228 : 142 : gfc_current_locus = where;
2229 : :
2230 : 522 : found:
2231 : :
2232 : 522 : m = gfc_match_expr (&e);
2233 : 522 : if (m == MATCH_NO || m == MATCH_ERROR)
2234 : : return m;
2235 : :
2236 : : /* If a comma appears, it is an intrinsic subprogram. */
2237 : 522 : gfc_gobble_whitespace ();
2238 : 522 : c = gfc_peek_ascii_char ();
2239 : 522 : if (c == ',')
2240 : : {
2241 : 11 : gfc_free_expr (e);
2242 : 11 : return MATCH_NO;
2243 : : }
2244 : :
2245 : : /* If ')' appears, we have REAL(initialization-expr), here check for
2246 : : a scalar integer initialization-expr and valid kind parameter. */
2247 : 511 : if (c == ')')
2248 : : {
2249 : 511 : bool ok = true;
2250 : 511 : if (e->expr_type != EXPR_CONSTANT && e->expr_type != EXPR_VARIABLE)
2251 : 7 : ok = gfc_reduce_init_expr (e);
2252 : 511 : if (!ok || e->ts.type != BT_INTEGER || e->rank > 0)
2253 : : {
2254 : 3 : gfc_free_expr (e);
2255 : 3 : return MATCH_NO;
2256 : : }
2257 : :
2258 : 508 : if (e->expr_type != EXPR_CONSTANT)
2259 : 4 : goto ohno;
2260 : :
2261 : 504 : gfc_next_char (); /* Burn the ')'. */
2262 : 504 : ts->kind = (int) mpz_get_si (e->value.integer);
2263 : 504 : if (gfc_validate_kind (ts->type, ts->kind , true) == -1)
2264 : : {
2265 : 1 : gfc_error ("Invalid type-spec at %C");
2266 : 1 : return MATCH_ERROR;
2267 : : }
2268 : :
2269 : 503 : gfc_free_expr (e);
2270 : :
2271 : 503 : return MATCH_YES;
2272 : : }
2273 : : }
2274 : :
2275 : 18588 : ohno:
2276 : :
2277 : : /* If a type is not matched, simply return MATCH_NO. */
2278 : 18592 : gfc_current_locus = old_locus;
2279 : 18592 : return MATCH_NO;
2280 : :
2281 : 1402 : kind_selector:
2282 : :
2283 : 1402 : gfc_gobble_whitespace ();
2284 : :
2285 : : /* This prevents INTEGER*4, etc. */
2286 : 1402 : if (gfc_peek_ascii_char () == '*')
2287 : : {
2288 : 0 : gfc_error ("Invalid type-spec at %C");
2289 : 0 : return MATCH_ERROR;
2290 : : }
2291 : :
2292 : 1402 : m = gfc_match_kind_spec (ts, false);
2293 : :
2294 : : /* No kind specifier found. */
2295 : 1402 : if (m == MATCH_NO)
2296 : 5336 : m = MATCH_YES;
2297 : :
2298 : : return m;
2299 : : }
2300 : :
2301 : :
2302 : : /******************** FORALL subroutines ********************/
2303 : :
2304 : : /* Free a list of FORALL iterators. */
2305 : :
2306 : : void
2307 : 4821 : gfc_free_forall_iterator (gfc_forall_iterator *iter)
2308 : : {
2309 : 4821 : gfc_forall_iterator *next;
2310 : :
2311 : 9569 : while (iter)
2312 : : {
2313 : 4748 : next = iter->next;
2314 : 4748 : gfc_free_expr (iter->var);
2315 : 4748 : gfc_free_expr (iter->start);
2316 : 4748 : gfc_free_expr (iter->end);
2317 : 4748 : gfc_free_expr (iter->stride);
2318 : 4748 : free (iter);
2319 : 4748 : iter = next;
2320 : : }
2321 : 4821 : }
2322 : :
2323 : :
2324 : : /* Match an iterator as part of a FORALL statement. The format is:
2325 : :
2326 : : <var> = <start>:<end>[:<stride>]
2327 : :
2328 : : On MATCH_NO, the caller tests for the possibility that there is a
2329 : : scalar mask expression. */
2330 : :
2331 : : static match
2332 : 4748 : match_forall_iterator (gfc_forall_iterator **result)
2333 : : {
2334 : 4748 : gfc_forall_iterator *iter;
2335 : 4748 : locus where;
2336 : 4748 : match m;
2337 : :
2338 : 4748 : where = gfc_current_locus;
2339 : 4748 : iter = XCNEW (gfc_forall_iterator);
2340 : :
2341 : 4748 : m = gfc_match_expr (&iter->var);
2342 : 4748 : if (m != MATCH_YES)
2343 : 0 : goto cleanup;
2344 : :
2345 : 4748 : if (gfc_match_char ('=') != MATCH_YES
2346 : 4748 : || iter->var->expr_type != EXPR_VARIABLE)
2347 : : {
2348 : 749 : m = MATCH_NO;
2349 : 749 : goto cleanup;
2350 : : }
2351 : :
2352 : 3999 : m = gfc_match_expr (&iter->start);
2353 : 3999 : if (m != MATCH_YES)
2354 : 0 : goto cleanup;
2355 : :
2356 : 3999 : if (gfc_match_char (':') != MATCH_YES)
2357 : 0 : goto syntax;
2358 : :
2359 : 3999 : m = gfc_match_expr (&iter->end);
2360 : 3999 : if (m == MATCH_NO)
2361 : 0 : goto syntax;
2362 : 3999 : if (m == MATCH_ERROR)
2363 : 0 : goto cleanup;
2364 : :
2365 : 3999 : if (gfc_match_char (':') == MATCH_NO)
2366 : 3947 : iter->stride = gfc_get_int_expr (gfc_default_integer_kind, NULL, 1);
2367 : : else
2368 : : {
2369 : 52 : m = gfc_match_expr (&iter->stride);
2370 : 52 : if (m == MATCH_NO)
2371 : 0 : goto syntax;
2372 : 52 : if (m == MATCH_ERROR)
2373 : 0 : goto cleanup;
2374 : : }
2375 : :
2376 : : /* Mark the iteration variable's symbol as used as a FORALL index. */
2377 : 3999 : iter->var->symtree->n.sym->forall_index = true;
2378 : :
2379 : 3999 : *result = iter;
2380 : 3999 : return MATCH_YES;
2381 : :
2382 : 0 : syntax:
2383 : 0 : gfc_error ("Syntax error in FORALL iterator at %C");
2384 : 0 : m = MATCH_ERROR;
2385 : :
2386 : 749 : cleanup:
2387 : :
2388 : 749 : gfc_current_locus = where;
2389 : 749 : gfc_free_forall_iterator (iter);
2390 : 749 : return m;
2391 : : }
2392 : :
2393 : :
2394 : : /* Match the header of a FORALL statement. */
2395 : :
2396 : : static match
2397 : 2070 : match_forall_header (gfc_forall_iterator **phead, gfc_expr **mask)
2398 : : {
2399 : 2070 : gfc_forall_iterator *head, *tail, *new_iter;
2400 : 2070 : gfc_expr *msk;
2401 : 2070 : match m;
2402 : :
2403 : 2070 : gfc_gobble_whitespace ();
2404 : :
2405 : 2070 : head = tail = NULL;
2406 : 2070 : msk = NULL;
2407 : :
2408 : 2070 : if (gfc_match_char ('(') != MATCH_YES)
2409 : : return MATCH_NO;
2410 : :
2411 : 2070 : m = match_forall_iterator (&new_iter);
2412 : 2070 : if (m == MATCH_ERROR)
2413 : 0 : goto cleanup;
2414 : 2070 : if (m == MATCH_NO)
2415 : 0 : goto syntax;
2416 : :
2417 : 2070 : head = tail = new_iter;
2418 : :
2419 : 5928 : for (;;)
2420 : : {
2421 : 3999 : if (gfc_match_char (',') != MATCH_YES)
2422 : : break;
2423 : :
2424 : 2678 : m = match_forall_iterator (&new_iter);
2425 : 2678 : if (m == MATCH_ERROR)
2426 : 0 : goto cleanup;
2427 : :
2428 : 2678 : if (m == MATCH_YES)
2429 : : {
2430 : 1929 : tail->next = new_iter;
2431 : 1929 : tail = new_iter;
2432 : 1929 : continue;
2433 : : }
2434 : :
2435 : : /* Have to have a mask expression. */
2436 : :
2437 : 749 : m = gfc_match_expr (&msk);
2438 : 749 : if (m == MATCH_NO)
2439 : 0 : goto syntax;
2440 : 749 : if (m == MATCH_ERROR)
2441 : 0 : goto cleanup;
2442 : :
2443 : : break;
2444 : : }
2445 : :
2446 : 2070 : if (gfc_match_char (')') == MATCH_NO)
2447 : 0 : goto syntax;
2448 : :
2449 : 2070 : *phead = head;
2450 : 2070 : *mask = msk;
2451 : 2070 : return MATCH_YES;
2452 : :
2453 : 0 : syntax:
2454 : 0 : gfc_syntax_error (ST_FORALL);
2455 : :
2456 : 0 : cleanup:
2457 : 0 : gfc_free_expr (msk);
2458 : 0 : gfc_free_forall_iterator (head);
2459 : :
2460 : 0 : return MATCH_ERROR;
2461 : : }
2462 : :
2463 : : /* Match the rest of a simple FORALL statement that follows an
2464 : : IF statement. */
2465 : :
2466 : : static match
2467 : 6 : match_simple_forall (void)
2468 : : {
2469 : 6 : gfc_forall_iterator *head;
2470 : 6 : gfc_expr *mask;
2471 : 6 : gfc_code *c;
2472 : 6 : match m;
2473 : :
2474 : 6 : mask = NULL;
2475 : 6 : head = NULL;
2476 : 6 : c = NULL;
2477 : :
2478 : 6 : m = match_forall_header (&head, &mask);
2479 : :
2480 : 6 : if (m == MATCH_NO)
2481 : 0 : goto syntax;
2482 : 6 : if (m != MATCH_YES)
2483 : 0 : goto cleanup;
2484 : :
2485 : 6 : m = gfc_match_assignment ();
2486 : :
2487 : 6 : if (m == MATCH_ERROR)
2488 : 0 : goto cleanup;
2489 : 6 : if (m == MATCH_NO)
2490 : : {
2491 : 0 : m = gfc_match_pointer_assignment ();
2492 : 0 : if (m == MATCH_ERROR)
2493 : 0 : goto cleanup;
2494 : 0 : if (m == MATCH_NO)
2495 : 0 : goto syntax;
2496 : : }
2497 : :
2498 : 6 : c = XCNEW (gfc_code);
2499 : 6 : *c = new_st;
2500 : 6 : c->loc = gfc_current_locus;
2501 : :
2502 : 6 : if (gfc_match_eos () != MATCH_YES)
2503 : 0 : goto syntax;
2504 : :
2505 : 6 : gfc_clear_new_st ();
2506 : 6 : new_st.op = EXEC_FORALL;
2507 : 6 : new_st.expr1 = mask;
2508 : 6 : new_st.ext.forall_iterator = head;
2509 : 6 : new_st.block = gfc_get_code (EXEC_FORALL);
2510 : 6 : new_st.block->next = c;
2511 : :
2512 : 6 : return MATCH_YES;
2513 : :
2514 : 0 : syntax:
2515 : 0 : gfc_syntax_error (ST_FORALL);
2516 : :
2517 : 0 : cleanup:
2518 : 0 : gfc_free_forall_iterator (head);
2519 : 0 : gfc_free_expr (mask);
2520 : :
2521 : 0 : return MATCH_ERROR;
2522 : : }
2523 : :
2524 : :
2525 : : /* Match a FORALL statement. */
2526 : :
2527 : : match
2528 : 482537 : gfc_match_forall (gfc_statement *st)
2529 : : {
2530 : 482537 : gfc_forall_iterator *head;
2531 : 482537 : gfc_expr *mask;
2532 : 482537 : gfc_code *c;
2533 : 482537 : match m0, m;
2534 : :
2535 : 482537 : head = NULL;
2536 : 482537 : mask = NULL;
2537 : 482537 : c = NULL;
2538 : :
2539 : 482537 : m0 = gfc_match_label ();
2540 : 482537 : if (m0 == MATCH_ERROR)
2541 : : return MATCH_ERROR;
2542 : :
2543 : 482529 : m = gfc_match (" forall");
2544 : 482529 : if (m != MATCH_YES)
2545 : : return m;
2546 : :
2547 : 1996 : m = match_forall_header (&head, &mask);
2548 : 1996 : if (m == MATCH_ERROR)
2549 : 0 : goto cleanup;
2550 : 1996 : if (m == MATCH_NO)
2551 : 0 : goto syntax;
2552 : :
2553 : 1996 : if (gfc_match_eos () == MATCH_YES)
2554 : : {
2555 : 511 : *st = ST_FORALL_BLOCK;
2556 : 511 : new_st.op = EXEC_FORALL;
2557 : 511 : new_st.expr1 = mask;
2558 : 511 : new_st.ext.forall_iterator = head;
2559 : 511 : return MATCH_YES;
2560 : : }
2561 : :
2562 : 1485 : m = gfc_match_assignment ();
2563 : 1485 : if (m == MATCH_ERROR)
2564 : 0 : goto cleanup;
2565 : 1485 : if (m == MATCH_NO)
2566 : : {
2567 : 0 : m = gfc_match_pointer_assignment ();
2568 : 0 : if (m == MATCH_ERROR)
2569 : 0 : goto cleanup;
2570 : 0 : if (m == MATCH_NO)
2571 : 0 : goto syntax;
2572 : : }
2573 : :
2574 : 1485 : c = XCNEW (gfc_code);
2575 : 1485 : *c = new_st;
2576 : 1485 : c->loc = gfc_current_locus;
2577 : :
2578 : 1485 : gfc_clear_new_st ();
2579 : 1485 : new_st.op = EXEC_FORALL;
2580 : 1485 : new_st.expr1 = mask;
2581 : 1485 : new_st.ext.forall_iterator = head;
2582 : 1485 : new_st.block = gfc_get_code (EXEC_FORALL);
2583 : 1485 : new_st.block->next = c;
2584 : :
2585 : 1485 : *st = ST_FORALL;
2586 : 1485 : return MATCH_YES;
2587 : :
2588 : 0 : syntax:
2589 : 0 : gfc_syntax_error (ST_FORALL);
2590 : :
2591 : 0 : cleanup:
2592 : 0 : gfc_free_forall_iterator (head);
2593 : 0 : gfc_free_expr (mask);
2594 : 0 : gfc_free_statements (c);
2595 : 0 : return MATCH_NO;
2596 : : }
2597 : :
2598 : :
2599 : : /* Match a DO statement. */
2600 : :
2601 : : match
2602 : 480522 : gfc_match_do (void)
2603 : : {
2604 : 480522 : gfc_iterator iter, *ip;
2605 : 480522 : locus old_loc;
2606 : 480522 : gfc_st_label *label;
2607 : 480522 : match m;
2608 : :
2609 : 480522 : old_loc = gfc_current_locus;
2610 : :
2611 : 480522 : memset (&iter, '\0', sizeof (gfc_iterator));
2612 : 480522 : label = NULL;
2613 : :
2614 : 480522 : m = gfc_match_label ();
2615 : 480522 : if (m == MATCH_ERROR)
2616 : : return m;
2617 : :
2618 : 480514 : if (gfc_match (" do") != MATCH_YES)
2619 : : return MATCH_NO;
2620 : :
2621 : 31002 : m = gfc_match_st_label (&label);
2622 : 31002 : if (m == MATCH_ERROR)
2623 : 0 : goto cleanup;
2624 : :
2625 : : /* Match an infinite DO, make it like a DO WHILE(.TRUE.). */
2626 : :
2627 : 31002 : if (gfc_match_eos () == MATCH_YES)
2628 : : {
2629 : 242 : iter.end = gfc_get_logical_expr (gfc_default_logical_kind, NULL, true);
2630 : 242 : new_st.op = EXEC_DO_WHILE;
2631 : 242 : goto done;
2632 : : }
2633 : :
2634 : : /* Match an optional comma, if no comma is found, a space is obligatory. */
2635 : 30760 : if (gfc_match_char (',') != MATCH_YES && gfc_match ("% ") != MATCH_YES)
2636 : : return MATCH_NO;
2637 : :
2638 : : /* Check for balanced parens. */
2639 : :
2640 : 30760 : if (gfc_match_parens () == MATCH_ERROR)
2641 : : return MATCH_ERROR;
2642 : :
2643 : 30758 : if (gfc_match (" concurrent") == MATCH_YES)
2644 : : {
2645 : 68 : gfc_forall_iterator *head;
2646 : 68 : gfc_expr *mask;
2647 : :
2648 : 68 : if (!gfc_notify_std (GFC_STD_F2008, "DO CONCURRENT construct at %C"))
2649 : : return MATCH_ERROR;
2650 : :
2651 : :
2652 : 68 : mask = NULL;
2653 : 68 : head = NULL;
2654 : 68 : m = match_forall_header (&head, &mask);
2655 : :
2656 : 68 : if (m == MATCH_NO)
2657 : : return m;
2658 : 68 : if (m == MATCH_ERROR)
2659 : 0 : goto concurr_cleanup;
2660 : :
2661 : 68 : if (gfc_match_eos () != MATCH_YES)
2662 : 0 : goto concurr_cleanup;
2663 : :
2664 : 68 : if (label != NULL
2665 : 68 : && !gfc_reference_st_label (label, ST_LABEL_DO_TARGET))
2666 : 0 : goto concurr_cleanup;
2667 : :
2668 : 68 : new_st.label1 = label;
2669 : 68 : new_st.op = EXEC_DO_CONCURRENT;
2670 : 68 : new_st.expr1 = mask;
2671 : 68 : new_st.ext.forall_iterator = head;
2672 : :
2673 : 68 : return MATCH_YES;
2674 : :
2675 : 0 : concurr_cleanup:
2676 : 0 : gfc_syntax_error (ST_DO);
2677 : 0 : gfc_free_expr (mask);
2678 : 0 : gfc_free_forall_iterator (head);
2679 : 0 : return MATCH_ERROR;
2680 : : }
2681 : :
2682 : : /* See if we have a DO WHILE. */
2683 : 30690 : if (gfc_match (" while ( %e )%t", &iter.end) == MATCH_YES)
2684 : : {
2685 : 282 : new_st.op = EXEC_DO_WHILE;
2686 : 282 : goto done;
2687 : : }
2688 : :
2689 : : /* The abortive DO WHILE may have done something to the symbol
2690 : : table, so we start over. */
2691 : 30408 : gfc_undo_symbols ();
2692 : 30408 : gfc_current_locus = old_loc;
2693 : :
2694 : 30408 : gfc_match_label (); /* This won't error. */
2695 : 30408 : gfc_match (" do "); /* This will work. */
2696 : :
2697 : 30408 : gfc_match_st_label (&label); /* Can't error out. */
2698 : 30408 : gfc_match_char (','); /* Optional comma. */
2699 : :
2700 : 30408 : m = gfc_match_iterator (&iter, 0);
2701 : 30408 : if (m == MATCH_NO)
2702 : : return MATCH_NO;
2703 : 30407 : if (m == MATCH_ERROR)
2704 : 5 : goto cleanup;
2705 : :
2706 : 30402 : iter.var->symtree->n.sym->attr.implied_index = 0;
2707 : 30402 : gfc_check_do_variable (iter.var->symtree);
2708 : :
2709 : 30402 : if (gfc_match_eos () != MATCH_YES)
2710 : : {
2711 : 0 : gfc_syntax_error (ST_DO);
2712 : 0 : goto cleanup;
2713 : : }
2714 : :
2715 : 30402 : new_st.op = EXEC_DO;
2716 : :
2717 : 30926 : done:
2718 : 30926 : if (label != NULL
2719 : 30926 : && !gfc_reference_st_label (label, ST_LABEL_DO_TARGET))
2720 : 0 : goto cleanup;
2721 : :
2722 : 30926 : new_st.label1 = label;
2723 : :
2724 : 30926 : if (new_st.op == EXEC_DO_WHILE)
2725 : 524 : new_st.expr1 = iter.end;
2726 : : else
2727 : : {
2728 : 30402 : new_st.ext.iterator = ip = gfc_get_iterator ();
2729 : 30402 : *ip = iter;
2730 : : }
2731 : :
2732 : : return MATCH_YES;
2733 : :
2734 : 5 : cleanup:
2735 : 5 : gfc_free_iterator (&iter, 0);
2736 : :
2737 : 5 : return MATCH_ERROR;
2738 : : }
2739 : :
2740 : :
2741 : : /* Match an EXIT or CYCLE statement. */
2742 : :
2743 : : static match
2744 : 739 : match_exit_cycle (gfc_statement st, gfc_exec_op op)
2745 : : {
2746 : 739 : gfc_state_data *p, *o;
2747 : 739 : gfc_symbol *sym;
2748 : 739 : match m;
2749 : 739 : int cnt;
2750 : :
2751 : 739 : if (gfc_match_eos () == MATCH_YES)
2752 : : sym = NULL;
2753 : : else
2754 : : {
2755 : 237 : char name[GFC_MAX_SYMBOL_LEN + 1];
2756 : 237 : gfc_symtree* stree;
2757 : :
2758 : 237 : m = gfc_match ("% %n%t", name);
2759 : 237 : if (m == MATCH_ERROR)
2760 : 3 : return MATCH_ERROR;
2761 : 237 : if (m == MATCH_NO)
2762 : : {
2763 : 0 : gfc_syntax_error (st);
2764 : 0 : return MATCH_ERROR;
2765 : : }
2766 : :
2767 : : /* Find the corresponding symbol. If there's a BLOCK statement
2768 : : between here and the label, it is not in gfc_current_ns but a parent
2769 : : namespace! */
2770 : 237 : stree = gfc_find_symtree_in_proc (name, gfc_current_ns);
2771 : 237 : if (!stree)
2772 : : {
2773 : 2 : gfc_error ("Name %qs in %s statement at %C is unknown",
2774 : : name, gfc_ascii_statement (st));
2775 : 2 : return MATCH_ERROR;
2776 : : }
2777 : :
2778 : 235 : sym = stree->n.sym;
2779 : 235 : if (sym->attr.flavor != FL_LABEL)
2780 : : {
2781 : 1 : gfc_error ("Name %qs in %s statement at %C is not a construct name",
2782 : : name, gfc_ascii_statement (st));
2783 : 1 : return MATCH_ERROR;
2784 : : }
2785 : : }
2786 : :
2787 : : /* Find the loop specified by the label (or lack of a label). */
2788 : 1069 : for (o = NULL, p = gfc_state_stack; p; p = p->previous)
2789 : 1067 : if (o == NULL && p->state == COMP_OMP_STRUCTURED_BLOCK)
2790 : : o = p;
2791 : 1064 : else if (p->state == COMP_CRITICAL)
2792 : : {
2793 : 3 : gfc_error("%s statement at %C leaves CRITICAL construct",
2794 : : gfc_ascii_statement (st));
2795 : 3 : return MATCH_ERROR;
2796 : : }
2797 : 1061 : else if (p->state == COMP_DO_CONCURRENT
2798 : 11 : && (op == EXEC_EXIT || (sym && sym != p->sym)))
2799 : : {
2800 : : /* F2008, C821 & C845. */
2801 : 3 : gfc_error("%s statement at %C leaves DO CONCURRENT construct",
2802 : : gfc_ascii_statement (st));
2803 : 3 : return MATCH_ERROR;
2804 : : }
2805 : 1051 : else if ((sym && sym == p->sym)
2806 : 829 : || (!sym && (p->state == COMP_DO
2807 : 211 : || p->state == COMP_DO_CONCURRENT)))
2808 : : break;
2809 : :
2810 : 730 : if (p == NULL)
2811 : : {
2812 : 2 : if (sym == NULL)
2813 : 1 : gfc_error ("%s statement at %C is not within a construct",
2814 : : gfc_ascii_statement (st));
2815 : : else
2816 : 1 : gfc_error ("%s statement at %C is not within construct %qs",
2817 : : gfc_ascii_statement (st), sym->name);
2818 : :
2819 : 2 : return MATCH_ERROR;
2820 : : }
2821 : :
2822 : : /* Special checks for EXIT from non-loop constructs. */
2823 : 728 : switch (p->state)
2824 : : {
2825 : : case COMP_DO:
2826 : : case COMP_DO_CONCURRENT:
2827 : : break;
2828 : :
2829 : 0 : case COMP_CRITICAL:
2830 : : /* This is already handled above. */
2831 : 0 : gcc_unreachable ();
2832 : :
2833 : 90 : case COMP_ASSOCIATE:
2834 : 90 : case COMP_BLOCK:
2835 : 90 : case COMP_IF:
2836 : 90 : case COMP_SELECT:
2837 : 90 : case COMP_SELECT_TYPE:
2838 : 90 : case COMP_SELECT_RANK:
2839 : 90 : gcc_assert (sym);
2840 : 90 : if (op == EXEC_CYCLE)
2841 : : {
2842 : 2 : gfc_error ("CYCLE statement at %C is not applicable to non-loop"
2843 : : " construct %qs", sym->name);
2844 : 2 : return MATCH_ERROR;
2845 : : }
2846 : 88 : gcc_assert (op == EXEC_EXIT);
2847 : 88 : if (!gfc_notify_std (GFC_STD_F2008, "EXIT statement with no"
2848 : : " do-construct-name at %C"))
2849 : : return MATCH_ERROR;
2850 : : break;
2851 : :
2852 : 1 : default:
2853 : 1 : gfc_error ("%s statement at %C is not applicable to construct %qs",
2854 : : gfc_ascii_statement (st), sym->name);
2855 : 1 : return MATCH_ERROR;
2856 : : }
2857 : :
2858 : 724 : if (o != NULL)
2859 : : {
2860 : 3 : gfc_error (is_oacc (p)
2861 : : ? G_("%s statement at %C leaving OpenACC structured block")
2862 : : : G_("%s statement at %C leaving OpenMP structured block"),
2863 : : gfc_ascii_statement (st));
2864 : 3 : return MATCH_ERROR;
2865 : : }
2866 : :
2867 : 1520 : for (o = p, cnt = 0; o->state == COMP_DO && o->previous != NULL; cnt++)
2868 : 799 : o = o->previous;
2869 : :
2870 : 721 : int count = 1;
2871 : 721 : if (cnt > 0
2872 : 721 : && o != NULL
2873 : 626 : && o->state == COMP_OMP_STRUCTURED_BLOCK)
2874 : 150 : switch (o->head->op)
2875 : : {
2876 : 20 : case EXEC_OACC_LOOP:
2877 : 20 : case EXEC_OACC_KERNELS_LOOP:
2878 : 20 : case EXEC_OACC_PARALLEL_LOOP:
2879 : 20 : case EXEC_OACC_SERIAL_LOOP:
2880 : 20 : gcc_assert (o->head->next != NULL
2881 : : && (o->head->next->op == EXEC_DO
2882 : : || o->head->next->op == EXEC_DO_WHILE)
2883 : : && o->previous != NULL
2884 : : && o->previous->tail->op == o->head->op);
2885 : 20 : if (o->previous->tail->ext.omp_clauses != NULL)
2886 : : {
2887 : : /* Both collapsed and tiled loops are lowered the same way, but are
2888 : : not compatible. In gfc_trans_omp_do, the tile is prioritized. */
2889 : 20 : if (o->previous->tail->ext.omp_clauses->tile_list)
2890 : : {
2891 : : count = 0;
2892 : : gfc_expr_list *el
2893 : : = o->previous->tail->ext.omp_clauses->tile_list;
2894 : 6 : for ( ; el; el = el->next)
2895 : 4 : ++count;
2896 : : }
2897 : 18 : else if (o->previous->tail->ext.omp_clauses->collapse > 1)
2898 : 20 : count = o->previous->tail->ext.omp_clauses->collapse;
2899 : : }
2900 : 20 : if (st == ST_EXIT && cnt <= count)
2901 : : {
2902 : 14 : gfc_error ("EXIT statement at %C terminating !$ACC LOOP loop");
2903 : 14 : return MATCH_ERROR;
2904 : : }
2905 : 6 : if (st == ST_CYCLE && cnt < count)
2906 : : {
2907 : 4 : gfc_error (o->previous->tail->ext.omp_clauses->tile_list
2908 : : ? G_("CYCLE statement at %C to non-innermost tiled "
2909 : : "!$ACC LOOP loop")
2910 : : : G_("CYCLE statement at %C to non-innermost collapsed "
2911 : : "!$ACC LOOP loop"));
2912 : 4 : return MATCH_ERROR;
2913 : : }
2914 : : break;
2915 : 127 : case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
2916 : 127 : case EXEC_OMP_TARGET_PARALLEL_DO_SIMD:
2917 : 127 : case EXEC_OMP_TARGET_SIMD:
2918 : 127 : case EXEC_OMP_TASKLOOP_SIMD:
2919 : 127 : case EXEC_OMP_PARALLEL_MASTER_TASKLOOP_SIMD:
2920 : 127 : case EXEC_OMP_MASTER_TASKLOOP_SIMD:
2921 : 127 : case EXEC_OMP_PARALLEL_MASKED_TASKLOOP_SIMD:
2922 : 127 : case EXEC_OMP_MASKED_TASKLOOP_SIMD:
2923 : 127 : case EXEC_OMP_PARALLEL_DO_SIMD:
2924 : 127 : case EXEC_OMP_DISTRIBUTE_SIMD:
2925 : 127 : case EXEC_OMP_DISTRIBUTE_PARALLEL_DO_SIMD:
2926 : 127 : case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD:
2927 : 127 : case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD:
2928 : 127 : case EXEC_OMP_LOOP:
2929 : 127 : case EXEC_OMP_PARALLEL_LOOP:
2930 : 127 : case EXEC_OMP_TEAMS_LOOP:
2931 : 127 : case EXEC_OMP_TARGET_PARALLEL_LOOP:
2932 : 127 : case EXEC_OMP_TARGET_TEAMS_LOOP:
2933 : 127 : case EXEC_OMP_DO:
2934 : 127 : case EXEC_OMP_PARALLEL_DO:
2935 : 127 : case EXEC_OMP_SIMD:
2936 : 127 : case EXEC_OMP_DO_SIMD:
2937 : 127 : case EXEC_OMP_DISTRIBUTE_PARALLEL_DO:
2938 : 127 : case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO:
2939 : 127 : case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO:
2940 : 127 : case EXEC_OMP_TARGET_PARALLEL_DO:
2941 : 127 : case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
2942 : :
2943 : 127 : gcc_assert (o->head->next != NULL
2944 : : && (o->head->next->op == EXEC_DO
2945 : : || o->head->next->op == EXEC_DO_WHILE)
2946 : : && o->previous != NULL
2947 : : && o->previous->tail->op == o->head->op);
2948 : 127 : if (o->previous->tail->ext.omp_clauses != NULL)
2949 : : {
2950 : 127 : if (o->previous->tail->ext.omp_clauses->collapse > 1)
2951 : : count = o->previous->tail->ext.omp_clauses->collapse;
2952 : 127 : if (o->previous->tail->ext.omp_clauses->orderedc)
2953 : 0 : count = o->previous->tail->ext.omp_clauses->orderedc;
2954 : : }
2955 : 127 : if (st == ST_EXIT && cnt <= count)
2956 : : {
2957 : 63 : gfc_error ("EXIT statement at %C terminating !$OMP DO loop");
2958 : 63 : return MATCH_ERROR;
2959 : : }
2960 : 64 : if (st == ST_CYCLE && cnt < count)
2961 : : {
2962 : 3 : gfc_error ("CYCLE statement at %C to non-innermost collapsed "
2963 : : "!$OMP DO loop");
2964 : 3 : return MATCH_ERROR;
2965 : : }
2966 : : break;
2967 : : default:
2968 : : break;
2969 : : }
2970 : :
2971 : : /* Save the first statement in the construct - needed by the backend. */
2972 : 637 : new_st.ext.which_construct = p->construct;
2973 : :
2974 : 637 : new_st.op = op;
2975 : :
2976 : 637 : return MATCH_YES;
2977 : : }
2978 : :
2979 : :
2980 : : /* Match the EXIT statement. */
2981 : :
2982 : : match
2983 : 612 : gfc_match_exit (void)
2984 : : {
2985 : 612 : return match_exit_cycle (ST_EXIT, EXEC_EXIT);
2986 : : }
2987 : :
2988 : :
2989 : : /* Match the CYCLE statement. */
2990 : :
2991 : : match
2992 : 127 : gfc_match_cycle (void)
2993 : : {
2994 : 127 : return match_exit_cycle (ST_CYCLE, EXEC_CYCLE);
2995 : : }
2996 : :
2997 : :
2998 : : /* Match a stop-code after an (ERROR) STOP or PAUSE statement. The
2999 : : requirements for a stop-code differ in the standards.
3000 : :
3001 : : Fortran 95 has
3002 : :
3003 : : R840 stop-stmt is STOP [ stop-code ]
3004 : : R841 stop-code is scalar-char-constant
3005 : : or digit [ digit [ digit [ digit [ digit ] ] ] ]
3006 : :
3007 : : Fortran 2003 matches Fortran 95 except R840 and R841 are now R849 and R850.
3008 : : Fortran 2008 has
3009 : :
3010 : : R855 stop-stmt is STOP [ stop-code ]
3011 : : R856 allstop-stmt is ALL STOP [ stop-code ]
3012 : : R857 stop-code is scalar-default-char-constant-expr
3013 : : or scalar-int-constant-expr
3014 : : Fortran 2018 has
3015 : :
3016 : : R1160 stop-stmt is STOP [ stop-code ] [ , QUIET = scalar-logical-expr]
3017 : : R1161 error-stop-stmt is
3018 : : ERROR STOP [ stop-code ] [ , QUIET = scalar-logical-expr]
3019 : : R1162 stop-code is scalar-default-char-expr
3020 : : or scalar-int-expr
3021 : :
3022 : : For free-form source code, all standards contain a statement of the form:
3023 : :
3024 : : A blank shall be used to separate names, constants, or labels from
3025 : : adjacent keywords, names, constants, or labels.
3026 : :
3027 : : A stop-code is not a name, constant, or label. So, under Fortran 95 and 2003,
3028 : :
3029 : : STOP123
3030 : :
3031 : : is valid, but it is invalid Fortran 2008. */
3032 : :
3033 : : static match
3034 : 182772 : gfc_match_stopcode (gfc_statement st)
3035 : : {
3036 : 182772 : gfc_expr *e = NULL;
3037 : 182772 : gfc_expr *quiet = NULL;
3038 : 182772 : match m;
3039 : 182772 : bool f95, f03, f08;
3040 : 182772 : char c;
3041 : :
3042 : : /* Set f95 for -std=f95. */
3043 : 182772 : f95 = (gfc_option.allow_std == GFC_STD_OPT_F95);
3044 : :
3045 : : /* Set f03 for -std=f2003. */
3046 : 182772 : f03 = (gfc_option.allow_std == GFC_STD_OPT_F03);
3047 : :
3048 : : /* Set f08 for -std=f2008. */
3049 : 182772 : f08 = (gfc_option.allow_std == GFC_STD_OPT_F08);
3050 : :
3051 : : /* Plain STOP statement? */
3052 : 182772 : if (gfc_match_eos () == MATCH_YES)
3053 : 4988 : goto checks;
3054 : :
3055 : : /* Look for a blank between STOP and the stop-code for F2008 or later.
3056 : : But allow for F2018's ,QUIET= specifier. */
3057 : 177784 : c = gfc_peek_ascii_char ();
3058 : :
3059 : 177784 : if (gfc_current_form != FORM_FIXED && !(f95 || f03) && c != ',')
3060 : : {
3061 : : /* Look for end-of-statement. There is no stop-code. */
3062 : : if (c == '\n' || c == '!' || c == ';')
3063 : 0 : goto done;
3064 : :
3065 : : if (c != ' ')
3066 : : {
3067 : 3 : gfc_error ("Blank required in %s statement near %C",
3068 : : gfc_ascii_statement (st));
3069 : 3 : return MATCH_ERROR;
3070 : : }
3071 : : }
3072 : :
3073 : 5012 : if (c == ' ')
3074 : : {
3075 : 173375 : gfc_gobble_whitespace ();
3076 : 173375 : c = gfc_peek_ascii_char ();
3077 : : }
3078 : 177781 : if (c != ',')
3079 : : {
3080 : 177777 : int stopcode;
3081 : 177777 : locus old_locus;
3082 : :
3083 : : /* First look for the F95 or F2003 digit [...] construct. */
3084 : 177777 : old_locus = gfc_current_locus;
3085 : 177777 : m = gfc_match_small_int (&stopcode);
3086 : 177777 : if (m == MATCH_YES && (f95 || f03))
3087 : : {
3088 : 611 : if (stopcode < 0)
3089 : : {
3090 : 2 : gfc_error ("STOP code at %C cannot be negative");
3091 : 4 : return MATCH_ERROR;
3092 : : }
3093 : :
3094 : 609 : if (stopcode > 99999)
3095 : : {
3096 : 2 : gfc_error ("STOP code at %C contains too many digits");
3097 : 2 : return MATCH_ERROR;
3098 : : }
3099 : : }
3100 : :
3101 : : /* Reset the locus and now load gfc_expr. */
3102 : 177773 : gfc_current_locus = old_locus;
3103 : 177773 : m = gfc_match_expr (&e);
3104 : 177773 : if (m == MATCH_ERROR)
3105 : 0 : goto cleanup;
3106 : 177773 : if (m == MATCH_NO)
3107 : 0 : goto syntax;
3108 : : }
3109 : :
3110 : 177777 : if (gfc_match (" , quiet = %e", &quiet) == MATCH_YES)
3111 : : {
3112 : 38 : if (!gfc_notify_std (GFC_STD_F2018, "QUIET= specifier for %s at %L",
3113 : 38 : gfc_ascii_statement (st), &quiet->where))
3114 : 0 : goto cleanup;
3115 : : }
3116 : :
3117 : 177777 : if (gfc_match_eos () != MATCH_YES)
3118 : 1 : goto syntax;
3119 : :
3120 : 177776 : checks:
3121 : :
3122 : 182764 : if (gfc_pure (NULL))
3123 : : {
3124 : 123 : if (st == ST_ERROR_STOP)
3125 : : {
3126 : 123 : if (!gfc_notify_std (GFC_STD_F2018, "%s statement at %C in PURE "
3127 : : "procedure", gfc_ascii_statement (st)))
3128 : 1 : goto cleanup;
3129 : : }
3130 : : else
3131 : : {
3132 : 0 : gfc_error ("%s statement not allowed in PURE procedure at %C",
3133 : : gfc_ascii_statement (st));
3134 : 0 : goto cleanup;
3135 : : }
3136 : : }
3137 : :
3138 : 182763 : gfc_unset_implicit_pure (NULL);
3139 : :
3140 : 182763 : if (st == ST_STOP && gfc_find_state (COMP_CRITICAL))
3141 : : {
3142 : 1 : gfc_error ("Image control statement STOP at %C in CRITICAL block");
3143 : 1 : goto cleanup;
3144 : : }
3145 : 182762 : if (st == ST_STOP && gfc_find_state (COMP_DO_CONCURRENT))
3146 : : {
3147 : 1 : gfc_error ("Image control statement STOP at %C in DO CONCURRENT block");
3148 : 1 : goto cleanup;
3149 : : }
3150 : :
3151 : 182761 : if (e != NULL)
3152 : : {
3153 : 177770 : if (!gfc_simplify_expr (e, 0))
3154 : 1 : goto cleanup;
3155 : :
3156 : : /* Test for F95 and F2003 style STOP stop-code. */
3157 : 177769 : if (e->expr_type != EXPR_CONSTANT && (f95 || f03))
3158 : : {
3159 : 0 : gfc_error ("STOP code at %L must be a scalar CHARACTER constant "
3160 : : "or digit[digit[digit[digit[digit]]]]", &e->where);
3161 : 0 : goto cleanup;
3162 : : }
3163 : :
3164 : : /* Use the machinery for an initialization expression to reduce the
3165 : : stop-code to a constant. */
3166 : 177769 : gfc_reduce_init_expr (e);
3167 : :
3168 : : /* Test for F2008 style STOP stop-code. */
3169 : 177769 : if (e->expr_type != EXPR_CONSTANT && f08)
3170 : : {
3171 : 1 : gfc_error ("STOP code at %L must be a scalar default CHARACTER or "
3172 : : "INTEGER constant expression", &e->where);
3173 : 1 : goto cleanup;
3174 : : }
3175 : :
3176 : 177768 : if (!(e->ts.type == BT_CHARACTER || e->ts.type == BT_INTEGER))
3177 : : {
3178 : 2 : gfc_error ("STOP code at %L must be either INTEGER or CHARACTER type",
3179 : : &e->where);
3180 : 2 : goto cleanup;
3181 : : }
3182 : :
3183 : 177766 : if (e->rank != 0)
3184 : : {
3185 : 1 : gfc_error ("STOP code at %L must be scalar", &e->where);
3186 : 1 : goto cleanup;
3187 : : }
3188 : :
3189 : 177765 : if (e->ts.type == BT_CHARACTER
3190 : 410 : && e->ts.kind != gfc_default_character_kind)
3191 : : {
3192 : 0 : gfc_error ("STOP code at %L must be default character KIND=%d",
3193 : : &e->where, (int) gfc_default_character_kind);
3194 : 0 : goto cleanup;
3195 : : }
3196 : :
3197 : 177355 : if (e->ts.type == BT_INTEGER && e->ts.kind != gfc_default_integer_kind
3198 : 177773 : && !gfc_notify_std (GFC_STD_F2018,
3199 : : "STOP code at %L must be default integer KIND=%d",
3200 : : &e->where, (int) gfc_default_integer_kind))
3201 : 0 : goto cleanup;
3202 : : }
3203 : :
3204 : 182756 : if (quiet != NULL)
3205 : : {
3206 : 38 : if (!gfc_simplify_expr (quiet, 0))
3207 : 0 : goto cleanup;
3208 : :
3209 : 38 : if (quiet->rank != 0)
3210 : : {
3211 : 1 : gfc_error ("QUIET specifier at %L must be a scalar LOGICAL",
3212 : : &quiet->where);
3213 : 1 : goto cleanup;
3214 : : }
3215 : : }
3216 : :
3217 : 182718 : done:
3218 : :
3219 : 182755 : switch (st)
3220 : : {
3221 : 164371 : case ST_STOP:
3222 : 164371 : new_st.op = EXEC_STOP;
3223 : 164371 : break;
3224 : 18356 : case ST_ERROR_STOP:
3225 : 18356 : new_st.op = EXEC_ERROR_STOP;
3226 : 18356 : break;
3227 : 28 : case ST_PAUSE:
3228 : 28 : new_st.op = EXEC_PAUSE;
3229 : 28 : break;
3230 : 0 : default:
3231 : 0 : gcc_unreachable ();
3232 : : }
3233 : :
3234 : 182755 : new_st.expr1 = e;
3235 : 182755 : new_st.expr2 = quiet;
3236 : 182755 : new_st.ext.stop_code = -1;
3237 : :
3238 : 182755 : return MATCH_YES;
3239 : :
3240 : 1 : syntax:
3241 : 1 : gfc_syntax_error (st);
3242 : :
3243 : 10 : cleanup:
3244 : :
3245 : 10 : gfc_free_expr (e);
3246 : 10 : gfc_free_expr (quiet);
3247 : 10 : return MATCH_ERROR;
3248 : : }
3249 : :
3250 : :
3251 : : /* Match the (deprecated) PAUSE statement. */
3252 : :
3253 : : match
3254 : 28 : gfc_match_pause (void)
3255 : : {
3256 : 28 : match m;
3257 : :
3258 : 28 : m = gfc_match_stopcode (ST_PAUSE);
3259 : 28 : if (m == MATCH_YES)
3260 : : {
3261 : 28 : if (!gfc_notify_std (GFC_STD_F95_DEL, "PAUSE statement at %C"))
3262 : 0 : m = MATCH_ERROR;
3263 : : }
3264 : 28 : return m;
3265 : : }
3266 : :
3267 : :
3268 : : /* Match the STOP statement. */
3269 : :
3270 : : match
3271 : 164387 : gfc_match_stop (void)
3272 : : {
3273 : 164387 : return gfc_match_stopcode (ST_STOP);
3274 : : }
3275 : :
3276 : :
3277 : : /* Match the ERROR STOP statement. */
3278 : :
3279 : : match
3280 : 18358 : gfc_match_error_stop (void)
3281 : : {
3282 : 18358 : if (!gfc_notify_std (GFC_STD_F2008, "ERROR STOP statement at %C"))
3283 : : return MATCH_ERROR;
3284 : :
3285 : 18357 : return gfc_match_stopcode (ST_ERROR_STOP);
3286 : : }
3287 : :
3288 : : /* Match EVENT POST/WAIT statement. Syntax:
3289 : : EVENT POST ( event-variable [, sync-stat-list] )
3290 : : EVENT WAIT ( event-variable [, wait-spec-list] )
3291 : : with
3292 : : wait-spec-list is sync-stat-list or until-spec
3293 : : until-spec is UNTIL_COUNT = scalar-int-expr
3294 : : sync-stat is STAT= or ERRMSG=. */
3295 : :
3296 : : static match
3297 : 40 : event_statement (gfc_statement st)
3298 : : {
3299 : 40 : match m;
3300 : 40 : gfc_expr *tmp, *eventvar, *until_count, *stat, *errmsg;
3301 : 40 : bool saw_until_count, saw_stat, saw_errmsg;
3302 : :
3303 : 40 : tmp = eventvar = until_count = stat = errmsg = NULL;
3304 : 40 : saw_until_count = saw_stat = saw_errmsg = false;
3305 : :
3306 : 40 : if (gfc_pure (NULL))
3307 : : {
3308 : 0 : gfc_error ("Image control statement EVENT %s at %C in PURE procedure",
3309 : : st == ST_EVENT_POST ? "POST" : "WAIT");
3310 : 0 : return MATCH_ERROR;
3311 : : }
3312 : :
3313 : 40 : gfc_unset_implicit_pure (NULL);
3314 : :
3315 : 40 : if (flag_coarray == GFC_FCOARRAY_NONE)
3316 : : {
3317 : 0 : gfc_fatal_error ("Coarrays disabled at %C, use %<-fcoarray=%> to enable");
3318 : : return MATCH_ERROR;
3319 : : }
3320 : :
3321 : 40 : if (gfc_find_state (COMP_CRITICAL))
3322 : : {
3323 : 0 : gfc_error ("Image control statement EVENT %s at %C in CRITICAL block",
3324 : : st == ST_EVENT_POST ? "POST" : "WAIT");
3325 : 0 : return MATCH_ERROR;
3326 : : }
3327 : :
3328 : 40 : if (gfc_find_state (COMP_DO_CONCURRENT))
3329 : : {
3330 : 0 : gfc_error ("Image control statement EVENT %s at %C in DO CONCURRENT "
3331 : : "block", st == ST_EVENT_POST ? "POST" : "WAIT");
3332 : 0 : return MATCH_ERROR;
3333 : : }
3334 : :
3335 : 40 : if (gfc_match_char ('(') != MATCH_YES)
3336 : 0 : goto syntax;
3337 : :
3338 : 40 : if (gfc_match ("%e", &eventvar) != MATCH_YES)
3339 : 1 : goto syntax;
3340 : 39 : m = gfc_match_char (',');
3341 : 39 : if (m == MATCH_ERROR)
3342 : 0 : goto syntax;
3343 : 39 : if (m == MATCH_NO)
3344 : : {
3345 : 23 : m = gfc_match_char (')');
3346 : 23 : if (m == MATCH_YES)
3347 : 23 : goto done;
3348 : 0 : goto syntax;
3349 : : }
3350 : :
3351 : 20 : for (;;)
3352 : : {
3353 : 20 : m = gfc_match (" stat = %v", &tmp);
3354 : 20 : if (m == MATCH_ERROR)
3355 : 0 : goto syntax;
3356 : 20 : if (m == MATCH_YES)
3357 : : {
3358 : 8 : if (saw_stat)
3359 : : {
3360 : 0 : gfc_error ("Redundant STAT tag found at %L", &tmp->where);
3361 : 0 : goto cleanup;
3362 : : }
3363 : 8 : stat = tmp;
3364 : 8 : saw_stat = true;
3365 : :
3366 : 8 : m = gfc_match_char (',');
3367 : 8 : if (m == MATCH_YES)
3368 : 4 : continue;
3369 : :
3370 : 4 : tmp = NULL;
3371 : 4 : break;
3372 : : }
3373 : :
3374 : 12 : m = gfc_match (" errmsg = %v", &tmp);
3375 : 12 : if (m == MATCH_ERROR)
3376 : 0 : goto syntax;
3377 : 12 : if (m == MATCH_YES)
3378 : : {
3379 : 0 : if (saw_errmsg)
3380 : : {
3381 : 0 : gfc_error ("Redundant ERRMSG tag found at %L", &tmp->where);
3382 : 0 : goto cleanup;
3383 : : }
3384 : 0 : errmsg = tmp;
3385 : 0 : saw_errmsg = true;
3386 : :
3387 : 0 : m = gfc_match_char (',');
3388 : 0 : if (m == MATCH_YES)
3389 : 0 : continue;
3390 : :
3391 : 0 : tmp = NULL;
3392 : 0 : break;
3393 : : }
3394 : :
3395 : 12 : m = gfc_match (" until_count = %e", &tmp);
3396 : 12 : if (m == MATCH_ERROR || st == ST_EVENT_POST)
3397 : 0 : goto syntax;
3398 : 12 : if (m == MATCH_YES)
3399 : : {
3400 : 12 : if (saw_until_count)
3401 : : {
3402 : 0 : gfc_error ("Redundant UNTIL_COUNT tag found at %L",
3403 : 0 : &tmp->where);
3404 : 0 : goto cleanup;
3405 : : }
3406 : 12 : until_count = tmp;
3407 : 12 : saw_until_count = true;
3408 : :
3409 : 12 : m = gfc_match_char (',');
3410 : 12 : if (m == MATCH_YES)
3411 : 0 : continue;
3412 : :
3413 : 12 : tmp = NULL;
3414 : 12 : break;
3415 : : }
3416 : :
3417 : : break;
3418 : : }
3419 : :
3420 : 16 : if (m == MATCH_ERROR)
3421 : 0 : goto syntax;
3422 : :
3423 : 16 : if (gfc_match (" )%t") != MATCH_YES)
3424 : 0 : goto syntax;
3425 : :
3426 : 16 : done:
3427 : 39 : switch (st)
3428 : : {
3429 : 23 : case ST_EVENT_POST:
3430 : 23 : new_st.op = EXEC_EVENT_POST;
3431 : 23 : break;
3432 : 16 : case ST_EVENT_WAIT:
3433 : 16 : new_st.op = EXEC_EVENT_WAIT;
3434 : 16 : break;
3435 : 0 : default:
3436 : 0 : gcc_unreachable ();
3437 : : }
3438 : :
3439 : 39 : new_st.expr1 = eventvar;
3440 : 39 : new_st.expr2 = stat;
3441 : 39 : new_st.expr3 = errmsg;
3442 : 39 : new_st.expr4 = until_count;
3443 : :
3444 : 39 : return MATCH_YES;
3445 : :
3446 : 1 : syntax:
3447 : 1 : gfc_syntax_error (st);
3448 : :
3449 : 1 : cleanup:
3450 : 1 : if (until_count != tmp)
3451 : 0 : gfc_free_expr (until_count);
3452 : 1 : if (errmsg != tmp)
3453 : 0 : gfc_free_expr (errmsg);
3454 : 1 : if (stat != tmp)
3455 : 0 : gfc_free_expr (stat);
3456 : :
3457 : 1 : gfc_free_expr (tmp);
3458 : 1 : gfc_free_expr (eventvar);
3459 : :
3460 : 1 : return MATCH_ERROR;
3461 : :
3462 : : }
3463 : :
3464 : :
3465 : : match
3466 : 24 : gfc_match_event_post (void)
3467 : : {
3468 : 24 : if (!gfc_notify_std (GFC_STD_F2018, "EVENT POST statement at %C"))
3469 : : return MATCH_ERROR;
3470 : :
3471 : 24 : return event_statement (ST_EVENT_POST);
3472 : : }
3473 : :
3474 : :
3475 : : match
3476 : 16 : gfc_match_event_wait (void)
3477 : : {
3478 : 16 : if (!gfc_notify_std (GFC_STD_F2018, "EVENT WAIT statement at %C"))
3479 : : return MATCH_ERROR;
3480 : :
3481 : 16 : return event_statement (ST_EVENT_WAIT);
3482 : : }
3483 : :
3484 : :
3485 : : /* Match a FAIL IMAGE statement. */
3486 : :
3487 : : match
3488 : 7 : gfc_match_fail_image (void)
3489 : : {
3490 : 7 : if (!gfc_notify_std (GFC_STD_F2018, "FAIL IMAGE statement at %C"))
3491 : : return MATCH_ERROR;
3492 : :
3493 : 7 : if (gfc_match_char ('(') == MATCH_YES)
3494 : 2 : goto syntax;
3495 : :
3496 : 5 : new_st.op = EXEC_FAIL_IMAGE;
3497 : :
3498 : 5 : return MATCH_YES;
3499 : :
3500 : 2 : syntax:
3501 : 2 : gfc_syntax_error (ST_FAIL_IMAGE);
3502 : :
3503 : 2 : return MATCH_ERROR;
3504 : : }
3505 : :
3506 : : /* Match a FORM TEAM statement. */
3507 : :
3508 : : match
3509 : 30 : gfc_match_form_team (void)
3510 : : {
3511 : 30 : match m;
3512 : 30 : gfc_expr *teamid,*team;
3513 : :
3514 : 30 : if (!gfc_notify_std (GFC_STD_F2018, "FORM TEAM statement at %C"))
3515 : : return MATCH_ERROR;
3516 : :
3517 : 30 : if (gfc_match_char ('(') == MATCH_NO)
3518 : 0 : goto syntax;
3519 : :
3520 : 30 : new_st.op = EXEC_FORM_TEAM;
3521 : :
3522 : 30 : if (gfc_match ("%e", &teamid) != MATCH_YES)
3523 : 0 : goto syntax;
3524 : 30 : m = gfc_match_char (',');
3525 : 30 : if (m == MATCH_ERROR)
3526 : 0 : goto syntax;
3527 : 30 : if (gfc_match ("%e", &team) != MATCH_YES)
3528 : 0 : goto syntax;
3529 : :
3530 : 30 : m = gfc_match_char (')');
3531 : 30 : if (m == MATCH_NO)
3532 : 0 : goto syntax;
3533 : :
3534 : 30 : new_st.expr1 = teamid;
3535 : 30 : new_st.expr2 = team;
3536 : :
3537 : 30 : return MATCH_YES;
3538 : :
3539 : 0 : syntax:
3540 : 0 : gfc_syntax_error (ST_FORM_TEAM);
3541 : :
3542 : 0 : return MATCH_ERROR;
3543 : : }
3544 : :
3545 : : /* Match a CHANGE TEAM statement. */
3546 : :
3547 : : match
3548 : 20 : gfc_match_change_team (void)
3549 : : {
3550 : 20 : match m;
3551 : 20 : gfc_expr *team;
3552 : :
3553 : 20 : if (!gfc_notify_std (GFC_STD_F2018, "CHANGE TEAM statement at %C"))
3554 : : return MATCH_ERROR;
3555 : :
3556 : 20 : if (gfc_match_char ('(') == MATCH_NO)
3557 : 0 : goto syntax;
3558 : :
3559 : 20 : new_st.op = EXEC_CHANGE_TEAM;
3560 : :
3561 : 20 : if (gfc_match ("%e", &team) != MATCH_YES)
3562 : 0 : goto syntax;
3563 : :
3564 : 20 : m = gfc_match_char (')');
3565 : 20 : if (m == MATCH_NO)
3566 : 0 : goto syntax;
3567 : :
3568 : 20 : new_st.expr1 = team;
3569 : :
3570 : 20 : return MATCH_YES;
3571 : :
3572 : 0 : syntax:
3573 : 0 : gfc_syntax_error (ST_CHANGE_TEAM);
3574 : :
3575 : 0 : return MATCH_ERROR;
3576 : : }
3577 : :
3578 : : /* Match a END TEAM statement. */
3579 : :
3580 : : match
3581 : 20 : gfc_match_end_team (void)
3582 : : {
3583 : 20 : if (!gfc_notify_std (GFC_STD_F2018, "END TEAM statement at %C"))
3584 : : return MATCH_ERROR;
3585 : :
3586 : 20 : if (gfc_match_char ('(') == MATCH_YES)
3587 : 0 : goto syntax;
3588 : :
3589 : 20 : new_st.op = EXEC_END_TEAM;
3590 : :
3591 : 20 : return MATCH_YES;
3592 : :
3593 : 0 : syntax:
3594 : 0 : gfc_syntax_error (ST_END_TEAM);
3595 : :
3596 : 0 : return MATCH_ERROR;
3597 : : }
3598 : :
3599 : : /* Match a SYNC TEAM statement. */
3600 : :
3601 : : match
3602 : 1 : gfc_match_sync_team (void)
3603 : : {
3604 : 1 : match m;
3605 : 1 : gfc_expr *team;
3606 : :
3607 : 1 : if (!gfc_notify_std (GFC_STD_F2018, "SYNC TEAM statement at %C"))
3608 : : return MATCH_ERROR;
3609 : :
3610 : 1 : if (gfc_match_char ('(') == MATCH_NO)
3611 : 0 : goto syntax;
3612 : :
3613 : 1 : new_st.op = EXEC_SYNC_TEAM;
3614 : :
3615 : 1 : if (gfc_match ("%e", &team) != MATCH_YES)
3616 : 0 : goto syntax;
3617 : :
3618 : 1 : m = gfc_match_char (')');
3619 : 1 : if (m == MATCH_NO)
3620 : 0 : goto syntax;
3621 : :
3622 : 1 : new_st.expr1 = team;
3623 : :
3624 : 1 : return MATCH_YES;
3625 : :
3626 : 0 : syntax:
3627 : 0 : gfc_syntax_error (ST_SYNC_TEAM);
3628 : :
3629 : 0 : return MATCH_ERROR;
3630 : : }
3631 : :
3632 : : /* Match LOCK/UNLOCK statement. Syntax:
3633 : : LOCK ( lock-variable [ , lock-stat-list ] )
3634 : : UNLOCK ( lock-variable [ , sync-stat-list ] )
3635 : : where lock-stat is ACQUIRED_LOCK or sync-stat
3636 : : and sync-stat is STAT= or ERRMSG=. */
3637 : :
3638 : : static match
3639 : 102 : lock_unlock_statement (gfc_statement st)
3640 : : {
3641 : 102 : match m;
3642 : 102 : gfc_expr *tmp, *lockvar, *acq_lock, *stat, *errmsg;
3643 : 102 : bool saw_acq_lock, saw_stat, saw_errmsg;
3644 : :
3645 : 102 : tmp = lockvar = acq_lock = stat = errmsg = NULL;
3646 : 102 : saw_acq_lock = saw_stat = saw_errmsg = false;
3647 : :
3648 : 102 : if (gfc_pure (NULL))
3649 : : {
3650 : 0 : gfc_error ("Image control statement %s at %C in PURE procedure",
3651 : : st == ST_LOCK ? "LOCK" : "UNLOCK");
3652 : 0 : return MATCH_ERROR;
3653 : : }
3654 : :
3655 : 102 : gfc_unset_implicit_pure (NULL);
3656 : :
3657 : 102 : if (flag_coarray == GFC_FCOARRAY_NONE)
3658 : : {
3659 : 0 : gfc_fatal_error ("Coarrays disabled at %C, use %<-fcoarray=%> to enable");
3660 : : return MATCH_ERROR;
3661 : : }
3662 : :
3663 : 102 : if (gfc_find_state (COMP_CRITICAL))
3664 : : {
3665 : 2 : gfc_error ("Image control statement %s at %C in CRITICAL block",
3666 : : st == ST_LOCK ? "LOCK" : "UNLOCK");
3667 : 2 : return MATCH_ERROR;
3668 : : }
3669 : :
3670 : 100 : if (gfc_find_state (COMP_DO_CONCURRENT))
3671 : : {
3672 : 2 : gfc_error ("Image control statement %s at %C in DO CONCURRENT block",
3673 : : st == ST_LOCK ? "LOCK" : "UNLOCK");
3674 : 2 : return MATCH_ERROR;
3675 : : }
3676 : :
3677 : 98 : if (gfc_match_char ('(') != MATCH_YES)
3678 : 0 : goto syntax;
3679 : :
3680 : 98 : if (gfc_match ("%e", &lockvar) != MATCH_YES)
3681 : 1 : goto syntax;
3682 : 97 : m = gfc_match_char (',');
3683 : 97 : if (m == MATCH_ERROR)
3684 : 0 : goto syntax;
3685 : 97 : if (m == MATCH_NO)
3686 : : {
3687 : 53 : m = gfc_match_char (')');
3688 : 53 : if (m == MATCH_YES)
3689 : 53 : goto done;
3690 : 0 : goto syntax;
3691 : : }
3692 : :
3693 : 48 : for (;;)
3694 : : {
3695 : 48 : m = gfc_match (" stat = %v", &tmp);
3696 : 48 : if (m == MATCH_ERROR)
3697 : 0 : goto syntax;
3698 : 48 : if (m == MATCH_YES)
3699 : : {
3700 : 30 : if (saw_stat)
3701 : : {
3702 : 0 : gfc_error ("Redundant STAT tag found at %L", &tmp->where);
3703 : 0 : goto cleanup;
3704 : : }
3705 : 30 : stat = tmp;
3706 : 30 : saw_stat = true;
3707 : :
3708 : 30 : m = gfc_match_char (',');
3709 : 30 : if (m == MATCH_YES)
3710 : 2 : continue;
3711 : :
3712 : 28 : tmp = NULL;
3713 : 28 : break;
3714 : : }
3715 : :
3716 : 18 : m = gfc_match (" errmsg = %v", &tmp);
3717 : 18 : if (m == MATCH_ERROR)
3718 : 0 : goto syntax;
3719 : 18 : if (m == MATCH_YES)
3720 : : {
3721 : 2 : if (saw_errmsg)
3722 : : {
3723 : 0 : gfc_error ("Redundant ERRMSG tag found at %L", &tmp->where);
3724 : 0 : goto cleanup;
3725 : : }
3726 : 2 : errmsg = tmp;
3727 : 2 : saw_errmsg = true;
3728 : :
3729 : 2 : m = gfc_match_char (',');
3730 : 2 : if (m == MATCH_YES)
3731 : 0 : continue;
3732 : :
3733 : 2 : tmp = NULL;
3734 : 2 : break;
3735 : : }
3736 : :
3737 : 16 : m = gfc_match (" acquired_lock = %v", &tmp);
3738 : 16 : if (m == MATCH_ERROR || st == ST_UNLOCK)
3739 : 0 : goto syntax;
3740 : 16 : if (m == MATCH_YES)
3741 : : {
3742 : 16 : if (saw_acq_lock)
3743 : : {
3744 : 0 : gfc_error ("Redundant ACQUIRED_LOCK tag found at %L",
3745 : 0 : &tmp->where);
3746 : 0 : goto cleanup;
3747 : : }
3748 : 16 : acq_lock = tmp;
3749 : 16 : saw_acq_lock = true;
3750 : :
3751 : 16 : m = gfc_match_char (',');
3752 : 16 : if (m == MATCH_YES)
3753 : 2 : continue;
3754 : :
3755 : 14 : tmp = NULL;
3756 : 14 : break;
3757 : : }
3758 : :
3759 : : break;
3760 : : }
3761 : :
3762 : 44 : if (m == MATCH_ERROR)
3763 : 0 : goto syntax;
3764 : :
3765 : 44 : if (gfc_match (" )%t") != MATCH_YES)
3766 : 0 : goto syntax;
3767 : :
3768 : 44 : done:
3769 : 97 : switch (st)
3770 : : {
3771 : 53 : case ST_LOCK:
3772 : 53 : new_st.op = EXEC_LOCK;
3773 : 53 : break;
3774 : 44 : case ST_UNLOCK:
3775 : 44 : new_st.op = EXEC_UNLOCK;
3776 : 44 : break;
3777 : 0 : default:
3778 : 0 : gcc_unreachable ();
3779 : : }
3780 : :
3781 : 97 : new_st.expr1 = lockvar;
3782 : 97 : new_st.expr2 = stat;
3783 : 97 : new_st.expr3 = errmsg;
3784 : 97 : new_st.expr4 = acq_lock;
3785 : :
3786 : 97 : return MATCH_YES;
3787 : :
3788 : 1 : syntax:
3789 : 1 : gfc_syntax_error (st);
3790 : :
3791 : 1 : cleanup:
3792 : 1 : if (acq_lock != tmp)
3793 : 0 : gfc_free_expr (acq_lock);
3794 : 1 : if (errmsg != tmp)
3795 : 0 : gfc_free_expr (errmsg);
3796 : 1 : if (stat != tmp)
3797 : 0 : gfc_free_expr (stat);
3798 : :
3799 : 1 : gfc_free_expr (tmp);
3800 : 1 : gfc_free_expr (lockvar);
3801 : :
3802 : 1 : return MATCH_ERROR;
3803 : : }
3804 : :
3805 : :
3806 : : match
3807 : 57 : gfc_match_lock (void)
3808 : : {
3809 : 57 : if (!gfc_notify_std (GFC_STD_F2008, "LOCK statement at %C"))
3810 : : return MATCH_ERROR;
3811 : :
3812 : 56 : return lock_unlock_statement (ST_LOCK);
3813 : : }
3814 : :
3815 : :
3816 : : match
3817 : 47 : gfc_match_unlock (void)
3818 : : {
3819 : 47 : if (!gfc_notify_std (GFC_STD_F2008, "UNLOCK statement at %C"))
3820 : : return MATCH_ERROR;
3821 : :
3822 : 46 : return lock_unlock_statement (ST_UNLOCK);
3823 : : }
3824 : :
3825 : :
3826 : : /* Match SYNC ALL/IMAGES/MEMORY statement. Syntax:
3827 : : SYNC ALL [(sync-stat-list)]
3828 : : SYNC MEMORY [(sync-stat-list)]
3829 : : SYNC IMAGES (image-set [, sync-stat-list] )
3830 : : with sync-stat is int-expr or *. */
3831 : :
3832 : : static match
3833 : 752 : sync_statement (gfc_statement st)
3834 : : {
3835 : 752 : match m;
3836 : 752 : gfc_expr *tmp, *imageset, *stat, *errmsg;
3837 : 752 : bool saw_stat, saw_errmsg;
3838 : :
3839 : 752 : tmp = imageset = stat = errmsg = NULL;
3840 : 752 : saw_stat = saw_errmsg = false;
3841 : :
3842 : 752 : if (gfc_pure (NULL))
3843 : : {
3844 : 1 : gfc_error ("Image control statement SYNC at %C in PURE procedure");
3845 : 1 : return MATCH_ERROR;
3846 : : }
3847 : :
3848 : 751 : gfc_unset_implicit_pure (NULL);
3849 : :
3850 : 751 : if (!gfc_notify_std (GFC_STD_F2008, "SYNC statement at %C"))
3851 : : return MATCH_ERROR;
3852 : :
3853 : 748 : if (flag_coarray == GFC_FCOARRAY_NONE)
3854 : : {
3855 : 0 : gfc_fatal_error ("Coarrays disabled at %C, use %<-fcoarray=%> to "
3856 : : "enable");
3857 : : return MATCH_ERROR;
3858 : : }
3859 : :
3860 : 748 : if (gfc_find_state (COMP_CRITICAL))
3861 : : {
3862 : 1 : gfc_error ("Image control statement SYNC at %C in CRITICAL block");
3863 : 1 : return MATCH_ERROR;
3864 : : }
3865 : :
3866 : 747 : if (gfc_find_state (COMP_DO_CONCURRENT))
3867 : : {
3868 : 1 : gfc_error ("Image control statement SYNC at %C in DO CONCURRENT block");
3869 : 1 : return MATCH_ERROR;
3870 : : }
3871 : :
3872 : 746 : if (gfc_match_eos () == MATCH_YES)
3873 : : {
3874 : 557 : if (st == ST_SYNC_IMAGES)
3875 : 0 : goto syntax;
3876 : 557 : goto done;
3877 : : }
3878 : :
3879 : 189 : if (gfc_match_char ('(') != MATCH_YES)
3880 : 0 : goto syntax;
3881 : :
3882 : 189 : if (st == ST_SYNC_IMAGES)
3883 : : {
3884 : : /* Denote '*' as imageset == NULL. */
3885 : 78 : m = gfc_match_char ('*');
3886 : 78 : if (m == MATCH_ERROR)
3887 : 0 : goto syntax;
3888 : 78 : if (m == MATCH_NO)
3889 : : {
3890 : 48 : if (gfc_match ("%e", &imageset) != MATCH_YES)
3891 : 0 : goto syntax;
3892 : : }
3893 : 78 : m = gfc_match_char (',');
3894 : 78 : if (m == MATCH_ERROR)
3895 : 0 : goto syntax;
3896 : 78 : if (m == MATCH_NO)
3897 : : {
3898 : 42 : m = gfc_match_char (')');
3899 : 42 : if (m == MATCH_YES)
3900 : 42 : goto done;
3901 : 0 : goto syntax;
3902 : : }
3903 : : }
3904 : :
3905 : 181 : for (;;)
3906 : : {
3907 : 181 : m = gfc_match (" stat = %e", &tmp);
3908 : 181 : if (m == MATCH_ERROR)
3909 : 0 : goto syntax;
3910 : 181 : if (m == MATCH_YES)
3911 : : {
3912 : 86 : if (saw_stat)
3913 : : {
3914 : 1 : gfc_error ("Redundant STAT tag found at %L", &tmp->where);
3915 : 1 : goto cleanup;
3916 : : }
3917 : 85 : stat = tmp;
3918 : 85 : saw_stat = true;
3919 : :
3920 : 85 : if (gfc_match_char (',') == MATCH_YES)
3921 : 13 : continue;
3922 : :
3923 : 72 : tmp = NULL;
3924 : 72 : break;
3925 : : }
3926 : :
3927 : 95 : m = gfc_match (" errmsg = %e", &tmp);
3928 : 95 : if (m == MATCH_ERROR)
3929 : 0 : goto syntax;
3930 : 95 : if (m == MATCH_YES)
3931 : : {
3932 : 75 : if (saw_errmsg)
3933 : : {
3934 : 0 : gfc_error ("Redundant ERRMSG tag found at %L", &tmp->where);
3935 : 0 : goto cleanup;
3936 : : }
3937 : 75 : errmsg = tmp;
3938 : 75 : saw_errmsg = true;
3939 : :
3940 : 75 : if (gfc_match_char (',') == MATCH_YES)
3941 : 21 : continue;
3942 : :
3943 : 54 : tmp = NULL;
3944 : 54 : break;
3945 : : }
3946 : :
3947 : : break;
3948 : : }
3949 : :
3950 : 146 : if (gfc_match (" )%t") != MATCH_YES)
3951 : 0 : goto syntax;
3952 : :
3953 : 146 : done:
3954 : 745 : switch (st)
3955 : : {
3956 : 603 : case ST_SYNC_ALL:
3957 : 603 : new_st.op = EXEC_SYNC_ALL;
3958 : 603 : break;
3959 : 78 : case ST_SYNC_IMAGES:
3960 : 78 : new_st.op = EXEC_SYNC_IMAGES;
3961 : 78 : break;
3962 : 64 : case ST_SYNC_MEMORY:
3963 : 64 : new_st.op = EXEC_SYNC_MEMORY;
3964 : 64 : break;
3965 : 0 : default:
3966 : 0 : gcc_unreachable ();
3967 : : }
3968 : :
3969 : 745 : new_st.expr1 = imageset;
3970 : 745 : new_st.expr2 = stat;
3971 : 745 : new_st.expr3 = errmsg;
3972 : :
3973 : 745 : return MATCH_YES;
3974 : :
3975 : 0 : syntax:
3976 : 0 : gfc_syntax_error (st);
3977 : :
3978 : 1 : cleanup:
3979 : 1 : if (stat != tmp)
3980 : 1 : gfc_free_expr (stat);
3981 : 1 : if (errmsg != tmp)
3982 : 1 : gfc_free_expr (errmsg);
3983 : :
3984 : 1 : gfc_free_expr (tmp);
3985 : 1 : gfc_free_expr (imageset);
3986 : :
3987 : 1 : return MATCH_ERROR;
3988 : : }
3989 : :
3990 : :
3991 : : /* Match SYNC ALL statement. */
3992 : :
3993 : : match
3994 : 608 : gfc_match_sync_all (void)
3995 : : {
3996 : 608 : return sync_statement (ST_SYNC_ALL);
3997 : : }
3998 : :
3999 : :
4000 : : /* Match SYNC IMAGES statement. */
4001 : :
4002 : : match
4003 : 79 : gfc_match_sync_images (void)
4004 : : {
4005 : 79 : return sync_statement (ST_SYNC_IMAGES);
4006 : : }
4007 : :
4008 : :
4009 : : /* Match SYNC MEMORY statement. */
4010 : :
4011 : : match
4012 : 65 : gfc_match_sync_memory (void)
4013 : : {
4014 : 65 : return sync_statement (ST_SYNC_MEMORY);
4015 : : }
4016 : :
4017 : :
4018 : : /* Match a CONTINUE statement. */
4019 : :
4020 : : match
4021 : 2755 : gfc_match_continue (void)
4022 : : {
4023 : 2755 : if (gfc_match_eos () != MATCH_YES)
4024 : : {
4025 : 0 : gfc_syntax_error (ST_CONTINUE);
4026 : 0 : return MATCH_ERROR;
4027 : : }
4028 : :
4029 : 2755 : new_st.op = EXEC_CONTINUE;
4030 : 2755 : return MATCH_YES;
4031 : : }
4032 : :
4033 : :
4034 : : /* Match the (deprecated) ASSIGN statement. */
4035 : :
4036 : : match
4037 : 126 : gfc_match_assign (void)
4038 : : {
4039 : 126 : gfc_expr *expr;
4040 : 126 : gfc_st_label *label;
4041 : :
4042 : 126 : if (gfc_match (" %l", &label) == MATCH_YES)
4043 : : {
4044 : 126 : if (!gfc_reference_st_label (label, ST_LABEL_UNKNOWN))
4045 : : return MATCH_ERROR;
4046 : 126 : if (gfc_match (" to %v%t", &expr) == MATCH_YES)
4047 : : {
4048 : 126 : if (!gfc_notify_std (GFC_STD_F95_DEL, "ASSIGN statement at %C"))
4049 : : return MATCH_ERROR;
4050 : :
4051 : 126 : expr->symtree->n.sym->attr.assign = 1;
4052 : :
4053 : 126 : new_st.op = EXEC_LABEL_ASSIGN;
4054 : 126 : new_st.label1 = label;
4055 : 126 : new_st.expr1 = expr;
4056 : 126 : return MATCH_YES;
4057 : : }
4058 : : }
4059 : : return MATCH_NO;
4060 : : }
4061 : :
4062 : :
4063 : : /* Match the GO TO statement. As a computed GOTO statement is
4064 : : matched, it is transformed into an equivalent SELECT block. No
4065 : : tree is necessary, and the resulting jumps-to-jumps are
4066 : : specifically optimized away by the back end. */
4067 : :
4068 : : match
4069 : 993 : gfc_match_goto (void)
4070 : : {
4071 : 993 : gfc_code *head, *tail;
4072 : 993 : gfc_expr *expr;
4073 : 993 : gfc_case *cp;
4074 : 993 : gfc_st_label *label;
4075 : 993 : int i;
4076 : 993 : match m;
4077 : :
4078 : 993 : if (gfc_match (" %l%t", &label) == MATCH_YES)
4079 : : {
4080 : 910 : if (!gfc_reference_st_label (label, ST_LABEL_TARGET))
4081 : : return MATCH_ERROR;
4082 : :
4083 : 910 : new_st.op = EXEC_GOTO;
4084 : 910 : new_st.label1 = label;
4085 : 910 : return MATCH_YES;
4086 : : }
4087 : :
4088 : : /* The assigned GO TO statement. */
4089 : :
4090 : 83 : if (gfc_match_variable (&expr, 0) == MATCH_YES)
4091 : : {
4092 : 78 : if (!gfc_notify_std (GFC_STD_F95_DEL, "Assigned GOTO statement at %C"))
4093 : : return MATCH_ERROR;
4094 : :
4095 : 78 : new_st.op = EXEC_GOTO;
4096 : 78 : new_st.expr1 = expr;
4097 : :
4098 : 78 : if (gfc_match_eos () == MATCH_YES)
4099 : : return MATCH_YES;
4100 : :
4101 : : /* Match label list. */
4102 : 27 : gfc_match_char (',');
4103 : 27 : if (gfc_match_char ('(') != MATCH_YES)
4104 : : {
4105 : 0 : gfc_syntax_error (ST_GOTO);
4106 : 0 : return MATCH_ERROR;
4107 : : }
4108 : : head = tail = NULL;
4109 : :
4110 : 76 : do
4111 : : {
4112 : 76 : m = gfc_match_st_label (&label);
4113 : 76 : if (m != MATCH_YES)
4114 : 0 : goto syntax;
4115 : :
4116 : 76 : if (!gfc_reference_st_label (label, ST_LABEL_TARGET))
4117 : 0 : goto cleanup;
4118 : :
4119 : 76 : if (head == NULL)
4120 : 27 : head = tail = gfc_get_code (EXEC_GOTO);
4121 : : else
4122 : : {
4123 : 49 : tail->block = gfc_get_code (EXEC_GOTO);
4124 : 49 : tail = tail->block;
4125 : : }
4126 : :
4127 : 76 : tail->label1 = label;
4128 : : }
4129 : 76 : while (gfc_match_char (',') == MATCH_YES);
4130 : :
4131 : 27 : if (gfc_match (" )%t") != MATCH_YES)
4132 : 0 : goto syntax;
4133 : :
4134 : 27 : if (head == NULL)
4135 : : {
4136 : 0 : gfc_error ("Statement label list in GOTO at %C cannot be empty");
4137 : 0 : goto syntax;
4138 : : }
4139 : 27 : new_st.block = head;
4140 : :
4141 : 27 : return MATCH_YES;
4142 : : }
4143 : :
4144 : : /* Last chance is a computed GO TO statement. */
4145 : 5 : if (gfc_match_char ('(') != MATCH_YES)
4146 : : {
4147 : 0 : gfc_syntax_error (ST_GOTO);
4148 : 0 : return MATCH_ERROR;
4149 : : }
4150 : :
4151 : : head = tail = NULL;
4152 : : i = 1;
4153 : :
4154 : 13 : do
4155 : : {
4156 : 13 : m = gfc_match_st_label (&label);
4157 : 13 : if (m != MATCH_YES)
4158 : 0 : goto syntax;
4159 : :
4160 : 13 : if (!gfc_reference_st_label (label, ST_LABEL_TARGET))
4161 : 0 : goto cleanup;
4162 : :
4163 : 13 : if (head == NULL)
4164 : 5 : head = tail = gfc_get_code (EXEC_SELECT);
4165 : : else
4166 : : {
4167 : 8 : tail->block = gfc_get_code (EXEC_SELECT);
4168 : 8 : tail = tail->block;
4169 : : }
4170 : :
4171 : 13 : cp = gfc_get_case ();
4172 : 26 : cp->low = cp->high = gfc_get_int_expr (gfc_default_integer_kind,
4173 : 13 : NULL, i++);
4174 : :
4175 : 13 : tail->ext.block.case_list = cp;
4176 : :
4177 : 13 : tail->next = gfc_get_code (EXEC_GOTO);
4178 : 13 : tail->next->label1 = label;
4179 : : }
4180 : 13 : while (gfc_match_char (',') == MATCH_YES);
4181 : :
4182 : 5 : if (gfc_match_char (')') != MATCH_YES)
4183 : 0 : goto syntax;
4184 : :
4185 : 5 : if (head == NULL)
4186 : : {
4187 : 0 : gfc_error ("Statement label list in GOTO at %C cannot be empty");
4188 : 0 : goto syntax;
4189 : : }
4190 : :
4191 : : /* Get the rest of the statement. */
4192 : 5 : gfc_match_char (',');
4193 : :
4194 : 5 : if (gfc_match (" %e%t", &expr) != MATCH_YES)
4195 : 0 : goto syntax;
4196 : :
4197 : 5 : if (!gfc_notify_std (GFC_STD_F95_OBS, "Computed GOTO at %C"))
4198 : : return MATCH_ERROR;
4199 : :
4200 : : /* At this point, a computed GOTO has been fully matched and an
4201 : : equivalent SELECT statement constructed. */
4202 : :
4203 : 5 : new_st.op = EXEC_SELECT;
4204 : 5 : new_st.expr1 = NULL;
4205 : :
4206 : : /* Hack: For a "real" SELECT, the expression is in expr. We put
4207 : : it in expr2 so we can distinguish then and produce the correct
4208 : : diagnostics. */
4209 : 5 : new_st.expr2 = expr;
4210 : 5 : new_st.block = head;
4211 : 5 : return MATCH_YES;
4212 : :
4213 : 0 : syntax:
4214 : 0 : gfc_syntax_error (ST_GOTO);
4215 : 0 : cleanup:
4216 : 0 : gfc_free_statements (head);
4217 : 0 : return MATCH_ERROR;
4218 : : }
4219 : :
4220 : :
4221 : : /* Frees a list of gfc_alloc structures. */
4222 : :
4223 : : void
4224 : 20645 : gfc_free_alloc_list (gfc_alloc *p)
4225 : : {
4226 : 20645 : gfc_alloc *q;
4227 : :
4228 : 45778 : for (; p; p = q)
4229 : : {
4230 : 25133 : q = p->next;
4231 : 25133 : gfc_free_expr (p->expr);
4232 : 25133 : free (p);
4233 : : }
4234 : 20645 : }
4235 : :
4236 : :
4237 : : /* Match an ALLOCATE statement. */
4238 : :
4239 : : match
4240 : 12635 : gfc_match_allocate (void)
4241 : : {
4242 : 12635 : gfc_alloc *head, *tail;
4243 : 12635 : gfc_expr *stat, *errmsg, *tmp, *source, *mold;
4244 : 12635 : gfc_typespec ts;
4245 : 12635 : gfc_symbol *sym;
4246 : 12635 : match m;
4247 : 12635 : locus old_locus, deferred_locus, assumed_locus;
4248 : 12635 : bool saw_stat, saw_errmsg, saw_source, saw_mold, saw_deferred, b1, b2, b3;
4249 : 12635 : bool saw_unlimited = false, saw_assumed = false;
4250 : :
4251 : 12635 : head = tail = NULL;
4252 : 12635 : stat = errmsg = source = mold = tmp = NULL;
4253 : 12635 : saw_stat = saw_errmsg = saw_source = saw_mold = saw_deferred = false;
4254 : :
4255 : 12635 : if (gfc_match_char ('(') != MATCH_YES)
4256 : : {
4257 : 1 : gfc_syntax_error (ST_ALLOCATE);
4258 : 1 : return MATCH_ERROR;
4259 : : }
4260 : :
4261 : : /* Match an optional type-spec. */
4262 : 12634 : old_locus = gfc_current_locus;
4263 : 12634 : m = gfc_match_type_spec (&ts);
4264 : 12634 : if (m == MATCH_ERROR)
4265 : 7 : goto cleanup;
4266 : 12627 : else if (m == MATCH_NO)
4267 : : {
4268 : 11243 : char name[GFC_MAX_SYMBOL_LEN + 3];
4269 : :
4270 : 11243 : if (gfc_match ("%n :: ", name) == MATCH_YES)
4271 : : {
4272 : 7 : gfc_error ("Error in type-spec at %L", &old_locus);
4273 : 7 : goto cleanup;
4274 : : }
4275 : :
4276 : 11236 : ts.type = BT_UNKNOWN;
4277 : : }
4278 : : else
4279 : : {
4280 : : /* Needed for the F2008:C631 check below. */
4281 : 1384 : assumed_locus = gfc_current_locus;
4282 : :
4283 : 1384 : if (gfc_match (" :: ") == MATCH_YES)
4284 : : {
4285 : 1372 : if (!gfc_notify_std (GFC_STD_F2003, "typespec in ALLOCATE at %L",
4286 : : &old_locus))
4287 : 0 : goto cleanup;
4288 : :
4289 : 1372 : if (ts.deferred)
4290 : : {
4291 : 5 : gfc_error ("Type-spec at %L cannot contain a deferred "
4292 : : "type parameter", &old_locus);
4293 : 5 : goto cleanup;
4294 : : }
4295 : :
4296 : 1367 : if (ts.type == BT_CHARACTER)
4297 : : {
4298 : 423 : if (!ts.u.cl->length)
4299 : : saw_assumed = true;
4300 : : else
4301 : 413 : ts.u.cl->length_from_typespec = true;
4302 : : }
4303 : :
4304 : 1367 : if (type_param_spec_list
4305 : 1367 : && gfc_spec_list_type (type_param_spec_list, NULL)
4306 : : == SPEC_DEFERRED)
4307 : : {
4308 : 0 : gfc_error ("The type parameter spec list in the type-spec at "
4309 : : "%L cannot contain DEFERRED parameters", &old_locus);
4310 : 0 : goto cleanup;
4311 : : }
4312 : : }
4313 : : else
4314 : : {
4315 : 12 : ts.type = BT_UNKNOWN;
4316 : 12 : gfc_current_locus = old_locus;
4317 : : }
4318 : : }
4319 : :
4320 : 15303 : for (;;)
4321 : : {
4322 : 15303 : if (head == NULL)
4323 : 12615 : head = tail = gfc_get_alloc ();
4324 : : else
4325 : : {
4326 : 2688 : tail->next = gfc_get_alloc ();
4327 : 2688 : tail = tail->next;
4328 : : }
4329 : :
4330 : 15303 : m = gfc_match_variable (&tail->expr, 0);
4331 : 15303 : if (m == MATCH_NO)
4332 : 0 : goto syntax;
4333 : 15303 : if (m == MATCH_ERROR)
4334 : 11 : goto cleanup;
4335 : :
4336 : 15292 : if (tail->expr->expr_type == EXPR_CONSTANT)
4337 : : {
4338 : 1 : gfc_error ("Unexpected constant at %C");
4339 : 1 : goto cleanup;
4340 : : }
4341 : :
4342 : 15291 : if (gfc_check_do_variable (tail->expr->symtree))
4343 : 0 : goto cleanup;
4344 : :
4345 : 15291 : bool impure = gfc_impure_variable (tail->expr->symtree->n.sym);
4346 : 15291 : if (impure && gfc_pure (NULL))
4347 : : {
4348 : 0 : gfc_error ("Bad allocate-object at %C for a PURE procedure");
4349 : 0 : goto cleanup;
4350 : : }
4351 : :
4352 : 15291 : if (impure)
4353 : 376 : gfc_unset_implicit_pure (NULL);
4354 : :
4355 : : /* F2008:C631 (R626) A type-param-value in a type-spec shall be an
4356 : : asterisk if and only if each allocate-object is a dummy argument
4357 : : for which the corresponding type parameter is assumed. */
4358 : 15291 : if (saw_assumed
4359 : 17 : && (tail->expr->ts.deferred
4360 : 16 : || (tail->expr->ts.u.cl && tail->expr->ts.u.cl->length)
4361 : 14 : || tail->expr->symtree->n.sym->attr.dummy == 0))
4362 : : {
4363 : 4 : gfc_error ("Incompatible allocate-object at %C for CHARACTER "
4364 : : "type-spec at %L", &assumed_locus);
4365 : 4 : goto cleanup;
4366 : : }
4367 : :
4368 : 15287 : if (tail->expr->ts.deferred)
4369 : : {
4370 : 993 : saw_deferred = true;
4371 : 993 : deferred_locus = tail->expr->where;
4372 : : }
4373 : :
4374 : 15287 : if (gfc_find_state (COMP_DO_CONCURRENT)
4375 : 15287 : || gfc_find_state (COMP_CRITICAL))
4376 : : {
4377 : 2 : gfc_ref *ref;
4378 : 2 : bool coarray = tail->expr->symtree->n.sym->attr.codimension;
4379 : 4 : for (ref = tail->expr->ref; ref; ref = ref->next)
4380 : 2 : if (ref->type == REF_COMPONENT)
4381 : 0 : coarray = ref->u.c.component->attr.codimension;
4382 : :
4383 : 2 : if (coarray && gfc_find_state (COMP_DO_CONCURRENT))
4384 : : {
4385 : 1 : gfc_error ("ALLOCATE of coarray at %C in DO CONCURRENT block");
4386 : 1 : goto cleanup;
4387 : : }
4388 : 1 : if (coarray && gfc_find_state (COMP_CRITICAL))
4389 : : {
4390 : 1 : gfc_error ("ALLOCATE of coarray at %C in CRITICAL block");
4391 : 1 : goto cleanup;
4392 : : }
4393 : : }
4394 : :
4395 : : /* Check for F08:C628. */
4396 : 15285 : sym = tail->expr->symtree->n.sym;
4397 : 15285 : b1 = !(tail->expr->ref
4398 : 11276 : && (tail->expr->ref->type == REF_COMPONENT
4399 : : || tail->expr->ref->type == REF_ARRAY));
4400 : 15285 : if (sym && sym->ts.type == BT_CLASS && sym->attr.class_ok)
4401 : 3185 : b2 = !(CLASS_DATA (sym)->attr.allocatable
4402 : : || CLASS_DATA (sym)->attr.class_pointer);
4403 : : else
4404 : 12100 : b2 = sym && !(sym->attr.allocatable || sym->attr.pointer
4405 : : || sym->attr.proc_pointer);
4406 : 15285 : b3 = sym && sym->ns && sym->ns->proc_name
4407 : 15285 : && (sym->ns->proc_name->attr.allocatable
4408 : : || sym->ns->proc_name->attr.pointer
4409 : 15285 : || sym->ns->proc_name->attr.proc_pointer);
4410 : 15285 : if (b1 && b2 && !b3)
4411 : : {
4412 : 6 : gfc_error ("Allocate-object at %L is neither a data pointer "
4413 : : "nor an allocatable variable", &tail->expr->where);
4414 : 6 : goto cleanup;
4415 : : }
4416 : :
4417 : : /* The ALLOCATE statement had an optional typespec. Check the
4418 : : constraints. */
4419 : 15279 : if (ts.type != BT_UNKNOWN)
4420 : : {
4421 : : /* Enforce F03:C624. */
4422 : 1575 : if (!gfc_type_compatible (&tail->expr->ts, &ts))
4423 : : {
4424 : 13 : gfc_error ("Type of entity at %L is type incompatible with "
4425 : 13 : "typespec", &tail->expr->where);
4426 : 13 : goto cleanup;
4427 : : }
4428 : :
4429 : : /* Enforce F03:C627. */
4430 : 1562 : if (ts.kind != tail->expr->ts.kind && !UNLIMITED_POLY (tail->expr))
4431 : : {
4432 : 8 : gfc_error ("Kind type parameter for entity at %L differs from "
4433 : : "the kind type parameter of the typespec",
4434 : : &tail->expr->where);
4435 : 8 : goto cleanup;
4436 : : }
4437 : : }
4438 : :
4439 : 15258 : if (tail->expr->ts.type == BT_DERIVED)
4440 : 2305 : tail->expr->ts.u.derived = gfc_use_derived (tail->expr->ts.u.derived);
4441 : :
4442 : 15258 : if (type_param_spec_list)
4443 : 41 : tail->expr->param_list = gfc_copy_actual_arglist (type_param_spec_list);
4444 : :
4445 : 15258 : saw_unlimited = saw_unlimited | UNLIMITED_POLY (tail->expr);
4446 : :
4447 : 15258 : if (gfc_peek_ascii_char () == '(' && !sym->attr.dimension)
4448 : : {
4449 : 2 : gfc_error ("Shape specification for allocatable scalar at %C");
4450 : 2 : goto cleanup;
4451 : : }
4452 : :
4453 : 15256 : if (gfc_match_char (',') != MATCH_YES)
4454 : : break;
4455 : :
4456 : 6430 : alloc_opt_list:
4457 : :
4458 : 6555 : m = gfc_match (" stat = %e", &tmp);
4459 : 6555 : if (m == MATCH_ERROR)
4460 : 7 : goto cleanup;
4461 : 6548 : if (m == MATCH_YES)
4462 : : {
4463 : : /* Enforce C630. */
4464 : 315 : if (saw_stat)
4465 : : {
4466 : 1 : gfc_error ("Redundant STAT tag found at %L", &tmp->where);
4467 : 1 : goto cleanup;
4468 : : }
4469 : :
4470 : 314 : stat = tmp;
4471 : 314 : tmp = NULL;
4472 : 314 : saw_stat = true;
4473 : :
4474 : 314 : if (stat->expr_type == EXPR_CONSTANT)
4475 : : {
4476 : 5 : gfc_error ("STAT tag at %L cannot be a constant", &stat->where);
4477 : 5 : goto cleanup;
4478 : : }
4479 : :
4480 : 309 : if (gfc_check_do_variable (stat->symtree))
4481 : 0 : goto cleanup;
4482 : :
4483 : 309 : if (gfc_match_char (',') == MATCH_YES)
4484 : 80 : goto alloc_opt_list;
4485 : : }
4486 : :
4487 : 6462 : m = gfc_match (" errmsg = %e", &tmp);
4488 : 6462 : if (m == MATCH_ERROR)
4489 : 0 : goto cleanup;
4490 : 6462 : if (m == MATCH_YES)
4491 : : {
4492 : 85 : if (!gfc_notify_std (GFC_STD_F2003, "ERRMSG tag at %L", &tmp->where))
4493 : 1 : goto cleanup;
4494 : :
4495 : : /* Enforce C630. */
4496 : 84 : if (saw_errmsg)
4497 : : {
4498 : 1 : gfc_error ("Redundant ERRMSG tag found at %L", &tmp->where);
4499 : 1 : goto cleanup;
4500 : : }
4501 : :
4502 : 83 : errmsg = tmp;
4503 : 83 : tmp = NULL;
4504 : 83 : saw_errmsg = true;
4505 : :
4506 : 83 : if (gfc_match_char (',') == MATCH_YES)
4507 : 4 : goto alloc_opt_list;
4508 : : }
4509 : :
4510 : 6456 : m = gfc_match (" source = %e", &tmp);
4511 : 6456 : if (m == MATCH_ERROR)
4512 : 2 : goto cleanup;
4513 : 6454 : if (m == MATCH_YES)
4514 : : {
4515 : 3149 : if (!gfc_notify_std (GFC_STD_F2003, "SOURCE tag at %L", &tmp->where))
4516 : 1 : goto cleanup;
4517 : :
4518 : : /* Enforce C630. */
4519 : 3148 : if (saw_source)
4520 : : {
4521 : 1 : gfc_error ("Redundant SOURCE tag found at %L", &tmp->where);
4522 : 1 : goto cleanup;
4523 : : }
4524 : :
4525 : : /* The next 2 conditionals check C631. */
4526 : 3147 : if (ts.type != BT_UNKNOWN)
4527 : : {
4528 : 1 : gfc_error ("SOURCE tag at %L conflicts with the typespec at %L",
4529 : 1 : &tmp->where, &old_locus);
4530 : 1 : goto cleanup;
4531 : : }
4532 : :
4533 : 3146 : if (head->next
4534 : 3169 : && !gfc_notify_std (GFC_STD_F2008, "SOURCE tag at %L"
4535 : : " with more than a single allocate object",
4536 : 23 : &tmp->where))
4537 : 1 : goto cleanup;
4538 : :
4539 : 3145 : source = tmp;
4540 : 3145 : tmp = NULL;
4541 : 3145 : saw_source = true;
4542 : :
4543 : 3145 : if (gfc_match_char (',') == MATCH_YES)
4544 : 38 : goto alloc_opt_list;
4545 : : }
4546 : :
4547 : 6412 : m = gfc_match (" mold = %e", &tmp);
4548 : 6412 : if (m == MATCH_ERROR)
4549 : 0 : goto cleanup;
4550 : 6412 : if (m == MATCH_YES)
4551 : : {
4552 : 309 : if (!gfc_notify_std (GFC_STD_F2008, "MOLD tag at %L", &tmp->where))
4553 : 1 : goto cleanup;
4554 : :
4555 : : /* Check F08:C636. */
4556 : 308 : if (saw_mold)
4557 : : {
4558 : 1 : gfc_error ("Redundant MOLD tag found at %L", &tmp->where);
4559 : 1 : goto cleanup;
4560 : : }
4561 : :
4562 : : /* Check F08:C637. */
4563 : 307 : if (ts.type != BT_UNKNOWN)
4564 : : {
4565 : 1 : gfc_error ("MOLD tag at %L conflicts with the typespec at %L",
4566 : 1 : &tmp->where, &old_locus);
4567 : 1 : goto cleanup;
4568 : : }
4569 : :
4570 : 306 : mold = tmp;
4571 : 306 : tmp = NULL;
4572 : 306 : saw_mold = true;
4573 : 306 : mold->mold = 1;
4574 : :
4575 : 306 : if (gfc_match_char (',') == MATCH_YES)
4576 : 3 : goto alloc_opt_list;
4577 : : }
4578 : :
4579 : 6406 : gfc_gobble_whitespace ();
4580 : :
4581 : 6406 : if (gfc_peek_char () == ')')
4582 : : break;
4583 : : }
4584 : :
4585 : 12544 : if (gfc_match (" )%t") != MATCH_YES)
4586 : 1 : goto syntax;
4587 : :
4588 : : /* Check F08:C637. */
4589 : 12543 : if (source && mold)
4590 : : {
4591 : 1 : gfc_error ("MOLD tag at %L conflicts with SOURCE tag at %L",
4592 : : &mold->where, &source->where);
4593 : 1 : goto cleanup;
4594 : : }
4595 : :
4596 : : /* Check F03:C623, */
4597 : 12542 : if (saw_deferred && ts.type == BT_UNKNOWN && !source && !mold)
4598 : : {
4599 : 1 : gfc_error ("Allocate-object at %L with a deferred type parameter "
4600 : : "requires either a type-spec or SOURCE tag or a MOLD tag",
4601 : : &deferred_locus);
4602 : 1 : goto cleanup;
4603 : : }
4604 : :
4605 : : /* Check F03:C625, */
4606 : 12541 : if (saw_unlimited && ts.type == BT_UNKNOWN && !source && !mold)
4607 : : {
4608 : 2 : for (tail = head; tail; tail = tail->next)
4609 : : {
4610 : 1 : if (UNLIMITED_POLY (tail->expr))
4611 : 1 : gfc_error ("Unlimited polymorphic allocate-object at %L "
4612 : : "requires either a type-spec or SOURCE tag "
4613 : : "or a MOLD tag", &tail->expr->where);
4614 : : }
4615 : 1 : goto cleanup;
4616 : : }
4617 : :
4618 : 12540 : new_st.op = EXEC_ALLOCATE;
4619 : 12540 : new_st.expr1 = stat;
4620 : 12540 : new_st.expr2 = errmsg;
4621 : 12540 : if (source)
4622 : 3143 : new_st.expr3 = source;
4623 : : else
4624 : 9397 : new_st.expr3 = mold;
4625 : 12540 : new_st.ext.alloc.list = head;
4626 : 12540 : new_st.ext.alloc.ts = ts;
4627 : :
4628 : 12540 : if (type_param_spec_list)
4629 : 41 : gfc_free_actual_arglist (type_param_spec_list);
4630 : :
4631 : : return MATCH_YES;
4632 : :
4633 : 1 : syntax:
4634 : 1 : gfc_syntax_error (ST_ALLOCATE);
4635 : :
4636 : 94 : cleanup:
4637 : 94 : gfc_free_expr (errmsg);
4638 : 94 : gfc_free_expr (source);
4639 : 94 : gfc_free_expr (stat);
4640 : 94 : gfc_free_expr (mold);
4641 : 94 : if (tmp && tmp->expr_type) gfc_free_expr (tmp);
4642 : 94 : gfc_free_alloc_list (head);
4643 : 94 : if (type_param_spec_list)
4644 : 0 : gfc_free_actual_arglist (type_param_spec_list);
4645 : : return MATCH_ERROR;
4646 : : }
4647 : :
4648 : :
4649 : : /* Match a NULLIFY statement. A NULLIFY statement is transformed into
4650 : : a set of pointer assignments to intrinsic NULL(). */
4651 : :
4652 : : match
4653 : 584 : gfc_match_nullify (void)
4654 : : {
4655 : 584 : gfc_code *tail;
4656 : 584 : gfc_expr *e, *p;
4657 : 584 : match m;
4658 : :
4659 : 584 : tail = NULL;
4660 : :
4661 : 584 : if (gfc_match_char ('(') != MATCH_YES)
4662 : 0 : goto syntax;
4663 : :
4664 : 988 : for (;;)
4665 : : {
4666 : 988 : m = gfc_match_variable (&p, 0);
4667 : 988 : if (m == MATCH_ERROR)
4668 : 2 : goto cleanup;
4669 : 986 : if (m == MATCH_NO)
4670 : 0 : goto syntax;
4671 : :
4672 : 986 : if (gfc_check_do_variable (p->symtree))
4673 : 0 : goto cleanup;
4674 : :
4675 : : /* F2008, C1242. */
4676 : 986 : if (gfc_is_coindexed (p))
4677 : : {
4678 : 1 : gfc_error ("Pointer object at %C shall not be coindexed");
4679 : 1 : goto cleanup;
4680 : : }
4681 : :
4682 : : /* Check for valid array pointer object. Bounds remapping is not
4683 : : allowed with NULLIFY. */
4684 : 985 : if (p->ref)
4685 : : {
4686 : : gfc_ref *remap = p->ref;
4687 : 964 : for (; remap; remap = remap->next)
4688 : 511 : if (!remap->next && remap->type == REF_ARRAY
4689 : 329 : && remap->u.ar.type != AR_FULL)
4690 : : break;
4691 : : if (remap)
4692 : : {
4693 : 2 : gfc_error ("NULLIFY does not allow bounds remapping for "
4694 : : "pointer object at %C");
4695 : 2 : goto cleanup;
4696 : : }
4697 : : }
4698 : :
4699 : : /* build ' => NULL() '. */
4700 : 983 : e = gfc_get_null_expr (&gfc_current_locus);
4701 : :
4702 : : /* Chain to list. */
4703 : 983 : if (tail == NULL)
4704 : : {
4705 : 580 : tail = &new_st;
4706 : 580 : tail->op = EXEC_POINTER_ASSIGN;
4707 : : }
4708 : : else
4709 : : {
4710 : 403 : tail->next = gfc_get_code (EXEC_POINTER_ASSIGN);
4711 : 403 : tail = tail->next;
4712 : : }
4713 : :
4714 : 983 : tail->expr1 = p;
4715 : 983 : tail->expr2 = e;
4716 : :
4717 : 983 : if (gfc_match (" )%t") == MATCH_YES)
4718 : : break;
4719 : 404 : if (gfc_match_char (',') != MATCH_YES)
4720 : 0 : goto syntax;
4721 : : }
4722 : :
4723 : : return MATCH_YES;
4724 : :
4725 : 0 : syntax:
4726 : 0 : gfc_syntax_error (ST_NULLIFY);
4727 : :
4728 : 5 : cleanup:
4729 : 5 : gfc_free_statements (new_st.next);
4730 : 5 : new_st.next = NULL;
4731 : 5 : gfc_free_expr (new_st.expr1);
4732 : 5 : new_st.expr1 = NULL;
4733 : 5 : gfc_free_expr (new_st.expr2);
4734 : 5 : new_st.expr2 = NULL;
4735 : 5 : return MATCH_ERROR;
4736 : : }
4737 : :
4738 : :
4739 : : /* Match a DEALLOCATE statement. */
4740 : :
4741 : : match
4742 : 5508 : gfc_match_deallocate (void)
4743 : : {
4744 : 5508 : gfc_alloc *head, *tail;
4745 : 5508 : gfc_expr *stat, *errmsg, *tmp;
4746 : 5508 : gfc_symbol *sym;
4747 : 5508 : match m;
4748 : 5508 : bool saw_stat, saw_errmsg, b1, b2;
4749 : :
4750 : 5508 : head = tail = NULL;
4751 : 5508 : stat = errmsg = tmp = NULL;
4752 : 5508 : saw_stat = saw_errmsg = false;
4753 : :
4754 : 5508 : if (gfc_match_char ('(') != MATCH_YES)
4755 : 0 : goto syntax;
4756 : :
4757 : 7388 : for (;;)
4758 : : {
4759 : 7388 : if (head == NULL)
4760 : 5508 : head = tail = gfc_get_alloc ();
4761 : : else
4762 : : {
4763 : 1880 : tail->next = gfc_get_alloc ();
4764 : 1880 : tail = tail->next;
4765 : : }
4766 : :
4767 : 7388 : m = gfc_match_variable (&tail->expr, 0);
4768 : 7388 : if (m == MATCH_ERROR)
4769 : 0 : goto cleanup;
4770 : 7388 : if (m == MATCH_NO)
4771 : 0 : goto syntax;
4772 : :
4773 : 7388 : if (tail->expr->expr_type == EXPR_CONSTANT)
4774 : : {
4775 : 1 : gfc_error ("Unexpected constant at %C");
4776 : 1 : goto cleanup;
4777 : : }
4778 : :
4779 : 7387 : if (gfc_check_do_variable (tail->expr->symtree))
4780 : 0 : goto cleanup;
4781 : :
4782 : 7387 : sym = tail->expr->symtree->n.sym;
4783 : :
4784 : 7387 : bool impure = gfc_impure_variable (sym);
4785 : 7387 : if (impure && gfc_pure (NULL))
4786 : : {
4787 : 0 : gfc_error ("Illegal allocate-object at %C for a PURE procedure");
4788 : 0 : goto cleanup;
4789 : : }
4790 : :
4791 : 7387 : if (impure)
4792 : 278 : gfc_unset_implicit_pure (NULL);
4793 : :
4794 : 7387 : if (gfc_is_coarray (tail->expr)
4795 : 7387 : && gfc_find_state (COMP_DO_CONCURRENT))
4796 : : {
4797 : 1 : gfc_error ("DEALLOCATE of coarray at %C in DO CONCURRENT block");
4798 : 1 : goto cleanup;
4799 : : }
4800 : :
4801 : 7386 : if (gfc_is_coarray (tail->expr)
4802 : 7386 : && gfc_find_state (COMP_CRITICAL))
4803 : : {
4804 : 1 : gfc_error ("DEALLOCATE of coarray at %C in CRITICAL block");
4805 : 1 : goto cleanup;
4806 : : }
4807 : :
4808 : : /* FIXME: disable the checking on derived types. */
4809 : 7385 : b1 = !(tail->expr->ref
4810 : 5463 : && (tail->expr->ref->type == REF_COMPONENT
4811 : : || tail->expr->ref->type == REF_ARRAY));
4812 : 7385 : if (sym && sym->ts.type == BT_CLASS)
4813 : 1325 : b2 = !(CLASS_DATA (sym) && (CLASS_DATA (sym)->attr.allocatable
4814 : 1322 : || CLASS_DATA (sym)->attr.class_pointer));
4815 : : else
4816 : 6060 : b2 = sym && !(sym->attr.allocatable || sym->attr.pointer
4817 : : || sym->attr.proc_pointer);
4818 : 7385 : if (b1 && b2)
4819 : : {
4820 : 3 : gfc_error ("Allocate-object at %C is not a nonprocedure pointer "
4821 : : "nor an allocatable variable");
4822 : 3 : goto cleanup;
4823 : : }
4824 : :
4825 : 7382 : if (gfc_match_char (',') != MATCH_YES)
4826 : : break;
4827 : :
4828 : 2194 : dealloc_opt_list:
4829 : :
4830 : 2259 : m = gfc_match (" stat = %e", &tmp);
4831 : 2259 : if (m == MATCH_ERROR)
4832 : 2 : goto cleanup;
4833 : 2257 : if (m == MATCH_YES)
4834 : : {
4835 : 311 : if (saw_stat)
4836 : : {
4837 : 1 : gfc_error ("Redundant STAT tag found at %L", &tmp->where);
4838 : 1 : gfc_free_expr (tmp);
4839 : 1 : goto cleanup;
4840 : : }
4841 : :
4842 : 310 : stat = tmp;
4843 : 310 : saw_stat = true;
4844 : :
4845 : 310 : if (gfc_check_do_variable (stat->symtree))
4846 : 0 : goto cleanup;
4847 : :
4848 : 310 : if (gfc_match_char (',') == MATCH_YES)
4849 : 61 : goto dealloc_opt_list;
4850 : : }
4851 : :
4852 : 2195 : m = gfc_match (" errmsg = %e", &tmp);
4853 : 2195 : if (m == MATCH_ERROR)
4854 : 0 : goto cleanup;
4855 : 2195 : if (m == MATCH_YES)
4856 : : {
4857 : 66 : if (!gfc_notify_std (GFC_STD_F2003, "ERRMSG at %L", &tmp->where))
4858 : 0 : goto cleanup;
4859 : :
4860 : 66 : if (saw_errmsg)
4861 : : {
4862 : 1 : gfc_error ("Redundant ERRMSG tag found at %L", &tmp->where);
4863 : 1 : gfc_free_expr (tmp);
4864 : 1 : goto cleanup;
4865 : : }
4866 : :
4867 : 65 : errmsg = tmp;
4868 : 65 : saw_errmsg = true;
4869 : :
4870 : 65 : if (gfc_match_char (',') == MATCH_YES)
4871 : 4 : goto dealloc_opt_list;
4872 : : }
4873 : :
4874 : 2190 : gfc_gobble_whitespace ();
4875 : :
4876 : 2190 : if (gfc_peek_char () == ')')
4877 : : break;
4878 : : }
4879 : :
4880 : 5498 : if (gfc_match (" )%t") != MATCH_YES)
4881 : 1 : goto syntax;
4882 : :
4883 : 5497 : new_st.op = EXEC_DEALLOCATE;
4884 : 5497 : new_st.expr1 = stat;
4885 : 5497 : new_st.expr2 = errmsg;
4886 : 5497 : new_st.ext.alloc.list = head;
4887 : :
4888 : 5497 : return MATCH_YES;
4889 : :
4890 : 1 : syntax:
4891 : 1 : gfc_syntax_error (ST_DEALLOCATE);
4892 : :
4893 : 11 : cleanup:
4894 : 11 : gfc_free_expr (errmsg);
4895 : 11 : gfc_free_expr (stat);
4896 : 11 : gfc_free_alloc_list (head);
4897 : 11 : return MATCH_ERROR;
4898 : : }
4899 : :
4900 : :
4901 : : /* Match a RETURN statement. */
4902 : :
4903 : : match
4904 : 2996 : gfc_match_return (void)
4905 : : {
4906 : 2996 : gfc_expr *e;
4907 : 2996 : match m;
4908 : 2996 : gfc_compile_state s;
4909 : :
4910 : 2996 : e = NULL;
4911 : :
4912 : 2996 : if (gfc_find_state (COMP_CRITICAL))
4913 : : {
4914 : 1 : gfc_error ("Image control statement RETURN at %C in CRITICAL block");
4915 : 1 : return MATCH_ERROR;
4916 : : }
4917 : :
4918 : 2995 : if (gfc_find_state (COMP_DO_CONCURRENT))
4919 : : {
4920 : 1 : gfc_error ("Image control statement RETURN at %C in DO CONCURRENT block");
4921 : 1 : return MATCH_ERROR;
4922 : : }
4923 : :
4924 : 2994 : if (gfc_match_eos () == MATCH_YES)
4925 : 2940 : goto done;
4926 : :
4927 : 54 : if (!gfc_find_state (COMP_SUBROUTINE))
4928 : : {
4929 : 0 : gfc_error ("Alternate RETURN statement at %C is only allowed within "
4930 : : "a SUBROUTINE");
4931 : 0 : goto cleanup;
4932 : : }
4933 : :
4934 : 54 : if (gfc_current_form == FORM_FREE)
4935 : : {
4936 : : /* The following are valid, so we can't require a blank after the
4937 : : RETURN keyword:
4938 : : return+1
4939 : : return(1) */
4940 : 54 : char c = gfc_peek_ascii_char ();
4941 : 54 : if (ISALPHA (c) || ISDIGIT (c))
4942 : : return MATCH_NO;
4943 : : }
4944 : :
4945 : 53 : m = gfc_match (" %e%t", &e);
4946 : 53 : if (m == MATCH_YES)
4947 : 53 : goto done;
4948 : 0 : if (m == MATCH_ERROR)
4949 : 0 : goto cleanup;
4950 : :
4951 : 0 : gfc_syntax_error (ST_RETURN);
4952 : :
4953 : 0 : cleanup:
4954 : 0 : gfc_free_expr (e);
4955 : 0 : return MATCH_ERROR;
4956 : :
4957 : 2993 : done:
4958 : 2993 : gfc_enclosing_unit (&s);
4959 : 2993 : if (s == COMP_PROGRAM
4960 : 2993 : && !gfc_notify_std (GFC_STD_GNU, "RETURN statement in "
4961 : : "main program at %C"))
4962 : : return MATCH_ERROR;
4963 : :
4964 : 2993 : new_st.op = EXEC_RETURN;
4965 : 2993 : new_st.expr1 = e;
4966 : :
4967 : 2993 : return MATCH_YES;
4968 : : }
4969 : :
4970 : :
4971 : : /* Match the call of a type-bound procedure, if CALL%var has already been
4972 : : matched and var found to be a derived-type variable. */
4973 : :
4974 : : static match
4975 : 1352 : match_typebound_call (gfc_symtree* varst)
4976 : : {
4977 : 1352 : gfc_expr* base;
4978 : 1352 : match m;
4979 : :
4980 : 1352 : base = gfc_get_expr ();
4981 : 1352 : base->expr_type = EXPR_VARIABLE;
4982 : 1352 : base->symtree = varst;
4983 : 1352 : base->where = gfc_current_locus;
4984 : 1352 : gfc_set_sym_referenced (varst->n.sym);
4985 : :
4986 : 1352 : m = gfc_match_varspec (base, 0, true, true);
4987 : 1352 : if (m == MATCH_NO)
4988 : 0 : gfc_error ("Expected component reference at %C");
4989 : 1352 : if (m != MATCH_YES)
4990 : : {
4991 : 5 : gfc_free_expr (base);
4992 : 5 : return MATCH_ERROR;
4993 : : }
4994 : :
4995 : 1347 : if (gfc_match_eos () != MATCH_YES)
4996 : : {
4997 : 1 : gfc_error ("Junk after CALL at %C");
4998 : 1 : gfc_free_expr (base);
4999 : 1 : return MATCH_ERROR;
5000 : : }
5001 : :
5002 : 1346 : if (base->expr_type == EXPR_COMPCALL)
5003 : 1224 : new_st.op = EXEC_COMPCALL;
5004 : 122 : else if (base->expr_type == EXPR_PPC)
5005 : 121 : new_st.op = EXEC_CALL_PPC;
5006 : : else
5007 : : {
5008 : 1 : gfc_error ("Expected type-bound procedure or procedure pointer component "
5009 : : "at %C");
5010 : 1 : gfc_free_expr (base);
5011 : 1 : return MATCH_ERROR;
5012 : : }
5013 : 1345 : new_st.expr1 = base;
5014 : :
5015 : 1345 : return MATCH_YES;
5016 : : }
5017 : :
5018 : :
5019 : : /* Match a CALL statement. The tricky part here are possible
5020 : : alternate return specifiers. We handle these by having all
5021 : : "subroutines" actually return an integer via a register that gives
5022 : : the return number. If the call specifies alternate returns, we
5023 : : generate code for a SELECT statement whose case clauses contain
5024 : : GOTOs to the various labels. */
5025 : :
5026 : : match
5027 : 73269 : gfc_match_call (void)
5028 : : {
5029 : 73269 : char name[GFC_MAX_SYMBOL_LEN + 1];
5030 : 73269 : gfc_actual_arglist *a, *arglist;
5031 : 73269 : gfc_case *new_case;
5032 : 73269 : gfc_symbol *sym;
5033 : 73269 : gfc_symtree *st;
5034 : 73269 : gfc_code *c;
5035 : 73269 : match m;
5036 : 73269 : int i;
5037 : :
5038 : 73269 : arglist = NULL;
5039 : :
5040 : 73269 : m = gfc_match ("% %n", name);
5041 : 73269 : if (m == MATCH_NO)
5042 : 0 : goto syntax;
5043 : 73269 : if (m != MATCH_YES)
5044 : : return m;
5045 : :
5046 : 73269 : if (gfc_get_ha_sym_tree (name, &st))
5047 : : return MATCH_ERROR;
5048 : :
5049 : 73267 : sym = st->n.sym;
5050 : :
5051 : : /* If this is a variable of derived-type, it probably starts a type-bound
5052 : : procedure call. Associate variable targets have to be resolved for the
5053 : : target type. */
5054 : 73267 : if (((sym->attr.flavor != FL_PROCEDURE
5055 : 53304 : || gfc_is_function_return_value (sym, gfc_current_ns))
5056 : 19965 : && (sym->ts.type == BT_DERIVED || sym->ts.type == BT_CLASS))
5057 : 73267 : ||
5058 : 71915 : (sym->assoc && sym->assoc->target
5059 : 0 : && gfc_resolve_expr (sym->assoc->target)
5060 : 0 : && (sym->assoc->target->ts.type == BT_DERIVED
5061 : 0 : || sym->assoc->target->ts.type == BT_CLASS)))
5062 : 1352 : return match_typebound_call (st);
5063 : :
5064 : : /* If it does not seem to be callable (include functions so that the
5065 : : right association is made. They are thrown out in resolution.)
5066 : : ... */
5067 : 71915 : if (!sym->attr.generic
5068 : : && !sym->attr.proc_pointer
5069 : : && !sym->attr.subroutine
5070 : 71915 : && !sym->attr.function)
5071 : : {
5072 : 19371 : if (!(sym->attr.external && !sym->attr.referenced))
5073 : : {
5074 : : /* ...create a symbol in this scope... */
5075 : 18730 : if (sym->ns != gfc_current_ns
5076 : 18730 : && gfc_get_sym_tree (name, NULL, &st, false) == 1)
5077 : : return MATCH_ERROR;
5078 : :
5079 : 18730 : if (sym != st->n.sym)
5080 : 19371 : sym = st->n.sym;
5081 : : }
5082 : :
5083 : : /* ...and then to try to make the symbol into a subroutine. */
5084 : 19371 : if (!gfc_add_subroutine (&sym->attr, sym->name, NULL))
5085 : : return MATCH_ERROR;
5086 : : }
5087 : :
5088 : 71913 : gfc_set_sym_referenced (sym);
5089 : :
5090 : 71913 : if (gfc_match_eos () != MATCH_YES)
5091 : : {
5092 : 66884 : m = gfc_match_actual_arglist (1, &arglist);
5093 : 66884 : if (m == MATCH_NO)
5094 : 0 : goto syntax;
5095 : 66884 : if (m == MATCH_ERROR)
5096 : 8 : goto cleanup;
5097 : :
5098 : 66876 : if (gfc_match_eos () != MATCH_YES)
5099 : 1 : goto syntax;
5100 : : }
5101 : :
5102 : : /* Walk the argument list looking for invalid BOZ. */
5103 : 231444 : for (a = arglist; a; a = a->next)
5104 : 159541 : if (a->expr && a->expr->ts.type == BT_BOZ)
5105 : : {
5106 : 1 : gfc_error ("A BOZ literal constant at %L cannot appear as an actual "
5107 : : "argument in a subroutine reference", &a->expr->where);
5108 : 1 : goto cleanup;
5109 : : }
5110 : :
5111 : :
5112 : : /* If any alternate return labels were found, construct a SELECT
5113 : : statement that will jump to the right place. */
5114 : :
5115 : 231151 : i = 0;
5116 : 231151 : for (a = arglist; a; a = a->next)
5117 : 159398 : if (a->expr == NULL)
5118 : : {
5119 : : i = 1;
5120 : : break;
5121 : : }
5122 : :
5123 : 71903 : if (i)
5124 : : {
5125 : 150 : gfc_symtree *select_st;
5126 : 150 : gfc_symbol *select_sym;
5127 : 150 : char name[GFC_MAX_SYMBOL_LEN + 1];
5128 : :
5129 : 150 : new_st.next = c = gfc_get_code (EXEC_SELECT);
5130 : 150 : sprintf (name, "_result_%s", sym->name);
5131 : 150 : gfc_get_ha_sym_tree (name, &select_st); /* Can't fail. */
5132 : :
5133 : 150 : select_sym = select_st->n.sym;
5134 : 150 : select_sym->ts.type = BT_INTEGER;
5135 : 150 : select_sym->ts.kind = gfc_default_integer_kind;
5136 : 150 : gfc_set_sym_referenced (select_sym);
5137 : 150 : c->expr1 = gfc_get_expr ();
5138 : 150 : c->expr1->expr_type = EXPR_VARIABLE;
5139 : 150 : c->expr1->symtree = select_st;
5140 : 150 : c->expr1->ts = select_sym->ts;
5141 : 150 : c->expr1->where = gfc_current_locus;
5142 : :
5143 : 150 : i = 0;
5144 : 618 : for (a = arglist; a; a = a->next)
5145 : : {
5146 : 468 : if (a->expr != NULL)
5147 : 232 : continue;
5148 : :
5149 : 236 : if (!gfc_reference_st_label (a->label, ST_LABEL_TARGET))
5150 : 0 : continue;
5151 : :
5152 : 236 : i++;
5153 : :
5154 : 236 : c->block = gfc_get_code (EXEC_SELECT);
5155 : 236 : c = c->block;
5156 : :
5157 : 236 : new_case = gfc_get_case ();
5158 : 236 : new_case->high = gfc_get_int_expr (gfc_default_integer_kind, NULL, i);
5159 : 236 : new_case->low = new_case->high;
5160 : 236 : c->ext.block.case_list = new_case;
5161 : :
5162 : 236 : c->next = gfc_get_code (EXEC_GOTO);
5163 : 236 : c->next->label1 = a->label;
5164 : : }
5165 : : }
5166 : :
5167 : 71903 : new_st.op = EXEC_CALL;
5168 : 71903 : new_st.symtree = st;
5169 : 71903 : new_st.ext.actual = arglist;
5170 : :
5171 : 71903 : return MATCH_YES;
5172 : :
5173 : 1 : syntax:
5174 : 1 : gfc_syntax_error (ST_CALL);
5175 : :
5176 : 10 : cleanup:
5177 : 10 : gfc_free_actual_arglist (arglist);
5178 : 10 : return MATCH_ERROR;
5179 : : }
5180 : :
5181 : :
5182 : : /* Given a name, return a pointer to the common head structure,
5183 : : creating it if it does not exist. If FROM_MODULE is nonzero, we
5184 : : mangle the name so that it doesn't interfere with commons defined
5185 : : in the using namespace.
5186 : : TODO: Add to global symbol tree. */
5187 : :
5188 : : gfc_common_head *
5189 : 2028 : gfc_get_common (const char *name, int from_module)
5190 : : {
5191 : 2028 : gfc_symtree *st;
5192 : 2028 : static int serial = 0;
5193 : 2028 : char mangled_name[GFC_MAX_SYMBOL_LEN + 1];
5194 : :
5195 : 2028 : if (from_module)
5196 : : {
5197 : : /* A use associated common block is only needed to correctly layout
5198 : : the variables it contains. */
5199 : 170 : snprintf (mangled_name, GFC_MAX_SYMBOL_LEN, "_%d_%s", serial++, name);
5200 : 170 : st = gfc_new_symtree (&gfc_current_ns->common_root, mangled_name);
5201 : : }
5202 : : else
5203 : : {
5204 : 1858 : st = gfc_find_symtree (gfc_current_ns->common_root, name);
5205 : :
5206 : 1858 : if (st == NULL)
5207 : 1770 : st = gfc_new_symtree (&gfc_current_ns->common_root, name);
5208 : : }
5209 : :
5210 : 2028 : if (st->n.common == NULL)
5211 : : {
5212 : 1940 : st->n.common = gfc_get_common_head ();
5213 : 1940 : st->n.common->where = gfc_current_locus;
5214 : 1940 : strcpy (st->n.common->name, name);
5215 : : }
5216 : :
5217 : 2028 : return st->n.common;
5218 : : }
5219 : :
5220 : :
5221 : : /* Match a common block name. */
5222 : :
5223 : : match
5224 : 2083 : gfc_match_common_name (char *name)
5225 : : {
5226 : 2083 : match m;
5227 : :
5228 : 2083 : if (gfc_match_char ('/') == MATCH_NO)
5229 : : {
5230 : 140 : name[0] = '\0';
5231 : 140 : return MATCH_YES;
5232 : : }
5233 : :
5234 : 1943 : if (gfc_match_char ('/') == MATCH_YES)
5235 : : {
5236 : 85 : name[0] = '\0';
5237 : 85 : return MATCH_YES;
5238 : : }
5239 : :
5240 : 1858 : m = gfc_match_name (name);
5241 : :
5242 : 1858 : if (m == MATCH_ERROR)
5243 : : return MATCH_ERROR;
5244 : 1858 : if (m == MATCH_YES && gfc_match_char ('/') == MATCH_YES)
5245 : : return MATCH_YES;
5246 : :
5247 : 0 : gfc_error ("Syntax error in common block name at %C");
5248 : 0 : return MATCH_ERROR;
5249 : : }
5250 : :
5251 : :
5252 : : /* Match a COMMON statement. */
5253 : :
5254 : : match
5255 : 2003 : gfc_match_common (void)
5256 : : {
5257 : 2003 : gfc_symbol *sym, **head, *tail, *other;
5258 : 2003 : char name[GFC_MAX_SYMBOL_LEN + 1];
5259 : 2003 : gfc_common_head *t;
5260 : 2003 : gfc_array_spec *as;
5261 : 2003 : gfc_equiv *e1, *e2;
5262 : 2003 : match m;
5263 : 2003 : char c;
5264 : :
5265 : : /* COMMON has been matched. In free form source code, the next character
5266 : : needs to be whitespace or '/'. Check that here. Fixed form source
5267 : : code needs to be checked below. */
5268 : 2003 : c = gfc_peek_ascii_char ();
5269 : 2003 : if (gfc_current_form == FORM_FREE && !gfc_is_whitespace (c) && c != '/')
5270 : : return MATCH_NO;
5271 : :
5272 : 2002 : as = NULL;
5273 : :
5274 : 2007 : for (;;)
5275 : : {
5276 : 2007 : m = gfc_match_common_name (name);
5277 : 2007 : if (m == MATCH_ERROR)
5278 : 0 : goto cleanup;
5279 : :
5280 : 2007 : if (name[0] == '\0')
5281 : : {
5282 : 225 : t = &gfc_current_ns->blank_common;
5283 : 225 : if (t->head == NULL)
5284 : 223 : t->where = gfc_current_locus;
5285 : : }
5286 : : else
5287 : : {
5288 : 1782 : t = gfc_get_common (name, 0);
5289 : : }
5290 : 2007 : head = &t->head;
5291 : :
5292 : 2007 : if (*head == NULL)
5293 : : tail = NULL;
5294 : : else
5295 : : {
5296 : : tail = *head;
5297 : 114 : while (tail->common_next)
5298 : : tail = tail->common_next;
5299 : : }
5300 : :
5301 : : /* Grab the list of symbols. */
5302 : 5882 : for (;;)
5303 : : {
5304 : 5882 : m = gfc_match_symbol (&sym, 0);
5305 : 5882 : if (m == MATCH_ERROR)
5306 : 0 : goto cleanup;
5307 : 5882 : if (m == MATCH_NO)
5308 : 7 : goto syntax;
5309 : :
5310 : : /* See if we know the current common block is bind(c), and if
5311 : : so, then see if we can check if the symbol is (which it'll
5312 : : need to be). This can happen if the bind(c) attr stmt was
5313 : : applied to the common block, and the variable(s) already
5314 : : defined, before declaring the common block. */
5315 : 5875 : if (t->is_bind_c == 1)
5316 : : {
5317 : 13 : if (sym->ts.type != BT_UNKNOWN && sym->ts.is_c_interop != 1)
5318 : : {
5319 : : /* If we find an error, just print it and continue,
5320 : : cause it's just semantic, and we can see if there
5321 : : are more errors. */
5322 : 0 : gfc_error_now ("Variable %qs at %L in common block %qs "
5323 : : "at %C must be declared with a C "
5324 : : "interoperable kind since common block "
5325 : : "%qs is bind(c)",
5326 : : sym->name, &(sym->declared_at), t->name,
5327 : 0 : t->name);
5328 : : }
5329 : :
5330 : 13 : if (sym->attr.is_bind_c == 1)
5331 : 0 : gfc_error_now ("Variable %qs in common block %qs at %C cannot "
5332 : : "be bind(c) since it is not global", sym->name,
5333 : 0 : t->name);
5334 : : }
5335 : :
5336 : 5875 : if (sym->attr.in_common)
5337 : : {
5338 : 2 : gfc_error ("Symbol %qs at %C is already in a COMMON block",
5339 : : sym->name);
5340 : 2 : goto cleanup;
5341 : : }
5342 : :
5343 : 5873 : if (((sym->value != NULL && sym->value->expr_type != EXPR_NULL)
5344 : 5873 : || sym->attr.data) && gfc_current_state () != COMP_BLOCK_DATA)
5345 : : {
5346 : 6 : if (!gfc_notify_std (GFC_STD_GNU, "Initialized symbol %qs at "
5347 : : "%C can only be COMMON in BLOCK DATA",
5348 : : sym->name))
5349 : 2 : goto cleanup;
5350 : : }
5351 : :
5352 : : /* F2018:R874: common-block-object is variable-name [ (array-spec) ]
5353 : : F2018:C8121: A variable-name shall not be a name made accessible
5354 : : by use association. */
5355 : 5871 : if (sym->attr.use_assoc)
5356 : : {
5357 : 2 : gfc_error ("Symbol %qs at %C is USE associated from module %qs "
5358 : : "and cannot occur in COMMON", sym->name, sym->module);
5359 : 2 : goto cleanup;
5360 : : }
5361 : :
5362 : : /* Deal with an optional array specification after the
5363 : : symbol name. */
5364 : 5869 : m = gfc_match_array_spec (&as, true, true);
5365 : 5869 : if (m == MATCH_ERROR)
5366 : 2 : goto cleanup;
5367 : :
5368 : 5867 : if (m == MATCH_YES)
5369 : : {
5370 : 2127 : if (as->type != AS_EXPLICIT)
5371 : : {
5372 : 0 : gfc_error ("Array specification for symbol %qs in COMMON "
5373 : : "at %C must be explicit", sym->name);
5374 : 0 : goto cleanup;
5375 : : }
5376 : :
5377 : 2127 : if (as->corank)
5378 : : {
5379 : 1 : gfc_error ("Symbol %qs in COMMON at %C cannot be a "
5380 : : "coarray", sym->name);
5381 : 1 : goto cleanup;
5382 : : }
5383 : :
5384 : 2126 : if (!gfc_add_dimension (&sym->attr, sym->name, NULL))
5385 : 0 : goto cleanup;
5386 : :
5387 : 2126 : if (sym->attr.pointer)
5388 : : {
5389 : 0 : gfc_error ("Symbol %qs in COMMON at %C cannot be a "
5390 : : "POINTER array", sym->name);
5391 : 0 : goto cleanup;
5392 : : }
5393 : :
5394 : 2126 : sym->as = as;
5395 : 2126 : as = NULL;
5396 : :
5397 : : }
5398 : :
5399 : : /* Add the in_common attribute, but ignore the reported errors
5400 : : if any, and continue matching. */
5401 : 5866 : gfc_add_in_common (&sym->attr, sym->name, NULL);
5402 : :
5403 : 5866 : sym->common_block = t;
5404 : 5866 : sym->common_block->refs++;
5405 : :
5406 : 5866 : if (tail != NULL)
5407 : 3887 : tail->common_next = sym;
5408 : : else
5409 : 1979 : *head = sym;
5410 : :
5411 : 5866 : tail = sym;
5412 : :
5413 : 5866 : sym->common_head = t;
5414 : :
5415 : : /* Check to see if the symbol is already in an equivalence group.
5416 : : If it is, set the other members as being in common. */
5417 : 5866 : if (sym->attr.in_equivalence)
5418 : : {
5419 : 20 : for (e1 = gfc_current_ns->equiv; e1; e1 = e1->next)
5420 : : {
5421 : 29 : for (e2 = e1; e2; e2 = e2->eq)
5422 : 23 : if (e2->expr->symtree->n.sym == sym)
5423 : 8 : goto equiv_found;
5424 : :
5425 : 6 : continue;
5426 : :
5427 : 8 : equiv_found:
5428 : :
5429 : 23 : for (e2 = e1; e2; e2 = e2->eq)
5430 : : {
5431 : 16 : other = e2->expr->symtree->n.sym;
5432 : 16 : if (other->common_head
5433 : 9 : && other->common_head != sym->common_head)
5434 : : {
5435 : 1 : gfc_error ("Symbol %qs, in COMMON block %qs at "
5436 : : "%C is being indirectly equivalenced to "
5437 : : "another COMMON block %qs",
5438 : 1 : sym->name, sym->common_head->name,
5439 : 1 : other->common_head->name);
5440 : 1 : goto cleanup;
5441 : : }
5442 : 15 : other->attr.in_common = 1;
5443 : 15 : other->common_head = t;
5444 : : }
5445 : : }
5446 : : }
5447 : :
5448 : :
5449 : 5865 : gfc_gobble_whitespace ();
5450 : 5865 : if (gfc_match_eos () == MATCH_YES)
5451 : 1984 : goto done;
5452 : 3881 : c = gfc_peek_ascii_char ();
5453 : 3881 : if (c == '/')
5454 : : break;
5455 : 3878 : if (c != ',')
5456 : : {
5457 : : /* In Fixed form source code, gfortran can end up here for an
5458 : : expression of the form COMMONI = RHS. This may not be an
5459 : : error, so return MATCH_NO. */
5460 : 1 : if (gfc_current_form == FORM_FIXED && c == '=')
5461 : : {
5462 : 1 : gfc_free_array_spec (as);
5463 : 1 : return MATCH_NO;
5464 : : }
5465 : 0 : goto syntax;
5466 : : }
5467 : : else
5468 : 3877 : gfc_match_char (',');
5469 : :
5470 : 3877 : gfc_gobble_whitespace ();
5471 : 3877 : if (gfc_peek_ascii_char () == '/')
5472 : : break;
5473 : : }
5474 : : }
5475 : :
5476 : 1984 : done:
5477 : 1984 : return MATCH_YES;
5478 : :
5479 : 7 : syntax:
5480 : 7 : gfc_syntax_error (ST_COMMON);
5481 : :
5482 : 17 : cleanup:
5483 : 17 : gfc_free_array_spec (as);
5484 : 17 : return MATCH_ERROR;
5485 : : }
5486 : :
5487 : :
5488 : : /* Match a BLOCK DATA program unit. */
5489 : :
5490 : : match
5491 : 84 : gfc_match_block_data (void)
5492 : : {
5493 : 84 : char name[GFC_MAX_SYMBOL_LEN + 1];
5494 : 84 : gfc_symbol *sym;
5495 : 84 : match m;
5496 : :
5497 : 84 : if (!gfc_notify_std (GFC_STD_F2018_OBS, "BLOCK DATA construct at %L",
5498 : : &gfc_current_locus))
5499 : : return MATCH_ERROR;
5500 : :
5501 : 84 : if (gfc_match_eos () == MATCH_YES)
5502 : : {
5503 : 49 : gfc_new_block = NULL;
5504 : 49 : return MATCH_YES;
5505 : : }
5506 : :
5507 : 35 : m = gfc_match ("% %n%t", name);
5508 : 35 : if (m != MATCH_YES)
5509 : : return MATCH_ERROR;
5510 : :
5511 : 35 : if (gfc_get_symbol (name, NULL, &sym))
5512 : : return MATCH_ERROR;
5513 : :
5514 : 35 : if (!gfc_add_flavor (&sym->attr, FL_BLOCK_DATA, sym->name, NULL))
5515 : : return MATCH_ERROR;
5516 : :
5517 : 35 : gfc_new_block = sym;
5518 : :
5519 : 35 : return MATCH_YES;
5520 : : }
5521 : :
5522 : :
5523 : : /* Free a namelist structure. */
5524 : :
5525 : : void
5526 : 5416299 : gfc_free_namelist (gfc_namelist *name)
5527 : : {
5528 : 5416299 : gfc_namelist *n;
5529 : :
5530 : 5418393 : for (; name; name = n)
5531 : : {
5532 : 2094 : n = name->next;
5533 : 2094 : free (name);
5534 : : }
5535 : 5416299 : }
5536 : :
5537 : :
5538 : : /* Free an OpenMP namelist structure. */
5539 : :
5540 : : void
5541 : 1169543 : gfc_free_omp_namelist (gfc_omp_namelist *name, bool free_ns,
5542 : : bool free_align_allocator,
5543 : : bool free_mem_traits_space, bool free_init)
5544 : : {
5545 : 1169543 : gfc_omp_namelist *n;
5546 : 1169543 : gfc_expr *last_allocator = NULL;
5547 : 1169543 : char *last_init_str = NULL;
5548 : :
5549 : 1212676 : for (; name; name = n)
5550 : : {
5551 : 43133 : gfc_free_expr (name->expr);
5552 : 43133 : if (free_align_allocator)
5553 : 464 : gfc_free_expr (name->u.align);
5554 : : else if (free_mem_traits_space)
5555 : : { } /* name->u.memspace_sym: shall not call gfc_free_symbol here. */
5556 : :
5557 : 43133 : if (free_ns)
5558 : 1971 : gfc_free_namespace (name->u2.ns);
5559 : 41162 : else if (free_align_allocator)
5560 : : {
5561 : 464 : if (last_allocator != name->u2.allocator)
5562 : : {
5563 : 109 : last_allocator = name->u2.allocator;
5564 : 109 : gfc_free_expr (name->u2.allocator);
5565 : : }
5566 : : }
5567 : 40698 : else if (free_mem_traits_space)
5568 : : { } /* name->u2.traits_sym: shall not call gfc_free_symbol here. */
5569 : 40612 : else if (free_init)
5570 : : {
5571 : 26 : if (name->u.init.str != last_init_str)
5572 : : {
5573 : 5 : last_init_str = name->u.init.str;
5574 : 5 : free (name->u.init.str);
5575 : 5 : free (name->u2.interop_int);
5576 : : }
5577 : : }
5578 : 40586 : else if (name->u2.udr)
5579 : : {
5580 : 467 : if (name->u2.udr->combiner)
5581 : 467 : gfc_free_statement (name->u2.udr->combiner);
5582 : 467 : if (name->u2.udr->initializer)
5583 : 330 : gfc_free_statement (name->u2.udr->initializer);
5584 : 467 : free (name->u2.udr);
5585 : : }
5586 : 43133 : n = name->next;
5587 : 43133 : free (name);
5588 : : }
5589 : 1169543 : }
5590 : :
5591 : :
5592 : : /* Match a NAMELIST statement. */
5593 : :
5594 : : match
5595 : 984 : gfc_match_namelist (void)
5596 : : {
5597 : 984 : gfc_symbol *group_name, *sym;
5598 : 984 : gfc_namelist *nl;
5599 : 984 : match m, m2;
5600 : :
5601 : 984 : m = gfc_match (" / %s /", &group_name);
5602 : 984 : if (m == MATCH_NO)
5603 : 0 : goto syntax;
5604 : 984 : if (m == MATCH_ERROR)
5605 : 0 : goto error;
5606 : :
5607 : 984 : for (;;)
5608 : : {
5609 : 984 : if (group_name->ts.type != BT_UNKNOWN)
5610 : : {
5611 : 0 : gfc_error ("Namelist group name %qs at %C already has a basic "
5612 : : "type of %s", group_name->name,
5613 : : gfc_typename (&group_name->ts));
5614 : 0 : return MATCH_ERROR;
5615 : : }
5616 : :
5617 : : /* A use associated name shall not be used as a namelist group name
5618 : : (e.g. F2003:C581). It is only supported as a legacy extension. */
5619 : 984 : if (group_name->attr.flavor == FL_NAMELIST
5620 : 220 : && group_name->attr.use_assoc
5621 : 993 : && !gfc_notify_std (GFC_STD_LEGACY, "Namelist group name %qs "
5622 : : "at %C already is USE associated and can"
5623 : : "not be respecified.", group_name->name))
5624 : : return MATCH_ERROR;
5625 : :
5626 : 981 : if (group_name->attr.flavor != FL_NAMELIST
5627 : 981 : && !gfc_add_flavor (&group_name->attr, FL_NAMELIST,
5628 : : group_name->name, NULL))
5629 : : return MATCH_ERROR;
5630 : :
5631 : 2016 : for (;;)
5632 : : {
5633 : 2016 : m = gfc_match_symbol (&sym, 1);
5634 : 2016 : if (m == MATCH_NO)
5635 : 1 : goto syntax;
5636 : 2015 : if (m == MATCH_ERROR)
5637 : 0 : goto error;
5638 : :
5639 : 2015 : if (sym->ts.type == BT_UNKNOWN)
5640 : : {
5641 : 50 : if (gfc_current_ns->seen_implicit_none)
5642 : : {
5643 : : /* It is required that members of a namelist be declared
5644 : : before the namelist. We check this by checking if the
5645 : : symbol has a defined type for IMPLICIT NONE. */
5646 : 1 : gfc_error ("Symbol %qs in namelist %qs at %C must be "
5647 : : "declared before the namelist is declared.",
5648 : : sym->name, group_name->name);
5649 : 1 : gfc_error_check ();
5650 : : }
5651 : : else
5652 : : {
5653 : : /* Before the symbol is given an implicit type, check to
5654 : : see if the symbol is already available in the namespace,
5655 : : possibly through host association. Importantly, the
5656 : : symbol may be a user defined type. */
5657 : :
5658 : 49 : gfc_symbol *tmp;
5659 : :
5660 : 49 : gfc_find_symbol (sym->name, NULL, 1, &tmp);
5661 : 49 : if (tmp && tmp->attr.generic
5662 : 51 : && (tmp = gfc_find_dt_in_generic (tmp)))
5663 : : {
5664 : 2 : if (tmp->attr.flavor == FL_DERIVED)
5665 : : {
5666 : 2 : gfc_error ("Derived type %qs at %L conflicts with "
5667 : : "namelist object %qs at %C",
5668 : : tmp->name, &tmp->declared_at, sym->name);
5669 : 2 : goto error;
5670 : : }
5671 : : }
5672 : :
5673 : : /* Set type of the symbol to its implicit default type. It is
5674 : : not allowed to set it later to any other type. */
5675 : 47 : gfc_set_default_type (sym, 0, gfc_current_ns);
5676 : : }
5677 : : }
5678 : 2013 : if (sym->attr.in_namelist == 0
5679 : 2013 : && !gfc_add_in_namelist (&sym->attr, sym->name, NULL))
5680 : 2 : goto error;
5681 : :
5682 : : /* Use gfc_error_check here, rather than goto error, so that
5683 : : these are the only errors for the next two lines. */
5684 : 2011 : if (sym->as && sym->as->type == AS_ASSUMED_SIZE)
5685 : : {
5686 : 1 : gfc_error ("Assumed size array %qs in namelist %qs at "
5687 : : "%C is not allowed", sym->name, group_name->name);
5688 : 1 : gfc_error_check ();
5689 : : }
5690 : :
5691 : 2011 : nl = gfc_get_namelist ();
5692 : 2011 : nl->sym = sym;
5693 : 2011 : sym->refs++;
5694 : :
5695 : 2011 : if (group_name->namelist == NULL)
5696 : 758 : group_name->namelist = group_name->namelist_tail = nl;
5697 : : else
5698 : : {
5699 : 1253 : group_name->namelist_tail->next = nl;
5700 : 1253 : group_name->namelist_tail = nl;
5701 : : }
5702 : :
5703 : 2011 : if (gfc_match_eos () == MATCH_YES)
5704 : 974 : goto done;
5705 : :
5706 : 1037 : m = gfc_match_char (',');
5707 : :
5708 : 1037 : if (gfc_match_char ('/') == MATCH_YES)
5709 : : {
5710 : 0 : m2 = gfc_match (" %s /", &group_name);
5711 : 0 : if (m2 == MATCH_YES)
5712 : : break;
5713 : 0 : if (m2 == MATCH_ERROR)
5714 : 0 : goto error;
5715 : 0 : goto syntax;
5716 : : }
5717 : :
5718 : 1037 : if (m != MATCH_YES)
5719 : 0 : goto syntax;
5720 : : }
5721 : : }
5722 : :
5723 : 974 : done:
5724 : 974 : return MATCH_YES;
5725 : :
5726 : 1 : syntax:
5727 : 1 : gfc_syntax_error (ST_NAMELIST);
5728 : :
5729 : : error:
5730 : : return MATCH_ERROR;
5731 : : }
5732 : :
5733 : :
5734 : : /* Match a MODULE statement. */
5735 : :
5736 : : match
5737 : 9025 : gfc_match_module (void)
5738 : : {
5739 : 9025 : match m;
5740 : :
5741 : 9025 : m = gfc_match (" %s%t", &gfc_new_block);
5742 : 9025 : if (m != MATCH_YES)
5743 : : return m;
5744 : :
5745 : 9002 : if (!gfc_add_flavor (&gfc_new_block->attr, FL_MODULE,
5746 : : gfc_new_block->name, NULL))
5747 : 0 : return MATCH_ERROR;
5748 : :
5749 : : return MATCH_YES;
5750 : : }
5751 : :
5752 : :
5753 : : /* Free equivalence sets and lists. Recursively is the easiest way to
5754 : : do this. */
5755 : :
5756 : : void
5757 : 8157847 : gfc_free_equiv_until (gfc_equiv *eq, gfc_equiv *stop)
5758 : : {
5759 : 8157847 : if (eq == stop)
5760 : : return;
5761 : :
5762 : 3229 : gfc_free_equiv (eq->eq);
5763 : 3229 : gfc_free_equiv_until (eq->next, stop);
5764 : 3229 : gfc_free_expr (eq->expr);
5765 : 3229 : free (eq);
5766 : : }
5767 : :
5768 : :
5769 : : void
5770 : 458058 : gfc_free_equiv (gfc_equiv *eq)
5771 : : {
5772 : 458058 : gfc_free_equiv_until (eq, NULL);
5773 : 458058 : }
5774 : :
5775 : :
5776 : : /* Match an EQUIVALENCE statement. */
5777 : :
5778 : : match
5779 : 1035 : gfc_match_equivalence (void)
5780 : : {
5781 : 1035 : gfc_equiv *eq, *set, *tail;
5782 : 1035 : gfc_ref *ref;
5783 : 1035 : gfc_symbol *sym;
5784 : 1035 : match m;
5785 : 1035 : gfc_common_head *common_head = NULL;
5786 : 1035 : bool common_flag;
5787 : 1035 : int cnt;
5788 : 1035 : char c;
5789 : :
5790 : : /* EQUIVALENCE has been matched. After gobbling any possible whitespace,
5791 : : the next character needs to be '('. Check that here, and return
5792 : : MATCH_NO for a variable of the form equivalence. */
5793 : 1035 : gfc_gobble_whitespace ();
5794 : 1035 : c = gfc_peek_ascii_char ();
5795 : 1035 : if (c != '(')
5796 : : return MATCH_NO;
5797 : :
5798 : : tail = NULL;
5799 : :
5800 : 1467 : for (;;)
5801 : : {
5802 : 1467 : eq = gfc_get_equiv ();
5803 : 1467 : if (tail == NULL)
5804 : 1034 : tail = eq;
5805 : :
5806 : 1467 : eq->next = gfc_current_ns->equiv;
5807 : 1467 : gfc_current_ns->equiv = eq;
5808 : :
5809 : 1467 : if (gfc_match_char ('(') != MATCH_YES)
5810 : 0 : goto syntax;
5811 : :
5812 : : set = eq;
5813 : : common_flag = false;
5814 : : cnt = 0;
5815 : :
5816 : 4483 : for (;;)
5817 : : {
5818 : 2975 : m = gfc_match_equiv_variable (&set->expr);
5819 : 2975 : if (m == MATCH_ERROR)
5820 : 1 : goto cleanup;
5821 : 2974 : if (m == MATCH_NO)
5822 : 0 : goto syntax;
5823 : :
5824 : : /* count the number of objects. */
5825 : 2974 : cnt++;
5826 : :
5827 : 2974 : if (gfc_match_char ('%') == MATCH_YES)
5828 : : {
5829 : 0 : gfc_error ("Derived type component %C is not a "
5830 : : "permitted EQUIVALENCE member");
5831 : 0 : goto cleanup;
5832 : : }
5833 : :
5834 : 5063 : for (ref = set->expr->ref; ref; ref = ref->next)
5835 : 2089 : if (ref->type == REF_ARRAY && ref->u.ar.type == AR_SECTION)
5836 : : {
5837 : 0 : gfc_error ("Array reference in EQUIVALENCE at %C cannot "
5838 : : "be an array section");
5839 : 0 : goto cleanup;
5840 : : }
5841 : :
5842 : 2974 : sym = set->expr->symtree->n.sym;
5843 : :
5844 : 2974 : if (!gfc_add_in_equivalence (&sym->attr, sym->name, NULL))
5845 : 6 : goto cleanup;
5846 : 2968 : if (sym->ts.type == BT_CLASS
5847 : 3 : && CLASS_DATA (sym)
5848 : 2971 : && !gfc_add_in_equivalence (&CLASS_DATA (sym)->attr,
5849 : : sym->name, NULL))
5850 : 3 : goto cleanup;
5851 : :
5852 : 2965 : if (sym->attr.in_common)
5853 : : {
5854 : 301 : common_flag = true;
5855 : 301 : common_head = sym->common_head;
5856 : : }
5857 : :
5858 : 2965 : if (gfc_match_char (')') == MATCH_YES)
5859 : : break;
5860 : :
5861 : 1508 : if (gfc_match_char (',') != MATCH_YES)
5862 : 0 : goto syntax;
5863 : :
5864 : 1508 : set->eq = gfc_get_equiv ();
5865 : 1508 : set = set->eq;
5866 : : }
5867 : :
5868 : 1457 : if (cnt < 2)
5869 : : {
5870 : 1 : gfc_error ("EQUIVALENCE at %C requires two or more objects");
5871 : 1 : goto cleanup;
5872 : : }
5873 : :
5874 : : /* If one of the members of an equivalence is in common, then
5875 : : mark them all as being in common. Before doing this, check
5876 : : that members of the equivalence group are not in different
5877 : : common blocks. */
5878 : 1456 : if (common_flag)
5879 : 901 : for (set = eq; set; set = set->eq)
5880 : : {
5881 : 609 : sym = set->expr->symtree->n.sym;
5882 : 609 : if (sym->common_head && sym->common_head != common_head)
5883 : : {
5884 : 1 : gfc_error ("Attempt to indirectly overlap COMMON "
5885 : : "blocks %s and %s by EQUIVALENCE at %C",
5886 : 1 : sym->common_head->name, common_head->name);
5887 : 1 : goto cleanup;
5888 : : }
5889 : 608 : sym->attr.in_common = 1;
5890 : 608 : sym->common_head = common_head;
5891 : : }
5892 : :
5893 : 1455 : if (gfc_match_eos () == MATCH_YES)
5894 : : break;
5895 : 434 : if (gfc_match_char (',') != MATCH_YES)
5896 : : {
5897 : 1 : gfc_error ("Expecting a comma in EQUIVALENCE at %C");
5898 : 1 : goto cleanup;
5899 : : }
5900 : : }
5901 : :
5902 : 1021 : if (!gfc_notify_std (GFC_STD_F2018_OBS, "EQUIVALENCE statement at %C"))
5903 : : return MATCH_ERROR;
5904 : :
5905 : : return MATCH_YES;
5906 : :
5907 : 0 : syntax:
5908 : 0 : gfc_syntax_error (ST_EQUIVALENCE);
5909 : :
5910 : 13 : cleanup:
5911 : 13 : eq = tail->next;
5912 : 13 : tail->next = NULL;
5913 : :
5914 : 13 : gfc_free_equiv (gfc_current_ns->equiv);
5915 : 13 : gfc_current_ns->equiv = eq;
5916 : :
5917 : 13 : return MATCH_ERROR;
5918 : : }
5919 : :
5920 : :
5921 : : /* Check that a statement function is not recursive. This is done by looking
5922 : : for the statement function symbol(sym) by looking recursively through its
5923 : : expression(e). If a reference to sym is found, true is returned.
5924 : : 12.5.4 requires that any variable of function that is implicitly typed
5925 : : shall have that type confirmed by any subsequent type declaration. The
5926 : : implicit typing is conveniently done here. */
5927 : : static bool
5928 : : recursive_stmt_fcn (gfc_expr *, gfc_symbol *);
5929 : :
5930 : : static bool
5931 : 873 : check_stmt_fcn (gfc_expr *e, gfc_symbol *sym, int *f ATTRIBUTE_UNUSED)
5932 : : {
5933 : :
5934 : 873 : if (e == NULL)
5935 : : return false;
5936 : :
5937 : 873 : switch (e->expr_type)
5938 : : {
5939 : 106 : case EXPR_FUNCTION:
5940 : 106 : if (e->symtree == NULL)
5941 : : return false;
5942 : :
5943 : : /* Check the name before testing for nested recursion! */
5944 : 106 : if (sym->name == e->symtree->n.sym->name)
5945 : : return true;
5946 : :
5947 : : /* Catch recursion via other statement functions. */
5948 : 105 : if (e->symtree->n.sym->attr.proc == PROC_ST_FUNCTION
5949 : 4 : && e->symtree->n.sym->value
5950 : 109 : && recursive_stmt_fcn (e->symtree->n.sym->value, sym))
5951 : : return true;
5952 : :
5953 : 103 : if (e->symtree->n.sym->ts.type == BT_UNKNOWN)
5954 : 53 : gfc_set_default_type (e->symtree->n.sym, 0, NULL);
5955 : :
5956 : : break;
5957 : :
5958 : 398 : case EXPR_VARIABLE:
5959 : 398 : if (e->symtree && sym->name == e->symtree->n.sym->name)
5960 : : return true;
5961 : :
5962 : 398 : if (e->symtree->n.sym->ts.type == BT_UNKNOWN)
5963 : 150 : gfc_set_default_type (e->symtree->n.sym, 0, NULL);
5964 : : break;
5965 : :
5966 : : default:
5967 : : break;
5968 : : }
5969 : :
5970 : : return false;
5971 : : }
5972 : :
5973 : :
5974 : : static bool
5975 : 228 : recursive_stmt_fcn (gfc_expr *e, gfc_symbol *sym)
5976 : : {
5977 : 4 : return gfc_traverse_expr (e, sym, check_stmt_fcn, 0);
5978 : : }
5979 : :
5980 : :
5981 : : /* Check for invalid uses of statement function dummy arguments in body. */
5982 : :
5983 : : static bool
5984 : 846 : chk_stmt_fcn_body (gfc_expr *e, gfc_symbol *sym, int *f ATTRIBUTE_UNUSED)
5985 : : {
5986 : 846 : gfc_formal_arglist *formal;
5987 : :
5988 : 846 : if (e == NULL || e->symtree == NULL || e->expr_type != EXPR_FUNCTION)
5989 : : return false;
5990 : :
5991 : 239 : for (formal = sym->formal; formal; formal = formal->next)
5992 : : {
5993 : 141 : if (formal->sym == e->symtree->n.sym)
5994 : : {
5995 : 2 : gfc_error ("Invalid use of statement function argument at %L",
5996 : : &e->where);
5997 : 2 : return true;
5998 : : }
5999 : : }
6000 : :
6001 : : return false;
6002 : : }
6003 : :
6004 : :
6005 : : /* Match a statement function declaration. It is so easy to match
6006 : : non-statement function statements with a MATCH_ERROR as opposed to
6007 : : MATCH_NO that we suppress error message in most cases. */
6008 : :
6009 : : match
6010 : 375021 : gfc_match_st_function (void)
6011 : : {
6012 : 375021 : gfc_error_buffer old_error;
6013 : 375021 : gfc_symbol *sym;
6014 : 375021 : gfc_expr *expr;
6015 : 375021 : match m;
6016 : 375021 : char name[GFC_MAX_SYMBOL_LEN + 1];
6017 : 375021 : locus old_locus;
6018 : 375021 : bool fcn;
6019 : 375021 : gfc_formal_arglist *ptr;
6020 : :
6021 : : /* Read the possible statement function name, and then check to see if
6022 : : a symbol is already present in the namespace. Record if it is a
6023 : : function and whether it has been referenced. */
6024 : 375021 : fcn = false;
6025 : 375021 : ptr = NULL;
6026 : 375021 : old_locus = gfc_current_locus;
6027 : 375021 : m = gfc_match_name (name);
6028 : 375021 : if (m == MATCH_YES)
6029 : : {
6030 : 375021 : gfc_find_symbol (name, NULL, 1, &sym);
6031 : 375021 : if (sym && sym->attr.function && !sym->attr.referenced)
6032 : : {
6033 : 123 : fcn = true;
6034 : 123 : ptr = sym->formal;
6035 : : }
6036 : : }
6037 : :
6038 : 375021 : gfc_current_locus = old_locus;
6039 : 375021 : m = gfc_match_symbol (&sym, 0);
6040 : 375021 : if (m != MATCH_YES)
6041 : : return m;
6042 : :
6043 : 375008 : gfc_push_error (&old_error);
6044 : :
6045 : 375008 : if (!gfc_add_procedure (&sym->attr, PROC_ST_FUNCTION, sym->name, NULL))
6046 : 323 : goto undo_error;
6047 : :
6048 : 374685 : if (gfc_match_formal_arglist (sym, 1, 0) != MATCH_YES)
6049 : 309203 : goto undo_error;
6050 : :
6051 : 65482 : m = gfc_match (" = %e%t", &expr);
6052 : 65482 : if (m == MATCH_NO)
6053 : 65258 : goto undo_error;
6054 : :
6055 : 224 : gfc_free_error (&old_error);
6056 : :
6057 : 224 : if (m == MATCH_ERROR)
6058 : : return m;
6059 : :
6060 : 224 : if (recursive_stmt_fcn (expr, sym))
6061 : : {
6062 : 1 : gfc_error ("Statement function at %L is recursive", &expr->where);
6063 : 1 : return MATCH_ERROR;
6064 : : }
6065 : :
6066 : 223 : if (fcn && ptr != sym->formal)
6067 : : {
6068 : 2 : gfc_error ("Statement function %qs at %L conflicts with function name",
6069 : 2 : sym->name, &expr->where);
6070 : 2 : return MATCH_ERROR;
6071 : : }
6072 : :
6073 : 221 : if (gfc_traverse_expr (expr, sym, chk_stmt_fcn_body, 0))
6074 : : return MATCH_ERROR;
6075 : :
6076 : 219 : sym->value = expr;
6077 : :
6078 : 219 : if ((gfc_current_state () == COMP_FUNCTION
6079 : 219 : || gfc_current_state () == COMP_SUBROUTINE)
6080 : 130 : && gfc_state_stack->previous->state == COMP_INTERFACE)
6081 : : {
6082 : 1 : gfc_error ("Statement function at %L cannot appear within an INTERFACE",
6083 : : &expr->where);
6084 : 1 : return MATCH_ERROR;
6085 : : }
6086 : :
6087 : 218 : if (!gfc_notify_std (GFC_STD_F95_OBS, "Statement function at %C"))
6088 : : return MATCH_ERROR;
6089 : :
6090 : : return MATCH_YES;
6091 : :
6092 : 374784 : undo_error:
6093 : 374784 : gfc_pop_error (&old_error);
6094 : 374784 : return MATCH_NO;
6095 : 375021 : }
6096 : :
6097 : :
6098 : : /* Match an assignment to a pointer function (F2008). This could, in
6099 : : general be ambiguous with a statement function. In this implementation
6100 : : it remains so if it is the first statement after the specification
6101 : : block. */
6102 : :
6103 : : match
6104 : 904286 : gfc_match_ptr_fcn_assign (void)
6105 : : {
6106 : 904286 : gfc_error_buffer old_error;
6107 : 904286 : locus old_loc;
6108 : 904286 : gfc_symbol *sym;
6109 : 904286 : gfc_expr *expr;
6110 : 904286 : match m;
6111 : 904286 : char name[GFC_MAX_SYMBOL_LEN + 1];
6112 : :
6113 : 904286 : old_loc = gfc_current_locus;
6114 : 904286 : m = gfc_match_name (name);
6115 : 904286 : if (m != MATCH_YES)
6116 : : return m;
6117 : :
6118 : 904283 : gfc_find_symbol (name, NULL, 1, &sym);
6119 : 904283 : if (sym && sym->attr.flavor != FL_PROCEDURE)
6120 : : return MATCH_NO;
6121 : :
6122 : 904023 : gfc_push_error (&old_error);
6123 : :
6124 : 904023 : if (sym && sym->attr.function)
6125 : 774 : goto match_actual_arglist;
6126 : :
6127 : 903249 : gfc_current_locus = old_loc;
6128 : 903249 : m = gfc_match_symbol (&sym, 0);
6129 : 903249 : if (m != MATCH_YES)
6130 : : return m;
6131 : :
6132 : 903236 : if (!gfc_add_procedure (&sym->attr, PROC_UNKNOWN, sym->name, NULL))
6133 : 0 : goto undo_error;
6134 : :
6135 : 903236 : match_actual_arglist:
6136 : 904010 : gfc_current_locus = old_loc;
6137 : 904010 : m = gfc_match (" %e", &expr);
6138 : 904010 : if (m != MATCH_YES)
6139 : 570554 : goto undo_error;
6140 : :
6141 : 333456 : new_st.op = EXEC_ASSIGN;
6142 : 333456 : new_st.expr1 = expr;
6143 : 333456 : expr = NULL;
6144 : :
6145 : 333456 : m = gfc_match (" = %e%t", &expr);
6146 : 333456 : if (m != MATCH_YES)
6147 : 333360 : goto undo_error;
6148 : :
6149 : 96 : new_st.expr2 = expr;
6150 : 96 : return MATCH_YES;
6151 : :
6152 : 903914 : undo_error:
6153 : 903914 : gfc_pop_error (&old_error);
6154 : 903914 : return MATCH_NO;
6155 : 904286 : }
6156 : :
6157 : :
6158 : : /***************** SELECT CASE subroutines ******************/
6159 : :
6160 : : /* Free a single case structure. */
6161 : :
6162 : : static void
6163 : 9575 : free_case (gfc_case *p)
6164 : : {
6165 : 9575 : if (p->low == p->high)
6166 : 4536 : p->high = NULL;
6167 : 9575 : gfc_free_expr (p->low);
6168 : 9575 : gfc_free_expr (p->high);
6169 : 9575 : free (p);
6170 : 9575 : }
6171 : :
6172 : :
6173 : : /* Free a list of case structures. */
6174 : :
6175 : : void
6176 : 9374 : gfc_free_case_list (gfc_case *p)
6177 : : {
6178 : 9374 : gfc_case *q;
6179 : :
6180 : 18939 : for (; p; p = q)
6181 : : {
6182 : 9565 : q = p->next;
6183 : 9565 : free_case (p);
6184 : : }
6185 : 9374 : }
6186 : :
6187 : :
6188 : : /* Match a single case selector. Combining the requirements of F08:C830
6189 : : and F08:C832 (R838) means that the case-value must have either CHARACTER,
6190 : : INTEGER, or LOGICAL type. */
6191 : :
6192 : : static match
6193 : 1427 : match_case_selector (gfc_case **cp)
6194 : : {
6195 : 1427 : gfc_case *c;
6196 : 1427 : match m;
6197 : :
6198 : 1427 : c = gfc_get_case ();
6199 : 1427 : c->where = gfc_current_locus;
6200 : :
6201 : 1427 : if (gfc_match_char (':') == MATCH_YES)
6202 : : {
6203 : 48 : m = gfc_match_init_expr (&c->high);
6204 : 48 : if (m == MATCH_NO)
6205 : 0 : goto need_expr;
6206 : 48 : if (m == MATCH_ERROR)
6207 : 0 : goto cleanup;
6208 : :
6209 : 48 : if (c->high->ts.type != BT_LOGICAL && c->high->ts.type != BT_INTEGER
6210 : 2 : && c->high->ts.type != BT_CHARACTER)
6211 : : {
6212 : 2 : gfc_error ("Expression in CASE selector at %L cannot be %s",
6213 : 2 : &c->high->where, gfc_typename (&c->high->ts));
6214 : 2 : goto cleanup;
6215 : : }
6216 : : }
6217 : : else
6218 : : {
6219 : 1379 : m = gfc_match_init_expr (&c->low);
6220 : 1379 : if (m == MATCH_ERROR)
6221 : 0 : goto cleanup;
6222 : 1379 : if (m == MATCH_NO)
6223 : 0 : goto need_expr;
6224 : :
6225 : 1379 : if (c->low->ts.type != BT_LOGICAL && c->low->ts.type != BT_INTEGER
6226 : 350 : && c->low->ts.type != BT_CHARACTER)
6227 : : {
6228 : 1 : gfc_error ("Expression in CASE selector at %L cannot be %s",
6229 : 1 : &c->low->where, gfc_typename (&c->low->ts));
6230 : 1 : goto cleanup;
6231 : : }
6232 : :
6233 : : /* If we're not looking at a ':' now, make a range out of a single
6234 : : target. Else get the upper bound for the case range. */
6235 : 1378 : if (gfc_match_char (':') != MATCH_YES)
6236 : 1201 : c->high = c->low;
6237 : : else
6238 : : {
6239 : 177 : m = gfc_match_init_expr (&c->high);
6240 : 177 : if (m == MATCH_ERROR)
6241 : 0 : goto cleanup;
6242 : 177 : if (m == MATCH_YES
6243 : 129 : && c->high->ts.type != BT_LOGICAL
6244 : : && c->high->ts.type != BT_INTEGER
6245 : : && c->high->ts.type != BT_CHARACTER)
6246 : : {
6247 : 1 : gfc_error ("Expression in CASE selector at %L cannot be %s",
6248 : 1 : &c->high->where, gfc_typename (c->high));
6249 : 1 : goto cleanup;
6250 : : }
6251 : : /* MATCH_NO is fine. It's OK if nothing is there! */
6252 : : }
6253 : : }
6254 : :
6255 : 1423 : if (c->low && c->low->rank != 0)
6256 : : {
6257 : 4 : gfc_error ("Expression in CASE selector at %L must be scalar",
6258 : : &c->low->where);
6259 : 4 : goto cleanup;
6260 : : }
6261 : 1419 : if (c->high && c->high->rank != 0)
6262 : : {
6263 : 2 : gfc_error ("Expression in CASE selector at %L must be scalar",
6264 : : &c->high->where);
6265 : 2 : goto cleanup;
6266 : : }
6267 : :
6268 : 1417 : *cp = c;
6269 : 1417 : return MATCH_YES;
6270 : :
6271 : 0 : need_expr:
6272 : 0 : gfc_error ("Expected initialization expression in CASE at %C");
6273 : :
6274 : 10 : cleanup:
6275 : 10 : free_case (c);
6276 : 10 : return MATCH_ERROR;
6277 : : }
6278 : :
6279 : :
6280 : : /* Match the end of a case statement. */
6281 : :
6282 : : static match
6283 : 8831 : match_case_eos (void)
6284 : : {
6285 : 8831 : char name[GFC_MAX_SYMBOL_LEN + 1];
6286 : 8831 : match m;
6287 : :
6288 : 8831 : if (gfc_match_eos () == MATCH_YES)
6289 : : return MATCH_YES;
6290 : :
6291 : : /* If the case construct doesn't have a case-construct-name, we
6292 : : should have matched the EOS. */
6293 : 21 : if (!gfc_current_block ())
6294 : : return MATCH_NO;
6295 : :
6296 : 17 : gfc_gobble_whitespace ();
6297 : :
6298 : 17 : m = gfc_match_name (name);
6299 : 17 : if (m != MATCH_YES)
6300 : : return m;
6301 : :
6302 : 17 : if (strcmp (name, gfc_current_block ()->name) != 0)
6303 : : {
6304 : 1 : gfc_error ("Expected block name %qs of SELECT construct at %C",
6305 : : gfc_current_block ()->name);
6306 : 1 : return MATCH_ERROR;
6307 : : }
6308 : :
6309 : 16 : return gfc_match_eos ();
6310 : : }
6311 : :
6312 : :
6313 : : /* Match a SELECT statement. */
6314 : :
6315 : : match
6316 : 447099 : gfc_match_select (void)
6317 : : {
6318 : 447099 : gfc_expr *expr;
6319 : 447099 : match m;
6320 : :
6321 : 447099 : m = gfc_match_label ();
6322 : 447099 : if (m == MATCH_ERROR)
6323 : : return m;
6324 : :
6325 : 447091 : m = gfc_match (" select case ( %e )%t", &expr);
6326 : 447091 : if (m != MATCH_YES)
6327 : : return m;
6328 : :
6329 : 547 : new_st.op = EXEC_SELECT;
6330 : 547 : new_st.expr1 = expr;
6331 : :
6332 : 547 : return MATCH_YES;
6333 : : }
6334 : :
6335 : :
6336 : : /* Transfer the selector typespec to the associate name. */
6337 : :
6338 : : static void
6339 : 573 : copy_ts_from_selector_to_associate (gfc_expr *associate, gfc_expr *selector,
6340 : : bool select_type = false)
6341 : : {
6342 : 573 : gfc_ref *ref;
6343 : 573 : gfc_symbol *assoc_sym;
6344 : 573 : int rank = 0, corank = 0;
6345 : :
6346 : 573 : assoc_sym = associate->symtree->n.sym;
6347 : :
6348 : : /* At this stage the expression rank and arrayspec dimensions have
6349 : : not been completely sorted out. We must get the expr2->rank
6350 : : right here, so that the correct class container is obtained. */
6351 : 573 : ref = selector->ref;
6352 : 824 : while (ref && ref->next)
6353 : : ref = ref->next;
6354 : :
6355 : 573 : if (selector->ts.type == BT_CLASS
6356 : 558 : && CLASS_DATA (selector)
6357 : 556 : && CLASS_DATA (selector)->as
6358 : 342 : && CLASS_DATA (selector)->as->type == AS_ASSUMED_RANK)
6359 : : {
6360 : 12 : assoc_sym->attr.dimension = 1;
6361 : 12 : assoc_sym->as = gfc_copy_array_spec (CLASS_DATA (selector)->as);
6362 : 12 : corank = assoc_sym->as->corank;
6363 : 12 : goto build_class_sym;
6364 : : }
6365 : 561 : else if (selector->ts.type == BT_CLASS
6366 : 546 : && CLASS_DATA (selector)
6367 : 544 : && CLASS_DATA (selector)->as
6368 : 330 : && ((ref && ref->type == REF_ARRAY)
6369 : 2 : || selector->expr_type == EXPR_OP))
6370 : : {
6371 : : /* Ensure that the array reference type is set. We cannot use
6372 : : gfc_resolve_expr at this point, so the usable parts of
6373 : : resolve.cc(resolve_array_ref) are employed to do it. */
6374 : 330 : if (ref && ref->u.ar.type == AR_UNKNOWN)
6375 : : {
6376 : 101 : ref->u.ar.type = AR_ELEMENT;
6377 : 171 : for (int i = 0; i < ref->u.ar.dimen + ref->u.ar.codimen; i++)
6378 : 107 : if (ref->u.ar.dimen_type[i] == DIMEN_RANGE
6379 : 107 : || ref->u.ar.dimen_type[i] == DIMEN_VECTOR
6380 : 71 : || (ref->u.ar.dimen_type[i] == DIMEN_UNKNOWN
6381 : 71 : && ref->u.ar.start[i] && ref->u.ar.start[i]->rank))
6382 : : {
6383 : 37 : ref->u.ar.type = AR_SECTION;
6384 : 37 : break;
6385 : : }
6386 : : }
6387 : :
6388 : 328 : if (!ref || ref->u.ar.type == AR_FULL)
6389 : : {
6390 : 229 : selector->rank = CLASS_DATA (selector)->as->rank;
6391 : 229 : selector->corank = CLASS_DATA (selector)->as->corank;
6392 : : }
6393 : 101 : else if (ref->u.ar.type == AR_SECTION)
6394 : : {
6395 : 37 : selector->rank = ref->u.ar.dimen;
6396 : 37 : selector->corank = ref->u.ar.codimen;
6397 : : }
6398 : : else
6399 : 64 : selector->rank = 0;
6400 : :
6401 : 330 : rank = selector->rank;
6402 : 330 : corank = selector->corank;
6403 : : }
6404 : :
6405 : 330 : if (rank)
6406 : : {
6407 : 258 : if (ref)
6408 : : {
6409 : 305 : for (int i = 0; i < ref->u.ar.dimen + ref->u.ar.codimen; i++)
6410 : 49 : if (ref->u.ar.dimen_type[i] == DIMEN_ELEMENT
6411 : 49 : || (ref->u.ar.dimen_type[i] == DIMEN_UNKNOWN
6412 : 7 : && ref->u.ar.end[i] == NULL
6413 : 7 : && ref->u.ar.stride[i] == NULL))
6414 : 7 : rank--;
6415 : : }
6416 : :
6417 : 258 : if (rank)
6418 : : {
6419 : 257 : assoc_sym->attr.dimension = 1;
6420 : 257 : assoc_sym->as = gfc_get_array_spec ();
6421 : 257 : assoc_sym->as->rank = rank;
6422 : 257 : assoc_sym->as->type = AS_DEFERRED;
6423 : : }
6424 : : }
6425 : :
6426 : 561 : if (corank != 0 && rank == 0)
6427 : : {
6428 : 8 : if (!assoc_sym->as)
6429 : 8 : assoc_sym->as = gfc_get_array_spec ();
6430 : 8 : assoc_sym->as->corank = corank;
6431 : 8 : assoc_sym->attr.codimension = 1;
6432 : : }
6433 : 553 : else if (corank == 0 && rank == 0 && assoc_sym->as)
6434 : : {
6435 : 0 : free (assoc_sym->as);
6436 : 0 : assoc_sym->as = NULL;
6437 : : }
6438 : 553 : build_class_sym:
6439 : : /* Deal with the very specific case of a SELECT_TYPE selector being an
6440 : : associate_name whose type has been identified by component references.
6441 : : It must be assumed that it will be identified as a CLASS expression,
6442 : : so convert it now. */
6443 : 573 : if (select_type
6444 : 561 : && IS_INFERRED_TYPE (selector)
6445 : 13 : && selector->ts.type == BT_DERIVED)
6446 : : {
6447 : 13 : gfc_find_derived_vtab (selector->ts.u.derived);
6448 : : /* The correct class container has to be available. */
6449 : 13 : assoc_sym->ts.u.derived = selector->ts.u.derived;
6450 : 13 : assoc_sym->ts.type = BT_CLASS;
6451 : 13 : assoc_sym->attr.pointer = 1;
6452 : 13 : if (!selector->ts.u.derived->attr.is_class)
6453 : 13 : gfc_build_class_symbol (&assoc_sym->ts, &assoc_sym->attr, &assoc_sym->as);
6454 : 13 : associate->ts = assoc_sym->ts;
6455 : : }
6456 : 560 : else if (selector->ts.type == BT_CLASS)
6457 : : {
6458 : : /* The correct class container has to be available. */
6459 : 558 : assoc_sym->ts.type = BT_CLASS;
6460 : 1116 : assoc_sym->ts.u.derived = CLASS_DATA (selector)
6461 : 558 : ? CLASS_DATA (selector)->ts.u.derived
6462 : : : selector->ts.u.derived;
6463 : 558 : assoc_sym->attr.pointer = 1;
6464 : 558 : gfc_build_class_symbol (&assoc_sym->ts, &assoc_sym->attr, &assoc_sym->as);
6465 : : }
6466 : 573 : }
6467 : :
6468 : :
6469 : : /* Build the associate name */
6470 : : static int
6471 : 592 : build_associate_name (const char *name, gfc_expr **e1, gfc_expr **e2)
6472 : : {
6473 : 592 : gfc_expr *expr1 = *e1;
6474 : 592 : gfc_expr *expr2 = *e2;
6475 : 592 : gfc_symbol *sym;
6476 : :
6477 : : /* For the case where the associate name is already an associate name. */
6478 : 592 : if (!expr2)
6479 : 43 : expr2 = expr1;
6480 : 592 : expr1 = gfc_get_expr ();
6481 : 592 : expr1->expr_type = EXPR_VARIABLE;
6482 : 592 : expr1->where = expr2->where;
6483 : 592 : if (gfc_get_sym_tree (name, NULL, &expr1->symtree, false))
6484 : : return 1;
6485 : :
6486 : 592 : sym = expr1->symtree->n.sym;
6487 : 592 : if (expr2->ts.type == BT_UNKNOWN)
6488 : 31 : sym->attr.untyped = 1;
6489 : : else
6490 : 561 : copy_ts_from_selector_to_associate (expr1, expr2, true);
6491 : :
6492 : 592 : sym->attr.flavor = FL_VARIABLE;
6493 : 592 : sym->attr.referenced = 1;
6494 : 592 : sym->attr.class_ok = 1;
6495 : :
6496 : 592 : *e1 = expr1;
6497 : 592 : *e2 = expr2;
6498 : 592 : return 0;
6499 : : }
6500 : :
6501 : :
6502 : : /* Push the current selector onto the SELECT TYPE stack. */
6503 : :
6504 : : static void
6505 : 3789 : select_type_push (gfc_symbol *sel)
6506 : : {
6507 : 3789 : gfc_select_type_stack *top = gfc_get_select_type_stack ();
6508 : 3789 : top->selector = sel;
6509 : 3789 : top->tmp = NULL;
6510 : 3789 : top->prev = select_type_stack;
6511 : :
6512 : 3789 : select_type_stack = top;
6513 : 3789 : }
6514 : :
6515 : :
6516 : : /* Set the temporary for the current intrinsic SELECT TYPE selector. */
6517 : :
6518 : : static gfc_symtree *
6519 : 3466 : select_intrinsic_set_tmp (gfc_typespec *ts)
6520 : : {
6521 : 3466 : char name[GFC_MAX_SYMBOL_LEN];
6522 : 3466 : gfc_symtree *tmp;
6523 : 3466 : HOST_WIDE_INT charlen = 0;
6524 : 3466 : gfc_symbol *selector = select_type_stack->selector;
6525 : 3466 : gfc_symbol *sym;
6526 : :
6527 : 3466 : if (ts->type == BT_CLASS || ts->type == BT_DERIVED)
6528 : : return NULL;
6529 : :
6530 : 1307 : if (selector->ts.type == BT_CLASS && !selector->attr.class_ok)
6531 : : return NULL;
6532 : :
6533 : : /* Case value == NULL corresponds to SELECT TYPE cases otherwise
6534 : : the values correspond to SELECT rank cases. */
6535 : 1306 : if (ts->type == BT_CHARACTER && ts->u.cl && ts->u.cl->length
6536 : 0 : && ts->u.cl->length->expr_type == EXPR_CONSTANT)
6537 : 0 : charlen = gfc_mpz_get_hwi (ts->u.cl->length->value.integer);
6538 : :
6539 : 1306 : if (ts->type != BT_CHARACTER)
6540 : 612 : sprintf (name, "__tmp_%s_%d", gfc_basic_typename (ts->type),
6541 : : ts->kind);
6542 : : else
6543 : 694 : snprintf (name, sizeof (name),
6544 : : "__tmp_%s_" HOST_WIDE_INT_PRINT_DEC "_%d",
6545 : : gfc_basic_typename (ts->type), charlen, ts->kind);
6546 : :
6547 : 1306 : gfc_get_sym_tree (name, gfc_current_ns, &tmp, false);
6548 : 1306 : sym = tmp->n.sym;
6549 : 1306 : gfc_add_type (sym, ts, NULL);
6550 : :
6551 : : /* Copy across the array spec to the selector. */
6552 : 1306 : if (selector->ts.type == BT_CLASS
6553 : 1304 : && (CLASS_DATA (selector)->attr.dimension
6554 : 1304 : || CLASS_DATA (selector)->attr.codimension))
6555 : : {
6556 : 647 : sym->attr.pointer = 1;
6557 : 647 : sym->attr.dimension = CLASS_DATA (selector)->attr.dimension;
6558 : 647 : sym->attr.codimension = CLASS_DATA (selector)->attr.codimension;
6559 : 647 : sym->as = gfc_copy_array_spec (CLASS_DATA (selector)->as);
6560 : : }
6561 : :
6562 : 1306 : gfc_set_sym_referenced (sym);
6563 : 1306 : gfc_add_flavor (&sym->attr, FL_VARIABLE, name, NULL);
6564 : 1306 : sym->attr.select_type_temporary = 1;
6565 : :
6566 : 1306 : return tmp;
6567 : : }
6568 : :
6569 : :
6570 : : /* Set up a temporary for the current TYPE IS / CLASS IS branch . */
6571 : :
6572 : : static void
6573 : 4963 : select_type_set_tmp (gfc_typespec *ts)
6574 : : {
6575 : 4963 : char name[GFC_MAX_SYMBOL_LEN + 12 + 1];
6576 : 4963 : gfc_symtree *tmp = NULL;
6577 : 4963 : gfc_symbol *selector = select_type_stack->selector;
6578 : 4963 : gfc_symbol *sym;
6579 : 4963 : gfc_expr *expr2;
6580 : :
6581 : 4963 : if (!ts)
6582 : : {
6583 : 1497 : select_type_stack->tmp = NULL;
6584 : 1498 : return;
6585 : : }
6586 : :
6587 : 3466 : tmp = select_intrinsic_set_tmp (ts);
6588 : :
6589 : 3466 : if (tmp == NULL)
6590 : : {
6591 : 2160 : if (!ts->u.derived)
6592 : : return;
6593 : :
6594 : 2159 : if (ts->type == BT_CLASS)
6595 : 306 : sprintf (name, "__tmp_class_%s", ts->u.derived->name);
6596 : : else
6597 : 1853 : sprintf (name, "__tmp_type_%s", ts->u.derived->name);
6598 : :
6599 : 2159 : gfc_get_sym_tree (name, gfc_current_ns, &tmp, false);
6600 : 2159 : sym = tmp->n.sym;
6601 : 2159 : gfc_add_type (sym, ts, NULL);
6602 : :
6603 : : /* If the SELECT TYPE selector is a function we might be able to obtain
6604 : : a typespec from the result. Since the function might not have been
6605 : : parsed yet we have to check that there is indeed a result symbol. */
6606 : 2159 : if (selector->ts.type == BT_UNKNOWN
6607 : 46 : && gfc_state_stack->construct
6608 : :
6609 : 46 : && (expr2 = gfc_state_stack->construct->expr2)
6610 : 33 : && expr2->expr_type == EXPR_FUNCTION
6611 : 14 : && expr2->symtree
6612 : 2173 : && expr2->symtree->n.sym && expr2->symtree->n.sym->result)
6613 : 14 : selector->ts = expr2->symtree->n.sym->result->ts;
6614 : :
6615 : 2159 : if (selector->ts.type == BT_CLASS
6616 : 2119 : && selector->attr.class_ok
6617 : 2117 : && selector->ts.u.derived && CLASS_DATA (selector))
6618 : : {
6619 : 2115 : sym->attr.pointer
6620 : 2115 : = CLASS_DATA (selector)->attr.class_pointer;
6621 : :
6622 : : /* Copy across the array spec to the selector. */
6623 : 2115 : if (CLASS_DATA (selector)->attr.dimension
6624 : 2115 : || CLASS_DATA (selector)->attr.codimension)
6625 : : {
6626 : 650 : sym->attr.dimension
6627 : 650 : = CLASS_DATA (selector)->attr.dimension;
6628 : 650 : sym->attr.codimension
6629 : 650 : = CLASS_DATA (selector)->attr.codimension;
6630 : 650 : if (CLASS_DATA (selector)->as->type != AS_EXPLICIT)
6631 : 607 : sym->as = gfc_copy_array_spec (CLASS_DATA (selector)->as);
6632 : : else
6633 : : {
6634 : 43 : sym->as = gfc_get_array_spec();
6635 : 43 : sym->as->rank = CLASS_DATA (selector)->as->rank;
6636 : 43 : sym->as->type = AS_DEFERRED;
6637 : : }
6638 : : }
6639 : : }
6640 : :
6641 : 2159 : gfc_set_sym_referenced (sym);
6642 : 2159 : gfc_add_flavor (&sym->attr, FL_VARIABLE, name, NULL);
6643 : 2159 : sym->attr.select_type_temporary = 1;
6644 : :
6645 : 2159 : if (ts->type == BT_CLASS)
6646 : 306 : gfc_build_class_symbol (&sym->ts, &sym->attr, &sym->as);
6647 : : }
6648 : : else
6649 : 1306 : sym = tmp->n.sym;
6650 : :
6651 : :
6652 : : /* Add an association for it, so the rest of the parser knows it is
6653 : : an associate-name. The target will be set during resolution. */
6654 : 3465 : sym->assoc = gfc_get_association_list ();
6655 : 3465 : sym->assoc->dangling = 1;
6656 : 3465 : sym->assoc->st = tmp;
6657 : :
6658 : 3465 : select_type_stack->tmp = tmp;
6659 : : }
6660 : :
6661 : :
6662 : : /* Match a SELECT TYPE statement. */
6663 : :
6664 : : match
6665 : 446552 : gfc_match_select_type (void)
6666 : : {
6667 : 446552 : gfc_expr *expr1, *expr2 = NULL;
6668 : 446552 : match m;
6669 : 446552 : char name[GFC_MAX_SYMBOL_LEN + 1];
6670 : 446552 : bool class_array;
6671 : 446552 : gfc_namespace *ns = gfc_current_ns;
6672 : :
6673 : 446552 : m = gfc_match_label ();
6674 : 446552 : if (m == MATCH_ERROR)
6675 : : return m;
6676 : :
6677 : 446544 : m = gfc_match (" select type ( ");
6678 : 446544 : if (m != MATCH_YES)
6679 : : return m;
6680 : :
6681 : 2792 : if (gfc_current_state() == COMP_MODULE
6682 : 2792 : || gfc_current_state() == COMP_SUBMODULE)
6683 : : {
6684 : 2 : gfc_error ("SELECT TYPE at %C cannot appear in this scope");
6685 : 2 : return MATCH_ERROR;
6686 : : }
6687 : :
6688 : 2790 : gfc_current_ns = gfc_build_block_ns (ns);
6689 : 2790 : m = gfc_match (" %n => %e", name, &expr2);
6690 : 2790 : if (m == MATCH_YES)
6691 : : {
6692 : 549 : if (build_associate_name (name, &expr1, &expr2))
6693 : : {
6694 : 0 : m = MATCH_ERROR;
6695 : 0 : goto cleanup;
6696 : : }
6697 : : }
6698 : : else
6699 : : {
6700 : 2241 : m = gfc_match (" %e ", &expr1);
6701 : 2241 : if (m != MATCH_YES)
6702 : : {
6703 : 0 : std::swap (ns, gfc_current_ns);
6704 : 0 : gfc_free_namespace (ns);
6705 : 0 : return m;
6706 : : }
6707 : : }
6708 : :
6709 : 2790 : m = gfc_match (" )%t");
6710 : 2790 : if (m != MATCH_YES)
6711 : : {
6712 : 2 : gfc_error ("parse error in SELECT TYPE statement at %C");
6713 : 2 : goto cleanup;
6714 : : }
6715 : :
6716 : : /* This ghastly expression seems to be needed to distinguish a CLASS
6717 : : array, which can have a reference, from other expressions that
6718 : : have references, such as derived type components, and are not
6719 : : allowed by the standard.
6720 : : TODO: see if it is sufficient to exclude component and substring
6721 : : references. */
6722 : 5576 : class_array = (expr1->expr_type == EXPR_VARIABLE
6723 : 2787 : && expr1->ts.type == BT_CLASS
6724 : 2228 : && CLASS_DATA (expr1)
6725 : 2226 : && (strcmp (CLASS_DATA (expr1)->name, "_data") == 0)
6726 : 2226 : && (CLASS_DATA (expr1)->attr.dimension
6727 : 2226 : || CLASS_DATA (expr1)->attr.codimension)
6728 : 802 : && expr1->ref
6729 : 802 : && expr1->ref->type == REF_ARRAY
6730 : 802 : && expr1->ref->u.ar.type == AR_FULL
6731 : 3589 : && expr1->ref->next == NULL);
6732 : :
6733 : : /* Check for F03:C811 (F08:C835). */
6734 : 2788 : if (!expr2 && (expr1->expr_type != EXPR_VARIABLE
6735 : 2239 : || (!class_array && expr1->ref != NULL)))
6736 : : {
6737 : 4 : gfc_error ("Selector in SELECT TYPE at %C is not a named variable; "
6738 : : "use associate-name=>");
6739 : 4 : m = MATCH_ERROR;
6740 : 4 : goto cleanup;
6741 : : }
6742 : :
6743 : : /* Prevent an existing associate name from reuse here by pushing expr1 to
6744 : : expr2 and building a new associate name. */
6745 : 2236 : if (!expr2 && expr1->symtree->n.sym->assoc
6746 : : && !expr1->symtree->n.sym->attr.select_type_temporary
6747 : 91 : && !expr1->symtree->n.sym->attr.select_rank_temporary
6748 : 2827 : && build_associate_name (expr1->symtree->n.sym->name, &expr1, &expr2))
6749 : : {
6750 : 0 : m = MATCH_ERROR;
6751 : 0 : goto cleanup;
6752 : : }
6753 : :
6754 : : /* Select type namespaces are not filled until resolution. Therefore, the
6755 : : namespace must be marked as having an inferred type associate name if
6756 : : either expr1 is an inferred type variable or expr2 is. In the latter
6757 : : case, as well as the symbol being marked as inferred type, it might be
6758 : : that it has not been detected to be so. In this case the target has
6759 : : unknown type. Once the namespace is marked, the fixups in resolution can
6760 : : be triggered. */
6761 : 2784 : if (!expr2
6762 : 2193 : && expr1->symtree->n.sym->assoc
6763 : 48 : && expr1->symtree->n.sym->assoc->inferred_type)
6764 : 0 : gfc_current_ns->assoc_name_inferred = 1;
6765 : 2784 : else if (expr2 && expr2->expr_type == EXPR_VARIABLE
6766 : 575 : && expr2->symtree->n.sym->assoc)
6767 : : {
6768 : 161 : if (expr2->symtree->n.sym->assoc->inferred_type)
6769 : 13 : gfc_current_ns->assoc_name_inferred = 1;
6770 : 148 : else if (expr2->symtree->n.sym->assoc->target
6771 : 97 : && expr2->symtree->n.sym->assoc->target->ts.type == BT_UNKNOWN)
6772 : 36 : gfc_current_ns->assoc_name_inferred = 1;
6773 : : }
6774 : :
6775 : 2784 : new_st.op = EXEC_SELECT_TYPE;
6776 : 2784 : new_st.expr1 = expr1;
6777 : 2784 : new_st.expr2 = expr2;
6778 : 2784 : new_st.ext.block.ns = gfc_current_ns;
6779 : :
6780 : 2784 : select_type_push (expr1->symtree->n.sym);
6781 : 2784 : gfc_current_ns = ns;
6782 : :
6783 : 2784 : return MATCH_YES;
6784 : :
6785 : 6 : cleanup:
6786 : 6 : gfc_free_expr (expr1);
6787 : 6 : gfc_free_expr (expr2);
6788 : 6 : gfc_undo_symbols ();
6789 : 6 : std::swap (ns, gfc_current_ns);
6790 : 6 : gfc_free_namespace (ns);
6791 : 6 : return m;
6792 : : }
6793 : :
6794 : :
6795 : : /* Set the temporary for the current intrinsic SELECT RANK selector. */
6796 : :
6797 : : static void
6798 : 1350 : select_rank_set_tmp (gfc_typespec *ts, int *case_value)
6799 : : {
6800 : 1350 : char name[2 * GFC_MAX_SYMBOL_LEN];
6801 : 1350 : char tname[GFC_MAX_SYMBOL_LEN + 7];
6802 : 1350 : gfc_symtree *tmp;
6803 : 1350 : gfc_symbol *selector = select_type_stack->selector;
6804 : 1350 : gfc_symbol *sym;
6805 : 1350 : gfc_symtree *st;
6806 : 1350 : HOST_WIDE_INT charlen = 0;
6807 : :
6808 : 1350 : if (case_value == NULL)
6809 : 2 : return;
6810 : :
6811 : 1350 : if (ts->type == BT_CHARACTER && ts->u.cl && ts->u.cl->length
6812 : 265 : && ts->u.cl->length->expr_type == EXPR_CONSTANT)
6813 : 186 : charlen = gfc_mpz_get_hwi (ts->u.cl->length->value.integer);
6814 : :
6815 : 1350 : if (ts->type == BT_CLASS)
6816 : 124 : sprintf (tname, "class_%s", ts->u.derived->name);
6817 : 1226 : else if (ts->type == BT_DERIVED)
6818 : 110 : sprintf (tname, "type_%s", ts->u.derived->name);
6819 : 1116 : else if (ts->type != BT_CHARACTER)
6820 : 557 : sprintf (tname, "%s_%d", gfc_basic_typename (ts->type), ts->kind);
6821 : : else
6822 : 559 : sprintf (tname, "%s_" HOST_WIDE_INT_PRINT_DEC "_%d",
6823 : : gfc_basic_typename (ts->type), charlen, ts->kind);
6824 : :
6825 : : /* Case value == NULL corresponds to SELECT TYPE cases otherwise
6826 : : the values correspond to SELECT rank cases. */
6827 : 1350 : if (*case_value >=0)
6828 : 1317 : sprintf (name, "__tmp_%s_rank_%d", tname, *case_value);
6829 : : else
6830 : 33 : sprintf (name, "__tmp_%s_rank_m%d", tname, -*case_value);
6831 : :
6832 : 1350 : gfc_find_sym_tree (name, gfc_current_ns, 0, &st);
6833 : 1350 : if (st)
6834 : : return;
6835 : :
6836 : 1348 : gfc_get_sym_tree (name, gfc_current_ns, &tmp, false);
6837 : 1348 : sym = tmp->n.sym;
6838 : 1348 : gfc_add_type (sym, ts, NULL);
6839 : :
6840 : : /* Copy across the array spec to the selector. */
6841 : 1348 : if (selector->ts.type == BT_CLASS)
6842 : : {
6843 : 124 : sym->ts.u.derived = CLASS_DATA (selector)->ts.u.derived;
6844 : 124 : sym->attr.pointer = CLASS_DATA (selector)->attr.pointer;
6845 : 124 : sym->attr.allocatable = CLASS_DATA (selector)->attr.allocatable;
6846 : 124 : sym->attr.target = CLASS_DATA (selector)->attr.target;
6847 : 124 : sym->attr.class_ok = 0;
6848 : 124 : if (case_value && *case_value != 0)
6849 : : {
6850 : 93 : sym->attr.dimension = 1;
6851 : 93 : sym->as = gfc_copy_array_spec (CLASS_DATA (selector)->as);
6852 : 93 : if (*case_value > 0)
6853 : : {
6854 : 93 : sym->as->type = AS_DEFERRED;
6855 : 93 : sym->as->rank = *case_value;
6856 : : }
6857 : 0 : else if (*case_value == -1)
6858 : : {
6859 : 0 : sym->as->type = AS_ASSUMED_SIZE;
6860 : 0 : sym->as->rank = 1;
6861 : : }
6862 : : }
6863 : : }
6864 : : else
6865 : : {
6866 : 1224 : sym->attr.pointer = selector->attr.pointer;
6867 : 1224 : sym->attr.allocatable = selector->attr.allocatable;
6868 : 1224 : sym->attr.target = selector->attr.target;
6869 : 1224 : if (case_value && *case_value != 0)
6870 : : {
6871 : 1175 : sym->attr.dimension = 1;
6872 : 1175 : sym->as = gfc_copy_array_spec (selector->as);
6873 : 1175 : if (*case_value > 0)
6874 : : {
6875 : 1143 : sym->as->type = AS_DEFERRED;
6876 : 1143 : sym->as->rank = *case_value;
6877 : : }
6878 : 32 : else if (*case_value == -1)
6879 : : {
6880 : 32 : sym->as->type = AS_ASSUMED_SIZE;
6881 : 32 : sym->as->rank = 1;
6882 : : }
6883 : : }
6884 : : }
6885 : :
6886 : 1348 : gfc_set_sym_referenced (sym);
6887 : 1348 : gfc_add_flavor (&sym->attr, FL_VARIABLE, name, NULL);
6888 : 1348 : sym->attr.select_type_temporary = 1;
6889 : 1348 : if (case_value)
6890 : 1348 : sym->attr.select_rank_temporary = 1;
6891 : :
6892 : 1348 : if (ts->type == BT_CLASS)
6893 : 124 : gfc_build_class_symbol (&sym->ts, &sym->attr, &sym->as);
6894 : :
6895 : : /* Add an association for it, so the rest of the parser knows it is
6896 : : an associate-name. The target will be set during resolution. */
6897 : 1348 : sym->assoc = gfc_get_association_list ();
6898 : 1348 : sym->assoc->dangling = 1;
6899 : 1348 : sym->assoc->st = tmp;
6900 : :
6901 : 1348 : select_type_stack->tmp = tmp;
6902 : : }
6903 : :
6904 : :
6905 : : /* Match a SELECT RANK statement. */
6906 : :
6907 : : match
6908 : 443768 : gfc_match_select_rank (void)
6909 : : {
6910 : 443768 : gfc_expr *expr1, *expr2 = NULL;
6911 : 443768 : match m;
6912 : 443768 : char name[GFC_MAX_SYMBOL_LEN + 1];
6913 : 443768 : gfc_symbol *sym, *sym2;
6914 : 443768 : gfc_namespace *ns = gfc_current_ns;
6915 : 443768 : gfc_array_spec *as = NULL;
6916 : :
6917 : 443768 : m = gfc_match_label ();
6918 : 443768 : if (m == MATCH_ERROR)
6919 : : return m;
6920 : :
6921 : 443760 : m = gfc_match (" select% rank ( ");
6922 : 443760 : if (m != MATCH_YES)
6923 : : return m;
6924 : :
6925 : 1010 : if (!gfc_notify_std (GFC_STD_F2018, "SELECT RANK statement at %C"))
6926 : : return MATCH_NO;
6927 : :
6928 : 1010 : gfc_current_ns = gfc_build_block_ns (ns);
6929 : 1010 : m = gfc_match (" %n => %e", name, &expr2);
6930 : :
6931 : 1010 : if (m == MATCH_YES)
6932 : : {
6933 : : /* If expr2 corresponds to an implicitly typed variable, then the
6934 : : actual type of the variable may not have been set. Set it here. */
6935 : 43 : if (!gfc_current_ns->seen_implicit_none
6936 : 43 : && expr2->expr_type == EXPR_VARIABLE
6937 : 42 : && expr2->ts.type == BT_UNKNOWN
6938 : 1 : && expr2->symtree && expr2->symtree->n.sym)
6939 : : {
6940 : 1 : gfc_set_default_type (expr2->symtree->n.sym, 0, gfc_current_ns);
6941 : 1 : expr2->ts.type = expr2->symtree->n.sym->ts.type;
6942 : : }
6943 : :
6944 : 43 : expr1 = gfc_get_expr ();
6945 : 43 : expr1->expr_type = EXPR_VARIABLE;
6946 : 43 : expr1->where = expr2->where;
6947 : 43 : expr1->ref = gfc_copy_ref (expr2->ref);
6948 : 43 : if (gfc_get_sym_tree (name, NULL, &expr1->symtree, false))
6949 : : {
6950 : 0 : m = MATCH_ERROR;
6951 : 0 : goto cleanup;
6952 : : }
6953 : :
6954 : 43 : sym = expr1->symtree->n.sym;
6955 : :
6956 : 43 : if (expr2->symtree)
6957 : : {
6958 : 42 : sym2 = expr2->symtree->n.sym;
6959 : 42 : as = (sym2->ts.type == BT_CLASS
6960 : 42 : && CLASS_DATA (sym2)) ? CLASS_DATA (sym2)->as : sym2->as;
6961 : : }
6962 : :
6963 : 43 : if (expr2->expr_type != EXPR_VARIABLE
6964 : 42 : || !(as && as->type == AS_ASSUMED_RANK))
6965 : : {
6966 : 1 : gfc_error ("The SELECT RANK selector at %C must be an assumed "
6967 : : "rank variable");
6968 : 1 : m = MATCH_ERROR;
6969 : 1 : goto cleanup;
6970 : : }
6971 : :
6972 : 42 : if (expr2->ts.type == BT_CLASS && CLASS_DATA (sym2))
6973 : : {
6974 : 12 : copy_ts_from_selector_to_associate (expr1, expr2);
6975 : :
6976 : 12 : sym->attr.flavor = FL_VARIABLE;
6977 : 12 : sym->attr.referenced = 1;
6978 : 12 : sym->attr.class_ok = 1;
6979 : 12 : CLASS_DATA (sym)->attr.allocatable = CLASS_DATA (sym2)->attr.allocatable;
6980 : 12 : CLASS_DATA (sym)->attr.pointer = CLASS_DATA (sym2)->attr.pointer;
6981 : 12 : CLASS_DATA (sym)->attr.target = CLASS_DATA (sym2)->attr.target;
6982 : 12 : sym->attr.pointer = 1;
6983 : : }
6984 : : else
6985 : : {
6986 : 30 : sym->ts = sym2->ts;
6987 : 30 : sym->as = gfc_copy_array_spec (sym2->as);
6988 : 30 : sym->attr.dimension = 1;
6989 : :
6990 : 30 : sym->attr.flavor = FL_VARIABLE;
6991 : 30 : sym->attr.referenced = 1;
6992 : 30 : sym->attr.class_ok = sym2->attr.class_ok;
6993 : 30 : sym->attr.allocatable = sym2->attr.allocatable;
6994 : 30 : sym->attr.pointer = sym2->attr.pointer;
6995 : 30 : sym->attr.target = sym2->attr.target;
6996 : : }
6997 : : }
6998 : : else
6999 : : {
7000 : 967 : m = gfc_match (" %e ", &expr1);
7001 : :
7002 : 967 : if (m != MATCH_YES)
7003 : : {
7004 : 1 : gfc_undo_symbols ();
7005 : 1 : std::swap (ns, gfc_current_ns);
7006 : 1 : gfc_free_namespace (ns);
7007 : 1 : return m;
7008 : : }
7009 : :
7010 : 966 : if (expr1->symtree)
7011 : : {
7012 : 965 : sym = expr1->symtree->n.sym;
7013 : 965 : as = (sym->ts.type == BT_CLASS
7014 : 965 : && CLASS_DATA (sym)) ? CLASS_DATA (sym)->as : sym->as;
7015 : : }
7016 : :
7017 : 966 : if (expr1->expr_type != EXPR_VARIABLE
7018 : 965 : || !(as && as->type == AS_ASSUMED_RANK))
7019 : : {
7020 : 3 : gfc_error("The SELECT RANK selector at %C must be an assumed "
7021 : : "rank variable");
7022 : 3 : m = MATCH_ERROR;
7023 : 3 : goto cleanup;
7024 : : }
7025 : : }
7026 : :
7027 : 1005 : m = gfc_match (" )%t");
7028 : 1005 : if (m != MATCH_YES)
7029 : : {
7030 : 0 : gfc_error ("parse error in SELECT RANK statement at %C");
7031 : 0 : goto cleanup;
7032 : : }
7033 : :
7034 : 1005 : new_st.op = EXEC_SELECT_RANK;
7035 : 1005 : new_st.expr1 = expr1;
7036 : 1005 : new_st.expr2 = expr2;
7037 : 1005 : new_st.ext.block.ns = gfc_current_ns;
7038 : :
7039 : 1005 : select_type_push (expr1->symtree->n.sym);
7040 : 1005 : gfc_current_ns = ns;
7041 : :
7042 : 1005 : return MATCH_YES;
7043 : :
7044 : 4 : cleanup:
7045 : 4 : gfc_free_expr (expr1);
7046 : 4 : gfc_free_expr (expr2);
7047 : 4 : gfc_undo_symbols ();
7048 : 4 : std::swap (ns, gfc_current_ns);
7049 : 4 : gfc_free_namespace (ns);
7050 : 4 : return m;
7051 : : }
7052 : :
7053 : :
7054 : : /* Match a CASE statement. */
7055 : :
7056 : : match
7057 : 1608 : gfc_match_case (void)
7058 : : {
7059 : 1608 : gfc_case *c, *head, *tail;
7060 : 1608 : match m;
7061 : :
7062 : 1608 : head = tail = NULL;
7063 : :
7064 : 1608 : if (gfc_current_state () != COMP_SELECT)
7065 : : {
7066 : 3 : gfc_error ("Unexpected CASE statement at %C");
7067 : 3 : return MATCH_ERROR;
7068 : : }
7069 : :
7070 : 1605 : if (gfc_match ("% default") == MATCH_YES)
7071 : : {
7072 : 381 : m = match_case_eos ();
7073 : 381 : if (m == MATCH_NO)
7074 : 1 : goto syntax;
7075 : 380 : if (m == MATCH_ERROR)
7076 : 0 : goto cleanup;
7077 : :
7078 : 380 : new_st.op = EXEC_SELECT;
7079 : 380 : c = gfc_get_case ();
7080 : 380 : c->where = gfc_current_locus;
7081 : 380 : new_st.ext.block.case_list = c;
7082 : 380 : return MATCH_YES;
7083 : : }
7084 : :
7085 : 1224 : if (gfc_match_char ('(') != MATCH_YES)
7086 : 0 : goto syntax;
7087 : :
7088 : 1427 : for (;;)
7089 : : {
7090 : 1427 : if (match_case_selector (&c) == MATCH_ERROR)
7091 : 10 : goto cleanup;
7092 : :
7093 : 1417 : if (head == NULL)
7094 : 1214 : head = c;
7095 : : else
7096 : 203 : tail->next = c;
7097 : :
7098 : 1417 : tail = c;
7099 : :
7100 : 1417 : if (gfc_match_char (')') == MATCH_YES)
7101 : : break;
7102 : 203 : if (gfc_match_char (',') != MATCH_YES)
7103 : 0 : goto syntax;
7104 : : }
7105 : :
7106 : 1214 : m = match_case_eos ();
7107 : 1214 : if (m == MATCH_NO)
7108 : 2 : goto syntax;
7109 : 1212 : if (m == MATCH_ERROR)
7110 : 0 : goto cleanup;
7111 : :
7112 : 1212 : new_st.op = EXEC_SELECT;
7113 : 1212 : new_st.ext.block.case_list = head;
7114 : :
7115 : 1212 : return MATCH_YES;
7116 : :
7117 : 3 : syntax:
7118 : 3 : gfc_error ("Syntax error in CASE specification at %C");
7119 : :
7120 : 13 : cleanup:
7121 : 13 : gfc_free_case_list (head); /* new_st is cleaned up in parse.cc. */
7122 : 13 : return MATCH_ERROR;
7123 : : }
7124 : :
7125 : :
7126 : : /* Match a TYPE IS statement. */
7127 : :
7128 : : match
7129 : 3167 : gfc_match_type_is (void)
7130 : : {
7131 : 3167 : gfc_case *c = NULL;
7132 : 3167 : match m;
7133 : :
7134 : 3167 : if (gfc_current_state () != COMP_SELECT_TYPE)
7135 : : {
7136 : 2 : gfc_error ("Unexpected TYPE IS statement at %C");
7137 : 2 : return MATCH_ERROR;
7138 : : }
7139 : :
7140 : 3165 : if (gfc_match_char ('(') != MATCH_YES)
7141 : 1 : goto syntax;
7142 : :
7143 : 3164 : c = gfc_get_case ();
7144 : 3164 : c->where = gfc_current_locus;
7145 : :
7146 : 3164 : m = gfc_match_type_spec (&c->ts);
7147 : 3164 : if (m == MATCH_NO)
7148 : 2 : goto syntax;
7149 : 3162 : if (m == MATCH_ERROR)
7150 : 0 : goto cleanup;
7151 : :
7152 : 3162 : if (gfc_match_char (')') != MATCH_YES)
7153 : 0 : goto syntax;
7154 : :
7155 : 3162 : m = match_case_eos ();
7156 : 3162 : if (m == MATCH_NO)
7157 : 0 : goto syntax;
7158 : 3162 : if (m == MATCH_ERROR)
7159 : 0 : goto cleanup;
7160 : :
7161 : 3162 : new_st.op = EXEC_SELECT_TYPE;
7162 : 3162 : new_st.ext.block.case_list = c;
7163 : :
7164 : 3162 : if (c->ts.type == BT_DERIVED && c->ts.u.derived
7165 : 1855 : && (c->ts.u.derived->attr.sequence
7166 : 1855 : || c->ts.u.derived->attr.is_bind_c))
7167 : : {
7168 : 1 : gfc_error ("The type-spec shall not specify a sequence derived "
7169 : : "type or a type with the BIND attribute in SELECT "
7170 : : "TYPE at %C [F2003:C815]");
7171 : 1 : return MATCH_ERROR;
7172 : : }
7173 : :
7174 : 3161 : if (c->ts.type == BT_DERIVED
7175 : 1854 : && c->ts.u.derived && c->ts.u.derived->attr.pdt_type
7176 : 3189 : && gfc_spec_list_type (type_param_spec_list, c->ts.u.derived)
7177 : : != SPEC_ASSUMED)
7178 : : {
7179 : 1 : gfc_error ("All the LEN type parameters in the TYPE IS statement "
7180 : : "at %C must be ASSUMED");
7181 : 1 : return MATCH_ERROR;
7182 : : }
7183 : :
7184 : : /* Create temporary variable. */
7185 : 3160 : select_type_set_tmp (&c->ts);
7186 : :
7187 : 3160 : return MATCH_YES;
7188 : :
7189 : 3 : syntax:
7190 : 3 : gfc_error ("Syntax error in TYPE IS specification at %C");
7191 : :
7192 : 3 : cleanup:
7193 : 3 : if (c != NULL)
7194 : 2 : gfc_free_case_list (c); /* new_st is cleaned up in parse.cc. */
7195 : : return MATCH_ERROR;
7196 : : }
7197 : :
7198 : :
7199 : : /* Match a CLASS IS or CLASS DEFAULT statement. */
7200 : :
7201 : : match
7202 : 1836 : gfc_match_class_is (void)
7203 : : {
7204 : 1836 : gfc_case *c = NULL;
7205 : 1836 : match m;
7206 : :
7207 : 1836 : if (gfc_current_state () != COMP_SELECT_TYPE)
7208 : : return MATCH_NO;
7209 : :
7210 : 1809 : if (gfc_match ("% default") == MATCH_YES)
7211 : : {
7212 : 1497 : m = match_case_eos ();
7213 : 1497 : if (m == MATCH_NO)
7214 : 0 : goto syntax;
7215 : 1497 : if (m == MATCH_ERROR)
7216 : 0 : goto cleanup;
7217 : :
7218 : 1497 : new_st.op = EXEC_SELECT_TYPE;
7219 : 1497 : c = gfc_get_case ();
7220 : 1497 : c->where = gfc_current_locus;
7221 : 1497 : c->ts.type = BT_UNKNOWN;
7222 : 1497 : new_st.ext.block.case_list = c;
7223 : 1497 : select_type_set_tmp (NULL);
7224 : 1497 : return MATCH_YES;
7225 : : }
7226 : :
7227 : 312 : m = gfc_match ("% is");
7228 : 312 : if (m == MATCH_NO)
7229 : 0 : goto syntax;
7230 : 312 : if (m == MATCH_ERROR)
7231 : 0 : goto cleanup;
7232 : :
7233 : 312 : if (gfc_match_char ('(') != MATCH_YES)
7234 : 0 : goto syntax;
7235 : :
7236 : 312 : c = gfc_get_case ();
7237 : 312 : c->where = gfc_current_locus;
7238 : :
7239 : 312 : m = match_derived_type_spec (&c->ts);
7240 : 312 : if (m == MATCH_NO)
7241 : 4 : goto syntax;
7242 : 308 : if (m == MATCH_ERROR)
7243 : 0 : goto cleanup;
7244 : :
7245 : 308 : if (c->ts.type == BT_DERIVED)
7246 : 308 : c->ts.type = BT_CLASS;
7247 : :
7248 : 308 : if (gfc_match_char (')') != MATCH_YES)
7249 : 0 : goto syntax;
7250 : :
7251 : 308 : m = match_case_eos ();
7252 : 308 : if (m == MATCH_NO)
7253 : 1 : goto syntax;
7254 : 307 : if (m == MATCH_ERROR)
7255 : 1 : goto cleanup;
7256 : :
7257 : 306 : new_st.op = EXEC_SELECT_TYPE;
7258 : 306 : new_st.ext.block.case_list = c;
7259 : :
7260 : : /* Create temporary variable. */
7261 : 306 : select_type_set_tmp (&c->ts);
7262 : :
7263 : 306 : return MATCH_YES;
7264 : :
7265 : 5 : syntax:
7266 : 5 : gfc_error ("Syntax error in CLASS IS specification at %C");
7267 : :
7268 : 6 : cleanup:
7269 : 6 : if (c != NULL)
7270 : 6 : gfc_free_case_list (c); /* new_st is cleaned up in parse.cc. */
7271 : : return MATCH_ERROR;
7272 : : }
7273 : :
7274 : :
7275 : : /* Match a RANK statement. */
7276 : :
7277 : : match
7278 : 2277 : gfc_match_rank_is (void)
7279 : : {
7280 : 2277 : gfc_case *c = NULL;
7281 : 2277 : match m;
7282 : 2277 : int case_value;
7283 : :
7284 : 2277 : if (gfc_current_state () != COMP_SELECT_RANK)
7285 : : {
7286 : 5 : gfc_error ("Unexpected RANK statement at %C");
7287 : 5 : return MATCH_ERROR;
7288 : : }
7289 : :
7290 : 2272 : if (gfc_match ("% default") == MATCH_YES)
7291 : : {
7292 : 919 : m = match_case_eos ();
7293 : 919 : if (m == MATCH_NO)
7294 : 0 : goto syntax;
7295 : 919 : if (m == MATCH_ERROR)
7296 : 0 : goto cleanup;
7297 : :
7298 : 919 : new_st.op = EXEC_SELECT_RANK;
7299 : 919 : c = gfc_get_case ();
7300 : 919 : c->ts.type = BT_UNKNOWN;
7301 : 919 : c->where = gfc_current_locus;
7302 : 919 : new_st.ext.block.case_list = c;
7303 : 919 : select_type_stack->tmp = NULL;
7304 : 919 : return MATCH_YES;
7305 : : }
7306 : :
7307 : 1353 : if (gfc_match_char ('(') != MATCH_YES)
7308 : 0 : goto syntax;
7309 : :
7310 : 1353 : c = gfc_get_case ();
7311 : 1353 : c->where = gfc_current_locus;
7312 : 1353 : c->ts = select_type_stack->selector->ts;
7313 : :
7314 : 1353 : m = gfc_match_expr (&c->low);
7315 : 1353 : if (m == MATCH_NO)
7316 : : {
7317 : 33 : if (gfc_match_char ('*') == MATCH_YES)
7318 : 33 : c->low = gfc_get_int_expr (gfc_default_integer_kind,
7319 : : NULL, -1);
7320 : : else
7321 : 0 : goto syntax;
7322 : :
7323 : 33 : case_value = -1;
7324 : : }
7325 : 1320 : else if (m == MATCH_YES)
7326 : : {
7327 : : /* F2018: R1150 */
7328 : 1320 : if (c->low->expr_type != EXPR_CONSTANT
7329 : 1319 : || c->low->ts.type != BT_INTEGER
7330 : 1319 : || c->low->rank)
7331 : : {
7332 : 1 : gfc_error ("The SELECT RANK CASE expression at %C must be a "
7333 : : "scalar, integer constant");
7334 : 1 : goto cleanup;
7335 : : }
7336 : :
7337 : 1319 : case_value = (int) mpz_get_si (c->low->value.integer);
7338 : : /* F2018: C1151 */
7339 : 1319 : if ((case_value < 0) || (case_value > GFC_MAX_DIMENSIONS))
7340 : : {
7341 : 2 : gfc_error ("The value of the SELECT RANK CASE expression at "
7342 : : "%C must not be less than zero or greater than %d",
7343 : : GFC_MAX_DIMENSIONS);
7344 : 2 : goto cleanup;
7345 : : }
7346 : : }
7347 : : else
7348 : 0 : goto cleanup;
7349 : :
7350 : 1350 : if (gfc_match_char (')') != MATCH_YES)
7351 : 0 : goto syntax;
7352 : :
7353 : 1350 : m = match_case_eos ();
7354 : 1350 : if (m == MATCH_NO)
7355 : 0 : goto syntax;
7356 : 1350 : if (m == MATCH_ERROR)
7357 : 0 : goto cleanup;
7358 : :
7359 : 1350 : new_st.op = EXEC_SELECT_RANK;
7360 : 1350 : new_st.ext.block.case_list = c;
7361 : :
7362 : : /* Create temporary variable. Recycle the select type code. */
7363 : 1350 : select_rank_set_tmp (&c->ts, &case_value);
7364 : :
7365 : 1350 : return MATCH_YES;
7366 : :
7367 : 0 : syntax:
7368 : 0 : gfc_error ("Syntax error in RANK specification at %C");
7369 : :
7370 : 3 : cleanup:
7371 : 3 : if (c != NULL)
7372 : 3 : gfc_free_case_list (c); /* new_st is cleaned up in parse.cc. */
7373 : : return MATCH_ERROR;
7374 : : }
7375 : :
7376 : : /********************* WHERE subroutines ********************/
7377 : :
7378 : : /* Match the rest of a simple WHERE statement that follows an IF statement.
7379 : : */
7380 : :
7381 : : static match
7382 : 7 : match_simple_where (void)
7383 : : {
7384 : 7 : gfc_expr *expr;
7385 : 7 : gfc_code *c;
7386 : 7 : match m;
7387 : :
7388 : 7 : m = gfc_match (" ( %e )", &expr);
7389 : 7 : if (m != MATCH_YES)
7390 : : return m;
7391 : :
7392 : 7 : m = gfc_match_assignment ();
7393 : 7 : if (m == MATCH_NO)
7394 : 0 : goto syntax;
7395 : 7 : if (m == MATCH_ERROR)
7396 : 0 : goto cleanup;
7397 : :
7398 : 7 : if (gfc_match_eos () != MATCH_YES)
7399 : 0 : goto syntax;
7400 : :
7401 : 7 : c = gfc_get_code (EXEC_WHERE);
7402 : 7 : c->expr1 = expr;
7403 : :
7404 : 7 : c->next = XCNEW (gfc_code);
7405 : 7 : *c->next = new_st;
7406 : 7 : c->next->loc = gfc_current_locus;
7407 : 7 : gfc_clear_new_st ();
7408 : :
7409 : 7 : new_st.op = EXEC_WHERE;
7410 : 7 : new_st.block = c;
7411 : :
7412 : 7 : return MATCH_YES;
7413 : :
7414 : 0 : syntax:
7415 : 0 : gfc_syntax_error (ST_WHERE);
7416 : :
7417 : 0 : cleanup:
7418 : 0 : gfc_free_expr (expr);
7419 : 0 : return MATCH_ERROR;
7420 : : }
7421 : :
7422 : :
7423 : : /* Match a WHERE statement. */
7424 : :
7425 : : match
7426 : 482980 : gfc_match_where (gfc_statement *st)
7427 : : {
7428 : 482980 : gfc_expr *expr;
7429 : 482980 : match m0, m;
7430 : 482980 : gfc_code *c;
7431 : :
7432 : 482980 : m0 = gfc_match_label ();
7433 : 482980 : if (m0 == MATCH_ERROR)
7434 : : return m0;
7435 : :
7436 : 482972 : m = gfc_match (" where ( %e )", &expr);
7437 : 482972 : if (m != MATCH_YES)
7438 : : return m;
7439 : :
7440 : 443 : if (gfc_match_eos () == MATCH_YES)
7441 : : {
7442 : 371 : *st = ST_WHERE_BLOCK;
7443 : 371 : new_st.op = EXEC_WHERE;
7444 : 371 : new_st.expr1 = expr;
7445 : 371 : return MATCH_YES;
7446 : : }
7447 : :
7448 : 72 : m = gfc_match_assignment ();
7449 : 72 : if (m == MATCH_NO)
7450 : 0 : gfc_syntax_error (ST_WHERE);
7451 : :
7452 : 72 : if (m != MATCH_YES)
7453 : : {
7454 : 0 : gfc_free_expr (expr);
7455 : 0 : return MATCH_ERROR;
7456 : : }
7457 : :
7458 : : /* We've got a simple WHERE statement. */
7459 : 72 : *st = ST_WHERE;
7460 : 72 : c = gfc_get_code (EXEC_WHERE);
7461 : 72 : c->expr1 = expr;
7462 : :
7463 : : /* Put in the assignment. It will not be processed by add_statement, so we
7464 : : need to copy the location here. */
7465 : :
7466 : 72 : c->next = XCNEW (gfc_code);
7467 : 72 : *c->next = new_st;
7468 : 72 : c->next->loc = gfc_current_locus;
7469 : 72 : gfc_clear_new_st ();
7470 : :
7471 : 72 : new_st.op = EXEC_WHERE;
7472 : 72 : new_st.block = c;
7473 : :
7474 : 72 : return MATCH_YES;
7475 : : }
7476 : :
7477 : :
7478 : : /* Match an ELSEWHERE statement. We leave behind a WHERE node in
7479 : : new_st if successful. */
7480 : :
7481 : : match
7482 : 313 : gfc_match_elsewhere (void)
7483 : : {
7484 : 313 : char name[GFC_MAX_SYMBOL_LEN + 1];
7485 : 313 : gfc_expr *expr;
7486 : 313 : match m;
7487 : :
7488 : 313 : if (gfc_current_state () != COMP_WHERE)
7489 : : {
7490 : 0 : gfc_error ("ELSEWHERE statement at %C not enclosed in WHERE block");
7491 : 0 : return MATCH_ERROR;
7492 : : }
7493 : :
7494 : 313 : expr = NULL;
7495 : :
7496 : 313 : if (gfc_match_char ('(') == MATCH_YES)
7497 : : {
7498 : 179 : m = gfc_match_expr (&expr);
7499 : 179 : if (m == MATCH_NO)
7500 : 0 : goto syntax;
7501 : 179 : if (m == MATCH_ERROR)
7502 : : return MATCH_ERROR;
7503 : :
7504 : 179 : if (gfc_match_char (')') != MATCH_YES)
7505 : 0 : goto syntax;
7506 : : }
7507 : :
7508 : 313 : if (gfc_match_eos () != MATCH_YES)
7509 : : {
7510 : : /* Only makes sense if we have a where-construct-name. */
7511 : 2 : if (!gfc_current_block ())
7512 : : {
7513 : 1 : m = MATCH_ERROR;
7514 : 1 : goto cleanup;
7515 : : }
7516 : : /* Better be a name at this point. */
7517 : 1 : m = gfc_match_name (name);
7518 : 1 : if (m == MATCH_NO)
7519 : 0 : goto syntax;
7520 : 1 : if (m == MATCH_ERROR)
7521 : 0 : goto cleanup;
7522 : :
7523 : 1 : if (gfc_match_eos () != MATCH_YES)
7524 : 0 : goto syntax;
7525 : :
7526 : 1 : if (strcmp (name, gfc_current_block ()->name) != 0)
7527 : : {
7528 : 0 : gfc_error ("Label %qs at %C doesn't match WHERE label %qs",
7529 : : name, gfc_current_block ()->name);
7530 : 0 : goto cleanup;
7531 : : }
7532 : : }
7533 : :
7534 : 312 : new_st.op = EXEC_WHERE;
7535 : 312 : new_st.expr1 = expr;
7536 : 312 : return MATCH_YES;
7537 : :
7538 : 0 : syntax:
7539 : 0 : gfc_syntax_error (ST_ELSEWHERE);
7540 : :
7541 : 1 : cleanup:
7542 : 1 : gfc_free_expr (expr);
7543 : 1 : return MATCH_ERROR;
7544 : : }
|