1 /* Primary expression subroutines
2 Copyright (C) 2000-2016 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
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
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/>. */
23 #include "coretypes.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'. */
40 match_kind_param (int *kind
, int *is_iso_c
)
42 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
49 m
= gfc_match_small_literal_int (kind
, NULL
);
53 m
= gfc_match_name (name
);
57 if (gfc_find_symbol (name
, NULL
, 1, &sym
))
63 *is_iso_c
= sym
->attr
.is_iso_c
;
65 if (sym
->attr
.flavor
!= FL_PARAMETER
)
68 if (sym
->value
== NULL
)
71 p
= gfc_extract_int (sym
->value
, kind
);
75 gfc_set_sym_referenced (sym
);
84 /* Get a trailing kind-specification for non-character variables.
86 * the integer kind value or
87 * -1 if an error was generated,
88 * -2 if no kind was found.
89 The argument 'is_iso_c' signals whether the kind is an ISO_C_BINDING
90 symbol like e.g. 'c_int'. */
93 get_kind (int *is_iso_c
)
100 if (gfc_match_char ('_') != MATCH_YES
)
103 m
= match_kind_param (&kind
, is_iso_c
);
105 gfc_error ("Missing kind-parameter at %C");
107 return (m
== MATCH_YES
) ? kind
: -1;
111 /* Given a character and a radix, see if the character is a valid
112 digit in that radix. */
115 gfc_check_digit (char c
, int radix
)
122 r
= ('0' <= c
&& c
<= '1');
126 r
= ('0' <= c
&& c
<= '7');
130 r
= ('0' <= c
&& c
<= '9');
138 gfc_internal_error ("gfc_check_digit(): bad radix");
145 /* Match the digit string part of an integer if signflag is not set,
146 the signed digit string part if signflag is set. If the buffer
147 is NULL, we just count characters for the resolution pass. Returns
148 the number of characters matched, -1 for no match. */
151 match_digits (int signflag
, int radix
, char *buffer
)
158 c
= gfc_next_ascii_char ();
160 if (signflag
&& (c
== '+' || c
== '-'))
164 gfc_gobble_whitespace ();
165 c
= gfc_next_ascii_char ();
169 if (!gfc_check_digit (c
, radix
))
178 old_loc
= gfc_current_locus
;
179 c
= gfc_next_ascii_char ();
181 if (!gfc_check_digit (c
, radix
))
189 gfc_current_locus
= old_loc
;
195 /* Match an integer (digit string and optional kind).
196 A sign will be accepted if signflag is set. */
199 match_integer_constant (gfc_expr
**result
, int signflag
)
201 int length
, kind
, is_iso_c
;
206 old_loc
= gfc_current_locus
;
207 gfc_gobble_whitespace ();
209 length
= match_digits (signflag
, 10, NULL
);
210 gfc_current_locus
= old_loc
;
214 buffer
= (char *) alloca (length
+ 1);
215 memset (buffer
, '\0', length
+ 1);
217 gfc_gobble_whitespace ();
219 match_digits (signflag
, 10, buffer
);
221 kind
= get_kind (&is_iso_c
);
223 kind
= gfc_default_integer_kind
;
227 if (kind
== 4 && flag_integer4_kind
== 8)
230 if (gfc_validate_kind (BT_INTEGER
, kind
, true) < 0)
232 gfc_error ("Integer kind %d at %C not available", kind
);
236 e
= gfc_convert_integer (buffer
, kind
, 10, &gfc_current_locus
);
237 e
->ts
.is_c_interop
= is_iso_c
;
239 if (gfc_range_check (e
) != ARITH_OK
)
241 gfc_error ("Integer too big for its kind at %C. This check can be "
242 "disabled with the option -fno-range-check");
253 /* Match a Hollerith constant. */
256 match_hollerith_constant (gfc_expr
**result
)
264 old_loc
= gfc_current_locus
;
265 gfc_gobble_whitespace ();
267 if (match_integer_constant (&e
, 0) == MATCH_YES
268 && gfc_match_char ('h') == MATCH_YES
)
270 if (!gfc_notify_std (GFC_STD_LEGACY
, "Hollerith constant at %C"))
273 msg
= gfc_extract_int (e
, &num
);
281 gfc_error ("Invalid Hollerith constant: %L must contain at least "
282 "one character", &old_loc
);
285 if (e
->ts
.kind
!= gfc_default_integer_kind
)
287 gfc_error ("Invalid Hollerith constant: Integer kind at %L "
288 "should be default", &old_loc
);
294 e
= gfc_get_constant_expr (BT_HOLLERITH
, gfc_default_character_kind
,
297 /* Calculate padding needed to fit default integer memory. */
298 pad
= gfc_default_integer_kind
- (num
% gfc_default_integer_kind
);
300 e
->representation
.string
= XCNEWVEC (char, num
+ pad
+ 1);
302 for (i
= 0; i
< num
; i
++)
304 gfc_char_t c
= gfc_next_char_literal (INSTRING_WARN
);
305 if (! gfc_wide_fits_in_byte (c
))
307 gfc_error ("Invalid Hollerith constant at %L contains a "
308 "wide character", &old_loc
);
312 e
->representation
.string
[i
] = (unsigned char) c
;
315 /* Now pad with blanks and end with a null char. */
316 for (i
= 0; i
< pad
; i
++)
317 e
->representation
.string
[num
+ i
] = ' ';
319 e
->representation
.string
[num
+ i
] = '\0';
320 e
->representation
.length
= num
+ pad
;
329 gfc_current_locus
= old_loc
;
338 /* Match a binary, octal or hexadecimal constant that can be found in
339 a DATA statement. The standard permits b'010...', o'73...', and
340 z'a1...' where b, o, and z can be capital letters. This function
341 also accepts postfixed forms of the constants: '01...'b, '73...'o,
342 and 'a1...'z. An additional extension is the use of x for z. */
345 match_boz_constant (gfc_expr
**result
)
347 int radix
, length
, x_hex
, kind
;
348 locus old_loc
, start_loc
;
349 char *buffer
, post
, delim
;
352 start_loc
= old_loc
= gfc_current_locus
;
353 gfc_gobble_whitespace ();
356 switch (post
= gfc_next_ascii_char ())
378 radix
= 16; /* Set to accept any valid digit string. */
384 /* No whitespace allowed here. */
387 delim
= gfc_next_ascii_char ();
389 if (delim
!= '\'' && delim
!= '\"')
393 && (!gfc_notify_std(GFC_STD_GNU
, "Hexadecimal "
394 "constant at %C uses non-standard syntax")))
397 old_loc
= gfc_current_locus
;
399 length
= match_digits (0, radix
, NULL
);
402 gfc_error ("Empty set of digits in BOZ constant at %C");
406 if (gfc_next_ascii_char () != delim
)
408 gfc_error ("Illegal character in BOZ constant at %C");
414 switch (gfc_next_ascii_char ())
431 if (!gfc_notify_std (GFC_STD_GNU
, "BOZ constant "
432 "at %C uses non-standard postfix syntax"))
436 gfc_current_locus
= old_loc
;
438 buffer
= (char *) alloca (length
+ 1);
439 memset (buffer
, '\0', length
+ 1);
441 match_digits (0, radix
, buffer
);
442 gfc_next_ascii_char (); /* Eat delimiter. */
444 gfc_next_ascii_char (); /* Eat postfixed b, o, z, or x. */
446 /* In section 5.2.5 and following C567 in the Fortran 2003 standard, we find
447 "If a data-stmt-constant is a boz-literal-constant, the corresponding
448 variable shall be of type integer. The boz-literal-constant is treated
449 as if it were an int-literal-constant with a kind-param that specifies
450 the representation method with the largest decimal exponent range
451 supported by the processor." */
453 kind
= gfc_max_integer_kind
;
454 e
= gfc_convert_integer (buffer
, kind
, radix
, &gfc_current_locus
);
456 /* Mark as boz variable. */
459 if (gfc_range_check (e
) != ARITH_OK
)
461 gfc_error ("Integer too big for integer kind %i at %C", kind
);
466 if (!gfc_in_match_data ()
467 && (!gfc_notify_std(GFC_STD_F2003
, "BOZ used outside a DATA "
475 gfc_current_locus
= start_loc
;
480 /* Match a real constant of some sort. Allow a signed constant if signflag
484 match_real_constant (gfc_expr
**result
, int signflag
)
486 int kind
, count
, seen_dp
, seen_digits
, is_iso_c
;
487 locus old_loc
, temp_loc
;
488 char *p
, *buffer
, c
, exp_char
;
492 old_loc
= gfc_current_locus
;
493 gfc_gobble_whitespace ();
503 c
= gfc_next_ascii_char ();
504 if (signflag
&& (c
== '+' || c
== '-'))
509 gfc_gobble_whitespace ();
510 c
= gfc_next_ascii_char ();
513 /* Scan significand. */
514 for (;; c
= gfc_next_ascii_char (), count
++)
521 /* Check to see if "." goes with a following operator like
523 temp_loc
= gfc_current_locus
;
524 c
= gfc_next_ascii_char ();
526 if (c
== 'e' || c
== 'd' || c
== 'q')
528 c
= gfc_next_ascii_char ();
530 goto done
; /* Operator named .e. or .d. */
534 goto done
; /* Distinguish 1.e9 from 1.eq.2 */
536 gfc_current_locus
= temp_loc
;
550 if (!seen_digits
|| (c
!= 'e' && c
!= 'd' && c
!= 'q'))
557 if (!gfc_notify_std (GFC_STD_GNU
, "exponent-letter 'q' in "
558 "real-literal-constant at %C"))
560 else if (warn_real_q_constant
)
561 gfc_warning (OPT_Wreal_q_constant
,
562 "Extension: exponent-letter %<q%> in real-literal-constant "
567 c
= gfc_next_ascii_char ();
570 if (c
== '+' || c
== '-')
571 { /* optional sign */
572 c
= gfc_next_ascii_char ();
578 gfc_error ("Missing exponent in real number at %C");
584 c
= gfc_next_ascii_char ();
589 /* Check that we have a numeric constant. */
590 if (!seen_digits
|| (!seen_dp
&& exp_char
== ' '))
592 gfc_current_locus
= old_loc
;
596 /* Convert the number. */
597 gfc_current_locus
= old_loc
;
598 gfc_gobble_whitespace ();
600 buffer
= (char *) alloca (count
+ 1);
601 memset (buffer
, '\0', count
+ 1);
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(). */
614 if (c
== 'd' || c
== 'q')
622 c
= gfc_next_ascii_char ();
625 kind
= get_kind (&is_iso_c
);
634 gfc_error ("Real number at %C has a %<d%> exponent and an explicit "
638 kind
= gfc_default_double_kind
;
642 if (flag_real4_kind
== 8)
644 if (flag_real4_kind
== 10)
646 if (flag_real4_kind
== 16)
652 if (flag_real8_kind
== 4)
654 if (flag_real8_kind
== 10)
656 if (flag_real8_kind
== 16)
664 gfc_error ("Real number at %C has a %<q%> exponent and an explicit "
669 /* The maximum possible real kind type parameter is 16. First, try
670 that for the kind, then fallback to trying kind=10 (Intel 80 bit)
671 extended precision. If neither value works, just given up. */
673 if (gfc_validate_kind (BT_REAL
, kind
, true) < 0)
676 if (gfc_validate_kind (BT_REAL
, kind
, true) < 0)
678 gfc_error ("Invalid exponent-letter %<q%> in "
679 "real-literal-constant at %C");
687 kind
= gfc_default_real_kind
;
691 if (flag_real4_kind
== 8)
693 if (flag_real4_kind
== 10)
695 if (flag_real4_kind
== 16)
701 if (flag_real8_kind
== 4)
703 if (flag_real8_kind
== 10)
705 if (flag_real8_kind
== 16)
709 if (gfc_validate_kind (BT_REAL
, kind
, true) < 0)
711 gfc_error ("Invalid real kind %d at %C", kind
);
716 e
= gfc_convert_real (buffer
, kind
, &gfc_current_locus
);
718 mpfr_neg (e
->value
.real
, e
->value
.real
, GFC_RND_MODE
);
719 e
->ts
.is_c_interop
= is_iso_c
;
721 switch (gfc_range_check (e
))
726 gfc_error ("Real constant overflows its kind at %C");
729 case ARITH_UNDERFLOW
:
731 gfc_warning (OPT_Wunderflow
, "Real constant underflows its kind at %C");
732 mpfr_set_ui (e
->value
.real
, 0, GFC_RND_MODE
);
736 gfc_internal_error ("gfc_range_check() returned bad value");
739 /* Warn about trailing digits which suggest the user added too many
740 trailing digits, which may cause the appearance of higher pecision
741 than the kind kan support.
743 This is done by replacing the rightmost non-zero digit with zero
744 and comparing with the original value. If these are equal, we
745 assume the user supplied more digits than intended (or forgot to
746 convert to the correct kind).
749 if (warn_conversion_extra
)
755 c
= strchr (buffer
, 'e');
757 c
= buffer
+ strlen(buffer
);
760 for (p
= c
- 1; p
>= buffer
; p
--)
776 mpfr_set_str (r
, buffer
, 10, GFC_RND_MODE
);
778 mpfr_neg (r
, r
, GFC_RND_MODE
);
780 mpfr_sub (r
, r
, e
->value
.real
, GFC_RND_MODE
);
782 if (mpfr_cmp_ui (r
, 0) == 0)
783 gfc_warning (OPT_Wconversion_extra
, "Non-significant digits "
784 "in %qs number at %C, maybe incorrect KIND",
785 gfc_typename (&e
->ts
));
800 /* Match a substring reference. */
803 match_substring (gfc_charlen
*cl
, int init
, gfc_ref
**result
, bool deferred
)
805 gfc_expr
*start
, *end
;
813 old_loc
= gfc_current_locus
;
815 m
= gfc_match_char ('(');
819 if (gfc_match_char (':') != MATCH_YES
)
822 m
= gfc_match_init_expr (&start
);
824 m
= gfc_match_expr (&start
);
832 m
= gfc_match_char (':');
837 if (gfc_match_char (')') != MATCH_YES
)
840 m
= gfc_match_init_expr (&end
);
842 m
= gfc_match_expr (&end
);
846 if (m
== MATCH_ERROR
)
849 m
= gfc_match_char (')');
854 /* Optimize away the (:) reference. */
855 if (start
== NULL
&& end
== NULL
&& !deferred
)
859 ref
= gfc_get_ref ();
861 ref
->type
= REF_SUBSTRING
;
863 start
= gfc_get_int_expr (gfc_default_integer_kind
, NULL
, 1);
864 ref
->u
.ss
.start
= start
;
865 if (end
== NULL
&& cl
)
866 end
= gfc_copy_expr (cl
->length
);
868 ref
->u
.ss
.length
= cl
;
875 gfc_error ("Syntax error in SUBSTRING specification at %C");
879 gfc_free_expr (start
);
882 gfc_current_locus
= old_loc
;
887 /* Reads the next character of a string constant, taking care to
888 return doubled delimiters on the input as a single instance of
891 Special return values for "ret" argument are:
892 -1 End of the string, as determined by the delimiter
893 -2 Unterminated string detected
895 Backslash codes are also expanded at this time. */
898 next_string_char (gfc_char_t delimiter
, int *ret
)
903 c
= gfc_next_char_literal (INSTRING_WARN
);
912 if (flag_backslash
&& c
== '\\')
914 old_locus
= gfc_current_locus
;
916 if (gfc_match_special_char (&c
) == MATCH_NO
)
917 gfc_current_locus
= old_locus
;
919 if (!(gfc_option
.allow_std
& GFC_STD_GNU
) && !inhibit_warnings
)
920 gfc_warning (0, "Extension: backslash character at %C");
926 old_locus
= gfc_current_locus
;
927 c
= gfc_next_char_literal (NONSTRING
);
931 gfc_current_locus
= old_locus
;
938 /* Special case of gfc_match_name() that matches a parameter kind name
939 before a string constant. This takes case of the weird but legal
944 where kind____ is a parameter. gfc_match_name() will happily slurp
945 up all the underscores, which leads to problems. If we return
946 MATCH_YES, the parse pointer points to the final underscore, which
947 is not part of the name. We never return MATCH_ERROR-- errors in
948 the name will be detected later. */
951 match_charkind_name (char *name
)
957 gfc_gobble_whitespace ();
958 c
= gfc_next_ascii_char ();
967 old_loc
= gfc_current_locus
;
968 c
= gfc_next_ascii_char ();
972 peek
= gfc_peek_ascii_char ();
974 if (peek
== '\'' || peek
== '\"')
976 gfc_current_locus
= old_loc
;
984 && (c
!= '$' || !flag_dollar_ok
))
988 if (++len
> GFC_MAX_SYMBOL_LEN
)
996 /* See if the current input matches a character constant. Lots of
997 contortions have to be done to match the kind parameter which comes
998 before the actual string. The main consideration is that we don't
999 want to error out too quickly. For example, we don't actually do
1000 any validation of the kinds until we have actually seen a legal
1001 delimiter. Using match_kind_param() generates errors too quickly. */
1004 match_string_constant (gfc_expr
**result
)
1006 char name
[GFC_MAX_SYMBOL_LEN
+ 1], peek
;
1007 int i
, kind
, length
, save_warn_ampersand
, ret
;
1008 locus old_locus
, start_locus
;
1013 gfc_char_t c
, delimiter
, *p
;
1015 old_locus
= gfc_current_locus
;
1017 gfc_gobble_whitespace ();
1019 c
= gfc_next_char ();
1020 if (c
== '\'' || c
== '"')
1022 kind
= gfc_default_character_kind
;
1023 start_locus
= gfc_current_locus
;
1027 if (gfc_wide_is_digit (c
))
1031 while (gfc_wide_is_digit (c
))
1033 kind
= kind
* 10 + c
- '0';
1036 c
= gfc_next_char ();
1042 gfc_current_locus
= old_locus
;
1044 m
= match_charkind_name (name
);
1048 if (gfc_find_symbol (name
, NULL
, 1, &sym
)
1050 || sym
->attr
.flavor
!= FL_PARAMETER
)
1054 c
= gfc_next_char ();
1059 gfc_gobble_whitespace ();
1060 c
= gfc_next_char ();
1066 gfc_gobble_whitespace ();
1068 c
= gfc_next_char ();
1069 if (c
!= '\'' && c
!= '"')
1072 start_locus
= gfc_current_locus
;
1076 q
= gfc_extract_int (sym
->value
, &kind
);
1082 gfc_set_sym_referenced (sym
);
1085 if (gfc_validate_kind (BT_CHARACTER
, kind
, true) < 0)
1087 gfc_error ("Invalid kind %d for CHARACTER constant at %C", kind
);
1092 /* Scan the string into a block of memory by first figuring out how
1093 long it is, allocating the structure, then re-reading it. This
1094 isn't particularly efficient, but string constants aren't that
1095 common in most code. TODO: Use obstacks? */
1102 c
= next_string_char (delimiter
, &ret
);
1107 gfc_current_locus
= start_locus
;
1108 gfc_error ("Unterminated character constant beginning at %C");
1115 /* Peek at the next character to see if it is a b, o, z, or x for the
1116 postfixed BOZ literal constants. */
1117 peek
= gfc_peek_ascii_char ();
1118 if (peek
== 'b' || peek
== 'o' || peek
=='z' || peek
== 'x')
1121 e
= gfc_get_character_expr (kind
, &start_locus
, NULL
, length
);
1123 gfc_current_locus
= start_locus
;
1125 /* We disable the warning for the following loop as the warning has already
1126 been printed in the loop above. */
1127 save_warn_ampersand
= warn_ampersand
;
1128 warn_ampersand
= false;
1130 p
= e
->value
.character
.string
;
1131 for (i
= 0; i
< length
; i
++)
1133 c
= next_string_char (delimiter
, &ret
);
1135 if (!gfc_check_character_range (c
, kind
))
1138 gfc_error ("Character %qs in string at %C is not representable "
1139 "in character kind %d", gfc_print_wide_char (c
), kind
);
1146 *p
= '\0'; /* TODO: C-style string is for development/debug purposes. */
1147 warn_ampersand
= save_warn_ampersand
;
1149 next_string_char (delimiter
, &ret
);
1151 gfc_internal_error ("match_string_constant(): Delimiter not found");
1153 if (match_substring (NULL
, 0, &e
->ref
, false) != MATCH_NO
)
1154 e
->expr_type
= EXPR_SUBSTRING
;
1161 gfc_current_locus
= old_locus
;
1166 /* Match a .true. or .false. Returns 1 if a .true. was found,
1167 0 if a .false. was found, and -1 otherwise. */
1169 match_logical_constant_string (void)
1171 locus orig_loc
= gfc_current_locus
;
1173 gfc_gobble_whitespace ();
1174 if (gfc_next_ascii_char () == '.')
1176 char ch
= gfc_next_ascii_char ();
1179 if (gfc_next_ascii_char () == 'a'
1180 && gfc_next_ascii_char () == 'l'
1181 && gfc_next_ascii_char () == 's'
1182 && gfc_next_ascii_char () == 'e'
1183 && gfc_next_ascii_char () == '.')
1184 /* Matched ".false.". */
1189 if (gfc_next_ascii_char () == 'r'
1190 && gfc_next_ascii_char () == 'u'
1191 && gfc_next_ascii_char () == 'e'
1192 && gfc_next_ascii_char () == '.')
1193 /* Matched ".true.". */
1197 gfc_current_locus
= orig_loc
;
1201 /* Match a .true. or .false. */
1204 match_logical_constant (gfc_expr
**result
)
1207 int i
, kind
, is_iso_c
;
1209 i
= match_logical_constant_string ();
1213 kind
= get_kind (&is_iso_c
);
1217 kind
= gfc_default_logical_kind
;
1219 if (gfc_validate_kind (BT_LOGICAL
, kind
, true) < 0)
1221 gfc_error ("Bad kind for logical constant at %C");
1225 e
= gfc_get_logical_expr (kind
, &gfc_current_locus
, i
);
1226 e
->ts
.is_c_interop
= is_iso_c
;
1233 /* Match a real or imaginary part of a complex constant that is a
1234 symbolic constant. */
1237 match_sym_complex_part (gfc_expr
**result
)
1239 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
1244 m
= gfc_match_name (name
);
1248 if (gfc_find_symbol (name
, NULL
, 1, &sym
) || sym
== NULL
)
1251 if (sym
->attr
.flavor
!= FL_PARAMETER
)
1253 gfc_error ("Expected PARAMETER symbol in complex constant at %C");
1260 if (!gfc_numeric_ts (&sym
->value
->ts
))
1262 gfc_error ("Numeric PARAMETER required in complex constant at %C");
1266 if (sym
->value
->rank
!= 0)
1268 gfc_error ("Scalar PARAMETER required in complex constant at %C");
1272 if (!gfc_notify_std (GFC_STD_F2003
, "PARAMETER symbol in "
1273 "complex constant at %C"))
1276 switch (sym
->value
->ts
.type
)
1279 e
= gfc_copy_expr (sym
->value
);
1283 e
= gfc_complex2real (sym
->value
, sym
->value
->ts
.kind
);
1289 e
= gfc_int2real (sym
->value
, gfc_default_real_kind
);
1295 gfc_internal_error ("gfc_match_sym_complex_part(): Bad type");
1298 *result
= e
; /* e is a scalar, real, constant expression. */
1302 gfc_error ("Error converting PARAMETER constant in complex constant at %C");
1307 /* Match a real or imaginary part of a complex number. */
1310 match_complex_part (gfc_expr
**result
)
1314 m
= match_sym_complex_part (result
);
1318 m
= match_real_constant (result
, 1);
1322 return match_integer_constant (result
, 1);
1326 /* Try to match a complex constant. */
1329 match_complex_constant (gfc_expr
**result
)
1331 gfc_expr
*e
, *real
, *imag
;
1332 gfc_error_buffer old_error
;
1333 gfc_typespec target
;
1338 old_loc
= gfc_current_locus
;
1339 real
= imag
= e
= NULL
;
1341 m
= gfc_match_char ('(');
1345 gfc_push_error (&old_error
);
1347 m
= match_complex_part (&real
);
1350 gfc_free_error (&old_error
);
1354 if (gfc_match_char (',') == MATCH_NO
)
1356 gfc_pop_error (&old_error
);
1361 /* If m is error, then something was wrong with the real part and we
1362 assume we have a complex constant because we've seen the ','. An
1363 ambiguous case here is the start of an iterator list of some
1364 sort. These sort of lists are matched prior to coming here. */
1366 if (m
== MATCH_ERROR
)
1368 gfc_free_error (&old_error
);
1371 gfc_pop_error (&old_error
);
1373 m
= match_complex_part (&imag
);
1376 if (m
== MATCH_ERROR
)
1379 m
= gfc_match_char (')');
1382 /* Give the matcher for implied do-loops a chance to run. This
1383 yields a much saner error message for (/ (i, 4=i, 6) /). */
1384 if (gfc_peek_ascii_char () == '=')
1393 if (m
== MATCH_ERROR
)
1396 /* Decide on the kind of this complex number. */
1397 if (real
->ts
.type
== BT_REAL
)
1399 if (imag
->ts
.type
== BT_REAL
)
1400 kind
= gfc_kind_max (real
, imag
);
1402 kind
= real
->ts
.kind
;
1406 if (imag
->ts
.type
== BT_REAL
)
1407 kind
= imag
->ts
.kind
;
1409 kind
= gfc_default_real_kind
;
1411 gfc_clear_ts (&target
);
1412 target
.type
= BT_REAL
;
1415 if (real
->ts
.type
!= BT_REAL
|| kind
!= real
->ts
.kind
)
1416 gfc_convert_type (real
, &target
, 2);
1417 if (imag
->ts
.type
!= BT_REAL
|| kind
!= imag
->ts
.kind
)
1418 gfc_convert_type (imag
, &target
, 2);
1420 e
= gfc_convert_complex (real
, imag
, kind
);
1421 e
->where
= gfc_current_locus
;
1423 gfc_free_expr (real
);
1424 gfc_free_expr (imag
);
1430 gfc_error ("Syntax error in COMPLEX constant at %C");
1435 gfc_free_expr (real
);
1436 gfc_free_expr (imag
);
1437 gfc_current_locus
= old_loc
;
1443 /* Match constants in any of several forms. Returns nonzero for a
1444 match, zero for no match. */
1447 gfc_match_literal_constant (gfc_expr
**result
, int signflag
)
1451 m
= match_complex_constant (result
);
1455 m
= match_string_constant (result
);
1459 m
= match_boz_constant (result
);
1463 m
= match_real_constant (result
, signflag
);
1467 m
= match_hollerith_constant (result
);
1471 m
= match_integer_constant (result
, signflag
);
1475 m
= match_logical_constant (result
);
1483 /* This checks if a symbol is the return value of an encompassing function.
1484 Function nesting can be maximally two levels deep, but we may have
1485 additional local namespaces like BLOCK etc. */
1488 gfc_is_function_return_value (gfc_symbol
*sym
, gfc_namespace
*ns
)
1490 if (!sym
->attr
.function
|| (sym
->result
!= sym
))
1494 if (ns
->proc_name
== sym
)
1502 /* Match a single actual argument value. An actual argument is
1503 usually an expression, but can also be a procedure name. If the
1504 argument is a single name, it is not always possible to tell
1505 whether the name is a dummy procedure or not. We treat these cases
1506 by creating an argument that looks like a dummy procedure and
1507 fixing things later during resolution. */
1510 match_actual_arg (gfc_expr
**result
)
1512 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
1513 gfc_symtree
*symtree
;
1518 gfc_gobble_whitespace ();
1519 where
= gfc_current_locus
;
1521 switch (gfc_match_name (name
))
1530 w
= gfc_current_locus
;
1531 gfc_gobble_whitespace ();
1532 c
= gfc_next_ascii_char ();
1533 gfc_current_locus
= w
;
1535 if (c
!= ',' && c
!= ')')
1538 if (gfc_find_sym_tree (name
, NULL
, 1, &symtree
))
1540 /* Handle error elsewhere. */
1542 /* Eliminate a couple of common cases where we know we don't
1543 have a function argument. */
1544 if (symtree
== NULL
)
1546 gfc_get_sym_tree (name
, NULL
, &symtree
, false);
1547 gfc_set_sym_referenced (symtree
->n
.sym
);
1553 sym
= symtree
->n
.sym
;
1554 gfc_set_sym_referenced (sym
);
1555 if (sym
->attr
.flavor
== FL_NAMELIST
)
1557 gfc_error ("Namelist '%s' can not be an argument at %L",
1561 if (sym
->attr
.flavor
!= FL_PROCEDURE
1562 && sym
->attr
.flavor
!= FL_UNKNOWN
)
1565 if (sym
->attr
.in_common
&& !sym
->attr
.proc_pointer
)
1567 if (!gfc_add_flavor (&sym
->attr
, FL_VARIABLE
,
1568 sym
->name
, &sym
->declared_at
))
1573 /* If the symbol is a function with itself as the result and
1574 is being defined, then we have a variable. */
1575 if (sym
->attr
.function
&& sym
->result
== sym
)
1577 if (gfc_is_function_return_value (sym
, gfc_current_ns
))
1581 && (sym
->ns
== gfc_current_ns
1582 || sym
->ns
== gfc_current_ns
->parent
))
1584 gfc_entry_list
*el
= NULL
;
1586 for (el
= sym
->ns
->entries
; el
; el
= el
->next
)
1596 e
= gfc_get_expr (); /* Leave it unknown for now */
1597 e
->symtree
= symtree
;
1598 e
->expr_type
= EXPR_VARIABLE
;
1599 e
->ts
.type
= BT_PROCEDURE
;
1606 gfc_current_locus
= where
;
1607 return gfc_match_expr (result
);
1611 /* Match a keyword argument. */
1614 match_keyword_arg (gfc_actual_arglist
*actual
, gfc_actual_arglist
*base
)
1616 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
1617 gfc_actual_arglist
*a
;
1621 name_locus
= gfc_current_locus
;
1622 m
= gfc_match_name (name
);
1626 if (gfc_match_char ('=') != MATCH_YES
)
1632 m
= match_actual_arg (&actual
->expr
);
1636 /* Make sure this name has not appeared yet. */
1638 if (name
[0] != '\0')
1640 for (a
= base
; a
; a
= a
->next
)
1641 if (a
->name
!= NULL
&& strcmp (a
->name
, name
) == 0)
1643 gfc_error ("Keyword %qs at %C has already appeared in the "
1644 "current argument list", name
);
1649 actual
->name
= gfc_get_string (name
);
1653 gfc_current_locus
= name_locus
;
1658 /* Match an argument list function, such as %VAL. */
1661 match_arg_list_function (gfc_actual_arglist
*result
)
1663 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
1667 old_locus
= gfc_current_locus
;
1669 if (gfc_match_char ('%') != MATCH_YES
)
1675 m
= gfc_match ("%n (", name
);
1679 if (name
[0] != '\0')
1684 if (strncmp (name
, "loc", 3) == 0)
1686 result
->name
= "%LOC";
1690 if (strncmp (name
, "ref", 3) == 0)
1692 result
->name
= "%REF";
1696 if (strncmp (name
, "val", 3) == 0)
1698 result
->name
= "%VAL";
1707 if (!gfc_notify_std (GFC_STD_GNU
, "argument list function at %C"))
1713 m
= match_actual_arg (&result
->expr
);
1717 if (gfc_match_char (')') != MATCH_YES
)
1726 gfc_current_locus
= old_locus
;
1731 /* Matches an actual argument list of a function or subroutine, from
1732 the opening parenthesis to the closing parenthesis. The argument
1733 list is assumed to allow keyword arguments because we don't know if
1734 the symbol associated with the procedure has an implicit interface
1735 or not. We make sure keywords are unique. If sub_flag is set,
1736 we're matching the argument list of a subroutine. */
1739 gfc_match_actual_arglist (int sub_flag
, gfc_actual_arglist
**argp
)
1741 gfc_actual_arglist
*head
, *tail
;
1743 gfc_st_label
*label
;
1747 *argp
= tail
= NULL
;
1748 old_loc
= gfc_current_locus
;
1752 if (gfc_match_char ('(') == MATCH_NO
)
1753 return (sub_flag
) ? MATCH_YES
: MATCH_NO
;
1755 if (gfc_match_char (')') == MATCH_YES
)
1759 matching_actual_arglist
++;
1764 head
= tail
= gfc_get_actual_arglist ();
1767 tail
->next
= gfc_get_actual_arglist ();
1771 if (sub_flag
&& gfc_match_char ('*') == MATCH_YES
)
1773 m
= gfc_match_st_label (&label
);
1775 gfc_error ("Expected alternate return label at %C");
1779 if (!gfc_notify_std (GFC_STD_F95_OBS
, "Alternate-return argument "
1783 tail
->label
= label
;
1787 /* After the first keyword argument is seen, the following
1788 arguments must also have keywords. */
1791 m
= match_keyword_arg (tail
, head
);
1793 if (m
== MATCH_ERROR
)
1797 gfc_error ("Missing keyword name in actual argument list at %C");
1804 /* Try an argument list function, like %VAL. */
1805 m
= match_arg_list_function (tail
);
1806 if (m
== MATCH_ERROR
)
1809 /* See if we have the first keyword argument. */
1812 m
= match_keyword_arg (tail
, head
);
1815 if (m
== MATCH_ERROR
)
1821 /* Try for a non-keyword argument. */
1822 m
= match_actual_arg (&tail
->expr
);
1823 if (m
== MATCH_ERROR
)
1832 if (gfc_match_char (')') == MATCH_YES
)
1834 if (gfc_match_char (',') != MATCH_YES
)
1839 matching_actual_arglist
--;
1843 gfc_error ("Syntax error in argument list at %C");
1846 gfc_free_actual_arglist (head
);
1847 gfc_current_locus
= old_loc
;
1848 matching_actual_arglist
--;
1853 /* Used by gfc_match_varspec() to extend the reference list by one
1857 extend_ref (gfc_expr
*primary
, gfc_ref
*tail
)
1859 if (primary
->ref
== NULL
)
1860 primary
->ref
= tail
= gfc_get_ref ();
1864 gfc_internal_error ("extend_ref(): Bad tail");
1865 tail
->next
= gfc_get_ref ();
1873 /* Match any additional specifications associated with the current
1874 variable like member references or substrings. If equiv_flag is
1875 set we only match stuff that is allowed inside an EQUIVALENCE
1876 statement. sub_flag tells whether we expect a type-bound procedure found
1877 to be a subroutine as part of CALL or a FUNCTION. For procedure pointer
1878 components, 'ppc_arg' determines whether the PPC may be called (with an
1879 argument list), or whether it may just be referred to as a pointer. */
1882 gfc_match_varspec (gfc_expr
*primary
, int equiv_flag
, bool sub_flag
,
1885 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
1886 gfc_ref
*substring
, *tail
, *tmp
;
1887 gfc_component
*component
;
1888 gfc_symbol
*sym
= primary
->symtree
->n
.sym
;
1895 gfc_gobble_whitespace ();
1897 if (gfc_peek_ascii_char () == '[')
1899 if ((sym
->ts
.type
!= BT_CLASS
&& sym
->attr
.dimension
)
1900 || (sym
->ts
.type
== BT_CLASS
&& CLASS_DATA (sym
)
1901 && CLASS_DATA (sym
)->attr
.dimension
))
1903 gfc_error ("Array section designator, e.g. '(:)', is required "
1904 "besides the coarray designator '[...]' at %C");
1907 if ((sym
->ts
.type
!= BT_CLASS
&& !sym
->attr
.codimension
)
1908 || (sym
->ts
.type
== BT_CLASS
&& CLASS_DATA (sym
)
1909 && !CLASS_DATA (sym
)->attr
.codimension
))
1911 gfc_error ("Coarray designator at %C but %qs is not a coarray",
1917 /* For associate names, we may not yet know whether they are arrays or not.
1918 Thus if we have one and parentheses follow, we have to assume that it
1919 actually is one for now. The final decision will be made at
1920 resolution time, of course. */
1921 if (sym
->assoc
&& gfc_peek_ascii_char () == '('
1922 && !(sym
->assoc
->dangling
&& sym
->assoc
->st
1923 && sym
->assoc
->st
->n
.sym
1924 && sym
->assoc
->st
->n
.sym
->attr
.dimension
== 0)
1925 && sym
->ts
.type
!= BT_CLASS
)
1926 sym
->attr
.dimension
= 1;
1928 if ((equiv_flag
&& gfc_peek_ascii_char () == '(')
1929 || gfc_peek_ascii_char () == '[' || sym
->attr
.codimension
1930 || (sym
->attr
.dimension
&& sym
->ts
.type
!= BT_CLASS
1931 && !sym
->attr
.proc_pointer
&& !gfc_is_proc_ptr_comp (primary
)
1932 && !(gfc_matching_procptr_assignment
1933 && sym
->attr
.flavor
== FL_PROCEDURE
))
1934 || (sym
->ts
.type
== BT_CLASS
&& sym
->attr
.class_ok
1935 && (CLASS_DATA (sym
)->attr
.dimension
1936 || CLASS_DATA (sym
)->attr
.codimension
)))
1940 tail
= extend_ref (primary
, tail
);
1941 tail
->type
= REF_ARRAY
;
1943 /* In EQUIVALENCE, we don't know yet whether we are seeing
1944 an array, character variable or array of character
1945 variables. We'll leave the decision till resolve time. */
1949 else if (sym
->ts
.type
== BT_CLASS
&& CLASS_DATA (sym
))
1950 as
= CLASS_DATA (sym
)->as
;
1954 m
= gfc_match_array_ref (&tail
->u
.ar
, as
, equiv_flag
,
1955 as
? as
->corank
: 0);
1959 gfc_gobble_whitespace ();
1960 if (equiv_flag
&& gfc_peek_ascii_char () == '(')
1962 tail
= extend_ref (primary
, tail
);
1963 tail
->type
= REF_ARRAY
;
1965 m
= gfc_match_array_ref (&tail
->u
.ar
, NULL
, equiv_flag
, 0);
1971 primary
->ts
= sym
->ts
;
1976 /* With DEC extensions, member separator may be '.' or '%'. */
1977 sep
= gfc_peek_ascii_char ();
1978 m
= gfc_match_member_sep (sym
);
1979 if (m
== MATCH_ERROR
)
1982 if (sym
->ts
.type
== BT_UNKNOWN
&& m
== MATCH_YES
1983 && gfc_get_default_type (sym
->name
, sym
->ns
)->type
== BT_DERIVED
)
1984 gfc_set_default_type (sym
, 0, sym
->ns
);
1986 if (sym
->ts
.type
== BT_UNKNOWN
&& m
== MATCH_YES
)
1988 gfc_error ("Symbol %qs at %C has no IMPLICIT type", sym
->name
);
1991 else if ((sym
->ts
.type
!= BT_DERIVED
&& sym
->ts
.type
!= BT_CLASS
)
1994 gfc_error ("Unexpected %<%c%> for nonderived-type variable %qs at %C",
1999 if ((sym
->ts
.type
!= BT_DERIVED
&& sym
->ts
.type
!= BT_CLASS
)
2001 goto check_substring
;
2003 sym
= sym
->ts
.u
.derived
;
2010 m
= gfc_match_name (name
);
2012 gfc_error ("Expected structure component name at %C");
2016 if (sym
->f2k_derived
)
2017 tbp
= gfc_find_typebound_proc (sym
, &t
, name
, false, &gfc_current_locus
);
2023 gfc_symbol
* tbp_sym
;
2028 gcc_assert (!tail
|| !tail
->next
);
2030 if (!(primary
->expr_type
== EXPR_VARIABLE
2031 || (primary
->expr_type
== EXPR_STRUCTURE
2032 && primary
->symtree
&& primary
->symtree
->n
.sym
2033 && primary
->symtree
->n
.sym
->attr
.flavor
)))
2036 if (tbp
->n
.tb
->is_generic
)
2039 tbp_sym
= tbp
->n
.tb
->u
.specific
->n
.sym
;
2041 primary
->expr_type
= EXPR_COMPCALL
;
2042 primary
->value
.compcall
.tbp
= tbp
->n
.tb
;
2043 primary
->value
.compcall
.name
= tbp
->name
;
2044 primary
->value
.compcall
.ignore_pass
= 0;
2045 primary
->value
.compcall
.assign
= 0;
2046 primary
->value
.compcall
.base_object
= NULL
;
2047 gcc_assert (primary
->symtree
->n
.sym
->attr
.referenced
);
2049 primary
->ts
= tbp_sym
->ts
;
2051 gfc_clear_ts (&primary
->ts
);
2053 m
= gfc_match_actual_arglist (tbp
->n
.tb
->subroutine
,
2054 &primary
->value
.compcall
.actual
);
2055 if (m
== MATCH_ERROR
)
2060 primary
->value
.compcall
.actual
= NULL
;
2063 gfc_error ("Expected argument list at %C");
2071 component
= gfc_find_component (sym
, name
, false, false, &tmp
);
2072 if (component
== NULL
)
2075 /* Extend the reference chain determined by gfc_find_component. */
2076 if (primary
->ref
== NULL
)
2080 /* Set by the for loop below for the last component ref. */
2081 gcc_assert (tail
!= NULL
);
2085 /* The reference chain may be longer than one hop for union
2086 subcomponents; find the new tail. */
2087 for (tail
= tmp
; tail
->next
; tail
= tail
->next
)
2090 primary
->ts
= component
->ts
;
2092 if (component
->attr
.proc_pointer
&& ppc_arg
)
2094 /* Procedure pointer component call: Look for argument list. */
2095 m
= gfc_match_actual_arglist (sub_flag
,
2096 &primary
->value
.compcall
.actual
);
2097 if (m
== MATCH_ERROR
)
2100 if (m
== MATCH_NO
&& !gfc_matching_ptr_assignment
2101 && !gfc_matching_procptr_assignment
&& !matching_actual_arglist
)
2103 gfc_error ("Procedure pointer component %qs requires an "
2104 "argument list at %C", component
->name
);
2109 primary
->expr_type
= EXPR_PPC
;
2114 if (component
->as
!= NULL
&& !component
->attr
.proc_pointer
)
2116 tail
= extend_ref (primary
, tail
);
2117 tail
->type
= REF_ARRAY
;
2119 m
= gfc_match_array_ref (&tail
->u
.ar
, component
->as
, equiv_flag
,
2120 component
->as
->corank
);
2124 else if (component
->ts
.type
== BT_CLASS
&& component
->attr
.class_ok
2125 && CLASS_DATA (component
)->as
&& !component
->attr
.proc_pointer
)
2127 tail
= extend_ref (primary
, tail
);
2128 tail
->type
= REF_ARRAY
;
2130 m
= gfc_match_array_ref (&tail
->u
.ar
, CLASS_DATA (component
)->as
,
2132 CLASS_DATA (component
)->as
->corank
);
2137 if ((component
->ts
.type
!= BT_DERIVED
&& component
->ts
.type
!= BT_CLASS
)
2138 || gfc_match_member_sep (component
->ts
.u
.derived
) != MATCH_YES
)
2141 sym
= component
->ts
.u
.derived
;
2146 if (primary
->ts
.type
== BT_UNKNOWN
&& !gfc_fl_struct (sym
->attr
.flavor
))
2148 if (gfc_get_default_type (sym
->name
, sym
->ns
)->type
== BT_CHARACTER
)
2150 gfc_set_default_type (sym
, 0, sym
->ns
);
2151 primary
->ts
= sym
->ts
;
2156 if (primary
->ts
.type
== BT_CHARACTER
)
2158 bool def
= primary
->ts
.deferred
== 1;
2159 switch (match_substring (primary
->ts
.u
.cl
, equiv_flag
, &substring
, def
))
2163 primary
->ref
= substring
;
2165 tail
->next
= substring
;
2167 if (primary
->expr_type
== EXPR_CONSTANT
)
2168 primary
->expr_type
= EXPR_SUBSTRING
;
2171 primary
->ts
.u
.cl
= NULL
;
2178 gfc_clear_ts (&primary
->ts
);
2179 gfc_clear_ts (&sym
->ts
);
2189 if (primary
->expr_type
== EXPR_PPC
&& gfc_is_coindexed (primary
))
2191 gfc_error ("Coindexed procedure-pointer component at %C");
2199 /* Given an expression that is a variable, figure out what the
2200 ultimate variable's type and attribute is, traversing the reference
2201 structures if necessary.
2203 This subroutine is trickier than it looks. We start at the base
2204 symbol and store the attribute. Component references load a
2205 completely new attribute.
2207 A couple of rules come into play. Subobjects of targets are always
2208 targets themselves. If we see a component that goes through a
2209 pointer, then the expression must also be a target, since the
2210 pointer is associated with something (if it isn't core will soon be
2211 dumped). If we see a full part or section of an array, the
2212 expression is also an array.
2214 We can have at most one full array reference. */
2217 gfc_variable_attr (gfc_expr
*expr
, gfc_typespec
*ts
)
2219 int dimension
, codimension
, pointer
, allocatable
, target
;
2220 symbol_attribute attr
;
2223 gfc_component
*comp
;
2225 if (expr
->expr_type
!= EXPR_VARIABLE
&& expr
->expr_type
!= EXPR_FUNCTION
)
2226 gfc_internal_error ("gfc_variable_attr(): Expression isn't a variable");
2228 sym
= expr
->symtree
->n
.sym
;
2231 if (sym
->ts
.type
== BT_CLASS
&& sym
->attr
.class_ok
)
2233 dimension
= CLASS_DATA (sym
)->attr
.dimension
;
2234 codimension
= CLASS_DATA (sym
)->attr
.codimension
;
2235 pointer
= CLASS_DATA (sym
)->attr
.class_pointer
;
2236 allocatable
= CLASS_DATA (sym
)->attr
.allocatable
;
2240 dimension
= attr
.dimension
;
2241 codimension
= attr
.codimension
;
2242 pointer
= attr
.pointer
;
2243 allocatable
= attr
.allocatable
;
2246 target
= attr
.target
;
2247 if (pointer
|| attr
.proc_pointer
)
2250 if (ts
!= NULL
&& expr
->ts
.type
== BT_UNKNOWN
)
2253 for (ref
= expr
->ref
; ref
; ref
= ref
->next
)
2258 switch (ref
->u
.ar
.type
)
2265 allocatable
= pointer
= 0;
2270 /* Handle coarrays. */
2271 if (ref
->u
.ar
.dimen
> 0)
2272 allocatable
= pointer
= 0;
2276 /* If any of start, end or stride is not integer, there will
2277 already have been an error issued. */
2279 gfc_get_errors (NULL
, &errors
);
2281 gfc_internal_error ("gfc_variable_attr(): Bad array reference");
2287 comp
= ref
->u
.c
.component
;
2292 /* Don't set the string length if a substring reference
2294 if (ts
->type
== BT_CHARACTER
2295 && ref
->next
&& ref
->next
->type
== REF_SUBSTRING
)
2299 if (comp
->ts
.type
== BT_CLASS
)
2301 codimension
= CLASS_DATA (comp
)->attr
.codimension
;
2302 pointer
= CLASS_DATA (comp
)->attr
.class_pointer
;
2303 allocatable
= CLASS_DATA (comp
)->attr
.allocatable
;
2307 codimension
= comp
->attr
.codimension
;
2308 pointer
= comp
->attr
.pointer
;
2309 allocatable
= comp
->attr
.allocatable
;
2311 if (pointer
|| attr
.proc_pointer
)
2317 allocatable
= pointer
= 0;
2321 attr
.dimension
= dimension
;
2322 attr
.codimension
= codimension
;
2323 attr
.pointer
= pointer
;
2324 attr
.allocatable
= allocatable
;
2325 attr
.target
= target
;
2326 attr
.save
= sym
->attr
.save
;
2332 /* Return the attribute from a general expression. */
2335 gfc_expr_attr (gfc_expr
*e
)
2337 symbol_attribute attr
;
2339 switch (e
->expr_type
)
2342 attr
= gfc_variable_attr (e
, NULL
);
2346 gfc_clear_attr (&attr
);
2348 if (e
->value
.function
.esym
&& e
->value
.function
.esym
->result
)
2350 gfc_symbol
*sym
= e
->value
.function
.esym
->result
;
2352 if (sym
->ts
.type
== BT_CLASS
)
2354 attr
.dimension
= CLASS_DATA (sym
)->attr
.dimension
;
2355 attr
.pointer
= CLASS_DATA (sym
)->attr
.class_pointer
;
2356 attr
.allocatable
= CLASS_DATA (sym
)->attr
.allocatable
;
2360 attr
= gfc_variable_attr (e
, NULL
);
2362 /* TODO: NULL() returns pointers. May have to take care of this
2368 gfc_clear_attr (&attr
);
2376 /* Match a structure constructor. The initial symbol has already been
2379 typedef struct gfc_structure_ctor_component
2384 struct gfc_structure_ctor_component
* next
;
2386 gfc_structure_ctor_component
;
2388 #define gfc_get_structure_ctor_component() XCNEW (gfc_structure_ctor_component)
2391 gfc_free_structure_ctor_component (gfc_structure_ctor_component
*comp
)
2394 gfc_free_expr (comp
->val
);
2399 /* Translate the component list into the actual constructor by sorting it in
2400 the order required; this also checks along the way that each and every
2401 component actually has an initializer and handles default initializers
2402 for components without explicit value given. */
2404 build_actual_constructor (gfc_structure_ctor_component
**comp_head
,
2405 gfc_constructor_base
*ctor_head
, gfc_symbol
*sym
)
2407 gfc_structure_ctor_component
*comp_iter
;
2408 gfc_component
*comp
;
2410 for (comp
= sym
->components
; comp
; comp
= comp
->next
)
2412 gfc_structure_ctor_component
**next_ptr
;
2413 gfc_expr
*value
= NULL
;
2415 /* Try to find the initializer for the current component by name. */
2416 next_ptr
= comp_head
;
2417 for (comp_iter
= *comp_head
; comp_iter
; comp_iter
= comp_iter
->next
)
2419 if (!strcmp (comp_iter
->name
, comp
->name
))
2421 next_ptr
= &comp_iter
->next
;
2424 /* If an extension, try building the parent derived type by building
2425 a value expression for the parent derived type and calling self. */
2426 if (!comp_iter
&& comp
== sym
->components
&& sym
->attr
.extension
)
2428 value
= gfc_get_structure_constructor_expr (comp
->ts
.type
,
2430 &gfc_current_locus
);
2431 value
->ts
= comp
->ts
;
2433 if (!build_actual_constructor (comp_head
,
2434 &value
->value
.constructor
,
2435 comp
->ts
.u
.derived
))
2437 gfc_free_expr (value
);
2441 gfc_constructor_append_expr (ctor_head
, value
, NULL
);
2445 /* If it was not found, try the default initializer if there's any;
2446 otherwise, it's an error unless this is a deferred parameter. */
2449 if (comp
->initializer
)
2451 if (!gfc_notify_std (GFC_STD_F2003
, "Structure constructor "
2452 "with missing optional arguments at %C"))
2454 value
= gfc_copy_expr (comp
->initializer
);
2456 else if (comp
->attr
.allocatable
2457 || (comp
->ts
.type
== BT_CLASS
2458 && CLASS_DATA (comp
)->attr
.allocatable
))
2460 if (!gfc_notify_std (GFC_STD_F2008
, "No initializer for "
2461 "allocatable component '%qs' given in the "
2462 "structure constructor at %C", comp
->name
))
2465 else if (!comp
->attr
.artificial
)
2467 gfc_error ("No initializer for component %qs given in the"
2468 " structure constructor at %C!", comp
->name
);
2473 value
= comp_iter
->val
;
2475 /* Add the value to the constructor chain built. */
2476 gfc_constructor_append_expr (ctor_head
, value
, NULL
);
2478 /* Remove the entry from the component list. We don't want the expression
2479 value to be free'd, so set it to NULL. */
2482 *next_ptr
= comp_iter
->next
;
2483 comp_iter
->val
= NULL
;
2484 gfc_free_structure_ctor_component (comp_iter
);
2492 gfc_convert_to_structure_constructor (gfc_expr
*e
, gfc_symbol
*sym
, gfc_expr
**cexpr
,
2493 gfc_actual_arglist
**arglist
,
2496 gfc_actual_arglist
*actual
;
2497 gfc_structure_ctor_component
*comp_tail
, *comp_head
, *comp_iter
;
2498 gfc_constructor_base ctor_head
= NULL
;
2499 gfc_component
*comp
; /* Is set NULL when named component is first seen */
2500 const char* last_name
= NULL
;
2504 expr
= parent
? *cexpr
: e
;
2505 old_locus
= gfc_current_locus
;
2507 ; /* gfc_current_locus = *arglist->expr ? ->where;*/
2509 gfc_current_locus
= expr
->where
;
2511 comp_tail
= comp_head
= NULL
;
2513 if (!parent
&& sym
->attr
.abstract
)
2515 gfc_error ("Can't construct ABSTRACT type %qs at %L",
2516 sym
->name
, &expr
->where
);
2520 comp
= sym
->components
;
2521 actual
= parent
? *arglist
: expr
->value
.function
.actual
;
2524 gfc_component
*this_comp
= NULL
;
2527 comp_tail
= comp_head
= gfc_get_structure_ctor_component ();
2530 comp_tail
->next
= gfc_get_structure_ctor_component ();
2531 comp_tail
= comp_tail
->next
;
2535 if (!gfc_notify_std (GFC_STD_F2003
, "Structure"
2536 " constructor with named arguments at %C"))
2539 comp_tail
->name
= xstrdup (actual
->name
);
2540 last_name
= comp_tail
->name
;
2545 /* Components without name are not allowed after the first named
2546 component initializer! */
2547 if (!comp
|| comp
->attr
.artificial
)
2550 gfc_error ("Component initializer without name after component"
2551 " named %s at %L!", last_name
,
2552 actual
->expr
? &actual
->expr
->where
2553 : &gfc_current_locus
);
2555 gfc_error ("Too many components in structure constructor at "
2556 "%L!", actual
->expr
? &actual
->expr
->where
2557 : &gfc_current_locus
);
2561 comp_tail
->name
= xstrdup (comp
->name
);
2564 /* Find the current component in the structure definition and check
2565 its access is not private. */
2567 this_comp
= gfc_find_component (sym
, comp
->name
, false, false, NULL
);
2570 this_comp
= gfc_find_component (sym
, (const char *)comp_tail
->name
,
2571 false, false, NULL
);
2572 comp
= NULL
; /* Reset needed! */
2575 /* Here we can check if a component name is given which does not
2576 correspond to any component of the defined structure. */
2580 comp_tail
->val
= actual
->expr
;
2581 if (actual
->expr
!= NULL
)
2582 comp_tail
->where
= actual
->expr
->where
;
2583 actual
->expr
= NULL
;
2585 /* Check if this component is already given a value. */
2586 for (comp_iter
= comp_head
; comp_iter
!= comp_tail
;
2587 comp_iter
= comp_iter
->next
)
2589 gcc_assert (comp_iter
);
2590 if (!strcmp (comp_iter
->name
, comp_tail
->name
))
2592 gfc_error ("Component %qs is initialized twice in the structure"
2593 " constructor at %L!", comp_tail
->name
,
2594 comp_tail
->val
? &comp_tail
->where
2595 : &gfc_current_locus
);
2600 /* F2008, R457/C725, for PURE C1283. */
2601 if (this_comp
->attr
.pointer
&& comp_tail
->val
2602 && gfc_is_coindexed (comp_tail
->val
))
2604 gfc_error ("Coindexed expression to pointer component %qs in "
2605 "structure constructor at %L!", comp_tail
->name
,
2610 /* If not explicitly a parent constructor, gather up the components
2612 if (comp
&& comp
== sym
->components
2613 && sym
->attr
.extension
2615 && (!gfc_bt_struct (comp_tail
->val
->ts
.type
)
2617 comp_tail
->val
->ts
.u
.derived
!= this_comp
->ts
.u
.derived
))
2620 gfc_actual_arglist
*arg_null
= NULL
;
2622 actual
->expr
= comp_tail
->val
;
2623 comp_tail
->val
= NULL
;
2625 m
= gfc_convert_to_structure_constructor (NULL
,
2626 comp
->ts
.u
.derived
, &comp_tail
->val
,
2627 comp
->ts
.u
.derived
->attr
.zero_comp
2628 ? &arg_null
: &actual
, true);
2632 if (comp
->ts
.u
.derived
->attr
.zero_comp
)
2641 if (parent
&& !comp
)
2645 actual
= actual
->next
;
2648 if (!build_actual_constructor (&comp_head
, &ctor_head
, sym
))
2651 /* No component should be left, as this should have caused an error in the
2652 loop constructing the component-list (name that does not correspond to any
2653 component in the structure definition). */
2654 if (comp_head
&& sym
->attr
.extension
)
2656 for (comp_iter
= comp_head
; comp_iter
; comp_iter
= comp_iter
->next
)
2658 gfc_error ("component %qs at %L has already been set by a "
2659 "parent derived type constructor", comp_iter
->name
,
2665 gcc_assert (!comp_head
);
2669 expr
= gfc_get_structure_constructor_expr (BT_DERIVED
, 0, &gfc_current_locus
);
2670 expr
->ts
.u
.derived
= sym
;
2671 expr
->value
.constructor
= ctor_head
;
2676 expr
->ts
.u
.derived
= sym
;
2678 expr
->ts
.type
= BT_DERIVED
;
2679 expr
->value
.constructor
= ctor_head
;
2680 expr
->expr_type
= EXPR_STRUCTURE
;
2683 gfc_current_locus
= old_locus
;
2689 gfc_current_locus
= old_locus
;
2691 for (comp_iter
= comp_head
; comp_iter
; )
2693 gfc_structure_ctor_component
*next
= comp_iter
->next
;
2694 gfc_free_structure_ctor_component (comp_iter
);
2697 gfc_constructor_free (ctor_head
);
2704 gfc_match_structure_constructor (gfc_symbol
*sym
, gfc_expr
**result
)
2708 gfc_symtree
*symtree
;
2710 gfc_get_ha_sym_tree (sym
->name
, &symtree
);
2712 e
= gfc_get_expr ();
2713 e
->symtree
= symtree
;
2714 e
->expr_type
= EXPR_FUNCTION
;
2716 gcc_assert (gfc_fl_struct (sym
->attr
.flavor
)
2717 && symtree
->n
.sym
->attr
.flavor
== FL_PROCEDURE
);
2718 e
->value
.function
.esym
= sym
;
2719 e
->symtree
->n
.sym
->attr
.generic
= 1;
2721 m
= gfc_match_actual_arglist (0, &e
->value
.function
.actual
);
2728 if (!gfc_convert_to_structure_constructor (e
, sym
, NULL
, NULL
, false))
2734 /* If a structure constructor is in a DATA statement, then each entity
2735 in the structure constructor must be a constant. Try to reduce the
2737 if (gfc_in_match_data ())
2738 gfc_reduce_init_expr (e
);
2745 /* If the symbol is an implicit do loop index and implicitly typed,
2746 it should not be host associated. Provide a symtree from the
2747 current namespace. */
2749 check_for_implicit_index (gfc_symtree
**st
, gfc_symbol
**sym
)
2751 if ((*sym
)->attr
.flavor
== FL_VARIABLE
2752 && (*sym
)->ns
!= gfc_current_ns
2753 && (*sym
)->attr
.implied_index
2754 && (*sym
)->attr
.implicit_type
2755 && !(*sym
)->attr
.use_assoc
)
2758 i
= gfc_get_sym_tree ((*sym
)->name
, NULL
, st
, false);
2761 *sym
= (*st
)->n
.sym
;
2767 /* Procedure pointer as function result: Replace the function symbol by the
2768 auto-generated hidden result variable named "ppr@". */
2771 replace_hidden_procptr_result (gfc_symbol
**sym
, gfc_symtree
**st
)
2773 /* Check for procedure pointer result variable. */
2774 if ((*sym
)->attr
.function
&& !(*sym
)->attr
.external
2775 && (*sym
)->result
&& (*sym
)->result
!= *sym
2776 && (*sym
)->result
->attr
.proc_pointer
2777 && (*sym
) == gfc_current_ns
->proc_name
2778 && (*sym
) == (*sym
)->result
->ns
->proc_name
2779 && strcmp ("ppr@", (*sym
)->result
->name
) == 0)
2781 /* Automatic replacement with "hidden" result variable. */
2782 (*sym
)->result
->attr
.referenced
= (*sym
)->attr
.referenced
;
2783 *sym
= (*sym
)->result
;
2784 *st
= gfc_find_symtree ((*sym
)->ns
->sym_root
, (*sym
)->name
);
2791 /* Matches a variable name followed by anything that might follow it--
2792 array reference, argument list of a function, etc. */
2795 gfc_match_rvalue (gfc_expr
**result
)
2797 gfc_actual_arglist
*actual_arglist
;
2798 char name
[GFC_MAX_SYMBOL_LEN
+ 1], argname
[GFC_MAX_SYMBOL_LEN
+ 1];
2801 gfc_symtree
*symtree
;
2802 locus where
, old_loc
;
2810 m
= gfc_match_name (name
);
2814 /* Check if the symbol exists. */
2815 if (gfc_find_sym_tree (name
, NULL
, 1, &symtree
))
2818 /* If the symbol doesn't exist, create it unless the name matches a FL_STRUCT
2819 type. For derived types we create a generic symbol which links to the
2820 derived type symbol; STRUCTUREs are simpler and must not conflict with
2823 if (gfc_find_sym_tree (gfc_dt_upper_string (name
), NULL
, 1, &symtree
))
2825 if (!symtree
|| symtree
->n
.sym
->attr
.flavor
!= FL_STRUCT
)
2827 if (gfc_find_state (COMP_INTERFACE
)
2828 && !gfc_current_ns
->has_import_set
)
2829 i
= gfc_get_sym_tree (name
, NULL
, &symtree
, false);
2831 i
= gfc_get_ha_sym_tree (name
, &symtree
);
2837 sym
= symtree
->n
.sym
;
2839 where
= gfc_current_locus
;
2841 replace_hidden_procptr_result (&sym
, &symtree
);
2843 /* If this is an implicit do loop index and implicitly typed,
2844 it should not be host associated. */
2845 m
= check_for_implicit_index (&symtree
, &sym
);
2849 gfc_set_sym_referenced (sym
);
2850 sym
->attr
.implied_index
= 0;
2852 if (sym
->attr
.function
&& sym
->result
== sym
)
2854 /* See if this is a directly recursive function call. */
2855 gfc_gobble_whitespace ();
2856 if (sym
->attr
.recursive
2857 && gfc_peek_ascii_char () == '('
2858 && gfc_current_ns
->proc_name
== sym
2859 && !sym
->attr
.dimension
)
2861 gfc_error ("%qs at %C is the name of a recursive function "
2862 "and so refers to the result variable. Use an "
2863 "explicit RESULT variable for direct recursion "
2864 "(12.5.2.1)", sym
->name
);
2868 if (gfc_is_function_return_value (sym
, gfc_current_ns
))
2872 && (sym
->ns
== gfc_current_ns
2873 || sym
->ns
== gfc_current_ns
->parent
))
2875 gfc_entry_list
*el
= NULL
;
2877 for (el
= sym
->ns
->entries
; el
; el
= el
->next
)
2883 if (gfc_matching_procptr_assignment
)
2886 if (sym
->attr
.function
|| sym
->attr
.external
|| sym
->attr
.intrinsic
)
2889 if (sym
->attr
.generic
)
2890 goto generic_function
;
2892 switch (sym
->attr
.flavor
)
2896 e
= gfc_get_expr ();
2898 e
->expr_type
= EXPR_VARIABLE
;
2899 e
->symtree
= symtree
;
2901 m
= gfc_match_varspec (e
, 0, false, true);
2905 /* A statement of the form "REAL, parameter :: a(0:10) = 1" will
2906 end up here. Unfortunately, sym->value->expr_type is set to
2907 EXPR_CONSTANT, and so the if () branch would be followed without
2908 the !sym->as check. */
2909 if (sym
->value
&& sym
->value
->expr_type
!= EXPR_ARRAY
&& !sym
->as
)
2910 e
= gfc_copy_expr (sym
->value
);
2913 e
= gfc_get_expr ();
2914 e
->expr_type
= EXPR_VARIABLE
;
2917 e
->symtree
= symtree
;
2918 m
= gfc_match_varspec (e
, 0, false, true);
2920 if (sym
->ts
.is_c_interop
|| sym
->ts
.is_iso_c
)
2923 /* Variable array references to derived type parameters cause
2924 all sorts of headaches in simplification. Treating such
2925 expressions as variable works just fine for all array
2927 if (sym
->value
&& sym
->ts
.type
== BT_DERIVED
&& e
->ref
)
2929 for (ref
= e
->ref
; ref
; ref
= ref
->next
)
2930 if (ref
->type
== REF_ARRAY
)
2933 if (ref
== NULL
|| ref
->u
.ar
.type
== AR_FULL
)
2939 e
= gfc_get_expr ();
2940 e
->expr_type
= EXPR_VARIABLE
;
2941 e
->symtree
= symtree
;
2949 sym
= gfc_use_derived (sym
);
2953 goto generic_function
;
2956 /* If we're here, then the name is known to be the name of a
2957 procedure, yet it is not sure to be the name of a function. */
2960 /* Procedure Pointer Assignments. */
2962 if (gfc_matching_procptr_assignment
)
2964 gfc_gobble_whitespace ();
2965 if (!sym
->attr
.dimension
&& gfc_peek_ascii_char () == '(')
2966 /* Parse functions returning a procptr. */
2969 e
= gfc_get_expr ();
2970 e
->expr_type
= EXPR_VARIABLE
;
2971 e
->symtree
= symtree
;
2972 m
= gfc_match_varspec (e
, 0, false, true);
2973 if (!e
->ref
&& sym
->attr
.flavor
== FL_UNKNOWN
2974 && sym
->ts
.type
== BT_UNKNOWN
2975 && !gfc_add_flavor (&sym
->attr
, FL_PROCEDURE
, sym
->name
, NULL
))
2983 if (sym
->attr
.subroutine
)
2985 gfc_error ("Unexpected use of subroutine name %qs at %C",
2991 /* At this point, the name has to be a non-statement function.
2992 If the name is the same as the current function being
2993 compiled, then we have a variable reference (to the function
2994 result) if the name is non-recursive. */
2996 st
= gfc_enclosing_unit (NULL
);
2999 && st
->state
== COMP_FUNCTION
3001 && !sym
->attr
.recursive
)
3003 e
= gfc_get_expr ();
3004 e
->symtree
= symtree
;
3005 e
->expr_type
= EXPR_VARIABLE
;
3007 m
= gfc_match_varspec (e
, 0, false, true);
3011 /* Match a function reference. */
3013 m
= gfc_match_actual_arglist (0, &actual_arglist
);
3016 if (sym
->attr
.proc
== PROC_ST_FUNCTION
)
3017 gfc_error ("Statement function %qs requires argument list at %C",
3020 gfc_error ("Function %qs requires an argument list at %C",
3033 gfc_get_ha_sym_tree (name
, &symtree
); /* Can't fail */
3034 sym
= symtree
->n
.sym
;
3036 replace_hidden_procptr_result (&sym
, &symtree
);
3038 e
= gfc_get_expr ();
3039 e
->symtree
= symtree
;
3040 e
->expr_type
= EXPR_FUNCTION
;
3041 e
->value
.function
.actual
= actual_arglist
;
3042 e
->where
= gfc_current_locus
;
3044 if (sym
->ts
.type
== BT_CLASS
&& sym
->attr
.class_ok
3045 && CLASS_DATA (sym
)->as
)
3046 e
->rank
= CLASS_DATA (sym
)->as
->rank
;
3047 else if (sym
->as
!= NULL
)
3048 e
->rank
= sym
->as
->rank
;
3050 if (!sym
->attr
.function
3051 && !gfc_add_function (&sym
->attr
, sym
->name
, NULL
))
3057 /* Check here for the existence of at least one argument for the
3058 iso_c_binding functions C_LOC, C_FUNLOC, and C_ASSOCIATED. The
3059 argument(s) given will be checked in gfc_iso_c_func_interface,
3060 during resolution of the function call. */
3061 if (sym
->attr
.is_iso_c
== 1
3062 && (sym
->from_intmod
== INTMOD_ISO_C_BINDING
3063 && (sym
->intmod_sym_id
== ISOCBINDING_LOC
3064 || sym
->intmod_sym_id
== ISOCBINDING_FUNLOC
3065 || sym
->intmod_sym_id
== ISOCBINDING_ASSOCIATED
)))
3067 /* make sure we were given a param */
3068 if (actual_arglist
== NULL
)
3070 gfc_error ("Missing argument to %qs at %C", sym
->name
);
3076 if (sym
->result
== NULL
)
3084 /* Special case for derived type variables that get their types
3085 via an IMPLICIT statement. This can't wait for the
3086 resolution phase. */
3088 old_loc
= gfc_current_locus
;
3089 if (gfc_match_member_sep (sym
) == MATCH_YES
3090 && sym
->ts
.type
== BT_UNKNOWN
3091 && gfc_get_default_type (sym
->name
, sym
->ns
)->type
== BT_DERIVED
)
3092 gfc_set_default_type (sym
, 0, sym
->ns
);
3093 gfc_current_locus
= old_loc
;
3095 /* If the symbol has a (co)dimension attribute, the expression is a
3098 if (sym
->attr
.dimension
|| sym
->attr
.codimension
)
3100 if (!gfc_add_flavor (&sym
->attr
, FL_VARIABLE
, sym
->name
, NULL
))
3106 e
= gfc_get_expr ();
3107 e
->symtree
= symtree
;
3108 e
->expr_type
= EXPR_VARIABLE
;
3109 m
= gfc_match_varspec (e
, 0, false, true);
3113 if (sym
->ts
.type
== BT_CLASS
&& sym
->attr
.class_ok
3114 && (CLASS_DATA (sym
)->attr
.dimension
3115 || CLASS_DATA (sym
)->attr
.codimension
))
3117 if (!gfc_add_flavor (&sym
->attr
, FL_VARIABLE
, sym
->name
, NULL
))
3123 e
= gfc_get_expr ();
3124 e
->symtree
= symtree
;
3125 e
->expr_type
= EXPR_VARIABLE
;
3126 m
= gfc_match_varspec (e
, 0, false, true);
3130 /* Name is not an array, so we peek to see if a '(' implies a
3131 function call or a substring reference. Otherwise the
3132 variable is just a scalar. */
3134 gfc_gobble_whitespace ();
3135 if (gfc_peek_ascii_char () != '(')
3137 /* Assume a scalar variable */
3138 e
= gfc_get_expr ();
3139 e
->symtree
= symtree
;
3140 e
->expr_type
= EXPR_VARIABLE
;
3142 if (!gfc_add_flavor (&sym
->attr
, FL_VARIABLE
, sym
->name
, NULL
))
3148 /*FIXME:??? gfc_match_varspec does set this for us: */
3150 m
= gfc_match_varspec (e
, 0, false, true);
3154 /* See if this is a function reference with a keyword argument
3155 as first argument. We do this because otherwise a spurious
3156 symbol would end up in the symbol table. */
3158 old_loc
= gfc_current_locus
;
3159 m2
= gfc_match (" ( %n =", argname
);
3160 gfc_current_locus
= old_loc
;
3162 e
= gfc_get_expr ();
3163 e
->symtree
= symtree
;
3165 if (m2
!= MATCH_YES
)
3167 /* Try to figure out whether we're dealing with a character type.
3168 We're peeking ahead here, because we don't want to call
3169 match_substring if we're dealing with an implicitly typed
3170 non-character variable. */
3171 implicit_char
= false;
3172 if (sym
->ts
.type
== BT_UNKNOWN
)
3174 ts
= gfc_get_default_type (sym
->name
, NULL
);
3175 if (ts
->type
== BT_CHARACTER
)
3176 implicit_char
= true;
3179 /* See if this could possibly be a substring reference of a name
3180 that we're not sure is a variable yet. */
3182 if ((implicit_char
|| sym
->ts
.type
== BT_CHARACTER
)
3183 && match_substring (sym
->ts
.u
.cl
, 0, &e
->ref
, false) == MATCH_YES
)
3186 e
->expr_type
= EXPR_VARIABLE
;
3188 if (sym
->attr
.flavor
!= FL_VARIABLE
3189 && !gfc_add_flavor (&sym
->attr
, FL_VARIABLE
,
3196 if (sym
->ts
.type
== BT_UNKNOWN
3197 && !gfc_set_default_type (sym
, 1, NULL
))
3211 /* Give up, assume we have a function. */
3213 gfc_get_sym_tree (name
, NULL
, &symtree
, false); /* Can't fail */
3214 sym
= symtree
->n
.sym
;
3215 e
->expr_type
= EXPR_FUNCTION
;
3217 if (!sym
->attr
.function
3218 && !gfc_add_function (&sym
->attr
, sym
->name
, NULL
))
3226 m
= gfc_match_actual_arglist (0, &e
->value
.function
.actual
);
3228 gfc_error ("Missing argument list in function %qs at %C", sym
->name
);
3236 /* If our new function returns a character, array or structure
3237 type, it might have subsequent references. */
3239 m
= gfc_match_varspec (e
, 0, false, true);
3246 /* Look for symbol first; if not found, look for STRUCTURE type symbol
3247 specially. Creates a generic symbol for derived types. */
3248 gfc_find_sym_tree (name
, NULL
, 1, &symtree
);
3250 gfc_find_sym_tree (gfc_dt_upper_string (name
), NULL
, 1, &symtree
);
3251 if (!symtree
|| symtree
->n
.sym
->attr
.flavor
!= FL_STRUCT
)
3252 gfc_get_sym_tree (name
, NULL
, &symtree
, false); /* Can't fail */
3254 e
= gfc_get_expr ();
3255 e
->symtree
= symtree
;
3256 e
->expr_type
= EXPR_FUNCTION
;
3258 if (gfc_fl_struct (sym
->attr
.flavor
))
3260 e
->value
.function
.esym
= sym
;
3261 e
->symtree
->n
.sym
->attr
.generic
= 1;
3264 m
= gfc_match_actual_arglist (0, &e
->value
.function
.actual
);
3272 gfc_error ("Symbol at %C is not appropriate for an expression");
3288 /* Match a variable, i.e. something that can be assigned to. This
3289 starts as a symbol, can be a structure component or an array
3290 reference. It can be a function if the function doesn't have a
3291 separate RESULT variable. If the symbol has not been previously
3292 seen, we assume it is a variable.
3294 This function is called by two interface functions:
3295 gfc_match_variable, which has host_flag = 1, and
3296 gfc_match_equiv_variable, with host_flag = 0, to restrict the
3297 match of the symbol to the local scope. */
3300 match_variable (gfc_expr
**result
, int equiv_flag
, int host_flag
)
3302 gfc_symbol
*sym
, *dt_sym
;
3305 locus where
, old_loc
;
3308 /* Since nothing has any business being an lvalue in a module
3309 specification block, an interface block or a contains section,
3310 we force the changed_symbols mechanism to work by setting
3311 host_flag to 0. This prevents valid symbols that have the name
3312 of keywords, such as 'end', being turned into variables by
3313 failed matching to assignments for, e.g., END INTERFACE. */
3314 if (gfc_current_state () == COMP_MODULE
3315 || gfc_current_state () == COMP_SUBMODULE
3316 || gfc_current_state () == COMP_INTERFACE
3317 || gfc_current_state () == COMP_CONTAINS
)
3320 where
= gfc_current_locus
;
3321 m
= gfc_match_sym_tree (&st
, host_flag
);
3327 /* If this is an implicit do loop index and implicitly typed,
3328 it should not be host associated. */
3329 m
= check_for_implicit_index (&st
, &sym
);
3333 sym
->attr
.implied_index
= 0;
3335 gfc_set_sym_referenced (sym
);
3337 /* STRUCTUREs may share names with variables, but derived types may not. */
3338 if (sym
->attr
.flavor
== FL_PROCEDURE
&& sym
->generic
3339 && (dt_sym
= gfc_find_dt_in_generic (sym
)))
3341 if (dt_sym
->attr
.flavor
== FL_DERIVED
)
3342 gfc_error ("Derived type '%s' cannot be used as a variable at %C",
3347 switch (sym
->attr
.flavor
)
3350 /* Everything is alright. */
3355 sym_flavor flavor
= FL_UNKNOWN
;
3357 gfc_gobble_whitespace ();
3359 if (sym
->attr
.external
|| sym
->attr
.procedure
3360 || sym
->attr
.function
|| sym
->attr
.subroutine
)
3361 flavor
= FL_PROCEDURE
;
3363 /* If it is not a procedure, is not typed and is host associated,
3364 we cannot give it a flavor yet. */
3365 else if (sym
->ns
== gfc_current_ns
->parent
3366 && sym
->ts
.type
== BT_UNKNOWN
)
3369 /* These are definitive indicators that this is a variable. */
3370 else if (gfc_peek_ascii_char () != '(' || sym
->ts
.type
!= BT_UNKNOWN
3371 || sym
->attr
.pointer
|| sym
->as
!= NULL
)
3372 flavor
= FL_VARIABLE
;
3374 if (flavor
!= FL_UNKNOWN
3375 && !gfc_add_flavor (&sym
->attr
, flavor
, sym
->name
, NULL
))
3383 gfc_error ("Named constant at %C in an EQUIVALENCE");
3386 /* Otherwise this is checked for and an error given in the
3387 variable definition context checks. */
3391 /* Check for a nonrecursive function result variable. */
3392 if (sym
->attr
.function
3393 && !sym
->attr
.external
3394 && sym
->result
== sym
3395 && (gfc_is_function_return_value (sym
, gfc_current_ns
)
3397 && sym
->ns
== gfc_current_ns
)
3399 && sym
->ns
== gfc_current_ns
->parent
)))
3401 /* If a function result is a derived type, then the derived
3402 type may still have to be resolved. */
3404 if (sym
->ts
.type
== BT_DERIVED
3405 && gfc_use_derived (sym
->ts
.u
.derived
) == NULL
)
3410 if (sym
->attr
.proc_pointer
3411 || replace_hidden_procptr_result (&sym
, &st
))
3414 /* Fall through to error */
3417 gfc_error ("%qs at %C is not a variable", sym
->name
);
3421 /* Special case for derived type variables that get their types
3422 via an IMPLICIT statement. This can't wait for the
3423 resolution phase. */
3426 gfc_namespace
* implicit_ns
;
3428 if (gfc_current_ns
->proc_name
== sym
)
3429 implicit_ns
= gfc_current_ns
;
3431 implicit_ns
= sym
->ns
;
3433 old_loc
= gfc_current_locus
;
3434 if (gfc_match_member_sep (sym
) == MATCH_YES
3435 && sym
->ts
.type
== BT_UNKNOWN
3436 && gfc_get_default_type (sym
->name
, implicit_ns
)->type
== BT_DERIVED
)
3437 gfc_set_default_type (sym
, 0, implicit_ns
);
3438 gfc_current_locus
= old_loc
;
3441 expr
= gfc_get_expr ();
3443 expr
->expr_type
= EXPR_VARIABLE
;
3446 expr
->where
= where
;
3448 /* Now see if we have to do more. */
3449 m
= gfc_match_varspec (expr
, equiv_flag
, false, false);
3452 gfc_free_expr (expr
);
3462 gfc_match_variable (gfc_expr
**result
, int equiv_flag
)
3464 return match_variable (result
, equiv_flag
, 1);
3469 gfc_match_equiv_variable (gfc_expr
**result
)
3471 return match_variable (result
, 1, 0);