2018-01-29 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / fortran / primary.c
blob3d076736fdcb89b65ac5c029aacd1ab62a130810
1 /* Primary expression subroutines
2 Copyright (C) 2000-2018 Free Software Foundation, Inc.
3 Contributed by Andy Vaught
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "options.h"
25 #include "gfortran.h"
26 #include "arith.h"
27 #include "match.h"
28 #include "parse.h"
29 #include "constructor.h"
31 int matching_actual_arglist = 0;
33 /* Matches a kind-parameter expression, which is either a named
34 symbolic constant or a nonnegative integer constant. If
35 successful, sets the kind value to the correct integer.
36 The argument 'is_iso_c' signals whether the kind is an ISO_C_BINDING
37 symbol like e.g. 'c_int'. */
39 static match
40 match_kind_param (int *kind, int *is_iso_c)
42 char name[GFC_MAX_SYMBOL_LEN + 1];
43 gfc_symbol *sym;
44 match m;
46 *is_iso_c = 0;
48 m = gfc_match_small_literal_int (kind, NULL);
49 if (m != MATCH_NO)
50 return m;
52 m = gfc_match_name (name);
53 if (m != MATCH_YES)
54 return m;
56 if (gfc_find_symbol (name, NULL, 1, &sym))
57 return MATCH_ERROR;
59 if (sym == NULL)
60 return MATCH_NO;
62 *is_iso_c = sym->attr.is_iso_c;
64 if (sym->attr.flavor != FL_PARAMETER)
65 return MATCH_NO;
67 if (sym->value == NULL)
68 return MATCH_NO;
70 if (gfc_extract_int (sym->value, kind))
71 return MATCH_NO;
73 gfc_set_sym_referenced (sym);
75 if (*kind < 0)
76 return MATCH_NO;
78 return MATCH_YES;
82 /* Get a trailing kind-specification for non-character variables.
83 Returns:
84 * the integer kind value or
85 * -1 if an error was generated,
86 * -2 if no kind was found.
87 The argument 'is_iso_c' signals whether the kind is an ISO_C_BINDING
88 symbol like e.g. 'c_int'. */
90 static int
91 get_kind (int *is_iso_c)
93 int kind;
94 match m;
96 *is_iso_c = 0;
98 if (gfc_match_char ('_') != MATCH_YES)
99 return -2;
101 m = match_kind_param (&kind, is_iso_c);
102 if (m == MATCH_NO)
103 gfc_error ("Missing kind-parameter at %C");
105 return (m == MATCH_YES) ? kind : -1;
109 /* Given a character and a radix, see if the character is a valid
110 digit in that radix. */
113 gfc_check_digit (char c, int radix)
115 int r;
117 switch (radix)
119 case 2:
120 r = ('0' <= c && c <= '1');
121 break;
123 case 8:
124 r = ('0' <= c && c <= '7');
125 break;
127 case 10:
128 r = ('0' <= c && c <= '9');
129 break;
131 case 16:
132 r = ISXDIGIT (c);
133 break;
135 default:
136 gfc_internal_error ("gfc_check_digit(): bad radix");
139 return r;
143 /* Match the digit string part of an integer if signflag is not set,
144 the signed digit string part if signflag is set. If the buffer
145 is NULL, we just count characters for the resolution pass. Returns
146 the number of characters matched, -1 for no match. */
148 static int
149 match_digits (int signflag, int radix, char *buffer)
151 locus old_loc;
152 int length;
153 char c;
155 length = 0;
156 c = gfc_next_ascii_char ();
158 if (signflag && (c == '+' || c == '-'))
160 if (buffer != NULL)
161 *buffer++ = c;
162 gfc_gobble_whitespace ();
163 c = gfc_next_ascii_char ();
164 length++;
167 if (!gfc_check_digit (c, radix))
168 return -1;
170 length++;
171 if (buffer != NULL)
172 *buffer++ = c;
174 for (;;)
176 old_loc = gfc_current_locus;
177 c = gfc_next_ascii_char ();
179 if (!gfc_check_digit (c, radix))
180 break;
182 if (buffer != NULL)
183 *buffer++ = c;
184 length++;
187 gfc_current_locus = old_loc;
189 return length;
193 /* Match an integer (digit string and optional kind).
194 A sign will be accepted if signflag is set. */
196 static match
197 match_integer_constant (gfc_expr **result, int signflag)
199 int length, kind, is_iso_c;
200 locus old_loc;
201 char *buffer;
202 gfc_expr *e;
204 old_loc = gfc_current_locus;
205 gfc_gobble_whitespace ();
207 length = match_digits (signflag, 10, NULL);
208 gfc_current_locus = old_loc;
209 if (length == -1)
210 return MATCH_NO;
212 buffer = (char *) alloca (length + 1);
213 memset (buffer, '\0', length + 1);
215 gfc_gobble_whitespace ();
217 match_digits (signflag, 10, buffer);
219 kind = get_kind (&is_iso_c);
220 if (kind == -2)
221 kind = gfc_default_integer_kind;
222 if (kind == -1)
223 return MATCH_ERROR;
225 if (kind == 4 && flag_integer4_kind == 8)
226 kind = 8;
228 if (gfc_validate_kind (BT_INTEGER, kind, true) < 0)
230 gfc_error ("Integer kind %d at %C not available", kind);
231 return MATCH_ERROR;
234 e = gfc_convert_integer (buffer, kind, 10, &gfc_current_locus);
235 e->ts.is_c_interop = is_iso_c;
237 if (gfc_range_check (e) != ARITH_OK)
239 gfc_error ("Integer too big for its kind at %C. This check can be "
240 "disabled with the option -fno-range-check");
242 gfc_free_expr (e);
243 return MATCH_ERROR;
246 *result = e;
247 return MATCH_YES;
251 /* Match a Hollerith constant. */
253 static match
254 match_hollerith_constant (gfc_expr **result)
256 locus old_loc;
257 gfc_expr *e = NULL;
258 int num, pad;
259 int i;
261 old_loc = gfc_current_locus;
262 gfc_gobble_whitespace ();
264 if (match_integer_constant (&e, 0) == MATCH_YES
265 && gfc_match_char ('h') == MATCH_YES)
267 if (!gfc_notify_std (GFC_STD_LEGACY, "Hollerith constant at %C"))
268 goto cleanup;
270 if (gfc_extract_int (e, &num, 1))
271 goto cleanup;
272 if (num == 0)
274 gfc_error ("Invalid Hollerith constant: %L must contain at least "
275 "one character", &old_loc);
276 goto cleanup;
278 if (e->ts.kind != gfc_default_integer_kind)
280 gfc_error ("Invalid Hollerith constant: Integer kind at %L "
281 "should be default", &old_loc);
282 goto cleanup;
284 else
286 gfc_free_expr (e);
287 e = gfc_get_constant_expr (BT_HOLLERITH, gfc_default_character_kind,
288 &gfc_current_locus);
290 /* Calculate padding needed to fit default integer memory. */
291 pad = gfc_default_integer_kind - (num % gfc_default_integer_kind);
293 e->representation.string = XCNEWVEC (char, num + pad + 1);
295 for (i = 0; i < num; i++)
297 gfc_char_t c = gfc_next_char_literal (INSTRING_WARN);
298 if (! gfc_wide_fits_in_byte (c))
300 gfc_error ("Invalid Hollerith constant at %L contains a "
301 "wide character", &old_loc);
302 goto cleanup;
305 e->representation.string[i] = (unsigned char) c;
308 /* Now pad with blanks and end with a null char. */
309 for (i = 0; i < pad; i++)
310 e->representation.string[num + i] = ' ';
312 e->representation.string[num + i] = '\0';
313 e->representation.length = num + pad;
314 e->ts.u.pad = pad;
316 *result = e;
317 return MATCH_YES;
321 gfc_free_expr (e);
322 gfc_current_locus = old_loc;
323 return MATCH_NO;
325 cleanup:
326 gfc_free_expr (e);
327 return MATCH_ERROR;
331 /* Match a binary, octal or hexadecimal constant that can be found in
332 a DATA statement. The standard permits b'010...', o'73...', and
333 z'a1...' where b, o, and z can be capital letters. This function
334 also accepts postfixed forms of the constants: '01...'b, '73...'o,
335 and 'a1...'z. An additional extension is the use of x for z. */
337 static match
338 match_boz_constant (gfc_expr **result)
340 int radix, length, x_hex, kind;
341 locus old_loc, start_loc;
342 char *buffer, post, delim;
343 gfc_expr *e;
345 start_loc = old_loc = gfc_current_locus;
346 gfc_gobble_whitespace ();
348 x_hex = 0;
349 switch (post = gfc_next_ascii_char ())
351 case 'b':
352 radix = 2;
353 post = 0;
354 break;
355 case 'o':
356 radix = 8;
357 post = 0;
358 break;
359 case 'x':
360 x_hex = 1;
361 /* Fall through. */
362 case 'z':
363 radix = 16;
364 post = 0;
365 break;
366 case '\'':
367 /* Fall through. */
368 case '\"':
369 delim = post;
370 post = 1;
371 radix = 16; /* Set to accept any valid digit string. */
372 break;
373 default:
374 goto backup;
377 /* No whitespace allowed here. */
379 if (post == 0)
380 delim = gfc_next_ascii_char ();
382 if (delim != '\'' && delim != '\"')
383 goto backup;
385 if (x_hex
386 && (!gfc_notify_std(GFC_STD_GNU, "Hexadecimal "
387 "constant at %C uses non-standard syntax")))
388 return MATCH_ERROR;
390 old_loc = gfc_current_locus;
392 length = match_digits (0, radix, NULL);
393 if (length == -1)
395 gfc_error ("Empty set of digits in BOZ constant at %C");
396 return MATCH_ERROR;
399 if (gfc_next_ascii_char () != delim)
401 gfc_error ("Illegal character in BOZ constant at %C");
402 return MATCH_ERROR;
405 if (post == 1)
407 switch (gfc_next_ascii_char ())
409 case 'b':
410 radix = 2;
411 break;
412 case 'o':
413 radix = 8;
414 break;
415 case 'x':
416 /* Fall through. */
417 case 'z':
418 radix = 16;
419 break;
420 default:
421 goto backup;
424 if (!gfc_notify_std (GFC_STD_GNU, "BOZ constant "
425 "at %C uses non-standard postfix syntax"))
426 return MATCH_ERROR;
429 gfc_current_locus = old_loc;
431 buffer = (char *) alloca (length + 1);
432 memset (buffer, '\0', length + 1);
434 match_digits (0, radix, buffer);
435 gfc_next_ascii_char (); /* Eat delimiter. */
436 if (post == 1)
437 gfc_next_ascii_char (); /* Eat postfixed b, o, z, or x. */
439 /* In section 5.2.5 and following C567 in the Fortran 2003 standard, we find
440 "If a data-stmt-constant is a boz-literal-constant, the corresponding
441 variable shall be of type integer. The boz-literal-constant is treated
442 as if it were an int-literal-constant with a kind-param that specifies
443 the representation method with the largest decimal exponent range
444 supported by the processor." */
446 kind = gfc_max_integer_kind;
447 e = gfc_convert_integer (buffer, kind, radix, &gfc_current_locus);
449 /* Mark as boz variable. */
450 e->is_boz = 1;
452 if (gfc_range_check (e) != ARITH_OK)
454 gfc_error ("Integer too big for integer kind %i at %C", kind);
455 gfc_free_expr (e);
456 return MATCH_ERROR;
459 if (!gfc_in_match_data ()
460 && (!gfc_notify_std(GFC_STD_F2003, "BOZ used outside a DATA "
461 "statement at %C")))
462 return MATCH_ERROR;
464 *result = e;
465 return MATCH_YES;
467 backup:
468 gfc_current_locus = start_loc;
469 return MATCH_NO;
473 /* Match a real constant of some sort. Allow a signed constant if signflag
474 is nonzero. */
476 static match
477 match_real_constant (gfc_expr **result, int signflag)
479 int kind, count, seen_dp, seen_digits, is_iso_c, default_exponent;
480 locus old_loc, temp_loc;
481 char *p, *buffer, c, exp_char;
482 gfc_expr *e;
483 bool negate;
485 old_loc = gfc_current_locus;
486 gfc_gobble_whitespace ();
488 e = NULL;
490 default_exponent = 0;
491 count = 0;
492 seen_dp = 0;
493 seen_digits = 0;
494 exp_char = ' ';
495 negate = FALSE;
497 c = gfc_next_ascii_char ();
498 if (signflag && (c == '+' || c == '-'))
500 if (c == '-')
501 negate = TRUE;
503 gfc_gobble_whitespace ();
504 c = gfc_next_ascii_char ();
507 /* Scan significand. */
508 for (;; c = gfc_next_ascii_char (), count++)
510 if (c == '.')
512 if (seen_dp)
513 goto done;
515 /* Check to see if "." goes with a following operator like
516 ".eq.". */
517 temp_loc = gfc_current_locus;
518 c = gfc_next_ascii_char ();
520 if (c == 'e' || c == 'd' || c == 'q')
522 c = gfc_next_ascii_char ();
523 if (c == '.')
524 goto done; /* Operator named .e. or .d. */
527 if (ISALPHA (c))
528 goto done; /* Distinguish 1.e9 from 1.eq.2 */
530 gfc_current_locus = temp_loc;
531 seen_dp = 1;
532 continue;
535 if (ISDIGIT (c))
537 seen_digits = 1;
538 continue;
541 break;
544 if (!seen_digits || (c != 'e' && c != 'd' && c != 'q'))
545 goto done;
546 exp_char = c;
549 if (c == 'q')
551 if (!gfc_notify_std (GFC_STD_GNU, "exponent-letter 'q' in "
552 "real-literal-constant at %C"))
553 return MATCH_ERROR;
554 else if (warn_real_q_constant)
555 gfc_warning (OPT_Wreal_q_constant,
556 "Extension: exponent-letter %<q%> in real-literal-constant "
557 "at %C");
560 /* Scan exponent. */
561 c = gfc_next_ascii_char ();
562 count++;
564 if (c == '+' || c == '-')
565 { /* optional sign */
566 c = gfc_next_ascii_char ();
567 count++;
570 if (!ISDIGIT (c))
572 /* With -fdec, default exponent to 0 instead of complaining. */
573 if (flag_dec)
574 default_exponent = 1;
575 else
577 gfc_error ("Missing exponent in real number at %C");
578 return MATCH_ERROR;
582 while (ISDIGIT (c))
584 c = gfc_next_ascii_char ();
585 count++;
588 done:
589 /* Check that we have a numeric constant. */
590 if (!seen_digits || (!seen_dp && exp_char == ' '))
592 gfc_current_locus = old_loc;
593 return MATCH_NO;
596 /* Convert the number. */
597 gfc_current_locus = old_loc;
598 gfc_gobble_whitespace ();
600 buffer = (char *) alloca (count + default_exponent + 1);
601 memset (buffer, '\0', count + default_exponent + 1);
603 p = buffer;
604 c = gfc_next_ascii_char ();
605 if (c == '+' || c == '-')
607 gfc_gobble_whitespace ();
608 c = gfc_next_ascii_char ();
611 /* Hack for mpfr_set_str(). */
612 for (;;)
614 if (c == 'd' || c == 'q')
615 *p = 'e';
616 else
617 *p = c;
618 p++;
619 if (--count == 0)
620 break;
622 c = gfc_next_ascii_char ();
624 if (default_exponent)
625 *p++ = '0';
627 kind = get_kind (&is_iso_c);
628 if (kind == -1)
629 goto cleanup;
631 switch (exp_char)
633 case 'd':
634 if (kind != -2)
636 gfc_error ("Real number at %C has a %<d%> exponent and an explicit "
637 "kind");
638 goto cleanup;
640 kind = gfc_default_double_kind;
642 if (kind == 4)
644 if (flag_real4_kind == 8)
645 kind = 8;
646 if (flag_real4_kind == 10)
647 kind = 10;
648 if (flag_real4_kind == 16)
649 kind = 16;
652 if (kind == 8)
654 if (flag_real8_kind == 4)
655 kind = 4;
656 if (flag_real8_kind == 10)
657 kind = 10;
658 if (flag_real8_kind == 16)
659 kind = 16;
661 break;
663 case 'q':
664 if (kind != -2)
666 gfc_error ("Real number at %C has a %<q%> exponent and an explicit "
667 "kind");
668 goto cleanup;
671 /* The maximum possible real kind type parameter is 16. First, try
672 that for the kind, then fallback to trying kind=10 (Intel 80 bit)
673 extended precision. If neither value works, just given up. */
674 kind = 16;
675 if (gfc_validate_kind (BT_REAL, kind, true) < 0)
677 kind = 10;
678 if (gfc_validate_kind (BT_REAL, kind, true) < 0)
680 gfc_error ("Invalid exponent-letter %<q%> in "
681 "real-literal-constant at %C");
682 goto cleanup;
685 break;
687 default:
688 if (kind == -2)
689 kind = gfc_default_real_kind;
691 if (kind == 4)
693 if (flag_real4_kind == 8)
694 kind = 8;
695 if (flag_real4_kind == 10)
696 kind = 10;
697 if (flag_real4_kind == 16)
698 kind = 16;
701 if (kind == 8)
703 if (flag_real8_kind == 4)
704 kind = 4;
705 if (flag_real8_kind == 10)
706 kind = 10;
707 if (flag_real8_kind == 16)
708 kind = 16;
711 if (gfc_validate_kind (BT_REAL, kind, true) < 0)
713 gfc_error ("Invalid real kind %d at %C", kind);
714 goto cleanup;
718 e = gfc_convert_real (buffer, kind, &gfc_current_locus);
719 if (negate)
720 mpfr_neg (e->value.real, e->value.real, GFC_RND_MODE);
721 e->ts.is_c_interop = is_iso_c;
723 switch (gfc_range_check (e))
725 case ARITH_OK:
726 break;
727 case ARITH_OVERFLOW:
728 gfc_error ("Real constant overflows its kind at %C");
729 goto cleanup;
731 case ARITH_UNDERFLOW:
732 if (warn_underflow)
733 gfc_warning (OPT_Wunderflow, "Real constant underflows its kind at %C");
734 mpfr_set_ui (e->value.real, 0, GFC_RND_MODE);
735 break;
737 default:
738 gfc_internal_error ("gfc_range_check() returned bad value");
741 /* Warn about trailing digits which suggest the user added too many
742 trailing digits, which may cause the appearance of higher pecision
743 than the kind kan support.
745 This is done by replacing the rightmost non-zero digit with zero
746 and comparing with the original value. If these are equal, we
747 assume the user supplied more digits than intended (or forgot to
748 convert to the correct kind).
751 if (warn_conversion_extra)
753 mpfr_t r;
754 char *c, *p;
755 bool did_break;
757 c = strchr (buffer, 'e');
758 if (c == NULL)
759 c = buffer + strlen(buffer);
761 did_break = false;
762 for (p = c - 1; p >= buffer; p--)
764 if (*p == '.')
765 continue;
767 if (*p != '0')
769 *p = '0';
770 did_break = true;
771 break;
775 if (did_break)
777 mpfr_init (r);
778 mpfr_set_str (r, buffer, 10, GFC_RND_MODE);
779 if (negate)
780 mpfr_neg (r, r, GFC_RND_MODE);
782 mpfr_sub (r, r, e->value.real, GFC_RND_MODE);
784 if (mpfr_cmp_ui (r, 0) == 0)
785 gfc_warning (OPT_Wconversion_extra, "Non-significant digits "
786 "in %qs number at %C, maybe incorrect KIND",
787 gfc_typename (&e->ts));
789 mpfr_clear (r);
793 *result = e;
794 return MATCH_YES;
796 cleanup:
797 gfc_free_expr (e);
798 return MATCH_ERROR;
802 /* Match a substring reference. */
804 static match
805 match_substring (gfc_charlen *cl, int init, gfc_ref **result, bool deferred)
807 gfc_expr *start, *end;
808 locus old_loc;
809 gfc_ref *ref;
810 match m;
812 start = NULL;
813 end = NULL;
815 old_loc = gfc_current_locus;
817 m = gfc_match_char ('(');
818 if (m != MATCH_YES)
819 return MATCH_NO;
821 if (gfc_match_char (':') != MATCH_YES)
823 if (init)
824 m = gfc_match_init_expr (&start);
825 else
826 m = gfc_match_expr (&start);
828 if (m != MATCH_YES)
830 m = MATCH_NO;
831 goto cleanup;
834 m = gfc_match_char (':');
835 if (m != MATCH_YES)
836 goto cleanup;
839 if (gfc_match_char (')') != MATCH_YES)
841 if (init)
842 m = gfc_match_init_expr (&end);
843 else
844 m = gfc_match_expr (&end);
846 if (m == MATCH_NO)
847 goto syntax;
848 if (m == MATCH_ERROR)
849 goto cleanup;
851 m = gfc_match_char (')');
852 if (m == MATCH_NO)
853 goto syntax;
856 /* Optimize away the (:) reference. */
857 if (start == NULL && end == NULL && !deferred)
858 ref = NULL;
859 else
861 ref = gfc_get_ref ();
863 ref->type = REF_SUBSTRING;
864 if (start == NULL)
865 start = gfc_get_int_expr (gfc_charlen_int_kind, NULL, 1);
866 ref->u.ss.start = start;
867 if (end == NULL && cl)
868 end = gfc_copy_expr (cl->length);
869 ref->u.ss.end = end;
870 ref->u.ss.length = cl;
873 *result = ref;
874 return MATCH_YES;
876 syntax:
877 gfc_error ("Syntax error in SUBSTRING specification at %C");
878 m = MATCH_ERROR;
880 cleanup:
881 gfc_free_expr (start);
882 gfc_free_expr (end);
884 gfc_current_locus = old_loc;
885 return m;
889 /* Reads the next character of a string constant, taking care to
890 return doubled delimiters on the input as a single instance of
891 the delimiter.
893 Special return values for "ret" argument are:
894 -1 End of the string, as determined by the delimiter
895 -2 Unterminated string detected
897 Backslash codes are also expanded at this time. */
899 static gfc_char_t
900 next_string_char (gfc_char_t delimiter, int *ret)
902 locus old_locus;
903 gfc_char_t c;
905 c = gfc_next_char_literal (INSTRING_WARN);
906 *ret = 0;
908 if (c == '\n')
910 *ret = -2;
911 return 0;
914 if (flag_backslash && c == '\\')
916 old_locus = gfc_current_locus;
918 if (gfc_match_special_char (&c) == MATCH_NO)
919 gfc_current_locus = old_locus;
921 if (!(gfc_option.allow_std & GFC_STD_GNU) && !inhibit_warnings)
922 gfc_warning (0, "Extension: backslash character at %C");
925 if (c != delimiter)
926 return c;
928 old_locus = gfc_current_locus;
929 c = gfc_next_char_literal (NONSTRING);
931 if (c == delimiter)
932 return c;
933 gfc_current_locus = old_locus;
935 *ret = -1;
936 return 0;
940 /* Special case of gfc_match_name() that matches a parameter kind name
941 before a string constant. This takes case of the weird but legal
942 case of:
944 kind_____'string'
946 where kind____ is a parameter. gfc_match_name() will happily slurp
947 up all the underscores, which leads to problems. If we return
948 MATCH_YES, the parse pointer points to the final underscore, which
949 is not part of the name. We never return MATCH_ERROR-- errors in
950 the name will be detected later. */
952 static match
953 match_charkind_name (char *name)
955 locus old_loc;
956 char c, peek;
957 int len;
959 gfc_gobble_whitespace ();
960 c = gfc_next_ascii_char ();
961 if (!ISALPHA (c))
962 return MATCH_NO;
964 *name++ = c;
965 len = 1;
967 for (;;)
969 old_loc = gfc_current_locus;
970 c = gfc_next_ascii_char ();
972 if (c == '_')
974 peek = gfc_peek_ascii_char ();
976 if (peek == '\'' || peek == '\"')
978 gfc_current_locus = old_loc;
979 *name = '\0';
980 return MATCH_YES;
984 if (!ISALNUM (c)
985 && c != '_'
986 && (c != '$' || !flag_dollar_ok))
987 break;
989 *name++ = c;
990 if (++len > GFC_MAX_SYMBOL_LEN)
991 break;
994 return MATCH_NO;
998 /* See if the current input matches a character constant. Lots of
999 contortions have to be done to match the kind parameter which comes
1000 before the actual string. The main consideration is that we don't
1001 want to error out too quickly. For example, we don't actually do
1002 any validation of the kinds until we have actually seen a legal
1003 delimiter. Using match_kind_param() generates errors too quickly. */
1005 static match
1006 match_string_constant (gfc_expr **result)
1008 char name[GFC_MAX_SYMBOL_LEN + 1], peek;
1009 size_t length;
1010 int kind,save_warn_ampersand, ret;
1011 locus old_locus, start_locus;
1012 gfc_symbol *sym;
1013 gfc_expr *e;
1014 match m;
1015 gfc_char_t c, delimiter, *p;
1017 old_locus = gfc_current_locus;
1019 gfc_gobble_whitespace ();
1021 c = gfc_next_char ();
1022 if (c == '\'' || c == '"')
1024 kind = gfc_default_character_kind;
1025 start_locus = gfc_current_locus;
1026 goto got_delim;
1029 if (gfc_wide_is_digit (c))
1031 kind = 0;
1033 while (gfc_wide_is_digit (c))
1035 kind = kind * 10 + c - '0';
1036 if (kind > 9999999)
1037 goto no_match;
1038 c = gfc_next_char ();
1042 else
1044 gfc_current_locus = old_locus;
1046 m = match_charkind_name (name);
1047 if (m != MATCH_YES)
1048 goto no_match;
1050 if (gfc_find_symbol (name, NULL, 1, &sym)
1051 || sym == NULL
1052 || sym->attr.flavor != FL_PARAMETER)
1053 goto no_match;
1055 kind = -1;
1056 c = gfc_next_char ();
1059 if (c == ' ')
1061 gfc_gobble_whitespace ();
1062 c = gfc_next_char ();
1065 if (c != '_')
1066 goto no_match;
1068 gfc_gobble_whitespace ();
1070 c = gfc_next_char ();
1071 if (c != '\'' && c != '"')
1072 goto no_match;
1074 start_locus = gfc_current_locus;
1076 if (kind == -1)
1078 if (gfc_extract_int (sym->value, &kind, 1))
1079 return MATCH_ERROR;
1080 gfc_set_sym_referenced (sym);
1083 if (gfc_validate_kind (BT_CHARACTER, kind, true) < 0)
1085 gfc_error ("Invalid kind %d for CHARACTER constant at %C", kind);
1086 return MATCH_ERROR;
1089 got_delim:
1090 /* Scan the string into a block of memory by first figuring out how
1091 long it is, allocating the structure, then re-reading it. This
1092 isn't particularly efficient, but string constants aren't that
1093 common in most code. TODO: Use obstacks? */
1095 delimiter = c;
1096 length = 0;
1098 for (;;)
1100 c = next_string_char (delimiter, &ret);
1101 if (ret == -1)
1102 break;
1103 if (ret == -2)
1105 gfc_current_locus = start_locus;
1106 gfc_error ("Unterminated character constant beginning at %C");
1107 return MATCH_ERROR;
1110 length++;
1113 /* Peek at the next character to see if it is a b, o, z, or x for the
1114 postfixed BOZ literal constants. */
1115 peek = gfc_peek_ascii_char ();
1116 if (peek == 'b' || peek == 'o' || peek =='z' || peek == 'x')
1117 goto no_match;
1119 e = gfc_get_character_expr (kind, &start_locus, NULL, length);
1121 gfc_current_locus = start_locus;
1123 /* We disable the warning for the following loop as the warning has already
1124 been printed in the loop above. */
1125 save_warn_ampersand = warn_ampersand;
1126 warn_ampersand = false;
1128 p = e->value.character.string;
1129 for (size_t i = 0; i < length; i++)
1131 c = next_string_char (delimiter, &ret);
1133 if (!gfc_check_character_range (c, kind))
1135 gfc_free_expr (e);
1136 gfc_error ("Character %qs in string at %C is not representable "
1137 "in character kind %d", gfc_print_wide_char (c), kind);
1138 return MATCH_ERROR;
1141 *p++ = c;
1144 *p = '\0'; /* TODO: C-style string is for development/debug purposes. */
1145 warn_ampersand = save_warn_ampersand;
1147 next_string_char (delimiter, &ret);
1148 if (ret != -1)
1149 gfc_internal_error ("match_string_constant(): Delimiter not found");
1151 if (match_substring (NULL, 0, &e->ref, false) != MATCH_NO)
1152 e->expr_type = EXPR_SUBSTRING;
1154 *result = e;
1156 return MATCH_YES;
1158 no_match:
1159 gfc_current_locus = old_locus;
1160 return MATCH_NO;
1164 /* Match a .true. or .false. Returns 1 if a .true. was found,
1165 0 if a .false. was found, and -1 otherwise. */
1166 static int
1167 match_logical_constant_string (void)
1169 locus orig_loc = gfc_current_locus;
1171 gfc_gobble_whitespace ();
1172 if (gfc_next_ascii_char () == '.')
1174 char ch = gfc_next_ascii_char ();
1175 if (ch == 'f')
1177 if (gfc_next_ascii_char () == 'a'
1178 && gfc_next_ascii_char () == 'l'
1179 && gfc_next_ascii_char () == 's'
1180 && gfc_next_ascii_char () == 'e'
1181 && gfc_next_ascii_char () == '.')
1182 /* Matched ".false.". */
1183 return 0;
1185 else if (ch == 't')
1187 if (gfc_next_ascii_char () == 'r'
1188 && gfc_next_ascii_char () == 'u'
1189 && gfc_next_ascii_char () == 'e'
1190 && gfc_next_ascii_char () == '.')
1191 /* Matched ".true.". */
1192 return 1;
1195 gfc_current_locus = orig_loc;
1196 return -1;
1199 /* Match a .true. or .false. */
1201 static match
1202 match_logical_constant (gfc_expr **result)
1204 gfc_expr *e;
1205 int i, kind, is_iso_c;
1207 i = match_logical_constant_string ();
1208 if (i == -1)
1209 return MATCH_NO;
1211 kind = get_kind (&is_iso_c);
1212 if (kind == -1)
1213 return MATCH_ERROR;
1214 if (kind == -2)
1215 kind = gfc_default_logical_kind;
1217 if (gfc_validate_kind (BT_LOGICAL, kind, true) < 0)
1219 gfc_error ("Bad kind for logical constant at %C");
1220 return MATCH_ERROR;
1223 e = gfc_get_logical_expr (kind, &gfc_current_locus, i);
1224 e->ts.is_c_interop = is_iso_c;
1226 *result = e;
1227 return MATCH_YES;
1231 /* Match a real or imaginary part of a complex constant that is a
1232 symbolic constant. */
1234 static match
1235 match_sym_complex_part (gfc_expr **result)
1237 char name[GFC_MAX_SYMBOL_LEN + 1];
1238 gfc_symbol *sym;
1239 gfc_expr *e;
1240 match m;
1242 m = gfc_match_name (name);
1243 if (m != MATCH_YES)
1244 return m;
1246 if (gfc_find_symbol (name, NULL, 1, &sym) || sym == NULL)
1247 return MATCH_NO;
1249 if (sym->attr.flavor != FL_PARAMETER)
1251 gfc_error ("Expected PARAMETER symbol in complex constant at %C");
1252 return MATCH_ERROR;
1255 if (!sym->value)
1256 goto error;
1258 if (!gfc_numeric_ts (&sym->value->ts))
1260 gfc_error ("Numeric PARAMETER required in complex constant at %C");
1261 return MATCH_ERROR;
1264 if (sym->value->rank != 0)
1266 gfc_error ("Scalar PARAMETER required in complex constant at %C");
1267 return MATCH_ERROR;
1270 if (!gfc_notify_std (GFC_STD_F2003, "PARAMETER symbol in "
1271 "complex constant at %C"))
1272 return MATCH_ERROR;
1274 switch (sym->value->ts.type)
1276 case BT_REAL:
1277 e = gfc_copy_expr (sym->value);
1278 break;
1280 case BT_COMPLEX:
1281 e = gfc_complex2real (sym->value, sym->value->ts.kind);
1282 if (e == NULL)
1283 goto error;
1284 break;
1286 case BT_INTEGER:
1287 e = gfc_int2real (sym->value, gfc_default_real_kind);
1288 if (e == NULL)
1289 goto error;
1290 break;
1292 default:
1293 gfc_internal_error ("gfc_match_sym_complex_part(): Bad type");
1296 *result = e; /* e is a scalar, real, constant expression. */
1297 return MATCH_YES;
1299 error:
1300 gfc_error ("Error converting PARAMETER constant in complex constant at %C");
1301 return MATCH_ERROR;
1305 /* Match a real or imaginary part of a complex number. */
1307 static match
1308 match_complex_part (gfc_expr **result)
1310 match m;
1312 m = match_sym_complex_part (result);
1313 if (m != MATCH_NO)
1314 return m;
1316 m = match_real_constant (result, 1);
1317 if (m != MATCH_NO)
1318 return m;
1320 return match_integer_constant (result, 1);
1324 /* Try to match a complex constant. */
1326 static match
1327 match_complex_constant (gfc_expr **result)
1329 gfc_expr *e, *real, *imag;
1330 gfc_error_buffer old_error;
1331 gfc_typespec target;
1332 locus old_loc;
1333 int kind;
1334 match m;
1336 old_loc = gfc_current_locus;
1337 real = imag = e = NULL;
1339 m = gfc_match_char ('(');
1340 if (m != MATCH_YES)
1341 return m;
1343 gfc_push_error (&old_error);
1345 m = match_complex_part (&real);
1346 if (m == MATCH_NO)
1348 gfc_free_error (&old_error);
1349 goto cleanup;
1352 if (gfc_match_char (',') == MATCH_NO)
1354 /* It is possible that gfc_int2real issued a warning when
1355 converting an integer to real. Throw this away here. */
1357 gfc_clear_warning ();
1358 gfc_pop_error (&old_error);
1359 m = MATCH_NO;
1360 goto cleanup;
1363 /* If m is error, then something was wrong with the real part and we
1364 assume we have a complex constant because we've seen the ','. An
1365 ambiguous case here is the start of an iterator list of some
1366 sort. These sort of lists are matched prior to coming here. */
1368 if (m == MATCH_ERROR)
1370 gfc_free_error (&old_error);
1371 goto cleanup;
1373 gfc_pop_error (&old_error);
1375 m = match_complex_part (&imag);
1376 if (m == MATCH_NO)
1377 goto syntax;
1378 if (m == MATCH_ERROR)
1379 goto cleanup;
1381 m = gfc_match_char (')');
1382 if (m == MATCH_NO)
1384 /* Give the matcher for implied do-loops a chance to run. This
1385 yields a much saner error message for (/ (i, 4=i, 6) /). */
1386 if (gfc_peek_ascii_char () == '=')
1388 m = MATCH_ERROR;
1389 goto cleanup;
1391 else
1392 goto syntax;
1395 if (m == MATCH_ERROR)
1396 goto cleanup;
1398 /* Decide on the kind of this complex number. */
1399 if (real->ts.type == BT_REAL)
1401 if (imag->ts.type == BT_REAL)
1402 kind = gfc_kind_max (real, imag);
1403 else
1404 kind = real->ts.kind;
1406 else
1408 if (imag->ts.type == BT_REAL)
1409 kind = imag->ts.kind;
1410 else
1411 kind = gfc_default_real_kind;
1413 gfc_clear_ts (&target);
1414 target.type = BT_REAL;
1415 target.kind = kind;
1417 if (real->ts.type != BT_REAL || kind != real->ts.kind)
1418 gfc_convert_type (real, &target, 2);
1419 if (imag->ts.type != BT_REAL || kind != imag->ts.kind)
1420 gfc_convert_type (imag, &target, 2);
1422 e = gfc_convert_complex (real, imag, kind);
1423 e->where = gfc_current_locus;
1425 gfc_free_expr (real);
1426 gfc_free_expr (imag);
1428 *result = e;
1429 return MATCH_YES;
1431 syntax:
1432 gfc_error ("Syntax error in COMPLEX constant at %C");
1433 m = MATCH_ERROR;
1435 cleanup:
1436 gfc_free_expr (e);
1437 gfc_free_expr (real);
1438 gfc_free_expr (imag);
1439 gfc_current_locus = old_loc;
1441 return m;
1445 /* Match constants in any of several forms. Returns nonzero for a
1446 match, zero for no match. */
1448 match
1449 gfc_match_literal_constant (gfc_expr **result, int signflag)
1451 match m;
1453 m = match_complex_constant (result);
1454 if (m != MATCH_NO)
1455 return m;
1457 m = match_string_constant (result);
1458 if (m != MATCH_NO)
1459 return m;
1461 m = match_boz_constant (result);
1462 if (m != MATCH_NO)
1463 return m;
1465 m = match_real_constant (result, signflag);
1466 if (m != MATCH_NO)
1467 return m;
1469 m = match_hollerith_constant (result);
1470 if (m != MATCH_NO)
1471 return m;
1473 m = match_integer_constant (result, signflag);
1474 if (m != MATCH_NO)
1475 return m;
1477 m = match_logical_constant (result);
1478 if (m != MATCH_NO)
1479 return m;
1481 return MATCH_NO;
1485 /* This checks if a symbol is the return value of an encompassing function.
1486 Function nesting can be maximally two levels deep, but we may have
1487 additional local namespaces like BLOCK etc. */
1489 bool
1490 gfc_is_function_return_value (gfc_symbol *sym, gfc_namespace *ns)
1492 if (!sym->attr.function || (sym->result != sym))
1493 return false;
1494 while (ns)
1496 if (ns->proc_name == sym)
1497 return true;
1498 ns = ns->parent;
1500 return false;
1504 /* Match a single actual argument value. An actual argument is
1505 usually an expression, but can also be a procedure name. If the
1506 argument is a single name, it is not always possible to tell
1507 whether the name is a dummy procedure or not. We treat these cases
1508 by creating an argument that looks like a dummy procedure and
1509 fixing things later during resolution. */
1511 static match
1512 match_actual_arg (gfc_expr **result)
1514 char name[GFC_MAX_SYMBOL_LEN + 1];
1515 gfc_symtree *symtree;
1516 locus where, w;
1517 gfc_expr *e;
1518 char c;
1520 gfc_gobble_whitespace ();
1521 where = gfc_current_locus;
1523 switch (gfc_match_name (name))
1525 case MATCH_ERROR:
1526 return MATCH_ERROR;
1528 case MATCH_NO:
1529 break;
1531 case MATCH_YES:
1532 w = gfc_current_locus;
1533 gfc_gobble_whitespace ();
1534 c = gfc_next_ascii_char ();
1535 gfc_current_locus = w;
1537 if (c != ',' && c != ')')
1538 break;
1540 if (gfc_find_sym_tree (name, NULL, 1, &symtree))
1541 break;
1542 /* Handle error elsewhere. */
1544 /* Eliminate a couple of common cases where we know we don't
1545 have a function argument. */
1546 if (symtree == NULL)
1548 gfc_get_sym_tree (name, NULL, &symtree, false);
1549 gfc_set_sym_referenced (symtree->n.sym);
1551 else
1553 gfc_symbol *sym;
1555 sym = symtree->n.sym;
1556 gfc_set_sym_referenced (sym);
1557 if (sym->attr.flavor == FL_NAMELIST)
1559 gfc_error ("Namelist %qs can not be an argument at %L",
1560 sym->name, &where);
1561 break;
1563 if (sym->attr.flavor != FL_PROCEDURE
1564 && sym->attr.flavor != FL_UNKNOWN)
1565 break;
1567 if (sym->attr.in_common && !sym->attr.proc_pointer)
1569 if (!gfc_add_flavor (&sym->attr, FL_VARIABLE,
1570 sym->name, &sym->declared_at))
1571 return MATCH_ERROR;
1572 break;
1575 /* If the symbol is a function with itself as the result and
1576 is being defined, then we have a variable. */
1577 if (sym->attr.function && sym->result == sym)
1579 if (gfc_is_function_return_value (sym, gfc_current_ns))
1580 break;
1582 if (sym->attr.entry
1583 && (sym->ns == gfc_current_ns
1584 || sym->ns == gfc_current_ns->parent))
1586 gfc_entry_list *el = NULL;
1588 for (el = sym->ns->entries; el; el = el->next)
1589 if (sym == el->sym)
1590 break;
1592 if (el)
1593 break;
1598 e = gfc_get_expr (); /* Leave it unknown for now */
1599 e->symtree = symtree;
1600 e->expr_type = EXPR_VARIABLE;
1601 e->ts.type = BT_PROCEDURE;
1602 e->where = where;
1604 *result = e;
1605 return MATCH_YES;
1608 gfc_current_locus = where;
1609 return gfc_match_expr (result);
1613 /* Match a keyword argument or type parameter spec list.. */
1615 static match
1616 match_keyword_arg (gfc_actual_arglist *actual, gfc_actual_arglist *base, bool pdt)
1618 char name[GFC_MAX_SYMBOL_LEN + 1];
1619 gfc_actual_arglist *a;
1620 locus name_locus;
1621 match m;
1623 name_locus = gfc_current_locus;
1624 m = gfc_match_name (name);
1626 if (m != MATCH_YES)
1627 goto cleanup;
1628 if (gfc_match_char ('=') != MATCH_YES)
1630 m = MATCH_NO;
1631 goto cleanup;
1634 if (pdt)
1636 if (gfc_match_char ('*') == MATCH_YES)
1638 actual->spec_type = SPEC_ASSUMED;
1639 goto add_name;
1641 else if (gfc_match_char (':') == MATCH_YES)
1643 actual->spec_type = SPEC_DEFERRED;
1644 goto add_name;
1646 else
1647 actual->spec_type = SPEC_EXPLICIT;
1650 m = match_actual_arg (&actual->expr);
1651 if (m != MATCH_YES)
1652 goto cleanup;
1654 /* Make sure this name has not appeared yet. */
1655 add_name:
1656 if (name[0] != '\0')
1658 for (a = base; a; a = a->next)
1659 if (a->name != NULL && strcmp (a->name, name) == 0)
1661 gfc_error ("Keyword %qs at %C has already appeared in the "
1662 "current argument list", name);
1663 return MATCH_ERROR;
1667 actual->name = gfc_get_string ("%s", name);
1668 return MATCH_YES;
1670 cleanup:
1671 gfc_current_locus = name_locus;
1672 return m;
1676 /* Match an argument list function, such as %VAL. */
1678 static match
1679 match_arg_list_function (gfc_actual_arglist *result)
1681 char name[GFC_MAX_SYMBOL_LEN + 1];
1682 locus old_locus;
1683 match m;
1685 old_locus = gfc_current_locus;
1687 if (gfc_match_char ('%') != MATCH_YES)
1689 m = MATCH_NO;
1690 goto cleanup;
1693 m = gfc_match ("%n (", name);
1694 if (m != MATCH_YES)
1695 goto cleanup;
1697 if (name[0] != '\0')
1699 switch (name[0])
1701 case 'l':
1702 if (strncmp (name, "loc", 3) == 0)
1704 result->name = "%LOC";
1705 break;
1707 /* FALLTHRU */
1708 case 'r':
1709 if (strncmp (name, "ref", 3) == 0)
1711 result->name = "%REF";
1712 break;
1714 /* FALLTHRU */
1715 case 'v':
1716 if (strncmp (name, "val", 3) == 0)
1718 result->name = "%VAL";
1719 break;
1721 /* FALLTHRU */
1722 default:
1723 m = MATCH_ERROR;
1724 goto cleanup;
1728 if (!gfc_notify_std (GFC_STD_GNU, "argument list function at %C"))
1730 m = MATCH_ERROR;
1731 goto cleanup;
1734 m = match_actual_arg (&result->expr);
1735 if (m != MATCH_YES)
1736 goto cleanup;
1738 if (gfc_match_char (')') != MATCH_YES)
1740 m = MATCH_NO;
1741 goto cleanup;
1744 return MATCH_YES;
1746 cleanup:
1747 gfc_current_locus = old_locus;
1748 return m;
1752 /* Matches an actual argument list of a function or subroutine, from
1753 the opening parenthesis to the closing parenthesis. The argument
1754 list is assumed to allow keyword arguments because we don't know if
1755 the symbol associated with the procedure has an implicit interface
1756 or not. We make sure keywords are unique. If sub_flag is set,
1757 we're matching the argument list of a subroutine.
1759 NOTE: An alternative use for this function is to match type parameter
1760 spec lists, which are so similar to actual argument lists that the
1761 machinery can be reused. This use is flagged by the optional argument
1762 'pdt'. */
1764 match
1765 gfc_match_actual_arglist (int sub_flag, gfc_actual_arglist **argp, bool pdt)
1767 gfc_actual_arglist *head, *tail;
1768 int seen_keyword;
1769 gfc_st_label *label;
1770 locus old_loc;
1771 match m;
1773 *argp = tail = NULL;
1774 old_loc = gfc_current_locus;
1776 seen_keyword = 0;
1778 if (gfc_match_char ('(') == MATCH_NO)
1779 return (sub_flag) ? MATCH_YES : MATCH_NO;
1781 if (gfc_match_char (')') == MATCH_YES)
1782 return MATCH_YES;
1784 head = NULL;
1786 matching_actual_arglist++;
1788 for (;;)
1790 if (head == NULL)
1791 head = tail = gfc_get_actual_arglist ();
1792 else
1794 tail->next = gfc_get_actual_arglist ();
1795 tail = tail->next;
1798 if (sub_flag && !pdt && gfc_match_char ('*') == MATCH_YES)
1800 m = gfc_match_st_label (&label);
1801 if (m == MATCH_NO)
1802 gfc_error ("Expected alternate return label at %C");
1803 if (m != MATCH_YES)
1804 goto cleanup;
1806 if (!gfc_notify_std (GFC_STD_F95_OBS, "Alternate-return argument "
1807 "at %C"))
1808 goto cleanup;
1810 tail->label = label;
1811 goto next;
1814 if (pdt && !seen_keyword)
1816 if (gfc_match_char (':') == MATCH_YES)
1818 tail->spec_type = SPEC_DEFERRED;
1819 goto next;
1821 else if (gfc_match_char ('*') == MATCH_YES)
1823 tail->spec_type = SPEC_ASSUMED;
1824 goto next;
1826 else
1827 tail->spec_type = SPEC_EXPLICIT;
1829 m = match_keyword_arg (tail, head, pdt);
1830 if (m == MATCH_YES)
1832 seen_keyword = 1;
1833 goto next;
1835 if (m == MATCH_ERROR)
1836 goto cleanup;
1839 /* After the first keyword argument is seen, the following
1840 arguments must also have keywords. */
1841 if (seen_keyword)
1843 m = match_keyword_arg (tail, head, pdt);
1845 if (m == MATCH_ERROR)
1846 goto cleanup;
1847 if (m == MATCH_NO)
1849 gfc_error ("Missing keyword name in actual argument list at %C");
1850 goto cleanup;
1854 else
1856 /* Try an argument list function, like %VAL. */
1857 m = match_arg_list_function (tail);
1858 if (m == MATCH_ERROR)
1859 goto cleanup;
1861 /* See if we have the first keyword argument. */
1862 if (m == MATCH_NO)
1864 m = match_keyword_arg (tail, head, false);
1865 if (m == MATCH_YES)
1866 seen_keyword = 1;
1867 if (m == MATCH_ERROR)
1868 goto cleanup;
1871 if (m == MATCH_NO)
1873 /* Try for a non-keyword argument. */
1874 m = match_actual_arg (&tail->expr);
1875 if (m == MATCH_ERROR)
1876 goto cleanup;
1877 if (m == MATCH_NO)
1878 goto syntax;
1883 next:
1884 if (gfc_match_char (')') == MATCH_YES)
1885 break;
1886 if (gfc_match_char (',') != MATCH_YES)
1887 goto syntax;
1890 *argp = head;
1891 matching_actual_arglist--;
1892 return MATCH_YES;
1894 syntax:
1895 gfc_error ("Syntax error in argument list at %C");
1897 cleanup:
1898 gfc_free_actual_arglist (head);
1899 gfc_current_locus = old_loc;
1900 matching_actual_arglist--;
1901 return MATCH_ERROR;
1905 /* Used by gfc_match_varspec() to extend the reference list by one
1906 element. */
1908 static gfc_ref *
1909 extend_ref (gfc_expr *primary, gfc_ref *tail)
1911 if (primary->ref == NULL)
1912 primary->ref = tail = gfc_get_ref ();
1913 else
1915 if (tail == NULL)
1916 gfc_internal_error ("extend_ref(): Bad tail");
1917 tail->next = gfc_get_ref ();
1918 tail = tail->next;
1921 return tail;
1925 /* Match any additional specifications associated with the current
1926 variable like member references or substrings. If equiv_flag is
1927 set we only match stuff that is allowed inside an EQUIVALENCE
1928 statement. sub_flag tells whether we expect a type-bound procedure found
1929 to be a subroutine as part of CALL or a FUNCTION. For procedure pointer
1930 components, 'ppc_arg' determines whether the PPC may be called (with an
1931 argument list), or whether it may just be referred to as a pointer. */
1933 match
1934 gfc_match_varspec (gfc_expr *primary, int equiv_flag, bool sub_flag,
1935 bool ppc_arg)
1937 char name[GFC_MAX_SYMBOL_LEN + 1];
1938 gfc_ref *substring, *tail, *tmp;
1939 gfc_component *component;
1940 gfc_symbol *sym = primary->symtree->n.sym;
1941 gfc_expr *tgt_expr = NULL;
1942 match m;
1943 bool unknown;
1944 char sep;
1946 tail = NULL;
1948 gfc_gobble_whitespace ();
1950 if (gfc_peek_ascii_char () == '[')
1952 if ((sym->ts.type != BT_CLASS && sym->attr.dimension)
1953 || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
1954 && CLASS_DATA (sym)->attr.dimension))
1956 gfc_error ("Array section designator, e.g. '(:)', is required "
1957 "besides the coarray designator '[...]' at %C");
1958 return MATCH_ERROR;
1960 if ((sym->ts.type != BT_CLASS && !sym->attr.codimension)
1961 || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
1962 && !CLASS_DATA (sym)->attr.codimension))
1964 gfc_error ("Coarray designator at %C but %qs is not a coarray",
1965 sym->name);
1966 return MATCH_ERROR;
1970 if (sym->assoc && sym->assoc->target)
1971 tgt_expr = sym->assoc->target;
1973 /* For associate names, we may not yet know whether they are arrays or not.
1974 If the selector expression is unambiguously an array; eg. a full array
1975 or an array section, then the associate name must be an array and we can
1976 fix it now. Otherwise, if parentheses follow and it is not a character
1977 type, we have to assume that it actually is one for now. The final
1978 decision will be made at resolution, of course. */
1979 if (sym->assoc
1980 && gfc_peek_ascii_char () == '('
1981 && sym->ts.type != BT_CLASS
1982 && !sym->attr.dimension)
1984 gfc_ref *ref = NULL;
1986 if (!sym->assoc->dangling && tgt_expr)
1988 if (tgt_expr->expr_type == EXPR_VARIABLE)
1989 gfc_resolve_expr (tgt_expr);
1991 ref = tgt_expr->ref;
1992 for (; ref; ref = ref->next)
1993 if (ref->type == REF_ARRAY
1994 && (ref->u.ar.type == AR_FULL
1995 || ref->u.ar.type == AR_SECTION))
1996 break;
1999 if (ref || (!(sym->assoc->dangling || sym->ts.type == BT_CHARACTER)
2000 && sym->assoc->st
2001 && sym->assoc->st->n.sym
2002 && sym->assoc->st->n.sym->attr.dimension == 0))
2004 sym->attr.dimension = 1;
2005 if (sym->as == NULL
2006 && sym->assoc->st
2007 && sym->assoc->st->n.sym
2008 && sym->assoc->st->n.sym->as)
2009 sym->as = gfc_copy_array_spec (sym->assoc->st->n.sym->as);
2012 else if (sym->ts.type == BT_CLASS
2013 && tgt_expr
2014 && tgt_expr->expr_type == EXPR_VARIABLE
2015 && sym->ts.u.derived != tgt_expr->ts.u.derived)
2017 gfc_resolve_expr (tgt_expr);
2018 if (tgt_expr->rank)
2019 sym->ts.u.derived = tgt_expr->ts.u.derived;
2022 if ((equiv_flag && gfc_peek_ascii_char () == '(')
2023 || gfc_peek_ascii_char () == '[' || sym->attr.codimension
2024 || (sym->attr.dimension && sym->ts.type != BT_CLASS
2025 && !sym->attr.proc_pointer && !gfc_is_proc_ptr_comp (primary)
2026 && !(gfc_matching_procptr_assignment
2027 && sym->attr.flavor == FL_PROCEDURE))
2028 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
2029 && (CLASS_DATA (sym)->attr.dimension
2030 || CLASS_DATA (sym)->attr.codimension)))
2032 gfc_array_spec *as;
2034 tail = extend_ref (primary, tail);
2035 tail->type = REF_ARRAY;
2037 /* In EQUIVALENCE, we don't know yet whether we are seeing
2038 an array, character variable or array of character
2039 variables. We'll leave the decision till resolve time. */
2041 if (equiv_flag)
2042 as = NULL;
2043 else if (sym->ts.type == BT_CLASS && CLASS_DATA (sym))
2044 as = CLASS_DATA (sym)->as;
2045 else
2046 as = sym->as;
2048 m = gfc_match_array_ref (&tail->u.ar, as, equiv_flag,
2049 as ? as->corank : 0);
2050 if (m != MATCH_YES)
2051 return m;
2053 gfc_gobble_whitespace ();
2054 if (equiv_flag && gfc_peek_ascii_char () == '(')
2056 tail = extend_ref (primary, tail);
2057 tail->type = REF_ARRAY;
2059 m = gfc_match_array_ref (&tail->u.ar, NULL, equiv_flag, 0);
2060 if (m != MATCH_YES)
2061 return m;
2065 primary->ts = sym->ts;
2067 if (equiv_flag)
2068 return MATCH_YES;
2070 /* With DEC extensions, member separator may be '.' or '%'. */
2071 sep = gfc_peek_ascii_char ();
2072 m = gfc_match_member_sep (sym);
2073 if (m == MATCH_ERROR)
2074 return MATCH_ERROR;
2076 if (sym->ts.type == BT_UNKNOWN && m == MATCH_YES
2077 && gfc_get_default_type (sym->name, sym->ns)->type == BT_DERIVED)
2078 gfc_set_default_type (sym, 0, sym->ns);
2080 /* See if there is a usable typespec in the "no IMPLICIT type" error. */
2081 if (sym->ts.type == BT_UNKNOWN && m == MATCH_YES)
2083 bool permissible;
2085 /* These target expressions can ge resolved at any time. */
2086 permissible = tgt_expr && tgt_expr->symtree && tgt_expr->symtree->n.sym
2087 && (tgt_expr->symtree->n.sym->attr.use_assoc
2088 || tgt_expr->symtree->n.sym->attr.host_assoc
2089 || tgt_expr->symtree->n.sym->attr.if_source
2090 == IFSRC_DECL);
2091 permissible = permissible
2092 || (tgt_expr && tgt_expr->expr_type == EXPR_OP);
2094 if (permissible)
2096 gfc_resolve_expr (tgt_expr);
2097 sym->ts = tgt_expr->ts;
2100 if (sym->ts.type == BT_UNKNOWN)
2102 gfc_error ("Symbol %qs at %C has no IMPLICIT type", sym->name);
2103 return MATCH_ERROR;
2106 else if ((sym->ts.type != BT_DERIVED && sym->ts.type != BT_CLASS)
2107 && m == MATCH_YES)
2109 gfc_error ("Unexpected %<%c%> for nonderived-type variable %qs at %C",
2110 sep, sym->name);
2111 return MATCH_ERROR;
2114 if ((sym->ts.type != BT_DERIVED && sym->ts.type != BT_CLASS)
2115 || m != MATCH_YES)
2116 goto check_substring;
2118 sym = sym->ts.u.derived;
2120 for (;;)
2122 bool t;
2123 gfc_symtree *tbp;
2125 m = gfc_match_name (name);
2126 if (m == MATCH_NO)
2127 gfc_error ("Expected structure component name at %C");
2128 if (m != MATCH_YES)
2129 return MATCH_ERROR;
2131 if (sym && sym->f2k_derived)
2132 tbp = gfc_find_typebound_proc (sym, &t, name, false, &gfc_current_locus);
2133 else
2134 tbp = NULL;
2136 if (tbp)
2138 gfc_symbol* tbp_sym;
2140 if (!t)
2141 return MATCH_ERROR;
2143 gcc_assert (!tail || !tail->next);
2145 if (!(primary->expr_type == EXPR_VARIABLE
2146 || (primary->expr_type == EXPR_STRUCTURE
2147 && primary->symtree && primary->symtree->n.sym
2148 && primary->symtree->n.sym->attr.flavor)))
2149 return MATCH_ERROR;
2151 if (tbp->n.tb->is_generic)
2152 tbp_sym = NULL;
2153 else
2154 tbp_sym = tbp->n.tb->u.specific->n.sym;
2156 primary->expr_type = EXPR_COMPCALL;
2157 primary->value.compcall.tbp = tbp->n.tb;
2158 primary->value.compcall.name = tbp->name;
2159 primary->value.compcall.ignore_pass = 0;
2160 primary->value.compcall.assign = 0;
2161 primary->value.compcall.base_object = NULL;
2162 gcc_assert (primary->symtree->n.sym->attr.referenced);
2163 if (tbp_sym)
2164 primary->ts = tbp_sym->ts;
2165 else
2166 gfc_clear_ts (&primary->ts);
2168 m = gfc_match_actual_arglist (tbp->n.tb->subroutine,
2169 &primary->value.compcall.actual);
2170 if (m == MATCH_ERROR)
2171 return MATCH_ERROR;
2172 if (m == MATCH_NO)
2174 if (sub_flag)
2175 primary->value.compcall.actual = NULL;
2176 else
2178 gfc_error ("Expected argument list at %C");
2179 return MATCH_ERROR;
2183 break;
2186 component = gfc_find_component (sym, name, false, false, &tmp);
2187 if (component == NULL)
2188 return MATCH_ERROR;
2190 /* Extend the reference chain determined by gfc_find_component. */
2191 if (primary->ref == NULL)
2192 primary->ref = tmp;
2193 else
2195 /* Set by the for loop below for the last component ref. */
2196 gcc_assert (tail != NULL);
2197 tail->next = tmp;
2200 /* The reference chain may be longer than one hop for union
2201 subcomponents; find the new tail. */
2202 for (tail = tmp; tail->next; tail = tail->next)
2205 primary->ts = component->ts;
2207 if (component->attr.proc_pointer && ppc_arg)
2209 /* Procedure pointer component call: Look for argument list. */
2210 m = gfc_match_actual_arglist (sub_flag,
2211 &primary->value.compcall.actual);
2212 if (m == MATCH_ERROR)
2213 return MATCH_ERROR;
2215 if (m == MATCH_NO && !gfc_matching_ptr_assignment
2216 && !gfc_matching_procptr_assignment && !matching_actual_arglist)
2218 gfc_error ("Procedure pointer component %qs requires an "
2219 "argument list at %C", component->name);
2220 return MATCH_ERROR;
2223 if (m == MATCH_YES)
2224 primary->expr_type = EXPR_PPC;
2226 break;
2229 if (component->as != NULL && !component->attr.proc_pointer)
2231 tail = extend_ref (primary, tail);
2232 tail->type = REF_ARRAY;
2234 m = gfc_match_array_ref (&tail->u.ar, component->as, equiv_flag,
2235 component->as->corank);
2236 if (m != MATCH_YES)
2237 return m;
2239 else if (component->ts.type == BT_CLASS && component->attr.class_ok
2240 && CLASS_DATA (component)->as && !component->attr.proc_pointer)
2242 tail = extend_ref (primary, tail);
2243 tail->type = REF_ARRAY;
2245 m = gfc_match_array_ref (&tail->u.ar, CLASS_DATA (component)->as,
2246 equiv_flag,
2247 CLASS_DATA (component)->as->corank);
2248 if (m != MATCH_YES)
2249 return m;
2252 if ((component->ts.type != BT_DERIVED && component->ts.type != BT_CLASS)
2253 || gfc_match_member_sep (component->ts.u.derived) != MATCH_YES)
2254 break;
2256 sym = component->ts.u.derived;
2259 check_substring:
2260 unknown = false;
2261 if (primary->ts.type == BT_UNKNOWN && !gfc_fl_struct (sym->attr.flavor))
2263 if (gfc_get_default_type (sym->name, sym->ns)->type == BT_CHARACTER)
2265 gfc_set_default_type (sym, 0, sym->ns);
2266 primary->ts = sym->ts;
2267 unknown = true;
2271 if (primary->ts.type == BT_CHARACTER)
2273 bool def = primary->ts.deferred == 1;
2274 switch (match_substring (primary->ts.u.cl, equiv_flag, &substring, def))
2276 case MATCH_YES:
2277 if (tail == NULL)
2278 primary->ref = substring;
2279 else
2280 tail->next = substring;
2282 if (primary->expr_type == EXPR_CONSTANT)
2283 primary->expr_type = EXPR_SUBSTRING;
2285 if (substring)
2286 primary->ts.u.cl = NULL;
2288 break;
2290 case MATCH_NO:
2291 if (unknown)
2293 gfc_clear_ts (&primary->ts);
2294 gfc_clear_ts (&sym->ts);
2296 break;
2298 case MATCH_ERROR:
2299 return MATCH_ERROR;
2303 /* F08:C611. */
2304 if (primary->ts.type == BT_DERIVED && primary->ref
2305 && primary->ts.u.derived && primary->ts.u.derived->attr.abstract)
2307 gfc_error ("Nonpolymorphic reference to abstract type at %C");
2308 return MATCH_ERROR;
2311 /* F08:C727. */
2312 if (primary->expr_type == EXPR_PPC && gfc_is_coindexed (primary))
2314 gfc_error ("Coindexed procedure-pointer component at %C");
2315 return MATCH_ERROR;
2318 return MATCH_YES;
2322 /* Given an expression that is a variable, figure out what the
2323 ultimate variable's type and attribute is, traversing the reference
2324 structures if necessary.
2326 This subroutine is trickier than it looks. We start at the base
2327 symbol and store the attribute. Component references load a
2328 completely new attribute.
2330 A couple of rules come into play. Subobjects of targets are always
2331 targets themselves. If we see a component that goes through a
2332 pointer, then the expression must also be a target, since the
2333 pointer is associated with something (if it isn't core will soon be
2334 dumped). If we see a full part or section of an array, the
2335 expression is also an array.
2337 We can have at most one full array reference. */
2339 symbol_attribute
2340 gfc_variable_attr (gfc_expr *expr, gfc_typespec *ts)
2342 int dimension, codimension, pointer, allocatable, target;
2343 symbol_attribute attr;
2344 gfc_ref *ref;
2345 gfc_symbol *sym;
2346 gfc_component *comp;
2348 if (expr->expr_type != EXPR_VARIABLE && expr->expr_type != EXPR_FUNCTION)
2349 gfc_internal_error ("gfc_variable_attr(): Expression isn't a variable");
2351 sym = expr->symtree->n.sym;
2352 attr = sym->attr;
2354 if (sym->ts.type == BT_CLASS && sym->attr.class_ok)
2356 dimension = CLASS_DATA (sym)->attr.dimension;
2357 codimension = CLASS_DATA (sym)->attr.codimension;
2358 pointer = CLASS_DATA (sym)->attr.class_pointer;
2359 allocatable = CLASS_DATA (sym)->attr.allocatable;
2361 else
2363 dimension = attr.dimension;
2364 codimension = attr.codimension;
2365 pointer = attr.pointer;
2366 allocatable = attr.allocatable;
2369 target = attr.target;
2370 if (pointer || attr.proc_pointer)
2371 target = 1;
2373 if (ts != NULL && expr->ts.type == BT_UNKNOWN)
2374 *ts = sym->ts;
2376 for (ref = expr->ref; ref; ref = ref->next)
2377 switch (ref->type)
2379 case REF_ARRAY:
2381 switch (ref->u.ar.type)
2383 case AR_FULL:
2384 dimension = 1;
2385 break;
2387 case AR_SECTION:
2388 allocatable = pointer = 0;
2389 dimension = 1;
2390 break;
2392 case AR_ELEMENT:
2393 /* Handle coarrays. */
2394 if (ref->u.ar.dimen > 0)
2395 allocatable = pointer = 0;
2396 break;
2398 case AR_UNKNOWN:
2399 /* If any of start, end or stride is not integer, there will
2400 already have been an error issued. */
2401 int errors;
2402 gfc_get_errors (NULL, &errors);
2403 if (errors == 0)
2404 gfc_internal_error ("gfc_variable_attr(): Bad array reference");
2407 break;
2409 case REF_COMPONENT:
2410 comp = ref->u.c.component;
2411 attr = comp->attr;
2412 if (ts != NULL)
2414 *ts = comp->ts;
2415 /* Don't set the string length if a substring reference
2416 follows. */
2417 if (ts->type == BT_CHARACTER
2418 && ref->next && ref->next->type == REF_SUBSTRING)
2419 ts->u.cl = NULL;
2422 if (comp->ts.type == BT_CLASS)
2424 codimension = CLASS_DATA (comp)->attr.codimension;
2425 pointer = CLASS_DATA (comp)->attr.class_pointer;
2426 allocatable = CLASS_DATA (comp)->attr.allocatable;
2428 else
2430 codimension = comp->attr.codimension;
2431 pointer = comp->attr.pointer;
2432 allocatable = comp->attr.allocatable;
2434 if (pointer || attr.proc_pointer)
2435 target = 1;
2437 break;
2439 case REF_SUBSTRING:
2440 allocatable = pointer = 0;
2441 break;
2444 attr.dimension = dimension;
2445 attr.codimension = codimension;
2446 attr.pointer = pointer;
2447 attr.allocatable = allocatable;
2448 attr.target = target;
2449 attr.save = sym->attr.save;
2451 return attr;
2455 /* Return the attribute from a general expression. */
2457 symbol_attribute
2458 gfc_expr_attr (gfc_expr *e)
2460 symbol_attribute attr;
2462 switch (e->expr_type)
2464 case EXPR_VARIABLE:
2465 attr = gfc_variable_attr (e, NULL);
2466 break;
2468 case EXPR_FUNCTION:
2469 gfc_clear_attr (&attr);
2471 if (e->value.function.esym && e->value.function.esym->result)
2473 gfc_symbol *sym = e->value.function.esym->result;
2474 attr = sym->attr;
2475 if (sym->ts.type == BT_CLASS)
2477 attr.dimension = CLASS_DATA (sym)->attr.dimension;
2478 attr.pointer = CLASS_DATA (sym)->attr.class_pointer;
2479 attr.allocatable = CLASS_DATA (sym)->attr.allocatable;
2482 else if (e->value.function.isym
2483 && e->value.function.isym->transformational
2484 && e->ts.type == BT_CLASS)
2485 attr = CLASS_DATA (e)->attr;
2486 else
2487 attr = gfc_variable_attr (e, NULL);
2489 /* TODO: NULL() returns pointers. May have to take care of this
2490 here. */
2492 break;
2494 default:
2495 gfc_clear_attr (&attr);
2496 break;
2499 return attr;
2503 /* Given an expression, figure out what the ultimate expression
2504 attribute is. This routine is similar to gfc_variable_attr with
2505 parts of gfc_expr_attr, but focuses more on the needs of
2506 coarrays. For coarrays a codimension attribute is kind of
2507 "infectious" being propagated once set and never cleared.
2508 The coarray_comp is only set, when the expression refs a coarray
2509 component. REFS_COMP is set when present to true only, when this EXPR
2510 refs a (non-_data) component. To check whether EXPR refs an allocatable
2511 component in a derived type coarray *refs_comp needs to be set and
2512 coarray_comp has to false. */
2514 static symbol_attribute
2515 caf_variable_attr (gfc_expr *expr, bool in_allocate, bool *refs_comp)
2517 int dimension, codimension, pointer, allocatable, target, coarray_comp;
2518 symbol_attribute attr;
2519 gfc_ref *ref;
2520 gfc_symbol *sym;
2521 gfc_component *comp;
2523 if (expr->expr_type != EXPR_VARIABLE && expr->expr_type != EXPR_FUNCTION)
2524 gfc_internal_error ("gfc_caf_attr(): Expression isn't a variable");
2526 sym = expr->symtree->n.sym;
2527 gfc_clear_attr (&attr);
2529 if (refs_comp)
2530 *refs_comp = false;
2532 if (sym->ts.type == BT_CLASS && sym->attr.class_ok)
2534 dimension = CLASS_DATA (sym)->attr.dimension;
2535 codimension = CLASS_DATA (sym)->attr.codimension;
2536 pointer = CLASS_DATA (sym)->attr.class_pointer;
2537 allocatable = CLASS_DATA (sym)->attr.allocatable;
2538 attr.alloc_comp = CLASS_DATA (sym)->ts.u.derived->attr.alloc_comp;
2539 attr.pointer_comp = CLASS_DATA (sym)->ts.u.derived->attr.pointer_comp;
2541 else
2543 dimension = sym->attr.dimension;
2544 codimension = sym->attr.codimension;
2545 pointer = sym->attr.pointer;
2546 allocatable = sym->attr.allocatable;
2547 attr.alloc_comp = sym->ts.type == BT_DERIVED
2548 ? sym->ts.u.derived->attr.alloc_comp : 0;
2549 attr.pointer_comp = sym->ts.type == BT_DERIVED
2550 ? sym->ts.u.derived->attr.pointer_comp : 0;
2553 target = coarray_comp = 0;
2554 if (pointer || attr.proc_pointer)
2555 target = 1;
2557 for (ref = expr->ref; ref; ref = ref->next)
2558 switch (ref->type)
2560 case REF_ARRAY:
2562 switch (ref->u.ar.type)
2564 case AR_FULL:
2565 case AR_SECTION:
2566 dimension = 1;
2567 break;
2569 case AR_ELEMENT:
2570 /* Handle coarrays. */
2571 if (ref->u.ar.dimen > 0 && !in_allocate)
2572 allocatable = pointer = 0;
2573 break;
2575 case AR_UNKNOWN:
2576 /* If any of start, end or stride is not integer, there will
2577 already have been an error issued. */
2578 int errors;
2579 gfc_get_errors (NULL, &errors);
2580 if (errors == 0)
2581 gfc_internal_error ("gfc_caf_attr(): Bad array reference");
2584 break;
2586 case REF_COMPONENT:
2587 comp = ref->u.c.component;
2589 if (comp->ts.type == BT_CLASS)
2591 /* Set coarray_comp only, when this component introduces the
2592 coarray. */
2593 coarray_comp = !codimension && CLASS_DATA (comp)->attr.codimension;
2594 codimension |= CLASS_DATA (comp)->attr.codimension;
2595 pointer = CLASS_DATA (comp)->attr.class_pointer;
2596 allocatable = CLASS_DATA (comp)->attr.allocatable;
2598 else
2600 /* Set coarray_comp only, when this component introduces the
2601 coarray. */
2602 coarray_comp = !codimension && comp->attr.codimension;
2603 codimension |= comp->attr.codimension;
2604 pointer = comp->attr.pointer;
2605 allocatable = comp->attr.allocatable;
2608 if (refs_comp && strcmp (comp->name, "_data") != 0
2609 && (ref->next == NULL
2610 || (ref->next->type == REF_ARRAY && ref->next->next == NULL)))
2611 *refs_comp = true;
2613 if (pointer || attr.proc_pointer)
2614 target = 1;
2616 break;
2618 case REF_SUBSTRING:
2619 allocatable = pointer = 0;
2620 break;
2623 attr.dimension = dimension;
2624 attr.codimension = codimension;
2625 attr.pointer = pointer;
2626 attr.allocatable = allocatable;
2627 attr.target = target;
2628 attr.save = sym->attr.save;
2629 attr.coarray_comp = coarray_comp;
2631 return attr;
2635 symbol_attribute
2636 gfc_caf_attr (gfc_expr *e, bool in_allocate, bool *refs_comp)
2638 symbol_attribute attr;
2640 switch (e->expr_type)
2642 case EXPR_VARIABLE:
2643 attr = caf_variable_attr (e, in_allocate, refs_comp);
2644 break;
2646 case EXPR_FUNCTION:
2647 gfc_clear_attr (&attr);
2649 if (e->value.function.esym && e->value.function.esym->result)
2651 gfc_symbol *sym = e->value.function.esym->result;
2652 attr = sym->attr;
2653 if (sym->ts.type == BT_CLASS)
2655 attr.dimension = CLASS_DATA (sym)->attr.dimension;
2656 attr.pointer = CLASS_DATA (sym)->attr.class_pointer;
2657 attr.allocatable = CLASS_DATA (sym)->attr.allocatable;
2658 attr.alloc_comp = CLASS_DATA (sym)->ts.u.derived->attr.alloc_comp;
2659 attr.pointer_comp = CLASS_DATA (sym)->ts.u.derived
2660 ->attr.pointer_comp;
2663 else if (e->symtree)
2664 attr = caf_variable_attr (e, in_allocate, refs_comp);
2665 else
2666 gfc_clear_attr (&attr);
2667 break;
2669 default:
2670 gfc_clear_attr (&attr);
2671 break;
2674 return attr;
2678 /* Match a structure constructor. The initial symbol has already been
2679 seen. */
2681 typedef struct gfc_structure_ctor_component
2683 char* name;
2684 gfc_expr* val;
2685 locus where;
2686 struct gfc_structure_ctor_component* next;
2688 gfc_structure_ctor_component;
2690 #define gfc_get_structure_ctor_component() XCNEW (gfc_structure_ctor_component)
2692 static void
2693 gfc_free_structure_ctor_component (gfc_structure_ctor_component *comp)
2695 free (comp->name);
2696 gfc_free_expr (comp->val);
2697 free (comp);
2701 /* Translate the component list into the actual constructor by sorting it in
2702 the order required; this also checks along the way that each and every
2703 component actually has an initializer and handles default initializers
2704 for components without explicit value given. */
2705 static bool
2706 build_actual_constructor (gfc_structure_ctor_component **comp_head,
2707 gfc_constructor_base *ctor_head, gfc_symbol *sym)
2709 gfc_structure_ctor_component *comp_iter;
2710 gfc_component *comp;
2712 for (comp = sym->components; comp; comp = comp->next)
2714 gfc_structure_ctor_component **next_ptr;
2715 gfc_expr *value = NULL;
2717 /* Try to find the initializer for the current component by name. */
2718 next_ptr = comp_head;
2719 for (comp_iter = *comp_head; comp_iter; comp_iter = comp_iter->next)
2721 if (!strcmp (comp_iter->name, comp->name))
2722 break;
2723 next_ptr = &comp_iter->next;
2726 /* If an extension, try building the parent derived type by building
2727 a value expression for the parent derived type and calling self. */
2728 if (!comp_iter && comp == sym->components && sym->attr.extension)
2730 value = gfc_get_structure_constructor_expr (comp->ts.type,
2731 comp->ts.kind,
2732 &gfc_current_locus);
2733 value->ts = comp->ts;
2735 if (!build_actual_constructor (comp_head,
2736 &value->value.constructor,
2737 comp->ts.u.derived))
2739 gfc_free_expr (value);
2740 return false;
2743 gfc_constructor_append_expr (ctor_head, value, NULL);
2744 continue;
2747 /* If it was not found, try the default initializer if there's any;
2748 otherwise, it's an error unless this is a deferred parameter. */
2749 if (!comp_iter)
2751 if (comp->initializer)
2753 if (!gfc_notify_std (GFC_STD_F2003, "Structure constructor "
2754 "with missing optional arguments at %C"))
2755 return false;
2756 value = gfc_copy_expr (comp->initializer);
2758 else if (comp->attr.allocatable
2759 || (comp->ts.type == BT_CLASS
2760 && CLASS_DATA (comp)->attr.allocatable))
2762 if (!gfc_notify_std (GFC_STD_F2008, "No initializer for "
2763 "allocatable component %qs given in the "
2764 "structure constructor at %C", comp->name))
2765 return false;
2767 else if (!comp->attr.artificial)
2769 gfc_error ("No initializer for component %qs given in the"
2770 " structure constructor at %C", comp->name);
2771 return false;
2774 else
2775 value = comp_iter->val;
2777 /* Add the value to the constructor chain built. */
2778 gfc_constructor_append_expr (ctor_head, value, NULL);
2780 /* Remove the entry from the component list. We don't want the expression
2781 value to be free'd, so set it to NULL. */
2782 if (comp_iter)
2784 *next_ptr = comp_iter->next;
2785 comp_iter->val = NULL;
2786 gfc_free_structure_ctor_component (comp_iter);
2789 return true;
2793 bool
2794 gfc_convert_to_structure_constructor (gfc_expr *e, gfc_symbol *sym, gfc_expr **cexpr,
2795 gfc_actual_arglist **arglist,
2796 bool parent)
2798 gfc_actual_arglist *actual;
2799 gfc_structure_ctor_component *comp_tail, *comp_head, *comp_iter;
2800 gfc_constructor_base ctor_head = NULL;
2801 gfc_component *comp; /* Is set NULL when named component is first seen */
2802 const char* last_name = NULL;
2803 locus old_locus;
2804 gfc_expr *expr;
2806 expr = parent ? *cexpr : e;
2807 old_locus = gfc_current_locus;
2808 if (parent)
2809 ; /* gfc_current_locus = *arglist->expr ? ->where;*/
2810 else
2811 gfc_current_locus = expr->where;
2813 comp_tail = comp_head = NULL;
2815 if (!parent && sym->attr.abstract)
2817 gfc_error ("Can't construct ABSTRACT type %qs at %L",
2818 sym->name, &expr->where);
2819 goto cleanup;
2822 comp = sym->components;
2823 actual = parent ? *arglist : expr->value.function.actual;
2824 for ( ; actual; )
2826 gfc_component *this_comp = NULL;
2828 if (!comp_head)
2829 comp_tail = comp_head = gfc_get_structure_ctor_component ();
2830 else
2832 comp_tail->next = gfc_get_structure_ctor_component ();
2833 comp_tail = comp_tail->next;
2835 if (actual->name)
2837 if (!gfc_notify_std (GFC_STD_F2003, "Structure"
2838 " constructor with named arguments at %C"))
2839 goto cleanup;
2841 comp_tail->name = xstrdup (actual->name);
2842 last_name = comp_tail->name;
2843 comp = NULL;
2845 else
2847 /* Components without name are not allowed after the first named
2848 component initializer! */
2849 if (!comp || comp->attr.artificial)
2851 if (last_name)
2852 gfc_error ("Component initializer without name after component"
2853 " named %s at %L", last_name,
2854 actual->expr ? &actual->expr->where
2855 : &gfc_current_locus);
2856 else
2857 gfc_error ("Too many components in structure constructor at "
2858 "%L", actual->expr ? &actual->expr->where
2859 : &gfc_current_locus);
2860 goto cleanup;
2863 comp_tail->name = xstrdup (comp->name);
2866 /* Find the current component in the structure definition and check
2867 its access is not private. */
2868 if (comp)
2869 this_comp = gfc_find_component (sym, comp->name, false, false, NULL);
2870 else
2872 this_comp = gfc_find_component (sym, (const char *)comp_tail->name,
2873 false, false, NULL);
2874 comp = NULL; /* Reset needed! */
2877 /* Here we can check if a component name is given which does not
2878 correspond to any component of the defined structure. */
2879 if (!this_comp)
2880 goto cleanup;
2882 comp_tail->val = actual->expr;
2883 if (actual->expr != NULL)
2884 comp_tail->where = actual->expr->where;
2885 actual->expr = NULL;
2887 /* Check if this component is already given a value. */
2888 for (comp_iter = comp_head; comp_iter != comp_tail;
2889 comp_iter = comp_iter->next)
2891 gcc_assert (comp_iter);
2892 if (!strcmp (comp_iter->name, comp_tail->name))
2894 gfc_error ("Component %qs is initialized twice in the structure"
2895 " constructor at %L", comp_tail->name,
2896 comp_tail->val ? &comp_tail->where
2897 : &gfc_current_locus);
2898 goto cleanup;
2902 /* F2008, R457/C725, for PURE C1283. */
2903 if (this_comp->attr.pointer && comp_tail->val
2904 && gfc_is_coindexed (comp_tail->val))
2906 gfc_error ("Coindexed expression to pointer component %qs in "
2907 "structure constructor at %L", comp_tail->name,
2908 &comp_tail->where);
2909 goto cleanup;
2912 /* If not explicitly a parent constructor, gather up the components
2913 and build one. */
2914 if (comp && comp == sym->components
2915 && sym->attr.extension
2916 && comp_tail->val
2917 && (!gfc_bt_struct (comp_tail->val->ts.type)
2919 comp_tail->val->ts.u.derived != this_comp->ts.u.derived))
2921 bool m;
2922 gfc_actual_arglist *arg_null = NULL;
2924 actual->expr = comp_tail->val;
2925 comp_tail->val = NULL;
2927 m = gfc_convert_to_structure_constructor (NULL,
2928 comp->ts.u.derived, &comp_tail->val,
2929 comp->ts.u.derived->attr.zero_comp
2930 ? &arg_null : &actual, true);
2931 if (!m)
2932 goto cleanup;
2934 if (comp->ts.u.derived->attr.zero_comp)
2936 comp = comp->next;
2937 continue;
2941 if (comp)
2942 comp = comp->next;
2943 if (parent && !comp)
2944 break;
2946 if (actual)
2947 actual = actual->next;
2950 if (!build_actual_constructor (&comp_head, &ctor_head, sym))
2951 goto cleanup;
2953 /* No component should be left, as this should have caused an error in the
2954 loop constructing the component-list (name that does not correspond to any
2955 component in the structure definition). */
2956 if (comp_head && sym->attr.extension)
2958 for (comp_iter = comp_head; comp_iter; comp_iter = comp_iter->next)
2960 gfc_error ("component %qs at %L has already been set by a "
2961 "parent derived type constructor", comp_iter->name,
2962 &comp_iter->where);
2964 goto cleanup;
2966 else
2967 gcc_assert (!comp_head);
2969 if (parent)
2971 expr = gfc_get_structure_constructor_expr (BT_DERIVED, 0, &gfc_current_locus);
2972 expr->ts.u.derived = sym;
2973 expr->value.constructor = ctor_head;
2974 *cexpr = expr;
2976 else
2978 expr->ts.u.derived = sym;
2979 expr->ts.kind = 0;
2980 expr->ts.type = BT_DERIVED;
2981 expr->value.constructor = ctor_head;
2982 expr->expr_type = EXPR_STRUCTURE;
2985 gfc_current_locus = old_locus;
2986 if (parent)
2987 *arglist = actual;
2988 return true;
2990 cleanup:
2991 gfc_current_locus = old_locus;
2993 for (comp_iter = comp_head; comp_iter; )
2995 gfc_structure_ctor_component *next = comp_iter->next;
2996 gfc_free_structure_ctor_component (comp_iter);
2997 comp_iter = next;
2999 gfc_constructor_free (ctor_head);
3001 return false;
3005 match
3006 gfc_match_structure_constructor (gfc_symbol *sym, gfc_expr **result)
3008 match m;
3009 gfc_expr *e;
3010 gfc_symtree *symtree;
3012 gfc_get_ha_sym_tree (sym->name, &symtree);
3014 e = gfc_get_expr ();
3015 e->symtree = symtree;
3016 e->expr_type = EXPR_FUNCTION;
3018 gcc_assert (gfc_fl_struct (sym->attr.flavor)
3019 && symtree->n.sym->attr.flavor == FL_PROCEDURE);
3020 e->value.function.esym = sym;
3021 e->symtree->n.sym->attr.generic = 1;
3023 m = gfc_match_actual_arglist (0, &e->value.function.actual);
3024 if (m != MATCH_YES)
3026 gfc_free_expr (e);
3027 return m;
3030 if (!gfc_convert_to_structure_constructor (e, sym, NULL, NULL, false))
3032 gfc_free_expr (e);
3033 return MATCH_ERROR;
3036 /* If a structure constructor is in a DATA statement, then each entity
3037 in the structure constructor must be a constant. Try to reduce the
3038 expression here. */
3039 if (gfc_in_match_data ())
3040 gfc_reduce_init_expr (e);
3042 *result = e;
3043 return MATCH_YES;
3047 /* If the symbol is an implicit do loop index and implicitly typed,
3048 it should not be host associated. Provide a symtree from the
3049 current namespace. */
3050 static match
3051 check_for_implicit_index (gfc_symtree **st, gfc_symbol **sym)
3053 if ((*sym)->attr.flavor == FL_VARIABLE
3054 && (*sym)->ns != gfc_current_ns
3055 && (*sym)->attr.implied_index
3056 && (*sym)->attr.implicit_type
3057 && !(*sym)->attr.use_assoc)
3059 int i;
3060 i = gfc_get_sym_tree ((*sym)->name, NULL, st, false);
3061 if (i)
3062 return MATCH_ERROR;
3063 *sym = (*st)->n.sym;
3065 return MATCH_YES;
3069 /* Procedure pointer as function result: Replace the function symbol by the
3070 auto-generated hidden result variable named "ppr@". */
3072 static bool
3073 replace_hidden_procptr_result (gfc_symbol **sym, gfc_symtree **st)
3075 /* Check for procedure pointer result variable. */
3076 if ((*sym)->attr.function && !(*sym)->attr.external
3077 && (*sym)->result && (*sym)->result != *sym
3078 && (*sym)->result->attr.proc_pointer
3079 && (*sym) == gfc_current_ns->proc_name
3080 && (*sym) == (*sym)->result->ns->proc_name
3081 && strcmp ("ppr@", (*sym)->result->name) == 0)
3083 /* Automatic replacement with "hidden" result variable. */
3084 (*sym)->result->attr.referenced = (*sym)->attr.referenced;
3085 *sym = (*sym)->result;
3086 *st = gfc_find_symtree ((*sym)->ns->sym_root, (*sym)->name);
3087 return true;
3089 return false;
3093 /* Matches a variable name followed by anything that might follow it--
3094 array reference, argument list of a function, etc. */
3096 match
3097 gfc_match_rvalue (gfc_expr **result)
3099 gfc_actual_arglist *actual_arglist;
3100 char name[GFC_MAX_SYMBOL_LEN + 1], argname[GFC_MAX_SYMBOL_LEN + 1];
3101 gfc_state_data *st;
3102 gfc_symbol *sym;
3103 gfc_symtree *symtree;
3104 locus where, old_loc;
3105 gfc_expr *e;
3106 match m, m2;
3107 int i;
3108 gfc_typespec *ts;
3109 bool implicit_char;
3110 gfc_ref *ref;
3112 m = gfc_match ("%%loc");
3113 if (m == MATCH_YES)
3115 if (!gfc_notify_std (GFC_STD_LEGACY, "%%LOC() as an rvalue at %C"))
3116 return MATCH_ERROR;
3117 strncpy (name, "loc", 4);
3120 else
3122 m = gfc_match_name (name);
3123 if (m != MATCH_YES)
3124 return m;
3127 /* Check if the symbol exists. */
3128 if (gfc_find_sym_tree (name, NULL, 1, &symtree))
3129 return MATCH_ERROR;
3131 /* If the symbol doesn't exist, create it unless the name matches a FL_STRUCT
3132 type. For derived types we create a generic symbol which links to the
3133 derived type symbol; STRUCTUREs are simpler and must not conflict with
3134 variables. */
3135 if (!symtree)
3136 if (gfc_find_sym_tree (gfc_dt_upper_string (name), NULL, 1, &symtree))
3137 return MATCH_ERROR;
3138 if (!symtree || symtree->n.sym->attr.flavor != FL_STRUCT)
3140 if (gfc_find_state (COMP_INTERFACE)
3141 && !gfc_current_ns->has_import_set)
3142 i = gfc_get_sym_tree (name, NULL, &symtree, false);
3143 else
3144 i = gfc_get_ha_sym_tree (name, &symtree);
3145 if (i)
3146 return MATCH_ERROR;
3150 sym = symtree->n.sym;
3151 e = NULL;
3152 where = gfc_current_locus;
3154 replace_hidden_procptr_result (&sym, &symtree);
3156 /* If this is an implicit do loop index and implicitly typed,
3157 it should not be host associated. */
3158 m = check_for_implicit_index (&symtree, &sym);
3159 if (m != MATCH_YES)
3160 return m;
3162 gfc_set_sym_referenced (sym);
3163 sym->attr.implied_index = 0;
3165 if (sym->attr.function && sym->result == sym)
3167 /* See if this is a directly recursive function call. */
3168 gfc_gobble_whitespace ();
3169 if (sym->attr.recursive
3170 && gfc_peek_ascii_char () == '('
3171 && gfc_current_ns->proc_name == sym
3172 && !sym->attr.dimension)
3174 gfc_error ("%qs at %C is the name of a recursive function "
3175 "and so refers to the result variable. Use an "
3176 "explicit RESULT variable for direct recursion "
3177 "(12.5.2.1)", sym->name);
3178 return MATCH_ERROR;
3181 if (gfc_is_function_return_value (sym, gfc_current_ns))
3182 goto variable;
3184 if (sym->attr.entry
3185 && (sym->ns == gfc_current_ns
3186 || sym->ns == gfc_current_ns->parent))
3188 gfc_entry_list *el = NULL;
3190 for (el = sym->ns->entries; el; el = el->next)
3191 if (sym == el->sym)
3192 goto variable;
3196 if (gfc_matching_procptr_assignment)
3197 goto procptr0;
3199 if (sym->attr.function || sym->attr.external || sym->attr.intrinsic)
3200 goto function0;
3202 if (sym->attr.generic)
3203 goto generic_function;
3205 switch (sym->attr.flavor)
3207 case FL_VARIABLE:
3208 variable:
3209 e = gfc_get_expr ();
3211 e->expr_type = EXPR_VARIABLE;
3212 e->symtree = symtree;
3214 m = gfc_match_varspec (e, 0, false, true);
3215 break;
3217 case FL_PARAMETER:
3218 /* A statement of the form "REAL, parameter :: a(0:10) = 1" will
3219 end up here. Unfortunately, sym->value->expr_type is set to
3220 EXPR_CONSTANT, and so the if () branch would be followed without
3221 the !sym->as check. */
3222 if (sym->value && sym->value->expr_type != EXPR_ARRAY && !sym->as)
3223 e = gfc_copy_expr (sym->value);
3224 else
3226 e = gfc_get_expr ();
3227 e->expr_type = EXPR_VARIABLE;
3230 e->symtree = symtree;
3231 m = gfc_match_varspec (e, 0, false, true);
3233 if (sym->ts.is_c_interop || sym->ts.is_iso_c)
3234 break;
3236 /* Variable array references to derived type parameters cause
3237 all sorts of headaches in simplification. Treating such
3238 expressions as variable works just fine for all array
3239 references. */
3240 if (sym->value && sym->ts.type == BT_DERIVED && e->ref)
3242 for (ref = e->ref; ref; ref = ref->next)
3243 if (ref->type == REF_ARRAY)
3244 break;
3246 if (ref == NULL || ref->u.ar.type == AR_FULL)
3247 break;
3249 ref = e->ref;
3250 e->ref = NULL;
3251 gfc_free_expr (e);
3252 e = gfc_get_expr ();
3253 e->expr_type = EXPR_VARIABLE;
3254 e->symtree = symtree;
3255 e->ref = ref;
3258 break;
3260 case FL_STRUCT:
3261 case FL_DERIVED:
3262 sym = gfc_use_derived (sym);
3263 if (sym == NULL)
3264 m = MATCH_ERROR;
3265 else
3266 goto generic_function;
3267 break;
3269 /* If we're here, then the name is known to be the name of a
3270 procedure, yet it is not sure to be the name of a function. */
3271 case FL_PROCEDURE:
3273 /* Procedure Pointer Assignments. */
3274 procptr0:
3275 if (gfc_matching_procptr_assignment)
3277 gfc_gobble_whitespace ();
3278 if (!sym->attr.dimension && gfc_peek_ascii_char () == '(')
3279 /* Parse functions returning a procptr. */
3280 goto function0;
3282 e = gfc_get_expr ();
3283 e->expr_type = EXPR_VARIABLE;
3284 e->symtree = symtree;
3285 m = gfc_match_varspec (e, 0, false, true);
3286 if (!e->ref && sym->attr.flavor == FL_UNKNOWN
3287 && sym->ts.type == BT_UNKNOWN
3288 && !gfc_add_flavor (&sym->attr, FL_PROCEDURE, sym->name, NULL))
3290 m = MATCH_ERROR;
3291 break;
3293 break;
3296 if (sym->attr.subroutine)
3298 gfc_error ("Unexpected use of subroutine name %qs at %C",
3299 sym->name);
3300 m = MATCH_ERROR;
3301 break;
3304 /* At this point, the name has to be a non-statement function.
3305 If the name is the same as the current function being
3306 compiled, then we have a variable reference (to the function
3307 result) if the name is non-recursive. */
3309 st = gfc_enclosing_unit (NULL);
3311 if (st != NULL
3312 && st->state == COMP_FUNCTION
3313 && st->sym == sym
3314 && !sym->attr.recursive)
3316 e = gfc_get_expr ();
3317 e->symtree = symtree;
3318 e->expr_type = EXPR_VARIABLE;
3320 m = gfc_match_varspec (e, 0, false, true);
3321 break;
3324 /* Match a function reference. */
3325 function0:
3326 m = gfc_match_actual_arglist (0, &actual_arglist);
3327 if (m == MATCH_NO)
3329 if (sym->attr.proc == PROC_ST_FUNCTION)
3330 gfc_error ("Statement function %qs requires argument list at %C",
3331 sym->name);
3332 else
3333 gfc_error ("Function %qs requires an argument list at %C",
3334 sym->name);
3336 m = MATCH_ERROR;
3337 break;
3340 if (m != MATCH_YES)
3342 m = MATCH_ERROR;
3343 break;
3346 gfc_get_ha_sym_tree (name, &symtree); /* Can't fail */
3347 sym = symtree->n.sym;
3349 replace_hidden_procptr_result (&sym, &symtree);
3351 e = gfc_get_expr ();
3352 e->symtree = symtree;
3353 e->expr_type = EXPR_FUNCTION;
3354 e->value.function.actual = actual_arglist;
3355 e->where = gfc_current_locus;
3357 if (sym->ts.type == BT_CLASS && sym->attr.class_ok
3358 && CLASS_DATA (sym)->as)
3359 e->rank = CLASS_DATA (sym)->as->rank;
3360 else if (sym->as != NULL)
3361 e->rank = sym->as->rank;
3363 if (!sym->attr.function
3364 && !gfc_add_function (&sym->attr, sym->name, NULL))
3366 m = MATCH_ERROR;
3367 break;
3370 /* Check here for the existence of at least one argument for the
3371 iso_c_binding functions C_LOC, C_FUNLOC, and C_ASSOCIATED. The
3372 argument(s) given will be checked in gfc_iso_c_func_interface,
3373 during resolution of the function call. */
3374 if (sym->attr.is_iso_c == 1
3375 && (sym->from_intmod == INTMOD_ISO_C_BINDING
3376 && (sym->intmod_sym_id == ISOCBINDING_LOC
3377 || sym->intmod_sym_id == ISOCBINDING_FUNLOC
3378 || sym->intmod_sym_id == ISOCBINDING_ASSOCIATED)))
3380 /* make sure we were given a param */
3381 if (actual_arglist == NULL)
3383 gfc_error ("Missing argument to %qs at %C", sym->name);
3384 m = MATCH_ERROR;
3385 break;
3389 if (sym->result == NULL)
3390 sym->result = sym;
3392 gfc_gobble_whitespace ();
3393 /* F08:C612. */
3394 if (gfc_peek_ascii_char() == '%')
3396 gfc_error ("The leftmost part-ref in a data-ref can not be a "
3397 "function reference at %C");
3398 m = MATCH_ERROR;
3401 m = MATCH_YES;
3402 break;
3404 case FL_UNKNOWN:
3406 /* Special case for derived type variables that get their types
3407 via an IMPLICIT statement. This can't wait for the
3408 resolution phase. */
3410 old_loc = gfc_current_locus;
3411 if (gfc_match_member_sep (sym) == MATCH_YES
3412 && sym->ts.type == BT_UNKNOWN
3413 && gfc_get_default_type (sym->name, sym->ns)->type == BT_DERIVED)
3414 gfc_set_default_type (sym, 0, sym->ns);
3415 gfc_current_locus = old_loc;
3417 /* If the symbol has a (co)dimension attribute, the expression is a
3418 variable. */
3420 if (sym->attr.dimension || sym->attr.codimension)
3422 if (!gfc_add_flavor (&sym->attr, FL_VARIABLE, sym->name, NULL))
3424 m = MATCH_ERROR;
3425 break;
3428 e = gfc_get_expr ();
3429 e->symtree = symtree;
3430 e->expr_type = EXPR_VARIABLE;
3431 m = gfc_match_varspec (e, 0, false, true);
3432 break;
3435 if (sym->ts.type == BT_CLASS && sym->attr.class_ok
3436 && (CLASS_DATA (sym)->attr.dimension
3437 || CLASS_DATA (sym)->attr.codimension))
3439 if (!gfc_add_flavor (&sym->attr, FL_VARIABLE, sym->name, NULL))
3441 m = MATCH_ERROR;
3442 break;
3445 e = gfc_get_expr ();
3446 e->symtree = symtree;
3447 e->expr_type = EXPR_VARIABLE;
3448 m = gfc_match_varspec (e, 0, false, true);
3449 break;
3452 /* Name is not an array, so we peek to see if a '(' implies a
3453 function call or a substring reference. Otherwise the
3454 variable is just a scalar. */
3456 gfc_gobble_whitespace ();
3457 if (gfc_peek_ascii_char () != '(')
3459 /* Assume a scalar variable */
3460 e = gfc_get_expr ();
3461 e->symtree = symtree;
3462 e->expr_type = EXPR_VARIABLE;
3464 if (!gfc_add_flavor (&sym->attr, FL_VARIABLE, sym->name, NULL))
3466 m = MATCH_ERROR;
3467 break;
3470 /*FIXME:??? gfc_match_varspec does set this for us: */
3471 e->ts = sym->ts;
3472 m = gfc_match_varspec (e, 0, false, true);
3473 break;
3476 /* See if this is a function reference with a keyword argument
3477 as first argument. We do this because otherwise a spurious
3478 symbol would end up in the symbol table. */
3480 old_loc = gfc_current_locus;
3481 m2 = gfc_match (" ( %n =", argname);
3482 gfc_current_locus = old_loc;
3484 e = gfc_get_expr ();
3485 e->symtree = symtree;
3487 if (m2 != MATCH_YES)
3489 /* Try to figure out whether we're dealing with a character type.
3490 We're peeking ahead here, because we don't want to call
3491 match_substring if we're dealing with an implicitly typed
3492 non-character variable. */
3493 implicit_char = false;
3494 if (sym->ts.type == BT_UNKNOWN)
3496 ts = gfc_get_default_type (sym->name, NULL);
3497 if (ts->type == BT_CHARACTER)
3498 implicit_char = true;
3501 /* See if this could possibly be a substring reference of a name
3502 that we're not sure is a variable yet. */
3504 if ((implicit_char || sym->ts.type == BT_CHARACTER)
3505 && match_substring (sym->ts.u.cl, 0, &e->ref, false) == MATCH_YES)
3508 e->expr_type = EXPR_VARIABLE;
3510 if (sym->attr.flavor != FL_VARIABLE
3511 && !gfc_add_flavor (&sym->attr, FL_VARIABLE,
3512 sym->name, NULL))
3514 m = MATCH_ERROR;
3515 break;
3518 if (sym->ts.type == BT_UNKNOWN
3519 && !gfc_set_default_type (sym, 1, NULL))
3521 m = MATCH_ERROR;
3522 break;
3525 e->ts = sym->ts;
3526 if (e->ref)
3527 e->ts.u.cl = NULL;
3528 m = MATCH_YES;
3529 break;
3533 /* Give up, assume we have a function. */
3535 gfc_get_sym_tree (name, NULL, &symtree, false); /* Can't fail */
3536 sym = symtree->n.sym;
3537 e->expr_type = EXPR_FUNCTION;
3539 if (!sym->attr.function
3540 && !gfc_add_function (&sym->attr, sym->name, NULL))
3542 m = MATCH_ERROR;
3543 break;
3546 sym->result = sym;
3548 m = gfc_match_actual_arglist (0, &e->value.function.actual);
3549 if (m == MATCH_NO)
3550 gfc_error ("Missing argument list in function %qs at %C", sym->name);
3552 if (m != MATCH_YES)
3554 m = MATCH_ERROR;
3555 break;
3558 /* If our new function returns a character, array or structure
3559 type, it might have subsequent references. */
3561 m = gfc_match_varspec (e, 0, false, true);
3562 if (m == MATCH_NO)
3563 m = MATCH_YES;
3565 break;
3567 generic_function:
3568 /* Look for symbol first; if not found, look for STRUCTURE type symbol
3569 specially. Creates a generic symbol for derived types. */
3570 gfc_find_sym_tree (name, NULL, 1, &symtree);
3571 if (!symtree)
3572 gfc_find_sym_tree (gfc_dt_upper_string (name), NULL, 1, &symtree);
3573 if (!symtree || symtree->n.sym->attr.flavor != FL_STRUCT)
3574 gfc_get_sym_tree (name, NULL, &symtree, false); /* Can't fail */
3576 e = gfc_get_expr ();
3577 e->symtree = symtree;
3578 e->expr_type = EXPR_FUNCTION;
3580 if (gfc_fl_struct (sym->attr.flavor))
3582 e->value.function.esym = sym;
3583 e->symtree->n.sym->attr.generic = 1;
3586 m = gfc_match_actual_arglist (0, &e->value.function.actual);
3587 break;
3589 case FL_NAMELIST:
3590 m = MATCH_ERROR;
3591 break;
3593 default:
3594 gfc_error ("Symbol at %C is not appropriate for an expression");
3595 return MATCH_ERROR;
3598 if (m == MATCH_YES)
3600 e->where = where;
3601 *result = e;
3603 else
3604 gfc_free_expr (e);
3606 return m;
3610 /* Match a variable, i.e. something that can be assigned to. This
3611 starts as a symbol, can be a structure component or an array
3612 reference. It can be a function if the function doesn't have a
3613 separate RESULT variable. If the symbol has not been previously
3614 seen, we assume it is a variable.
3616 This function is called by two interface functions:
3617 gfc_match_variable, which has host_flag = 1, and
3618 gfc_match_equiv_variable, with host_flag = 0, to restrict the
3619 match of the symbol to the local scope. */
3621 static match
3622 match_variable (gfc_expr **result, int equiv_flag, int host_flag)
3624 gfc_symbol *sym, *dt_sym;
3625 gfc_symtree *st;
3626 gfc_expr *expr;
3627 locus where, old_loc;
3628 match m;
3630 /* Since nothing has any business being an lvalue in a module
3631 specification block, an interface block or a contains section,
3632 we force the changed_symbols mechanism to work by setting
3633 host_flag to 0. This prevents valid symbols that have the name
3634 of keywords, such as 'end', being turned into variables by
3635 failed matching to assignments for, e.g., END INTERFACE. */
3636 if (gfc_current_state () == COMP_MODULE
3637 || gfc_current_state () == COMP_SUBMODULE
3638 || gfc_current_state () == COMP_INTERFACE
3639 || gfc_current_state () == COMP_CONTAINS)
3640 host_flag = 0;
3642 where = gfc_current_locus;
3643 m = gfc_match_sym_tree (&st, host_flag);
3644 if (m != MATCH_YES)
3645 return m;
3647 sym = st->n.sym;
3649 /* If this is an implicit do loop index and implicitly typed,
3650 it should not be host associated. */
3651 m = check_for_implicit_index (&st, &sym);
3652 if (m != MATCH_YES)
3653 return m;
3655 sym->attr.implied_index = 0;
3657 gfc_set_sym_referenced (sym);
3659 /* STRUCTUREs may share names with variables, but derived types may not. */
3660 if (sym->attr.flavor == FL_PROCEDURE && sym->generic
3661 && (dt_sym = gfc_find_dt_in_generic (sym)))
3663 if (dt_sym->attr.flavor == FL_DERIVED)
3664 gfc_error ("Derived type %qs cannot be used as a variable at %C",
3665 sym->name);
3666 return MATCH_ERROR;
3669 switch (sym->attr.flavor)
3671 case FL_VARIABLE:
3672 /* Everything is alright. */
3673 break;
3675 case FL_UNKNOWN:
3677 sym_flavor flavor = FL_UNKNOWN;
3679 gfc_gobble_whitespace ();
3681 if (sym->attr.external || sym->attr.procedure
3682 || sym->attr.function || sym->attr.subroutine)
3683 flavor = FL_PROCEDURE;
3685 /* If it is not a procedure, is not typed and is host associated,
3686 we cannot give it a flavor yet. */
3687 else if (sym->ns == gfc_current_ns->parent
3688 && sym->ts.type == BT_UNKNOWN)
3689 break;
3691 /* These are definitive indicators that this is a variable. */
3692 else if (gfc_peek_ascii_char () != '(' || sym->ts.type != BT_UNKNOWN
3693 || sym->attr.pointer || sym->as != NULL)
3694 flavor = FL_VARIABLE;
3696 if (flavor != FL_UNKNOWN
3697 && !gfc_add_flavor (&sym->attr, flavor, sym->name, NULL))
3698 return MATCH_ERROR;
3700 break;
3702 case FL_PARAMETER:
3703 if (equiv_flag)
3705 gfc_error ("Named constant at %C in an EQUIVALENCE");
3706 return MATCH_ERROR;
3708 /* Otherwise this is checked for and an error given in the
3709 variable definition context checks. */
3710 break;
3712 case FL_PROCEDURE:
3713 /* Check for a nonrecursive function result variable. */
3714 if (sym->attr.function
3715 && !sym->attr.external
3716 && sym->result == sym
3717 && (gfc_is_function_return_value (sym, gfc_current_ns)
3718 || (sym->attr.entry
3719 && sym->ns == gfc_current_ns)
3720 || (sym->attr.entry
3721 && sym->ns == gfc_current_ns->parent)))
3723 /* If a function result is a derived type, then the derived
3724 type may still have to be resolved. */
3726 if (sym->ts.type == BT_DERIVED
3727 && gfc_use_derived (sym->ts.u.derived) == NULL)
3728 return MATCH_ERROR;
3729 break;
3732 if (sym->attr.proc_pointer
3733 || replace_hidden_procptr_result (&sym, &st))
3734 break;
3736 /* Fall through to error */
3737 gcc_fallthrough ();
3739 default:
3740 gfc_error ("%qs at %C is not a variable", sym->name);
3741 return MATCH_ERROR;
3744 /* Special case for derived type variables that get their types
3745 via an IMPLICIT statement. This can't wait for the
3746 resolution phase. */
3749 gfc_namespace * implicit_ns;
3751 if (gfc_current_ns->proc_name == sym)
3752 implicit_ns = gfc_current_ns;
3753 else
3754 implicit_ns = sym->ns;
3756 old_loc = gfc_current_locus;
3757 if (gfc_match_member_sep (sym) == MATCH_YES
3758 && sym->ts.type == BT_UNKNOWN
3759 && gfc_get_default_type (sym->name, implicit_ns)->type == BT_DERIVED)
3760 gfc_set_default_type (sym, 0, implicit_ns);
3761 gfc_current_locus = old_loc;
3764 expr = gfc_get_expr ();
3766 expr->expr_type = EXPR_VARIABLE;
3767 expr->symtree = st;
3768 expr->ts = sym->ts;
3769 expr->where = where;
3771 /* Now see if we have to do more. */
3772 m = gfc_match_varspec (expr, equiv_flag, false, false);
3773 if (m != MATCH_YES)
3775 gfc_free_expr (expr);
3776 return m;
3779 *result = expr;
3780 return MATCH_YES;
3784 match
3785 gfc_match_variable (gfc_expr **result, int equiv_flag)
3787 return match_variable (result, equiv_flag, 1);
3791 match
3792 gfc_match_equiv_variable (gfc_expr **result)
3794 return match_variable (result, 1, 0);