OSDN Git Service

* gfortran.h (try): Remove macro. Replace try with gfc_try
[pf3gnuchains/gcc-fork.git] / gcc / fortran / io.c
1 /* Deal with I/O statements & related stuff.
2    Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
3    Free Software Foundation, Inc.
4    Contributed by Andy Vaught
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
12
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3.  If not see
20 <http://www.gnu.org/licenses/>.  */
21
22 #include "config.h"
23 #include "system.h"
24 #include "flags.h"
25 #include "gfortran.h"
26 #include "match.h"
27 #include "parse.h"
28
29 gfc_st_label
30 format_asterisk = {0, NULL, NULL, -1, ST_LABEL_FORMAT, ST_LABEL_FORMAT, NULL,
31                    0, {NULL, NULL}};
32
33 typedef struct
34 {
35   const char *name, *spec, *value;
36   bt type;
37 }
38 io_tag;
39
40 static const io_tag
41         tag_file        = { "FILE", " file =", " %e", BT_CHARACTER },
42         tag_status      = { "STATUS", " status =", " %e", BT_CHARACTER},
43         tag_e_access    = {"ACCESS", " access =", " %e", BT_CHARACTER},
44         tag_e_form      = {"FORM", " form =", " %e", BT_CHARACTER},
45         tag_e_recl      = {"RECL", " recl =", " %e", BT_INTEGER},
46         tag_e_blank     = {"BLANK", " blank =", " %e", BT_CHARACTER},
47         tag_e_position  = {"POSITION", " position =", " %e", BT_CHARACTER},
48         tag_e_action    = {"ACTION", " action =", " %e", BT_CHARACTER},
49         tag_e_delim     = {"DELIM", " delim =", " %e", BT_CHARACTER},
50         tag_e_pad       = {"PAD", " pad =", " %e", BT_CHARACTER},
51         tag_e_decimal   = {"DECIMAL", " decimal =", " %e", BT_CHARACTER},
52         tag_e_encoding  = {"ENCODING", " encoding =", " %e", BT_CHARACTER},
53         tag_e_async     = {"ASYNCHRONOUS", " asynchronous =", " %e", BT_CHARACTER},
54         tag_e_round     = {"ROUND", " round =", " %e", BT_CHARACTER},
55         tag_e_sign      = {"SIGN", " sign =", " %e", BT_CHARACTER},
56         tag_unit        = {"UNIT", " unit =", " %e", BT_INTEGER},
57         tag_advance     = {"ADVANCE", " advance =", " %e", BT_CHARACTER},
58         tag_rec         = {"REC", " rec =", " %e", BT_INTEGER},
59         tag_spos        = {"POSITION", " pos =", " %e", BT_INTEGER},
60         tag_format      = {"FORMAT", NULL, NULL, BT_CHARACTER},
61         tag_iomsg       = {"IOMSG", " iomsg =", " %e", BT_CHARACTER},
62         tag_iostat      = {"IOSTAT", " iostat =", " %v", BT_INTEGER},
63         tag_size        = {"SIZE", " size =", " %v", BT_INTEGER},
64         tag_exist       = {"EXIST", " exist =", " %v", BT_LOGICAL},
65         tag_opened      = {"OPENED", " opened =", " %v", BT_LOGICAL},
66         tag_named       = {"NAMED", " named =", " %v", BT_LOGICAL},
67         tag_name        = {"NAME", " name =", " %v", BT_CHARACTER},
68         tag_number      = {"NUMBER", " number =", " %v", BT_INTEGER},
69         tag_s_access    = {"ACCESS", " access =", " %v", BT_CHARACTER},
70         tag_sequential  = {"SEQUENTIAL", " sequential =", " %v", BT_CHARACTER},
71         tag_direct      = {"DIRECT", " direct =", " %v", BT_CHARACTER},
72         tag_s_form      = {"FORM", " form =", " %v", BT_CHARACTER},
73         tag_formatted   = {"FORMATTED", " formatted =", " %v", BT_CHARACTER},
74         tag_unformatted = {"UNFORMATTED", " unformatted =", " %v", BT_CHARACTER},
75         tag_s_recl      = {"RECL", " recl =", " %v", BT_INTEGER},
76         tag_nextrec     = {"NEXTREC", " nextrec =", " %v", BT_INTEGER},
77         tag_s_blank     = {"BLANK", " blank =", " %v", BT_CHARACTER},
78         tag_s_position  = {"POSITION", " position =", " %v", BT_CHARACTER},
79         tag_s_action    = {"ACTION", " action =", " %v", BT_CHARACTER},
80         tag_read        = {"READ", " read =", " %v", BT_CHARACTER},
81         tag_write       = {"WRITE", " write =", " %v", BT_CHARACTER},
82         tag_readwrite   = {"READWRITE", " readwrite =", " %v", BT_CHARACTER},
83         tag_s_delim     = {"DELIM", " delim =", " %v", BT_CHARACTER},
84         tag_s_pad       = {"PAD", " pad =", " %v", BT_CHARACTER},
85         tag_s_decimal   = {"DECIMAL", " decimal =", " %v", BT_CHARACTER},
86         tag_s_encoding  = {"ENCODING", " encoding =", " %v", BT_CHARACTER},
87         tag_s_async     = {"ASYNCHRONOUS", " asynchronous =", " %v", BT_CHARACTER},
88         tag_s_round     = {"ROUND", " round =", " %v", BT_CHARACTER},
89         tag_s_sign      = {"SIGN", " sign =", " %v", BT_CHARACTER},
90         tag_iolength    = {"IOLENGTH", " iolength =", " %v", BT_INTEGER},
91         tag_convert     = {"CONVERT", " convert =", " %e", BT_CHARACTER},
92         tag_strm_out    = {"POS", " pos =", " %v", BT_INTEGER},
93         tag_err         = {"ERR", " err =", " %l", BT_UNKNOWN},
94         tag_end         = {"END", " end =", " %l", BT_UNKNOWN},
95         tag_eor         = {"EOR", " eor =", " %l", BT_UNKNOWN},
96         tag_id          = {"ID", " id =", " %v", BT_INTEGER},
97         tag_pending     = {"PENDING", " pending =", " %v", BT_LOGICAL};
98
99 static gfc_dt *current_dt;
100
101 #define RESOLVE_TAG(x, y) if (resolve_tag(x, y) == FAILURE) return FAILURE;
102
103
104 /**************** Fortran 95 FORMAT parser  *****************/
105
106 /* FORMAT tokens returned by format_lex().  */
107 typedef enum
108 {
109   FMT_NONE, FMT_UNKNOWN, FMT_SIGNED_INT, FMT_ZERO, FMT_POSINT, FMT_PERIOD,
110   FMT_COMMA, FMT_COLON, FMT_SLASH, FMT_DOLLAR, FMT_POS, FMT_LPAREN,
111   FMT_RPAREN, FMT_X, FMT_SIGN, FMT_BLANK, FMT_CHAR, FMT_P, FMT_IBOZ, FMT_F,
112   FMT_E, FMT_EXT, FMT_G, FMT_L, FMT_A, FMT_D, FMT_H, FMT_END, FMT_ERROR, FMT_DC,
113   FMT_DP
114 }
115 format_token;
116
117 /* Local variables for checking format strings.  The saved_token is
118    used to back up by a single format token during the parsing
119    process.  */
120 static gfc_char_t *format_string;
121 static int format_length, use_last_char;
122 static char error_element;
123 static locus format_locus;
124
125 static format_token saved_token;
126
127 static enum
128 { MODE_STRING, MODE_FORMAT, MODE_COPY }
129 mode;
130
131
132 /* Return the next character in the format string.  */
133
134 static char
135 next_char (int in_string)
136 {
137   static gfc_char_t c;
138
139   if (use_last_char)
140     {
141       use_last_char = 0;
142       return c;
143     }
144
145   format_length++;
146
147   if (mode == MODE_STRING)
148     c = *format_string++;
149   else
150     {
151       c = gfc_next_char_literal (in_string);
152       if (c == '\n')
153         c = '\0';
154     }
155
156   if (gfc_option.flag_backslash && c == '\\')
157     {
158       locus old_locus = gfc_current_locus;
159
160       if (gfc_match_special_char (&c) == MATCH_NO)
161         gfc_current_locus = old_locus;
162
163       if (!(gfc_option.allow_std & GFC_STD_GNU) && !inhibit_warnings)
164         gfc_warning ("Extension: backslash character at %C");
165     }
166
167   if (mode == MODE_COPY)
168     *format_string++ = c;
169
170   if (mode != MODE_STRING)
171     format_locus = gfc_current_locus;
172
173   c = gfc_wide_toupper (c);
174   return c;
175 }
176
177
178 /* Back up one character position.  Only works once.  */
179
180 static void
181 unget_char (void)
182 {
183   use_last_char = 1;
184 }
185
186 /* Eat up the spaces and return a character.  */
187
188 static char
189 next_char_not_space (bool *error)
190 {
191   char c;
192   do
193     {
194       error_element = c = next_char (0);
195       if (c == '\t')
196         {
197           if (gfc_option.allow_std & GFC_STD_GNU)
198             gfc_warning ("Extension: Tab character in format at %C");
199           else
200             {
201               gfc_error ("Extension: Tab character in format at %C");
202               *error = true;
203               return c;
204             }
205         }
206     }
207   while (gfc_is_whitespace (c));
208   return c;
209 }
210
211 static int value = 0;
212
213 /* Simple lexical analyzer for getting the next token in a FORMAT
214    statement.  */
215
216 static format_token
217 format_lex (void)
218 {
219   format_token token;
220   char c, delim;
221   int zflag;
222   int negative_flag;
223   bool error = false;
224
225   if (saved_token != FMT_NONE)
226     {
227       token = saved_token;
228       saved_token = FMT_NONE;
229       return token;
230     }
231
232   c = next_char_not_space (&error);
233   
234   negative_flag = 0;
235   switch (c)
236     {
237     case '-':
238       negative_flag = 1;
239     case '+':
240       c = next_char_not_space (&error);
241       if (!ISDIGIT (c))
242         {
243           token = FMT_UNKNOWN;
244           break;
245         }
246
247       value = c - '0';
248
249       do
250         {
251           c = next_char_not_space (&error);
252           if (ISDIGIT (c))
253             value = 10 * value + c - '0';
254         }
255       while (ISDIGIT (c));
256
257       unget_char ();
258
259       if (negative_flag)
260         value = -value;
261
262       token = FMT_SIGNED_INT;
263       break;
264
265     case '0':
266     case '1':
267     case '2':
268     case '3':
269     case '4':
270     case '5':
271     case '6':
272     case '7':
273     case '8':
274     case '9':
275       zflag = (c == '0');
276
277       value = c - '0';
278
279       do
280         {
281           c = next_char_not_space (&error);
282           if (ISDIGIT (c))
283             {
284               value = 10 * value + c - '0';
285               if (c != '0')
286                 zflag = 0;
287             }
288         }
289       while (ISDIGIT (c));
290
291       unget_char ();
292       token = zflag ? FMT_ZERO : FMT_POSINT;
293       break;
294
295     case '.':
296       token = FMT_PERIOD;
297       break;
298
299     case ',':
300       token = FMT_COMMA;
301       break;
302
303     case ':':
304       token = FMT_COLON;
305       break;
306
307     case '/':
308       token = FMT_SLASH;
309       break;
310
311     case '$':
312       token = FMT_DOLLAR;
313       break;
314
315     case 'T':
316       c = next_char_not_space (&error);
317       if (c != 'L' && c != 'R')
318         unget_char ();
319
320       token = FMT_POS;
321       break;
322
323     case '(':
324       token = FMT_LPAREN;
325       break;
326
327     case ')':
328       token = FMT_RPAREN;
329       break;
330
331     case 'X':
332       token = FMT_X;
333       break;
334
335     case 'S':
336       c = next_char_not_space (&error);
337       if (c != 'P' && c != 'S')
338         unget_char ();
339
340       token = FMT_SIGN;
341       break;
342
343     case 'B':
344       c = next_char_not_space (&error);
345       if (c == 'N' || c == 'Z')
346         token = FMT_BLANK;
347       else
348         {
349           unget_char ();
350           token = FMT_IBOZ;
351         }
352
353       break;
354
355     case '\'':
356     case '"':
357       delim = c;
358
359       value = 0;
360
361       for (;;)
362         {
363           c = next_char (1);
364           if (c == '\0')
365             {
366               token = FMT_END;
367               break;
368             }
369
370           if (c == delim)
371             {
372               c = next_char (1);
373
374               if (c == '\0')
375                 {
376                   token = FMT_END;
377                   break;
378                 }
379
380               if (c != delim)
381                 {
382                   unget_char ();
383                   token = FMT_CHAR;
384                   break;
385                 }
386             }
387           value++;
388         }
389       break;
390
391     case 'P':
392       token = FMT_P;
393       break;
394
395     case 'I':
396     case 'O':
397     case 'Z':
398       token = FMT_IBOZ;
399       break;
400
401     case 'F':
402       token = FMT_F;
403       break;
404
405     case 'E':
406       c = next_char_not_space (&error);
407       if (c == 'N' || c == 'S')
408         token = FMT_EXT;
409       else
410         {
411           token = FMT_E;
412           unget_char ();
413         }
414
415       break;
416
417     case 'G':
418       token = FMT_G;
419       break;
420
421     case 'H':
422       token = FMT_H;
423       break;
424
425     case 'L':
426       token = FMT_L;
427       break;
428
429     case 'A':
430       token = FMT_A;
431       break;
432
433     case 'D':
434       c = next_char_not_space (&error);
435       if (c == 'P')
436         {
437           if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: DP format "
438               "specifier not allowed at %C") == FAILURE)
439             return FMT_ERROR;
440           token = FMT_DP;
441         }
442       else if (c == 'C')
443         {
444           if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: DC format "
445               "specifier not allowed at %C") == FAILURE)
446             return FMT_ERROR;
447           token = FMT_DC;
448         }
449       else
450         {
451           token = FMT_D;
452           unget_char ();
453         }
454       break;
455
456     case '\0':
457       token = FMT_END;
458       break;
459
460     default:
461       token = FMT_UNKNOWN;
462       break;
463     }
464
465   if (error)
466     return FMT_ERROR;
467
468   return token;
469 }
470
471
472 /* Check a format statement.  The format string, either from a FORMAT
473    statement or a constant in an I/O statement has already been parsed
474    by itself, and we are checking it for validity.  The dual origin
475    means that the warning message is a little less than great.  */
476
477 static gfc_try
478 check_format (bool is_input)
479 {
480   const char *posint_required     = _("Positive width required");
481   const char *nonneg_required     = _("Nonnegative width required");
482   const char *unexpected_element  = _("Unexpected element '%c' in format string"
483                                       " at %L");
484   const char *unexpected_end      = _("Unexpected end of format string");
485   const char *zero_width          = _("Zero width in format descriptor");
486   const char *g0_precision      = _("Specifying precision with G0 not allowed");
487
488   const char *error;
489   format_token t, u;
490   int level;
491   int repeat;
492   gfc_try rv;
493
494   use_last_char = 0;
495   saved_token = FMT_NONE;
496   level = 0;
497   repeat = 0;
498   rv = SUCCESS;
499
500   t = format_lex ();
501   if (t == FMT_ERROR)
502     goto fail;
503   if (t != FMT_LPAREN)
504     {
505       error = _("Missing leading left parenthesis");
506       goto syntax;
507     }
508
509   t = format_lex ();
510   if (t == FMT_ERROR)
511     goto fail;
512   if (t == FMT_RPAREN)
513     goto finished;              /* Empty format is legal */
514   saved_token = t;
515
516 format_item:
517   /* In this state, the next thing has to be a format item.  */
518   t = format_lex ();
519   if (t == FMT_ERROR)
520     goto fail;
521 format_item_1:
522   switch (t)
523     {
524     case FMT_POSINT:
525       repeat = value;
526       t = format_lex ();
527       if (t == FMT_ERROR)
528         goto fail;
529       if (t == FMT_LPAREN)
530         {
531           level++;
532           goto format_item;
533         }
534
535       if (t == FMT_SLASH)
536         goto optional_comma;
537
538       goto data_desc;
539
540     case FMT_LPAREN:
541       level++;
542       goto format_item;
543
544     case FMT_SIGNED_INT:
545     case FMT_ZERO:
546       /* Signed integer can only precede a P format.  */
547       t = format_lex ();
548       if (t == FMT_ERROR)
549         goto fail;
550       if (t != FMT_P)
551         {
552           error = _("Expected P edit descriptor");
553           goto syntax;
554         }
555
556       goto data_desc;
557
558     case FMT_P:
559       /* P requires a prior number.  */
560       error = _("P descriptor requires leading scale factor");
561       goto syntax;
562
563     case FMT_X:
564       /* X requires a prior number if we're being pedantic.  */
565       if (gfc_notify_std (GFC_STD_GNU, "Extension: X descriptor "
566                           "requires leading space count at %C")
567           == FAILURE)
568         return FAILURE;
569       goto between_desc;
570
571     case FMT_SIGN:
572     case FMT_BLANK:
573     case FMT_DP:
574     case FMT_DC:
575       goto between_desc;
576
577     case FMT_CHAR:
578       goto extension_optional_comma;
579
580     case FMT_COLON:
581     case FMT_SLASH:
582       goto optional_comma;
583
584     case FMT_DOLLAR:
585       t = format_lex ();
586       if (t == FMT_ERROR)
587         goto fail;
588
589       if (gfc_notify_std (GFC_STD_GNU, "Extension: $ descriptor at %C")
590           == FAILURE)
591         return FAILURE;
592       if (t != FMT_RPAREN || level > 0)
593         {
594           gfc_warning ("$ should be the last specifier in format at %C");
595           goto optional_comma_1;
596         }
597
598       goto finished;
599
600     case FMT_POS:
601     case FMT_IBOZ:
602     case FMT_F:
603     case FMT_E:
604     case FMT_EXT:
605     case FMT_G:
606     case FMT_L:
607     case FMT_A:
608     case FMT_D:
609     case FMT_H:
610       goto data_desc;
611
612     case FMT_END:
613       error = unexpected_end;
614       goto syntax;
615
616     default:
617       error = unexpected_element;
618       goto syntax;
619     }
620
621 data_desc:
622   /* In this state, t must currently be a data descriptor.
623      Deal with things that can/must follow the descriptor.  */
624   switch (t)
625     {
626     case FMT_SIGN:
627     case FMT_BLANK:
628     case FMT_DP:
629     case FMT_DC:
630     case FMT_X:
631       break;
632
633     case FMT_P:
634       if (pedantic)
635         {
636           t = format_lex ();
637           if (t == FMT_ERROR)
638             goto fail;
639           if (t == FMT_POSINT)
640             {
641               error = _("Repeat count cannot follow P descriptor");
642               goto syntax;
643             }
644
645           saved_token = t;
646         }
647
648       goto optional_comma;
649
650     case FMT_POS:
651     case FMT_L:
652       t = format_lex ();
653       if (t == FMT_ERROR)
654         goto fail;
655       if (t == FMT_POSINT)
656         break;
657
658       switch (gfc_notification_std (GFC_STD_GNU))
659         {
660           case WARNING:
661             gfc_warning ("Extension: Missing positive width after L "
662                          "descriptor at %C");
663             saved_token = t;
664             break;
665
666           case ERROR:
667             error = posint_required;
668             goto syntax;
669
670           case SILENT:
671             saved_token = t;
672             break;
673
674           default:
675             gcc_unreachable ();
676         }
677       break;
678
679     case FMT_A:
680       t = format_lex ();
681       if (t == FMT_ERROR)
682         goto fail;
683       if (t == FMT_ZERO)
684         {
685           error = zero_width;
686           goto syntax;
687         }
688       if (t != FMT_POSINT)
689         saved_token = t;
690       break;
691
692     case FMT_D:
693     case FMT_E:
694     case FMT_G:
695     case FMT_EXT:
696       u = format_lex ();
697       if (t == FMT_G && u == FMT_ZERO)
698         {
699           if (is_input)
700             {
701               error = zero_width;
702               goto syntax;
703             }
704
705           if (gfc_notify_std (GFC_STD_F2008, "Fortran 2008: 'G0' in "
706                               "format at %C") == FAILURE)
707             return FAILURE;
708
709           u = format_lex ();
710           if (u == FMT_PERIOD)
711             {
712               error = g0_precision;
713               goto syntax;
714             }
715           saved_token = u;
716           goto between_desc;
717         }
718
719       if (u == FMT_ERROR)
720         goto fail;
721       if (u != FMT_POSINT)
722         {
723           error = posint_required;
724           goto syntax;
725         }
726
727       u = format_lex ();
728       if (u == FMT_ERROR)
729         goto fail;
730       if (u != FMT_PERIOD)
731         {
732           /* Warn if -std=legacy, otherwise error.  */
733           if (gfc_option.warn_std != 0)
734             gfc_error_now ("Period required in format specifier at %C");
735           else
736             gfc_warning ("Period required in format specifier at %C");
737           saved_token = u;
738           break;
739         }
740
741       u = format_lex ();
742       if (u == FMT_ERROR)
743         goto fail;
744       if (u != FMT_ZERO && u != FMT_POSINT)
745         {
746           error = nonneg_required;
747           goto syntax;
748         }
749
750       if (t == FMT_D)
751         break;
752
753       /* Look for optional exponent.  */
754       u = format_lex ();
755       if (u == FMT_ERROR)
756         goto fail;
757       if (u != FMT_E)
758         {
759           saved_token = u;
760         }
761       else
762         {
763           u = format_lex ();
764           if (u == FMT_ERROR)
765             goto fail;
766           if (u != FMT_POSINT)
767             {
768               error = _("Positive exponent width required");
769               goto syntax;
770             }
771         }
772
773       break;
774
775     case FMT_F:
776       t = format_lex ();
777       if (t == FMT_ERROR)
778         goto fail;
779       if (t != FMT_ZERO && t != FMT_POSINT)
780         {
781           error = nonneg_required;
782           goto syntax;
783         }
784       else if (is_input && t == FMT_ZERO)
785         {
786           error = posint_required;
787           goto syntax;
788         }
789
790       t = format_lex ();
791       if (t == FMT_ERROR)
792         goto fail;
793       if (t != FMT_PERIOD)
794         {
795           /* Warn if -std=legacy, otherwise error.  */
796           if (gfc_option.warn_std != 0)
797             gfc_error_now ("Period required in format specifier at %C");
798           else
799             gfc_warning ("Period required in format specifier at %C");
800           saved_token = t;
801           break;
802         }
803
804       t = format_lex ();
805       if (t == FMT_ERROR)
806         goto fail;
807       if (t != FMT_ZERO && t != FMT_POSINT)
808         {
809           error = nonneg_required;
810           goto syntax;
811         }
812
813       break;
814
815     case FMT_H:
816       if (!(gfc_option.allow_std & GFC_STD_GNU) && !inhibit_warnings)
817         gfc_warning ("The H format specifier at %C is"
818                      " a Fortran 95 deleted feature");
819
820       if (mode == MODE_STRING)
821         {
822           format_string += value;
823           format_length -= value;
824         }
825       else
826         {
827           while (repeat >0)
828            {
829              next_char (1);
830              repeat -- ;
831            }
832         }
833      break;
834
835     case FMT_IBOZ:
836       t = format_lex ();
837       if (t == FMT_ERROR)
838         goto fail;
839       if (t != FMT_ZERO && t != FMT_POSINT)
840         {
841           error = nonneg_required;
842           goto syntax;
843         }
844       else if (is_input && t == FMT_ZERO)
845         {
846           error = posint_required;
847           goto syntax;
848         }
849
850       t = format_lex ();
851       if (t == FMT_ERROR)
852         goto fail;
853       if (t != FMT_PERIOD)
854         {
855           saved_token = t;
856         }
857       else
858         {
859           t = format_lex ();
860           if (t == FMT_ERROR)
861             goto fail;
862           if (t != FMT_ZERO && t != FMT_POSINT)
863             {
864               error = nonneg_required;
865               goto syntax;
866             }
867         }
868
869       break;
870
871     default:
872       error = unexpected_element;
873       goto syntax;
874     }
875
876 between_desc:
877   /* Between a descriptor and what comes next.  */
878   t = format_lex ();
879   if (t == FMT_ERROR)
880     goto fail;
881   switch (t)
882     {
883
884     case FMT_COMMA:
885       goto format_item;
886
887     case FMT_RPAREN:
888       level--;
889       if (level < 0)
890         goto finished;
891       goto between_desc;
892
893     case FMT_COLON:
894     case FMT_SLASH:
895       goto optional_comma;
896
897     case FMT_END:
898       error = unexpected_end;
899       goto syntax;
900
901     default:
902       if (gfc_notify_std (GFC_STD_GNU, "Extension: Missing comma at %C")
903           == FAILURE)
904         return FAILURE;
905       goto format_item_1;
906     }
907
908 optional_comma:
909   /* Optional comma is a weird between state where we've just finished
910      reading a colon, slash, dollar or P descriptor.  */
911   t = format_lex ();
912   if (t == FMT_ERROR)
913     goto fail;
914 optional_comma_1:
915   switch (t)
916     {
917     case FMT_COMMA:
918       break;
919
920     case FMT_RPAREN:
921       level--;
922       if (level < 0)
923         goto finished;
924       goto between_desc;
925
926     default:
927       /* Assume that we have another format item.  */
928       saved_token = t;
929       break;
930     }
931
932   goto format_item;
933
934 extension_optional_comma:
935   /* As a GNU extension, permit a missing comma after a string literal.  */
936   t = format_lex ();
937   if (t == FMT_ERROR)
938     goto fail;
939   switch (t)
940     {
941     case FMT_COMMA:
942       break;
943
944     case FMT_RPAREN:
945       level--;
946       if (level < 0)
947         goto finished;
948       goto between_desc;
949
950     case FMT_COLON:
951     case FMT_SLASH:
952       goto optional_comma;
953
954     case FMT_END:
955       error = unexpected_end;
956       goto syntax;
957
958     default:
959       if (gfc_notify_std (GFC_STD_GNU, "Extension: Missing comma at %C")
960           == FAILURE)
961         return FAILURE;
962       saved_token = t;
963       break;
964     }
965
966   goto format_item;
967
968 syntax:
969   if (error == unexpected_element)
970     gfc_error (error, error_element, &format_locus);
971   else
972     gfc_error ("%s in format string at %L", error, &format_locus);
973 fail:
974   rv = FAILURE;
975
976 finished:
977   return rv;
978 }
979
980
981 /* Given an expression node that is a constant string, see if it looks
982    like a format string.  */
983
984 static gfc_try
985 check_format_string (gfc_expr *e, bool is_input)
986 {
987   if (!e || e->ts.type != BT_CHARACTER || e->expr_type != EXPR_CONSTANT)
988     return SUCCESS;
989
990   mode = MODE_STRING;
991   format_string = e->value.character.string;
992
993   /* More elaborate measures are needed to show where a problem is within a
994      format string that has been calculated, but that's probably not worth the
995      effort.  */
996   format_locus = e->where;
997
998   return check_format (is_input);
999 }
1000
1001
1002 /************ Fortran 95 I/O statement matchers *************/
1003
1004 /* Match a FORMAT statement.  This amounts to actually parsing the
1005    format descriptors in order to correctly locate the end of the
1006    format string.  */
1007
1008 match
1009 gfc_match_format (void)
1010 {
1011   gfc_expr *e;
1012   locus start;
1013
1014   if (gfc_current_ns->proc_name
1015       && gfc_current_ns->proc_name->attr.flavor == FL_MODULE)
1016     {
1017       gfc_error ("Format statement in module main block at %C");
1018       return MATCH_ERROR;
1019     }
1020
1021   if (gfc_statement_label == NULL)
1022     {
1023       gfc_error ("Missing format label at %C");
1024       return MATCH_ERROR;
1025     }
1026   gfc_gobble_whitespace ();
1027
1028   mode = MODE_FORMAT;
1029   format_length = 0;
1030
1031   start = gfc_current_locus;
1032
1033   if (check_format (false) == FAILURE)
1034     return MATCH_ERROR;
1035
1036   if (gfc_match_eos () != MATCH_YES)
1037     {
1038       gfc_syntax_error (ST_FORMAT);
1039       return MATCH_ERROR;
1040     }
1041
1042   /* The label doesn't get created until after the statement is done
1043      being matched, so we have to leave the string for later.  */
1044
1045   gfc_current_locus = start;    /* Back to the beginning */
1046
1047   new_st.loc = start;
1048   new_st.op = EXEC_NOP;
1049
1050   e = gfc_get_expr();
1051   e->expr_type = EXPR_CONSTANT;
1052   e->ts.type = BT_CHARACTER;
1053   e->ts.kind = gfc_default_character_kind;
1054   e->where = start;
1055   e->value.character.string = format_string
1056                             = gfc_get_wide_string (format_length + 1);
1057   e->value.character.length = format_length;
1058   gfc_statement_label->format = e;
1059
1060   mode = MODE_COPY;
1061   check_format (false);         /* Guaranteed to succeed */
1062   gfc_match_eos ();             /* Guaranteed to succeed */
1063
1064   return MATCH_YES;
1065 }
1066
1067
1068 /* Match an expression I/O tag of some sort.  */
1069
1070 static match
1071 match_etag (const io_tag *tag, gfc_expr **v)
1072 {
1073   gfc_expr *result;
1074   match m;
1075
1076   m = gfc_match (tag->spec);
1077   if (m != MATCH_YES)
1078     return m;
1079
1080   m = gfc_match (tag->value, &result);
1081   if (m != MATCH_YES)
1082     {
1083       gfc_error ("Invalid value for %s specification at %C", tag->name);
1084       return MATCH_ERROR;
1085     }
1086
1087   if (*v != NULL)
1088     {
1089       gfc_error ("Duplicate %s specification at %C", tag->name);
1090       gfc_free_expr (result);
1091       return MATCH_ERROR;
1092     }
1093
1094   *v = result;
1095   return MATCH_YES;
1096 }
1097
1098
1099 /* Match a variable I/O tag of some sort.  */
1100
1101 static match
1102 match_vtag (const io_tag *tag, gfc_expr **v)
1103 {
1104   gfc_expr *result;
1105   match m;
1106
1107   m = gfc_match (tag->spec);
1108   if (m != MATCH_YES)
1109     return m;
1110
1111   m = gfc_match (tag->value, &result);
1112   if (m != MATCH_YES)
1113     {
1114       gfc_error ("Invalid value for %s specification at %C", tag->name);
1115       return MATCH_ERROR;
1116     }
1117
1118   if (*v != NULL)
1119     {
1120       gfc_error ("Duplicate %s specification at %C", tag->name);
1121       gfc_free_expr (result);
1122       return MATCH_ERROR;
1123     }
1124
1125   if (result->symtree->n.sym->attr.intent == INTENT_IN)
1126     {
1127       gfc_error ("Variable tag cannot be INTENT(IN) at %C");
1128       gfc_free_expr (result);
1129       return MATCH_ERROR;
1130     }
1131
1132   if (gfc_pure (NULL) && gfc_impure_variable (result->symtree->n.sym))
1133     {
1134       gfc_error ("Variable tag cannot be assigned in PURE procedure at %C");
1135       gfc_free_expr (result);
1136       return MATCH_ERROR;
1137     }
1138
1139   *v = result;
1140   return MATCH_YES;
1141 }
1142
1143
1144 /* Match I/O tags that cause variables to become redefined.  */
1145
1146 static match
1147 match_out_tag(const io_tag *tag, gfc_expr **result)
1148 {
1149   match m;
1150
1151   m = match_vtag(tag, result);
1152   if (m == MATCH_YES)
1153     gfc_check_do_variable((*result)->symtree);
1154
1155   return m;
1156 }
1157
1158
1159 /* Match a label I/O tag.  */
1160
1161 static match
1162 match_ltag (const io_tag *tag, gfc_st_label ** label)
1163 {
1164   match m;
1165   gfc_st_label *old;
1166
1167   old = *label;
1168   m = gfc_match (tag->spec);
1169   if (m != MATCH_YES)
1170     return m;
1171
1172   m = gfc_match (tag->value, label);
1173   if (m != MATCH_YES)
1174     {
1175       gfc_error ("Invalid value for %s specification at %C", tag->name);
1176       return MATCH_ERROR;
1177     }
1178
1179   if (old)
1180     {
1181       gfc_error ("Duplicate %s label specification at %C", tag->name);
1182       return MATCH_ERROR;
1183     }
1184
1185   if (gfc_reference_st_label (*label, ST_LABEL_TARGET) == FAILURE)
1186     return MATCH_ERROR;
1187
1188   return m;
1189 }
1190
1191
1192 /* Resolution of the FORMAT tag, to be called from resolve_tag.  */
1193
1194 static gfc_try
1195 resolve_tag_format (const gfc_expr *e)
1196 {
1197   if (e->expr_type == EXPR_CONSTANT
1198       && (e->ts.type != BT_CHARACTER
1199           || e->ts.kind != gfc_default_character_kind))
1200     {
1201       gfc_error ("Constant expression in FORMAT tag at %L must be "
1202                  "of type default CHARACTER", &e->where);
1203       return FAILURE;
1204     }
1205
1206   /* If e's rank is zero and e is not an element of an array, it should be
1207      of integer or character type.  The integer variable should be
1208      ASSIGNED.  */
1209   if (e->symtree == NULL || e->symtree->n.sym->as == NULL
1210       || e->symtree->n.sym->as->rank == 0)
1211     {
1212       if (e->ts.type != BT_CHARACTER && e->ts.type != BT_INTEGER)
1213         {
1214           gfc_error ("FORMAT tag at %L must be of type CHARACTER or INTEGER",
1215                      &e->where);
1216           return FAILURE;
1217         }
1218       else if (e->ts.type == BT_INTEGER && e->expr_type == EXPR_VARIABLE)
1219         {
1220           if (gfc_notify_std (GFC_STD_F95_DEL, "Deleted feature: ASSIGNED "
1221                               "variable in FORMAT tag at %L", &e->where)
1222               == FAILURE)
1223             return FAILURE;
1224           if (e->symtree->n.sym->attr.assign != 1)
1225             {
1226               gfc_error ("Variable '%s' at %L has not been assigned a "
1227                          "format label", e->symtree->n.sym->name, &e->where);
1228               return FAILURE;
1229             }
1230         }
1231       else if (e->ts.type == BT_INTEGER)
1232         {
1233           gfc_error ("Scalar '%s' in FORMAT tag at %L is not an ASSIGNED "
1234                      "variable", gfc_basic_typename (e->ts.type), &e->where);
1235           return FAILURE;
1236         }
1237
1238       return SUCCESS;
1239     }
1240
1241   /* If rank is nonzero, we allow the type to be character under GFC_STD_GNU
1242      and other type under GFC_STD_LEGACY. It may be assigned an Hollerith
1243      constant.  */
1244   if (e->ts.type == BT_CHARACTER)
1245     {
1246       if (gfc_notify_std (GFC_STD_GNU, "Extension: Character array "
1247                           "in FORMAT tag at %L", &e->where) == FAILURE)
1248         return FAILURE;
1249     }
1250   else
1251     {
1252       if (gfc_notify_std (GFC_STD_LEGACY, "Extension: Non-character "
1253                           "in FORMAT tag at %L", &e->where) == FAILURE)
1254         return FAILURE;
1255     }
1256
1257   return SUCCESS;
1258 }
1259
1260
1261 /* Do expression resolution and type-checking on an expression tag.  */
1262
1263 static gfc_try
1264 resolve_tag (const io_tag *tag, gfc_expr *e)
1265 {
1266   if (e == NULL)
1267     return SUCCESS;
1268
1269   if (gfc_resolve_expr (e) == FAILURE)
1270     return FAILURE;
1271
1272   if (tag == &tag_format)
1273     return resolve_tag_format (e);
1274
1275   if (e->ts.type != tag->type)
1276     {
1277       gfc_error ("%s tag at %L must be of type %s", tag->name,
1278                  &e->where, gfc_basic_typename (tag->type));
1279       return FAILURE;
1280     }
1281
1282   if (e->rank != 0)
1283     {
1284       gfc_error ("%s tag at %L must be scalar", tag->name, &e->where);
1285       return FAILURE;
1286     }
1287
1288   if (tag == &tag_iomsg)
1289     {
1290       if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: IOMSG tag at %L",
1291                           &e->where) == FAILURE)
1292         return FAILURE;
1293     }
1294
1295   if ((tag == &tag_iostat || tag == &tag_size || tag == &tag_iolength)
1296       && e->ts.kind != gfc_default_integer_kind)
1297     {
1298       if (gfc_notify_std (GFC_STD_F2003, "Fortran 95 requires default "
1299                           "INTEGER in %s tag at %L", tag->name, &e->where)
1300           == FAILURE)
1301         return FAILURE;
1302     }
1303
1304   if (tag == &tag_convert)
1305     {
1306       if (gfc_notify_std (GFC_STD_GNU, "Extension: CONVERT tag at %L",
1307                           &e->where) == FAILURE)
1308         return FAILURE;
1309     }
1310   
1311   return SUCCESS;
1312 }
1313
1314
1315 /* Match a single tag of an OPEN statement.  */
1316
1317 static match
1318 match_open_element (gfc_open *open)
1319 {
1320   match m;
1321
1322   m = match_etag (&tag_e_async, &open->asynchronous);
1323   if (m != MATCH_NO)
1324     return m;
1325   m = match_etag (&tag_unit, &open->unit);
1326   if (m != MATCH_NO)
1327     return m;
1328   m = match_out_tag (&tag_iomsg, &open->iomsg);
1329   if (m != MATCH_NO)
1330     return m;
1331   m = match_out_tag (&tag_iostat, &open->iostat);
1332   if (m != MATCH_NO)
1333     return m;
1334   m = match_etag (&tag_file, &open->file);
1335   if (m != MATCH_NO)
1336     return m;
1337   m = match_etag (&tag_status, &open->status);
1338   if (m != MATCH_NO)
1339     return m;
1340   m = match_etag (&tag_e_access, &open->access);
1341   if (m != MATCH_NO)
1342     return m;
1343   m = match_etag (&tag_e_form, &open->form);
1344   if (m != MATCH_NO)
1345     return m;
1346   m = match_etag (&tag_e_recl, &open->recl);
1347   if (m != MATCH_NO)
1348     return m;
1349   m = match_etag (&tag_e_blank, &open->blank);
1350   if (m != MATCH_NO)
1351     return m;
1352   m = match_etag (&tag_e_position, &open->position);
1353   if (m != MATCH_NO)
1354     return m;
1355   m = match_etag (&tag_e_action, &open->action);
1356   if (m != MATCH_NO)
1357     return m;
1358   m = match_etag (&tag_e_delim, &open->delim);
1359   if (m != MATCH_NO)
1360     return m;
1361   m = match_etag (&tag_e_pad, &open->pad);
1362   if (m != MATCH_NO)
1363     return m;
1364   m = match_etag (&tag_e_decimal, &open->decimal);
1365   if (m != MATCH_NO)
1366     return m;
1367   m = match_etag (&tag_e_encoding, &open->encoding);
1368   if (m != MATCH_NO)
1369     return m;
1370   m = match_etag (&tag_e_round, &open->round);
1371   if (m != MATCH_NO)
1372     return m;
1373   m = match_etag (&tag_e_sign, &open->sign);
1374   if (m != MATCH_NO)
1375     return m;
1376   m = match_ltag (&tag_err, &open->err);
1377   if (m != MATCH_NO)
1378     return m;
1379   m = match_etag (&tag_convert, &open->convert);
1380   if (m != MATCH_NO)
1381     return m;
1382
1383   return MATCH_NO;
1384 }
1385
1386
1387 /* Free the gfc_open structure and all the expressions it contains.  */
1388
1389 void
1390 gfc_free_open (gfc_open *open)
1391 {
1392   if (open == NULL)
1393     return;
1394
1395   gfc_free_expr (open->unit);
1396   gfc_free_expr (open->iomsg);
1397   gfc_free_expr (open->iostat);
1398   gfc_free_expr (open->file);
1399   gfc_free_expr (open->status);
1400   gfc_free_expr (open->access);
1401   gfc_free_expr (open->form);
1402   gfc_free_expr (open->recl);
1403   gfc_free_expr (open->blank);
1404   gfc_free_expr (open->position);
1405   gfc_free_expr (open->action);
1406   gfc_free_expr (open->delim);
1407   gfc_free_expr (open->pad);
1408   gfc_free_expr (open->decimal);
1409   gfc_free_expr (open->encoding);
1410   gfc_free_expr (open->round);
1411   gfc_free_expr (open->sign);
1412   gfc_free_expr (open->convert);
1413   gfc_free_expr (open->asynchronous);
1414   gfc_free (open);
1415 }
1416
1417
1418 /* Resolve everything in a gfc_open structure.  */
1419
1420 gfc_try
1421 gfc_resolve_open (gfc_open *open)
1422 {
1423
1424   RESOLVE_TAG (&tag_unit, open->unit);
1425   RESOLVE_TAG (&tag_iomsg, open->iomsg);
1426   RESOLVE_TAG (&tag_iostat, open->iostat);
1427   RESOLVE_TAG (&tag_file, open->file);
1428   RESOLVE_TAG (&tag_status, open->status);
1429   RESOLVE_TAG (&tag_e_access, open->access);
1430   RESOLVE_TAG (&tag_e_form, open->form);
1431   RESOLVE_TAG (&tag_e_recl, open->recl);
1432   RESOLVE_TAG (&tag_e_blank, open->blank);
1433   RESOLVE_TAG (&tag_e_position, open->position);
1434   RESOLVE_TAG (&tag_e_action, open->action);
1435   RESOLVE_TAG (&tag_e_delim, open->delim);
1436   RESOLVE_TAG (&tag_e_pad, open->pad);
1437   RESOLVE_TAG (&tag_e_decimal, open->decimal);
1438   RESOLVE_TAG (&tag_e_encoding, open->encoding);
1439   RESOLVE_TAG (&tag_e_async, open->asynchronous);
1440   RESOLVE_TAG (&tag_e_round, open->round);
1441   RESOLVE_TAG (&tag_e_sign, open->sign);
1442   RESOLVE_TAG (&tag_convert, open->convert);
1443
1444   if (gfc_reference_st_label (open->err, ST_LABEL_TARGET) == FAILURE)
1445     return FAILURE;
1446
1447   return SUCCESS;
1448 }
1449
1450
1451 /* Check if a given value for a SPECIFIER is either in the list of values
1452    allowed in F95 or F2003, issuing an error message and returning a zero
1453    value if it is not allowed.  */
1454
1455 static int
1456 compare_to_allowed_values (const char *specifier, const char *allowed[],
1457                            const char *allowed_f2003[], 
1458                            const char *allowed_gnu[], gfc_char_t *value,
1459                            const char *statement, bool warn)
1460 {
1461   int i;
1462   unsigned int len;
1463
1464   len = gfc_wide_strlen (value);
1465   if (len > 0)
1466   {
1467     for (len--; len > 0; len--)
1468       if (value[len] != ' ')
1469         break;
1470     len++;
1471   }
1472
1473   for (i = 0; allowed[i]; i++)
1474     if (len == strlen (allowed[i])
1475         && gfc_wide_strncasecmp (value, allowed[i], strlen (allowed[i])) == 0)
1476       return 1;
1477
1478   for (i = 0; allowed_f2003 && allowed_f2003[i]; i++)
1479     if (len == strlen (allowed_f2003[i])
1480         && gfc_wide_strncasecmp (value, allowed_f2003[i],
1481                                  strlen (allowed_f2003[i])) == 0)
1482       {
1483         notification n = gfc_notification_std (GFC_STD_F2003);
1484
1485         if (n == WARNING || (warn && n == ERROR))
1486           {
1487             gfc_warning ("Fortran 2003: %s specifier in %s statement at %C "
1488                          "has value '%s'", specifier, statement,
1489                          allowed_f2003[i]);
1490             return 1;
1491           }
1492         else
1493           if (n == ERROR)
1494             {
1495               gfc_notify_std (GFC_STD_F2003, "Fortran 2003: %s specifier in "
1496                               "%s statement at %C has value '%s'", specifier,
1497                               statement, allowed_f2003[i]);
1498               return 0;
1499             }
1500
1501         /* n == SILENT */
1502         return 1;
1503       }
1504
1505   for (i = 0; allowed_gnu && allowed_gnu[i]; i++)
1506     if (len == strlen (allowed_gnu[i])
1507         && gfc_wide_strncasecmp (value, allowed_gnu[i],
1508                                  strlen (allowed_gnu[i])) == 0)
1509       {
1510         notification n = gfc_notification_std (GFC_STD_GNU);
1511
1512         if (n == WARNING || (warn && n == ERROR))
1513           {
1514             gfc_warning ("Extension: %s specifier in %s statement at %C "
1515                          "has value '%s'", specifier, statement,
1516                          allowed_gnu[i]);
1517             return 1;
1518           }
1519         else
1520           if (n == ERROR)
1521             {
1522               gfc_notify_std (GFC_STD_GNU, "Extension: %s specifier in "
1523                               "%s statement at %C has value '%s'", specifier,
1524                               statement, allowed_gnu[i]);
1525               return 0;
1526             }
1527
1528         /* n == SILENT */
1529         return 1;
1530       }
1531
1532   if (warn)
1533     {
1534       char *s = gfc_widechar_to_char (value, -1);
1535       gfc_warning ("%s specifier in %s statement at %C has invalid value '%s'",
1536                    specifier, statement, s);
1537       gfc_free (s);
1538       return 1;
1539     }
1540   else
1541     {
1542       char *s = gfc_widechar_to_char (value, -1);
1543       gfc_error ("%s specifier in %s statement at %C has invalid value '%s'",
1544                  specifier, statement, s);
1545       gfc_free (s);
1546       return 0;
1547     }
1548 }
1549
1550
1551 /* Match an OPEN statement.  */
1552
1553 match
1554 gfc_match_open (void)
1555 {
1556   gfc_open *open;
1557   match m;
1558   bool warn;
1559
1560   m = gfc_match_char ('(');
1561   if (m == MATCH_NO)
1562     return m;
1563
1564   open = XCNEW (gfc_open);
1565
1566   m = match_open_element (open);
1567
1568   if (m == MATCH_ERROR)
1569     goto cleanup;
1570   if (m == MATCH_NO)
1571     {
1572       m = gfc_match_expr (&open->unit);
1573       if (m == MATCH_NO)
1574         goto syntax;
1575       if (m == MATCH_ERROR)
1576         goto cleanup;
1577     }
1578
1579   for (;;)
1580     {
1581       if (gfc_match_char (')') == MATCH_YES)
1582         break;
1583       if (gfc_match_char (',') != MATCH_YES)
1584         goto syntax;
1585
1586       m = match_open_element (open);
1587       if (m == MATCH_ERROR)
1588         goto cleanup;
1589       if (m == MATCH_NO)
1590         goto syntax;
1591     }
1592
1593   if (gfc_match_eos () == MATCH_NO)
1594     goto syntax;
1595
1596   if (gfc_pure (NULL))
1597     {
1598       gfc_error ("OPEN statement not allowed in PURE procedure at %C");
1599       goto cleanup;
1600     }
1601
1602   warn = (open->err || open->iostat) ? true : false;
1603   /* Checks on the ACCESS specifier.  */
1604   if (open->access && open->access->expr_type == EXPR_CONSTANT)
1605     {
1606       static const char *access_f95[] = { "SEQUENTIAL", "DIRECT", NULL };
1607       static const char *access_f2003[] = { "STREAM", NULL };
1608       static const char *access_gnu[] = { "APPEND", NULL };
1609
1610       if (!compare_to_allowed_values ("ACCESS", access_f95, access_f2003,
1611                                       access_gnu,
1612                                       open->access->value.character.string,
1613                                       "OPEN", warn))
1614         goto cleanup;
1615     }
1616
1617   /* Checks on the ACTION specifier.  */
1618   if (open->action && open->action->expr_type == EXPR_CONSTANT)
1619     {
1620       static const char *action[] = { "READ", "WRITE", "READWRITE", NULL };
1621
1622       if (!compare_to_allowed_values ("ACTION", action, NULL, NULL,
1623                                       open->action->value.character.string,
1624                                       "OPEN", warn))
1625         goto cleanup;
1626     }
1627
1628   /* Checks on the ASYNCHRONOUS specifier.  */
1629   if (open->asynchronous)
1630     {
1631       if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: ASYNCHRONOUS= at %C "
1632           "not allowed in Fortran 95") == FAILURE)
1633         goto cleanup;
1634
1635       if (open->asynchronous->expr_type == EXPR_CONSTANT)
1636         {
1637           static const char * asynchronous[] = { "YES", "NO", NULL };
1638
1639           if (!compare_to_allowed_values ("ASYNCHRONOUS", asynchronous,
1640                         NULL, NULL, open->asynchronous->value.character.string,
1641                         "OPEN", warn))
1642             goto cleanup;
1643         }
1644     }
1645
1646   /* Checks on the BLANK specifier.  */
1647   if (open->blank)
1648     {
1649       if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: BLANK= at %C "
1650           "not allowed in Fortran 95") == FAILURE)
1651         goto cleanup;
1652
1653       if (open->blank->expr_type == EXPR_CONSTANT)
1654         {
1655           static const char *blank[] = { "ZERO", "NULL", NULL };
1656
1657           if (!compare_to_allowed_values ("BLANK", blank, NULL, NULL,
1658                                           open->blank->value.character.string,
1659                                           "OPEN", warn))
1660             goto cleanup;
1661         }
1662     }
1663
1664   /* Checks on the DECIMAL specifier.  */
1665   if (open->decimal)
1666     {
1667       if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: DECIMAL= at %C "
1668           "not allowed in Fortran 95") == FAILURE)
1669         goto cleanup;
1670
1671       if (open->decimal->expr_type == EXPR_CONSTANT)
1672         {
1673           static const char * decimal[] = { "COMMA", "POINT", NULL };
1674
1675           if (!compare_to_allowed_values ("DECIMAL", decimal, NULL, NULL,
1676                                           open->decimal->value.character.string,
1677                                           "OPEN", warn))
1678             goto cleanup;
1679         }
1680     }
1681
1682   /* Checks on the DELIM specifier.  */
1683   if (open->delim)
1684     {
1685       if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: DELIM= at %C "
1686           "not allowed in Fortran 95") == FAILURE)
1687         goto cleanup;
1688
1689       if (open->delim->expr_type == EXPR_CONSTANT)
1690         {
1691           static const char *delim[] = { "APOSTROPHE", "QUOTE", "NONE", NULL };
1692
1693           if (!compare_to_allowed_values ("DELIM", delim, NULL, NULL,
1694                                           open->delim->value.character.string,
1695                                           "OPEN", warn))
1696           goto cleanup;
1697         }
1698     }
1699
1700   /* Checks on the ENCODING specifier.  */
1701   if (open->encoding)
1702     {
1703       if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: ENCODING= at %C "
1704           "not allowed in Fortran 95") == FAILURE)
1705         goto cleanup;
1706     
1707       if (open->encoding->expr_type == EXPR_CONSTANT)
1708         {
1709           /* TODO: Implement UTF-8 here.  */
1710           static const char * encoding[] = { "DEFAULT", NULL };
1711
1712           if (!compare_to_allowed_values ("ENCODING", encoding, NULL, NULL,
1713                                           open->encoding->value.character.string,
1714                                           "OPEN", warn))
1715           goto cleanup;
1716         }
1717     }
1718
1719   /* Checks on the FORM specifier.  */
1720   if (open->form && open->form->expr_type == EXPR_CONSTANT)
1721     {
1722       static const char *form[] = { "FORMATTED", "UNFORMATTED", NULL };
1723
1724       if (!compare_to_allowed_values ("FORM", form, NULL, NULL,
1725                                       open->form->value.character.string,
1726                                       "OPEN", warn))
1727         goto cleanup;
1728     }
1729
1730   /* Checks on the PAD specifier.  */
1731   if (open->pad && open->pad->expr_type == EXPR_CONSTANT)
1732     {
1733       static const char *pad[] = { "YES", "NO", NULL };
1734
1735       if (!compare_to_allowed_values ("PAD", pad, NULL, NULL,
1736                                       open->pad->value.character.string,
1737                                       "OPEN", warn))
1738         goto cleanup;
1739     }
1740
1741   /* Checks on the POSITION specifier.  */
1742   if (open->position && open->position->expr_type == EXPR_CONSTANT)
1743     {
1744       static const char *position[] = { "ASIS", "REWIND", "APPEND", NULL };
1745
1746       if (!compare_to_allowed_values ("POSITION", position, NULL, NULL,
1747                                       open->position->value.character.string,
1748                                       "OPEN", warn))
1749         goto cleanup;
1750     }
1751
1752   /* Checks on the ROUND specifier.  */
1753   if (open->round)
1754     {
1755       /* When implemented, change the following to use gfc_notify_std F2003.  */
1756       gfc_error ("Fortran F2003: ROUND= specifier at %C not implemented");
1757       goto cleanup;
1758
1759       if (open->round->expr_type == EXPR_CONSTANT)
1760         {
1761           static const char * round[] = { "UP", "DOWN", "ZERO", "NEAREST",
1762                                           "COMPATIBLE", "PROCESSOR_DEFINED",
1763                                            NULL };
1764
1765           if (!compare_to_allowed_values ("ROUND", round, NULL, NULL,
1766                                           open->round->value.character.string,
1767                                           "OPEN", warn))
1768           goto cleanup;
1769         }
1770     }
1771
1772   /* Checks on the SIGN specifier.  */
1773   if (open->sign) 
1774     {
1775       if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: SIGN= at %C "
1776           "not allowed in Fortran 95") == FAILURE)
1777         goto cleanup;
1778
1779       if (open->sign->expr_type == EXPR_CONSTANT)
1780         {
1781           static const char * sign[] = { "PLUS", "SUPPRESS", "PROCESSOR_DEFINED",
1782                                           NULL };
1783
1784           if (!compare_to_allowed_values ("SIGN", sign, NULL, NULL,
1785                                           open->sign->value.character.string,
1786                                           "OPEN", warn))
1787           goto cleanup;
1788         }
1789     }
1790
1791 #define warn_or_error(...) \
1792 { \
1793   if (warn) \
1794     gfc_warning (__VA_ARGS__); \
1795   else \
1796     { \
1797       gfc_error (__VA_ARGS__); \
1798       goto cleanup; \
1799     } \
1800 }
1801
1802   /* Checks on the RECL specifier.  */
1803   if (open->recl && open->recl->expr_type == EXPR_CONSTANT
1804       && open->recl->ts.type == BT_INTEGER
1805       && mpz_sgn (open->recl->value.integer) != 1)
1806     {
1807       warn_or_error ("RECL in OPEN statement at %C must be positive");
1808     }
1809
1810   /* Checks on the STATUS specifier.  */
1811   if (open->status && open->status->expr_type == EXPR_CONSTANT)
1812     {
1813       static const char *status[] = { "OLD", "NEW", "SCRATCH",
1814         "REPLACE", "UNKNOWN", NULL };
1815
1816       if (!compare_to_allowed_values ("STATUS", status, NULL, NULL,
1817                                       open->status->value.character.string,
1818                                       "OPEN", warn))
1819         goto cleanup;
1820
1821       /* F2003, 9.4.5: If the STATUS= specifier has the value NEW or REPLACE,
1822          the FILE= specifier shall appear.  */
1823       if (open->file == NULL
1824           && (gfc_wide_strncasecmp (open->status->value.character.string,
1825                                     "replace", 7) == 0
1826               || gfc_wide_strncasecmp (open->status->value.character.string,
1827                                        "new", 3) == 0))
1828         {
1829           char *s = gfc_widechar_to_char (open->status->value.character.string,
1830                                           -1);
1831           warn_or_error ("The STATUS specified in OPEN statement at %C is "
1832                          "'%s' and no FILE specifier is present", s);
1833           gfc_free (s);
1834         }
1835
1836       /* F2003, 9.4.5: If the STATUS= specifier has the value SCRATCH,
1837          the FILE= specifier shall not appear.  */
1838       if (gfc_wide_strncasecmp (open->status->value.character.string,
1839                                 "scratch", 7) == 0 && open->file)
1840         {
1841           warn_or_error ("The STATUS specified in OPEN statement at %C "
1842                          "cannot have the value SCRATCH if a FILE specifier "
1843                          "is present");
1844         }
1845     }
1846
1847   /* Things that are not allowed for unformatted I/O.  */
1848   if (open->form && open->form->expr_type == EXPR_CONSTANT
1849       && (open->delim || open->decimal || open->encoding || open->round
1850           || open->sign || open->pad || open->blank)
1851       && gfc_wide_strncasecmp (open->form->value.character.string,
1852                                "unformatted", 11) == 0)
1853     {
1854       const char *spec = (open->delim ? "DELIM "
1855                                       : (open->pad ? "PAD " : open->blank
1856                                                             ? "BLANK " : ""));
1857
1858       warn_or_error ("%s specifier at %C not allowed in OPEN statement for "
1859                      "unformatted I/O", spec);
1860     }
1861
1862   if (open->recl && open->access && open->access->expr_type == EXPR_CONSTANT
1863       && gfc_wide_strncasecmp (open->access->value.character.string,
1864                                "stream", 6) == 0)
1865     {
1866       warn_or_error ("RECL specifier not allowed in OPEN statement at %C for "
1867                      "stream I/O");
1868     }
1869
1870   if (open->position
1871       && open->access && open->access->expr_type == EXPR_CONSTANT
1872       && !(gfc_wide_strncasecmp (open->access->value.character.string,
1873                                  "sequential", 10) == 0
1874            || gfc_wide_strncasecmp (open->access->value.character.string,
1875                                     "stream", 6) == 0
1876            || gfc_wide_strncasecmp (open->access->value.character.string,
1877                                     "append", 6) == 0))
1878     {
1879       warn_or_error ("POSITION specifier in OPEN statement at %C only allowed "
1880                      "for stream or sequential ACCESS");
1881     }
1882
1883 #undef warn_or_error
1884
1885   new_st.op = EXEC_OPEN;
1886   new_st.ext.open = open;
1887   return MATCH_YES;
1888
1889 syntax:
1890   gfc_syntax_error (ST_OPEN);
1891
1892 cleanup:
1893   gfc_free_open (open);
1894   return MATCH_ERROR;
1895 }
1896
1897
1898 /* Free a gfc_close structure an all its expressions.  */
1899
1900 void
1901 gfc_free_close (gfc_close *close)
1902 {
1903   if (close == NULL)
1904     return;
1905
1906   gfc_free_expr (close->unit);
1907   gfc_free_expr (close->iomsg);
1908   gfc_free_expr (close->iostat);
1909   gfc_free_expr (close->status);
1910   gfc_free (close);
1911 }
1912
1913
1914 /* Match elements of a CLOSE statement.  */
1915
1916 static match
1917 match_close_element (gfc_close *close)
1918 {
1919   match m;
1920
1921   m = match_etag (&tag_unit, &close->unit);
1922   if (m != MATCH_NO)
1923     return m;
1924   m = match_etag (&tag_status, &close->status);
1925   if (m != MATCH_NO)
1926     return m;
1927   m = match_out_tag (&tag_iomsg, &close->iomsg);
1928   if (m != MATCH_NO)
1929     return m;
1930   m = match_out_tag (&tag_iostat, &close->iostat);
1931   if (m != MATCH_NO)
1932     return m;
1933   m = match_ltag (&tag_err, &close->err);
1934   if (m != MATCH_NO)
1935     return m;
1936
1937   return MATCH_NO;
1938 }
1939
1940
1941 /* Match a CLOSE statement.  */
1942
1943 match
1944 gfc_match_close (void)
1945 {
1946   gfc_close *close;
1947   match m;
1948   bool warn;
1949
1950   m = gfc_match_char ('(');
1951   if (m == MATCH_NO)
1952     return m;
1953
1954   close = XCNEW (gfc_close);
1955
1956   m = match_close_element (close);
1957
1958   if (m == MATCH_ERROR)
1959     goto cleanup;
1960   if (m == MATCH_NO)
1961     {
1962       m = gfc_match_expr (&close->unit);
1963       if (m == MATCH_NO)
1964         goto syntax;
1965       if (m == MATCH_ERROR)
1966         goto cleanup;
1967     }
1968
1969   for (;;)
1970     {
1971       if (gfc_match_char (')') == MATCH_YES)
1972         break;
1973       if (gfc_match_char (',') != MATCH_YES)
1974         goto syntax;
1975
1976       m = match_close_element (close);
1977       if (m == MATCH_ERROR)
1978         goto cleanup;
1979       if (m == MATCH_NO)
1980         goto syntax;
1981     }
1982
1983   if (gfc_match_eos () == MATCH_NO)
1984     goto syntax;
1985
1986   if (gfc_pure (NULL))
1987     {
1988       gfc_error ("CLOSE statement not allowed in PURE procedure at %C");
1989       goto cleanup;
1990     }
1991
1992   warn = (close->iostat || close->err) ? true : false;
1993
1994   /* Checks on the STATUS specifier.  */
1995   if (close->status && close->status->expr_type == EXPR_CONSTANT)
1996     {
1997       static const char *status[] = { "KEEP", "DELETE", NULL };
1998
1999       if (!compare_to_allowed_values ("STATUS", status, NULL, NULL,
2000                                       close->status->value.character.string,
2001                                       "CLOSE", warn))
2002         goto cleanup;
2003     }
2004
2005   new_st.op = EXEC_CLOSE;
2006   new_st.ext.close = close;
2007   return MATCH_YES;
2008
2009 syntax:
2010   gfc_syntax_error (ST_CLOSE);
2011
2012 cleanup:
2013   gfc_free_close (close);
2014   return MATCH_ERROR;
2015 }
2016
2017
2018 /* Resolve everything in a gfc_close structure.  */
2019
2020 gfc_try
2021 gfc_resolve_close (gfc_close *close)
2022 {
2023   RESOLVE_TAG (&tag_unit, close->unit);
2024   RESOLVE_TAG (&tag_iomsg, close->iomsg);
2025   RESOLVE_TAG (&tag_iostat, close->iostat);
2026   RESOLVE_TAG (&tag_status, close->status);
2027
2028   if (gfc_reference_st_label (close->err, ST_LABEL_TARGET) == FAILURE)
2029     return FAILURE;
2030
2031   return SUCCESS;
2032 }
2033
2034
2035 /* Free a gfc_filepos structure.  */
2036
2037 void
2038 gfc_free_filepos (gfc_filepos *fp)
2039 {
2040   gfc_free_expr (fp->unit);
2041   gfc_free_expr (fp->iomsg);
2042   gfc_free_expr (fp->iostat);
2043   gfc_free (fp);
2044 }
2045
2046
2047 /* Match elements of a REWIND, BACKSPACE, ENDFILE, or FLUSH statement.  */
2048
2049 static match
2050 match_file_element (gfc_filepos *fp)
2051 {
2052   match m;
2053
2054   m = match_etag (&tag_unit, &fp->unit);
2055   if (m != MATCH_NO)
2056     return m;
2057   m = match_out_tag (&tag_iomsg, &fp->iomsg);
2058   if (m != MATCH_NO)
2059     return m;
2060   m = match_out_tag (&tag_iostat, &fp->iostat);
2061   if (m != MATCH_NO)
2062     return m;
2063   m = match_ltag (&tag_err, &fp->err);
2064   if (m != MATCH_NO)
2065     return m;
2066
2067   return MATCH_NO;
2068 }
2069
2070
2071 /* Match the second half of the file-positioning statements, REWIND,
2072    BACKSPACE, ENDFILE, or the FLUSH statement.  */
2073
2074 static match
2075 match_filepos (gfc_statement st, gfc_exec_op op)
2076 {
2077   gfc_filepos *fp;
2078   match m;
2079
2080   fp = XCNEW (gfc_filepos);
2081
2082   if (gfc_match_char ('(') == MATCH_NO)
2083     {
2084       m = gfc_match_expr (&fp->unit);
2085       if (m == MATCH_ERROR)
2086         goto cleanup;
2087       if (m == MATCH_NO)
2088         goto syntax;
2089
2090       goto done;
2091     }
2092
2093   m = match_file_element (fp);
2094   if (m == MATCH_ERROR)
2095     goto done;
2096   if (m == MATCH_NO)
2097     {
2098       m = gfc_match_expr (&fp->unit);
2099       if (m == MATCH_ERROR)
2100         goto done;
2101       if (m == MATCH_NO)
2102         goto syntax;
2103     }
2104
2105   for (;;)
2106     {
2107       if (gfc_match_char (')') == MATCH_YES)
2108         break;
2109       if (gfc_match_char (',') != MATCH_YES)
2110         goto syntax;
2111
2112       m = match_file_element (fp);
2113       if (m == MATCH_ERROR)
2114         goto cleanup;
2115       if (m == MATCH_NO)
2116         goto syntax;
2117     }
2118
2119 done:
2120   if (gfc_match_eos () != MATCH_YES)
2121     goto syntax;
2122
2123   if (gfc_pure (NULL))
2124     {
2125       gfc_error ("%s statement not allowed in PURE procedure at %C",
2126                  gfc_ascii_statement (st));
2127
2128       goto cleanup;
2129     }
2130
2131   new_st.op = op;
2132   new_st.ext.filepos = fp;
2133   return MATCH_YES;
2134
2135 syntax:
2136   gfc_syntax_error (st);
2137
2138 cleanup:
2139   gfc_free_filepos (fp);
2140   return MATCH_ERROR;
2141 }
2142
2143
2144 gfc_try
2145 gfc_resolve_filepos (gfc_filepos *fp)
2146 {
2147   RESOLVE_TAG (&tag_unit, fp->unit);
2148   RESOLVE_TAG (&tag_iostat, fp->iostat);
2149   RESOLVE_TAG (&tag_iomsg, fp->iomsg);
2150   if (gfc_reference_st_label (fp->err, ST_LABEL_TARGET) == FAILURE)
2151     return FAILURE;
2152
2153   return SUCCESS;
2154 }
2155
2156
2157 /* Match the file positioning statements: ENDFILE, BACKSPACE, REWIND,
2158    and the FLUSH statement.  */
2159
2160 match
2161 gfc_match_endfile (void)
2162 {
2163   return match_filepos (ST_END_FILE, EXEC_ENDFILE);
2164 }
2165
2166 match
2167 gfc_match_backspace (void)
2168 {
2169   return match_filepos (ST_BACKSPACE, EXEC_BACKSPACE);
2170 }
2171
2172 match
2173 gfc_match_rewind (void)
2174 {
2175   return match_filepos (ST_REWIND, EXEC_REWIND);
2176 }
2177
2178 match
2179 gfc_match_flush (void)
2180 {
2181   if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: FLUSH statement at %C")
2182       == FAILURE)
2183     return MATCH_ERROR;
2184
2185   return match_filepos (ST_FLUSH, EXEC_FLUSH);
2186 }
2187
2188 /******************** Data Transfer Statements *********************/
2189
2190 /* Return a default unit number.  */
2191
2192 static gfc_expr *
2193 default_unit (io_kind k)
2194 {
2195   int unit;
2196
2197   if (k == M_READ)
2198     unit = 5;
2199   else
2200     unit = 6;
2201
2202   return gfc_int_expr (unit);
2203 }
2204
2205
2206 /* Match a unit specification for a data transfer statement.  */
2207
2208 static match
2209 match_dt_unit (io_kind k, gfc_dt *dt)
2210 {
2211   gfc_expr *e;
2212
2213   if (gfc_match_char ('*') == MATCH_YES)
2214     {
2215       if (dt->io_unit != NULL)
2216         goto conflict;
2217
2218       dt->io_unit = default_unit (k);
2219       return MATCH_YES;
2220     }
2221
2222   if (gfc_match_expr (&e) == MATCH_YES)
2223     {
2224       if (dt->io_unit != NULL)
2225         {
2226           gfc_free_expr (e);
2227           goto conflict;
2228         }
2229
2230       dt->io_unit = e;
2231       return MATCH_YES;
2232     }
2233
2234   return MATCH_NO;
2235
2236 conflict:
2237   gfc_error ("Duplicate UNIT specification at %C");
2238   return MATCH_ERROR;
2239 }
2240
2241
2242 /* Match a format specification.  */
2243
2244 static match
2245 match_dt_format (gfc_dt *dt)
2246 {
2247   locus where;
2248   gfc_expr *e;
2249   gfc_st_label *label;
2250   match m;
2251
2252   where = gfc_current_locus;
2253
2254   if (gfc_match_char ('*') == MATCH_YES)
2255     {
2256       if (dt->format_expr != NULL || dt->format_label != NULL)
2257         goto conflict;
2258
2259       dt->format_label = &format_asterisk;
2260       return MATCH_YES;
2261     }
2262
2263   if ((m = gfc_match_st_label (&label)) == MATCH_YES)
2264     {
2265       if (dt->format_expr != NULL || dt->format_label != NULL)
2266         {
2267           gfc_free_st_label (label);
2268           goto conflict;
2269         }
2270
2271       if (gfc_reference_st_label (label, ST_LABEL_FORMAT) == FAILURE)
2272         return MATCH_ERROR;
2273
2274       dt->format_label = label;
2275       return MATCH_YES;
2276     }
2277   else if (m == MATCH_ERROR)
2278     /* The label was zero or too large.  Emit the correct diagnosis.  */
2279     return MATCH_ERROR;
2280
2281   if (gfc_match_expr (&e) == MATCH_YES)
2282     {
2283       if (dt->format_expr != NULL || dt->format_label != NULL)
2284         {
2285           gfc_free_expr (e);
2286           goto conflict;
2287         }
2288       dt->format_expr = e;
2289       return MATCH_YES;
2290     }
2291
2292   gfc_current_locus = where;    /* The only case where we have to restore */
2293
2294   return MATCH_NO;
2295
2296 conflict:
2297   gfc_error ("Duplicate format specification at %C");
2298   return MATCH_ERROR;
2299 }
2300
2301
2302 /* Traverse a namelist that is part of a READ statement to make sure
2303    that none of the variables in the namelist are INTENT(IN).  Returns
2304    nonzero if we find such a variable.  */
2305
2306 static int
2307 check_namelist (gfc_symbol *sym)
2308 {
2309   gfc_namelist *p;
2310
2311   for (p = sym->namelist; p; p = p->next)
2312     if (p->sym->attr.intent == INTENT_IN)
2313       {
2314         gfc_error ("Symbol '%s' in namelist '%s' is INTENT(IN) at %C",
2315                    p->sym->name, sym->name);
2316         return 1;
2317       }
2318
2319   return 0;
2320 }
2321
2322
2323 /* Match a single data transfer element.  */
2324
2325 static match
2326 match_dt_element (io_kind k, gfc_dt *dt)
2327 {
2328   char name[GFC_MAX_SYMBOL_LEN + 1];
2329   gfc_symbol *sym;
2330   match m;
2331
2332   if (gfc_match (" unit =") == MATCH_YES)
2333     {
2334       m = match_dt_unit (k, dt);
2335       if (m != MATCH_NO)
2336         return m;
2337     }
2338
2339   if (gfc_match (" fmt =") == MATCH_YES)
2340     {
2341       m = match_dt_format (dt);
2342       if (m != MATCH_NO)
2343         return m;
2344     }
2345
2346   if (gfc_match (" nml = %n", name) == MATCH_YES)
2347     {
2348       if (dt->namelist != NULL)
2349         {
2350           gfc_error ("Duplicate NML specification at %C");
2351           return MATCH_ERROR;
2352         }
2353
2354       if (gfc_find_symbol (name, NULL, 1, &sym))
2355         return MATCH_ERROR;
2356
2357       if (sym == NULL || sym->attr.flavor != FL_NAMELIST)
2358         {
2359           gfc_error ("Symbol '%s' at %C must be a NAMELIST group name",
2360                      sym != NULL ? sym->name : name);
2361           return MATCH_ERROR;
2362         }
2363
2364       dt->namelist = sym;
2365       if (k == M_READ && check_namelist (sym))
2366         return MATCH_ERROR;
2367
2368       return MATCH_YES;
2369     }
2370
2371   m = match_etag (&tag_e_async, &dt->asynchronous);
2372   if (m != MATCH_NO)
2373     return m;
2374   m = match_etag (&tag_e_blank, &dt->blank);
2375   if (m != MATCH_NO)
2376     return m;
2377   m = match_etag (&tag_e_delim, &dt->delim);
2378   if (m != MATCH_NO)
2379     return m;
2380   m = match_etag (&tag_e_pad, &dt->pad);
2381   if (m != MATCH_NO)
2382     return m;
2383   m = match_etag (&tag_e_sign, &dt->sign);
2384   if (m != MATCH_NO)
2385     return m;
2386   m = match_etag (&tag_e_round, &dt->round);
2387   if (m != MATCH_NO)
2388     return m;
2389   m = match_out_tag (&tag_id, &dt->id);
2390   if (m != MATCH_NO)
2391     return m;
2392   m = match_etag (&tag_e_decimal, &dt->decimal);
2393   if (m != MATCH_NO)
2394     return m;
2395   m = match_etag (&tag_rec, &dt->rec);
2396   if (m != MATCH_NO)
2397     return m;
2398   m = match_etag (&tag_spos, &dt->rec);
2399   if (m != MATCH_NO)
2400     return m;
2401   m = match_out_tag (&tag_iomsg, &dt->iomsg);
2402   if (m != MATCH_NO)
2403     return m;
2404   m = match_out_tag (&tag_iostat, &dt->iostat);
2405   if (m != MATCH_NO)
2406     return m;
2407   m = match_ltag (&tag_err, &dt->err);
2408   if (m == MATCH_YES)
2409     dt->err_where = gfc_current_locus;
2410   if (m != MATCH_NO)
2411     return m;
2412   m = match_etag (&tag_advance, &dt->advance);
2413   if (m != MATCH_NO)
2414     return m;
2415   m = match_out_tag (&tag_size, &dt->size);
2416   if (m != MATCH_NO)
2417     return m;
2418
2419   m = match_ltag (&tag_end, &dt->end);
2420   if (m == MATCH_YES)
2421     {
2422       if (k == M_WRITE)
2423        {
2424          gfc_error ("END tag at %C not allowed in output statement");
2425          return MATCH_ERROR;
2426        }
2427       dt->end_where = gfc_current_locus;
2428     }
2429   if (m != MATCH_NO)
2430     return m;
2431
2432   m = match_ltag (&tag_eor, &dt->eor);
2433   if (m == MATCH_YES)
2434     dt->eor_where = gfc_current_locus;
2435   if (m != MATCH_NO)
2436     return m;
2437
2438   return MATCH_NO;
2439 }
2440
2441
2442 /* Free a data transfer structure and everything below it.  */
2443
2444 void
2445 gfc_free_dt (gfc_dt *dt)
2446 {
2447   if (dt == NULL)
2448     return;
2449
2450   gfc_free_expr (dt->io_unit);
2451   gfc_free_expr (dt->format_expr);
2452   gfc_free_expr (dt->rec);
2453   gfc_free_expr (dt->advance);
2454   gfc_free_expr (dt->iomsg);
2455   gfc_free_expr (dt->iostat);
2456   gfc_free_expr (dt->size);
2457   gfc_free_expr (dt->pad);
2458   gfc_free_expr (dt->delim);
2459   gfc_free_expr (dt->sign);
2460   gfc_free_expr (dt->round);
2461   gfc_free_expr (dt->blank);
2462   gfc_free_expr (dt->decimal);
2463   gfc_free_expr (dt->extra_comma);
2464   gfc_free (dt);
2465 }
2466
2467
2468 /* Resolve everything in a gfc_dt structure.  */
2469
2470 gfc_try
2471 gfc_resolve_dt (gfc_dt *dt)
2472 {
2473   gfc_expr *e;
2474
2475   RESOLVE_TAG (&tag_format, dt->format_expr);
2476   RESOLVE_TAG (&tag_rec, dt->rec);
2477   RESOLVE_TAG (&tag_spos, dt->rec);
2478   RESOLVE_TAG (&tag_advance, dt->advance);
2479   RESOLVE_TAG (&tag_iomsg, dt->iomsg);
2480   RESOLVE_TAG (&tag_iostat, dt->iostat);
2481   RESOLVE_TAG (&tag_size, dt->size);
2482   RESOLVE_TAG (&tag_e_pad, dt->pad);
2483   RESOLVE_TAG (&tag_e_delim, dt->delim);
2484   RESOLVE_TAG (&tag_e_sign, dt->sign);
2485   RESOLVE_TAG (&tag_e_round, dt->round);
2486   RESOLVE_TAG (&tag_e_blank, dt->blank);
2487   RESOLVE_TAG (&tag_e_decimal, dt->decimal);
2488
2489   e = dt->io_unit;
2490   if (gfc_resolve_expr (e) == SUCCESS
2491       && (e->ts.type != BT_INTEGER
2492           && (e->ts.type != BT_CHARACTER || e->expr_type != EXPR_VARIABLE)))
2493     {
2494       /* If there is no extra comma signifying the "format" form of the IO
2495          statement, then this must be an error.  */
2496       if (!dt->extra_comma)
2497         {
2498           gfc_error ("UNIT specification at %L must be an INTEGER expression "
2499                      "or a CHARACTER variable", &e->where);
2500           return FAILURE;
2501         }
2502       else
2503         {
2504           /* At this point, we have an extra comma.  If io_unit has arrived as
2505              type character, we assume its really the "format" form of the I/O
2506              statement.  We set the io_unit to the default unit and format to
2507              the character expression.  See F95 Standard section 9.4.  */
2508           io_kind k;
2509           k = dt->extra_comma->value.iokind;
2510           if (e->ts.type == BT_CHARACTER && (k == M_READ || k == M_PRINT))
2511             {
2512               dt->format_expr = dt->io_unit;
2513               dt->io_unit = default_unit (k);
2514
2515               /* Free this pointer now so that a warning/error is not triggered
2516                  below for the "Extension".  */
2517               gfc_free_expr (dt->extra_comma);
2518               dt->extra_comma = NULL;
2519             }
2520
2521           if (k == M_WRITE)
2522             {
2523               gfc_error ("Invalid form of WRITE statement at %L, UNIT required",
2524                          &dt->extra_comma->where);
2525               return FAILURE;
2526             }
2527         }
2528     }
2529
2530   if (e->ts.type == BT_CHARACTER)
2531     {
2532       if (gfc_has_vector_index (e))
2533         {
2534           gfc_error ("Internal unit with vector subscript at %L", &e->where);
2535           return FAILURE;
2536         }
2537     }
2538
2539   if (e->rank && e->ts.type != BT_CHARACTER)
2540     {
2541       gfc_error ("External IO UNIT cannot be an array at %L", &e->where);
2542       return FAILURE;
2543     }
2544
2545   if (dt->extra_comma
2546       && gfc_notify_std (GFC_STD_GNU, "Extension: Comma before i/o "
2547                          "item list at %L", &dt->extra_comma->where) == FAILURE)
2548     return FAILURE;
2549
2550   if (dt->err)
2551     {
2552       if (gfc_reference_st_label (dt->err, ST_LABEL_TARGET) == FAILURE)
2553         return FAILURE;
2554       if (dt->err->defined == ST_LABEL_UNKNOWN)
2555         {
2556           gfc_error ("ERR tag label %d at %L not defined",
2557                       dt->err->value, &dt->err_where);
2558           return FAILURE;
2559         }
2560     }
2561
2562   if (dt->end)
2563     {
2564       if (gfc_reference_st_label (dt->end, ST_LABEL_TARGET) == FAILURE)
2565         return FAILURE;
2566       if (dt->end->defined == ST_LABEL_UNKNOWN)
2567         {
2568           gfc_error ("END tag label %d at %L not defined",
2569                       dt->end->value, &dt->end_where);
2570           return FAILURE;
2571         }
2572     }
2573
2574   if (dt->eor)
2575     {
2576       if (gfc_reference_st_label (dt->eor, ST_LABEL_TARGET) == FAILURE)
2577         return FAILURE;
2578       if (dt->eor->defined == ST_LABEL_UNKNOWN)
2579         {
2580           gfc_error ("EOR tag label %d at %L not defined",
2581                       dt->eor->value, &dt->eor_where);
2582           return FAILURE;
2583         }
2584     }
2585
2586   /* Check the format label actually exists.  */
2587   if (dt->format_label && dt->format_label != &format_asterisk
2588       && dt->format_label->defined == ST_LABEL_UNKNOWN)
2589     {
2590       gfc_error ("FORMAT label %d at %L not defined", dt->format_label->value,
2591                  &dt->format_label->where);
2592       return FAILURE;
2593     }
2594   return SUCCESS;
2595 }
2596
2597
2598 /* Given an io_kind, return its name.  */
2599
2600 static const char *
2601 io_kind_name (io_kind k)
2602 {
2603   const char *name;
2604
2605   switch (k)
2606     {
2607     case M_READ:
2608       name = "READ";
2609       break;
2610     case M_WRITE:
2611       name = "WRITE";
2612       break;
2613     case M_PRINT:
2614       name = "PRINT";
2615       break;
2616     case M_INQUIRE:
2617       name = "INQUIRE";
2618       break;
2619     default:
2620       gfc_internal_error ("io_kind_name(): bad I/O-kind");
2621     }
2622
2623   return name;
2624 }
2625
2626
2627 /* Match an IO iteration statement of the form:
2628
2629    ( [<IO element> ,] <IO element>, I = <expr>, <expr> [, <expr> ] )
2630
2631    which is equivalent to a single IO element.  This function is
2632    mutually recursive with match_io_element().  */
2633
2634 static match match_io_element (io_kind, gfc_code **);
2635
2636 static match
2637 match_io_iterator (io_kind k, gfc_code **result)
2638 {
2639   gfc_code *head, *tail, *new_code;
2640   gfc_iterator *iter;
2641   locus old_loc;
2642   match m;
2643   int n;
2644
2645   iter = NULL;
2646   head = NULL;
2647   old_loc = gfc_current_locus;
2648
2649   if (gfc_match_char ('(') != MATCH_YES)
2650     return MATCH_NO;
2651
2652   m = match_io_element (k, &head);
2653   tail = head;
2654
2655   if (m != MATCH_YES || gfc_match_char (',') != MATCH_YES)
2656     {
2657       m = MATCH_NO;
2658       goto cleanup;
2659     }
2660
2661   /* Can't be anything but an IO iterator.  Build a list.  */
2662   iter = gfc_get_iterator ();
2663
2664   for (n = 1;; n++)
2665     {
2666       m = gfc_match_iterator (iter, 0);
2667       if (m == MATCH_ERROR)
2668         goto cleanup;
2669       if (m == MATCH_YES)
2670         {
2671           gfc_check_do_variable (iter->var->symtree);
2672           break;
2673         }
2674
2675       m = match_io_element (k, &new_code);
2676       if (m == MATCH_ERROR)
2677         goto cleanup;
2678       if (m == MATCH_NO)
2679         {
2680           if (n > 2)
2681             goto syntax;
2682           goto cleanup;
2683         }
2684
2685       tail = gfc_append_code (tail, new_code);
2686
2687       if (gfc_match_char (',') != MATCH_YES)
2688         {
2689           if (n > 2)
2690             goto syntax;
2691           m = MATCH_NO;
2692           goto cleanup;
2693         }
2694     }
2695
2696   if (gfc_match_char (')') != MATCH_YES)
2697     goto syntax;
2698
2699   new_code = gfc_get_code ();
2700   new_code->op = EXEC_DO;
2701   new_code->ext.iterator = iter;
2702
2703   new_code->block = gfc_get_code ();
2704   new_code->block->op = EXEC_DO;
2705   new_code->block->next = head;
2706
2707   *result = new_code;
2708   return MATCH_YES;
2709
2710 syntax:
2711   gfc_error ("Syntax error in I/O iterator at %C");
2712   m = MATCH_ERROR;
2713
2714 cleanup:
2715   gfc_free_iterator (iter, 1);
2716   gfc_free_statements (head);
2717   gfc_current_locus = old_loc;
2718   return m;
2719 }
2720
2721
2722 /* Match a single element of an IO list, which is either a single
2723    expression or an IO Iterator.  */
2724
2725 static match
2726 match_io_element (io_kind k, gfc_code **cpp)
2727 {
2728   gfc_expr *expr;
2729   gfc_code *cp;
2730   match m;
2731
2732   expr = NULL;
2733
2734   m = match_io_iterator (k, cpp);
2735   if (m == MATCH_YES)
2736     return MATCH_YES;
2737
2738   if (k == M_READ)
2739     {
2740       m = gfc_match_variable (&expr, 0);
2741       if (m == MATCH_NO)
2742         gfc_error ("Expected variable in READ statement at %C");
2743     }
2744   else
2745     {
2746       m = gfc_match_expr (&expr);
2747       if (m == MATCH_NO)
2748         gfc_error ("Expected expression in %s statement at %C",
2749                    io_kind_name (k));
2750     }
2751
2752   if (m == MATCH_YES)
2753     switch (k)
2754       {
2755       case M_READ:
2756         if (expr->symtree->n.sym->attr.intent == INTENT_IN)
2757           {
2758             gfc_error ("Variable '%s' in input list at %C cannot be "
2759                        "INTENT(IN)", expr->symtree->n.sym->name);
2760             m = MATCH_ERROR;
2761           }
2762
2763         if (gfc_pure (NULL)
2764             && gfc_impure_variable (expr->symtree->n.sym)
2765             && current_dt->io_unit->ts.type == BT_CHARACTER)
2766           {
2767             gfc_error ("Cannot read to variable '%s' in PURE procedure at %C",
2768                        expr->symtree->n.sym->name);
2769             m = MATCH_ERROR;
2770           }
2771
2772         if (gfc_check_do_variable (expr->symtree))
2773           m = MATCH_ERROR;
2774
2775         break;
2776
2777       case M_WRITE:
2778         if (current_dt->io_unit->ts.type == BT_CHARACTER
2779             && gfc_pure (NULL)
2780             && current_dt->io_unit->expr_type == EXPR_VARIABLE
2781             && gfc_impure_variable (current_dt->io_unit->symtree->n.sym))
2782           {
2783             gfc_error ("Cannot write to internal file unit '%s' at %C "
2784                        "inside a PURE procedure",
2785                        current_dt->io_unit->symtree->n.sym->name);
2786             m = MATCH_ERROR;
2787           }
2788
2789         break;
2790
2791       default:
2792         break;
2793       }
2794
2795   if (m != MATCH_YES)
2796     {
2797       gfc_free_expr (expr);
2798       return MATCH_ERROR;
2799     }
2800
2801   cp = gfc_get_code ();
2802   cp->op = EXEC_TRANSFER;
2803   cp->expr = expr;
2804
2805   *cpp = cp;
2806   return MATCH_YES;
2807 }
2808
2809
2810 /* Match an I/O list, building gfc_code structures as we go.  */
2811
2812 static match
2813 match_io_list (io_kind k, gfc_code **head_p)
2814 {
2815   gfc_code *head, *tail, *new_code;
2816   match m;
2817
2818   *head_p = head = tail = NULL;
2819   if (gfc_match_eos () == MATCH_YES)
2820     return MATCH_YES;
2821
2822   for (;;)
2823     {
2824       m = match_io_element (k, &new_code);
2825       if (m == MATCH_ERROR)
2826         goto cleanup;
2827       if (m == MATCH_NO)
2828         goto syntax;
2829
2830       tail = gfc_append_code (tail, new_code);
2831       if (head == NULL)
2832         head = new_code;
2833
2834       if (gfc_match_eos () == MATCH_YES)
2835         break;
2836       if (gfc_match_char (',') != MATCH_YES)
2837         goto syntax;
2838     }
2839
2840   *head_p = head;
2841   return MATCH_YES;
2842
2843 syntax:
2844   gfc_error ("Syntax error in %s statement at %C", io_kind_name (k));
2845
2846 cleanup:
2847   gfc_free_statements (head);
2848   return MATCH_ERROR;
2849 }
2850
2851
2852 /* Attach the data transfer end node.  */
2853
2854 static void
2855 terminate_io (gfc_code *io_code)
2856 {
2857   gfc_code *c;
2858
2859   if (io_code == NULL)
2860     io_code = new_st.block;
2861
2862   c = gfc_get_code ();
2863   c->op = EXEC_DT_END;
2864
2865   /* Point to structure that is already there */
2866   c->ext.dt = new_st.ext.dt;
2867   gfc_append_code (io_code, c);
2868 }
2869
2870
2871 /* Check the constraints for a data transfer statement.  The majority of the
2872    constraints appearing in 9.4 of the standard appear here.  Some are handled
2873    in resolve_tag and others in gfc_resolve_dt.  */
2874
2875 static match
2876 check_io_constraints (io_kind k, gfc_dt *dt, gfc_code *io_code,
2877                       locus *spec_end)
2878 {
2879 #define io_constraint(condition,msg,arg)\
2880 if (condition) \
2881   {\
2882     gfc_error(msg,arg);\
2883     m = MATCH_ERROR;\
2884   }
2885
2886   match m;
2887   gfc_expr *expr;
2888   gfc_symbol *sym = NULL;
2889   bool warn, unformatted;
2890
2891   warn = (dt->err || dt->iostat) ? true : false;
2892   unformatted = dt->format_expr == NULL && dt->format_label == NULL
2893                 && dt->namelist == NULL;
2894
2895   m = MATCH_YES;
2896
2897   expr = dt->io_unit;
2898   if (expr && expr->expr_type == EXPR_VARIABLE
2899       && expr->ts.type == BT_CHARACTER)
2900     {
2901       sym = expr->symtree->n.sym;
2902
2903       io_constraint (k == M_WRITE && sym->attr.intent == INTENT_IN,
2904                      "Internal file at %L must not be INTENT(IN)",
2905                      &expr->where);
2906
2907       io_constraint (gfc_has_vector_index (dt->io_unit),
2908                      "Internal file incompatible with vector subscript at %L",
2909                      &expr->where);
2910
2911       io_constraint (dt->rec != NULL,
2912                      "REC tag at %L is incompatible with internal file",
2913                      &dt->rec->where);
2914
2915       io_constraint (unformatted,
2916                      "Unformatted I/O not allowed with internal unit at %L",
2917                      &dt->io_unit->where);
2918
2919       io_constraint (dt->asynchronous != NULL,
2920                      "ASYNCHRONOUS tag at %L not allowed with internal file",
2921                      &dt->asynchronous->where);
2922
2923       if (dt->namelist != NULL)
2924         {
2925           if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: Internal file "
2926                               "at %L with namelist", &expr->where)
2927               == FAILURE)
2928             m = MATCH_ERROR;
2929         }
2930
2931       io_constraint (dt->advance != NULL,
2932                      "ADVANCE tag at %L is incompatible with internal file",
2933                      &dt->advance->where);
2934     }
2935
2936   if (expr && expr->ts.type != BT_CHARACTER)
2937     {
2938
2939       io_constraint (gfc_pure (NULL) && (k == M_READ || k == M_WRITE),
2940                      "IO UNIT in %s statement at %C must be "
2941                      "an internal file in a PURE procedure",
2942                      io_kind_name (k));
2943     }
2944
2945   if (k != M_READ)
2946     {
2947       io_constraint (dt->end, "END tag not allowed with output at %L",
2948                      &dt->end_where);
2949
2950       io_constraint (dt->eor, "EOR tag not allowed with output at %L",
2951                      &dt->eor_where);
2952
2953       io_constraint (dt->blank, "BLANK= specifier not allowed with output at %L",
2954                      &dt->blank->where);
2955
2956       io_constraint (dt->pad, "PAD= specifier not allowed with output at %L",
2957                      &dt->pad->where);
2958
2959       io_constraint (dt->size, "SIZE= specifier not allowed with output at %L",
2960                      &dt->size->where);
2961     }
2962   else
2963     {
2964       io_constraint (dt->size && dt->advance == NULL,
2965                      "SIZE tag at %L requires an ADVANCE tag",
2966                      &dt->size->where);
2967
2968       io_constraint (dt->eor && dt->advance == NULL,
2969                      "EOR tag at %L requires an ADVANCE tag",
2970                      &dt->eor_where);
2971     }
2972
2973   if (dt->asynchronous) 
2974     {
2975       static const char * asynchronous[] = { "YES", "NO", NULL };
2976
2977       if (dt->asynchronous->expr_type != EXPR_CONSTANT)
2978         {
2979           gfc_error ("ASYNCHRONOUS= specifier at %L must be an initialization "
2980                      "expression", &dt->asynchronous->where);
2981           return MATCH_ERROR;
2982         }
2983
2984       if (!compare_to_allowed_values
2985                 ("ASYNCHRONOUS", asynchronous, NULL, NULL,
2986                  dt->asynchronous->value.character.string,
2987                  io_kind_name (k), warn))
2988         return MATCH_ERROR;
2989     }
2990
2991   if (dt->id)
2992     {
2993       bool not_yes
2994         = !dt->asynchronous
2995           || gfc_wide_strlen (dt->asynchronous->value.character.string) != 3
2996           || gfc_wide_strncasecmp (dt->asynchronous->value.character.string,
2997                                    "yes", 3) != 0;
2998       io_constraint (not_yes,
2999                      "ID= specifier at %L must be with ASYNCHRONOUS='yes' "
3000                      "specifier", &dt->id->where);
3001     }
3002
3003   if (dt->decimal)
3004     {
3005       if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: DECIMAL= at %C "
3006           "not allowed in Fortran 95") == FAILURE)
3007         return MATCH_ERROR;
3008
3009       if (dt->decimal->expr_type == EXPR_CONSTANT)
3010         {
3011           static const char * decimal[] = { "COMMA", "POINT", NULL };
3012
3013           if (!compare_to_allowed_values ("DECIMAL", decimal, NULL, NULL,
3014                                           dt->decimal->value.character.string,
3015                                           io_kind_name (k), warn))
3016             return MATCH_ERROR;
3017
3018           io_constraint (unformatted,
3019                          "the DECIMAL= specifier at %L must be with an "
3020                          "explicit format expression", &dt->decimal->where);
3021         }
3022     }
3023   
3024   if (dt->blank)
3025     {
3026       if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: BLANK= at %C "
3027           "not allowed in Fortran 95") == FAILURE)
3028         return MATCH_ERROR;
3029
3030       if (dt->blank->expr_type == EXPR_CONSTANT)
3031         {
3032           static const char * blank[] = { "NULL", "ZERO", NULL };
3033
3034           if (!compare_to_allowed_values ("BLANK", blank, NULL, NULL,
3035                                           dt->blank->value.character.string,
3036                                           io_kind_name (k), warn))
3037             return MATCH_ERROR;
3038
3039           io_constraint (unformatted,
3040                          "the BLANK= specifier at %L must be with an "
3041                          "explicit format expression", &dt->blank->where);
3042         }
3043     }
3044
3045   if (dt->pad)
3046     {
3047       if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: PAD= at %C "
3048           "not allowed in Fortran 95") == FAILURE)
3049         return MATCH_ERROR;
3050
3051       if (dt->pad->expr_type == EXPR_CONSTANT)
3052         {
3053           static const char * pad[] = { "YES", "NO", NULL };
3054
3055           if (!compare_to_allowed_values ("PAD", pad, NULL, NULL,
3056                                           dt->pad->value.character.string,
3057                                           io_kind_name (k), warn))
3058             return MATCH_ERROR;
3059
3060           io_constraint (unformatted,
3061                          "the PAD= specifier at %L must be with an "
3062                          "explicit format expression", &dt->pad->where);
3063         }
3064     }
3065
3066   if (dt->round)
3067     {
3068       /* When implemented, change the following to use gfc_notify_std F2003.
3069       if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: ROUND= at %C "
3070           "not allowed in Fortran 95") == FAILURE)
3071         return MATCH_ERROR;  */
3072       gfc_error ("F2003 Feature: ROUND= specifier at %C not implemented");
3073       return MATCH_ERROR;
3074
3075       if (dt->round->expr_type == EXPR_CONSTANT)
3076         {
3077           static const char * round[] = { "UP", "DOWN", "ZERO", "NEAREST",
3078                                           "COMPATIBLE", "PROCESSOR_DEFINED",
3079                                           NULL };
3080
3081           if (!compare_to_allowed_values ("ROUND", round, NULL, NULL,
3082                                           dt->round->value.character.string,
3083                                           io_kind_name (k), warn))
3084             return MATCH_ERROR;
3085         }
3086     }
3087   
3088   if (dt->sign)
3089     {
3090       /* When implemented, change the following to use gfc_notify_std F2003.
3091       if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: SIGN= at %C "
3092           "not allowed in Fortran 95") == FAILURE)
3093         return MATCH_ERROR;  */
3094       if (dt->sign->expr_type == EXPR_CONSTANT)
3095         {
3096           static const char * sign[] = { "PLUS", "SUPPRESS", "PROCESSOR_DEFINED",
3097                                          NULL };
3098
3099           if (!compare_to_allowed_values ("SIGN", sign, NULL, NULL,
3100                                       dt->sign->value.character.string,
3101                                       io_kind_name (k), warn))
3102             return MATCH_ERROR;
3103
3104           io_constraint (unformatted,
3105                          "SIGN= specifier at %L must be with an "
3106                          "explicit format expression", &dt->sign->where);
3107
3108           io_constraint (k == M_READ,
3109                          "SIGN= specifier at %L not allowed in a "
3110                          "READ statement", &dt->sign->where);
3111         }
3112     }
3113
3114   if (dt->delim)
3115     {
3116       if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: DELIM= at %C "
3117           "not allowed in Fortran 95") == FAILURE)
3118         return MATCH_ERROR;
3119
3120       if (dt->delim->expr_type == EXPR_CONSTANT)
3121         {
3122           static const char *delim[] = { "APOSTROPHE", "QUOTE", "NONE", NULL };
3123
3124           if (!compare_to_allowed_values ("DELIM", delim, NULL, NULL,
3125                                           dt->delim->value.character.string,
3126                                           io_kind_name (k), warn))
3127             return MATCH_ERROR;
3128
3129           io_constraint (k == M_READ,
3130                          "DELIM= specifier at %L not allowed in a "
3131                          "READ statement", &dt->delim->where);
3132       
3133           io_constraint (dt->format_label != &format_asterisk
3134                          && dt->namelist == NULL,
3135                          "DELIM= specifier at %L must have FMT=*",
3136                          &dt->delim->where);
3137
3138           io_constraint (unformatted && dt->namelist == NULL,
3139                          "DELIM= specifier at %L must be with FMT=* or "
3140                          "NML= specifier ", &dt->delim->where);
3141         }
3142     }
3143   
3144   if (dt->namelist)
3145     {
3146       io_constraint (io_code && dt->namelist,
3147                      "NAMELIST cannot be followed by IO-list at %L",
3148                      &io_code->loc);
3149
3150       io_constraint (dt->format_expr,
3151                      "IO spec-list cannot contain both NAMELIST group name "
3152                      "and format specification at %L.",
3153                      &dt->format_expr->where);
3154
3155       io_constraint (dt->format_label,
3156                      "IO spec-list cannot contain both NAMELIST group name "
3157                      "and format label at %L", spec_end);
3158
3159       io_constraint (dt->rec,
3160                      "NAMELIST IO is not allowed with a REC= specifier "
3161                      "at %L.", &dt->rec->where);
3162
3163       io_constraint (dt->advance,
3164                      "NAMELIST IO is not allowed with a ADVANCE= specifier "
3165                      "at %L.", &dt->advance->where);
3166     }
3167
3168   if (dt->rec)
3169     {
3170       io_constraint (dt->end,
3171                      "An END tag is not allowed with a "
3172                      "REC= specifier at %L.", &dt->end_where);
3173
3174       io_constraint (dt->format_label == &format_asterisk,
3175                      "FMT=* is not allowed with a REC= specifier "
3176                      "at %L.", spec_end);
3177     }
3178
3179   if (dt->advance)
3180     {
3181       int not_yes, not_no;
3182       expr = dt->advance;
3183
3184       io_constraint (dt->format_label == &format_asterisk,
3185                      "List directed format(*) is not allowed with a "
3186                      "ADVANCE= specifier at %L.", &expr->where);
3187
3188       io_constraint (unformatted,
3189                      "the ADVANCE= specifier at %L must appear with an "
3190                      "explicit format expression", &expr->where);
3191
3192       if (expr->expr_type == EXPR_CONSTANT && expr->ts.type == BT_CHARACTER)
3193         {
3194           const gfc_char_t *advance = expr->value.character.string;
3195           not_no = gfc_wide_strlen (advance) != 2
3196                    || gfc_wide_strncasecmp (advance, "no", 2) != 0;
3197           not_yes = gfc_wide_strlen (advance) != 3
3198                     || gfc_wide_strncasecmp (advance, "yes", 3) != 0;
3199         }
3200       else
3201         {
3202           not_no = 0;
3203           not_yes = 0;
3204         }
3205
3206       io_constraint (not_no && not_yes,
3207                      "ADVANCE= specifier at %L must have value = "
3208                      "YES or NO.", &expr->where);
3209
3210       io_constraint (dt->size && not_no && k == M_READ,
3211                      "SIZE tag at %L requires an ADVANCE = 'NO'",
3212                      &dt->size->where);
3213
3214       io_constraint (dt->eor && not_no && k == M_READ,
3215                      "EOR tag at %L requires an ADVANCE = 'NO'",
3216                      &dt->eor_where);      
3217     }
3218
3219   expr = dt->format_expr;
3220   if (gfc_simplify_expr (expr, 0) == FAILURE
3221       || check_format_string (expr, k == M_READ) == FAILURE)
3222     return MATCH_ERROR;
3223
3224   return m;
3225 }
3226 #undef io_constraint
3227
3228
3229 /* Match a READ, WRITE or PRINT statement.  */
3230
3231 static match
3232 match_io (io_kind k)
3233 {
3234   char name[GFC_MAX_SYMBOL_LEN + 1];
3235   gfc_code *io_code;
3236   gfc_symbol *sym;
3237   int comma_flag;
3238   locus where;
3239   locus spec_end;
3240   gfc_dt *dt;
3241   match m;
3242
3243   where = gfc_current_locus;
3244   comma_flag = 0;
3245   current_dt = dt = XCNEW (gfc_dt);
3246   m = gfc_match_char ('(');
3247   if (m == MATCH_NO)
3248     {
3249       where = gfc_current_locus;
3250       if (k == M_WRITE)
3251         goto syntax;
3252       else if (k == M_PRINT)
3253         {
3254           /* Treat the non-standard case of PRINT namelist.  */
3255           if ((gfc_current_form == FORM_FIXED || gfc_peek_ascii_char () == ' ')
3256               && gfc_match_name (name) == MATCH_YES)
3257             {
3258               gfc_find_symbol (name, NULL, 1, &sym);
3259               if (sym && sym->attr.flavor == FL_NAMELIST)
3260                 {
3261                   if (gfc_notify_std (GFC_STD_GNU, "PRINT namelist at "
3262                                       "%C is an extension") == FAILURE)
3263                     {
3264                       m = MATCH_ERROR;
3265                       goto cleanup;
3266                     }
3267
3268                   dt->io_unit = default_unit (k);
3269                   dt->namelist = sym;
3270                   goto get_io_list;
3271                 }
3272               else
3273                 gfc_current_locus = where;
3274             }
3275         }
3276
3277       if (gfc_current_form == FORM_FREE)
3278         {
3279           char c = gfc_peek_ascii_char ();
3280           if (c != ' ' && c != '*' && c != '\'' && c != '"')
3281             {
3282               m = MATCH_NO;
3283               goto cleanup;
3284             }
3285         }
3286
3287       m = match_dt_format (dt);
3288       if (m == MATCH_ERROR)
3289         goto cleanup;
3290       if (m == MATCH_NO)
3291         goto syntax;
3292
3293       comma_flag = 1;
3294       dt->io_unit = default_unit (k);
3295       goto get_io_list;
3296     }
3297   else
3298     {
3299       /* Before issuing an error for a malformed 'print (1,*)' type of
3300          error, check for a default-char-expr of the form ('(I0)').  */
3301       if (k == M_PRINT && m == MATCH_YES)
3302         {
3303           /* Reset current locus to get the initial '(' in an expression.  */
3304           gfc_current_locus = where;
3305           dt->format_expr = NULL;
3306           m = match_dt_format (dt);
3307
3308           if (m == MATCH_ERROR)
3309             goto cleanup;
3310           if (m == MATCH_NO || dt->format_expr == NULL)
3311             goto syntax;
3312
3313           comma_flag = 1;
3314           dt->io_unit = default_unit (k);
3315           goto get_io_list;
3316         }
3317     }
3318
3319   /* Match a control list */
3320   if (match_dt_element (k, dt) == MATCH_YES)
3321     goto next;
3322   if (match_dt_unit (k, dt) != MATCH_YES)
3323     goto loop;
3324
3325   if (gfc_match_char (')') == MATCH_YES)
3326     goto get_io_list;
3327   if (gfc_match_char (',') != MATCH_YES)
3328     goto syntax;
3329
3330   m = match_dt_element (k, dt);
3331   if (m == MATCH_YES)
3332     goto next;
3333   if (m == MATCH_ERROR)
3334     goto cleanup;
3335
3336   m = match_dt_format (dt);
3337   if (m == MATCH_YES)
3338     goto next;
3339   if (m == MATCH_ERROR)
3340     goto cleanup;
3341
3342   where = gfc_current_locus;
3343
3344   m = gfc_match_name (name);
3345   if (m == MATCH_YES)
3346     {
3347       gfc_find_symbol (name, NULL, 1, &sym);
3348       if (sym && sym->attr.flavor == FL_NAMELIST)
3349         {
3350           dt->namelist = sym;
3351           if (k == M_READ && check_namelist (sym))
3352             {
3353               m = MATCH_ERROR;
3354               goto cleanup;
3355             }
3356           goto next;
3357         }
3358     }
3359
3360   gfc_current_locus = where;
3361
3362   goto loop;                    /* No matches, try regular elements */
3363
3364 next:
3365   if (gfc_match_char (')') == MATCH_YES)
3366     goto get_io_list;
3367   if (gfc_match_char (',') != MATCH_YES)
3368     goto syntax;
3369
3370 loop:
3371   for (;;)
3372     {
3373       m = match_dt_element (k, dt);
3374       if (m == MATCH_NO)
3375         goto syntax;
3376       if (m == MATCH_ERROR)
3377         goto cleanup;
3378
3379       if (gfc_match_char (')') == MATCH_YES)
3380         break;
3381       if (gfc_match_char (',') != MATCH_YES)
3382         goto syntax;
3383     }
3384
3385 get_io_list:
3386
3387   /* Used in check_io_constraints, where no locus is available.  */
3388   spec_end = gfc_current_locus;
3389
3390   /* Optional leading comma (non-standard).  We use a gfc_expr structure here
3391      to save the locus.  This is used later when resolving transfer statements
3392      that might have a format expression without unit number.  */
3393   if (!comma_flag && gfc_match_char (',') == MATCH_YES)
3394     {
3395       dt->extra_comma = gfc_get_expr ();
3396
3397       /* Set the types to something compatible with iokind. This is needed to
3398          get through gfc_free_expr later since iokind really has no Basic Type,
3399          BT, of its own.  */
3400       dt->extra_comma->expr_type = EXPR_CONSTANT;
3401       dt->extra_comma->ts.type = BT_LOGICAL;
3402
3403       /* Save the iokind and locus for later use in resolution.  */
3404       dt->extra_comma->value.iokind = k;
3405       dt->extra_comma->where = gfc_current_locus;
3406     }
3407
3408   io_code = NULL;
3409   if (gfc_match_eos () != MATCH_YES)
3410     {
3411       if (comma_flag && gfc_match_char (',') != MATCH_YES)
3412         {
3413           gfc_error ("Expected comma in I/O list at %C");
3414           m = MATCH_ERROR;
3415           goto cleanup;
3416         }
3417
3418       m = match_io_list (k, &io_code);
3419       if (m == MATCH_ERROR)
3420         goto cleanup;
3421       if (m == MATCH_NO)
3422         goto syntax;
3423     }
3424
3425   /* A full IO statement has been matched.  Check the constraints.  spec_end is
3426      supplied for cases where no locus is supplied.  */
3427   m = check_io_constraints (k, dt, io_code, &spec_end);
3428
3429   if (m == MATCH_ERROR)
3430     goto cleanup;
3431
3432   new_st.op = (k == M_READ) ? EXEC_READ : EXEC_WRITE;
3433   new_st.ext.dt = dt;
3434   new_st.block = gfc_get_code ();
3435   new_st.block->op = new_st.op;
3436   new_st.block->next = io_code;
3437
3438   terminate_io (io_code);
3439
3440   return MATCH_YES;
3441
3442 syntax:
3443   gfc_error ("Syntax error in %s statement at %C", io_kind_name (k));
3444   m = MATCH_ERROR;
3445
3446 cleanup:
3447   gfc_free_dt (dt);
3448   return m;
3449 }
3450
3451
3452 match
3453 gfc_match_read (void)
3454 {
3455   return match_io (M_READ);
3456 }
3457
3458
3459 match
3460 gfc_match_write (void)
3461 {
3462   return match_io (M_WRITE);
3463 }
3464
3465
3466 match
3467 gfc_match_print (void)
3468 {
3469   match m;
3470
3471   m = match_io (M_PRINT);
3472   if (m != MATCH_YES)
3473     return m;
3474
3475   if (gfc_pure (NULL))
3476     {
3477       gfc_error ("PRINT statement at %C not allowed within PURE procedure");
3478       return MATCH_ERROR;
3479     }
3480
3481   return MATCH_YES;
3482 }
3483
3484
3485 /* Free a gfc_inquire structure.  */
3486
3487 void
3488 gfc_free_inquire (gfc_inquire *inquire)
3489 {
3490
3491   if (inquire == NULL)
3492     return;
3493
3494   gfc_free_expr (inquire->unit);
3495   gfc_free_expr (inquire->file);
3496   gfc_free_expr (inquire->iomsg);
3497   gfc_free_expr (inquire->iostat);
3498   gfc_free_expr (inquire->exist);
3499   gfc_free_expr (inquire->opened);
3500   gfc_free_expr (inquire->number);
3501   gfc_free_expr (inquire->named);
3502   gfc_free_expr (inquire->name);
3503   gfc_free_expr (inquire->access);
3504   gfc_free_expr (inquire->sequential);
3505   gfc_free_expr (inquire->direct);
3506   gfc_free_expr (inquire->form);
3507   gfc_free_expr (inquire->formatted);
3508   gfc_free_expr (inquire->unformatted);
3509   gfc_free_expr (inquire->recl);
3510   gfc_free_expr (inquire->nextrec);
3511   gfc_free_expr (inquire->blank);
3512   gfc_free_expr (inquire->position);
3513   gfc_free_expr (inquire->action);
3514   gfc_free_expr (inquire->read);
3515   gfc_free_expr (inquire->write);
3516   gfc_free_expr (inquire->readwrite);
3517   gfc_free_expr (inquire->delim);
3518   gfc_free_expr (inquire->encoding);
3519   gfc_free_expr (inquire->pad);
3520   gfc_free_expr (inquire->iolength);
3521   gfc_free_expr (inquire->convert);
3522   gfc_free_expr (inquire->strm_pos);
3523   gfc_free_expr (inquire->asynchronous);
3524   gfc_free_expr (inquire->pending);
3525   gfc_free_expr (inquire->id);
3526   gfc_free_expr (inquire->sign);
3527   gfc_free_expr (inquire->round);
3528   gfc_free (inquire);
3529 }
3530
3531
3532 /* Match an element of an INQUIRE statement.  */
3533
3534 #define RETM   if (m != MATCH_NO) return m;
3535
3536 static match
3537 match_inquire_element (gfc_inquire *inquire)
3538 {
3539   match m;
3540
3541   m = match_etag (&tag_unit, &inquire->unit);
3542   RETM m = match_etag (&tag_file, &inquire->file);
3543   RETM m = match_ltag (&tag_err, &inquire->err);
3544   RETM m = match_out_tag (&tag_iomsg, &inquire->iomsg);
3545   RETM m = match_out_tag (&tag_iostat, &inquire->iostat);
3546   RETM m = match_vtag (&tag_exist, &inquire->exist);
3547   RETM m = match_vtag (&tag_opened, &inquire->opened);
3548   RETM m = match_vtag (&tag_named, &inquire->named);
3549   RETM m = match_vtag (&tag_name, &inquire->name);
3550   RETM m = match_out_tag (&tag_number, &inquire->number);
3551   RETM m = match_vtag (&tag_s_access, &inquire->access);
3552   RETM m = match_vtag (&tag_sequential, &inquire->sequential);
3553   RETM m = match_vtag (&tag_direct, &inquire->direct);
3554   RETM m = match_vtag (&tag_s_form, &inquire->form);
3555   RETM m = match_vtag (&tag_formatted, &inquire->formatted);
3556   RETM m = match_vtag (&tag_unformatted, &inquire->unformatted);
3557   RETM m = match_out_tag (&tag_s_recl, &inquire->recl);
3558   RETM m = match_out_tag (&tag_nextrec, &inquire->nextrec);
3559   RETM m = match_vtag (&tag_s_blank, &inquire->blank);
3560   RETM m = match_vtag (&tag_s_position, &inquire->position);
3561   RETM m = match_vtag (&tag_s_action, &inquire->action);
3562   RETM m = match_vtag (&tag_read, &inquire->read);
3563   RETM m = match_vtag (&tag_write, &inquire->write);
3564   RETM m = match_vtag (&tag_readwrite, &inquire->readwrite);
3565   RETM m = match_vtag (&tag_s_async, &inquire->asynchronous);
3566   RETM m = match_vtag (&tag_s_delim, &inquire->delim);
3567   RETM m = match_vtag (&tag_s_decimal, &inquire->decimal);
3568   RETM m = match_vtag (&tag_s_blank, &inquire->blank);
3569   RETM m = match_vtag (&tag_s_encoding, &inquire->encoding);
3570   RETM m = match_vtag (&tag_s_round, &inquire->round);
3571   RETM m = match_vtag (&tag_s_sign, &inquire->sign);
3572   RETM m = match_vtag (&tag_s_pad, &inquire->pad);
3573   RETM m = match_vtag (&tag_iolength, &inquire->iolength);
3574   RETM m = match_vtag (&tag_convert, &inquire->convert);
3575   RETM m = match_out_tag (&tag_strm_out, &inquire->strm_pos);
3576   RETM m = match_vtag (&tag_pending, &inquire->pending);
3577   RETM m = match_vtag (&tag_id, &inquire->id);
3578   RETM return MATCH_NO;
3579 }
3580
3581 #undef RETM
3582
3583
3584 match
3585 gfc_match_inquire (void)
3586 {
3587   gfc_inquire *inquire;
3588   gfc_code *code;
3589   match m;
3590   locus loc;
3591
3592   m = gfc_match_char ('(');
3593   if (m == MATCH_NO)
3594     return m;
3595
3596   inquire = XCNEW (gfc_inquire);
3597
3598   loc = gfc_current_locus;
3599
3600   m = match_inquire_element (inquire);
3601   if (m == MATCH_ERROR)
3602     goto cleanup;
3603   if (m == MATCH_NO)
3604     {
3605       m = gfc_match_expr (&inquire->unit);
3606       if (m == MATCH_ERROR)
3607         goto cleanup;
3608       if (m == MATCH_NO)
3609         goto syntax;
3610     }
3611
3612   /* See if we have the IOLENGTH form of the inquire statement.  */
3613   if (inquire->iolength != NULL)
3614     {
3615       if (gfc_match_char (')') != MATCH_YES)
3616         goto syntax;
3617
3618       m = match_io_list (M_INQUIRE, &code);
3619       if (m == MATCH_ERROR)
3620         goto cleanup;
3621       if (m == MATCH_NO)
3622         goto syntax;
3623
3624       new_st.op = EXEC_IOLENGTH;
3625       new_st.expr = inquire->iolength;
3626       new_st.ext.inquire = inquire;
3627
3628       if (gfc_pure (NULL))
3629         {
3630           gfc_free_statements (code);
3631           gfc_error ("INQUIRE statement not allowed in PURE procedure at %C");
3632           return MATCH_ERROR;
3633         }
3634
3635       new_st.block = gfc_get_code ();
3636       new_st.block->op = EXEC_IOLENGTH;
3637       terminate_io (code);
3638       new_st.block->next = code;
3639       return MATCH_YES;
3640     }
3641
3642   /* At this point, we have the non-IOLENGTH inquire statement.  */
3643   for (;;)
3644     {
3645       if (gfc_match_char (')') == MATCH_YES)
3646         break;
3647       if (gfc_match_char (',') != MATCH_YES)
3648         goto syntax;
3649
3650       m = match_inquire_element (inquire);
3651       if (m == MATCH_ERROR)
3652         goto cleanup;
3653       if (m == MATCH_NO)
3654         goto syntax;
3655
3656       if (inquire->iolength != NULL)
3657         {
3658           gfc_error ("IOLENGTH tag invalid in INQUIRE statement at %C");
3659           goto cleanup;
3660         }
3661     }
3662
3663   if (gfc_match_eos () != MATCH_YES)
3664     goto syntax;
3665
3666   if (inquire->unit != NULL && inquire->file != NULL)
3667     {
3668       gfc_error ("INQUIRE statement at %L cannot contain both FILE and "
3669                  "UNIT specifiers", &loc);
3670       goto cleanup;
3671     }
3672
3673   if (inquire->unit == NULL && inquire->file == NULL)
3674     {
3675       gfc_error ("INQUIRE statement at %L requires either FILE or "
3676                  "UNIT specifier", &loc);
3677       goto cleanup;
3678     }
3679
3680   if (gfc_pure (NULL))
3681     {
3682       gfc_error ("INQUIRE statement not allowed in PURE procedure at %C");
3683       goto cleanup;
3684     }
3685   
3686   if (inquire->id != NULL && inquire->pending == NULL)
3687     {
3688       gfc_error ("INQUIRE statement at %L requires a PENDING= specifier with "
3689                  "the ID= specifier", &loc);
3690       goto cleanup;
3691     }
3692
3693   new_st.op = EXEC_INQUIRE;
3694   new_st.ext.inquire = inquire;
3695   return MATCH_YES;
3696
3697 syntax:
3698   gfc_syntax_error (ST_INQUIRE);
3699
3700 cleanup:
3701   gfc_free_inquire (inquire);
3702   return MATCH_ERROR;
3703 }
3704
3705
3706 /* Resolve everything in a gfc_inquire structure.  */
3707
3708 gfc_try
3709 gfc_resolve_inquire (gfc_inquire *inquire)
3710 {
3711   RESOLVE_TAG (&tag_unit, inquire->unit);
3712   RESOLVE_TAG (&tag_file, inquire->file);
3713   RESOLVE_TAG (&tag_iomsg, inquire->iomsg);
3714   RESOLVE_TAG (&tag_iostat, inquire->iostat);
3715   RESOLVE_TAG (&tag_exist, inquire->exist);
3716   RESOLVE_TAG (&tag_opened, inquire->opened);
3717   RESOLVE_TAG (&tag_number, inquire->number);
3718   RESOLVE_TAG (&tag_named, inquire->named);
3719   RESOLVE_TAG (&tag_name, inquire->name);
3720   RESOLVE_TAG (&tag_s_access, inquire->access);
3721   RESOLVE_TAG (&tag_sequential, inquire->sequential);
3722   RESOLVE_TAG (&tag_direct, inquire->direct);
3723   RESOLVE_TAG (&tag_s_form, inquire->form);
3724   RESOLVE_TAG (&tag_formatted, inquire->formatted);
3725   RESOLVE_TAG (&tag_unformatted, inquire->unformatted);
3726   RESOLVE_TAG (&tag_s_recl, inquire->recl);
3727   RESOLVE_TAG (&tag_nextrec, inquire->nextrec);
3728   RESOLVE_TAG (&tag_s_blank, inquire->blank);
3729   RESOLVE_TAG (&tag_s_position, inquire->position);
3730   RESOLVE_TAG (&tag_s_action, inquire->action);
3731   RESOLVE_TAG (&tag_read, inquire->read);
3732   RESOLVE_TAG (&tag_write, inquire->write);
3733   RESOLVE_TAG (&tag_readwrite, inquire->readwrite);
3734   RESOLVE_TAG (&tag_s_delim, inquire->delim);
3735   RESOLVE_TAG (&tag_s_pad, inquire->pad);
3736   RESOLVE_TAG (&tag_s_encoding, inquire->encoding);
3737   RESOLVE_TAG (&tag_s_round, inquire->round);
3738   RESOLVE_TAG (&tag_iolength, inquire->iolength);
3739   RESOLVE_TAG (&tag_convert, inquire->convert);
3740   RESOLVE_TAG (&tag_strm_out, inquire->strm_pos);
3741   RESOLVE_TAG (&tag_s_async, inquire->asynchronous);
3742   RESOLVE_TAG (&tag_s_sign, inquire->sign);
3743   RESOLVE_TAG (&tag_s_round, inquire->round);
3744   RESOLVE_TAG (&tag_pending, inquire->pending);
3745   RESOLVE_TAG (&tag_id, inquire->id);
3746
3747   if (gfc_reference_st_label (inquire->err, ST_LABEL_TARGET) == FAILURE)
3748     return FAILURE;
3749
3750   return SUCCESS;
3751 }
3752
3753
3754 void
3755 gfc_free_wait (gfc_wait *wait)
3756 {
3757   if (wait == NULL)
3758     return;
3759
3760   gfc_free_expr (wait->unit);
3761   gfc_free_expr (wait->iostat);
3762   gfc_free_expr (wait->iomsg);
3763   gfc_free_expr (wait->id);
3764 }
3765
3766
3767 gfc_try
3768 gfc_resolve_wait (gfc_wait *wait)
3769 {
3770   RESOLVE_TAG (&tag_unit, wait->unit);
3771   RESOLVE_TAG (&tag_iomsg, wait->iomsg);
3772   RESOLVE_TAG (&tag_iostat, wait->iostat);
3773   RESOLVE_TAG (&tag_id, wait->id);
3774
3775   if (gfc_reference_st_label (wait->err, ST_LABEL_TARGET) == FAILURE)
3776     return FAILURE;
3777   
3778   if (gfc_reference_st_label (wait->end, ST_LABEL_TARGET) == FAILURE)
3779     return FAILURE;
3780
3781   return SUCCESS;
3782 }
3783
3784 /* Match an element of a WAIT statement.  */
3785
3786 #define RETM   if (m != MATCH_NO) return m;
3787
3788 static match
3789 match_wait_element (gfc_wait *wait)
3790 {
3791   match m;
3792
3793   m = match_etag (&tag_unit, &wait->unit);
3794   RETM m = match_ltag (&tag_err, &wait->err);
3795   RETM m = match_ltag (&tag_end, &wait->eor);
3796   RETM m = match_ltag (&tag_eor, &wait->end);
3797   RETM m = match_out_tag (&tag_iomsg, &wait->iomsg);
3798   RETM m = match_out_tag (&tag_iostat, &wait->iostat);
3799   RETM m = match_etag (&tag_id, &wait->id);
3800   RETM return MATCH_NO;
3801 }
3802
3803 #undef RETM
3804
3805
3806 match
3807 gfc_match_wait (void)
3808 {
3809   gfc_wait *wait;
3810   match m;
3811   locus loc;
3812
3813   m = gfc_match_char ('(');
3814   if (m == MATCH_NO)
3815     return m;
3816
3817   wait = XCNEW (gfc_wait);
3818
3819   loc = gfc_current_locus;
3820
3821   m = match_wait_element (wait);
3822   if (m == MATCH_ERROR)
3823     goto cleanup;
3824   if (m == MATCH_NO)
3825     {
3826       m = gfc_match_expr (&wait->unit);
3827       if (m == MATCH_ERROR)
3828         goto cleanup;
3829       if (m == MATCH_NO)
3830         goto syntax;
3831     }
3832
3833   for (;;)
3834     {
3835       if (gfc_match_char (')') == MATCH_YES)
3836         break;
3837       if (gfc_match_char (',') != MATCH_YES)
3838         goto syntax;
3839
3840       m = match_wait_element (wait);
3841       if (m == MATCH_ERROR)
3842         goto cleanup;
3843       if (m == MATCH_NO)
3844         goto syntax;
3845     }
3846
3847   if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: WAIT at %C "
3848           "not allowed in Fortran 95") == FAILURE)
3849     goto cleanup;
3850
3851   if (gfc_pure (NULL))
3852     {
3853       gfc_error ("WAIT statement not allowed in PURE procedure at %C");
3854       goto cleanup;
3855     }
3856
3857   new_st.op = EXEC_WAIT;
3858   new_st.ext.wait = wait;
3859
3860   return MATCH_YES;
3861
3862 syntax:
3863   gfc_syntax_error (ST_WAIT);
3864
3865 cleanup:
3866   gfc_free_wait (wait);
3867   return MATCH_ERROR;
3868 }