OSDN Git Service

2005-11-06 Paul Thomas <pault@gcc.gnu.org>
[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 Free Software Foundation,
3    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 2, 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 COPYING.  If not, write to the Free
20 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
21 02110-1301, USA.  */
22
23 #include "config.h"
24 #include "system.h"
25 #include "flags.h"
26 #include "gfortran.h"
27 #include "match.h"
28 #include "parse.h"
29
30 gfc_st_label format_asterisk =
31   { -1, ST_LABEL_FORMAT, ST_LABEL_FORMAT, NULL, 0,
32     {NULL, NULL}, NULL, NULL};
33
34 typedef struct
35 {
36   const char *name, *spec;
37   bt type;
38 }
39 io_tag;
40
41 static const io_tag
42         tag_file        = { "FILE", " file = %e", BT_CHARACTER },
43         tag_status      = { "STATUS", " status = %e", BT_CHARACTER},
44         tag_e_access    = {"ACCESS", " access = %e", BT_CHARACTER},
45         tag_e_form      = {"FORM", " form = %e", BT_CHARACTER},
46         tag_e_recl      = {"RECL", " recl = %e", BT_INTEGER},
47         tag_e_blank     = {"BLANK", " blank = %e", BT_CHARACTER},
48         tag_e_position  = {"POSITION", " position = %e", BT_CHARACTER},
49         tag_e_action    = {"ACTION", " action = %e", BT_CHARACTER},
50         tag_e_delim     = {"DELIM", " delim = %e", BT_CHARACTER},
51         tag_e_pad       = {"PAD", " pad = %e", BT_CHARACTER},
52         tag_unit        = {"UNIT", " unit = %e", BT_INTEGER},
53         tag_advance     = {"ADVANCE", " advance = %e", BT_CHARACTER},
54         tag_rec         = {"REC", " rec = %e", BT_INTEGER},
55         tag_format      = {"FORMAT", NULL, BT_CHARACTER},
56         tag_iomsg       = {"IOMSG", " iomsg = %e", BT_CHARACTER},
57         tag_iostat      = {"IOSTAT", " iostat = %v", BT_INTEGER},
58         tag_size        = {"SIZE", " size = %v", BT_INTEGER},
59         tag_exist       = {"EXIST", " exist = %v", BT_LOGICAL},
60         tag_opened      = {"OPENED", " opened = %v", BT_LOGICAL},
61         tag_named       = {"NAMED", " named = %v", BT_LOGICAL},
62         tag_name        = {"NAME", " name = %v", BT_CHARACTER},
63         tag_number      = {"NUMBER", " number = %v", BT_INTEGER},
64         tag_s_access    = {"ACCESS", " access = %v", BT_CHARACTER},
65         tag_sequential  = {"SEQUENTIAL", " sequential = %v", BT_CHARACTER},
66         tag_direct      = {"DIRECT", " direct = %v", BT_CHARACTER},
67         tag_s_form      = {"FORM", " form = %v", BT_CHARACTER},
68         tag_formatted   = {"FORMATTED", " formatted = %v", BT_CHARACTER},
69         tag_unformatted = {"UNFORMATTED", " unformatted = %v", BT_CHARACTER},
70         tag_s_recl      = {"RECL", " recl = %v", BT_INTEGER},
71         tag_nextrec     = {"NEXTREC", " nextrec = %v", BT_INTEGER},
72         tag_s_blank     = {"BLANK", " blank = %v", BT_CHARACTER},
73         tag_s_position  = {"POSITION", " position = %v", BT_CHARACTER},
74         tag_s_action    = {"ACTION", " action = %v", BT_CHARACTER},
75         tag_read        = {"READ", " read = %v", BT_CHARACTER},
76         tag_write       = {"WRITE", " write = %v", BT_CHARACTER},
77         tag_readwrite   = {"READWRITE", " readwrite = %v", BT_CHARACTER},
78         tag_s_delim     = {"DELIM", " delim = %v", BT_CHARACTER},
79         tag_s_pad       = {"PAD", " pad = %v", BT_CHARACTER},
80         tag_iolength    = {"IOLENGTH", " iolength = %v", BT_INTEGER},
81         tag_err         = {"ERR", " err = %l", BT_UNKNOWN},
82         tag_end         = {"END", " end = %l", BT_UNKNOWN},
83         tag_eor         = {"EOR", " eor = %l", BT_UNKNOWN};
84
85 static gfc_dt *current_dt;
86
87 #define RESOLVE_TAG(x, y) if (resolve_tag(x, y) == FAILURE) return FAILURE;
88
89
90 /**************** Fortran 95 FORMAT parser  *****************/
91
92 /* FORMAT tokens returned by format_lex().  */
93 typedef enum
94 {
95   FMT_NONE, FMT_UNKNOWN, FMT_SIGNED_INT, FMT_ZERO, FMT_POSINT, FMT_PERIOD,
96   FMT_COMMA, FMT_COLON, FMT_SLASH, FMT_DOLLAR, FMT_POS, FMT_LPAREN,
97   FMT_RPAREN, FMT_X, FMT_SIGN, FMT_BLANK, FMT_CHAR, FMT_P, FMT_IBOZ, FMT_F,
98   FMT_E, FMT_EXT, FMT_G, FMT_L, FMT_A, FMT_D, FMT_H, FMT_END
99 }
100 format_token;
101
102 /* Local variables for checking format strings.  The saved_token is
103    used to back up by a single format token during the parsing
104    process.  */
105 static char *format_string;
106 static int format_length, use_last_char;
107
108 static format_token saved_token;
109
110 static enum
111 { MODE_STRING, MODE_FORMAT, MODE_COPY }
112 mode;
113
114
115 /* Return the next character in the format string.  */
116
117 static char
118 next_char (int in_string)
119 {
120   static char c;
121
122   if (use_last_char)
123     {
124       use_last_char = 0;
125       return c;
126     }
127
128   format_length++;
129
130   if (mode == MODE_STRING)
131     c = *format_string++;
132   else
133     {
134       c = gfc_next_char_literal (in_string);
135       if (c == '\n')
136         c = '\0';
137
138       if (mode == MODE_COPY)
139         *format_string++ = c;
140     }
141
142   c = TOUPPER (c);
143   return c;
144 }
145
146
147 /* Back up one character position.  Only works once.  */
148
149 static void
150 unget_char (void)
151 {
152
153   use_last_char = 1;
154 }
155
156 static int value = 0;
157
158 /* Simple lexical analyzer for getting the next token in a FORMAT
159    statement.  */
160
161 static format_token
162 format_lex (void)
163 {
164   format_token token;
165   char c, delim;
166   int zflag;
167   int negative_flag;
168
169   if (saved_token != FMT_NONE)
170     {
171       token = saved_token;
172       saved_token = FMT_NONE;
173       return token;
174     }
175
176   do
177     {
178       c = next_char (0);
179     }
180   while (gfc_is_whitespace (c));
181
182   negative_flag = 0;
183   switch (c)
184     {
185     case '-':
186       negative_flag = 1;
187     case '+':
188       c = next_char (0);
189       if (!ISDIGIT (c))
190         {
191           token = FMT_UNKNOWN;
192           break;
193         }
194
195       value = c - '0';
196
197       do
198         {
199           c = next_char (0);
200           if(ISDIGIT (c))
201             value = 10 * value + c - '0';
202         }
203       while (ISDIGIT (c));
204
205       unget_char ();
206
207       if (negative_flag)
208         value = -value;
209
210       token = FMT_SIGNED_INT;
211       break;
212
213     case '0':
214     case '1':
215     case '2':
216     case '3':
217     case '4':
218     case '5':
219     case '6':
220     case '7':
221     case '8':
222     case '9':
223       zflag = (c == '0');
224
225       value = c - '0';
226
227       do
228         {
229           c = next_char (0);
230           if (c != '0')
231             zflag = 0;
232           if (ISDIGIT (c))
233             value = 10 * value + c - '0';
234         }
235       while (ISDIGIT (c));
236
237       unget_char ();
238       token = zflag ? FMT_ZERO : FMT_POSINT;
239       break;
240
241     case '.':
242       token = FMT_PERIOD;
243       break;
244
245     case ',':
246       token = FMT_COMMA;
247       break;
248
249     case ':':
250       token = FMT_COLON;
251       break;
252
253     case '/':
254       token = FMT_SLASH;
255       break;
256
257     case '$':
258       token = FMT_DOLLAR;
259       break;
260
261     case 'T':
262       c = next_char (0);
263       if (c != 'L' && c != 'R')
264         unget_char ();
265
266       token = FMT_POS;
267       break;
268
269     case '(':
270       token = FMT_LPAREN;
271       break;
272
273     case ')':
274       token = FMT_RPAREN;
275       break;
276
277     case 'X':
278       token = FMT_X;
279       break;
280
281     case 'S':
282       c = next_char (0);
283       if (c != 'P' && c != 'S')
284         unget_char ();
285
286       token = FMT_SIGN;
287       break;
288
289     case 'B':
290       c = next_char (0);
291       if (c == 'N' || c == 'Z')
292         token = FMT_BLANK;
293       else
294         {
295           unget_char ();
296           token = FMT_IBOZ;
297         }
298
299       break;
300
301     case '\'':
302     case '"':
303       delim = c;
304
305       value = 0;
306
307       for (;;)
308         {
309           c = next_char (1);
310           if (c == '\0')
311             {
312               token = FMT_END;
313               break;
314             }
315
316           if (c == delim)
317             {
318               c = next_char (1);
319
320               if (c == '\0')
321                 {
322                   token = FMT_END;
323                   break;
324                 }
325
326               if (c != delim)
327                 {
328                   unget_char ();
329                   token = FMT_CHAR;
330                   break;
331                 }
332             }
333           value++;
334         }
335       break;
336
337     case 'P':
338       token = FMT_P;
339       break;
340
341     case 'I':
342     case 'O':
343     case 'Z':
344       token = FMT_IBOZ;
345       break;
346
347     case 'F':
348       token = FMT_F;
349       break;
350
351     case 'E':
352       c = next_char (0);
353       if (c == 'N' || c == 'S')
354         token = FMT_EXT;
355       else
356         {
357           token = FMT_E;
358           unget_char ();
359         }
360
361       break;
362
363     case 'G':
364       token = FMT_G;
365       break;
366
367     case 'H':
368       token = FMT_H;
369       break;
370
371     case 'L':
372       token = FMT_L;
373       break;
374
375     case 'A':
376       token = FMT_A;
377       break;
378
379     case 'D':
380       token = FMT_D;
381       break;
382
383     case '\0':
384       token = FMT_END;
385       break;
386
387     default:
388       token = FMT_UNKNOWN;
389       break;
390     }
391
392   return token;
393 }
394
395
396 /* Check a format statement.  The format string, either from a FORMAT
397    statement or a constant in an I/O statement has already been parsed
398    by itself, and we are checking it for validity.  The dual origin
399    means that the warning message is a little less than great.  */
400
401 static try
402 check_format (void)
403 {
404   const char *posint_required     = _("Positive width required");
405   const char *period_required     = _("Period required");
406   const char *nonneg_required     = _("Nonnegative width required");
407   const char *unexpected_element  = _("Unexpected element");
408   const char *unexpected_end      = _("Unexpected end of format string");
409
410   const char *error;
411   format_token t, u;
412   int level;
413   int repeat;
414   try rv;
415
416   use_last_char = 0;
417   saved_token = FMT_NONE;
418   level = 0;
419   repeat = 0;
420   rv = SUCCESS;
421
422   t = format_lex ();
423   if (t != FMT_LPAREN)
424     {
425       error = _("Missing leading left parenthesis");
426       goto syntax;
427     }
428
429   t = format_lex ();
430   if (t == FMT_RPAREN)
431     goto finished;              /* Empty format is legal */
432   saved_token = t;
433
434 format_item:
435   /* In this state, the next thing has to be a format item.  */
436   t = format_lex ();
437 format_item_1:
438   switch (t)
439     {
440     case FMT_POSINT:
441       repeat = value;
442       t = format_lex ();
443       if (t == FMT_LPAREN)
444         {
445           level++;
446           goto format_item;
447         }
448
449       if (t == FMT_SLASH)
450         goto optional_comma;
451
452       goto data_desc;
453
454     case FMT_LPAREN:
455       level++;
456       goto format_item;
457
458     case FMT_SIGNED_INT:
459       /* Signed integer can only precede a P format.  */
460       t = format_lex ();
461       if (t != FMT_P)
462         {
463           error = _("Expected P edit descriptor");
464           goto syntax;
465         }
466
467       goto data_desc;
468
469     case FMT_P:
470       /* P requires a prior number.  */
471       error = _("P descriptor requires leading scale factor");
472       goto syntax;
473
474     case FMT_X:
475       /* X requires a prior number if we're being pedantic.  */
476       if (gfc_notify_std (GFC_STD_GNU, "Extension: X descriptor "
477                           "requires leading space count at %C")
478           == FAILURE)
479         return FAILURE;
480       goto between_desc;
481
482     case FMT_SIGN:
483     case FMT_BLANK:
484       goto between_desc;
485
486     case FMT_CHAR:
487       goto extension_optional_comma;
488
489     case FMT_COLON:
490     case FMT_SLASH:
491       goto optional_comma;
492
493     case FMT_DOLLAR:
494       t = format_lex ();
495
496       if (gfc_notify_std (GFC_STD_GNU, "Extension: $ descriptor at %C")
497           == FAILURE)
498         return FAILURE;
499       if (t != FMT_RPAREN || level > 0)
500         {
501           error = _("$ must be the last specifier");
502           goto syntax;
503         }
504
505       goto finished;
506
507     case FMT_POS:
508     case FMT_IBOZ:
509     case FMT_F:
510     case FMT_E:
511     case FMT_EXT:
512     case FMT_G:
513     case FMT_L:
514     case FMT_A:
515     case FMT_D:
516       goto data_desc;
517
518     case FMT_H:
519       goto data_desc;
520
521     case FMT_END:
522       error = unexpected_end;
523       goto syntax;
524
525     default:
526       error = unexpected_element;
527       goto syntax;
528     }
529
530 data_desc:
531   /* In this state, t must currently be a data descriptor.
532      Deal with things that can/must follow the descriptor.  */
533   switch (t)
534     {
535     case FMT_SIGN:
536     case FMT_BLANK:
537     case FMT_X:
538       break;
539
540     case FMT_P:
541       if (pedantic)
542         {
543           t = format_lex ();
544           if (t == FMT_POSINT)
545             {
546               error = _("Repeat count cannot follow P descriptor");
547               goto syntax;
548             }
549
550           saved_token = t;
551         }
552
553       goto optional_comma;
554
555     case FMT_POS:
556     case FMT_L:
557       t = format_lex ();
558       if (t == FMT_POSINT)
559         break;
560
561       error = posint_required;
562       goto syntax;
563
564     case FMT_A:
565       t = format_lex ();
566       if (t != FMT_POSINT)
567         saved_token = t;
568       break;
569
570     case FMT_D:
571     case FMT_E:
572     case FMT_G:
573     case FMT_EXT:
574       u = format_lex ();
575       if (u != FMT_POSINT)
576         {
577           error = posint_required;
578           goto syntax;
579         }
580
581       u = format_lex ();
582       if (u != FMT_PERIOD)
583         {
584           error = period_required;
585           goto syntax;
586         }
587
588       u = format_lex ();
589       if (u != FMT_ZERO && u != FMT_POSINT)
590         {
591           error = nonneg_required;
592           goto syntax;
593         }
594
595       if (t == FMT_D)
596         break;
597
598       /* Look for optional exponent.  */
599       u = format_lex ();
600       if (u != FMT_E)
601         {
602           saved_token = u;
603         }
604       else
605         {
606           u = format_lex ();
607           if (u != FMT_POSINT)
608             {
609               error = _("Positive exponent width required");
610               goto syntax;
611             }
612         }
613
614       break;
615
616     case FMT_F:
617       t = format_lex ();
618       if (t != FMT_ZERO && t != FMT_POSINT)
619         {
620           error = nonneg_required;
621           goto syntax;
622         }
623
624       t = format_lex ();
625       if (t != FMT_PERIOD)
626         {
627           error = period_required;
628           goto syntax;
629         }
630
631       t = format_lex ();
632       if (t != FMT_ZERO && t != FMT_POSINT)
633         {
634           error = nonneg_required;
635           goto syntax;
636         }
637
638       break;
639
640     case FMT_H:
641       if(mode == MODE_STRING)
642       {
643         format_string += value;
644         format_length -= value;
645       }
646       else
647       {
648         while(repeat >0)
649          {
650           next_char(1);
651           repeat -- ;
652          }
653       }
654      break;
655
656     case FMT_IBOZ:
657       t = format_lex ();
658       if (t != FMT_ZERO && t != FMT_POSINT)
659         {
660           error = nonneg_required;
661           goto syntax;
662         }
663
664       t = format_lex ();
665       if (t != FMT_PERIOD)
666         {
667           saved_token = t;
668         }
669       else
670         {
671           t = format_lex ();
672           if (t != FMT_ZERO && t != FMT_POSINT)
673             {
674               error = nonneg_required;
675               goto syntax;
676             }
677         }
678
679       break;
680
681     default:
682       error = unexpected_element;
683       goto syntax;
684     }
685
686 between_desc:
687   /* Between a descriptor and what comes next.  */
688   t = format_lex ();
689   switch (t)
690     {
691
692     case FMT_COMMA:
693       goto format_item;
694
695     case FMT_RPAREN:
696       level--;
697       if (level < 0)
698         goto finished;
699       goto between_desc;
700
701     case FMT_COLON:
702     case FMT_SLASH:
703       goto optional_comma;
704
705     case FMT_END:
706       error = unexpected_end;
707       goto syntax;
708
709     default:
710       if (gfc_notify_std (GFC_STD_GNU, "Extension: Missing comma at %C")
711           == FAILURE)
712         return FAILURE;
713       goto format_item_1;
714     }
715
716 optional_comma:
717   /* Optional comma is a weird between state where we've just finished
718      reading a colon, slash or P descriptor.  */
719   t = format_lex ();
720   switch (t)
721     {
722     case FMT_COMMA:
723       break;
724
725     case FMT_RPAREN:
726       level--;
727       if (level < 0)
728         goto finished;
729       goto between_desc;
730
731     default:
732       /* Assume that we have another format item.  */
733       saved_token = t;
734       break;
735     }
736
737   goto format_item;
738
739 extension_optional_comma:
740   /* As a GNU extension, permit a missing comma after a string literal.  */
741   t = format_lex ();
742   switch (t)
743     {
744     case FMT_COMMA:
745       break;
746
747     case FMT_RPAREN:
748       level--;
749       if (level < 0)
750         goto finished;
751       goto between_desc;
752
753     case FMT_COLON:
754     case FMT_SLASH:
755       goto optional_comma;
756
757     case FMT_END:
758       error = unexpected_end;
759       goto syntax;
760
761     default:
762       if (gfc_notify_std (GFC_STD_GNU, "Extension: Missing comma at %C")
763           == FAILURE)
764         return FAILURE;
765       saved_token = t;
766       break;
767     }
768
769   goto format_item;
770
771 syntax:
772   /* Something went wrong.  If the format we're checking is a string,
773      generate a warning, since the program is correct.  If the format
774      is in a FORMAT statement, this messes up parsing, which is an
775      error.  */
776   if (mode != MODE_STRING)
777     gfc_error ("%s in format string at %C", error);
778   else
779     {
780       gfc_warning ("%s in format string at %C", error);
781
782       /* TODO: More elaborate measures are needed to show where a problem
783          is within a format string that has been calculated.  */
784     }
785
786   rv = FAILURE;
787
788 finished:
789   return rv;
790 }
791
792
793 /* Given an expression node that is a constant string, see if it looks
794    like a format string.  */
795
796 static void
797 check_format_string (gfc_expr * e)
798 {
799
800   mode = MODE_STRING;
801   format_string = e->value.character.string;
802   check_format ();
803 }
804
805
806 /************ Fortran 95 I/O statement matchers *************/
807
808 /* Match a FORMAT statement.  This amounts to actually parsing the
809    format descriptors in order to correctly locate the end of the
810    format string.  */
811
812 match
813 gfc_match_format (void)
814 {
815   gfc_expr *e;
816   locus start;
817
818   if (gfc_statement_label == NULL)
819     {
820       gfc_error ("Missing format label at %C");
821       return MATCH_ERROR;
822     }
823   gfc_gobble_whitespace ();
824
825   mode = MODE_FORMAT;
826   format_length = 0;
827
828   start = gfc_current_locus;
829
830   if (check_format () == FAILURE)
831     return MATCH_ERROR;
832
833   if (gfc_match_eos () != MATCH_YES)
834     {
835       gfc_syntax_error (ST_FORMAT);
836       return MATCH_ERROR;
837     }
838
839   /* The label doesn't get created until after the statement is done
840      being matched, so we have to leave the string for later.  */
841
842   gfc_current_locus = start;    /* Back to the beginning */
843
844   new_st.loc = start;
845   new_st.op = EXEC_NOP;
846
847   e = gfc_get_expr();
848   e->expr_type = EXPR_CONSTANT;
849   e->ts.type = BT_CHARACTER;
850   e->ts.kind = gfc_default_character_kind;
851   e->where = start;
852   e->value.character.string = format_string = gfc_getmem(format_length+1);
853   e->value.character.length = format_length;
854   gfc_statement_label->format = e;
855
856   mode = MODE_COPY;
857   check_format ();              /* Guaranteed to succeed */
858   gfc_match_eos ();             /* Guaranteed to succeed */
859
860   return MATCH_YES;
861 }
862
863
864 /* Match an expression I/O tag of some sort.  */
865
866 static match
867 match_etag (const io_tag * tag, gfc_expr ** v)
868 {
869   gfc_expr *result;
870   match m;
871
872   m = gfc_match (tag->spec, &result);
873   if (m != MATCH_YES)
874     return m;
875
876   if (*v != NULL)
877     {
878       gfc_error ("Duplicate %s specification at %C", tag->name);
879       gfc_free_expr (result);
880       return MATCH_ERROR;
881     }
882
883   *v = result;
884   return MATCH_YES;
885 }
886
887
888 /* Match a variable I/O tag of some sort.  */
889
890 static match
891 match_vtag (const io_tag * tag, gfc_expr ** v)
892 {
893   gfc_expr *result;
894   match m;
895
896   m = gfc_match (tag->spec, &result);
897   if (m != MATCH_YES)
898     return m;
899
900   if (*v != NULL)
901     {
902       gfc_error ("Duplicate %s specification at %C", tag->name);
903       gfc_free_expr (result);
904       return MATCH_ERROR;
905     }
906
907   if (result->symtree->n.sym->attr.intent == INTENT_IN)
908     {
909       gfc_error ("Variable tag cannot be INTENT(IN) at %C");
910       gfc_free_expr (result);
911       return MATCH_ERROR;
912     }
913
914   if (gfc_pure (NULL) && gfc_impure_variable (result->symtree->n.sym))
915     {
916       gfc_error ("Variable tag cannot be assigned in PURE procedure at %C");
917       gfc_free_expr (result);
918       return MATCH_ERROR;
919     }
920
921   *v = result;
922   return MATCH_YES;
923 }
924
925
926 /* Match I/O tags that cause variables to become redefined.  */
927
928 static match
929 match_out_tag(const io_tag *tag, gfc_expr **result)
930 {
931   match m;
932
933   m = match_vtag(tag, result);
934   if (m == MATCH_YES)
935     gfc_check_do_variable((*result)->symtree);
936
937   return m;
938 }
939
940
941 /* Match a label I/O tag.  */
942
943 static match
944 match_ltag (const io_tag * tag, gfc_st_label ** label)
945 {
946   match m;
947   gfc_st_label *old;
948
949   old = *label;
950   m = gfc_match (tag->spec, label);
951   if (m == MATCH_YES && old != 0)
952     {
953       gfc_error ("Duplicate %s label specification at %C", tag->name);
954       return MATCH_ERROR;
955     }
956
957   return m;
958 }
959
960
961 /* Do expression resolution and type-checking on an expression tag.  */
962
963 static try
964 resolve_tag (const io_tag * tag, gfc_expr * e)
965 {
966
967   if (e == NULL)
968     return SUCCESS;
969
970   if (gfc_resolve_expr (e) == FAILURE)
971     return FAILURE;
972
973   if (e->ts.type != tag->type && tag != &tag_format)
974     {
975       gfc_error ("%s tag at %L must be of type %s", tag->name,
976                 &e->where, gfc_basic_typename (tag->type));
977       return FAILURE;
978     }
979
980   if (tag == &tag_format)
981     {
982       if (e->expr_type == EXPR_CONSTANT
983           && (e->ts.type != BT_CHARACTER
984               || e->ts.kind != gfc_default_character_kind))
985         {
986           gfc_error ("Constant expression in FORMAT tag at %L must be "
987                      "of type default CHARACTER", &e->where);
988           return FAILURE;
989         }
990
991       /* If e's rank is zero and e is not an element of an array, it should be
992          of integer or character type.  The integer variable should be
993          ASSIGNED.  */
994       if (e->symtree == NULL || e->symtree->n.sym->as == NULL
995                 || e->symtree->n.sym->as->rank == 0)
996         {
997           if (e->ts.type != BT_CHARACTER && e->ts.type != BT_INTEGER)
998             {
999               gfc_error ("%s tag at %L must be of type %s or %s", tag->name,
1000                         &e->where, gfc_basic_typename (BT_CHARACTER),
1001                         gfc_basic_typename (BT_INTEGER));
1002               return FAILURE;
1003             }
1004           else if (e->ts.type == BT_INTEGER && e->expr_type == EXPR_VARIABLE)
1005             {
1006               if (gfc_notify_std (GFC_STD_F95_DEL,
1007                         "Obsolete: ASSIGNED variable in FORMAT tag at %L",
1008                         &e->where) == FAILURE)
1009                 return FAILURE;
1010               if (e->symtree->n.sym->attr.assign != 1)
1011                 {
1012                   gfc_error ("Variable '%s' at %L has not been assigned a "
1013                         "format label", e->symtree->n.sym->name, &e->where);
1014                   return FAILURE;
1015                 }
1016             }
1017           return SUCCESS;
1018         }
1019       else
1020         {
1021           /* if rank is nonzero, we allow the type to be character under
1022              GFC_STD_GNU and other type under GFC_STD_LEGACY. It may be
1023              assigned an Hollerith constant.  */
1024           if (e->ts.type == BT_CHARACTER)
1025             {
1026               if (gfc_notify_std (GFC_STD_GNU,
1027                         "Extension: Character array in FORMAT tag at %L",
1028                         &e->where) == FAILURE)
1029                 return FAILURE;
1030             }
1031           else
1032             {
1033               if (gfc_notify_std (GFC_STD_LEGACY,
1034                         "Extension: Non-character in FORMAT tag at %L",
1035                         &e->where) == FAILURE)
1036                 return FAILURE;
1037             }
1038           return SUCCESS;
1039         }
1040     }
1041   else
1042     {
1043       if (e->rank != 0)
1044         {
1045           gfc_error ("%s tag at %L must be scalar", tag->name, &e->where);
1046           return FAILURE;
1047         }
1048       if (tag == &tag_iomsg)
1049         {
1050           if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: IOMSG tag at %L",
1051                               &e->where) == FAILURE)
1052             return FAILURE;
1053         }
1054     }
1055
1056   return SUCCESS;
1057 }
1058
1059
1060 /* Match a single tag of an OPEN statement.  */
1061
1062 static match
1063 match_open_element (gfc_open * open)
1064 {
1065   match m;
1066
1067   m = match_etag (&tag_unit, &open->unit);
1068   if (m != MATCH_NO)
1069     return m;
1070   m = match_out_tag (&tag_iomsg, &open->iomsg);
1071   if (m != MATCH_NO)
1072     return m;
1073   m = match_out_tag (&tag_iostat, &open->iostat);
1074   if (m != MATCH_NO)
1075     return m;
1076   m = match_etag (&tag_file, &open->file);
1077   if (m != MATCH_NO)
1078     return m;
1079   m = match_etag (&tag_status, &open->status);
1080   if (m != MATCH_NO)
1081     return m;
1082   m = match_etag (&tag_e_access, &open->access);
1083   if (m != MATCH_NO)
1084     return m;
1085   m = match_etag (&tag_e_form, &open->form);
1086   if (m != MATCH_NO)
1087     return m;
1088   m = match_etag (&tag_e_recl, &open->recl);
1089   if (m != MATCH_NO)
1090     return m;
1091   m = match_etag (&tag_e_blank, &open->blank);
1092   if (m != MATCH_NO)
1093     return m;
1094   m = match_etag (&tag_e_position, &open->position);
1095   if (m != MATCH_NO)
1096     return m;
1097   m = match_etag (&tag_e_action, &open->action);
1098   if (m != MATCH_NO)
1099     return m;
1100   m = match_etag (&tag_e_delim, &open->delim);
1101   if (m != MATCH_NO)
1102     return m;
1103   m = match_etag (&tag_e_pad, &open->pad);
1104   if (m != MATCH_NO)
1105     return m;
1106   m = match_ltag (&tag_err, &open->err);
1107   if (m != MATCH_NO)
1108     return m;
1109
1110   return MATCH_NO;
1111 }
1112
1113
1114 /* Free the gfc_open structure and all the expressions it contains.  */
1115
1116 void
1117 gfc_free_open (gfc_open * open)
1118 {
1119
1120   if (open == NULL)
1121     return;
1122
1123   gfc_free_expr (open->unit);
1124   gfc_free_expr (open->iomsg);
1125   gfc_free_expr (open->iostat);
1126   gfc_free_expr (open->file);
1127   gfc_free_expr (open->status);
1128   gfc_free_expr (open->access);
1129   gfc_free_expr (open->form);
1130   gfc_free_expr (open->recl);
1131   gfc_free_expr (open->blank);
1132   gfc_free_expr (open->position);
1133   gfc_free_expr (open->action);
1134   gfc_free_expr (open->delim);
1135   gfc_free_expr (open->pad);
1136
1137   gfc_free (open);
1138 }
1139
1140
1141 /* Resolve everything in a gfc_open structure.  */
1142
1143 try
1144 gfc_resolve_open (gfc_open * open)
1145 {
1146
1147   RESOLVE_TAG (&tag_unit, open->unit);
1148   RESOLVE_TAG (&tag_iomsg, open->iomsg);
1149   RESOLVE_TAG (&tag_iostat, open->iostat);
1150   RESOLVE_TAG (&tag_file, open->file);
1151   RESOLVE_TAG (&tag_status, open->status);
1152   RESOLVE_TAG (&tag_e_form, open->form);
1153   RESOLVE_TAG (&tag_e_recl, open->recl);
1154
1155   RESOLVE_TAG (&tag_e_blank, open->blank);
1156   RESOLVE_TAG (&tag_e_position, open->position);
1157   RESOLVE_TAG (&tag_e_action, open->action);
1158   RESOLVE_TAG (&tag_e_delim, open->delim);
1159   RESOLVE_TAG (&tag_e_pad, open->pad);
1160
1161   if (gfc_reference_st_label (open->err, ST_LABEL_TARGET) == FAILURE)
1162     return FAILURE;
1163
1164   return SUCCESS;
1165 }
1166
1167
1168 /* Match an OPEN statement.  */
1169
1170 match
1171 gfc_match_open (void)
1172 {
1173   gfc_open *open;
1174   match m;
1175
1176   m = gfc_match_char ('(');
1177   if (m == MATCH_NO)
1178     return m;
1179
1180   open = gfc_getmem (sizeof (gfc_open));
1181
1182   m = match_open_element (open);
1183
1184   if (m == MATCH_ERROR)
1185     goto cleanup;
1186   if (m == MATCH_NO)
1187     {
1188       m = gfc_match_expr (&open->unit);
1189       if (m == MATCH_NO)
1190         goto syntax;
1191       if (m == MATCH_ERROR)
1192         goto cleanup;
1193     }
1194
1195   for (;;)
1196     {
1197       if (gfc_match_char (')') == MATCH_YES)
1198         break;
1199       if (gfc_match_char (',') != MATCH_YES)
1200         goto syntax;
1201
1202       m = match_open_element (open);
1203       if (m == MATCH_ERROR)
1204         goto cleanup;
1205       if (m == MATCH_NO)
1206         goto syntax;
1207     }
1208
1209   if (gfc_match_eos () == MATCH_NO)
1210     goto syntax;
1211
1212   if (gfc_pure (NULL))
1213     {
1214       gfc_error ("OPEN statement not allowed in PURE procedure at %C");
1215       goto cleanup;
1216     }
1217
1218   new_st.op = EXEC_OPEN;
1219   new_st.ext.open = open;
1220   return MATCH_YES;
1221
1222 syntax:
1223   gfc_syntax_error (ST_OPEN);
1224
1225 cleanup:
1226   gfc_free_open (open);
1227   return MATCH_ERROR;
1228 }
1229
1230
1231 /* Free a gfc_close structure an all its expressions.  */
1232
1233 void
1234 gfc_free_close (gfc_close * close)
1235 {
1236
1237   if (close == NULL)
1238     return;
1239
1240   gfc_free_expr (close->unit);
1241   gfc_free_expr (close->iomsg);
1242   gfc_free_expr (close->iostat);
1243   gfc_free_expr (close->status);
1244
1245   gfc_free (close);
1246 }
1247
1248
1249 /* Match elements of a CLOSE statement.  */
1250
1251 static match
1252 match_close_element (gfc_close * close)
1253 {
1254   match m;
1255
1256   m = match_etag (&tag_unit, &close->unit);
1257   if (m != MATCH_NO)
1258     return m;
1259   m = match_etag (&tag_status, &close->status);
1260   if (m != MATCH_NO)
1261     return m;
1262   m = match_out_tag (&tag_iomsg, &close->iomsg);
1263   if (m != MATCH_NO)
1264     return m;
1265   m = match_out_tag (&tag_iostat, &close->iostat);
1266   if (m != MATCH_NO)
1267     return m;
1268   m = match_ltag (&tag_err, &close->err);
1269   if (m != MATCH_NO)
1270     return m;
1271
1272   return MATCH_NO;
1273 }
1274
1275
1276 /* Match a CLOSE statement.  */
1277
1278 match
1279 gfc_match_close (void)
1280 {
1281   gfc_close *close;
1282   match m;
1283
1284   m = gfc_match_char ('(');
1285   if (m == MATCH_NO)
1286     return m;
1287
1288   close = gfc_getmem (sizeof (gfc_close));
1289
1290   m = match_close_element (close);
1291
1292   if (m == MATCH_ERROR)
1293     goto cleanup;
1294   if (m == MATCH_NO)
1295     {
1296       m = gfc_match_expr (&close->unit);
1297       if (m == MATCH_NO)
1298         goto syntax;
1299       if (m == MATCH_ERROR)
1300         goto cleanup;
1301     }
1302
1303   for (;;)
1304     {
1305       if (gfc_match_char (')') == MATCH_YES)
1306         break;
1307       if (gfc_match_char (',') != MATCH_YES)
1308         goto syntax;
1309
1310       m = match_close_element (close);
1311       if (m == MATCH_ERROR)
1312         goto cleanup;
1313       if (m == MATCH_NO)
1314         goto syntax;
1315     }
1316
1317   if (gfc_match_eos () == MATCH_NO)
1318     goto syntax;
1319
1320   if (gfc_pure (NULL))
1321     {
1322       gfc_error ("CLOSE statement not allowed in PURE procedure at %C");
1323       goto cleanup;
1324     }
1325
1326   new_st.op = EXEC_CLOSE;
1327   new_st.ext.close = close;
1328   return MATCH_YES;
1329
1330 syntax:
1331   gfc_syntax_error (ST_CLOSE);
1332
1333 cleanup:
1334   gfc_free_close (close);
1335   return MATCH_ERROR;
1336 }
1337
1338
1339 /* Resolve everything in a gfc_close structure.  */
1340
1341 try
1342 gfc_resolve_close (gfc_close * close)
1343 {
1344
1345   RESOLVE_TAG (&tag_unit, close->unit);
1346   RESOLVE_TAG (&tag_iomsg, close->iomsg);
1347   RESOLVE_TAG (&tag_iostat, close->iostat);
1348   RESOLVE_TAG (&tag_status, close->status);
1349
1350   if (gfc_reference_st_label (close->err, ST_LABEL_TARGET) == FAILURE)
1351     return FAILURE;
1352
1353   return SUCCESS;
1354 }
1355
1356
1357 /* Free a gfc_filepos structure.  */
1358
1359 void
1360 gfc_free_filepos (gfc_filepos * fp)
1361 {
1362
1363   gfc_free_expr (fp->unit);
1364   gfc_free_expr (fp->iomsg);
1365   gfc_free_expr (fp->iostat);
1366   gfc_free (fp);
1367 }
1368
1369
1370 /* Match elements of a REWIND, BACKSPACE, ENDFILE, or FLUSH statement.  */
1371
1372 static match
1373 match_file_element (gfc_filepos * fp)
1374 {
1375   match m;
1376
1377   m = match_etag (&tag_unit, &fp->unit);
1378   if (m != MATCH_NO)
1379     return m;
1380   m = match_out_tag (&tag_iomsg, &fp->iomsg);
1381   if (m != MATCH_NO)
1382     return m;
1383   m = match_out_tag (&tag_iostat, &fp->iostat);
1384   if (m != MATCH_NO)
1385     return m;
1386   m = match_ltag (&tag_err, &fp->err);
1387   if (m != MATCH_NO)
1388     return m;
1389
1390   return MATCH_NO;
1391 }
1392
1393
1394 /* Match the second half of the file-positioning statements, REWIND,
1395    BACKSPACE, ENDFILE, or the FLUSH statement.  */
1396
1397 static match
1398 match_filepos (gfc_statement st, gfc_exec_op op)
1399 {
1400   gfc_filepos *fp;
1401   match m;
1402
1403   fp = gfc_getmem (sizeof (gfc_filepos));
1404
1405   if (gfc_match_char ('(') == MATCH_NO)
1406     {
1407       m = gfc_match_expr (&fp->unit);
1408       if (m == MATCH_ERROR)
1409         goto cleanup;
1410       if (m == MATCH_NO)
1411         goto syntax;
1412
1413       goto done;
1414     }
1415
1416   m = match_file_element (fp);
1417   if (m == MATCH_ERROR)
1418     goto done;
1419   if (m == MATCH_NO)
1420     {
1421       m = gfc_match_expr (&fp->unit);
1422       if (m == MATCH_ERROR)
1423         goto done;
1424       if (m == MATCH_NO)
1425         goto syntax;
1426     }
1427
1428   for (;;)
1429     {
1430       if (gfc_match_char (')') == MATCH_YES)
1431         break;
1432       if (gfc_match_char (',') != MATCH_YES)
1433         goto syntax;
1434
1435       m = match_file_element (fp);
1436       if (m == MATCH_ERROR)
1437         goto cleanup;
1438       if (m == MATCH_NO)
1439         goto syntax;
1440     }
1441
1442 done:
1443   if (gfc_match_eos () != MATCH_YES)
1444     goto syntax;
1445
1446   if (gfc_pure (NULL))
1447     {
1448       gfc_error ("%s statement not allowed in PURE procedure at %C",
1449                  gfc_ascii_statement (st));
1450
1451       goto cleanup;
1452     }
1453
1454   new_st.op = op;
1455   new_st.ext.filepos = fp;
1456   return MATCH_YES;
1457
1458 syntax:
1459   gfc_syntax_error (st);
1460
1461 cleanup:
1462   gfc_free_filepos (fp);
1463   return MATCH_ERROR;
1464 }
1465
1466
1467 try
1468 gfc_resolve_filepos (gfc_filepos * fp)
1469 {
1470
1471   RESOLVE_TAG (&tag_unit, fp->unit);
1472   RESOLVE_TAG (&tag_iostat, fp->iostat);
1473   RESOLVE_TAG (&tag_iomsg, fp->iomsg);
1474   if (gfc_reference_st_label (fp->err, ST_LABEL_TARGET) == FAILURE)
1475     return FAILURE;
1476
1477   return SUCCESS;
1478 }
1479
1480
1481 /* Match the file positioning statements: ENDFILE, BACKSPACE, REWIND,
1482    and the FLUSH statement.  */
1483
1484 match
1485 gfc_match_endfile (void)
1486 {
1487
1488   return match_filepos (ST_END_FILE, EXEC_ENDFILE);
1489 }
1490
1491 match
1492 gfc_match_backspace (void)
1493 {
1494
1495   return match_filepos (ST_BACKSPACE, EXEC_BACKSPACE);
1496 }
1497
1498 match
1499 gfc_match_rewind (void)
1500 {
1501
1502   return match_filepos (ST_REWIND, EXEC_REWIND);
1503 }
1504
1505 match
1506 gfc_match_flush (void)
1507 {
1508   if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: FLUSH statement at %C") == FAILURE)
1509     return MATCH_ERROR;
1510
1511   return match_filepos (ST_FLUSH, EXEC_FLUSH);
1512 }
1513
1514 /******************** Data Transfer Statements *********************/
1515
1516 typedef enum
1517 { M_READ, M_WRITE, M_PRINT, M_INQUIRE }
1518 io_kind;
1519
1520
1521 /* Return a default unit number.  */
1522
1523 static gfc_expr *
1524 default_unit (io_kind k)
1525 {
1526   int unit;
1527
1528   if (k == M_READ)
1529     unit = 5;
1530   else
1531     unit = 6;
1532
1533   return gfc_int_expr (unit);
1534 }
1535
1536
1537 /* Match a unit specification for a data transfer statement.  */
1538
1539 static match
1540 match_dt_unit (io_kind k, gfc_dt * dt)
1541 {
1542   gfc_expr *e;
1543
1544   if (gfc_match_char ('*') == MATCH_YES)
1545     {
1546       if (dt->io_unit != NULL)
1547         goto conflict;
1548
1549       dt->io_unit = default_unit (k);
1550       return MATCH_YES;
1551     }
1552
1553   if (gfc_match_expr (&e) == MATCH_YES)
1554     {
1555       if (dt->io_unit != NULL)
1556         {
1557           gfc_free_expr (e);
1558           goto conflict;
1559         }
1560
1561       dt->io_unit = e;
1562       return MATCH_YES;
1563     }
1564
1565   return MATCH_NO;
1566
1567 conflict:
1568   gfc_error ("Duplicate UNIT specification at %C");
1569   return MATCH_ERROR;
1570 }
1571
1572
1573 /* Match a format specification.  */
1574
1575 static match
1576 match_dt_format (gfc_dt * dt)
1577 {
1578   locus where;
1579   gfc_expr *e;
1580   gfc_st_label *label;
1581
1582   where = gfc_current_locus;
1583
1584   if (gfc_match_char ('*') == MATCH_YES)
1585     {
1586       if (dt->format_expr != NULL || dt->format_label != NULL)
1587         goto conflict;
1588
1589       dt->format_label = &format_asterisk;
1590       return MATCH_YES;
1591     }
1592
1593   if (gfc_match_st_label (&label, 0) == MATCH_YES)
1594     {
1595       if (dt->format_expr != NULL || dt->format_label != NULL)
1596         {
1597           gfc_free_st_label (label);
1598           goto conflict;
1599         }
1600
1601       if (gfc_reference_st_label (label, ST_LABEL_FORMAT) == FAILURE)
1602         return MATCH_ERROR;
1603
1604       dt->format_label = label;
1605       return MATCH_YES;
1606     }
1607
1608   if (gfc_match_expr (&e) == MATCH_YES)
1609     {
1610       if (dt->format_expr != NULL || dt->format_label != NULL)
1611         {
1612           gfc_free_expr (e);
1613           goto conflict;
1614         }
1615       dt->format_expr = e;
1616       return MATCH_YES;
1617     }
1618
1619   gfc_current_locus = where;    /* The only case where we have to restore */
1620
1621   return MATCH_NO;
1622
1623 conflict:
1624   gfc_error ("Duplicate format specification at %C");
1625   return MATCH_ERROR;
1626 }
1627
1628
1629 /* Traverse a namelist that is part of a READ statement to make sure
1630    that none of the variables in the namelist are INTENT(IN).  Returns
1631    nonzero if we find such a variable.  */
1632
1633 static int
1634 check_namelist (gfc_symbol * sym)
1635 {
1636   gfc_namelist *p;
1637
1638   for (p = sym->namelist; p; p = p->next)
1639     if (p->sym->attr.intent == INTENT_IN)
1640       {
1641         gfc_error ("Symbol '%s' in namelist '%s' is INTENT(IN) at %C",
1642                    p->sym->name, sym->name);
1643         return 1;
1644       }
1645
1646   return 0;
1647 }
1648
1649
1650 /* Match a single data transfer element.  */
1651
1652 static match
1653 match_dt_element (io_kind k, gfc_dt * dt)
1654 {
1655   char name[GFC_MAX_SYMBOL_LEN + 1];
1656   gfc_symbol *sym;
1657   match m;
1658
1659   if (gfc_match (" unit =") == MATCH_YES)
1660     {
1661       m = match_dt_unit (k, dt);
1662       if (m != MATCH_NO)
1663         return m;
1664     }
1665
1666   if (gfc_match (" fmt =") == MATCH_YES)
1667     {
1668       m = match_dt_format (dt);
1669       if (m != MATCH_NO)
1670         return m;
1671     }
1672
1673   if (gfc_match (" nml = %n", name) == MATCH_YES)
1674     {
1675       if (dt->namelist != NULL)
1676         {
1677           gfc_error ("Duplicate NML specification at %C");
1678           return MATCH_ERROR;
1679         }
1680
1681       if (gfc_find_symbol (name, NULL, 1, &sym))
1682         return MATCH_ERROR;
1683
1684       if (sym == NULL || sym->attr.flavor != FL_NAMELIST)
1685         {
1686           gfc_error ("Symbol '%s' at %C must be a NAMELIST group name",
1687                      sym != NULL ? sym->name : name);
1688           return MATCH_ERROR;
1689         }
1690
1691       dt->namelist = sym;
1692       if (k == M_READ && check_namelist (sym))
1693         return MATCH_ERROR;
1694
1695       return MATCH_YES;
1696     }
1697
1698   m = match_etag (&tag_rec, &dt->rec);
1699   if (m != MATCH_NO)
1700     return m;
1701   m = match_out_tag (&tag_iomsg, &dt->iomsg);
1702   if (m != MATCH_NO)
1703     return m;
1704   m = match_out_tag (&tag_iostat, &dt->iostat);
1705   if (m != MATCH_NO)
1706     return m;
1707   m = match_ltag (&tag_err, &dt->err);
1708   if (m != MATCH_NO)
1709     return m;
1710   m = match_etag (&tag_advance, &dt->advance);
1711   if (m != MATCH_NO)
1712     return m;
1713   m = match_out_tag (&tag_size, &dt->size);
1714   if (m != MATCH_NO)
1715     return m;
1716
1717   m = match_ltag (&tag_end, &dt->end);
1718   if (m == MATCH_YES)
1719     {
1720       if (k == M_WRITE)
1721        {
1722          gfc_error ("END tag at %C not allowed in output statement");
1723          return MATCH_ERROR;
1724        }
1725       dt->end_where = gfc_current_locus;
1726     }
1727   if (m != MATCH_NO)
1728     return m;
1729
1730   m = match_ltag (&tag_eor, &dt->eor);
1731   if (m == MATCH_YES)
1732     dt->eor_where = gfc_current_locus;
1733   if (m != MATCH_NO)
1734     return m;
1735
1736   return MATCH_NO;
1737 }
1738
1739
1740 /* Free a data transfer structure and everything below it.  */
1741
1742 void
1743 gfc_free_dt (gfc_dt * dt)
1744 {
1745
1746   if (dt == NULL)
1747     return;
1748
1749   gfc_free_expr (dt->io_unit);
1750   gfc_free_expr (dt->format_expr);
1751   gfc_free_expr (dt->rec);
1752   gfc_free_expr (dt->advance);
1753   gfc_free_expr (dt->iomsg);
1754   gfc_free_expr (dt->iostat);
1755   gfc_free_expr (dt->size);
1756
1757   gfc_free (dt);
1758 }
1759
1760
1761 /* Resolve everything in a gfc_dt structure.  */
1762
1763 try
1764 gfc_resolve_dt (gfc_dt * dt)
1765 {
1766   gfc_expr *e;
1767
1768   RESOLVE_TAG (&tag_format, dt->format_expr);
1769   RESOLVE_TAG (&tag_rec, dt->rec);
1770   RESOLVE_TAG (&tag_advance, dt->advance);
1771   RESOLVE_TAG (&tag_iomsg, dt->iomsg);
1772   RESOLVE_TAG (&tag_iostat, dt->iostat);
1773   RESOLVE_TAG (&tag_size, dt->size);
1774
1775   e = dt->io_unit;
1776   if (gfc_resolve_expr (e) == SUCCESS
1777       && (e->ts.type != BT_INTEGER
1778           && (e->ts.type != BT_CHARACTER
1779               || e->expr_type != EXPR_VARIABLE)))
1780     {
1781       gfc_error
1782         ("UNIT specification at %L must be an INTEGER expression or a "
1783          "CHARACTER variable", &e->where);
1784       return FAILURE;
1785     }
1786
1787   /* Sanity checks on data transfer statements.  */
1788   if (e->ts.type == BT_CHARACTER)
1789     {
1790       if (gfc_has_vector_index (e))
1791         {
1792           gfc_error ("Internal unit with vector subscript at %L",
1793                      &e->where);
1794           return FAILURE;
1795         }
1796
1797       if (dt->rec != NULL)
1798         {
1799           gfc_error ("REC tag at %L is incompatible with internal file",
1800                      &dt->rec->where);
1801           return FAILURE;
1802         }
1803
1804       if (dt->namelist != NULL)
1805         {
1806           gfc_error ("Internal file at %L is incompatible with namelist",
1807                      &dt->io_unit->where);
1808           return FAILURE;
1809         }
1810
1811       if (dt->advance != NULL)
1812         {
1813           gfc_error ("ADVANCE tag at %L is incompatible with internal file",
1814                      &dt->advance->where);
1815           return FAILURE;
1816         }
1817     }
1818
1819   if (dt->rec != NULL)
1820     {
1821       if (dt->end != NULL)
1822         {
1823           gfc_error ("REC tag at %L is incompatible with END tag",
1824                      &dt->rec->where);
1825           return FAILURE;
1826         }
1827
1828       if (dt->format_label == &format_asterisk)
1829         {
1830           gfc_error
1831             ("END tag at %L is incompatible with list directed format (*)",
1832              &dt->end_where);
1833           return FAILURE;
1834         }
1835
1836       if (dt->namelist != NULL)
1837         {
1838           gfc_error ("REC tag at %L is incompatible with namelist",
1839                      &dt->rec->where);
1840           return FAILURE;
1841         }
1842     }
1843
1844   if (dt->advance != NULL && dt->format_label == &format_asterisk)
1845     {
1846       gfc_error ("ADVANCE tag at %L is incompatible with list directed "
1847                  "format (*)", &dt->advance->where);
1848       return FAILURE;
1849     }
1850
1851   if (dt->eor != 0 && dt->advance == NULL)
1852     {
1853       gfc_error ("EOR tag at %L requires an ADVANCE tag", &dt->eor_where);
1854       return FAILURE;
1855     }
1856
1857   if (dt->size != NULL && dt->advance == NULL)
1858     {
1859       gfc_error ("SIZE tag at %L requires an ADVANCE tag", &dt->size->where);
1860       return FAILURE;
1861     }
1862
1863   /* TODO: Make sure the ADVANCE tag is 'yes' or 'no' if it is a string
1864      constant.  */
1865
1866   if (gfc_reference_st_label (dt->err, ST_LABEL_TARGET) == FAILURE)
1867     return FAILURE;
1868
1869   if (gfc_reference_st_label (dt->end, ST_LABEL_TARGET) == FAILURE)
1870     return FAILURE;
1871
1872   if (gfc_reference_st_label (dt->eor, ST_LABEL_TARGET) == FAILURE)
1873     return FAILURE;
1874
1875   /* Check the format label actually exists.  */
1876   if (dt->format_label && dt->format_label != &format_asterisk
1877       && dt->format_label->defined == ST_LABEL_UNKNOWN)
1878     {
1879       gfc_error ("FORMAT label %d at %L not defined", dt->format_label->value,
1880                  &dt->format_label->where);
1881       return FAILURE;
1882     }
1883   return SUCCESS;
1884 }
1885
1886
1887 /* Given an io_kind, return its name.  */
1888
1889 static const char *
1890 io_kind_name (io_kind k)
1891 {
1892   const char *name;
1893
1894   switch (k)
1895     {
1896     case M_READ:
1897       name = "READ";
1898       break;
1899     case M_WRITE:
1900       name = "WRITE";
1901       break;
1902     case M_PRINT:
1903       name = "PRINT";
1904       break;
1905     case M_INQUIRE:
1906       name = "INQUIRE";
1907       break;
1908     default:
1909       gfc_internal_error ("io_kind_name(): bad I/O-kind");
1910     }
1911
1912   return name;
1913 }
1914
1915
1916 /* Match an IO iteration statement of the form:
1917
1918    ( [<IO element> ,] <IO element>, I = <expr>, <expr> [, <expr> ] )
1919
1920    which is equivalent to a single IO element.  This function is
1921    mutually recursive with match_io_element().  */
1922
1923 static match match_io_element (io_kind k, gfc_code **);
1924
1925 static match
1926 match_io_iterator (io_kind k, gfc_code ** result)
1927 {
1928   gfc_code *head, *tail, *new;
1929   gfc_iterator *iter;
1930   locus old_loc;
1931   match m;
1932   int n;
1933
1934   iter = NULL;
1935   head = NULL;
1936   old_loc = gfc_current_locus;
1937
1938   if (gfc_match_char ('(') != MATCH_YES)
1939     return MATCH_NO;
1940
1941   m = match_io_element (k, &head);
1942   tail = head;
1943
1944   if (m != MATCH_YES || gfc_match_char (',') != MATCH_YES)
1945     {
1946       m = MATCH_NO;
1947       goto cleanup;
1948     }
1949
1950   /* Can't be anything but an IO iterator.  Build a list.  */
1951   iter = gfc_get_iterator ();
1952
1953   for (n = 1;; n++)
1954     {
1955       m = gfc_match_iterator (iter, 0);
1956       if (m == MATCH_ERROR)
1957         goto cleanup;
1958       if (m == MATCH_YES)
1959         {
1960           gfc_check_do_variable (iter->var->symtree);
1961           break;
1962         }
1963
1964       m = match_io_element (k, &new);
1965       if (m == MATCH_ERROR)
1966         goto cleanup;
1967       if (m == MATCH_NO)
1968         {
1969           if (n > 2)
1970             goto syntax;
1971           goto cleanup;
1972         }
1973
1974       tail = gfc_append_code (tail, new);
1975
1976       if (gfc_match_char (',') != MATCH_YES)
1977         {
1978           if (n > 2)
1979             goto syntax;
1980           m = MATCH_NO;
1981           goto cleanup;
1982         }
1983     }
1984
1985   if (gfc_match_char (')') != MATCH_YES)
1986     goto syntax;
1987
1988   new = gfc_get_code ();
1989   new->op = EXEC_DO;
1990   new->ext.iterator = iter;
1991
1992   new->block = gfc_get_code ();
1993   new->block->op = EXEC_DO;
1994   new->block->next = head;
1995
1996   *result = new;
1997   return MATCH_YES;
1998
1999 syntax:
2000   gfc_error ("Syntax error in I/O iterator at %C");
2001   m = MATCH_ERROR;
2002
2003 cleanup:
2004   gfc_free_iterator (iter, 1);
2005   gfc_free_statements (head);
2006   gfc_current_locus = old_loc;
2007   return m;
2008 }
2009
2010
2011 /* Match a single element of an IO list, which is either a single
2012    expression or an IO Iterator.  */
2013
2014 static match
2015 match_io_element (io_kind k, gfc_code ** cpp)
2016 {
2017   gfc_expr *expr;
2018   gfc_code *cp;
2019   match m;
2020
2021   expr = NULL;
2022
2023   m = match_io_iterator (k, cpp);
2024   if (m == MATCH_YES)
2025     return MATCH_YES;
2026
2027   if (k == M_READ)
2028     {
2029       m = gfc_match_variable (&expr, 0);
2030       if (m == MATCH_NO)
2031         gfc_error ("Expected variable in READ statement at %C");
2032     }
2033   else
2034     {
2035       m = gfc_match_expr (&expr);
2036       if (m == MATCH_NO)
2037         gfc_error ("Expected expression in %s statement at %C",
2038                    io_kind_name (k));
2039     }
2040
2041   if (m == MATCH_YES)
2042     switch (k)
2043       {
2044       case M_READ:
2045         if (expr->symtree->n.sym->attr.intent == INTENT_IN)
2046           {
2047             gfc_error
2048               ("Variable '%s' in input list at %C cannot be INTENT(IN)",
2049                expr->symtree->n.sym->name);
2050             m = MATCH_ERROR;
2051           }
2052
2053         if (gfc_pure (NULL)
2054             && gfc_impure_variable (expr->symtree->n.sym)
2055             && current_dt->io_unit->ts.type == BT_CHARACTER)
2056           {
2057             gfc_error ("Cannot read to variable '%s' in PURE procedure at %C",
2058                        expr->symtree->n.sym->name);
2059             m = MATCH_ERROR;
2060           }
2061
2062         if (gfc_check_do_variable (expr->symtree))
2063           m = MATCH_ERROR;
2064
2065         break;
2066
2067       case M_WRITE:
2068         if (current_dt->io_unit->ts.type == BT_CHARACTER
2069             && gfc_pure (NULL)
2070             && current_dt->io_unit->expr_type == EXPR_VARIABLE
2071             && gfc_impure_variable (current_dt->io_unit->symtree->n.sym))
2072           {
2073             gfc_error
2074               ("Cannot write to internal file unit '%s' at %C inside a "
2075                "PURE procedure", current_dt->io_unit->symtree->n.sym->name);
2076             m = MATCH_ERROR;
2077           }
2078
2079         break;
2080
2081       default:
2082         break;
2083       }
2084
2085   if (m != MATCH_YES)
2086     {
2087       gfc_free_expr (expr);
2088       return MATCH_ERROR;
2089     }
2090
2091   cp = gfc_get_code ();
2092   cp->op = EXEC_TRANSFER;
2093   cp->expr = expr;
2094
2095   *cpp = cp;
2096   return MATCH_YES;
2097 }
2098
2099
2100 /* Match an I/O list, building gfc_code structures as we go.  */
2101
2102 static match
2103 match_io_list (io_kind k, gfc_code ** head_p)
2104 {
2105   gfc_code *head, *tail, *new;
2106   match m;
2107
2108   *head_p = head = tail = NULL;
2109   if (gfc_match_eos () == MATCH_YES)
2110     return MATCH_YES;
2111
2112   for (;;)
2113     {
2114       m = match_io_element (k, &new);
2115       if (m == MATCH_ERROR)
2116         goto cleanup;
2117       if (m == MATCH_NO)
2118         goto syntax;
2119
2120       tail = gfc_append_code (tail, new);
2121       if (head == NULL)
2122         head = new;
2123
2124       if (gfc_match_eos () == MATCH_YES)
2125         break;
2126       if (gfc_match_char (',') != MATCH_YES)
2127         goto syntax;
2128     }
2129
2130   *head_p = head;
2131   return MATCH_YES;
2132
2133 syntax:
2134   gfc_error ("Syntax error in %s statement at %C", io_kind_name (k));
2135
2136 cleanup:
2137   gfc_free_statements (head);
2138   return MATCH_ERROR;
2139 }
2140
2141
2142 /* Attach the data transfer end node.  */
2143
2144 static void
2145 terminate_io (gfc_code * io_code)
2146 {
2147   gfc_code *c;
2148
2149   if (io_code == NULL)
2150     io_code = &new_st;
2151
2152   c = gfc_get_code ();
2153   c->op = EXEC_DT_END;
2154
2155   /* Point to structure that is already there */
2156   c->ext.dt = new_st.ext.dt;
2157   gfc_append_code (io_code, c);
2158 }
2159
2160
2161 /* Match a READ, WRITE or PRINT statement.  */
2162
2163 static match
2164 match_io (io_kind k)
2165 {
2166   char name[GFC_MAX_SYMBOL_LEN + 1];
2167   gfc_code *io_code;
2168   gfc_symbol *sym;
2169   gfc_expr *expr;
2170   int comma_flag, c;
2171   locus where;
2172   gfc_dt *dt;
2173   match m;
2174
2175   comma_flag = 0;
2176   current_dt = dt = gfc_getmem (sizeof (gfc_dt));
2177   if (gfc_match_char ('(') == MATCH_NO)
2178     {
2179       where = gfc_current_locus;
2180       if (k == M_WRITE)
2181         goto syntax;
2182       else if (k == M_PRINT)
2183         {
2184           /* Treat the non-standard case of PRINT namelist.  */
2185           if ((gfc_current_form == FORM_FIXED || gfc_peek_char () == ' ')
2186               && gfc_match_name (name) == MATCH_YES)
2187             {
2188               gfc_find_symbol (name, NULL, 1, &sym);
2189               if (sym && sym->attr.flavor == FL_NAMELIST)
2190                 {
2191                   if (gfc_notify_std (GFC_STD_GNU, "PRINT namelist at "
2192                                       "%C is an extension") == FAILURE)
2193                     {
2194                       m = MATCH_ERROR;
2195                       goto cleanup;
2196                     }
2197                   if (gfc_match_eos () == MATCH_NO)
2198                     {
2199                       gfc_error ("Namelist followed by I/O list at %C");
2200                       m = MATCH_ERROR;
2201                       goto cleanup;
2202                     }
2203
2204                   dt->io_unit = default_unit (k);
2205                   dt->namelist = sym;
2206                   goto get_io_list;
2207                 }
2208               else
2209                 gfc_current_locus = where;
2210             }
2211         }
2212
2213       if (gfc_current_form == FORM_FREE)
2214         {
2215           c = gfc_peek_char();
2216           if (c != ' ' && c != '*' && c != '\'' && c != '"')
2217             {
2218               m = MATCH_NO;
2219               goto cleanup;
2220             }
2221         }
2222
2223       m = match_dt_format (dt);
2224       if (m == MATCH_ERROR)
2225         goto cleanup;
2226       if (m == MATCH_NO)
2227         goto syntax;
2228
2229       comma_flag = 1;
2230       dt->io_unit = default_unit (k);
2231       goto get_io_list;
2232     }
2233
2234   /* Match a control list */
2235   if (match_dt_element (k, dt) == MATCH_YES)
2236     goto next;
2237   if (match_dt_unit (k, dt) != MATCH_YES)
2238     goto loop;
2239
2240   if (gfc_match_char (')') == MATCH_YES)
2241     goto get_io_list;
2242   if (gfc_match_char (',') != MATCH_YES)
2243     goto syntax;
2244
2245   m = match_dt_element (k, dt);
2246   if (m == MATCH_YES)
2247     goto next;
2248   if (m == MATCH_ERROR)
2249     goto cleanup;
2250
2251   m = match_dt_format (dt);
2252   if (m == MATCH_YES)
2253     goto next;
2254   if (m == MATCH_ERROR)
2255     goto cleanup;
2256
2257   where = gfc_current_locus;
2258
2259   m = gfc_match_name (name);
2260   if (m == MATCH_YES)
2261     {
2262       gfc_find_symbol (name, NULL, 1, &sym);
2263       if (sym && sym->attr.flavor == FL_NAMELIST)
2264         {
2265           dt->namelist = sym;
2266           if (k == M_READ && check_namelist (sym))
2267             {
2268               m = MATCH_ERROR;
2269               goto cleanup;
2270             }
2271           goto next;
2272         }
2273     }
2274
2275   gfc_current_locus = where;
2276
2277   goto loop;                    /* No matches, try regular elements */
2278
2279 next:
2280   if (gfc_match_char (')') == MATCH_YES)
2281     goto get_io_list;
2282   if (gfc_match_char (',') != MATCH_YES)
2283     goto syntax;
2284
2285 loop:
2286   for (;;)
2287     {
2288       m = match_dt_element (k, dt);
2289       if (m == MATCH_NO)
2290         goto syntax;
2291       if (m == MATCH_ERROR)
2292         goto cleanup;
2293
2294       if (gfc_match_char (')') == MATCH_YES)
2295         break;
2296       if (gfc_match_char (',') != MATCH_YES)
2297         goto syntax;
2298     }
2299
2300 get_io_list:
2301   /* Optional leading comma (non-standard).  */
2302   if (!comma_flag
2303       && gfc_match_char (',') == MATCH_YES
2304       && k == M_WRITE
2305       && gfc_notify_std (GFC_STD_GNU, "Extension: Comma before output "
2306                          "item list at %C is an extension") == FAILURE)
2307     return MATCH_ERROR;
2308
2309   io_code = NULL;
2310   if (gfc_match_eos () != MATCH_YES)
2311     {
2312       if (comma_flag && gfc_match_char (',') != MATCH_YES)
2313         {
2314           gfc_error ("Expected comma in I/O list at %C");
2315           m = MATCH_ERROR;
2316           goto cleanup;
2317         }
2318
2319       m = match_io_list (k, &io_code);
2320       if (m == MATCH_ERROR)
2321         goto cleanup;
2322       if (m == MATCH_NO)
2323         goto syntax;
2324     }
2325
2326   /* A full IO statement has been matched.  */
2327   if (dt->io_unit->expr_type == EXPR_VARIABLE
2328       && k == M_WRITE
2329       && dt->io_unit->ts.type == BT_CHARACTER
2330       && dt->io_unit->symtree->n.sym->attr.intent == INTENT_IN)
2331     {
2332       gfc_error ("Internal file '%s' at %L is INTENT(IN)",
2333                  dt->io_unit->symtree->n.sym->name, &dt->io_unit->where);
2334       m = MATCH_ERROR;
2335       goto cleanup;
2336     }
2337
2338   expr = dt->format_expr;
2339
2340   if (expr != NULL && expr->expr_type == EXPR_CONSTANT)
2341     check_format_string (expr);
2342
2343   if (gfc_pure (NULL)
2344       && (k == M_READ || k == M_WRITE)
2345       && dt->io_unit->ts.type != BT_CHARACTER)
2346     {
2347       gfc_error
2348         ("io-unit in %s statement at %C must be an internal file in a "
2349          "PURE procedure", io_kind_name (k));
2350       m = MATCH_ERROR;
2351       goto cleanup;
2352     }
2353
2354   new_st.op = (k == M_READ) ? EXEC_READ : EXEC_WRITE;
2355   new_st.ext.dt = dt;
2356   new_st.next = io_code;
2357
2358   terminate_io (io_code);
2359
2360   return MATCH_YES;
2361
2362 syntax:
2363   gfc_error ("Syntax error in %s statement at %C", io_kind_name (k));
2364   m = MATCH_ERROR;
2365
2366 cleanup:
2367   gfc_free_dt (dt);
2368   return m;
2369 }
2370
2371
2372 match
2373 gfc_match_read (void)
2374 {
2375   return match_io (M_READ);
2376 }
2377
2378 match
2379 gfc_match_write (void)
2380 {
2381   return match_io (M_WRITE);
2382 }
2383
2384 match
2385 gfc_match_print (void)
2386 {
2387   match m;
2388
2389   m = match_io (M_PRINT);
2390   if (m != MATCH_YES)
2391     return m;
2392
2393   if (gfc_pure (NULL))
2394     {
2395       gfc_error ("PRINT statement at %C not allowed within PURE procedure");
2396       return MATCH_ERROR;
2397     }
2398
2399   return MATCH_YES;
2400 }
2401
2402
2403 /* Free a gfc_inquire structure.  */
2404
2405 void
2406 gfc_free_inquire (gfc_inquire * inquire)
2407 {
2408
2409   if (inquire == NULL)
2410     return;
2411
2412   gfc_free_expr (inquire->unit);
2413   gfc_free_expr (inquire->file);
2414   gfc_free_expr (inquire->iomsg);
2415   gfc_free_expr (inquire->iostat);
2416   gfc_free_expr (inquire->exist);
2417   gfc_free_expr (inquire->opened);
2418   gfc_free_expr (inquire->number);
2419   gfc_free_expr (inquire->named);
2420   gfc_free_expr (inquire->name);
2421   gfc_free_expr (inquire->access);
2422   gfc_free_expr (inquire->sequential);
2423   gfc_free_expr (inquire->direct);
2424   gfc_free_expr (inquire->form);
2425   gfc_free_expr (inquire->formatted);
2426   gfc_free_expr (inquire->unformatted);
2427   gfc_free_expr (inquire->recl);
2428   gfc_free_expr (inquire->nextrec);
2429   gfc_free_expr (inquire->blank);
2430   gfc_free_expr (inquire->position);
2431   gfc_free_expr (inquire->action);
2432   gfc_free_expr (inquire->read);
2433   gfc_free_expr (inquire->write);
2434   gfc_free_expr (inquire->readwrite);
2435   gfc_free_expr (inquire->delim);
2436   gfc_free_expr (inquire->pad);
2437   gfc_free_expr (inquire->iolength);
2438
2439   gfc_free (inquire);
2440 }
2441
2442
2443 /* Match an element of an INQUIRE statement.  */
2444
2445 #define RETM   if (m != MATCH_NO) return m;
2446
2447 static match
2448 match_inquire_element (gfc_inquire * inquire)
2449 {
2450   match m;
2451
2452   m = match_etag (&tag_unit, &inquire->unit);
2453   RETM m = match_etag (&tag_file, &inquire->file);
2454   RETM m = match_ltag (&tag_err, &inquire->err);
2455   RETM m = match_out_tag (&tag_iomsg, &inquire->iomsg);
2456   RETM m = match_out_tag (&tag_iostat, &inquire->iostat);
2457   RETM m = match_vtag (&tag_exist, &inquire->exist);
2458   RETM m = match_vtag (&tag_opened, &inquire->opened);
2459   RETM m = match_vtag (&tag_named, &inquire->named);
2460   RETM m = match_vtag (&tag_name, &inquire->name);
2461   RETM m = match_out_tag (&tag_number, &inquire->number);
2462   RETM m = match_vtag (&tag_s_access, &inquire->access);
2463   RETM m = match_vtag (&tag_sequential, &inquire->sequential);
2464   RETM m = match_vtag (&tag_direct, &inquire->direct);
2465   RETM m = match_vtag (&tag_s_form, &inquire->form);
2466   RETM m = match_vtag (&tag_formatted, &inquire->formatted);
2467   RETM m = match_vtag (&tag_unformatted, &inquire->unformatted);
2468   RETM m = match_out_tag (&tag_s_recl, &inquire->recl);
2469   RETM m = match_out_tag (&tag_nextrec, &inquire->nextrec);
2470   RETM m = match_vtag (&tag_s_blank, &inquire->blank);
2471   RETM m = match_vtag (&tag_s_position, &inquire->position);
2472   RETM m = match_vtag (&tag_s_action, &inquire->action);
2473   RETM m = match_vtag (&tag_read, &inquire->read);
2474   RETM m = match_vtag (&tag_write, &inquire->write);
2475   RETM m = match_vtag (&tag_readwrite, &inquire->readwrite);
2476   RETM m = match_vtag (&tag_s_delim, &inquire->delim);
2477   RETM m = match_vtag (&tag_s_pad, &inquire->pad);
2478   RETM m = match_vtag (&tag_iolength, &inquire->iolength);
2479   RETM return MATCH_NO;
2480 }
2481
2482 #undef RETM
2483
2484
2485 match
2486 gfc_match_inquire (void)
2487 {
2488   gfc_inquire *inquire;
2489   gfc_code *code;
2490   match m;
2491   locus loc;
2492
2493   m = gfc_match_char ('(');
2494   if (m == MATCH_NO)
2495     return m;
2496
2497   inquire = gfc_getmem (sizeof (gfc_inquire));
2498
2499   loc = gfc_current_locus;
2500
2501   m = match_inquire_element (inquire);
2502   if (m == MATCH_ERROR)
2503     goto cleanup;
2504   if (m == MATCH_NO)
2505     {
2506       m = gfc_match_expr (&inquire->unit);
2507       if (m == MATCH_ERROR)
2508         goto cleanup;
2509       if (m == MATCH_NO)
2510         goto syntax;
2511     }
2512
2513   /* See if we have the IOLENGTH form of the inquire statement.  */
2514   if (inquire->iolength != NULL)
2515     {
2516       if (gfc_match_char (')') != MATCH_YES)
2517         goto syntax;
2518
2519       m = match_io_list (M_INQUIRE, &code);
2520       if (m == MATCH_ERROR)
2521         goto cleanup;
2522       if (m == MATCH_NO)
2523         goto syntax;
2524
2525       terminate_io (code);
2526
2527       new_st.op = EXEC_IOLENGTH;
2528       new_st.expr = inquire->iolength;
2529       new_st.ext.inquire = inquire;
2530
2531       if (gfc_pure (NULL))
2532         {
2533           gfc_free_statements (code);
2534           gfc_error ("INQUIRE statement not allowed in PURE procedure at %C");
2535           return MATCH_ERROR;
2536         }
2537
2538       new_st.next = code;
2539       return MATCH_YES;
2540     }
2541
2542   /* At this point, we have the non-IOLENGTH inquire statement.  */
2543   for (;;)
2544     {
2545       if (gfc_match_char (')') == MATCH_YES)
2546         break;
2547       if (gfc_match_char (',') != MATCH_YES)
2548         goto syntax;
2549
2550       m = match_inquire_element (inquire);
2551       if (m == MATCH_ERROR)
2552         goto cleanup;
2553       if (m == MATCH_NO)
2554         goto syntax;
2555
2556       if (inquire->iolength != NULL)
2557         {
2558           gfc_error ("IOLENGTH tag invalid in INQUIRE statement at %C");
2559           goto cleanup;
2560         }
2561     }
2562
2563   if (gfc_match_eos () != MATCH_YES)
2564     goto syntax;
2565
2566   if (inquire->unit != NULL && inquire->file != NULL)
2567     {
2568       gfc_error ("INQUIRE statement at %L cannot contain both FILE and"
2569                  " UNIT specifiers", &loc);
2570       goto cleanup;
2571     }
2572
2573   if (inquire->unit == NULL && inquire->file == NULL)
2574     {
2575       gfc_error ("INQUIRE statement at %L requires either FILE or"
2576                      " UNIT specifier", &loc);
2577       goto cleanup;
2578     }
2579
2580   if (gfc_pure (NULL))
2581     {
2582       gfc_error ("INQUIRE statement not allowed in PURE procedure at %C");
2583       goto cleanup;
2584     }
2585
2586   new_st.op = EXEC_INQUIRE;
2587   new_st.ext.inquire = inquire;
2588   return MATCH_YES;
2589
2590 syntax:
2591   gfc_syntax_error (ST_INQUIRE);
2592
2593 cleanup:
2594   gfc_free_inquire (inquire);
2595   return MATCH_ERROR;
2596 }
2597
2598
2599 /* Resolve everything in a gfc_inquire structure.  */
2600
2601 try
2602 gfc_resolve_inquire (gfc_inquire * inquire)
2603 {
2604
2605   RESOLVE_TAG (&tag_unit, inquire->unit);
2606   RESOLVE_TAG (&tag_file, inquire->file);
2607   RESOLVE_TAG (&tag_iomsg, inquire->iomsg);
2608   RESOLVE_TAG (&tag_iostat, inquire->iostat);
2609   RESOLVE_TAG (&tag_exist, inquire->exist);
2610   RESOLVE_TAG (&tag_opened, inquire->opened);
2611   RESOLVE_TAG (&tag_number, inquire->number);
2612   RESOLVE_TAG (&tag_named, inquire->named);
2613   RESOLVE_TAG (&tag_name, inquire->name);
2614   RESOLVE_TAG (&tag_s_access, inquire->access);
2615   RESOLVE_TAG (&tag_sequential, inquire->sequential);
2616   RESOLVE_TAG (&tag_direct, inquire->direct);
2617   RESOLVE_TAG (&tag_s_form, inquire->form);
2618   RESOLVE_TAG (&tag_formatted, inquire->formatted);
2619   RESOLVE_TAG (&tag_unformatted, inquire->unformatted);
2620   RESOLVE_TAG (&tag_s_recl, inquire->recl);
2621   RESOLVE_TAG (&tag_nextrec, inquire->nextrec);
2622   RESOLVE_TAG (&tag_s_blank, inquire->blank);
2623   RESOLVE_TAG (&tag_s_position, inquire->position);
2624   RESOLVE_TAG (&tag_s_action, inquire->action);
2625   RESOLVE_TAG (&tag_read, inquire->read);
2626   RESOLVE_TAG (&tag_write, inquire->write);
2627   RESOLVE_TAG (&tag_readwrite, inquire->readwrite);
2628   RESOLVE_TAG (&tag_s_delim, inquire->delim);
2629   RESOLVE_TAG (&tag_s_pad, inquire->pad);
2630   RESOLVE_TAG (&tag_iolength, inquire->iolength);
2631
2632   if (gfc_reference_st_label (inquire->err, ST_LABEL_TARGET) == FAILURE)
2633     return FAILURE;
2634
2635   return SUCCESS;
2636 }