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