OSDN Git Service

2008-09-01 Daniel Kraft <d@domob.eu>
[pf3gnuchains/gcc-fork.git] / gcc / fortran / primary.c
1 /* Primary expression subroutines
2    Copyright (C) 2000, 2001, 2002, 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 "arith.h"
27 #include "match.h"
28 #include "parse.h"
29 #include "toplev.h"
30
31 /* Matches a kind-parameter expression, which is either a named
32    symbolic constant or a nonnegative integer constant.  If
33    successful, sets the kind value to the correct integer.  */
34
35 static match
36 match_kind_param (int *kind)
37 {
38   char name[GFC_MAX_SYMBOL_LEN + 1];
39   gfc_symbol *sym;
40   const char *p;
41   match m;
42
43   m = gfc_match_small_literal_int (kind, NULL);
44   if (m != MATCH_NO)
45     return m;
46
47   m = gfc_match_name (name);
48   if (m != MATCH_YES)
49     return m;
50
51   if (gfc_find_symbol (name, NULL, 1, &sym))
52     return MATCH_ERROR;
53
54   if (sym == NULL)
55     return MATCH_NO;
56
57   if (sym->attr.flavor != FL_PARAMETER)
58     return MATCH_NO;
59
60   p = gfc_extract_int (sym->value, kind);
61   if (p != NULL)
62     return MATCH_NO;
63
64   gfc_set_sym_referenced (sym);
65
66   if (*kind < 0)
67     return MATCH_NO;
68
69   return MATCH_YES;
70 }
71
72
73 /* Get a trailing kind-specification for non-character variables.
74    Returns:
75       the integer kind value or:
76       -1 if an error was generated
77       -2 if no kind was found */
78
79 static int
80 get_kind (void)
81 {
82   int kind;
83   match m;
84
85   if (gfc_match_char ('_') != MATCH_YES)
86     return -2;
87
88   m = match_kind_param (&kind);
89   if (m == MATCH_NO)
90     gfc_error ("Missing kind-parameter at %C");
91
92   return (m == MATCH_YES) ? kind : -1;
93 }
94
95
96 /* Given a character and a radix, see if the character is a valid
97    digit in that radix.  */
98
99 int
100 gfc_check_digit (char c, int radix)
101 {
102   int r;
103
104   switch (radix)
105     {
106     case 2:
107       r = ('0' <= c && c <= '1');
108       break;
109
110     case 8:
111       r = ('0' <= c && c <= '7');
112       break;
113
114     case 10:
115       r = ('0' <= c && c <= '9');
116       break;
117
118     case 16:
119       r = ISXDIGIT (c);
120       break;
121
122     default:
123       gfc_internal_error ("gfc_check_digit(): bad radix");
124     }
125
126   return r;
127 }
128
129
130 /* Match the digit string part of an integer if signflag is not set,
131    the signed digit string part if signflag is set.  If the buffer 
132    is NULL, we just count characters for the resolution pass.  Returns 
133    the number of characters matched, -1 for no match.  */
134
135 static int
136 match_digits (int signflag, int radix, char *buffer)
137 {
138   locus old_loc;
139   int length;
140   char c;
141
142   length = 0;
143   c = gfc_next_ascii_char ();
144
145   if (signflag && (c == '+' || c == '-'))
146     {
147       if (buffer != NULL)
148         *buffer++ = c;
149       gfc_gobble_whitespace ();
150       c = gfc_next_ascii_char ();
151       length++;
152     }
153
154   if (!gfc_check_digit (c, radix))
155     return -1;
156
157   length++;
158   if (buffer != NULL)
159     *buffer++ = c;
160
161   for (;;)
162     {
163       old_loc = gfc_current_locus;
164       c = gfc_next_ascii_char ();
165
166       if (!gfc_check_digit (c, radix))
167         break;
168
169       if (buffer != NULL)
170         *buffer++ = c;
171       length++;
172     }
173
174   gfc_current_locus = old_loc;
175
176   return length;
177 }
178
179
180 /* Match an integer (digit string and optional kind).  
181    A sign will be accepted if signflag is set.  */
182
183 static match
184 match_integer_constant (gfc_expr **result, int signflag)
185 {
186   int length, kind;
187   locus old_loc;
188   char *buffer;
189   gfc_expr *e;
190
191   old_loc = gfc_current_locus;
192   gfc_gobble_whitespace ();
193
194   length = match_digits (signflag, 10, NULL);
195   gfc_current_locus = old_loc;
196   if (length == -1)
197     return MATCH_NO;
198
199   buffer = (char *) alloca (length + 1);
200   memset (buffer, '\0', length + 1);
201
202   gfc_gobble_whitespace ();
203
204   match_digits (signflag, 10, buffer);
205
206   kind = get_kind ();
207   if (kind == -2)
208     kind = gfc_default_integer_kind;
209   if (kind == -1)
210     return MATCH_ERROR;
211
212   if (gfc_validate_kind (BT_INTEGER, kind, true) < 0)
213     {
214       gfc_error ("Integer kind %d at %C not available", kind);
215       return MATCH_ERROR;
216     }
217
218   e = gfc_convert_integer (buffer, kind, 10, &gfc_current_locus);
219
220   if (gfc_range_check (e) != ARITH_OK)
221     {
222       gfc_error ("Integer too big for its kind at %C. This check can be "
223                  "disabled with the option -fno-range-check");
224
225       gfc_free_expr (e);
226       return MATCH_ERROR;
227     }
228
229   *result = e;
230   return MATCH_YES;
231 }
232
233
234 /* Match a Hollerith constant.  */
235
236 static match
237 match_hollerith_constant (gfc_expr **result)
238 {
239   locus old_loc;
240   gfc_expr *e = NULL;
241   const char *msg;
242   int num;
243   int i;  
244
245   old_loc = gfc_current_locus;
246   gfc_gobble_whitespace ();
247
248   if (match_integer_constant (&e, 0) == MATCH_YES
249       && gfc_match_char ('h') == MATCH_YES)
250     {
251       if (gfc_notify_std (GFC_STD_LEGACY, "Extension: Hollerith constant "
252                           "at %C") == FAILURE)
253         goto cleanup;
254
255       msg = gfc_extract_int (e, &num);
256       if (msg != NULL)
257         {
258           gfc_error (msg);
259           goto cleanup;
260         }
261       if (num == 0)
262         {
263           gfc_error ("Invalid Hollerith constant: %L must contain at least "
264                      "one character", &old_loc);
265           goto cleanup;
266         }
267       if (e->ts.kind != gfc_default_integer_kind)
268         {
269           gfc_error ("Invalid Hollerith constant: Integer kind at %L "
270                      "should be default", &old_loc);
271           goto cleanup;
272         }
273       else
274         {
275           gfc_free_expr (e);
276           e = gfc_constant_result (BT_HOLLERITH, gfc_default_character_kind,
277                                    &gfc_current_locus);
278
279           e->representation.string = XCNEWVEC (char, num + 1);
280
281           for (i = 0; i < num; i++)
282             {
283               gfc_char_t c = gfc_next_char_literal (1);
284               if (! gfc_wide_fits_in_byte (c))
285                 {
286                   gfc_error ("Invalid Hollerith constant at %L contains a "
287                              "wide character", &old_loc);
288                   goto cleanup;
289                 }
290
291               e->representation.string[i] = (unsigned char) c;
292             }
293
294           e->representation.string[num] = '\0';
295           e->representation.length = num;
296
297           *result = e;
298           return MATCH_YES;
299         }
300     }
301
302   gfc_free_expr (e);
303   gfc_current_locus = old_loc;
304   return MATCH_NO;
305
306 cleanup:
307   gfc_free_expr (e);
308   return MATCH_ERROR;
309 }
310
311
312 /* Match a binary, octal or hexadecimal constant that can be found in
313    a DATA statement.  The standard permits b'010...', o'73...', and
314    z'a1...' where b, o, and z can be capital letters.  This function
315    also accepts postfixed forms of the constants: '01...'b, '73...'o,
316    and 'a1...'z.  An additional extension is the use of x for z.  */
317
318 static match
319 match_boz_constant (gfc_expr **result)
320 {
321   int radix, length, x_hex, kind;
322   locus old_loc, start_loc;
323   char *buffer, post, delim;
324   gfc_expr *e;
325
326   start_loc = old_loc = gfc_current_locus;
327   gfc_gobble_whitespace ();
328
329   x_hex = 0;
330   switch (post = gfc_next_ascii_char ())
331     {
332     case 'b':
333       radix = 2;
334       post = 0;
335       break;
336     case 'o':
337       radix = 8;
338       post = 0;
339       break;
340     case 'x':
341       x_hex = 1;
342       /* Fall through.  */
343     case 'z':
344       radix = 16;
345       post = 0;
346       break;
347     case '\'':
348       /* Fall through.  */
349     case '\"':
350       delim = post;
351       post = 1;
352       radix = 16;  /* Set to accept any valid digit string.  */
353       break;
354     default:
355       goto backup;
356     }
357
358   /* No whitespace allowed here.  */
359
360   if (post == 0)
361     delim = gfc_next_ascii_char ();
362
363   if (delim != '\'' && delim != '\"')
364     goto backup;
365
366   if (x_hex
367       && (gfc_notify_std (GFC_STD_GNU, "Extension: Hexadecimal "
368                           "constant at %C uses non-standard syntax")
369           == FAILURE))
370       return MATCH_ERROR;
371
372   old_loc = gfc_current_locus;
373
374   length = match_digits (0, radix, NULL);
375   if (length == -1)
376     {
377       gfc_error ("Empty set of digits in BOZ constant at %C");
378       return MATCH_ERROR;
379     }
380
381   if (gfc_next_ascii_char () != delim)
382     {
383       gfc_error ("Illegal character in BOZ constant at %C");
384       return MATCH_ERROR;
385     }
386
387   if (post == 1)
388     {
389       switch (gfc_next_ascii_char ())
390         {
391         case 'b':
392           radix = 2;
393           break;
394         case 'o':
395           radix = 8;
396           break;
397         case 'x':
398           /* Fall through.  */
399         case 'z':
400           radix = 16;
401           break;
402         default:
403           goto backup;
404         }
405
406       if (gfc_notify_std (GFC_STD_GNU, "Extension: BOZ constant "
407                           "at %C uses non-standard postfix syntax")
408           == FAILURE)
409         return MATCH_ERROR;
410     }
411
412   gfc_current_locus = old_loc;
413
414   buffer = (char *) alloca (length + 1);
415   memset (buffer, '\0', length + 1);
416
417   match_digits (0, radix, buffer);
418   gfc_next_ascii_char ();    /* Eat delimiter.  */
419   if (post == 1)
420     gfc_next_ascii_char ();  /* Eat postfixed b, o, z, or x.  */
421
422   /* In section 5.2.5 and following C567 in the Fortran 2003 standard, we find
423      "If a data-stmt-constant is a boz-literal-constant, the corresponding
424      variable shall be of type integer.  The boz-literal-constant is treated
425      as if it were an int-literal-constant with a kind-param that specifies
426      the representation method with the largest decimal exponent range
427      supported by the processor."  */
428
429   kind = gfc_max_integer_kind;
430   e = gfc_convert_integer (buffer, kind, radix, &gfc_current_locus);
431
432   /* Mark as boz variable.  */
433   e->is_boz = 1;
434
435   if (gfc_range_check (e) != ARITH_OK)
436     {
437       gfc_error ("Integer too big for integer kind %i at %C", kind);
438       gfc_free_expr (e);
439       return MATCH_ERROR;
440     }
441
442   if (!gfc_in_match_data ()
443       && (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: BOZ used outside a DATA "
444                           "statement at %C")
445           == FAILURE))
446       return MATCH_ERROR;
447
448   *result = e;
449   return MATCH_YES;
450
451 backup:
452   gfc_current_locus = start_loc;
453   return MATCH_NO;
454 }
455
456
457 /* Match a real constant of some sort.  Allow a signed constant if signflag
458    is nonzero.  */
459
460 static match
461 match_real_constant (gfc_expr **result, int signflag)
462 {
463   int kind, count, seen_dp, seen_digits;
464   locus old_loc, temp_loc;
465   char *p, *buffer, c, exp_char;
466   gfc_expr *e;
467   bool negate;
468
469   old_loc = gfc_current_locus;
470   gfc_gobble_whitespace ();
471
472   e = NULL;
473
474   count = 0;
475   seen_dp = 0;
476   seen_digits = 0;
477   exp_char = ' ';
478   negate = FALSE;
479
480   c = gfc_next_ascii_char ();
481   if (signflag && (c == '+' || c == '-'))
482     {
483       if (c == '-')
484         negate = TRUE;
485
486       gfc_gobble_whitespace ();
487       c = gfc_next_ascii_char ();
488     }
489
490   /* Scan significand.  */
491   for (;; c = gfc_next_ascii_char (), count++)
492     {
493       if (c == '.')
494         {
495           if (seen_dp)
496             goto done;
497
498           /* Check to see if "." goes with a following operator like 
499              ".eq.".  */
500           temp_loc = gfc_current_locus;
501           c = gfc_next_ascii_char ();
502
503           if (c == 'e' || c == 'd' || c == 'q')
504             {
505               c = gfc_next_ascii_char ();
506               if (c == '.')
507                 goto done;      /* Operator named .e. or .d.  */
508             }
509
510           if (ISALPHA (c))
511             goto done;          /* Distinguish 1.e9 from 1.eq.2 */
512
513           gfc_current_locus = temp_loc;
514           seen_dp = 1;
515           continue;
516         }
517
518       if (ISDIGIT (c))
519         {
520           seen_digits = 1;
521           continue;
522         }
523
524       break;
525     }
526
527   if (!seen_digits || (c != 'e' && c != 'd' && c != 'q'))
528     goto done;
529   exp_char = c;
530
531   /* Scan exponent.  */
532   c = gfc_next_ascii_char ();
533   count++;
534
535   if (c == '+' || c == '-')
536     {                           /* optional sign */
537       c = gfc_next_ascii_char ();
538       count++;
539     }
540
541   if (!ISDIGIT (c))
542     {
543       gfc_error ("Missing exponent in real number at %C");
544       return MATCH_ERROR;
545     }
546
547   while (ISDIGIT (c))
548     {
549       c = gfc_next_ascii_char ();
550       count++;
551     }
552
553 done:
554   /* Check that we have a numeric constant.  */
555   if (!seen_digits || (!seen_dp && exp_char == ' '))
556     {
557       gfc_current_locus = old_loc;
558       return MATCH_NO;
559     }
560
561   /* Convert the number.  */
562   gfc_current_locus = old_loc;
563   gfc_gobble_whitespace ();
564
565   buffer = (char *) alloca (count + 1);
566   memset (buffer, '\0', count + 1);
567
568   p = buffer;
569   c = gfc_next_ascii_char ();
570   if (c == '+' || c == '-')
571     {
572       gfc_gobble_whitespace ();
573       c = gfc_next_ascii_char ();
574     }
575
576   /* Hack for mpfr_set_str().  */
577   for (;;)
578     {
579       if (c == 'd' || c == 'q')
580         *p = 'e';
581       else
582         *p = c;
583       p++;
584       if (--count == 0)
585         break;
586
587       c = gfc_next_ascii_char ();
588     }
589
590   kind = get_kind ();
591   if (kind == -1)
592     goto cleanup;
593
594   switch (exp_char)
595     {
596     case 'd':
597       if (kind != -2)
598         {
599           gfc_error ("Real number at %C has a 'd' exponent and an explicit "
600                      "kind");
601           goto cleanup;
602         }
603       kind = gfc_default_double_kind;
604       break;
605
606     default:
607       if (kind == -2)
608         kind = gfc_default_real_kind;
609
610       if (gfc_validate_kind (BT_REAL, kind, true) < 0)
611         {
612           gfc_error ("Invalid real kind %d at %C", kind);
613           goto cleanup;
614         }
615     }
616
617   e = gfc_convert_real (buffer, kind, &gfc_current_locus);
618   if (negate)
619     mpfr_neg (e->value.real, e->value.real, GFC_RND_MODE);
620
621   switch (gfc_range_check (e))
622     {
623     case ARITH_OK:
624       break;
625     case ARITH_OVERFLOW:
626       gfc_error ("Real constant overflows its kind at %C");
627       goto cleanup;
628
629     case ARITH_UNDERFLOW:
630       if (gfc_option.warn_underflow)
631         gfc_warning ("Real constant underflows its kind at %C");
632       mpfr_set_ui (e->value.real, 0, GFC_RND_MODE);
633       break;
634
635     default:
636       gfc_internal_error ("gfc_range_check() returned bad value");
637     }
638
639   *result = e;
640   return MATCH_YES;
641
642 cleanup:
643   gfc_free_expr (e);
644   return MATCH_ERROR;
645 }
646
647
648 /* Match a substring reference.  */
649
650 static match
651 match_substring (gfc_charlen *cl, int init, gfc_ref **result)
652 {
653   gfc_expr *start, *end;
654   locus old_loc;
655   gfc_ref *ref;
656   match m;
657
658   start = NULL;
659   end = NULL;
660
661   old_loc = gfc_current_locus;
662
663   m = gfc_match_char ('(');
664   if (m != MATCH_YES)
665     return MATCH_NO;
666
667   if (gfc_match_char (':') != MATCH_YES)
668     {
669       if (init)
670         m = gfc_match_init_expr (&start);
671       else
672         m = gfc_match_expr (&start);
673
674       if (m != MATCH_YES)
675         {
676           m = MATCH_NO;
677           goto cleanup;
678         }
679
680       m = gfc_match_char (':');
681       if (m != MATCH_YES)
682         goto cleanup;
683     }
684
685   if (gfc_match_char (')') != MATCH_YES)
686     {
687       if (init)
688         m = gfc_match_init_expr (&end);
689       else
690         m = gfc_match_expr (&end);
691
692       if (m == MATCH_NO)
693         goto syntax;
694       if (m == MATCH_ERROR)
695         goto cleanup;
696
697       m = gfc_match_char (')');
698       if (m == MATCH_NO)
699         goto syntax;
700     }
701
702   /* Optimize away the (:) reference.  */
703   if (start == NULL && end == NULL)
704     ref = NULL;
705   else
706     {
707       ref = gfc_get_ref ();
708
709       ref->type = REF_SUBSTRING;
710       if (start == NULL)
711         start = gfc_int_expr (1);
712       ref->u.ss.start = start;
713       if (end == NULL && cl)
714         end = gfc_copy_expr (cl->length);
715       ref->u.ss.end = end;
716       ref->u.ss.length = cl;
717     }
718
719   *result = ref;
720   return MATCH_YES;
721
722 syntax:
723   gfc_error ("Syntax error in SUBSTRING specification at %C");
724   m = MATCH_ERROR;
725
726 cleanup:
727   gfc_free_expr (start);
728   gfc_free_expr (end);
729
730   gfc_current_locus = old_loc;
731   return m;
732 }
733
734
735 /* Reads the next character of a string constant, taking care to
736    return doubled delimiters on the input as a single instance of
737    the delimiter.
738
739    Special return values for "ret" argument are:
740      -1   End of the string, as determined by the delimiter
741      -2   Unterminated string detected
742
743    Backslash codes are also expanded at this time.  */
744
745 static gfc_char_t
746 next_string_char (gfc_char_t delimiter, int *ret)
747 {
748   locus old_locus;
749   gfc_char_t c;
750
751   c = gfc_next_char_literal (1);
752   *ret = 0;
753
754   if (c == '\n')
755     {
756       *ret = -2;
757       return 0;
758     }
759
760   if (gfc_option.flag_backslash && c == '\\')
761     {
762       old_locus = gfc_current_locus;
763
764       if (gfc_match_special_char (&c) == MATCH_NO)
765         gfc_current_locus = old_locus;
766
767       if (!(gfc_option.allow_std & GFC_STD_GNU) && !inhibit_warnings)
768         gfc_warning ("Extension: backslash character at %C");
769     }
770
771   if (c != delimiter)
772     return c;
773
774   old_locus = gfc_current_locus;
775   c = gfc_next_char_literal (0);
776
777   if (c == delimiter)
778     return c;
779   gfc_current_locus = old_locus;
780
781   *ret = -1;
782   return 0;
783 }
784
785
786 /* Special case of gfc_match_name() that matches a parameter kind name
787    before a string constant.  This takes case of the weird but legal
788    case of:
789
790      kind_____'string'
791
792    where kind____ is a parameter. gfc_match_name() will happily slurp
793    up all the underscores, which leads to problems.  If we return
794    MATCH_YES, the parse pointer points to the final underscore, which
795    is not part of the name.  We never return MATCH_ERROR-- errors in
796    the name will be detected later.  */
797
798 static match
799 match_charkind_name (char *name)
800 {
801   locus old_loc;
802   char c, peek;
803   int len;
804
805   gfc_gobble_whitespace ();
806   c = gfc_next_ascii_char ();
807   if (!ISALPHA (c))
808     return MATCH_NO;
809
810   *name++ = c;
811   len = 1;
812
813   for (;;)
814     {
815       old_loc = gfc_current_locus;
816       c = gfc_next_ascii_char ();
817
818       if (c == '_')
819         {
820           peek = gfc_peek_ascii_char ();
821
822           if (peek == '\'' || peek == '\"')
823             {
824               gfc_current_locus = old_loc;
825               *name = '\0';
826               return MATCH_YES;
827             }
828         }
829
830       if (!ISALNUM (c)
831           && c != '_'
832           && (gfc_option.flag_dollar_ok && c != '$'))
833         break;
834
835       *name++ = c;
836       if (++len > GFC_MAX_SYMBOL_LEN)
837         break;
838     }
839
840   return MATCH_NO;
841 }
842
843
844 /* See if the current input matches a character constant.  Lots of
845    contortions have to be done to match the kind parameter which comes
846    before the actual string.  The main consideration is that we don't
847    want to error out too quickly.  For example, we don't actually do
848    any validation of the kinds until we have actually seen a legal
849    delimiter.  Using match_kind_param() generates errors too quickly.  */
850
851 static match
852 match_string_constant (gfc_expr **result)
853 {
854   char name[GFC_MAX_SYMBOL_LEN + 1], peek;
855   int i, kind, length, warn_ampersand, ret;
856   locus old_locus, start_locus;
857   gfc_symbol *sym;
858   gfc_expr *e;
859   const char *q;
860   match m;
861   gfc_char_t c, delimiter, *p;
862
863   old_locus = gfc_current_locus;
864
865   gfc_gobble_whitespace ();
866
867   start_locus = gfc_current_locus;
868
869   c = gfc_next_char ();
870   if (c == '\'' || c == '"')
871     {
872       kind = gfc_default_character_kind;
873       goto got_delim;
874     }
875
876   if (gfc_wide_is_digit (c))
877     {
878       kind = 0;
879
880       while (gfc_wide_is_digit (c))
881         {
882           kind = kind * 10 + c - '0';
883           if (kind > 9999999)
884             goto no_match;
885           c = gfc_next_char ();
886         }
887
888     }
889   else
890     {
891       gfc_current_locus = old_locus;
892
893       m = match_charkind_name (name);
894       if (m != MATCH_YES)
895         goto no_match;
896
897       if (gfc_find_symbol (name, NULL, 1, &sym)
898           || sym == NULL
899           || sym->attr.flavor != FL_PARAMETER)
900         goto no_match;
901
902       kind = -1;
903       c = gfc_next_char ();
904     }
905
906   if (c == ' ')
907     {
908       gfc_gobble_whitespace ();
909       c = gfc_next_char ();
910     }
911
912   if (c != '_')
913     goto no_match;
914
915   gfc_gobble_whitespace ();
916   start_locus = gfc_current_locus;
917
918   c = gfc_next_char ();
919   if (c != '\'' && c != '"')
920     goto no_match;
921
922   if (kind == -1)
923     {
924       q = gfc_extract_int (sym->value, &kind);
925       if (q != NULL)
926         {
927           gfc_error (q);
928           return MATCH_ERROR;
929         }
930       gfc_set_sym_referenced (sym);
931     }
932
933   if (gfc_validate_kind (BT_CHARACTER, kind, true) < 0)
934     {
935       gfc_error ("Invalid kind %d for CHARACTER constant at %C", kind);
936       return MATCH_ERROR;
937     }
938
939 got_delim:
940   /* Scan the string into a block of memory by first figuring out how
941      long it is, allocating the structure, then re-reading it.  This
942      isn't particularly efficient, but string constants aren't that
943      common in most code.  TODO: Use obstacks?  */
944
945   delimiter = c;
946   length = 0;
947
948   for (;;)
949     {
950       c = next_string_char (delimiter, &ret);
951       if (ret == -1)
952         break;
953       if (ret == -2)
954         {
955           gfc_current_locus = start_locus;
956           gfc_error ("Unterminated character constant beginning at %C");
957           return MATCH_ERROR;
958         }
959
960       length++;
961     }
962
963   /* Peek at the next character to see if it is a b, o, z, or x for the
964      postfixed BOZ literal constants.  */
965   peek = gfc_peek_ascii_char ();
966   if (peek == 'b' || peek == 'o' || peek =='z' || peek == 'x')
967     goto no_match;
968
969
970   e = gfc_get_expr ();
971
972   e->expr_type = EXPR_CONSTANT;
973   e->ref = NULL;
974   e->ts.type = BT_CHARACTER;
975   e->ts.kind = kind;
976   e->ts.is_c_interop = 0;
977   e->ts.is_iso_c = 0;
978   e->where = start_locus;
979
980   e->value.character.string = p = gfc_get_wide_string (length + 1);
981   e->value.character.length = length;
982
983   gfc_current_locus = start_locus;
984   gfc_next_char ();             /* Skip delimiter */
985
986   /* We disable the warning for the following loop as the warning has already
987      been printed in the loop above.  */
988   warn_ampersand = gfc_option.warn_ampersand;
989   gfc_option.warn_ampersand = 0;
990
991   for (i = 0; i < length; i++)
992     {
993       c = next_string_char (delimiter, &ret);
994
995       if (!gfc_check_character_range (c, kind))
996         {
997           gfc_error ("Character '%s' in string at %C is not representable "
998                      "in character kind %d", gfc_print_wide_char (c), kind);
999           return MATCH_ERROR;
1000         }
1001
1002       *p++ = c;
1003     }
1004
1005   *p = '\0';    /* TODO: C-style string is for development/debug purposes.  */
1006   gfc_option.warn_ampersand = warn_ampersand;
1007
1008   next_string_char (delimiter, &ret);
1009   if (ret != -1)
1010     gfc_internal_error ("match_string_constant(): Delimiter not found");
1011
1012   if (match_substring (NULL, 0, &e->ref) != MATCH_NO)
1013     e->expr_type = EXPR_SUBSTRING;
1014
1015   *result = e;
1016
1017   return MATCH_YES;
1018
1019 no_match:
1020   gfc_current_locus = old_locus;
1021   return MATCH_NO;
1022 }
1023
1024
1025 /* Match a .true. or .false.  Returns 1 if a .true. was found,
1026    0 if a .false. was found, and -1 otherwise.  */
1027 static int
1028 match_logical_constant_string (void)
1029 {
1030   locus orig_loc = gfc_current_locus;
1031
1032   gfc_gobble_whitespace ();
1033   if (gfc_next_ascii_char () == '.')
1034     {
1035       char ch = gfc_next_ascii_char ();
1036       if (ch == 'f')
1037         {
1038           if (gfc_next_ascii_char () == 'a'
1039               && gfc_next_ascii_char () == 'l'
1040               && gfc_next_ascii_char () == 's'
1041               && gfc_next_ascii_char () == 'e'
1042               && gfc_next_ascii_char () == '.')
1043             /* Matched ".false.".  */
1044             return 0;
1045         }
1046       else if (ch == 't')
1047         {
1048           if (gfc_next_ascii_char () == 'r'
1049               && gfc_next_ascii_char () == 'u'
1050               && gfc_next_ascii_char () == 'e'
1051               && gfc_next_ascii_char () == '.')
1052             /* Matched ".true.".  */
1053             return 1;
1054         }
1055     }
1056   gfc_current_locus = orig_loc;
1057   return -1;
1058 }
1059
1060 /* Match a .true. or .false.  */
1061
1062 static match
1063 match_logical_constant (gfc_expr **result)
1064 {
1065   gfc_expr *e;
1066   int i, kind;
1067
1068   i = match_logical_constant_string ();
1069   if (i == -1)
1070     return MATCH_NO;
1071
1072   kind = get_kind ();
1073   if (kind == -1)
1074     return MATCH_ERROR;
1075   if (kind == -2)
1076     kind = gfc_default_logical_kind;
1077
1078   if (gfc_validate_kind (BT_LOGICAL, kind, true) < 0)
1079     {
1080       gfc_error ("Bad kind for logical constant at %C");
1081       return MATCH_ERROR;
1082     }
1083
1084   e = gfc_get_expr ();
1085
1086   e->expr_type = EXPR_CONSTANT;
1087   e->value.logical = i;
1088   e->ts.type = BT_LOGICAL;
1089   e->ts.kind = kind;
1090   e->ts.is_c_interop = 0;
1091   e->ts.is_iso_c = 0;
1092   e->where = gfc_current_locus;
1093
1094   *result = e;
1095   return MATCH_YES;
1096 }
1097
1098
1099 /* Match a real or imaginary part of a complex constant that is a
1100    symbolic constant.  */
1101
1102 static match
1103 match_sym_complex_part (gfc_expr **result)
1104 {
1105   char name[GFC_MAX_SYMBOL_LEN + 1];
1106   gfc_symbol *sym;
1107   gfc_expr *e;
1108   match m;
1109
1110   m = gfc_match_name (name);
1111   if (m != MATCH_YES)
1112     return m;
1113
1114   if (gfc_find_symbol (name, NULL, 1, &sym) || sym == NULL)
1115     return MATCH_NO;
1116
1117   if (sym->attr.flavor != FL_PARAMETER)
1118     {
1119       gfc_error ("Expected PARAMETER symbol in complex constant at %C");
1120       return MATCH_ERROR;
1121     }
1122
1123   if (!gfc_numeric_ts (&sym->value->ts))
1124     {
1125       gfc_error ("Numeric PARAMETER required in complex constant at %C");
1126       return MATCH_ERROR;
1127     }
1128
1129   if (sym->value->rank != 0)
1130     {
1131       gfc_error ("Scalar PARAMETER required in complex constant at %C");
1132       return MATCH_ERROR;
1133     }
1134
1135   if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: PARAMETER symbol in "
1136                       "complex constant at %C") == FAILURE)
1137     return MATCH_ERROR;
1138
1139   switch (sym->value->ts.type)
1140     {
1141     case BT_REAL:
1142       e = gfc_copy_expr (sym->value);
1143       break;
1144
1145     case BT_COMPLEX:
1146       e = gfc_complex2real (sym->value, sym->value->ts.kind);
1147       if (e == NULL)
1148         goto error;
1149       break;
1150
1151     case BT_INTEGER:
1152       e = gfc_int2real (sym->value, gfc_default_real_kind);
1153       if (e == NULL)
1154         goto error;
1155       break;
1156
1157     default:
1158       gfc_internal_error ("gfc_match_sym_complex_part(): Bad type");
1159     }
1160
1161   *result = e;          /* e is a scalar, real, constant expression.  */
1162   return MATCH_YES;
1163
1164 error:
1165   gfc_error ("Error converting PARAMETER constant in complex constant at %C");
1166   return MATCH_ERROR;
1167 }
1168
1169
1170 /* Match a real or imaginary part of a complex number.  */
1171
1172 static match
1173 match_complex_part (gfc_expr **result)
1174 {
1175   match m;
1176
1177   m = match_sym_complex_part (result);
1178   if (m != MATCH_NO)
1179     return m;
1180
1181   m = match_real_constant (result, 1);
1182   if (m != MATCH_NO)
1183     return m;
1184
1185   return match_integer_constant (result, 1);
1186 }
1187
1188
1189 /* Try to match a complex constant.  */
1190
1191 static match
1192 match_complex_constant (gfc_expr **result)
1193 {
1194   gfc_expr *e, *real, *imag;
1195   gfc_error_buf old_error;
1196   gfc_typespec target;
1197   locus old_loc;
1198   int kind;
1199   match m;
1200
1201   old_loc = gfc_current_locus;
1202   real = imag = e = NULL;
1203
1204   m = gfc_match_char ('(');
1205   if (m != MATCH_YES)
1206     return m;
1207
1208   gfc_push_error (&old_error);
1209
1210   m = match_complex_part (&real);
1211   if (m == MATCH_NO)
1212     {
1213       gfc_free_error (&old_error);
1214       goto cleanup;
1215     }
1216
1217   if (gfc_match_char (',') == MATCH_NO)
1218     {
1219       gfc_pop_error (&old_error);
1220       m = MATCH_NO;
1221       goto cleanup;
1222     }
1223
1224   /* If m is error, then something was wrong with the real part and we
1225      assume we have a complex constant because we've seen the ','.  An
1226      ambiguous case here is the start of an iterator list of some
1227      sort. These sort of lists are matched prior to coming here.  */
1228
1229   if (m == MATCH_ERROR)
1230     {
1231       gfc_free_error (&old_error);
1232       goto cleanup;
1233     }
1234   gfc_pop_error (&old_error);
1235
1236   m = match_complex_part (&imag);
1237   if (m == MATCH_NO)
1238     goto syntax;
1239   if (m == MATCH_ERROR)
1240     goto cleanup;
1241
1242   m = gfc_match_char (')');
1243   if (m == MATCH_NO)
1244     {
1245       /* Give the matcher for implied do-loops a chance to run.  This
1246          yields a much saner error message for (/ (i, 4=i, 6) /).  */
1247       if (gfc_peek_ascii_char () == '=')
1248         {
1249           m = MATCH_ERROR;
1250           goto cleanup;
1251         }
1252       else
1253     goto syntax;
1254     }
1255
1256   if (m == MATCH_ERROR)
1257     goto cleanup;
1258
1259   /* Decide on the kind of this complex number.  */
1260   if (real->ts.type == BT_REAL)
1261     {
1262       if (imag->ts.type == BT_REAL)
1263         kind = gfc_kind_max (real, imag);
1264       else
1265         kind = real->ts.kind;
1266     }
1267   else
1268     {
1269       if (imag->ts.type == BT_REAL)
1270         kind = imag->ts.kind;
1271       else
1272         kind = gfc_default_real_kind;
1273     }
1274   target.type = BT_REAL;
1275   target.kind = kind;
1276   target.is_c_interop = 0;
1277   target.is_iso_c = 0;
1278
1279   if (real->ts.type != BT_REAL || kind != real->ts.kind)
1280     gfc_convert_type (real, &target, 2);
1281   if (imag->ts.type != BT_REAL || kind != imag->ts.kind)
1282     gfc_convert_type (imag, &target, 2);
1283
1284   e = gfc_convert_complex (real, imag, kind);
1285   e->where = gfc_current_locus;
1286
1287   gfc_free_expr (real);
1288   gfc_free_expr (imag);
1289
1290   *result = e;
1291   return MATCH_YES;
1292
1293 syntax:
1294   gfc_error ("Syntax error in COMPLEX constant at %C");
1295   m = MATCH_ERROR;
1296
1297 cleanup:
1298   gfc_free_expr (e);
1299   gfc_free_expr (real);
1300   gfc_free_expr (imag);
1301   gfc_current_locus = old_loc;
1302
1303   return m;
1304 }
1305
1306
1307 /* Match constants in any of several forms.  Returns nonzero for a
1308    match, zero for no match.  */
1309
1310 match
1311 gfc_match_literal_constant (gfc_expr **result, int signflag)
1312 {
1313   match m;
1314
1315   m = match_complex_constant (result);
1316   if (m != MATCH_NO)
1317     return m;
1318
1319   m = match_string_constant (result);
1320   if (m != MATCH_NO)
1321     return m;
1322
1323   m = match_boz_constant (result);
1324   if (m != MATCH_NO)
1325     return m;
1326
1327   m = match_real_constant (result, signflag);
1328   if (m != MATCH_NO)
1329     return m;
1330
1331   m = match_hollerith_constant (result);
1332   if (m != MATCH_NO)
1333     return m;
1334
1335   m = match_integer_constant (result, signflag);
1336   if (m != MATCH_NO)
1337     return m;
1338
1339   m = match_logical_constant (result);
1340   if (m != MATCH_NO)
1341     return m;
1342
1343   return MATCH_NO;
1344 }
1345
1346
1347 /* Match a single actual argument value.  An actual argument is
1348    usually an expression, but can also be a procedure name.  If the
1349    argument is a single name, it is not always possible to tell
1350    whether the name is a dummy procedure or not.  We treat these cases
1351    by creating an argument that looks like a dummy procedure and
1352    fixing things later during resolution.  */
1353
1354 static match
1355 match_actual_arg (gfc_expr **result)
1356 {
1357   char name[GFC_MAX_SYMBOL_LEN + 1];
1358   gfc_symtree *symtree;
1359   locus where, w;
1360   gfc_expr *e;
1361   char c;
1362
1363   where = gfc_current_locus;
1364
1365   switch (gfc_match_name (name))
1366     {
1367     case MATCH_ERROR:
1368       return MATCH_ERROR;
1369
1370     case MATCH_NO:
1371       break;
1372
1373     case MATCH_YES:
1374       w = gfc_current_locus;
1375       gfc_gobble_whitespace ();
1376       c = gfc_next_ascii_char ();
1377       gfc_current_locus = w;
1378
1379       if (c != ',' && c != ')')
1380         break;
1381
1382       if (gfc_find_sym_tree (name, NULL, 1, &symtree))
1383         break;
1384       /* Handle error elsewhere.  */
1385
1386       /* Eliminate a couple of common cases where we know we don't
1387          have a function argument.  */
1388       if (symtree == NULL)
1389         {
1390           gfc_get_sym_tree (name, NULL, &symtree);
1391           gfc_set_sym_referenced (symtree->n.sym);
1392         }
1393       else
1394         {
1395           gfc_symbol *sym;
1396
1397           sym = symtree->n.sym;
1398           gfc_set_sym_referenced (sym);
1399           if (sym->attr.flavor != FL_PROCEDURE
1400               && sym->attr.flavor != FL_UNKNOWN)
1401             break;
1402
1403           /* If the symbol is a function with itself as the result and
1404              is being defined, then we have a variable.  */
1405           if (sym->attr.function && sym->result == sym)
1406             {
1407               if (gfc_current_ns->proc_name == sym
1408                   || (gfc_current_ns->parent != NULL
1409                       && gfc_current_ns->parent->proc_name == sym))
1410                 break;
1411
1412               if (sym->attr.entry
1413                   && (sym->ns == gfc_current_ns
1414                       || sym->ns == gfc_current_ns->parent))
1415                 {
1416                   gfc_entry_list *el = NULL;
1417
1418                   for (el = sym->ns->entries; el; el = el->next)
1419                     if (sym == el->sym)
1420                       break;
1421
1422                   if (el)
1423                     break;
1424                 }
1425             }
1426         }
1427
1428       e = gfc_get_expr ();      /* Leave it unknown for now */
1429       e->symtree = symtree;
1430       e->expr_type = EXPR_VARIABLE;
1431       e->ts.type = BT_PROCEDURE;
1432       e->where = where;
1433
1434       *result = e;
1435       return MATCH_YES;
1436     }
1437
1438   gfc_current_locus = where;
1439   return gfc_match_expr (result);
1440 }
1441
1442
1443 /* Match a keyword argument.  */
1444
1445 static match
1446 match_keyword_arg (gfc_actual_arglist *actual, gfc_actual_arglist *base)
1447 {
1448   char name[GFC_MAX_SYMBOL_LEN + 1];
1449   gfc_actual_arglist *a;
1450   locus name_locus;
1451   match m;
1452
1453   name_locus = gfc_current_locus;
1454   m = gfc_match_name (name);
1455
1456   if (m != MATCH_YES)
1457     goto cleanup;
1458   if (gfc_match_char ('=') != MATCH_YES)
1459     {
1460       m = MATCH_NO;
1461       goto cleanup;
1462     }
1463
1464   m = match_actual_arg (&actual->expr);
1465   if (m != MATCH_YES)
1466     goto cleanup;
1467
1468   /* Make sure this name has not appeared yet.  */
1469
1470   if (name[0] != '\0')
1471     {
1472       for (a = base; a; a = a->next)
1473         if (a->name != NULL && strcmp (a->name, name) == 0)
1474           {
1475             gfc_error ("Keyword '%s' at %C has already appeared in the "
1476                        "current argument list", name);
1477             return MATCH_ERROR;
1478           }
1479     }
1480
1481   actual->name = gfc_get_string (name);
1482   return MATCH_YES;
1483
1484 cleanup:
1485   gfc_current_locus = name_locus;
1486   return m;
1487 }
1488
1489
1490 /* Match an argument list function, such as %VAL.  */
1491
1492 static match
1493 match_arg_list_function (gfc_actual_arglist *result)
1494 {
1495   char name[GFC_MAX_SYMBOL_LEN + 1];
1496   locus old_locus;
1497   match m;
1498
1499   old_locus = gfc_current_locus;
1500
1501   if (gfc_match_char ('%') != MATCH_YES)
1502     {
1503       m = MATCH_NO;
1504       goto cleanup;
1505     }
1506
1507   m = gfc_match ("%n (", name);
1508   if (m != MATCH_YES)
1509     goto cleanup;
1510
1511   if (name[0] != '\0')
1512     {
1513       switch (name[0])
1514         {
1515         case 'l':
1516           if (strncmp (name, "loc", 3) == 0)
1517             {
1518               result->name = "%LOC";
1519               break;
1520             }
1521         case 'r':
1522           if (strncmp (name, "ref", 3) == 0)
1523             {
1524               result->name = "%REF";
1525               break;
1526             }
1527         case 'v':
1528           if (strncmp (name, "val", 3) == 0)
1529             {
1530               result->name = "%VAL";
1531               break;
1532             }
1533         default:
1534           m = MATCH_ERROR;
1535           goto cleanup;
1536         }
1537     }
1538
1539   if (gfc_notify_std (GFC_STD_GNU, "Extension: argument list "
1540                       "function at %C") == FAILURE)
1541     {
1542       m = MATCH_ERROR;
1543       goto cleanup;
1544     }
1545
1546   m = match_actual_arg (&result->expr);
1547   if (m != MATCH_YES)
1548     goto cleanup;
1549
1550   if (gfc_match_char (')') != MATCH_YES)
1551     {
1552       m = MATCH_NO;
1553       goto cleanup;
1554     }
1555
1556   return MATCH_YES;
1557
1558 cleanup:
1559   gfc_current_locus = old_locus;
1560   return m;
1561 }
1562
1563
1564 /* Matches an actual argument list of a function or subroutine, from
1565    the opening parenthesis to the closing parenthesis.  The argument
1566    list is assumed to allow keyword arguments because we don't know if
1567    the symbol associated with the procedure has an implicit interface
1568    or not.  We make sure keywords are unique. If sub_flag is set,
1569    we're matching the argument list of a subroutine.  */
1570
1571 match
1572 gfc_match_actual_arglist (int sub_flag, gfc_actual_arglist **argp)
1573 {
1574   gfc_actual_arglist *head, *tail;
1575   int seen_keyword;
1576   gfc_st_label *label;
1577   locus old_loc;
1578   match m;
1579
1580   *argp = tail = NULL;
1581   old_loc = gfc_current_locus;
1582
1583   seen_keyword = 0;
1584
1585   if (gfc_match_char ('(') == MATCH_NO)
1586     return (sub_flag) ? MATCH_YES : MATCH_NO;
1587
1588   if (gfc_match_char (')') == MATCH_YES)
1589     return MATCH_YES;
1590   head = NULL;
1591
1592   for (;;)
1593     {
1594       if (head == NULL)
1595         head = tail = gfc_get_actual_arglist ();
1596       else
1597         {
1598           tail->next = gfc_get_actual_arglist ();
1599           tail = tail->next;
1600         }
1601
1602       if (sub_flag && gfc_match_char ('*') == MATCH_YES)
1603         {
1604           m = gfc_match_st_label (&label);
1605           if (m == MATCH_NO)
1606             gfc_error ("Expected alternate return label at %C");
1607           if (m != MATCH_YES)
1608             goto cleanup;
1609
1610           tail->label = label;
1611           goto next;
1612         }
1613
1614       /* After the first keyword argument is seen, the following
1615          arguments must also have keywords.  */
1616       if (seen_keyword)
1617         {
1618           m = match_keyword_arg (tail, head);
1619
1620           if (m == MATCH_ERROR)
1621             goto cleanup;
1622           if (m == MATCH_NO)
1623             {
1624               gfc_error ("Missing keyword name in actual argument list at %C");
1625               goto cleanup;
1626             }
1627
1628         }
1629       else
1630         {
1631           /* Try an argument list function, like %VAL.  */
1632           m = match_arg_list_function (tail);
1633           if (m == MATCH_ERROR)
1634             goto cleanup;
1635
1636           /* See if we have the first keyword argument.  */
1637           if (m == MATCH_NO)
1638             {
1639               m = match_keyword_arg (tail, head);
1640               if (m == MATCH_YES)
1641                 seen_keyword = 1;
1642               if (m == MATCH_ERROR)
1643                 goto cleanup;
1644             }
1645
1646           if (m == MATCH_NO)
1647             {
1648               /* Try for a non-keyword argument.  */
1649               m = match_actual_arg (&tail->expr);
1650               if (m == MATCH_ERROR)
1651                 goto cleanup;
1652               if (m == MATCH_NO)
1653                 goto syntax;
1654             }
1655         }
1656
1657
1658     next:
1659       if (gfc_match_char (')') == MATCH_YES)
1660         break;
1661       if (gfc_match_char (',') != MATCH_YES)
1662         goto syntax;
1663     }
1664
1665   *argp = head;
1666   return MATCH_YES;
1667
1668 syntax:
1669   gfc_error ("Syntax error in argument list at %C");
1670
1671 cleanup:
1672   gfc_free_actual_arglist (head);
1673   gfc_current_locus = old_loc;
1674
1675   return MATCH_ERROR;
1676 }
1677
1678
1679 /* Used by gfc_match_varspec() to extend the reference list by one
1680    element.  */
1681
1682 static gfc_ref *
1683 extend_ref (gfc_expr *primary, gfc_ref *tail)
1684 {
1685   if (primary->ref == NULL)
1686     primary->ref = tail = gfc_get_ref ();
1687   else
1688     {
1689       if (tail == NULL)
1690         gfc_internal_error ("extend_ref(): Bad tail");
1691       tail->next = gfc_get_ref ();
1692       tail = tail->next;
1693     }
1694
1695   return tail;
1696 }
1697
1698
1699 /* Match any additional specifications associated with the current
1700    variable like member references or substrings.  If equiv_flag is
1701    set we only match stuff that is allowed inside an EQUIVALENCE
1702    statement.  sub_flag tells whether we expect a type-bound procedure found
1703    to be a subroutine as part of CALL or a FUNCTION.  */
1704
1705 match
1706 gfc_match_varspec (gfc_expr *primary, int equiv_flag, bool sub_flag)
1707 {
1708   char name[GFC_MAX_SYMBOL_LEN + 1];
1709   gfc_ref *substring, *tail;
1710   gfc_component *component;
1711   gfc_symbol *sym = primary->symtree->n.sym;
1712   match m;
1713   bool unknown;
1714
1715   tail = NULL;
1716
1717   gfc_gobble_whitespace ();
1718   if ((equiv_flag && gfc_peek_ascii_char () == '(') || sym->attr.dimension)
1719     {
1720       /* In EQUIVALENCE, we don't know yet whether we are seeing
1721          an array, character variable or array of character
1722          variables.  We'll leave the decision till resolve time.  */
1723       tail = extend_ref (primary, tail);
1724       tail->type = REF_ARRAY;
1725
1726       m = gfc_match_array_ref (&tail->u.ar, equiv_flag ? NULL : sym->as,
1727                                equiv_flag);
1728       if (m != MATCH_YES)
1729         return m;
1730
1731       gfc_gobble_whitespace ();
1732       if (equiv_flag && gfc_peek_ascii_char () == '(')
1733         {
1734           tail = extend_ref (primary, tail);
1735           tail->type = REF_ARRAY;
1736
1737           m = gfc_match_array_ref (&tail->u.ar, NULL, equiv_flag);
1738           if (m != MATCH_YES)
1739             return m;
1740         }
1741     }
1742
1743   primary->ts = sym->ts;
1744
1745   if (equiv_flag)
1746     return MATCH_YES;
1747
1748   if (sym->ts.type != BT_DERIVED || gfc_match_char ('%') != MATCH_YES)
1749     goto check_substring;
1750
1751   sym = sym->ts.derived;
1752
1753   for (;;)
1754     {
1755       gfc_try t;
1756       gfc_symtree *tbp;
1757
1758       m = gfc_match_name (name);
1759       if (m == MATCH_NO)
1760         gfc_error ("Expected structure component name at %C");
1761       if (m != MATCH_YES)
1762         return MATCH_ERROR;
1763
1764       tbp = gfc_find_typebound_proc (sym, &t, name, false);
1765       if (tbp)
1766         {
1767           gfc_symbol* tbp_sym;
1768
1769           if (t == FAILURE)
1770             return MATCH_ERROR;
1771
1772           gcc_assert (!tail || !tail->next);
1773           gcc_assert (primary->expr_type == EXPR_VARIABLE);
1774
1775           if (tbp->typebound->is_generic)
1776             tbp_sym = NULL;
1777           else
1778             tbp_sym = tbp->typebound->u.specific->n.sym;
1779
1780           primary->expr_type = EXPR_COMPCALL;
1781           primary->value.compcall.tbp = tbp->typebound;
1782           primary->value.compcall.name = tbp->name;
1783           gcc_assert (primary->symtree->n.sym->attr.referenced);
1784           if (tbp_sym)
1785             primary->ts = tbp_sym->ts;
1786
1787           m = gfc_match_actual_arglist (tbp->typebound->subroutine,
1788                                         &primary->value.compcall.actual);
1789           if (m == MATCH_ERROR)
1790             return MATCH_ERROR;
1791           if (m == MATCH_NO)
1792             {
1793               if (sub_flag)
1794                 primary->value.compcall.actual = NULL;
1795               else
1796                 {
1797                   gfc_error ("Expected argument list at %C");
1798                   return MATCH_ERROR;
1799                 }
1800             }
1801
1802           gfc_set_sym_referenced (tbp->n.sym);
1803
1804           break;
1805         }
1806
1807       component = gfc_find_component (sym, name, false, false);
1808       if (component == NULL)
1809         return MATCH_ERROR;
1810
1811       tail = extend_ref (primary, tail);
1812       tail->type = REF_COMPONENT;
1813
1814       tail->u.c.component = component;
1815       tail->u.c.sym = sym;
1816
1817       primary->ts = component->ts;
1818
1819       if (component->as != NULL)
1820         {
1821           tail = extend_ref (primary, tail);
1822           tail->type = REF_ARRAY;
1823
1824           m = gfc_match_array_ref (&tail->u.ar, component->as, equiv_flag);
1825           if (m != MATCH_YES)
1826             return m;
1827         }
1828
1829       if (component->ts.type != BT_DERIVED
1830           || gfc_match_char ('%') != MATCH_YES)
1831         break;
1832
1833       sym = component->ts.derived;
1834     }
1835
1836 check_substring:
1837   unknown = false;
1838   if (primary->ts.type == BT_UNKNOWN)
1839     {
1840       if (gfc_get_default_type (sym, sym->ns)->type == BT_CHARACTER)
1841        {
1842          gfc_set_default_type (sym, 0, sym->ns);
1843          primary->ts = sym->ts;
1844          unknown = true;
1845        }
1846     }
1847
1848   if (primary->ts.type == BT_CHARACTER)
1849     {
1850       switch (match_substring (primary->ts.cl, equiv_flag, &substring))
1851         {
1852         case MATCH_YES:
1853           if (tail == NULL)
1854             primary->ref = substring;
1855           else
1856             tail->next = substring;
1857
1858           if (primary->expr_type == EXPR_CONSTANT)
1859             primary->expr_type = EXPR_SUBSTRING;
1860
1861           if (substring)
1862             primary->ts.cl = NULL;
1863
1864           break;
1865
1866         case MATCH_NO:
1867           if (unknown)
1868             gfc_clear_ts (&primary->ts);
1869           break;
1870
1871         case MATCH_ERROR:
1872           return MATCH_ERROR;
1873         }
1874     }
1875
1876   return MATCH_YES;
1877 }
1878
1879
1880 /* Given an expression that is a variable, figure out what the
1881    ultimate variable's type and attribute is, traversing the reference
1882    structures if necessary.
1883
1884    This subroutine is trickier than it looks.  We start at the base
1885    symbol and store the attribute.  Component references load a
1886    completely new attribute.
1887
1888    A couple of rules come into play.  Subobjects of targets are always
1889    targets themselves.  If we see a component that goes through a
1890    pointer, then the expression must also be a target, since the
1891    pointer is associated with something (if it isn't core will soon be
1892    dumped).  If we see a full part or section of an array, the
1893    expression is also an array.
1894
1895    We can have at most one full array reference.  */
1896
1897 symbol_attribute
1898 gfc_variable_attr (gfc_expr *expr, gfc_typespec *ts)
1899 {
1900   int dimension, pointer, allocatable, target;
1901   symbol_attribute attr;
1902   gfc_ref *ref;
1903
1904   if (expr->expr_type != EXPR_VARIABLE)
1905     gfc_internal_error ("gfc_variable_attr(): Expression isn't a variable");
1906
1907   ref = expr->ref;
1908   attr = expr->symtree->n.sym->attr;
1909
1910   dimension = attr.dimension;
1911   pointer = attr.pointer;
1912   allocatable = attr.allocatable;
1913
1914   target = attr.target;
1915   if (pointer)
1916     target = 1;
1917
1918   if (ts != NULL && expr->ts.type == BT_UNKNOWN)
1919     *ts = expr->symtree->n.sym->ts;
1920
1921   for (; ref; ref = ref->next)
1922     switch (ref->type)
1923       {
1924       case REF_ARRAY:
1925
1926         switch (ref->u.ar.type)
1927           {
1928           case AR_FULL:
1929             dimension = 1;
1930             break;
1931
1932           case AR_SECTION:
1933             allocatable = pointer = 0;
1934             dimension = 1;
1935             break;
1936
1937           case AR_ELEMENT:
1938             allocatable = pointer = 0;
1939             break;
1940
1941           case AR_UNKNOWN:
1942             gfc_internal_error ("gfc_variable_attr(): Bad array reference");
1943           }
1944
1945         break;
1946
1947       case REF_COMPONENT:
1948         attr = ref->u.c.component->attr;
1949         if (ts != NULL)
1950           {
1951             *ts = ref->u.c.component->ts;
1952             /* Don't set the string length if a substring reference
1953                follows.  */
1954             if (ts->type == BT_CHARACTER
1955                 && ref->next && ref->next->type == REF_SUBSTRING)
1956                 ts->cl = NULL;
1957           }
1958
1959         pointer = ref->u.c.component->attr.pointer;
1960         allocatable = ref->u.c.component->attr.allocatable;
1961         if (pointer)
1962           target = 1;
1963
1964         break;
1965
1966       case REF_SUBSTRING:
1967         allocatable = pointer = 0;
1968         break;
1969       }
1970
1971   attr.dimension = dimension;
1972   attr.pointer = pointer;
1973   attr.allocatable = allocatable;
1974   attr.target = target;
1975
1976   return attr;
1977 }
1978
1979
1980 /* Return the attribute from a general expression.  */
1981
1982 symbol_attribute
1983 gfc_expr_attr (gfc_expr *e)
1984 {
1985   symbol_attribute attr;
1986
1987   switch (e->expr_type)
1988     {
1989     case EXPR_VARIABLE:
1990       attr = gfc_variable_attr (e, NULL);
1991       break;
1992
1993     case EXPR_FUNCTION:
1994       gfc_clear_attr (&attr);
1995
1996       if (e->value.function.esym != NULL)
1997         attr = e->value.function.esym->result->attr;
1998
1999       /* TODO: NULL() returns pointers.  May have to take care of this
2000          here.  */
2001
2002       break;
2003
2004     default:
2005       gfc_clear_attr (&attr);
2006       break;
2007     }
2008
2009   return attr;
2010 }
2011
2012
2013 /* Match a structure constructor.  The initial symbol has already been
2014    seen.  */
2015
2016 typedef struct gfc_structure_ctor_component
2017 {
2018   char* name;
2019   gfc_expr* val;
2020   locus where;
2021   struct gfc_structure_ctor_component* next;
2022 }
2023 gfc_structure_ctor_component;
2024
2025 #define gfc_get_structure_ctor_component() XCNEW (gfc_structure_ctor_component)
2026
2027 static void
2028 gfc_free_structure_ctor_component (gfc_structure_ctor_component *comp)
2029 {
2030   gfc_free (comp->name);
2031   gfc_free_expr (comp->val);
2032 }
2033
2034
2035 /* Translate the component list into the actual constructor by sorting it in
2036    the order required; this also checks along the way that each and every
2037    component actually has an initializer and handles default initializers
2038    for components without explicit value given.  */
2039 static gfc_try
2040 build_actual_constructor (gfc_structure_ctor_component **comp_head,
2041                           gfc_constructor **ctor_head, gfc_symbol *sym)
2042 {
2043   gfc_structure_ctor_component *comp_iter;
2044   gfc_constructor *ctor_tail = NULL;
2045   gfc_component *comp;
2046
2047   for (comp = sym->components; comp; comp = comp->next)
2048     {
2049       gfc_structure_ctor_component **next_ptr;
2050       gfc_expr *value = NULL;
2051
2052       /* Try to find the initializer for the current component by name.  */
2053       next_ptr = comp_head;
2054       for (comp_iter = *comp_head; comp_iter; comp_iter = comp_iter->next)
2055         {
2056           if (!strcmp (comp_iter->name, comp->name))
2057             break;
2058           next_ptr = &comp_iter->next;
2059         }
2060
2061       /* If an extension, try building the parent derived type by building
2062          a value expression for the parent derived type and calling self.  */
2063       if (!comp_iter && comp == sym->components && sym->attr.extension)
2064         {
2065           value = gfc_get_expr ();
2066           value->expr_type = EXPR_STRUCTURE;
2067           value->value.constructor = NULL;
2068           value->ts = comp->ts;
2069           value->where = gfc_current_locus;
2070
2071           if (build_actual_constructor (comp_head, &value->value.constructor,
2072                                         comp->ts.derived) == FAILURE)
2073             {
2074               gfc_free_expr (value);
2075               return FAILURE;
2076             }
2077           *ctor_head = ctor_tail = gfc_get_constructor ();
2078           ctor_tail->expr = value;
2079           continue;
2080         }
2081
2082       /* If it was not found, try the default initializer if there's any;
2083          otherwise, it's an error.  */
2084       if (!comp_iter)
2085         {
2086           if (comp->initializer)
2087             {
2088               if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: Structure"
2089                                   " constructor with missing optional arguments"
2090                                   " at %C") == FAILURE)
2091                 return FAILURE;
2092               value = gfc_copy_expr (comp->initializer);
2093             }
2094           else
2095             {
2096               gfc_error ("No initializer for component '%s' given in the"
2097                          " structure constructor at %C!", comp->name);
2098               return FAILURE;
2099             }
2100         }
2101       else
2102         value = comp_iter->val;
2103
2104       /* Add the value to the constructor chain built.  */
2105       if (ctor_tail)
2106         {
2107           ctor_tail->next = gfc_get_constructor ();
2108           ctor_tail = ctor_tail->next;
2109         }
2110       else
2111         *ctor_head = ctor_tail = gfc_get_constructor ();
2112       gcc_assert (value);
2113       ctor_tail->expr = value;
2114
2115       /* Remove the entry from the component list.  We don't want the expression
2116          value to be free'd, so set it to NULL.  */
2117       if (comp_iter)
2118         {
2119           *next_ptr = comp_iter->next;
2120           comp_iter->val = NULL;
2121           gfc_free_structure_ctor_component (comp_iter);
2122         }
2123     }
2124   return SUCCESS;
2125 }
2126
2127 match
2128 gfc_match_structure_constructor (gfc_symbol *sym, gfc_expr **result, bool parent)
2129 {
2130   gfc_structure_ctor_component *comp_tail, *comp_head, *comp_iter;
2131   gfc_constructor *ctor_head, *ctor_tail;
2132   gfc_component *comp; /* Is set NULL when named component is first seen */
2133   gfc_expr *e;
2134   locus where;
2135   match m;
2136   const char* last_name = NULL;
2137
2138   comp_tail = comp_head = NULL;
2139   ctor_head = ctor_tail = NULL;
2140
2141   if (!parent && gfc_match_char ('(') != MATCH_YES)
2142     goto syntax;
2143
2144   where = gfc_current_locus;
2145
2146   gfc_find_component (sym, NULL, false, true);
2147
2148   /* Match the component list and store it in a list together with the
2149      corresponding component names.  Check for empty argument list first.  */
2150   if (gfc_match_char (')') != MATCH_YES)
2151     {
2152       comp = sym->components;
2153       do
2154         {
2155           gfc_component *this_comp = NULL;
2156
2157           if (!comp_head)
2158             comp_tail = comp_head = gfc_get_structure_ctor_component ();
2159           else
2160             {
2161               comp_tail->next = gfc_get_structure_ctor_component ();
2162               comp_tail = comp_tail->next;
2163             }
2164           comp_tail->name = XCNEWVEC (char, GFC_MAX_SYMBOL_LEN + 1);
2165           comp_tail->val = NULL;
2166           comp_tail->where = gfc_current_locus;
2167
2168           /* Try matching a component name.  */
2169           if (gfc_match_name (comp_tail->name) == MATCH_YES 
2170               && gfc_match_char ('=') == MATCH_YES)
2171             {
2172               if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: Structure"
2173                                   " constructor with named arguments at %C")
2174                   == FAILURE)
2175                 goto cleanup;
2176
2177               last_name = comp_tail->name;
2178               comp = NULL;
2179             }
2180           else
2181             {
2182               /* Components without name are not allowed after the first named
2183                  component initializer!  */
2184               if (!comp)
2185                 {
2186                   if (last_name)
2187                     gfc_error ("Component initializer without name after"
2188                                " component named %s at %C!", last_name);
2189                   else if (!parent)
2190                     gfc_error ("Too many components in structure constructor at"
2191                                " %C!");
2192                   goto cleanup;
2193                 }
2194
2195               gfc_current_locus = comp_tail->where;
2196               strncpy (comp_tail->name, comp->name, GFC_MAX_SYMBOL_LEN + 1);
2197             }
2198
2199           /* Find the current component in the structure definition and check
2200              its access is not private.  */
2201           if (comp)
2202             this_comp = gfc_find_component (sym, comp->name, false, false);
2203           else
2204             {
2205               this_comp = gfc_find_component (sym,
2206                                               (const char *)comp_tail->name,
2207                                               false, false);
2208               comp = NULL; /* Reset needed!  */
2209             }
2210
2211           /* Here we can check if a component name is given which does not
2212              correspond to any component of the defined structure.  */
2213           if (!this_comp)
2214             goto cleanup;
2215
2216           /* Check if this component is already given a value.  */
2217           for (comp_iter = comp_head; comp_iter != comp_tail; 
2218                comp_iter = comp_iter->next)
2219             {
2220               gcc_assert (comp_iter);
2221               if (!strcmp (comp_iter->name, comp_tail->name))
2222                 {
2223                   gfc_error ("Component '%s' is initialized twice in the"
2224                              " structure constructor at %C!", comp_tail->name);
2225                   goto cleanup;
2226                 }
2227             }
2228
2229           /* Match the current initializer expression.  */
2230           m = gfc_match_expr (&comp_tail->val);
2231           if (m == MATCH_NO)
2232             goto syntax;
2233           if (m == MATCH_ERROR)
2234             goto cleanup;
2235
2236           /* If not explicitly a parent constructor, gather up the components
2237              and build one.  */
2238           if (comp && comp == sym->components
2239                 && sym->attr.extension
2240                 && (comp_tail->val->ts.type != BT_DERIVED
2241                       ||
2242                     comp_tail->val->ts.derived != this_comp->ts.derived))
2243             {
2244               gfc_current_locus = where;
2245               gfc_free_expr (comp_tail->val);
2246
2247               m = gfc_match_structure_constructor (comp->ts.derived, 
2248                                                    &comp_tail->val, true);
2249               if (m == MATCH_NO)
2250                 goto syntax;
2251               if (m == MATCH_ERROR)
2252                 goto cleanup;
2253             }
2254
2255           if (comp)
2256             comp = comp->next;
2257
2258           if (parent && !comp)
2259             break;
2260         }
2261
2262       while (gfc_match_char (',') == MATCH_YES);
2263
2264       if (!parent && gfc_match_char (')') != MATCH_YES)
2265         goto syntax;
2266     }
2267
2268   if (build_actual_constructor (&comp_head, &ctor_head, sym) == FAILURE)
2269     goto cleanup;
2270
2271   /* No component should be left, as this should have caused an error in the
2272      loop constructing the component-list (name that does not correspond to any
2273      component in the structure definition).  */
2274   if (comp_head && sym->attr.extension)
2275     {
2276       for (comp_iter = comp_head; comp_iter; comp_iter = comp_iter->next)
2277         {
2278           gfc_error ("component '%s' at %L has already been set by a "
2279                      "parent derived type constructor", comp_iter->name,
2280                      &comp_iter->where);
2281         }
2282       goto cleanup;
2283     }
2284   else
2285     gcc_assert (!comp_head);
2286
2287   e = gfc_get_expr ();
2288
2289   e->expr_type = EXPR_STRUCTURE;
2290
2291   e->ts.type = BT_DERIVED;
2292   e->ts.derived = sym;
2293   e->where = where;
2294
2295   e->value.constructor = ctor_head;
2296
2297   *result = e;
2298   return MATCH_YES;
2299
2300 syntax:
2301   gfc_error ("Syntax error in structure constructor at %C");
2302
2303 cleanup:
2304   for (comp_iter = comp_head; comp_iter; )
2305     {
2306       gfc_structure_ctor_component *next = comp_iter->next;
2307       gfc_free_structure_ctor_component (comp_iter);
2308       comp_iter = next;
2309     }
2310   gfc_free_constructor (ctor_head);
2311   return MATCH_ERROR;
2312 }
2313
2314
2315 /* If the symbol is an implicit do loop index and implicitly typed,
2316    it should not be host associated.  Provide a symtree from the
2317    current namespace.  */
2318 static match
2319 check_for_implicit_index (gfc_symtree **st, gfc_symbol **sym)
2320 {
2321   if ((*sym)->attr.flavor == FL_VARIABLE
2322       && (*sym)->ns != gfc_current_ns
2323       && (*sym)->attr.implied_index
2324       && (*sym)->attr.implicit_type
2325       && !(*sym)->attr.use_assoc)
2326     {
2327       int i;
2328       i = gfc_get_sym_tree ((*sym)->name, NULL, st);
2329       if (i)
2330         return MATCH_ERROR;
2331       *sym = (*st)->n.sym;
2332     }
2333   return MATCH_YES;
2334 }
2335
2336
2337 /* Matches a variable name followed by anything that might follow it--
2338    array reference, argument list of a function, etc.  */
2339
2340 match
2341 gfc_match_rvalue (gfc_expr **result)
2342 {
2343   gfc_actual_arglist *actual_arglist;
2344   char name[GFC_MAX_SYMBOL_LEN + 1], argname[GFC_MAX_SYMBOL_LEN + 1];
2345   gfc_state_data *st;
2346   gfc_symbol *sym;
2347   gfc_symtree *symtree;
2348   locus where, old_loc;
2349   gfc_expr *e;
2350   match m, m2;
2351   int i;
2352   gfc_typespec *ts;
2353   bool implicit_char;
2354   gfc_ref *ref;
2355
2356   m = gfc_match_name (name);
2357   if (m != MATCH_YES)
2358     return m;
2359
2360   if (gfc_find_state (COMP_INTERFACE) == SUCCESS
2361       && !gfc_current_ns->has_import_set)
2362     i = gfc_get_sym_tree (name, NULL, &symtree);
2363   else
2364     i = gfc_get_ha_sym_tree (name, &symtree);
2365
2366   if (i)
2367     return MATCH_ERROR;
2368
2369   sym = symtree->n.sym;
2370   e = NULL;
2371   where = gfc_current_locus;
2372
2373   /* If this is an implicit do loop index and implicitly typed,
2374      it should not be host associated.  */
2375   m = check_for_implicit_index (&symtree, &sym);
2376   if (m != MATCH_YES)
2377     return m;
2378
2379   gfc_set_sym_referenced (sym);
2380   sym->attr.implied_index = 0;
2381
2382   if (sym->attr.function && sym->result == sym)
2383     {
2384       /* See if this is a directly recursive function call.  */
2385       gfc_gobble_whitespace ();
2386       if (sym->attr.recursive
2387           && gfc_peek_ascii_char () == '('
2388           && gfc_current_ns->proc_name == sym
2389           && !sym->attr.dimension)
2390         {
2391           gfc_error ("'%s' at %C is the name of a recursive function "
2392                      "and so refers to the result variable. Use an "
2393                      "explicit RESULT variable for direct recursion "
2394                      "(12.5.2.1)", sym->name);
2395           return MATCH_ERROR;
2396         }
2397
2398       if (gfc_current_ns->proc_name == sym
2399           || (gfc_current_ns->parent != NULL
2400               && gfc_current_ns->parent->proc_name == sym))
2401         goto variable;
2402
2403       if (sym->attr.entry
2404           && (sym->ns == gfc_current_ns
2405               || sym->ns == gfc_current_ns->parent))
2406         {
2407           gfc_entry_list *el = NULL;
2408           
2409           for (el = sym->ns->entries; el; el = el->next)
2410             if (sym == el->sym)
2411               goto variable;
2412         }
2413     }
2414
2415   if (gfc_matching_procptr_assignment)
2416     goto procptr0;
2417
2418   if (sym->attr.function || sym->attr.external || sym->attr.intrinsic)
2419     goto function0;
2420
2421   if (sym->attr.generic)
2422     goto generic_function;
2423
2424   switch (sym->attr.flavor)
2425     {
2426     case FL_VARIABLE:
2427     variable:
2428       if (sym->ts.type == BT_UNKNOWN && gfc_peek_ascii_char () == '%'
2429           && gfc_get_default_type (sym, sym->ns)->type == BT_DERIVED)
2430         gfc_set_default_type (sym, 0, sym->ns);
2431
2432       e = gfc_get_expr ();
2433
2434       e->expr_type = EXPR_VARIABLE;
2435       e->symtree = symtree;
2436
2437       m = gfc_match_varspec (e, 0, false);
2438       break;
2439
2440     case FL_PARAMETER:
2441       /* A statement of the form "REAL, parameter :: a(0:10) = 1" will
2442          end up here.  Unfortunately, sym->value->expr_type is set to 
2443          EXPR_CONSTANT, and so the if () branch would be followed without
2444          the !sym->as check.  */
2445       if (sym->value && sym->value->expr_type != EXPR_ARRAY && !sym->as)
2446         e = gfc_copy_expr (sym->value);
2447       else
2448         {
2449           e = gfc_get_expr ();
2450           e->expr_type = EXPR_VARIABLE;
2451         }
2452
2453       e->symtree = symtree;
2454       m = gfc_match_varspec (e, 0, false);
2455
2456       if (sym->ts.is_c_interop || sym->ts.is_iso_c)
2457         break;
2458
2459       /* Variable array references to derived type parameters cause
2460          all sorts of headaches in simplification. Treating such
2461          expressions as variable works just fine for all array
2462          references.  */
2463       if (sym->value && sym->ts.type == BT_DERIVED && e->ref)
2464         {
2465           for (ref = e->ref; ref; ref = ref->next)
2466             if (ref->type == REF_ARRAY)
2467               break;
2468
2469           if (ref == NULL || ref->u.ar.type == AR_FULL)
2470             break;
2471
2472           ref = e->ref;
2473           e->ref = NULL;
2474           gfc_free_expr (e);
2475           e = gfc_get_expr ();
2476           e->expr_type = EXPR_VARIABLE;
2477           e->symtree = symtree;
2478           e->ref = ref;
2479         }
2480
2481       break;
2482
2483     case FL_DERIVED:
2484       sym = gfc_use_derived (sym);
2485       if (sym == NULL)
2486         m = MATCH_ERROR;
2487       else
2488         m = gfc_match_structure_constructor (sym, &e, false);
2489       break;
2490
2491     /* If we're here, then the name is known to be the name of a
2492        procedure, yet it is not sure to be the name of a function.  */
2493     case FL_PROCEDURE:
2494
2495     /* Procedure Pointer Assignments. */
2496     procptr0:
2497       if (gfc_matching_procptr_assignment)
2498         {
2499           gfc_gobble_whitespace ();
2500           if (sym->attr.function && gfc_peek_ascii_char () == '(')
2501             /* Parse functions returning a procptr.  */
2502             goto function0;
2503
2504           if (sym->attr.flavor == FL_UNKNOWN) sym->attr.flavor = FL_PROCEDURE;
2505           if (gfc_is_intrinsic (sym, 0, gfc_current_locus)
2506               || gfc_is_intrinsic (sym, 1, gfc_current_locus))
2507             sym->attr.intrinsic = 1;
2508           e = gfc_get_expr ();
2509           e->expr_type = EXPR_VARIABLE;
2510           e->symtree = symtree;
2511           m = gfc_match_varspec (e, 0, false);
2512           break;
2513         }
2514
2515       if (sym->attr.subroutine)
2516         {
2517           gfc_error ("Unexpected use of subroutine name '%s' at %C",
2518                      sym->name);
2519           m = MATCH_ERROR;
2520           break;
2521         }
2522
2523       /* At this point, the name has to be a non-statement function.
2524          If the name is the same as the current function being
2525          compiled, then we have a variable reference (to the function
2526          result) if the name is non-recursive.  */
2527
2528       st = gfc_enclosing_unit (NULL);
2529
2530       if (st != NULL && st->state == COMP_FUNCTION
2531           && st->sym == sym
2532           && !sym->attr.recursive)
2533         {
2534           e = gfc_get_expr ();
2535           e->symtree = symtree;
2536           e->expr_type = EXPR_VARIABLE;
2537
2538           m = gfc_match_varspec (e, 0, false);
2539           break;
2540         }
2541
2542     /* Match a function reference.  */
2543     function0:
2544       m = gfc_match_actual_arglist (0, &actual_arglist);
2545       if (m == MATCH_NO)
2546         {
2547           if (sym->attr.proc == PROC_ST_FUNCTION)
2548             gfc_error ("Statement function '%s' requires argument list at %C",
2549                        sym->name);
2550           else
2551             gfc_error ("Function '%s' requires an argument list at %C",
2552                        sym->name);
2553
2554           m = MATCH_ERROR;
2555           break;
2556         }
2557
2558       if (m != MATCH_YES)
2559         {
2560           m = MATCH_ERROR;
2561           break;
2562         }
2563
2564       gfc_get_ha_sym_tree (name, &symtree);     /* Can't fail */
2565       sym = symtree->n.sym;
2566
2567       e = gfc_get_expr ();
2568       e->symtree = symtree;
2569       e->expr_type = EXPR_FUNCTION;
2570       e->value.function.actual = actual_arglist;
2571       e->where = gfc_current_locus;
2572
2573       if (sym->as != NULL)
2574         e->rank = sym->as->rank;
2575
2576       if (!sym->attr.function
2577           && gfc_add_function (&sym->attr, sym->name, NULL) == FAILURE)
2578         {
2579           m = MATCH_ERROR;
2580           break;
2581         }
2582
2583       /* Check here for the existence of at least one argument for the
2584          iso_c_binding functions C_LOC, C_FUNLOC, and C_ASSOCIATED.  The
2585          argument(s) given will be checked in gfc_iso_c_func_interface,
2586          during resolution of the function call.  */
2587       if (sym->attr.is_iso_c == 1
2588           && (sym->from_intmod == INTMOD_ISO_C_BINDING
2589               && (sym->intmod_sym_id == ISOCBINDING_LOC
2590                   || sym->intmod_sym_id == ISOCBINDING_FUNLOC
2591                   || sym->intmod_sym_id == ISOCBINDING_ASSOCIATED)))
2592         {
2593           /* make sure we were given a param */
2594           if (actual_arglist == NULL)
2595             {
2596               gfc_error ("Missing argument to '%s' at %C", sym->name);
2597               m = MATCH_ERROR;
2598               break;
2599             }
2600         }
2601
2602       if (sym->result == NULL)
2603         sym->result = sym;
2604
2605       m = MATCH_YES;
2606       break;
2607
2608     case FL_UNKNOWN:
2609
2610       /* Special case for derived type variables that get their types
2611          via an IMPLICIT statement.  This can't wait for the
2612          resolution phase.  */
2613
2614       if (gfc_peek_ascii_char () == '%'
2615           && sym->ts.type == BT_UNKNOWN
2616           && gfc_get_default_type (sym, sym->ns)->type == BT_DERIVED)
2617         gfc_set_default_type (sym, 0, sym->ns);
2618
2619       /* If the symbol has a dimension attribute, the expression is a
2620          variable.  */
2621
2622       if (sym->attr.dimension)
2623         {
2624           if (gfc_add_flavor (&sym->attr, FL_VARIABLE,
2625                               sym->name, NULL) == FAILURE)
2626             {
2627               m = MATCH_ERROR;
2628               break;
2629             }
2630
2631           e = gfc_get_expr ();
2632           e->symtree = symtree;
2633           e->expr_type = EXPR_VARIABLE;
2634           m = gfc_match_varspec (e, 0, false);
2635           break;
2636         }
2637
2638       /* Name is not an array, so we peek to see if a '(' implies a
2639          function call or a substring reference.  Otherwise the
2640          variable is just a scalar.  */
2641
2642       gfc_gobble_whitespace ();
2643       if (gfc_peek_ascii_char () != '(')
2644         {
2645           /* Assume a scalar variable */
2646           e = gfc_get_expr ();
2647           e->symtree = symtree;
2648           e->expr_type = EXPR_VARIABLE;
2649
2650           if (gfc_add_flavor (&sym->attr, FL_VARIABLE,
2651                               sym->name, NULL) == FAILURE)
2652             {
2653               m = MATCH_ERROR;
2654               break;
2655             }
2656
2657           /*FIXME:??? gfc_match_varspec does set this for us: */
2658           e->ts = sym->ts;
2659           m = gfc_match_varspec (e, 0, false);
2660           break;
2661         }
2662
2663       /* See if this is a function reference with a keyword argument
2664          as first argument. We do this because otherwise a spurious
2665          symbol would end up in the symbol table.  */
2666
2667       old_loc = gfc_current_locus;
2668       m2 = gfc_match (" ( %n =", argname);
2669       gfc_current_locus = old_loc;
2670
2671       e = gfc_get_expr ();
2672       e->symtree = symtree;
2673
2674       if (m2 != MATCH_YES)
2675         {
2676           /* Try to figure out whether we're dealing with a character type.
2677              We're peeking ahead here, because we don't want to call 
2678              match_substring if we're dealing with an implicitly typed
2679              non-character variable.  */
2680           implicit_char = false;
2681           if (sym->ts.type == BT_UNKNOWN)
2682             {
2683               ts = gfc_get_default_type (sym,NULL);
2684               if (ts->type == BT_CHARACTER)
2685                 implicit_char = true;
2686             }
2687
2688           /* See if this could possibly be a substring reference of a name
2689              that we're not sure is a variable yet.  */
2690
2691           if ((implicit_char || sym->ts.type == BT_CHARACTER)
2692               && match_substring (sym->ts.cl, 0, &e->ref) == MATCH_YES)
2693             {
2694
2695               e->expr_type = EXPR_VARIABLE;
2696
2697               if (sym->attr.flavor != FL_VARIABLE
2698                   && gfc_add_flavor (&sym->attr, FL_VARIABLE,
2699                                      sym->name, NULL) == FAILURE)
2700                 {
2701                   m = MATCH_ERROR;
2702                   break;
2703                 }
2704
2705               if (sym->ts.type == BT_UNKNOWN
2706                   && gfc_set_default_type (sym, 1, NULL) == FAILURE)
2707                 {
2708                   m = MATCH_ERROR;
2709                   break;
2710                 }
2711
2712               e->ts = sym->ts;
2713               if (e->ref)
2714                 e->ts.cl = NULL;
2715               m = MATCH_YES;
2716               break;
2717             }
2718         }
2719
2720       /* Give up, assume we have a function.  */
2721
2722       gfc_get_sym_tree (name, NULL, &symtree);  /* Can't fail */
2723       sym = symtree->n.sym;
2724       e->expr_type = EXPR_FUNCTION;
2725
2726       if (!sym->attr.function
2727           && gfc_add_function (&sym->attr, sym->name, NULL) == FAILURE)
2728         {
2729           m = MATCH_ERROR;
2730           break;
2731         }
2732
2733       sym->result = sym;
2734
2735       m = gfc_match_actual_arglist (0, &e->value.function.actual);
2736       if (m == MATCH_NO)
2737         gfc_error ("Missing argument list in function '%s' at %C", sym->name);
2738
2739       if (m != MATCH_YES)
2740         {
2741           m = MATCH_ERROR;
2742           break;
2743         }
2744
2745       /* If our new function returns a character, array or structure
2746          type, it might have subsequent references.  */
2747
2748       m = gfc_match_varspec (e, 0, false);
2749       if (m == MATCH_NO)
2750         m = MATCH_YES;
2751
2752       break;
2753
2754     generic_function:
2755       gfc_get_sym_tree (name, NULL, &symtree);  /* Can't fail */
2756
2757       e = gfc_get_expr ();
2758       e->symtree = symtree;
2759       e->expr_type = EXPR_FUNCTION;
2760
2761       m = gfc_match_actual_arglist (0, &e->value.function.actual);
2762       break;
2763
2764     default:
2765       gfc_error ("Symbol at %C is not appropriate for an expression");
2766       return MATCH_ERROR;
2767     }
2768
2769   if (m == MATCH_YES)
2770     {
2771       e->where = where;
2772       *result = e;
2773     }
2774   else
2775     gfc_free_expr (e);
2776
2777   return m;
2778 }
2779
2780
2781 /* Match a variable, i.e. something that can be assigned to.  This
2782    starts as a symbol, can be a structure component or an array
2783    reference.  It can be a function if the function doesn't have a
2784    separate RESULT variable.  If the symbol has not been previously
2785    seen, we assume it is a variable.
2786
2787    This function is called by two interface functions:
2788    gfc_match_variable, which has host_flag = 1, and
2789    gfc_match_equiv_variable, with host_flag = 0, to restrict the
2790    match of the symbol to the local scope.  */
2791
2792 static match
2793 match_variable (gfc_expr **result, int equiv_flag, int host_flag)
2794 {
2795   gfc_symbol *sym;
2796   gfc_symtree *st;
2797   gfc_expr *expr;
2798   locus where;
2799   match m;
2800
2801   /* Since nothing has any business being an lvalue in a module
2802      specification block, an interface block or a contains section,
2803      we force the changed_symbols mechanism to work by setting
2804      host_flag to 0. This prevents valid symbols that have the name
2805      of keywords, such as 'end', being turned into variables by
2806      failed matching to assignments for, e.g., END INTERFACE.  */
2807   if (gfc_current_state () == COMP_MODULE
2808       || gfc_current_state () == COMP_INTERFACE
2809       || gfc_current_state () == COMP_CONTAINS)
2810     host_flag = 0;
2811
2812   m = gfc_match_sym_tree (&st, host_flag);
2813   if (m != MATCH_YES)
2814     return m;
2815   where = gfc_current_locus;
2816
2817   sym = st->n.sym;
2818
2819   /* If this is an implicit do loop index and implicitly typed,
2820      it should not be host associated.  */
2821   m = check_for_implicit_index (&st, &sym);
2822   if (m != MATCH_YES)
2823     return m;
2824
2825   sym->attr.implied_index = 0;
2826
2827   gfc_set_sym_referenced (sym);
2828   switch (sym->attr.flavor)
2829     {
2830     case FL_VARIABLE:
2831       if (sym->attr.is_protected && sym->attr.use_assoc)
2832         {
2833           gfc_error ("Assigning to PROTECTED variable at %C");
2834           return MATCH_ERROR;
2835         }
2836       break;
2837
2838     case FL_UNKNOWN:
2839       {
2840         sym_flavor flavor = FL_UNKNOWN;
2841
2842         gfc_gobble_whitespace ();
2843
2844         if (sym->attr.external || sym->attr.procedure
2845             || sym->attr.function || sym->attr.subroutine)
2846           flavor = FL_PROCEDURE;
2847
2848         /* If it is not a procedure, is not typed and is host associated,
2849            we cannot give it a flavor yet.  */
2850         else if (sym->ns == gfc_current_ns->parent
2851                    && sym->ts.type == BT_UNKNOWN)
2852           break;
2853
2854         /* These are definitive indicators that this is a variable.  */
2855         else if (gfc_peek_ascii_char () != '(' || sym->ts.type != BT_UNKNOWN
2856                  || sym->attr.pointer || sym->as != NULL)
2857           flavor = FL_VARIABLE;
2858
2859         if (flavor != FL_UNKNOWN
2860             && gfc_add_flavor (&sym->attr, flavor, sym->name, NULL) == FAILURE)
2861           return MATCH_ERROR;
2862       }
2863       break;
2864
2865     case FL_PARAMETER:
2866       if (equiv_flag)
2867         gfc_error ("Named constant at %C in an EQUIVALENCE");
2868       else
2869         gfc_error ("Cannot assign to a named constant at %C");
2870       return MATCH_ERROR;
2871       break;
2872
2873     case FL_PROCEDURE:
2874       /* Check for a nonrecursive function result variable.  */
2875       if (sym->attr.function
2876           && !sym->attr.external
2877           && sym->result == sym
2878           && ((sym == gfc_current_ns->proc_name
2879                && sym == gfc_current_ns->proc_name->result)
2880               || (gfc_current_ns->parent
2881                   && sym == gfc_current_ns->parent->proc_name->result)
2882               || (sym->attr.entry
2883                   && sym->ns == gfc_current_ns)
2884               || (sym->attr.entry
2885                   && sym->ns == gfc_current_ns->parent)))
2886         {
2887           /* If a function result is a derived type, then the derived
2888              type may still have to be resolved.  */
2889
2890           if (sym->ts.type == BT_DERIVED
2891               && gfc_use_derived (sym->ts.derived) == NULL)
2892             return MATCH_ERROR;
2893           break;
2894         }
2895
2896       if (sym->attr.proc_pointer)
2897         break;
2898
2899       /* Fall through to error */
2900
2901     default:
2902       gfc_error ("'%s' at %C is not a variable", sym->name);
2903       return MATCH_ERROR;
2904     }
2905
2906   /* Special case for derived type variables that get their types
2907      via an IMPLICIT statement.  This can't wait for the
2908      resolution phase.  */
2909
2910     {
2911       gfc_namespace * implicit_ns;
2912
2913       if (gfc_current_ns->proc_name == sym)
2914         implicit_ns = gfc_current_ns;
2915       else
2916         implicit_ns = sym->ns;
2917         
2918       if (gfc_peek_ascii_char () == '%'
2919           && sym->ts.type == BT_UNKNOWN
2920           && gfc_get_default_type (sym, implicit_ns)->type == BT_DERIVED)
2921         gfc_set_default_type (sym, 0, implicit_ns);
2922     }
2923
2924   expr = gfc_get_expr ();
2925
2926   expr->expr_type = EXPR_VARIABLE;
2927   expr->symtree = st;
2928   expr->ts = sym->ts;
2929   expr->where = where;
2930
2931   /* Now see if we have to do more.  */
2932   m = gfc_match_varspec (expr, equiv_flag, false);
2933   if (m != MATCH_YES)
2934     {
2935       gfc_free_expr (expr);
2936       return m;
2937     }
2938
2939   *result = expr;
2940   return MATCH_YES;
2941 }
2942
2943
2944 match
2945 gfc_match_variable (gfc_expr **result, int equiv_flag)
2946 {
2947   return match_variable (result, equiv_flag, 1);
2948 }
2949
2950
2951 match
2952 gfc_match_equiv_variable (gfc_expr **result)
2953 {
2954   return match_variable (result, 1, 0);
2955 }
2956