1 /* Primary expression subroutines
2 Copyright (C) 2000, 2001, 2002, 2004, 2005, 2006, 2007
3 Free Software Foundation, Inc.
4 Contributed by Andy Vaught
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2, or (at your option) any later
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
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING. If not, write to the Free
20 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
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. */
36 match_kind_param (int *kind
)
38 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
43 m
= gfc_match_small_literal_int (kind
, NULL
);
47 m
= gfc_match_name (name
);
51 if (gfc_find_symbol (name
, NULL
, 1, &sym
))
57 if (sym
->attr
.flavor
!= FL_PARAMETER
)
60 p
= gfc_extract_int (sym
->value
, kind
);
71 /* Get a trailing kind-specification for non-character variables.
73 the integer kind value or:
74 -1 if an error was generated
75 -2 if no kind was found */
83 if (gfc_match_char ('_') != MATCH_YES
)
86 m
= match_kind_param (&kind
);
88 gfc_error ("Missing kind-parameter at %C");
90 return (m
== MATCH_YES
) ? kind
: -1;
94 /* Given a character and a radix, see if the character is a valid
95 digit in that radix. */
98 check_digit (int c
, int radix
)
105 r
= ('0' <= c
&& c
<= '1');
109 r
= ('0' <= c
&& c
<= '7');
113 r
= ('0' <= c
&& c
<= '9');
121 gfc_internal_error ("check_digit(): bad radix");
128 /* Match the digit string part of an integer if signflag is not set,
129 the signed digit string part if signflag is set. If the buffer
130 is NULL, we just count characters for the resolution pass. Returns
131 the number of characters matched, -1 for no match. */
134 match_digits (int signflag
, int radix
, char *buffer
)
140 c
= gfc_next_char ();
142 if (signflag
&& (c
== '+' || c
== '-'))
146 gfc_gobble_whitespace ();
147 c
= gfc_next_char ();
151 if (!check_digit (c
, radix
))
160 old_loc
= gfc_current_locus
;
161 c
= gfc_next_char ();
163 if (!check_digit (c
, radix
))
171 gfc_current_locus
= old_loc
;
177 /* Match an integer (digit string and optional kind).
178 A sign will be accepted if signflag is set. */
181 match_integer_constant (gfc_expr
**result
, int signflag
)
188 old_loc
= gfc_current_locus
;
189 gfc_gobble_whitespace ();
191 length
= match_digits (signflag
, 10, NULL
);
192 gfc_current_locus
= old_loc
;
196 buffer
= alloca (length
+ 1);
197 memset (buffer
, '\0', length
+ 1);
199 gfc_gobble_whitespace ();
201 match_digits (signflag
, 10, buffer
);
205 kind
= gfc_default_integer_kind
;
209 if (gfc_validate_kind (BT_INTEGER
, kind
, true) < 0)
211 gfc_error ("Integer kind %d at %C not available", kind
);
215 e
= gfc_convert_integer (buffer
, kind
, 10, &gfc_current_locus
);
217 if (gfc_range_check (e
) != ARITH_OK
)
219 gfc_error ("Integer too big for its kind at %C. This check can be "
220 "disabled with the option -fno-range-check");
231 /* Match a Hollerith constant. */
234 match_hollerith_constant (gfc_expr
**result
)
242 old_loc
= gfc_current_locus
;
243 gfc_gobble_whitespace ();
245 if (match_integer_constant (&e
, 0) == MATCH_YES
246 && gfc_match_char ('h') == MATCH_YES
)
248 if (gfc_notify_std (GFC_STD_LEGACY
, "Extension: Hollerith constant "
252 msg
= gfc_extract_int (e
, &num
);
260 gfc_error ("Invalid Hollerith constant: %L must contain at least "
261 "one character", &old_loc
);
264 if (e
->ts
.kind
!= gfc_default_integer_kind
)
266 gfc_error ("Invalid Hollerith constant: Integer kind at %L "
267 "should be default", &old_loc
);
273 e
= gfc_constant_result (BT_HOLLERITH
, gfc_default_character_kind
,
276 e
->representation
.string
= gfc_getmem (num
+ 1);
277 for (i
= 0; i
< num
; i
++)
279 e
->representation
.string
[i
] = gfc_next_char_literal (1);
281 e
->representation
.string
[num
] = '\0';
282 e
->representation
.length
= num
;
290 gfc_current_locus
= old_loc
;
299 /* Match a binary, octal or hexadecimal constant that can be found in
300 a DATA statement. The standard permits b'010...', o'73...', and
301 z'a1...' where b, o, and z can be capital letters. This function
302 also accepts postfixed forms of the constants: '01...'b, '73...'o,
303 and 'a1...'z. An additional extension is the use of x for z. */
306 match_boz_constant (gfc_expr
**result
)
308 int post
, radix
, delim
, length
, x_hex
, kind
;
309 locus old_loc
, start_loc
;
313 start_loc
= old_loc
= gfc_current_locus
;
314 gfc_gobble_whitespace ();
317 switch (post
= gfc_next_char ())
339 radix
= 16; /* Set to accept any valid digit string. */
345 /* No whitespace allowed here. */
348 delim
= gfc_next_char ();
350 if (delim
!= '\'' && delim
!= '\"')
353 if (x_hex
&& pedantic
354 && (gfc_notify_std (GFC_STD_GNU
, "Extension: Hexadecimal "
355 "constant at %C uses non-standard syntax.")
359 old_loc
= gfc_current_locus
;
361 length
= match_digits (0, radix
, NULL
);
364 gfc_error ("Empty set of digits in BOZ constant at %C");
368 if (gfc_next_char () != delim
)
370 gfc_error ("Illegal character in BOZ constant at %C");
376 switch (gfc_next_char ())
392 gfc_notify_std (GFC_STD_GNU
, "Extension: BOZ constant "
393 "at %C uses non-standard postfix syntax.");
396 gfc_current_locus
= old_loc
;
398 buffer
= alloca (length
+ 1);
399 memset (buffer
, '\0', length
+ 1);
401 match_digits (0, radix
, buffer
);
402 gfc_next_char (); /* Eat delimiter. */
404 gfc_next_char (); /* Eat postfixed b, o, z, or x. */
406 /* In section 5.2.5 and following C567 in the Fortran 2003 standard, we find
407 "If a data-stmt-constant is a boz-literal-constant, the corresponding
408 variable shall be of type integer. The boz-literal-constant is treated
409 as if it were an int-literal-constant with a kind-param that specifies
410 the representation method with the largest decimal exponent range
411 supported by the processor." */
413 kind
= gfc_max_integer_kind
;
414 e
= gfc_convert_integer (buffer
, kind
, radix
, &gfc_current_locus
);
416 if (gfc_range_check (e
) != ARITH_OK
)
418 gfc_error ("Integer too big for integer kind %i at %C", kind
);
427 gfc_current_locus
= start_loc
;
432 /* Match a real constant of some sort. Allow a signed constant if signflag
433 is nonzero. Allow integer constants if allow_int is true. */
436 match_real_constant (gfc_expr
**result
, int signflag
)
438 int kind
, c
, count
, seen_dp
, seen_digits
, exp_char
;
439 locus old_loc
, temp_loc
;
444 old_loc
= gfc_current_locus
;
445 gfc_gobble_whitespace ();
455 c
= gfc_next_char ();
456 if (signflag
&& (c
== '+' || c
== '-'))
461 gfc_gobble_whitespace ();
462 c
= gfc_next_char ();
465 /* Scan significand. */
466 for (;; c
= gfc_next_char (), count
++)
473 /* Check to see if "." goes with a following operator like
475 temp_loc
= gfc_current_locus
;
476 c
= gfc_next_char ();
478 if (c
== 'e' || c
== 'd' || c
== 'q')
480 c
= gfc_next_char ();
482 goto done
; /* Operator named .e. or .d. */
486 goto done
; /* Distinguish 1.e9 from 1.eq.2 */
488 gfc_current_locus
= temp_loc
;
502 if (!seen_digits
|| (c
!= 'e' && c
!= 'd' && c
!= 'q'))
507 c
= gfc_next_char ();
510 if (c
== '+' || c
== '-')
511 { /* optional sign */
512 c
= gfc_next_char ();
518 gfc_error ("Missing exponent in real number at %C");
524 c
= gfc_next_char ();
529 /* Check that we have a numeric constant. */
530 if (!seen_digits
|| (!seen_dp
&& exp_char
== ' '))
532 gfc_current_locus
= old_loc
;
536 /* Convert the number. */
537 gfc_current_locus
= old_loc
;
538 gfc_gobble_whitespace ();
540 buffer
= alloca (count
+ 1);
541 memset (buffer
, '\0', count
+ 1);
544 c
= gfc_next_char ();
545 if (c
== '+' || c
== '-')
547 gfc_gobble_whitespace ();
548 c
= gfc_next_char ();
551 /* Hack for mpfr_set_str(). */
554 if (c
== 'd' || c
== 'q')
562 c
= gfc_next_char ();
574 gfc_error ("Real number at %C has a 'd' exponent and an explicit "
578 kind
= gfc_default_double_kind
;
583 kind
= gfc_default_real_kind
;
585 if (gfc_validate_kind (BT_REAL
, kind
, true) < 0)
587 gfc_error ("Invalid real kind %d at %C", kind
);
592 e
= gfc_convert_real (buffer
, kind
, &gfc_current_locus
);
594 mpfr_neg (e
->value
.real
, e
->value
.real
, GFC_RND_MODE
);
596 switch (gfc_range_check (e
))
601 gfc_error ("Real constant overflows its kind at %C");
604 case ARITH_UNDERFLOW
:
605 if (gfc_option
.warn_underflow
)
606 gfc_warning ("Real constant underflows its kind at %C");
607 mpfr_set_ui (e
->value
.real
, 0, GFC_RND_MODE
);
611 gfc_internal_error ("gfc_range_check() returned bad value");
623 /* Match a substring reference. */
626 match_substring (gfc_charlen
*cl
, int init
, gfc_ref
**result
)
628 gfc_expr
*start
, *end
;
636 old_loc
= gfc_current_locus
;
638 m
= gfc_match_char ('(');
642 if (gfc_match_char (':') != MATCH_YES
)
645 m
= gfc_match_init_expr (&start
);
647 m
= gfc_match_expr (&start
);
655 m
= gfc_match_char (':');
660 if (gfc_match_char (')') != MATCH_YES
)
663 m
= gfc_match_init_expr (&end
);
665 m
= gfc_match_expr (&end
);
669 if (m
== MATCH_ERROR
)
672 m
= gfc_match_char (')');
677 /* Optimize away the (:) reference. */
678 if (start
== NULL
&& end
== NULL
)
682 ref
= gfc_get_ref ();
684 ref
->type
= REF_SUBSTRING
;
686 start
= gfc_int_expr (1);
687 ref
->u
.ss
.start
= start
;
688 if (end
== NULL
&& cl
)
689 end
= gfc_copy_expr (cl
->length
);
691 ref
->u
.ss
.length
= cl
;
698 gfc_error ("Syntax error in SUBSTRING specification at %C");
702 gfc_free_expr (start
);
705 gfc_current_locus
= old_loc
;
710 /* Reads the next character of a string constant, taking care to
711 return doubled delimiters on the input as a single instance of
714 Special return values are:
715 -1 End of the string, as determined by the delimiter
716 -2 Unterminated string detected
718 Backslash codes are also expanded at this time. */
721 next_string_char (char delimiter
)
726 c
= gfc_next_char_literal (1);
731 if (gfc_option
.flag_backslash
&& c
== '\\')
733 old_locus
= gfc_current_locus
;
735 if (gfc_match_special_char (&c
) == MATCH_NO
)
736 gfc_current_locus
= old_locus
;
738 if (!(gfc_option
.allow_std
& GFC_STD_GNU
) && !inhibit_warnings
)
739 gfc_warning ("Extension: backslash character at %C");
745 old_locus
= gfc_current_locus
;
746 c
= gfc_next_char_literal (0);
750 gfc_current_locus
= old_locus
;
756 /* Special case of gfc_match_name() that matches a parameter kind name
757 before a string constant. This takes case of the weird but legal
762 where kind____ is a parameter. gfc_match_name() will happily slurp
763 up all the underscores, which leads to problems. If we return
764 MATCH_YES, the parse pointer points to the final underscore, which
765 is not part of the name. We never return MATCH_ERROR-- errors in
766 the name will be detected later. */
769 match_charkind_name (char *name
)
775 gfc_gobble_whitespace ();
776 c
= gfc_next_char ();
785 old_loc
= gfc_current_locus
;
786 c
= gfc_next_char ();
790 peek
= gfc_peek_char ();
792 if (peek
== '\'' || peek
== '\"')
794 gfc_current_locus
= old_loc
;
802 && (gfc_option
.flag_dollar_ok
&& c
!= '$'))
806 if (++len
> GFC_MAX_SYMBOL_LEN
)
814 /* See if the current input matches a character constant. Lots of
815 contortions have to be done to match the kind parameter which comes
816 before the actual string. The main consideration is that we don't
817 want to error out too quickly. For example, we don't actually do
818 any validation of the kinds until we have actually seen a legal
819 delimiter. Using match_kind_param() generates errors too quickly. */
822 match_string_constant (gfc_expr
**result
)
824 char *p
, name
[GFC_MAX_SYMBOL_LEN
+ 1];
825 int i
, c
, kind
, length
, delimiter
, warn_ampersand
;
826 locus old_locus
, start_locus
;
832 old_locus
= gfc_current_locus
;
834 gfc_gobble_whitespace ();
836 start_locus
= gfc_current_locus
;
838 c
= gfc_next_char ();
839 if (c
== '\'' || c
== '"')
841 kind
= gfc_default_character_kind
;
851 kind
= kind
* 10 + c
- '0';
854 c
= gfc_next_char ();
860 gfc_current_locus
= old_locus
;
862 m
= match_charkind_name (name
);
866 if (gfc_find_symbol (name
, NULL
, 1, &sym
)
868 || sym
->attr
.flavor
!= FL_PARAMETER
)
872 c
= gfc_next_char ();
877 gfc_gobble_whitespace ();
878 c
= gfc_next_char ();
884 gfc_gobble_whitespace ();
885 start_locus
= gfc_current_locus
;
887 c
= gfc_next_char ();
888 if (c
!= '\'' && c
!= '"')
893 q
= gfc_extract_int (sym
->value
, &kind
);
901 if (gfc_validate_kind (BT_CHARACTER
, kind
, true) < 0)
903 gfc_error ("Invalid kind %d for CHARACTER constant at %C", kind
);
908 /* Scan the string into a block of memory by first figuring out how
909 long it is, allocating the structure, then re-reading it. This
910 isn't particularly efficient, but string constants aren't that
911 common in most code. TODO: Use obstacks? */
918 c
= next_string_char (delimiter
);
923 gfc_current_locus
= start_locus
;
924 gfc_error ("Unterminated character constant beginning at %C");
931 /* Peek at the next character to see if it is a b, o, z, or x for the
932 postfixed BOZ literal constants. */
933 c
= gfc_peek_char ();
934 if (c
== 'b' || c
== 'o' || c
=='z' || c
== 'x')
940 e
->expr_type
= EXPR_CONSTANT
;
942 e
->ts
.type
= BT_CHARACTER
;
944 e
->ts
.is_c_interop
= 0;
946 e
->where
= start_locus
;
948 e
->value
.character
.string
= p
= gfc_getmem (length
+ 1);
949 e
->value
.character
.length
= length
;
951 gfc_current_locus
= start_locus
;
952 gfc_next_char (); /* Skip delimiter */
954 /* We disable the warning for the following loop as the warning has already
955 been printed in the loop above. */
956 warn_ampersand
= gfc_option
.warn_ampersand
;
957 gfc_option
.warn_ampersand
= 0;
959 for (i
= 0; i
< length
; i
++)
960 *p
++ = next_string_char (delimiter
);
962 *p
= '\0'; /* TODO: C-style string is for development/debug purposes. */
963 gfc_option
.warn_ampersand
= warn_ampersand
;
965 if (next_string_char (delimiter
) != -1)
966 gfc_internal_error ("match_string_constant(): Delimiter not found");
968 if (match_substring (NULL
, 0, &e
->ref
) != MATCH_NO
)
969 e
->expr_type
= EXPR_SUBSTRING
;
976 gfc_current_locus
= old_locus
;
981 /* Match a .true. or .false. */
984 match_logical_constant (gfc_expr
**result
)
986 static mstring logical_ops
[] = {
987 minit (".false.", 0),
995 i
= gfc_match_strings (logical_ops
);
1003 kind
= gfc_default_logical_kind
;
1005 if (gfc_validate_kind (BT_LOGICAL
, kind
, true) < 0)
1007 gfc_error ("Bad kind for logical constant at %C");
1011 e
= gfc_get_expr ();
1013 e
->expr_type
= EXPR_CONSTANT
;
1014 e
->value
.logical
= i
;
1015 e
->ts
.type
= BT_LOGICAL
;
1017 e
->ts
.is_c_interop
= 0;
1019 e
->where
= gfc_current_locus
;
1026 /* Match a real or imaginary part of a complex constant that is a
1027 symbolic constant. */
1030 match_sym_complex_part (gfc_expr
**result
)
1032 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
1037 m
= gfc_match_name (name
);
1041 if (gfc_find_symbol (name
, NULL
, 1, &sym
) || sym
== NULL
)
1044 if (sym
->attr
.flavor
!= FL_PARAMETER
)
1046 gfc_error ("Expected PARAMETER symbol in complex constant at %C");
1050 if (!gfc_numeric_ts (&sym
->value
->ts
))
1052 gfc_error ("Numeric PARAMETER required in complex constant at %C");
1056 if (sym
->value
->rank
!= 0)
1058 gfc_error ("Scalar PARAMETER required in complex constant at %C");
1062 if (gfc_notify_std (GFC_STD_F2003
, "Fortran 2003: PARAMETER symbol in "
1063 "complex constant at %C") == FAILURE
)
1066 switch (sym
->value
->ts
.type
)
1069 e
= gfc_copy_expr (sym
->value
);
1073 e
= gfc_complex2real (sym
->value
, sym
->value
->ts
.kind
);
1079 e
= gfc_int2real (sym
->value
, gfc_default_real_kind
);
1085 gfc_internal_error ("gfc_match_sym_complex_part(): Bad type");
1088 *result
= e
; /* e is a scalar, real, constant expression. */
1092 gfc_error ("Error converting PARAMETER constant in complex constant at %C");
1097 /* Match a real or imaginary part of a complex number. */
1100 match_complex_part (gfc_expr
**result
)
1104 m
= match_sym_complex_part (result
);
1108 m
= match_real_constant (result
, 1);
1112 return match_integer_constant (result
, 1);
1116 /* Try to match a complex constant. */
1119 match_complex_constant (gfc_expr
**result
)
1121 gfc_expr
*e
, *real
, *imag
;
1122 gfc_error_buf old_error
;
1123 gfc_typespec target
;
1128 old_loc
= gfc_current_locus
;
1129 real
= imag
= e
= NULL
;
1131 m
= gfc_match_char ('(');
1135 gfc_push_error (&old_error
);
1137 m
= match_complex_part (&real
);
1140 gfc_free_error (&old_error
);
1144 if (gfc_match_char (',') == MATCH_NO
)
1146 gfc_pop_error (&old_error
);
1151 /* If m is error, then something was wrong with the real part and we
1152 assume we have a complex constant because we've seen the ','. An
1153 ambiguous case here is the start of an iterator list of some
1154 sort. These sort of lists are matched prior to coming here. */
1156 if (m
== MATCH_ERROR
)
1158 gfc_free_error (&old_error
);
1161 gfc_pop_error (&old_error
);
1163 m
= match_complex_part (&imag
);
1166 if (m
== MATCH_ERROR
)
1169 m
= gfc_match_char (')');
1172 /* Give the matcher for implied do-loops a chance to run. This
1173 yields a much saner error message for (/ (i, 4=i, 6) /). */
1174 if (gfc_peek_char () == '=')
1183 if (m
== MATCH_ERROR
)
1186 /* Decide on the kind of this complex number. */
1187 if (real
->ts
.type
== BT_REAL
)
1189 if (imag
->ts
.type
== BT_REAL
)
1190 kind
= gfc_kind_max (real
, imag
);
1192 kind
= real
->ts
.kind
;
1196 if (imag
->ts
.type
== BT_REAL
)
1197 kind
= imag
->ts
.kind
;
1199 kind
= gfc_default_real_kind
;
1201 target
.type
= BT_REAL
;
1203 target
.is_c_interop
= 0;
1204 target
.is_iso_c
= 0;
1206 if (real
->ts
.type
!= BT_REAL
|| kind
!= real
->ts
.kind
)
1207 gfc_convert_type (real
, &target
, 2);
1208 if (imag
->ts
.type
!= BT_REAL
|| kind
!= imag
->ts
.kind
)
1209 gfc_convert_type (imag
, &target
, 2);
1211 e
= gfc_convert_complex (real
, imag
, kind
);
1212 e
->where
= gfc_current_locus
;
1214 gfc_free_expr (real
);
1215 gfc_free_expr (imag
);
1221 gfc_error ("Syntax error in COMPLEX constant at %C");
1226 gfc_free_expr (real
);
1227 gfc_free_expr (imag
);
1228 gfc_current_locus
= old_loc
;
1234 /* Match constants in any of several forms. Returns nonzero for a
1235 match, zero for no match. */
1238 gfc_match_literal_constant (gfc_expr
**result
, int signflag
)
1242 m
= match_complex_constant (result
);
1246 m
= match_string_constant (result
);
1250 m
= match_boz_constant (result
);
1254 m
= match_real_constant (result
, signflag
);
1258 m
= match_hollerith_constant (result
);
1262 m
= match_integer_constant (result
, signflag
);
1266 m
= match_logical_constant (result
);
1274 /* Match a single actual argument value. An actual argument is
1275 usually an expression, but can also be a procedure name. If the
1276 argument is a single name, it is not always possible to tell
1277 whether the name is a dummy procedure or not. We treat these cases
1278 by creating an argument that looks like a dummy procedure and
1279 fixing things later during resolution. */
1282 match_actual_arg (gfc_expr
**result
)
1284 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
1285 gfc_symtree
*symtree
;
1290 where
= gfc_current_locus
;
1292 switch (gfc_match_name (name
))
1301 w
= gfc_current_locus
;
1302 gfc_gobble_whitespace ();
1303 c
= gfc_next_char ();
1304 gfc_current_locus
= w
;
1306 if (c
!= ',' && c
!= ')')
1309 if (gfc_find_sym_tree (name
, NULL
, 1, &symtree
))
1311 /* Handle error elsewhere. */
1313 /* Eliminate a couple of common cases where we know we don't
1314 have a function argument. */
1315 if (symtree
== NULL
)
1317 gfc_get_sym_tree (name
, NULL
, &symtree
);
1318 gfc_set_sym_referenced (symtree
->n
.sym
);
1324 sym
= symtree
->n
.sym
;
1325 gfc_set_sym_referenced (sym
);
1326 if (sym
->attr
.flavor
!= FL_PROCEDURE
1327 && sym
->attr
.flavor
!= FL_UNKNOWN
)
1330 /* If the symbol is a function with itself as the result and
1331 is being defined, then we have a variable. */
1332 if (sym
->attr
.function
&& sym
->result
== sym
)
1334 if (gfc_current_ns
->proc_name
== sym
1335 || (gfc_current_ns
->parent
!= NULL
1336 && gfc_current_ns
->parent
->proc_name
== sym
))
1340 && (sym
->ns
== gfc_current_ns
1341 || sym
->ns
== gfc_current_ns
->parent
))
1343 gfc_entry_list
*el
= NULL
;
1345 for (el
= sym
->ns
->entries
; el
; el
= el
->next
)
1355 e
= gfc_get_expr (); /* Leave it unknown for now */
1356 e
->symtree
= symtree
;
1357 e
->expr_type
= EXPR_VARIABLE
;
1358 e
->ts
.type
= BT_PROCEDURE
;
1365 gfc_current_locus
= where
;
1366 return gfc_match_expr (result
);
1370 /* Match a keyword argument. */
1373 match_keyword_arg (gfc_actual_arglist
*actual
, gfc_actual_arglist
*base
)
1375 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
1376 gfc_actual_arglist
*a
;
1380 name_locus
= gfc_current_locus
;
1381 m
= gfc_match_name (name
);
1385 if (gfc_match_char ('=') != MATCH_YES
)
1391 m
= match_actual_arg (&actual
->expr
);
1395 /* Make sure this name has not appeared yet. */
1397 if (name
[0] != '\0')
1399 for (a
= base
; a
; a
= a
->next
)
1400 if (a
->name
!= NULL
&& strcmp (a
->name
, name
) == 0)
1402 gfc_error ("Keyword '%s' at %C has already appeared in the "
1403 "current argument list", name
);
1408 actual
->name
= gfc_get_string (name
);
1412 gfc_current_locus
= name_locus
;
1417 /* Match an argument list function, such as %VAL. */
1420 match_arg_list_function (gfc_actual_arglist
*result
)
1422 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
1426 old_locus
= gfc_current_locus
;
1428 if (gfc_match_char ('%') != MATCH_YES
)
1434 m
= gfc_match ("%n (", name
);
1438 if (name
[0] != '\0')
1443 if (strncmp (name
, "loc", 3) == 0)
1445 result
->name
= "%LOC";
1449 if (strncmp (name
, "ref", 3) == 0)
1451 result
->name
= "%REF";
1455 if (strncmp (name
, "val", 3) == 0)
1457 result
->name
= "%VAL";
1466 if (gfc_notify_std (GFC_STD_GNU
, "Extension: argument list "
1467 "function at %C") == FAILURE
)
1473 m
= match_actual_arg (&result
->expr
);
1477 if (gfc_match_char (')') != MATCH_YES
)
1486 gfc_current_locus
= old_locus
;
1491 /* Matches an actual argument list of a function or subroutine, from
1492 the opening parenthesis to the closing parenthesis. The argument
1493 list is assumed to allow keyword arguments because we don't know if
1494 the symbol associated with the procedure has an implicit interface
1495 or not. We make sure keywords are unique. If sub_flag is set,
1496 we're matching the argument list of a subroutine. */
1499 gfc_match_actual_arglist (int sub_flag
, gfc_actual_arglist
**argp
)
1501 gfc_actual_arglist
*head
, *tail
;
1503 gfc_st_label
*label
;
1507 *argp
= tail
= NULL
;
1508 old_loc
= gfc_current_locus
;
1512 if (gfc_match_char ('(') == MATCH_NO
)
1513 return (sub_flag
) ? MATCH_YES
: MATCH_NO
;
1515 if (gfc_match_char (')') == MATCH_YES
)
1522 head
= tail
= gfc_get_actual_arglist ();
1525 tail
->next
= gfc_get_actual_arglist ();
1529 if (sub_flag
&& gfc_match_char ('*') == MATCH_YES
)
1531 m
= gfc_match_st_label (&label
);
1533 gfc_error ("Expected alternate return label at %C");
1537 tail
->label
= label
;
1541 /* After the first keyword argument is seen, the following
1542 arguments must also have keywords. */
1545 m
= match_keyword_arg (tail
, head
);
1547 if (m
== MATCH_ERROR
)
1551 gfc_error ("Missing keyword name in actual argument list at %C");
1558 /* Try an argument list function, like %VAL. */
1559 m
= match_arg_list_function (tail
);
1560 if (m
== MATCH_ERROR
)
1563 /* See if we have the first keyword argument. */
1566 m
= match_keyword_arg (tail
, head
);
1569 if (m
== MATCH_ERROR
)
1575 /* Try for a non-keyword argument. */
1576 m
= match_actual_arg (&tail
->expr
);
1577 if (m
== MATCH_ERROR
)
1586 if (gfc_match_char (')') == MATCH_YES
)
1588 if (gfc_match_char (',') != MATCH_YES
)
1596 gfc_error ("Syntax error in argument list at %C");
1599 gfc_free_actual_arglist (head
);
1600 gfc_current_locus
= old_loc
;
1606 /* Used by match_varspec() to extend the reference list by one
1610 extend_ref (gfc_expr
*primary
, gfc_ref
*tail
)
1612 if (primary
->ref
== NULL
)
1613 primary
->ref
= tail
= gfc_get_ref ();
1617 gfc_internal_error ("extend_ref(): Bad tail");
1618 tail
->next
= gfc_get_ref ();
1626 /* Match any additional specifications associated with the current
1627 variable like member references or substrings. If equiv_flag is
1628 set we only match stuff that is allowed inside an EQUIVALENCE
1632 match_varspec (gfc_expr
*primary
, int equiv_flag
)
1634 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
1635 gfc_ref
*substring
, *tail
;
1636 gfc_component
*component
;
1637 gfc_symbol
*sym
= primary
->symtree
->n
.sym
;
1642 if ((equiv_flag
&& gfc_peek_char () == '(') || sym
->attr
.dimension
)
1644 /* In EQUIVALENCE, we don't know yet whether we are seeing
1645 an array, character variable or array of character
1646 variables. We'll leave the decision till resolve time. */
1647 tail
= extend_ref (primary
, tail
);
1648 tail
->type
= REF_ARRAY
;
1650 m
= gfc_match_array_ref (&tail
->u
.ar
, equiv_flag
? NULL
: sym
->as
,
1655 if (equiv_flag
&& gfc_peek_char () == '(')
1657 tail
= extend_ref (primary
, tail
);
1658 tail
->type
= REF_ARRAY
;
1660 m
= gfc_match_array_ref (&tail
->u
.ar
, NULL
, equiv_flag
);
1666 primary
->ts
= sym
->ts
;
1671 if (sym
->ts
.type
!= BT_DERIVED
|| gfc_match_char ('%') != MATCH_YES
)
1672 goto check_substring
;
1674 sym
= sym
->ts
.derived
;
1678 m
= gfc_match_name (name
);
1680 gfc_error ("Expected structure component name at %C");
1684 component
= gfc_find_component (sym
, name
);
1685 if (component
== NULL
)
1688 tail
= extend_ref (primary
, tail
);
1689 tail
->type
= REF_COMPONENT
;
1691 tail
->u
.c
.component
= component
;
1692 tail
->u
.c
.sym
= sym
;
1694 primary
->ts
= component
->ts
;
1696 if (component
->as
!= NULL
)
1698 tail
= extend_ref (primary
, tail
);
1699 tail
->type
= REF_ARRAY
;
1701 m
= gfc_match_array_ref (&tail
->u
.ar
, component
->as
, equiv_flag
);
1706 if (component
->ts
.type
!= BT_DERIVED
1707 || gfc_match_char ('%') != MATCH_YES
)
1710 sym
= component
->ts
.derived
;
1714 if (primary
->ts
.type
== BT_UNKNOWN
)
1716 if (gfc_get_default_type (sym
, sym
->ns
)->type
== BT_CHARACTER
)
1718 gfc_set_default_type (sym
, 0, sym
->ns
);
1719 primary
->ts
= sym
->ts
;
1723 if (primary
->ts
.type
== BT_CHARACTER
)
1725 switch (match_substring (primary
->ts
.cl
, equiv_flag
, &substring
))
1729 primary
->ref
= substring
;
1731 tail
->next
= substring
;
1733 if (primary
->expr_type
== EXPR_CONSTANT
)
1734 primary
->expr_type
= EXPR_SUBSTRING
;
1737 primary
->ts
.cl
= NULL
;
1753 /* Given an expression that is a variable, figure out what the
1754 ultimate variable's type and attribute is, traversing the reference
1755 structures if necessary.
1757 This subroutine is trickier than it looks. We start at the base
1758 symbol and store the attribute. Component references load a
1759 completely new attribute.
1761 A couple of rules come into play. Subobjects of targets are always
1762 targets themselves. If we see a component that goes through a
1763 pointer, then the expression must also be a target, since the
1764 pointer is associated with something (if it isn't core will soon be
1765 dumped). If we see a full part or section of an array, the
1766 expression is also an array.
1768 We can have at most one full array reference. */
1771 gfc_variable_attr (gfc_expr
*expr
, gfc_typespec
*ts
)
1773 int dimension
, pointer
, allocatable
, target
;
1774 symbol_attribute attr
;
1777 if (expr
->expr_type
!= EXPR_VARIABLE
)
1778 gfc_internal_error ("gfc_variable_attr(): Expression isn't a variable");
1781 attr
= expr
->symtree
->n
.sym
->attr
;
1783 dimension
= attr
.dimension
;
1784 pointer
= attr
.pointer
;
1785 allocatable
= attr
.allocatable
;
1787 target
= attr
.target
;
1791 if (ts
!= NULL
&& expr
->ts
.type
== BT_UNKNOWN
)
1792 *ts
= expr
->symtree
->n
.sym
->ts
;
1794 for (; ref
; ref
= ref
->next
)
1799 switch (ref
->u
.ar
.type
)
1806 allocatable
= pointer
= 0;
1811 allocatable
= pointer
= 0;
1815 gfc_internal_error ("gfc_variable_attr(): Bad array reference");
1821 gfc_get_component_attr (&attr
, ref
->u
.c
.component
);
1824 *ts
= ref
->u
.c
.component
->ts
;
1825 /* Don't set the string length if a substring reference
1827 if (ts
->type
== BT_CHARACTER
1828 && ref
->next
&& ref
->next
->type
== REF_SUBSTRING
)
1832 pointer
= ref
->u
.c
.component
->pointer
;
1833 allocatable
= ref
->u
.c
.component
->allocatable
;
1840 allocatable
= pointer
= 0;
1844 attr
.dimension
= dimension
;
1845 attr
.pointer
= pointer
;
1846 attr
.allocatable
= allocatable
;
1847 attr
.target
= target
;
1853 /* Return the attribute from a general expression. */
1856 gfc_expr_attr (gfc_expr
*e
)
1858 symbol_attribute attr
;
1860 switch (e
->expr_type
)
1863 attr
= gfc_variable_attr (e
, NULL
);
1867 gfc_clear_attr (&attr
);
1869 if (e
->value
.function
.esym
!= NULL
)
1870 attr
= e
->value
.function
.esym
->result
->attr
;
1872 /* TODO: NULL() returns pointers. May have to take care of this
1878 gfc_clear_attr (&attr
);
1886 /* Match a structure constructor. The initial symbol has already been
1890 gfc_match_structure_constructor (gfc_symbol
*sym
, gfc_expr
**result
)
1892 gfc_constructor
*head
, *tail
;
1893 gfc_component
*comp
;
1897 bool private_comp
= false;
1901 if (gfc_match_char ('(') != MATCH_YES
)
1904 where
= gfc_current_locus
;
1906 gfc_find_component (sym
, NULL
);
1908 for (comp
= sym
->components
; comp
; comp
= comp
->next
)
1910 if (comp
->access
== ACCESS_PRIVATE
)
1912 private_comp
= true;
1916 tail
= head
= gfc_get_constructor ();
1919 tail
->next
= gfc_get_constructor ();
1923 m
= gfc_match_expr (&tail
->expr
);
1926 if (m
== MATCH_ERROR
)
1929 if (gfc_match_char (',') == MATCH_YES
)
1931 if (comp
->next
== NULL
)
1933 gfc_error ("Too many components in structure constructor at %C");
1943 if (sym
->attr
.use_assoc
1944 && (sym
->component_access
== ACCESS_PRIVATE
|| private_comp
))
1946 gfc_error ("Structure constructor for '%s' at %C has PRIVATE "
1947 "components", sym
->name
);
1951 if (gfc_match_char (')') != MATCH_YES
)
1954 if (comp
->next
!= NULL
)
1956 gfc_error ("Too few components in structure constructor at %C");
1960 e
= gfc_get_expr ();
1962 e
->expr_type
= EXPR_STRUCTURE
;
1964 e
->ts
.type
= BT_DERIVED
;
1965 e
->ts
.derived
= sym
;
1968 e
->value
.constructor
= head
;
1974 gfc_error ("Syntax error in structure constructor at %C");
1977 gfc_free_constructor (head
);
1982 /* If the symbol is an implicit do loop index and implicitly typed,
1983 it should not be host associated. Provide a symtree from the
1984 current namespace. */
1986 check_for_implicit_index (gfc_symtree
**st
, gfc_symbol
**sym
)
1988 if ((*sym
)->attr
.flavor
== FL_VARIABLE
1989 && (*sym
)->ns
!= gfc_current_ns
1990 && (*sym
)->attr
.implied_index
1991 && (*sym
)->attr
.implicit_type
1992 && !(*sym
)->attr
.use_assoc
)
1995 i
= gfc_get_sym_tree ((*sym
)->name
, NULL
, st
);
1998 *sym
= (*st
)->n
.sym
;
2004 /* Matches a variable name followed by anything that might follow it--
2005 array reference, argument list of a function, etc. */
2008 gfc_match_rvalue (gfc_expr
**result
)
2010 gfc_actual_arglist
*actual_arglist
;
2011 char name
[GFC_MAX_SYMBOL_LEN
+ 1], argname
[GFC_MAX_SYMBOL_LEN
+ 1];
2014 gfc_symtree
*symtree
;
2015 locus where
, old_loc
;
2022 m
= gfc_match_name (name
);
2026 if (gfc_find_state (COMP_INTERFACE
) == SUCCESS
2027 && !gfc_current_ns
->has_import_set
)
2028 i
= gfc_get_sym_tree (name
, NULL
, &symtree
);
2030 i
= gfc_get_ha_sym_tree (name
, &symtree
);
2035 sym
= symtree
->n
.sym
;
2037 where
= gfc_current_locus
;
2039 /* If this is an implicit do loop index and implicitly typed,
2040 it should not be host associated. */
2041 m
= check_for_implicit_index (&symtree
, &sym
);
2045 gfc_set_sym_referenced (sym
);
2046 sym
->attr
.implied_index
= 0;
2048 if (sym
->attr
.function
&& sym
->result
== sym
)
2050 /* See if this is a directly recursive function call. */
2051 gfc_gobble_whitespace ();
2052 if (sym
->attr
.recursive
2053 && gfc_peek_char () == '('
2054 && gfc_current_ns
->proc_name
== sym
2055 && !sym
->attr
.dimension
)
2057 gfc_error ("'%s' at %C is the name of a recursive function "
2058 "and so refers to the result variable. Use an "
2059 "explicit RESULT variable for direct recursion "
2060 "(12.5.2.1)", sym
->name
);
2064 if (gfc_current_ns
->proc_name
== sym
2065 || (gfc_current_ns
->parent
!= NULL
2066 && gfc_current_ns
->parent
->proc_name
== sym
))
2070 && (sym
->ns
== gfc_current_ns
2071 || sym
->ns
== gfc_current_ns
->parent
))
2073 gfc_entry_list
*el
= NULL
;
2075 for (el
= sym
->ns
->entries
; el
; el
= el
->next
)
2081 if (sym
->attr
.function
|| sym
->attr
.external
|| sym
->attr
.intrinsic
)
2084 if (sym
->attr
.generic
)
2085 goto generic_function
;
2087 switch (sym
->attr
.flavor
)
2091 if (sym
->ts
.type
== BT_UNKNOWN
&& gfc_peek_char () == '%'
2092 && gfc_get_default_type (sym
, sym
->ns
)->type
== BT_DERIVED
)
2093 gfc_set_default_type (sym
, 0, sym
->ns
);
2095 e
= gfc_get_expr ();
2097 e
->expr_type
= EXPR_VARIABLE
;
2098 e
->symtree
= symtree
;
2100 m
= match_varspec (e
, 0);
2104 /* A statement of the form "REAL, parameter :: a(0:10) = 1" will
2105 end up here. Unfortunately, sym->value->expr_type is set to
2106 EXPR_CONSTANT, and so the if () branch would be followed without
2107 the !sym->as check. */
2108 if (sym
->value
&& sym
->value
->expr_type
!= EXPR_ARRAY
&& !sym
->as
)
2109 e
= gfc_copy_expr (sym
->value
);
2112 e
= gfc_get_expr ();
2113 e
->expr_type
= EXPR_VARIABLE
;
2116 e
->symtree
= symtree
;
2117 m
= match_varspec (e
, 0);
2121 sym
= gfc_use_derived (sym
);
2125 m
= gfc_match_structure_constructor (sym
, &e
);
2128 /* If we're here, then the name is known to be the name of a
2129 procedure, yet it is not sure to be the name of a function. */
2131 if (sym
->attr
.subroutine
)
2133 gfc_error ("Unexpected use of subroutine name '%s' at %C",
2139 /* At this point, the name has to be a non-statement function.
2140 If the name is the same as the current function being
2141 compiled, then we have a variable reference (to the function
2142 result) if the name is non-recursive. */
2144 st
= gfc_enclosing_unit (NULL
);
2146 if (st
!= NULL
&& st
->state
== COMP_FUNCTION
2148 && !sym
->attr
.recursive
)
2150 e
= gfc_get_expr ();
2151 e
->symtree
= symtree
;
2152 e
->expr_type
= EXPR_VARIABLE
;
2154 m
= match_varspec (e
, 0);
2158 /* Match a function reference. */
2160 m
= gfc_match_actual_arglist (0, &actual_arglist
);
2163 if (sym
->attr
.proc
== PROC_ST_FUNCTION
)
2164 gfc_error ("Statement function '%s' requires argument list at %C",
2167 gfc_error ("Function '%s' requires an argument list at %C",
2180 gfc_get_ha_sym_tree (name
, &symtree
); /* Can't fail */
2181 sym
= symtree
->n
.sym
;
2183 e
= gfc_get_expr ();
2184 e
->symtree
= symtree
;
2185 e
->expr_type
= EXPR_FUNCTION
;
2186 e
->value
.function
.actual
= actual_arglist
;
2187 e
->where
= gfc_current_locus
;
2189 if (sym
->as
!= NULL
)
2190 e
->rank
= sym
->as
->rank
;
2192 if (!sym
->attr
.function
2193 && gfc_add_function (&sym
->attr
, sym
->name
, NULL
) == FAILURE
)
2199 /* Check here for the existence of at least one argument for the
2200 iso_c_binding functions C_LOC, C_FUNLOC, and C_ASSOCIATED. The
2201 argument(s) given will be checked in gfc_iso_c_func_interface,
2202 during resolution of the function call. */
2203 if (sym
->attr
.is_iso_c
== 1
2204 && (sym
->from_intmod
== INTMOD_ISO_C_BINDING
2205 && (sym
->intmod_sym_id
== ISOCBINDING_LOC
2206 || sym
->intmod_sym_id
== ISOCBINDING_FUNLOC
2207 || sym
->intmod_sym_id
== ISOCBINDING_ASSOCIATED
)))
2209 /* make sure we were given a param */
2210 if (actual_arglist
== NULL
)
2212 gfc_error ("Missing argument to '%s' at %C", sym
->name
);
2218 if (sym
->result
== NULL
)
2226 /* Special case for derived type variables that get their types
2227 via an IMPLICIT statement. This can't wait for the
2228 resolution phase. */
2230 if (gfc_peek_char () == '%'
2231 && sym
->ts
.type
== BT_UNKNOWN
2232 && gfc_get_default_type (sym
, sym
->ns
)->type
== BT_DERIVED
)
2233 gfc_set_default_type (sym
, 0, sym
->ns
);
2235 /* If the symbol has a dimension attribute, the expression is a
2238 if (sym
->attr
.dimension
)
2240 if (gfc_add_flavor (&sym
->attr
, FL_VARIABLE
,
2241 sym
->name
, NULL
) == FAILURE
)
2247 e
= gfc_get_expr ();
2248 e
->symtree
= symtree
;
2249 e
->expr_type
= EXPR_VARIABLE
;
2250 m
= match_varspec (e
, 0);
2254 /* Name is not an array, so we peek to see if a '(' implies a
2255 function call or a substring reference. Otherwise the
2256 variable is just a scalar. */
2258 gfc_gobble_whitespace ();
2259 if (gfc_peek_char () != '(')
2261 /* Assume a scalar variable */
2262 e
= gfc_get_expr ();
2263 e
->symtree
= symtree
;
2264 e
->expr_type
= EXPR_VARIABLE
;
2266 if (gfc_add_flavor (&sym
->attr
, FL_VARIABLE
,
2267 sym
->name
, NULL
) == FAILURE
)
2273 /*FIXME:??? match_varspec does set this for us: */
2275 m
= match_varspec (e
, 0);
2279 /* See if this is a function reference with a keyword argument
2280 as first argument. We do this because otherwise a spurious
2281 symbol would end up in the symbol table. */
2283 old_loc
= gfc_current_locus
;
2284 m2
= gfc_match (" ( %n =", argname
);
2285 gfc_current_locus
= old_loc
;
2287 e
= gfc_get_expr ();
2288 e
->symtree
= symtree
;
2290 if (m2
!= MATCH_YES
)
2292 /* Try to figure out whether we're dealing with a character type.
2293 We're peeking ahead here, because we don't want to call
2294 match_substring if we're dealing with an implicitly typed
2295 non-character variable. */
2296 implicit_char
= false;
2297 if (sym
->ts
.type
== BT_UNKNOWN
)
2299 ts
= gfc_get_default_type (sym
,NULL
);
2300 if (ts
->type
== BT_CHARACTER
)
2301 implicit_char
= true;
2304 /* See if this could possibly be a substring reference of a name
2305 that we're not sure is a variable yet. */
2307 if ((implicit_char
|| sym
->ts
.type
== BT_CHARACTER
)
2308 && match_substring (sym
->ts
.cl
, 0, &e
->ref
) == MATCH_YES
)
2311 e
->expr_type
= EXPR_VARIABLE
;
2313 if (sym
->attr
.flavor
!= FL_VARIABLE
2314 && gfc_add_flavor (&sym
->attr
, FL_VARIABLE
,
2315 sym
->name
, NULL
) == FAILURE
)
2321 if (sym
->ts
.type
== BT_UNKNOWN
2322 && gfc_set_default_type (sym
, 1, NULL
) == FAILURE
)
2336 /* Give up, assume we have a function. */
2338 gfc_get_sym_tree (name
, NULL
, &symtree
); /* Can't fail */
2339 sym
= symtree
->n
.sym
;
2340 e
->expr_type
= EXPR_FUNCTION
;
2342 if (!sym
->attr
.function
2343 && gfc_add_function (&sym
->attr
, sym
->name
, NULL
) == FAILURE
)
2351 m
= gfc_match_actual_arglist (0, &e
->value
.function
.actual
);
2353 gfc_error ("Missing argument list in function '%s' at %C", sym
->name
);
2361 /* If our new function returns a character, array or structure
2362 type, it might have subsequent references. */
2364 m
= match_varspec (e
, 0);
2371 gfc_get_sym_tree (name
, NULL
, &symtree
); /* Can't fail */
2373 e
= gfc_get_expr ();
2374 e
->symtree
= symtree
;
2375 e
->expr_type
= EXPR_FUNCTION
;
2377 m
= gfc_match_actual_arglist (0, &e
->value
.function
.actual
);
2381 gfc_error ("Symbol at %C is not appropriate for an expression");
2397 /* Match a variable, ie something that can be assigned to. This
2398 starts as a symbol, can be a structure component or an array
2399 reference. It can be a function if the function doesn't have a
2400 separate RESULT variable. If the symbol has not been previously
2401 seen, we assume it is a variable.
2403 This function is called by two interface functions:
2404 gfc_match_variable, which has host_flag = 1, and
2405 gfc_match_equiv_variable, with host_flag = 0, to restrict the
2406 match of the symbol to the local scope. */
2409 match_variable (gfc_expr
**result
, int equiv_flag
, int host_flag
)
2417 /* Since nothing has any business being an lvalue in a module
2418 specification block, an interface block or a contains section,
2419 we force the changed_symbols mechanism to work by setting
2420 host_flag to 0. This prevents valid symbols that have the name
2421 of keywords, such as 'end', being turned into variables by
2422 failed matching to assignments for, eg., END INTERFACE. */
2423 if (gfc_current_state () == COMP_MODULE
2424 || gfc_current_state () == COMP_INTERFACE
2425 || gfc_current_state () == COMP_CONTAINS
)
2428 m
= gfc_match_sym_tree (&st
, host_flag
);
2431 where
= gfc_current_locus
;
2435 /* If this is an implicit do loop index and implicitly typed,
2436 it should not be host associated. */
2437 m
= check_for_implicit_index (&st
, &sym
);
2441 sym
->attr
.implied_index
= 0;
2443 gfc_set_sym_referenced (sym
);
2444 switch (sym
->attr
.flavor
)
2447 if (sym
->attr
.protected && sym
->attr
.use_assoc
)
2449 gfc_error ("Assigning to PROTECTED variable at %C");
2455 if (gfc_add_flavor (&sym
->attr
, FL_VARIABLE
,
2456 sym
->name
, NULL
) == FAILURE
)
2462 gfc_error ("Named constant at %C in an EQUIVALENCE");
2464 gfc_error ("Cannot assign to a named constant at %C");
2469 /* Check for a nonrecursive function result */
2470 if (sym
->attr
.function
&& (sym
->result
== sym
|| sym
->attr
.entry
)
2471 && !sym
->attr
.external
)
2473 /* If a function result is a derived type, then the derived
2474 type may still have to be resolved. */
2476 if (sym
->ts
.type
== BT_DERIVED
2477 && gfc_use_derived (sym
->ts
.derived
) == NULL
)
2482 /* Fall through to error */
2485 gfc_error ("Expected VARIABLE at %C");
2489 /* Special case for derived type variables that get their types
2490 via an IMPLICIT statement. This can't wait for the
2491 resolution phase. */
2494 gfc_namespace
* implicit_ns
;
2496 if (gfc_current_ns
->proc_name
== sym
)
2497 implicit_ns
= gfc_current_ns
;
2499 implicit_ns
= sym
->ns
;
2501 if (gfc_peek_char () == '%'
2502 && sym
->ts
.type
== BT_UNKNOWN
2503 && gfc_get_default_type (sym
, implicit_ns
)->type
== BT_DERIVED
)
2504 gfc_set_default_type (sym
, 0, implicit_ns
);
2507 expr
= gfc_get_expr ();
2509 expr
->expr_type
= EXPR_VARIABLE
;
2512 expr
->where
= where
;
2514 /* Now see if we have to do more. */
2515 m
= match_varspec (expr
, equiv_flag
);
2518 gfc_free_expr (expr
);
2528 gfc_match_variable (gfc_expr
**result
, int equiv_flag
)
2530 return match_variable (result
, equiv_flag
, 1);
2535 gfc_match_equiv_variable (gfc_expr
**result
)
2537 return match_variable (result
, 1, 0);