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"
28 static char expression_syntax
[] = N_("Syntax error in expression at %C");
31 /* Match a user-defined operator name. This is a normal name with a
32 few restrictions. The error_flag controls whether an error is
33 raised if 'true' or 'false' are used or not. */
36 gfc_match_defined_op_name (char *result
, int error_flag
)
38 static const char * const badops
[] = {
39 "and", "or", "not", "eqv", "neqv", "eq", "ne", "ge", "le", "lt", "gt",
43 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
48 old_loc
= gfc_current_locus
;
50 m
= gfc_match (" . %n .", name
);
54 /* .true. and .false. have interpretations as constants. Trying to
55 use these as operators will fail at a later time. */
57 if (strcmp (name
, "true") == 0 || strcmp (name
, "false") == 0)
61 gfc_current_locus
= old_loc
;
65 for (i
= 0; badops
[i
]; i
++)
66 if (strcmp (badops
[i
], name
) == 0)
69 for (i
= 0; name
[i
]; i
++)
70 if (!ISALPHA (name
[i
]))
72 gfc_error ("Bad character %qc in OPERATOR name at %C", name
[i
]);
76 strcpy (result
, name
);
80 gfc_error ("The name %qs cannot be used as a defined operator at %C",
83 gfc_current_locus
= old_loc
;
88 /* Match a user defined operator. The symbol found must be an
92 match_defined_operator (gfc_user_op
**result
)
94 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
97 m
= gfc_match_defined_op_name (name
, 0);
101 *result
= gfc_get_uop (name
);
106 /* Check to see if the given operator is next on the input. If this
107 is not the case, the parse pointer remains where it was. */
110 next_operator (gfc_intrinsic_op t
)
115 old_loc
= gfc_current_locus
;
116 if (gfc_match_intrinsic_op (&u
) == MATCH_YES
&& t
== u
)
119 gfc_current_locus
= old_loc
;
124 /* Call the INTRINSIC_PARENTHESES function. This is both
125 used explicitly, as below, or by resolve.c to generate
129 gfc_get_parentheses (gfc_expr
*e
)
133 e2
= gfc_get_operator_expr (&e
->where
, INTRINSIC_PARENTHESES
, e
, NULL
);
141 /* Match a primary expression. */
144 match_primary (gfc_expr
**result
)
149 m
= gfc_match_literal_constant (result
, 0);
153 m
= gfc_match_array_constructor (result
);
157 m
= gfc_match_rvalue (result
);
161 /* Match an expression in parentheses. */
162 if (gfc_match_char ('(') != MATCH_YES
)
165 m
= gfc_match_expr (&e
);
168 if (m
== MATCH_ERROR
)
171 m
= gfc_match_char (')');
173 gfc_error ("Expected a right parenthesis in expression at %C");
175 /* Now we have the expression inside the parentheses, build the
176 expression pointing to it. By 7.1.7.2, any expression in
177 parentheses shall be treated as a data entity. */
178 *result
= gfc_get_parentheses (e
);
182 gfc_free_expr (*result
);
189 gfc_error (expression_syntax
);
194 /* Match a level 1 expression. */
197 match_level_1 (gfc_expr
**result
)
204 gfc_gobble_whitespace ();
205 where
= gfc_current_locus
;
207 m
= match_defined_operator (&uop
);
208 if (m
== MATCH_ERROR
)
211 m
= match_primary (&e
);
219 f
= gfc_get_operator_expr (&where
, INTRINSIC_USER
, e
, NULL
);
220 f
->value
.op
.uop
= uop
;
228 /* As a GNU extension we support an expanded level-2 expression syntax.
229 Via this extension we support (arbitrary) nesting of unary plus and
230 minus operations following unary and binary operators, such as **.
231 The grammar of section 7.1.1.3 is effectively rewritten as:
233 R704 mult-operand is level-1-expr [ power-op ext-mult-operand ]
234 R704' ext-mult-operand is add-op ext-mult-operand
236 R705 add-operand is add-operand mult-op ext-mult-operand
238 R705' ext-add-operand is add-op ext-add-operand
240 R706 level-2-expr is [ level-2-expr ] add-op ext-add-operand
244 static match
match_ext_mult_operand (gfc_expr
**result
);
245 static match
match_ext_add_operand (gfc_expr
**result
);
250 if (next_operator (INTRINSIC_MINUS
))
252 if (next_operator (INTRINSIC_PLUS
))
259 match_mult_operand (gfc_expr
**result
)
261 /* Workaround -Wmaybe-uninitialized false positive during
262 profiledbootstrap by initializing them. */
263 gfc_expr
*e
= NULL
, *exp
, *r
;
267 m
= match_level_1 (&e
);
271 if (!next_operator (INTRINSIC_POWER
))
277 where
= gfc_current_locus
;
279 m
= match_ext_mult_operand (&exp
);
281 gfc_error ("Expected exponent in expression at %C");
288 r
= gfc_power (e
, exp
);
304 match_ext_mult_operand (gfc_expr
**result
)
311 where
= gfc_current_locus
;
315 return match_mult_operand (result
);
317 if (gfc_notification_std (GFC_STD_GNU
) == ERROR
)
319 gfc_error ("Extension: Unary operator following "
320 "arithmetic operator (use parentheses) at %C");
324 gfc_warning (0, "Extension: Unary operator following "
325 "arithmetic operator (use parentheses) at %C");
327 m
= match_ext_mult_operand (&e
);
332 all
= gfc_uminus (e
);
349 match_add_operand (gfc_expr
**result
)
351 gfc_expr
*all
, *e
, *total
;
352 locus where
, old_loc
;
356 m
= match_mult_operand (&all
);
362 /* Build up a string of products or quotients. */
364 old_loc
= gfc_current_locus
;
366 if (next_operator (INTRINSIC_TIMES
))
370 if (next_operator (INTRINSIC_DIVIDE
))
371 i
= INTRINSIC_DIVIDE
;
376 where
= gfc_current_locus
;
378 m
= match_ext_mult_operand (&e
);
381 gfc_current_locus
= old_loc
;
385 if (m
== MATCH_ERROR
)
391 if (i
== INTRINSIC_TIMES
)
392 total
= gfc_multiply (all
, e
);
394 total
= gfc_divide (all
, e
);
413 match_ext_add_operand (gfc_expr
**result
)
420 where
= gfc_current_locus
;
424 return match_add_operand (result
);
426 if (gfc_notification_std (GFC_STD_GNU
) == ERROR
)
428 gfc_error ("Extension: Unary operator following "
429 "arithmetic operator (use parentheses) at %C");
433 gfc_warning (0, "Extension: Unary operator following "
434 "arithmetic operator (use parentheses) at %C");
436 m
= match_ext_add_operand (&e
);
441 all
= gfc_uminus (e
);
457 /* Match a level 2 expression. */
460 match_level_2 (gfc_expr
**result
)
462 gfc_expr
*all
, *e
, *total
;
467 where
= gfc_current_locus
;
472 m
= match_ext_add_operand (&e
);
475 gfc_error (expression_syntax
);
480 m
= match_add_operand (&e
);
490 all
= gfc_uminus (e
);
503 /* Append add-operands to the sum. */
507 where
= gfc_current_locus
;
512 m
= match_ext_add_operand (&e
);
514 gfc_error (expression_syntax
);
522 total
= gfc_subtract (all
, e
);
524 total
= gfc_add (all
, e
);
542 /* Match a level three expression. */
545 match_level_3 (gfc_expr
**result
)
547 gfc_expr
*all
, *e
, *total
= NULL
;
551 m
= match_level_2 (&all
);
557 if (!next_operator (INTRINSIC_CONCAT
))
560 where
= gfc_current_locus
;
562 m
= match_level_2 (&e
);
564 gfc_error (expression_syntax
);
571 total
= gfc_concat (all
, e
);
588 /* Match a level 4 expression. */
591 match_level_4 (gfc_expr
**result
)
593 gfc_expr
*left
, *right
, *r
;
599 m
= match_level_3 (&left
);
603 old_loc
= gfc_current_locus
;
605 if (gfc_match_intrinsic_op (&i
) != MATCH_YES
)
611 if (i
!= INTRINSIC_EQ
&& i
!= INTRINSIC_NE
&& i
!= INTRINSIC_GE
612 && i
!= INTRINSIC_LE
&& i
!= INTRINSIC_LT
&& i
!= INTRINSIC_GT
613 && i
!= INTRINSIC_EQ_OS
&& i
!= INTRINSIC_NE_OS
&& i
!= INTRINSIC_GE_OS
614 && i
!= INTRINSIC_LE_OS
&& i
!= INTRINSIC_LT_OS
&& i
!= INTRINSIC_GT_OS
)
616 gfc_current_locus
= old_loc
;
621 where
= gfc_current_locus
;
623 m
= match_level_3 (&right
);
625 gfc_error (expression_syntax
);
628 gfc_free_expr (left
);
635 case INTRINSIC_EQ_OS
:
636 r
= gfc_eq (left
, right
, i
);
640 case INTRINSIC_NE_OS
:
641 r
= gfc_ne (left
, right
, i
);
645 case INTRINSIC_LT_OS
:
646 r
= gfc_lt (left
, right
, i
);
650 case INTRINSIC_LE_OS
:
651 r
= gfc_le (left
, right
, i
);
655 case INTRINSIC_GT_OS
:
656 r
= gfc_gt (left
, right
, i
);
660 case INTRINSIC_GE_OS
:
661 r
= gfc_ge (left
, right
, i
);
665 gfc_internal_error ("match_level_4(): Bad operator");
670 gfc_free_expr (left
);
671 gfc_free_expr (right
);
683 match_and_operand (gfc_expr
**result
)
690 i
= next_operator (INTRINSIC_NOT
);
691 where
= gfc_current_locus
;
693 m
= match_level_4 (&e
);
716 match_or_operand (gfc_expr
**result
)
718 gfc_expr
*all
, *e
, *total
;
722 m
= match_and_operand (&all
);
728 if (!next_operator (INTRINSIC_AND
))
730 where
= gfc_current_locus
;
732 m
= match_and_operand (&e
);
734 gfc_error (expression_syntax
);
741 total
= gfc_and (all
, e
);
759 match_equiv_operand (gfc_expr
**result
)
761 gfc_expr
*all
, *e
, *total
;
765 m
= match_or_operand (&all
);
771 if (!next_operator (INTRINSIC_OR
))
773 where
= gfc_current_locus
;
775 m
= match_or_operand (&e
);
777 gfc_error (expression_syntax
);
784 total
= gfc_or (all
, e
);
801 /* Match a level 5 expression. */
804 match_level_5 (gfc_expr
**result
)
806 gfc_expr
*all
, *e
, *total
;
811 m
= match_equiv_operand (&all
);
817 if (next_operator (INTRINSIC_EQV
))
821 if (next_operator (INTRINSIC_NEQV
))
827 where
= gfc_current_locus
;
829 m
= match_equiv_operand (&e
);
831 gfc_error (expression_syntax
);
838 if (i
== INTRINSIC_EQV
)
839 total
= gfc_eqv (all
, e
);
841 total
= gfc_neqv (all
, e
);
859 /* Match an expression. At this level, we are stringing together
860 level 5 expressions separated by binary operators. */
863 gfc_match_expr (gfc_expr
**result
)
870 m
= match_level_5 (&all
);
877 m
= match_defined_operator (&uop
);
880 if (m
== MATCH_ERROR
)
886 where
= gfc_current_locus
;
888 m
= match_level_5 (&e
);
890 gfc_error (expression_syntax
);
897 all
= gfc_get_operator_expr (&where
, INTRINSIC_USER
, all
, e
);
898 all
->value
.op
.uop
= uop
;