Merge from mainline (163495:164578).
[official-gcc/graphite-test-results.git] / gcc / fortran / expr.c
blob5711634466634c119675cd7aab56779f4669ded5
1 /* Routines for manipulation of expression nodes.
2 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
3 2009, 2010
4 Free Software Foundation, Inc.
5 Contributed by Andy Vaught
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify it under
10 the terms of the GNU General Public License as published by the Free
11 Software Foundation; either version 3, or (at your option) any later
12 version.
14 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 for more details.
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
23 #include "config.h"
24 #include "system.h"
25 #include "gfortran.h"
26 #include "arith.h"
27 #include "match.h"
28 #include "target-memory.h" /* for gfc_convert_boz */
29 #include "constructor.h"
32 /* The following set of functions provide access to gfc_expr* of
33 various types - actual all but EXPR_FUNCTION and EXPR_VARIABLE.
35 There are two functions available elsewhere that provide
36 slightly different flavours of variables. Namely:
37 expr.c (gfc_get_variable_expr)
38 symbol.c (gfc_lval_expr_from_sym)
39 TODO: Merge these functions, if possible. */
41 /* Get a new expression node. */
43 gfc_expr *
44 gfc_get_expr (void)
46 gfc_expr *e;
48 e = XCNEW (gfc_expr);
49 gfc_clear_ts (&e->ts);
50 e->shape = NULL;
51 e->ref = NULL;
52 e->symtree = NULL;
53 return e;
57 /* Get a new expression node that is an array constructor
58 of given type and kind. */
60 gfc_expr *
61 gfc_get_array_expr (bt type, int kind, locus *where)
63 gfc_expr *e;
65 e = gfc_get_expr ();
66 e->expr_type = EXPR_ARRAY;
67 e->value.constructor = NULL;
68 e->rank = 1;
69 e->shape = NULL;
71 e->ts.type = type;
72 e->ts.kind = kind;
73 if (where)
74 e->where = *where;
76 return e;
80 /* Get a new expression node that is the NULL expression. */
82 gfc_expr *
83 gfc_get_null_expr (locus *where)
85 gfc_expr *e;
87 e = gfc_get_expr ();
88 e->expr_type = EXPR_NULL;
89 e->ts.type = BT_UNKNOWN;
91 if (where)
92 e->where = *where;
94 return e;
98 /* Get a new expression node that is an operator expression node. */
100 gfc_expr *
101 gfc_get_operator_expr (locus *where, gfc_intrinsic_op op,
102 gfc_expr *op1, gfc_expr *op2)
104 gfc_expr *e;
106 e = gfc_get_expr ();
107 e->expr_type = EXPR_OP;
108 e->value.op.op = op;
109 e->value.op.op1 = op1;
110 e->value.op.op2 = op2;
112 if (where)
113 e->where = *where;
115 return e;
119 /* Get a new expression node that is an structure constructor
120 of given type and kind. */
122 gfc_expr *
123 gfc_get_structure_constructor_expr (bt type, int kind, locus *where)
125 gfc_expr *e;
127 e = gfc_get_expr ();
128 e->expr_type = EXPR_STRUCTURE;
129 e->value.constructor = NULL;
131 e->ts.type = type;
132 e->ts.kind = kind;
133 if (where)
134 e->where = *where;
136 return e;
140 /* Get a new expression node that is an constant of given type and kind. */
142 gfc_expr *
143 gfc_get_constant_expr (bt type, int kind, locus *where)
145 gfc_expr *e;
147 if (!where)
148 gfc_internal_error ("gfc_get_constant_expr(): locus 'where' cannot be NULL");
150 e = gfc_get_expr ();
152 e->expr_type = EXPR_CONSTANT;
153 e->ts.type = type;
154 e->ts.kind = kind;
155 e->where = *where;
157 switch (type)
159 case BT_INTEGER:
160 mpz_init (e->value.integer);
161 break;
163 case BT_REAL:
164 gfc_set_model_kind (kind);
165 mpfr_init (e->value.real);
166 break;
168 case BT_COMPLEX:
169 gfc_set_model_kind (kind);
170 mpc_init2 (e->value.complex, mpfr_get_default_prec());
171 break;
173 default:
174 break;
177 return e;
181 /* Get a new expression node that is an string constant.
182 If no string is passed, a string of len is allocated,
183 blanked and null-terminated. */
185 gfc_expr *
186 gfc_get_character_expr (int kind, locus *where, const char *src, int len)
188 gfc_expr *e;
189 gfc_char_t *dest;
191 if (!src)
193 dest = gfc_get_wide_string (len + 1);
194 gfc_wide_memset (dest, ' ', len);
195 dest[len] = '\0';
197 else
198 dest = gfc_char_to_widechar (src);
200 e = gfc_get_constant_expr (BT_CHARACTER, kind,
201 where ? where : &gfc_current_locus);
202 e->value.character.string = dest;
203 e->value.character.length = len;
205 return e;
209 /* Get a new expression node that is an integer constant. */
211 gfc_expr *
212 gfc_get_int_expr (int kind, locus *where, int value)
214 gfc_expr *p;
215 p = gfc_get_constant_expr (BT_INTEGER, kind,
216 where ? where : &gfc_current_locus);
218 mpz_set_si (p->value.integer, value);
220 return p;
224 /* Get a new expression node that is a logical constant. */
226 gfc_expr *
227 gfc_get_logical_expr (int kind, locus *where, bool value)
229 gfc_expr *p;
230 p = gfc_get_constant_expr (BT_LOGICAL, kind,
231 where ? where : &gfc_current_locus);
233 p->value.logical = value;
235 return p;
239 gfc_expr *
240 gfc_get_iokind_expr (locus *where, io_kind k)
242 gfc_expr *e;
244 /* Set the types to something compatible with iokind. This is needed to
245 get through gfc_free_expr later since iokind really has no Basic Type,
246 BT, of its own. */
248 e = gfc_get_expr ();
249 e->expr_type = EXPR_CONSTANT;
250 e->ts.type = BT_LOGICAL;
251 e->value.iokind = k;
252 e->where = *where;
254 return e;
258 /* Given an expression pointer, return a copy of the expression. This
259 subroutine is recursive. */
261 gfc_expr *
262 gfc_copy_expr (gfc_expr *p)
264 gfc_expr *q;
265 gfc_char_t *s;
266 char *c;
268 if (p == NULL)
269 return NULL;
271 q = gfc_get_expr ();
272 *q = *p;
274 switch (q->expr_type)
276 case EXPR_SUBSTRING:
277 s = gfc_get_wide_string (p->value.character.length + 1);
278 q->value.character.string = s;
279 memcpy (s, p->value.character.string,
280 (p->value.character.length + 1) * sizeof (gfc_char_t));
281 break;
283 case EXPR_CONSTANT:
284 /* Copy target representation, if it exists. */
285 if (p->representation.string)
287 c = XCNEWVEC (char, p->representation.length + 1);
288 q->representation.string = c;
289 memcpy (c, p->representation.string, (p->representation.length + 1));
292 /* Copy the values of any pointer components of p->value. */
293 switch (q->ts.type)
295 case BT_INTEGER:
296 mpz_init_set (q->value.integer, p->value.integer);
297 break;
299 case BT_REAL:
300 gfc_set_model_kind (q->ts.kind);
301 mpfr_init (q->value.real);
302 mpfr_set (q->value.real, p->value.real, GFC_RND_MODE);
303 break;
305 case BT_COMPLEX:
306 gfc_set_model_kind (q->ts.kind);
307 mpc_init2 (q->value.complex, mpfr_get_default_prec());
308 mpc_set (q->value.complex, p->value.complex, GFC_MPC_RND_MODE);
309 break;
311 case BT_CHARACTER:
312 if (p->representation.string)
313 q->value.character.string
314 = gfc_char_to_widechar (q->representation.string);
315 else
317 s = gfc_get_wide_string (p->value.character.length + 1);
318 q->value.character.string = s;
320 /* This is the case for the C_NULL_CHAR named constant. */
321 if (p->value.character.length == 0
322 && (p->ts.is_c_interop || p->ts.is_iso_c))
324 *s = '\0';
325 /* Need to set the length to 1 to make sure the NUL
326 terminator is copied. */
327 q->value.character.length = 1;
329 else
330 memcpy (s, p->value.character.string,
331 (p->value.character.length + 1) * sizeof (gfc_char_t));
333 break;
335 case BT_HOLLERITH:
336 case BT_LOGICAL:
337 case BT_DERIVED:
338 case BT_CLASS:
339 break; /* Already done. */
341 case BT_PROCEDURE:
342 case BT_VOID:
343 /* Should never be reached. */
344 case BT_UNKNOWN:
345 gfc_internal_error ("gfc_copy_expr(): Bad expr node");
346 /* Not reached. */
349 break;
351 case EXPR_OP:
352 switch (q->value.op.op)
354 case INTRINSIC_NOT:
355 case INTRINSIC_PARENTHESES:
356 case INTRINSIC_UPLUS:
357 case INTRINSIC_UMINUS:
358 q->value.op.op1 = gfc_copy_expr (p->value.op.op1);
359 break;
361 default: /* Binary operators. */
362 q->value.op.op1 = gfc_copy_expr (p->value.op.op1);
363 q->value.op.op2 = gfc_copy_expr (p->value.op.op2);
364 break;
367 break;
369 case EXPR_FUNCTION:
370 q->value.function.actual =
371 gfc_copy_actual_arglist (p->value.function.actual);
372 break;
374 case EXPR_COMPCALL:
375 case EXPR_PPC:
376 q->value.compcall.actual =
377 gfc_copy_actual_arglist (p->value.compcall.actual);
378 q->value.compcall.tbp = p->value.compcall.tbp;
379 break;
381 case EXPR_STRUCTURE:
382 case EXPR_ARRAY:
383 q->value.constructor = gfc_constructor_copy (p->value.constructor);
384 break;
386 case EXPR_VARIABLE:
387 case EXPR_NULL:
388 break;
391 q->shape = gfc_copy_shape (p->shape, p->rank);
393 q->ref = gfc_copy_ref (p->ref);
395 return q;
399 /* Workhorse function for gfc_free_expr() that frees everything
400 beneath an expression node, but not the node itself. This is
401 useful when we want to simplify a node and replace it with
402 something else or the expression node belongs to another structure. */
404 static void
405 free_expr0 (gfc_expr *e)
407 int n;
409 switch (e->expr_type)
411 case EXPR_CONSTANT:
412 /* Free any parts of the value that need freeing. */
413 switch (e->ts.type)
415 case BT_INTEGER:
416 mpz_clear (e->value.integer);
417 break;
419 case BT_REAL:
420 mpfr_clear (e->value.real);
421 break;
423 case BT_CHARACTER:
424 gfc_free (e->value.character.string);
425 break;
427 case BT_COMPLEX:
428 mpc_clear (e->value.complex);
429 break;
431 default:
432 break;
435 /* Free the representation. */
436 if (e->representation.string)
437 gfc_free (e->representation.string);
439 break;
441 case EXPR_OP:
442 if (e->value.op.op1 != NULL)
443 gfc_free_expr (e->value.op.op1);
444 if (e->value.op.op2 != NULL)
445 gfc_free_expr (e->value.op.op2);
446 break;
448 case EXPR_FUNCTION:
449 gfc_free_actual_arglist (e->value.function.actual);
450 break;
452 case EXPR_COMPCALL:
453 case EXPR_PPC:
454 gfc_free_actual_arglist (e->value.compcall.actual);
455 break;
457 case EXPR_VARIABLE:
458 break;
460 case EXPR_ARRAY:
461 case EXPR_STRUCTURE:
462 gfc_constructor_free (e->value.constructor);
463 break;
465 case EXPR_SUBSTRING:
466 gfc_free (e->value.character.string);
467 break;
469 case EXPR_NULL:
470 break;
472 default:
473 gfc_internal_error ("free_expr0(): Bad expr type");
476 /* Free a shape array. */
477 if (e->shape != NULL)
479 for (n = 0; n < e->rank; n++)
480 mpz_clear (e->shape[n]);
482 gfc_free (e->shape);
485 gfc_free_ref_list (e->ref);
487 memset (e, '\0', sizeof (gfc_expr));
491 /* Free an expression node and everything beneath it. */
493 void
494 gfc_free_expr (gfc_expr *e)
496 if (e == NULL)
497 return;
498 free_expr0 (e);
499 gfc_free (e);
503 /* Free an argument list and everything below it. */
505 void
506 gfc_free_actual_arglist (gfc_actual_arglist *a1)
508 gfc_actual_arglist *a2;
510 while (a1)
512 a2 = a1->next;
513 gfc_free_expr (a1->expr);
514 gfc_free (a1);
515 a1 = a2;
520 /* Copy an arglist structure and all of the arguments. */
522 gfc_actual_arglist *
523 gfc_copy_actual_arglist (gfc_actual_arglist *p)
525 gfc_actual_arglist *head, *tail, *new_arg;
527 head = tail = NULL;
529 for (; p; p = p->next)
531 new_arg = gfc_get_actual_arglist ();
532 *new_arg = *p;
534 new_arg->expr = gfc_copy_expr (p->expr);
535 new_arg->next = NULL;
537 if (head == NULL)
538 head = new_arg;
539 else
540 tail->next = new_arg;
542 tail = new_arg;
545 return head;
549 /* Free a list of reference structures. */
551 void
552 gfc_free_ref_list (gfc_ref *p)
554 gfc_ref *q;
555 int i;
557 for (; p; p = q)
559 q = p->next;
561 switch (p->type)
563 case REF_ARRAY:
564 for (i = 0; i < GFC_MAX_DIMENSIONS; i++)
566 gfc_free_expr (p->u.ar.start[i]);
567 gfc_free_expr (p->u.ar.end[i]);
568 gfc_free_expr (p->u.ar.stride[i]);
571 break;
573 case REF_SUBSTRING:
574 gfc_free_expr (p->u.ss.start);
575 gfc_free_expr (p->u.ss.end);
576 break;
578 case REF_COMPONENT:
579 break;
582 gfc_free (p);
587 /* Graft the *src expression onto the *dest subexpression. */
589 void
590 gfc_replace_expr (gfc_expr *dest, gfc_expr *src)
592 free_expr0 (dest);
593 *dest = *src;
594 gfc_free (src);
598 /* Try to extract an integer constant from the passed expression node.
599 Returns an error message or NULL if the result is set. It is
600 tempting to generate an error and return SUCCESS or FAILURE, but
601 failure is OK for some callers. */
603 const char *
604 gfc_extract_int (gfc_expr *expr, int *result)
606 if (expr->expr_type != EXPR_CONSTANT)
607 return _("Constant expression required at %C");
609 if (expr->ts.type != BT_INTEGER)
610 return _("Integer expression required at %C");
612 if ((mpz_cmp_si (expr->value.integer, INT_MAX) > 0)
613 || (mpz_cmp_si (expr->value.integer, INT_MIN) < 0))
615 return _("Integer value too large in expression at %C");
618 *result = (int) mpz_get_si (expr->value.integer);
620 return NULL;
624 /* Recursively copy a list of reference structures. */
626 gfc_ref *
627 gfc_copy_ref (gfc_ref *src)
629 gfc_array_ref *ar;
630 gfc_ref *dest;
632 if (src == NULL)
633 return NULL;
635 dest = gfc_get_ref ();
636 dest->type = src->type;
638 switch (src->type)
640 case REF_ARRAY:
641 ar = gfc_copy_array_ref (&src->u.ar);
642 dest->u.ar = *ar;
643 gfc_free (ar);
644 break;
646 case REF_COMPONENT:
647 dest->u.c = src->u.c;
648 break;
650 case REF_SUBSTRING:
651 dest->u.ss = src->u.ss;
652 dest->u.ss.start = gfc_copy_expr (src->u.ss.start);
653 dest->u.ss.end = gfc_copy_expr (src->u.ss.end);
654 break;
657 dest->next = gfc_copy_ref (src->next);
659 return dest;
663 /* Detect whether an expression has any vector index array references. */
666 gfc_has_vector_index (gfc_expr *e)
668 gfc_ref *ref;
669 int i;
670 for (ref = e->ref; ref; ref = ref->next)
671 if (ref->type == REF_ARRAY)
672 for (i = 0; i < ref->u.ar.dimen; i++)
673 if (ref->u.ar.dimen_type[i] == DIMEN_VECTOR)
674 return 1;
675 return 0;
679 /* Copy a shape array. */
681 mpz_t *
682 gfc_copy_shape (mpz_t *shape, int rank)
684 mpz_t *new_shape;
685 int n;
687 if (shape == NULL)
688 return NULL;
690 new_shape = gfc_get_shape (rank);
692 for (n = 0; n < rank; n++)
693 mpz_init_set (new_shape[n], shape[n]);
695 return new_shape;
699 /* Copy a shape array excluding dimension N, where N is an integer
700 constant expression. Dimensions are numbered in fortran style --
701 starting with ONE.
703 So, if the original shape array contains R elements
704 { s1 ... sN-1 sN sN+1 ... sR-1 sR}
705 the result contains R-1 elements:
706 { s1 ... sN-1 sN+1 ... sR-1}
708 If anything goes wrong -- N is not a constant, its value is out
709 of range -- or anything else, just returns NULL. */
711 mpz_t *
712 gfc_copy_shape_excluding (mpz_t *shape, int rank, gfc_expr *dim)
714 mpz_t *new_shape, *s;
715 int i, n;
717 if (shape == NULL
718 || rank <= 1
719 || dim == NULL
720 || dim->expr_type != EXPR_CONSTANT
721 || dim->ts.type != BT_INTEGER)
722 return NULL;
724 n = mpz_get_si (dim->value.integer);
725 n--; /* Convert to zero based index. */
726 if (n < 0 || n >= rank)
727 return NULL;
729 s = new_shape = gfc_get_shape (rank - 1);
731 for (i = 0; i < rank; i++)
733 if (i == n)
734 continue;
735 mpz_init_set (*s, shape[i]);
736 s++;
739 return new_shape;
743 /* Return the maximum kind of two expressions. In general, higher
744 kind numbers mean more precision for numeric types. */
747 gfc_kind_max (gfc_expr *e1, gfc_expr *e2)
749 return (e1->ts.kind > e2->ts.kind) ? e1->ts.kind : e2->ts.kind;
753 /* Returns nonzero if the type is numeric, zero otherwise. */
755 static int
756 numeric_type (bt type)
758 return type == BT_COMPLEX || type == BT_REAL || type == BT_INTEGER;
762 /* Returns nonzero if the typespec is a numeric type, zero otherwise. */
765 gfc_numeric_ts (gfc_typespec *ts)
767 return numeric_type (ts->type);
771 /* Return an expression node with an optional argument list attached.
772 A variable number of gfc_expr pointers are strung together in an
773 argument list with a NULL pointer terminating the list. */
775 gfc_expr *
776 gfc_build_conversion (gfc_expr *e)
778 gfc_expr *p;
780 p = gfc_get_expr ();
781 p->expr_type = EXPR_FUNCTION;
782 p->symtree = NULL;
783 p->value.function.actual = NULL;
785 p->value.function.actual = gfc_get_actual_arglist ();
786 p->value.function.actual->expr = e;
788 return p;
792 /* Given an expression node with some sort of numeric binary
793 expression, insert type conversions required to make the operands
794 have the same type. Conversion warnings are disabled if wconversion
795 is set to 0.
797 The exception is that the operands of an exponential don't have to
798 have the same type. If possible, the base is promoted to the type
799 of the exponent. For example, 1**2.3 becomes 1.0**2.3, but
800 1.0**2 stays as it is. */
802 void
803 gfc_type_convert_binary (gfc_expr *e, int wconversion)
805 gfc_expr *op1, *op2;
807 op1 = e->value.op.op1;
808 op2 = e->value.op.op2;
810 if (op1->ts.type == BT_UNKNOWN || op2->ts.type == BT_UNKNOWN)
812 gfc_clear_ts (&e->ts);
813 return;
816 /* Kind conversions of same type. */
817 if (op1->ts.type == op2->ts.type)
819 if (op1->ts.kind == op2->ts.kind)
821 /* No type conversions. */
822 e->ts = op1->ts;
823 goto done;
826 if (op1->ts.kind > op2->ts.kind)
827 gfc_convert_type_warn (op2, &op1->ts, 2, wconversion);
828 else
829 gfc_convert_type_warn (op1, &op2->ts, 2, wconversion);
831 e->ts = op1->ts;
832 goto done;
835 /* Integer combined with real or complex. */
836 if (op2->ts.type == BT_INTEGER)
838 e->ts = op1->ts;
840 /* Special case for ** operator. */
841 if (e->value.op.op == INTRINSIC_POWER)
842 goto done;
844 gfc_convert_type_warn (e->value.op.op2, &e->ts, 2, wconversion);
845 goto done;
848 if (op1->ts.type == BT_INTEGER)
850 e->ts = op2->ts;
851 gfc_convert_type_warn (e->value.op.op1, &e->ts, 2, wconversion);
852 goto done;
855 /* Real combined with complex. */
856 e->ts.type = BT_COMPLEX;
857 if (op1->ts.kind > op2->ts.kind)
858 e->ts.kind = op1->ts.kind;
859 else
860 e->ts.kind = op2->ts.kind;
861 if (op1->ts.type != BT_COMPLEX || op1->ts.kind != e->ts.kind)
862 gfc_convert_type_warn (e->value.op.op1, &e->ts, 2, wconversion);
863 if (op2->ts.type != BT_COMPLEX || op2->ts.kind != e->ts.kind)
864 gfc_convert_type_warn (e->value.op.op2, &e->ts, 2, wconversion);
866 done:
867 return;
871 static match
872 check_specification_function (gfc_expr *e)
874 gfc_symbol *sym;
876 if (!e->symtree)
877 return MATCH_NO;
879 sym = e->symtree->n.sym;
881 /* F95, 7.1.6.2; F2003, 7.1.7 */
882 if (sym
883 && sym->attr.function
884 && sym->attr.pure
885 && !sym->attr.intrinsic
886 && !sym->attr.recursive
887 && sym->attr.proc != PROC_INTERNAL
888 && sym->attr.proc != PROC_ST_FUNCTION
889 && sym->attr.proc != PROC_UNKNOWN
890 && sym->formal == NULL)
891 return MATCH_YES;
893 return MATCH_NO;
896 /* Function to determine if an expression is constant or not. This
897 function expects that the expression has already been simplified. */
900 gfc_is_constant_expr (gfc_expr *e)
902 gfc_constructor *c;
903 gfc_actual_arglist *arg;
905 if (e == NULL)
906 return 1;
908 switch (e->expr_type)
910 case EXPR_OP:
911 return (gfc_is_constant_expr (e->value.op.op1)
912 && (e->value.op.op2 == NULL
913 || gfc_is_constant_expr (e->value.op.op2)));
915 case EXPR_VARIABLE:
916 return 0;
918 case EXPR_FUNCTION:
919 case EXPR_PPC:
920 case EXPR_COMPCALL:
921 /* Specification functions are constant. */
922 if (check_specification_function (e) == MATCH_YES)
923 return 1;
925 /* Call to intrinsic with at least one argument. */
926 if (e->value.function.isym && e->value.function.actual)
928 for (arg = e->value.function.actual; arg; arg = arg->next)
929 if (!gfc_is_constant_expr (arg->expr))
930 return 0;
932 return 1;
934 else
935 return 0;
937 case EXPR_CONSTANT:
938 case EXPR_NULL:
939 return 1;
941 case EXPR_SUBSTRING:
942 return e->ref == NULL || (gfc_is_constant_expr (e->ref->u.ss.start)
943 && gfc_is_constant_expr (e->ref->u.ss.end));
945 case EXPR_STRUCTURE:
946 for (c = gfc_constructor_first (e->value.constructor);
947 c; c = gfc_constructor_next (c))
948 if (!gfc_is_constant_expr (c->expr))
949 return 0;
951 return 1;
953 case EXPR_ARRAY:
954 return gfc_constant_ac (e);
956 default:
957 gfc_internal_error ("gfc_is_constant_expr(): Unknown expression type");
958 return 0;
963 /* Is true if an array reference is followed by a component or substring
964 reference. */
965 bool
966 is_subref_array (gfc_expr * e)
968 gfc_ref * ref;
969 bool seen_array;
971 if (e->expr_type != EXPR_VARIABLE)
972 return false;
974 if (e->symtree->n.sym->attr.subref_array_pointer)
975 return true;
977 seen_array = false;
978 for (ref = e->ref; ref; ref = ref->next)
980 if (ref->type == REF_ARRAY
981 && ref->u.ar.type != AR_ELEMENT)
982 seen_array = true;
984 if (seen_array
985 && ref->type != REF_ARRAY)
986 return seen_array;
988 return false;
992 /* Try to collapse intrinsic expressions. */
994 static gfc_try
995 simplify_intrinsic_op (gfc_expr *p, int type)
997 gfc_intrinsic_op op;
998 gfc_expr *op1, *op2, *result;
1000 if (p->value.op.op == INTRINSIC_USER)
1001 return SUCCESS;
1003 op1 = p->value.op.op1;
1004 op2 = p->value.op.op2;
1005 op = p->value.op.op;
1007 if (gfc_simplify_expr (op1, type) == FAILURE)
1008 return FAILURE;
1009 if (gfc_simplify_expr (op2, type) == FAILURE)
1010 return FAILURE;
1012 if (!gfc_is_constant_expr (op1)
1013 || (op2 != NULL && !gfc_is_constant_expr (op2)))
1014 return SUCCESS;
1016 /* Rip p apart. */
1017 p->value.op.op1 = NULL;
1018 p->value.op.op2 = NULL;
1020 switch (op)
1022 case INTRINSIC_PARENTHESES:
1023 result = gfc_parentheses (op1);
1024 break;
1026 case INTRINSIC_UPLUS:
1027 result = gfc_uplus (op1);
1028 break;
1030 case INTRINSIC_UMINUS:
1031 result = gfc_uminus (op1);
1032 break;
1034 case INTRINSIC_PLUS:
1035 result = gfc_add (op1, op2);
1036 break;
1038 case INTRINSIC_MINUS:
1039 result = gfc_subtract (op1, op2);
1040 break;
1042 case INTRINSIC_TIMES:
1043 result = gfc_multiply (op1, op2);
1044 break;
1046 case INTRINSIC_DIVIDE:
1047 result = gfc_divide (op1, op2);
1048 break;
1050 case INTRINSIC_POWER:
1051 result = gfc_power (op1, op2);
1052 break;
1054 case INTRINSIC_CONCAT:
1055 result = gfc_concat (op1, op2);
1056 break;
1058 case INTRINSIC_EQ:
1059 case INTRINSIC_EQ_OS:
1060 result = gfc_eq (op1, op2, op);
1061 break;
1063 case INTRINSIC_NE:
1064 case INTRINSIC_NE_OS:
1065 result = gfc_ne (op1, op2, op);
1066 break;
1068 case INTRINSIC_GT:
1069 case INTRINSIC_GT_OS:
1070 result = gfc_gt (op1, op2, op);
1071 break;
1073 case INTRINSIC_GE:
1074 case INTRINSIC_GE_OS:
1075 result = gfc_ge (op1, op2, op);
1076 break;
1078 case INTRINSIC_LT:
1079 case INTRINSIC_LT_OS:
1080 result = gfc_lt (op1, op2, op);
1081 break;
1083 case INTRINSIC_LE:
1084 case INTRINSIC_LE_OS:
1085 result = gfc_le (op1, op2, op);
1086 break;
1088 case INTRINSIC_NOT:
1089 result = gfc_not (op1);
1090 break;
1092 case INTRINSIC_AND:
1093 result = gfc_and (op1, op2);
1094 break;
1096 case INTRINSIC_OR:
1097 result = gfc_or (op1, op2);
1098 break;
1100 case INTRINSIC_EQV:
1101 result = gfc_eqv (op1, op2);
1102 break;
1104 case INTRINSIC_NEQV:
1105 result = gfc_neqv (op1, op2);
1106 break;
1108 default:
1109 gfc_internal_error ("simplify_intrinsic_op(): Bad operator");
1112 if (result == NULL)
1114 gfc_free_expr (op1);
1115 gfc_free_expr (op2);
1116 return FAILURE;
1119 result->rank = p->rank;
1120 result->where = p->where;
1121 gfc_replace_expr (p, result);
1123 return SUCCESS;
1127 /* Subroutine to simplify constructor expressions. Mutually recursive
1128 with gfc_simplify_expr(). */
1130 static gfc_try
1131 simplify_constructor (gfc_constructor_base base, int type)
1133 gfc_constructor *c;
1134 gfc_expr *p;
1136 for (c = gfc_constructor_first (base); c; c = gfc_constructor_next (c))
1138 if (c->iterator
1139 && (gfc_simplify_expr (c->iterator->start, type) == FAILURE
1140 || gfc_simplify_expr (c->iterator->end, type) == FAILURE
1141 || gfc_simplify_expr (c->iterator->step, type) == FAILURE))
1142 return FAILURE;
1144 if (c->expr)
1146 /* Try and simplify a copy. Replace the original if successful
1147 but keep going through the constructor at all costs. Not
1148 doing so can make a dog's dinner of complicated things. */
1149 p = gfc_copy_expr (c->expr);
1151 if (gfc_simplify_expr (p, type) == FAILURE)
1153 gfc_free_expr (p);
1154 continue;
1157 gfc_replace_expr (c->expr, p);
1161 return SUCCESS;
1165 /* Pull a single array element out of an array constructor. */
1167 static gfc_try
1168 find_array_element (gfc_constructor_base base, gfc_array_ref *ar,
1169 gfc_constructor **rval)
1171 unsigned long nelemen;
1172 int i;
1173 mpz_t delta;
1174 mpz_t offset;
1175 mpz_t span;
1176 mpz_t tmp;
1177 gfc_constructor *cons;
1178 gfc_expr *e;
1179 gfc_try t;
1181 t = SUCCESS;
1182 e = NULL;
1184 mpz_init_set_ui (offset, 0);
1185 mpz_init (delta);
1186 mpz_init (tmp);
1187 mpz_init_set_ui (span, 1);
1188 for (i = 0; i < ar->dimen; i++)
1190 if (gfc_reduce_init_expr (ar->as->lower[i]) == FAILURE
1191 || gfc_reduce_init_expr (ar->as->upper[i]) == FAILURE)
1193 t = FAILURE;
1194 cons = NULL;
1195 goto depart;
1198 e = gfc_copy_expr (ar->start[i]);
1199 if (e->expr_type != EXPR_CONSTANT)
1201 cons = NULL;
1202 goto depart;
1205 gcc_assert (ar->as->upper[i]->expr_type == EXPR_CONSTANT
1206 && ar->as->lower[i]->expr_type == EXPR_CONSTANT);
1208 /* Check the bounds. */
1209 if ((ar->as->upper[i]
1210 && mpz_cmp (e->value.integer,
1211 ar->as->upper[i]->value.integer) > 0)
1212 || (mpz_cmp (e->value.integer,
1213 ar->as->lower[i]->value.integer) < 0))
1215 gfc_error ("Index in dimension %d is out of bounds "
1216 "at %L", i + 1, &ar->c_where[i]);
1217 cons = NULL;
1218 t = FAILURE;
1219 goto depart;
1222 mpz_sub (delta, e->value.integer, ar->as->lower[i]->value.integer);
1223 mpz_mul (delta, delta, span);
1224 mpz_add (offset, offset, delta);
1226 mpz_set_ui (tmp, 1);
1227 mpz_add (tmp, tmp, ar->as->upper[i]->value.integer);
1228 mpz_sub (tmp, tmp, ar->as->lower[i]->value.integer);
1229 mpz_mul (span, span, tmp);
1232 for (cons = gfc_constructor_first (base), nelemen = mpz_get_ui (offset);
1233 cons && nelemen > 0; cons = gfc_constructor_next (cons), nelemen--)
1235 if (cons->iterator)
1237 cons = NULL;
1238 goto depart;
1242 depart:
1243 mpz_clear (delta);
1244 mpz_clear (offset);
1245 mpz_clear (span);
1246 mpz_clear (tmp);
1247 if (e)
1248 gfc_free_expr (e);
1249 *rval = cons;
1250 return t;
1254 /* Find a component of a structure constructor. */
1256 static gfc_constructor *
1257 find_component_ref (gfc_constructor_base base, gfc_ref *ref)
1259 gfc_component *comp;
1260 gfc_component *pick;
1261 gfc_constructor *c = gfc_constructor_first (base);
1263 comp = ref->u.c.sym->components;
1264 pick = ref->u.c.component;
1265 while (comp != pick)
1267 comp = comp->next;
1268 c = gfc_constructor_next (c);
1271 return c;
1275 /* Replace an expression with the contents of a constructor, removing
1276 the subobject reference in the process. */
1278 static void
1279 remove_subobject_ref (gfc_expr *p, gfc_constructor *cons)
1281 gfc_expr *e;
1283 if (cons)
1285 e = cons->expr;
1286 cons->expr = NULL;
1288 else
1289 e = gfc_copy_expr (p);
1290 e->ref = p->ref->next;
1291 p->ref->next = NULL;
1292 gfc_replace_expr (p, e);
1296 /* Pull an array section out of an array constructor. */
1298 static gfc_try
1299 find_array_section (gfc_expr *expr, gfc_ref *ref)
1301 int idx;
1302 int rank;
1303 int d;
1304 int shape_i;
1305 int limit;
1306 long unsigned one = 1;
1307 bool incr_ctr;
1308 mpz_t start[GFC_MAX_DIMENSIONS];
1309 mpz_t end[GFC_MAX_DIMENSIONS];
1310 mpz_t stride[GFC_MAX_DIMENSIONS];
1311 mpz_t delta[GFC_MAX_DIMENSIONS];
1312 mpz_t ctr[GFC_MAX_DIMENSIONS];
1313 mpz_t delta_mpz;
1314 mpz_t tmp_mpz;
1315 mpz_t nelts;
1316 mpz_t ptr;
1317 gfc_constructor_base base;
1318 gfc_constructor *cons, *vecsub[GFC_MAX_DIMENSIONS];
1319 gfc_expr *begin;
1320 gfc_expr *finish;
1321 gfc_expr *step;
1322 gfc_expr *upper;
1323 gfc_expr *lower;
1324 gfc_try t;
1326 t = SUCCESS;
1328 base = expr->value.constructor;
1329 expr->value.constructor = NULL;
1331 rank = ref->u.ar.as->rank;
1333 if (expr->shape == NULL)
1334 expr->shape = gfc_get_shape (rank);
1336 mpz_init_set_ui (delta_mpz, one);
1337 mpz_init_set_ui (nelts, one);
1338 mpz_init (tmp_mpz);
1340 /* Do the initialization now, so that we can cleanup without
1341 keeping track of where we were. */
1342 for (d = 0; d < rank; d++)
1344 mpz_init (delta[d]);
1345 mpz_init (start[d]);
1346 mpz_init (end[d]);
1347 mpz_init (ctr[d]);
1348 mpz_init (stride[d]);
1349 vecsub[d] = NULL;
1352 /* Build the counters to clock through the array reference. */
1353 shape_i = 0;
1354 for (d = 0; d < rank; d++)
1356 /* Make this stretch of code easier on the eye! */
1357 begin = ref->u.ar.start[d];
1358 finish = ref->u.ar.end[d];
1359 step = ref->u.ar.stride[d];
1360 lower = ref->u.ar.as->lower[d];
1361 upper = ref->u.ar.as->upper[d];
1363 if (ref->u.ar.dimen_type[d] == DIMEN_VECTOR) /* Vector subscript. */
1365 gfc_constructor *ci;
1366 gcc_assert (begin);
1368 if (begin->expr_type != EXPR_ARRAY || !gfc_is_constant_expr (begin))
1370 t = FAILURE;
1371 goto cleanup;
1374 gcc_assert (begin->rank == 1);
1375 /* Zero-sized arrays have no shape and no elements, stop early. */
1376 if (!begin->shape)
1378 mpz_init_set_ui (nelts, 0);
1379 break;
1382 vecsub[d] = gfc_constructor_first (begin->value.constructor);
1383 mpz_set (ctr[d], vecsub[d]->expr->value.integer);
1384 mpz_mul (nelts, nelts, begin->shape[0]);
1385 mpz_set (expr->shape[shape_i++], begin->shape[0]);
1387 /* Check bounds. */
1388 for (ci = vecsub[d]; ci; ci = gfc_constructor_next (ci))
1390 if (mpz_cmp (ci->expr->value.integer, upper->value.integer) > 0
1391 || mpz_cmp (ci->expr->value.integer,
1392 lower->value.integer) < 0)
1394 gfc_error ("index in dimension %d is out of bounds "
1395 "at %L", d + 1, &ref->u.ar.c_where[d]);
1396 t = FAILURE;
1397 goto cleanup;
1401 else
1403 if ((begin && begin->expr_type != EXPR_CONSTANT)
1404 || (finish && finish->expr_type != EXPR_CONSTANT)
1405 || (step && step->expr_type != EXPR_CONSTANT))
1407 t = FAILURE;
1408 goto cleanup;
1411 /* Obtain the stride. */
1412 if (step)
1413 mpz_set (stride[d], step->value.integer);
1414 else
1415 mpz_set_ui (stride[d], one);
1417 if (mpz_cmp_ui (stride[d], 0) == 0)
1418 mpz_set_ui (stride[d], one);
1420 /* Obtain the start value for the index. */
1421 if (begin)
1422 mpz_set (start[d], begin->value.integer);
1423 else
1424 mpz_set (start[d], lower->value.integer);
1426 mpz_set (ctr[d], start[d]);
1428 /* Obtain the end value for the index. */
1429 if (finish)
1430 mpz_set (end[d], finish->value.integer);
1431 else
1432 mpz_set (end[d], upper->value.integer);
1434 /* Separate 'if' because elements sometimes arrive with
1435 non-null end. */
1436 if (ref->u.ar.dimen_type[d] == DIMEN_ELEMENT)
1437 mpz_set (end [d], begin->value.integer);
1439 /* Check the bounds. */
1440 if (mpz_cmp (ctr[d], upper->value.integer) > 0
1441 || mpz_cmp (end[d], upper->value.integer) > 0
1442 || mpz_cmp (ctr[d], lower->value.integer) < 0
1443 || mpz_cmp (end[d], lower->value.integer) < 0)
1445 gfc_error ("index in dimension %d is out of bounds "
1446 "at %L", d + 1, &ref->u.ar.c_where[d]);
1447 t = FAILURE;
1448 goto cleanup;
1451 /* Calculate the number of elements and the shape. */
1452 mpz_set (tmp_mpz, stride[d]);
1453 mpz_add (tmp_mpz, end[d], tmp_mpz);
1454 mpz_sub (tmp_mpz, tmp_mpz, ctr[d]);
1455 mpz_div (tmp_mpz, tmp_mpz, stride[d]);
1456 mpz_mul (nelts, nelts, tmp_mpz);
1458 /* An element reference reduces the rank of the expression; don't
1459 add anything to the shape array. */
1460 if (ref->u.ar.dimen_type[d] != DIMEN_ELEMENT)
1461 mpz_set (expr->shape[shape_i++], tmp_mpz);
1464 /* Calculate the 'stride' (=delta) for conversion of the
1465 counter values into the index along the constructor. */
1466 mpz_set (delta[d], delta_mpz);
1467 mpz_sub (tmp_mpz, upper->value.integer, lower->value.integer);
1468 mpz_add_ui (tmp_mpz, tmp_mpz, one);
1469 mpz_mul (delta_mpz, delta_mpz, tmp_mpz);
1472 mpz_init (ptr);
1473 cons = gfc_constructor_first (base);
1475 /* Now clock through the array reference, calculating the index in
1476 the source constructor and transferring the elements to the new
1477 constructor. */
1478 for (idx = 0; idx < (int) mpz_get_si (nelts); idx++)
1480 if (ref->u.ar.offset)
1481 mpz_set (ptr, ref->u.ar.offset->value.integer);
1482 else
1483 mpz_init_set_ui (ptr, 0);
1485 incr_ctr = true;
1486 for (d = 0; d < rank; d++)
1488 mpz_set (tmp_mpz, ctr[d]);
1489 mpz_sub (tmp_mpz, tmp_mpz, ref->u.ar.as->lower[d]->value.integer);
1490 mpz_mul (tmp_mpz, tmp_mpz, delta[d]);
1491 mpz_add (ptr, ptr, tmp_mpz);
1493 if (!incr_ctr) continue;
1495 if (ref->u.ar.dimen_type[d] == DIMEN_VECTOR) /* Vector subscript. */
1497 gcc_assert(vecsub[d]);
1499 if (!gfc_constructor_next (vecsub[d]))
1500 vecsub[d] = gfc_constructor_first (ref->u.ar.start[d]->value.constructor);
1501 else
1503 vecsub[d] = gfc_constructor_next (vecsub[d]);
1504 incr_ctr = false;
1506 mpz_set (ctr[d], vecsub[d]->expr->value.integer);
1508 else
1510 mpz_add (ctr[d], ctr[d], stride[d]);
1512 if (mpz_cmp_ui (stride[d], 0) > 0
1513 ? mpz_cmp (ctr[d], end[d]) > 0
1514 : mpz_cmp (ctr[d], end[d]) < 0)
1515 mpz_set (ctr[d], start[d]);
1516 else
1517 incr_ctr = false;
1521 limit = mpz_get_ui (ptr);
1522 if (limit >= gfc_option.flag_max_array_constructor)
1524 gfc_error ("The number of elements in the array constructor "
1525 "at %L requires an increase of the allowed %d "
1526 "upper limit. See -fmax-array-constructor "
1527 "option", &expr->where,
1528 gfc_option.flag_max_array_constructor);
1529 return FAILURE;
1532 cons = gfc_constructor_lookup (base, limit);
1533 gcc_assert (cons);
1534 gfc_constructor_append_expr (&expr->value.constructor,
1535 gfc_copy_expr (cons->expr), NULL);
1538 mpz_clear (ptr);
1540 cleanup:
1542 mpz_clear (delta_mpz);
1543 mpz_clear (tmp_mpz);
1544 mpz_clear (nelts);
1545 for (d = 0; d < rank; d++)
1547 mpz_clear (delta[d]);
1548 mpz_clear (start[d]);
1549 mpz_clear (end[d]);
1550 mpz_clear (ctr[d]);
1551 mpz_clear (stride[d]);
1553 gfc_constructor_free (base);
1554 return t;
1557 /* Pull a substring out of an expression. */
1559 static gfc_try
1560 find_substring_ref (gfc_expr *p, gfc_expr **newp)
1562 int end;
1563 int start;
1564 int length;
1565 gfc_char_t *chr;
1567 if (p->ref->u.ss.start->expr_type != EXPR_CONSTANT
1568 || p->ref->u.ss.end->expr_type != EXPR_CONSTANT)
1569 return FAILURE;
1571 *newp = gfc_copy_expr (p);
1572 gfc_free ((*newp)->value.character.string);
1574 end = (int) mpz_get_ui (p->ref->u.ss.end->value.integer);
1575 start = (int) mpz_get_ui (p->ref->u.ss.start->value.integer);
1576 length = end - start + 1;
1578 chr = (*newp)->value.character.string = gfc_get_wide_string (length + 1);
1579 (*newp)->value.character.length = length;
1580 memcpy (chr, &p->value.character.string[start - 1],
1581 length * sizeof (gfc_char_t));
1582 chr[length] = '\0';
1583 return SUCCESS;
1588 /* Simplify a subobject reference of a constructor. This occurs when
1589 parameter variable values are substituted. */
1591 static gfc_try
1592 simplify_const_ref (gfc_expr *p)
1594 gfc_constructor *cons, *c;
1595 gfc_expr *newp;
1596 gfc_ref *last_ref;
1598 while (p->ref)
1600 switch (p->ref->type)
1602 case REF_ARRAY:
1603 switch (p->ref->u.ar.type)
1605 case AR_ELEMENT:
1606 /* <type/kind spec>, parameter :: x(<int>) = scalar_expr
1607 will generate this. */
1608 if (p->expr_type != EXPR_ARRAY)
1610 remove_subobject_ref (p, NULL);
1611 break;
1613 if (find_array_element (p->value.constructor, &p->ref->u.ar,
1614 &cons) == FAILURE)
1615 return FAILURE;
1617 if (!cons)
1618 return SUCCESS;
1620 remove_subobject_ref (p, cons);
1621 break;
1623 case AR_SECTION:
1624 if (find_array_section (p, p->ref) == FAILURE)
1625 return FAILURE;
1626 p->ref->u.ar.type = AR_FULL;
1628 /* Fall through. */
1630 case AR_FULL:
1631 if (p->ref->next != NULL
1632 && (p->ts.type == BT_CHARACTER || p->ts.type == BT_DERIVED))
1634 for (c = gfc_constructor_first (p->value.constructor);
1635 c; c = gfc_constructor_next (c))
1637 c->expr->ref = gfc_copy_ref (p->ref->next);
1638 if (simplify_const_ref (c->expr) == FAILURE)
1639 return FAILURE;
1642 if (p->ts.type == BT_DERIVED
1643 && p->ref->next
1644 && (c = gfc_constructor_first (p->value.constructor)))
1646 /* There may have been component references. */
1647 p->ts = c->expr->ts;
1650 last_ref = p->ref;
1651 for (; last_ref->next; last_ref = last_ref->next) {};
1653 if (p->ts.type == BT_CHARACTER
1654 && last_ref->type == REF_SUBSTRING)
1656 /* If this is a CHARACTER array and we possibly took
1657 a substring out of it, update the type-spec's
1658 character length according to the first element
1659 (as all should have the same length). */
1660 int string_len;
1661 if ((c = gfc_constructor_first (p->value.constructor)))
1663 const gfc_expr* first = c->expr;
1664 gcc_assert (first->expr_type == EXPR_CONSTANT);
1665 gcc_assert (first->ts.type == BT_CHARACTER);
1666 string_len = first->value.character.length;
1668 else
1669 string_len = 0;
1671 if (!p->ts.u.cl)
1672 p->ts.u.cl = gfc_new_charlen (p->symtree->n.sym->ns,
1673 NULL);
1674 else
1675 gfc_free_expr (p->ts.u.cl->length);
1677 p->ts.u.cl->length
1678 = gfc_get_int_expr (gfc_default_integer_kind,
1679 NULL, string_len);
1682 gfc_free_ref_list (p->ref);
1683 p->ref = NULL;
1684 break;
1686 default:
1687 return SUCCESS;
1690 break;
1692 case REF_COMPONENT:
1693 cons = find_component_ref (p->value.constructor, p->ref);
1694 remove_subobject_ref (p, cons);
1695 break;
1697 case REF_SUBSTRING:
1698 if (find_substring_ref (p, &newp) == FAILURE)
1699 return FAILURE;
1701 gfc_replace_expr (p, newp);
1702 gfc_free_ref_list (p->ref);
1703 p->ref = NULL;
1704 break;
1708 return SUCCESS;
1712 /* Simplify a chain of references. */
1714 static gfc_try
1715 simplify_ref_chain (gfc_ref *ref, int type)
1717 int n;
1719 for (; ref; ref = ref->next)
1721 switch (ref->type)
1723 case REF_ARRAY:
1724 for (n = 0; n < ref->u.ar.dimen; n++)
1726 if (gfc_simplify_expr (ref->u.ar.start[n], type) == FAILURE)
1727 return FAILURE;
1728 if (gfc_simplify_expr (ref->u.ar.end[n], type) == FAILURE)
1729 return FAILURE;
1730 if (gfc_simplify_expr (ref->u.ar.stride[n], type) == FAILURE)
1731 return FAILURE;
1733 break;
1735 case REF_SUBSTRING:
1736 if (gfc_simplify_expr (ref->u.ss.start, type) == FAILURE)
1737 return FAILURE;
1738 if (gfc_simplify_expr (ref->u.ss.end, type) == FAILURE)
1739 return FAILURE;
1740 break;
1742 default:
1743 break;
1746 return SUCCESS;
1750 /* Try to substitute the value of a parameter variable. */
1752 static gfc_try
1753 simplify_parameter_variable (gfc_expr *p, int type)
1755 gfc_expr *e;
1756 gfc_try t;
1758 e = gfc_copy_expr (p->symtree->n.sym->value);
1759 if (e == NULL)
1760 return FAILURE;
1762 e->rank = p->rank;
1764 /* Do not copy subobject refs for constant. */
1765 if (e->expr_type != EXPR_CONSTANT && p->ref != NULL)
1766 e->ref = gfc_copy_ref (p->ref);
1767 t = gfc_simplify_expr (e, type);
1769 /* Only use the simplification if it eliminated all subobject references. */
1770 if (t == SUCCESS && !e->ref)
1771 gfc_replace_expr (p, e);
1772 else
1773 gfc_free_expr (e);
1775 return t;
1778 /* Given an expression, simplify it by collapsing constant
1779 expressions. Most simplification takes place when the expression
1780 tree is being constructed. If an intrinsic function is simplified
1781 at some point, we get called again to collapse the result against
1782 other constants.
1784 We work by recursively simplifying expression nodes, simplifying
1785 intrinsic functions where possible, which can lead to further
1786 constant collapsing. If an operator has constant operand(s), we
1787 rip the expression apart, and rebuild it, hoping that it becomes
1788 something simpler.
1790 The expression type is defined for:
1791 0 Basic expression parsing
1792 1 Simplifying array constructors -- will substitute
1793 iterator values.
1794 Returns FAILURE on error, SUCCESS otherwise.
1795 NOTE: Will return SUCCESS even if the expression can not be simplified. */
1797 gfc_try
1798 gfc_simplify_expr (gfc_expr *p, int type)
1800 gfc_actual_arglist *ap;
1802 if (p == NULL)
1803 return SUCCESS;
1805 switch (p->expr_type)
1807 case EXPR_CONSTANT:
1808 case EXPR_NULL:
1809 break;
1811 case EXPR_FUNCTION:
1812 for (ap = p->value.function.actual; ap; ap = ap->next)
1813 if (gfc_simplify_expr (ap->expr, type) == FAILURE)
1814 return FAILURE;
1816 if (p->value.function.isym != NULL
1817 && gfc_intrinsic_func_interface (p, 1) == MATCH_ERROR)
1818 return FAILURE;
1820 break;
1822 case EXPR_SUBSTRING:
1823 if (simplify_ref_chain (p->ref, type) == FAILURE)
1824 return FAILURE;
1826 if (gfc_is_constant_expr (p))
1828 gfc_char_t *s;
1829 int start, end;
1831 start = 0;
1832 if (p->ref && p->ref->u.ss.start)
1834 gfc_extract_int (p->ref->u.ss.start, &start);
1835 start--; /* Convert from one-based to zero-based. */
1838 end = p->value.character.length;
1839 if (p->ref && p->ref->u.ss.end)
1840 gfc_extract_int (p->ref->u.ss.end, &end);
1842 s = gfc_get_wide_string (end - start + 2);
1843 memcpy (s, p->value.character.string + start,
1844 (end - start) * sizeof (gfc_char_t));
1845 s[end - start + 1] = '\0'; /* TODO: C-style string. */
1846 gfc_free (p->value.character.string);
1847 p->value.character.string = s;
1848 p->value.character.length = end - start;
1849 p->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
1850 p->ts.u.cl->length = gfc_get_int_expr (gfc_default_integer_kind,
1851 NULL,
1852 p->value.character.length);
1853 gfc_free_ref_list (p->ref);
1854 p->ref = NULL;
1855 p->expr_type = EXPR_CONSTANT;
1857 break;
1859 case EXPR_OP:
1860 if (simplify_intrinsic_op (p, type) == FAILURE)
1861 return FAILURE;
1862 break;
1864 case EXPR_VARIABLE:
1865 /* Only substitute array parameter variables if we are in an
1866 initialization expression, or we want a subsection. */
1867 if (p->symtree->n.sym->attr.flavor == FL_PARAMETER
1868 && (gfc_init_expr_flag || p->ref
1869 || p->symtree->n.sym->value->expr_type != EXPR_ARRAY))
1871 if (simplify_parameter_variable (p, type) == FAILURE)
1872 return FAILURE;
1873 break;
1876 if (type == 1)
1878 gfc_simplify_iterator_var (p);
1881 /* Simplify subcomponent references. */
1882 if (simplify_ref_chain (p->ref, type) == FAILURE)
1883 return FAILURE;
1885 break;
1887 case EXPR_STRUCTURE:
1888 case EXPR_ARRAY:
1889 if (simplify_ref_chain (p->ref, type) == FAILURE)
1890 return FAILURE;
1892 if (simplify_constructor (p->value.constructor, type) == FAILURE)
1893 return FAILURE;
1895 if (p->expr_type == EXPR_ARRAY && p->ref && p->ref->type == REF_ARRAY
1896 && p->ref->u.ar.type == AR_FULL)
1897 gfc_expand_constructor (p, false);
1899 if (simplify_const_ref (p) == FAILURE)
1900 return FAILURE;
1902 break;
1904 case EXPR_COMPCALL:
1905 case EXPR_PPC:
1906 gcc_unreachable ();
1907 break;
1910 return SUCCESS;
1914 /* Returns the type of an expression with the exception that iterator
1915 variables are automatically integers no matter what else they may
1916 be declared as. */
1918 static bt
1919 et0 (gfc_expr *e)
1921 if (e->expr_type == EXPR_VARIABLE && gfc_check_iter_variable (e) == SUCCESS)
1922 return BT_INTEGER;
1924 return e->ts.type;
1928 /* Check an intrinsic arithmetic operation to see if it is consistent
1929 with some type of expression. */
1931 static gfc_try check_init_expr (gfc_expr *);
1934 /* Scalarize an expression for an elemental intrinsic call. */
1936 static gfc_try
1937 scalarize_intrinsic_call (gfc_expr *e)
1939 gfc_actual_arglist *a, *b;
1940 gfc_constructor_base ctor;
1941 gfc_constructor *args[5];
1942 gfc_constructor *ci, *new_ctor;
1943 gfc_expr *expr, *old;
1944 int n, i, rank[5], array_arg;
1946 /* Find which, if any, arguments are arrays. Assume that the old
1947 expression carries the type information and that the first arg
1948 that is an array expression carries all the shape information.*/
1949 n = array_arg = 0;
1950 a = e->value.function.actual;
1951 for (; a; a = a->next)
1953 n++;
1954 if (a->expr->expr_type != EXPR_ARRAY)
1955 continue;
1956 array_arg = n;
1957 expr = gfc_copy_expr (a->expr);
1958 break;
1961 if (!array_arg)
1962 return FAILURE;
1964 old = gfc_copy_expr (e);
1966 gfc_constructor_free (expr->value.constructor);
1967 expr->value.constructor = NULL;
1968 expr->ts = old->ts;
1969 expr->where = old->where;
1970 expr->expr_type = EXPR_ARRAY;
1972 /* Copy the array argument constructors into an array, with nulls
1973 for the scalars. */
1974 n = 0;
1975 a = old->value.function.actual;
1976 for (; a; a = a->next)
1978 /* Check that this is OK for an initialization expression. */
1979 if (a->expr && check_init_expr (a->expr) == FAILURE)
1980 goto cleanup;
1982 rank[n] = 0;
1983 if (a->expr && a->expr->rank && a->expr->expr_type == EXPR_VARIABLE)
1985 rank[n] = a->expr->rank;
1986 ctor = a->expr->symtree->n.sym->value->value.constructor;
1987 args[n] = gfc_constructor_first (ctor);
1989 else if (a->expr && a->expr->expr_type == EXPR_ARRAY)
1991 if (a->expr->rank)
1992 rank[n] = a->expr->rank;
1993 else
1994 rank[n] = 1;
1995 ctor = gfc_constructor_copy (a->expr->value.constructor);
1996 args[n] = gfc_constructor_first (ctor);
1998 else
1999 args[n] = NULL;
2001 n++;
2005 /* Using the array argument as the master, step through the array
2006 calling the function for each element and advancing the array
2007 constructors together. */
2008 for (ci = args[array_arg - 1]; ci; ci = gfc_constructor_next (ci))
2010 new_ctor = gfc_constructor_append_expr (&expr->value.constructor,
2011 gfc_copy_expr (old), NULL);
2013 gfc_free_actual_arglist (new_ctor->expr->value.function.actual);
2014 a = NULL;
2015 b = old->value.function.actual;
2016 for (i = 0; i < n; i++)
2018 if (a == NULL)
2019 new_ctor->expr->value.function.actual
2020 = a = gfc_get_actual_arglist ();
2021 else
2023 a->next = gfc_get_actual_arglist ();
2024 a = a->next;
2027 if (args[i])
2028 a->expr = gfc_copy_expr (args[i]->expr);
2029 else
2030 a->expr = gfc_copy_expr (b->expr);
2032 b = b->next;
2035 /* Simplify the function calls. If the simplification fails, the
2036 error will be flagged up down-stream or the library will deal
2037 with it. */
2038 gfc_simplify_expr (new_ctor->expr, 0);
2040 for (i = 0; i < n; i++)
2041 if (args[i])
2042 args[i] = gfc_constructor_next (args[i]);
2044 for (i = 1; i < n; i++)
2045 if (rank[i] && ((args[i] != NULL && args[array_arg - 1] == NULL)
2046 || (args[i] == NULL && args[array_arg - 1] != NULL)))
2047 goto compliance;
2050 free_expr0 (e);
2051 *e = *expr;
2052 gfc_free_expr (old);
2053 return SUCCESS;
2055 compliance:
2056 gfc_error_now ("elemental function arguments at %C are not compliant");
2058 cleanup:
2059 gfc_free_expr (expr);
2060 gfc_free_expr (old);
2061 return FAILURE;
2065 static gfc_try
2066 check_intrinsic_op (gfc_expr *e, gfc_try (*check_function) (gfc_expr *))
2068 gfc_expr *op1 = e->value.op.op1;
2069 gfc_expr *op2 = e->value.op.op2;
2071 if ((*check_function) (op1) == FAILURE)
2072 return FAILURE;
2074 switch (e->value.op.op)
2076 case INTRINSIC_UPLUS:
2077 case INTRINSIC_UMINUS:
2078 if (!numeric_type (et0 (op1)))
2079 goto not_numeric;
2080 break;
2082 case INTRINSIC_EQ:
2083 case INTRINSIC_EQ_OS:
2084 case INTRINSIC_NE:
2085 case INTRINSIC_NE_OS:
2086 case INTRINSIC_GT:
2087 case INTRINSIC_GT_OS:
2088 case INTRINSIC_GE:
2089 case INTRINSIC_GE_OS:
2090 case INTRINSIC_LT:
2091 case INTRINSIC_LT_OS:
2092 case INTRINSIC_LE:
2093 case INTRINSIC_LE_OS:
2094 if ((*check_function) (op2) == FAILURE)
2095 return FAILURE;
2097 if (!(et0 (op1) == BT_CHARACTER && et0 (op2) == BT_CHARACTER)
2098 && !(numeric_type (et0 (op1)) && numeric_type (et0 (op2))))
2100 gfc_error ("Numeric or CHARACTER operands are required in "
2101 "expression at %L", &e->where);
2102 return FAILURE;
2104 break;
2106 case INTRINSIC_PLUS:
2107 case INTRINSIC_MINUS:
2108 case INTRINSIC_TIMES:
2109 case INTRINSIC_DIVIDE:
2110 case INTRINSIC_POWER:
2111 if ((*check_function) (op2) == FAILURE)
2112 return FAILURE;
2114 if (!numeric_type (et0 (op1)) || !numeric_type (et0 (op2)))
2115 goto not_numeric;
2117 break;
2119 case INTRINSIC_CONCAT:
2120 if ((*check_function) (op2) == FAILURE)
2121 return FAILURE;
2123 if (et0 (op1) != BT_CHARACTER || et0 (op2) != BT_CHARACTER)
2125 gfc_error ("Concatenation operator in expression at %L "
2126 "must have two CHARACTER operands", &op1->where);
2127 return FAILURE;
2130 if (op1->ts.kind != op2->ts.kind)
2132 gfc_error ("Concat operator at %L must concatenate strings of the "
2133 "same kind", &e->where);
2134 return FAILURE;
2137 break;
2139 case INTRINSIC_NOT:
2140 if (et0 (op1) != BT_LOGICAL)
2142 gfc_error (".NOT. operator in expression at %L must have a LOGICAL "
2143 "operand", &op1->where);
2144 return FAILURE;
2147 break;
2149 case INTRINSIC_AND:
2150 case INTRINSIC_OR:
2151 case INTRINSIC_EQV:
2152 case INTRINSIC_NEQV:
2153 if ((*check_function) (op2) == FAILURE)
2154 return FAILURE;
2156 if (et0 (op1) != BT_LOGICAL || et0 (op2) != BT_LOGICAL)
2158 gfc_error ("LOGICAL operands are required in expression at %L",
2159 &e->where);
2160 return FAILURE;
2163 break;
2165 case INTRINSIC_PARENTHESES:
2166 break;
2168 default:
2169 gfc_error ("Only intrinsic operators can be used in expression at %L",
2170 &e->where);
2171 return FAILURE;
2174 return SUCCESS;
2176 not_numeric:
2177 gfc_error ("Numeric operands are required in expression at %L", &e->where);
2179 return FAILURE;
2182 /* F2003, 7.1.7 (3): In init expression, allocatable components
2183 must not be data-initialized. */
2184 static gfc_try
2185 check_alloc_comp_init (gfc_expr *e)
2187 gfc_component *comp;
2188 gfc_constructor *ctor;
2190 gcc_assert (e->expr_type == EXPR_STRUCTURE);
2191 gcc_assert (e->ts.type == BT_DERIVED);
2193 for (comp = e->ts.u.derived->components,
2194 ctor = gfc_constructor_first (e->value.constructor);
2195 comp; comp = comp->next, ctor = gfc_constructor_next (ctor))
2197 if (comp->attr.allocatable
2198 && ctor->expr->expr_type != EXPR_NULL)
2200 gfc_error("Invalid initialization expression for ALLOCATABLE "
2201 "component '%s' in structure constructor at %L",
2202 comp->name, &ctor->expr->where);
2203 return FAILURE;
2207 return SUCCESS;
2210 static match
2211 check_init_expr_arguments (gfc_expr *e)
2213 gfc_actual_arglist *ap;
2215 for (ap = e->value.function.actual; ap; ap = ap->next)
2216 if (check_init_expr (ap->expr) == FAILURE)
2217 return MATCH_ERROR;
2219 return MATCH_YES;
2222 static gfc_try check_restricted (gfc_expr *);
2224 /* F95, 7.1.6.1, Initialization expressions, (7)
2225 F2003, 7.1.7 Initialization expression, (8) */
2227 static match
2228 check_inquiry (gfc_expr *e, int not_restricted)
2230 const char *name;
2231 const char *const *functions;
2233 static const char *const inquiry_func_f95[] = {
2234 "lbound", "shape", "size", "ubound",
2235 "bit_size", "len", "kind",
2236 "digits", "epsilon", "huge", "maxexponent", "minexponent",
2237 "precision", "radix", "range", "tiny",
2238 NULL
2241 static const char *const inquiry_func_f2003[] = {
2242 "lbound", "shape", "size", "ubound",
2243 "bit_size", "len", "kind",
2244 "digits", "epsilon", "huge", "maxexponent", "minexponent",
2245 "precision", "radix", "range", "tiny",
2246 "new_line", NULL
2249 int i;
2250 gfc_actual_arglist *ap;
2252 if (!e->value.function.isym
2253 || !e->value.function.isym->inquiry)
2254 return MATCH_NO;
2256 /* An undeclared parameter will get us here (PR25018). */
2257 if (e->symtree == NULL)
2258 return MATCH_NO;
2260 name = e->symtree->n.sym->name;
2262 functions = (gfc_option.warn_std & GFC_STD_F2003)
2263 ? inquiry_func_f2003 : inquiry_func_f95;
2265 for (i = 0; functions[i]; i++)
2266 if (strcmp (functions[i], name) == 0)
2267 break;
2269 if (functions[i] == NULL)
2270 return MATCH_ERROR;
2272 /* At this point we have an inquiry function with a variable argument. The
2273 type of the variable might be undefined, but we need it now, because the
2274 arguments of these functions are not allowed to be undefined. */
2276 for (ap = e->value.function.actual; ap; ap = ap->next)
2278 if (!ap->expr)
2279 continue;
2281 if (ap->expr->ts.type == BT_UNKNOWN)
2283 if (ap->expr->symtree->n.sym->ts.type == BT_UNKNOWN
2284 && gfc_set_default_type (ap->expr->symtree->n.sym, 0, gfc_current_ns)
2285 == FAILURE)
2286 return MATCH_NO;
2288 ap->expr->ts = ap->expr->symtree->n.sym->ts;
2291 /* Assumed character length will not reduce to a constant expression
2292 with LEN, as required by the standard. */
2293 if (i == 5 && not_restricted
2294 && ap->expr->symtree->n.sym->ts.type == BT_CHARACTER
2295 && ap->expr->symtree->n.sym->ts.u.cl->length == NULL)
2297 gfc_error ("Assumed character length variable '%s' in constant "
2298 "expression at %L", e->symtree->n.sym->name, &e->where);
2299 return MATCH_ERROR;
2301 else if (not_restricted && check_init_expr (ap->expr) == FAILURE)
2302 return MATCH_ERROR;
2304 if (not_restricted == 0
2305 && ap->expr->expr_type != EXPR_VARIABLE
2306 && check_restricted (ap->expr) == FAILURE)
2307 return MATCH_ERROR;
2309 if (not_restricted == 0
2310 && ap->expr->expr_type == EXPR_VARIABLE
2311 && ap->expr->symtree->n.sym->attr.dummy
2312 && ap->expr->symtree->n.sym->attr.optional)
2313 return MATCH_NO;
2316 return MATCH_YES;
2320 /* F95, 7.1.6.1, Initialization expressions, (5)
2321 F2003, 7.1.7 Initialization expression, (5) */
2323 static match
2324 check_transformational (gfc_expr *e)
2326 static const char * const trans_func_f95[] = {
2327 "repeat", "reshape", "selected_int_kind",
2328 "selected_real_kind", "transfer", "trim", NULL
2331 static const char * const trans_func_f2003[] = {
2332 "all", "any", "count", "dot_product", "matmul", "null", "pack",
2333 "product", "repeat", "reshape", "selected_char_kind", "selected_int_kind",
2334 "selected_real_kind", "spread", "sum", "transfer", "transpose",
2335 "trim", "unpack", NULL
2338 int i;
2339 const char *name;
2340 const char *const *functions;
2342 if (!e->value.function.isym
2343 || !e->value.function.isym->transformational)
2344 return MATCH_NO;
2346 name = e->symtree->n.sym->name;
2348 functions = (gfc_option.allow_std & GFC_STD_F2003)
2349 ? trans_func_f2003 : trans_func_f95;
2351 /* NULL() is dealt with below. */
2352 if (strcmp ("null", name) == 0)
2353 return MATCH_NO;
2355 for (i = 0; functions[i]; i++)
2356 if (strcmp (functions[i], name) == 0)
2357 break;
2359 if (functions[i] == NULL)
2361 gfc_error("transformational intrinsic '%s' at %L is not permitted "
2362 "in an initialization expression", name, &e->where);
2363 return MATCH_ERROR;
2366 return check_init_expr_arguments (e);
2370 /* F95, 7.1.6.1, Initialization expressions, (6)
2371 F2003, 7.1.7 Initialization expression, (6) */
2373 static match
2374 check_null (gfc_expr *e)
2376 if (strcmp ("null", e->symtree->n.sym->name) != 0)
2377 return MATCH_NO;
2379 return check_init_expr_arguments (e);
2383 static match
2384 check_elemental (gfc_expr *e)
2386 if (!e->value.function.isym
2387 || !e->value.function.isym->elemental)
2388 return MATCH_NO;
2390 if (e->ts.type != BT_INTEGER
2391 && e->ts.type != BT_CHARACTER
2392 && gfc_notify_std (GFC_STD_F2003, "Extension: Evaluation of "
2393 "nonstandard initialization expression at %L",
2394 &e->where) == FAILURE)
2395 return MATCH_ERROR;
2397 return check_init_expr_arguments (e);
2401 static match
2402 check_conversion (gfc_expr *e)
2404 if (!e->value.function.isym
2405 || !e->value.function.isym->conversion)
2406 return MATCH_NO;
2408 return check_init_expr_arguments (e);
2412 /* Verify that an expression is an initialization expression. A side
2413 effect is that the expression tree is reduced to a single constant
2414 node if all goes well. This would normally happen when the
2415 expression is constructed but function references are assumed to be
2416 intrinsics in the context of initialization expressions. If
2417 FAILURE is returned an error message has been generated. */
2419 static gfc_try
2420 check_init_expr (gfc_expr *e)
2422 match m;
2423 gfc_try t;
2425 if (e == NULL)
2426 return SUCCESS;
2428 switch (e->expr_type)
2430 case EXPR_OP:
2431 t = check_intrinsic_op (e, check_init_expr);
2432 if (t == SUCCESS)
2433 t = gfc_simplify_expr (e, 0);
2435 break;
2437 case EXPR_FUNCTION:
2438 t = FAILURE;
2441 gfc_intrinsic_sym* isym;
2442 gfc_symbol* sym;
2444 sym = e->symtree->n.sym;
2445 if (!gfc_is_intrinsic (sym, 0, e->where)
2446 || (m = gfc_intrinsic_func_interface (e, 0)) != MATCH_YES)
2448 gfc_error ("Function '%s' in initialization expression at %L "
2449 "must be an intrinsic function",
2450 e->symtree->n.sym->name, &e->where);
2451 break;
2454 if ((m = check_conversion (e)) == MATCH_NO
2455 && (m = check_inquiry (e, 1)) == MATCH_NO
2456 && (m = check_null (e)) == MATCH_NO
2457 && (m = check_transformational (e)) == MATCH_NO
2458 && (m = check_elemental (e)) == MATCH_NO)
2460 gfc_error ("Intrinsic function '%s' at %L is not permitted "
2461 "in an initialization expression",
2462 e->symtree->n.sym->name, &e->where);
2463 m = MATCH_ERROR;
2466 /* Try to scalarize an elemental intrinsic function that has an
2467 array argument. */
2468 isym = gfc_find_function (e->symtree->n.sym->name);
2469 if (isym && isym->elemental
2470 && (t = scalarize_intrinsic_call (e)) == SUCCESS)
2471 break;
2474 if (m == MATCH_YES)
2475 t = gfc_simplify_expr (e, 0);
2477 break;
2479 case EXPR_VARIABLE:
2480 t = SUCCESS;
2482 if (gfc_check_iter_variable (e) == SUCCESS)
2483 break;
2485 if (e->symtree->n.sym->attr.flavor == FL_PARAMETER)
2487 /* A PARAMETER shall not be used to define itself, i.e.
2488 REAL, PARAMETER :: x = transfer(0, x)
2489 is invalid. */
2490 if (!e->symtree->n.sym->value)
2492 gfc_error("PARAMETER '%s' is used at %L before its definition "
2493 "is complete", e->symtree->n.sym->name, &e->where);
2494 t = FAILURE;
2496 else
2497 t = simplify_parameter_variable (e, 0);
2499 break;
2502 if (gfc_in_match_data ())
2503 break;
2505 t = FAILURE;
2507 if (e->symtree->n.sym->as)
2509 switch (e->symtree->n.sym->as->type)
2511 case AS_ASSUMED_SIZE:
2512 gfc_error ("Assumed size array '%s' at %L is not permitted "
2513 "in an initialization expression",
2514 e->symtree->n.sym->name, &e->where);
2515 break;
2517 case AS_ASSUMED_SHAPE:
2518 gfc_error ("Assumed shape array '%s' at %L is not permitted "
2519 "in an initialization expression",
2520 e->symtree->n.sym->name, &e->where);
2521 break;
2523 case AS_DEFERRED:
2524 gfc_error ("Deferred array '%s' at %L is not permitted "
2525 "in an initialization expression",
2526 e->symtree->n.sym->name, &e->where);
2527 break;
2529 case AS_EXPLICIT:
2530 gfc_error ("Array '%s' at %L is a variable, which does "
2531 "not reduce to a constant expression",
2532 e->symtree->n.sym->name, &e->where);
2533 break;
2535 default:
2536 gcc_unreachable();
2539 else
2540 gfc_error ("Parameter '%s' at %L has not been declared or is "
2541 "a variable, which does not reduce to a constant "
2542 "expression", e->symtree->n.sym->name, &e->where);
2544 break;
2546 case EXPR_CONSTANT:
2547 case EXPR_NULL:
2548 t = SUCCESS;
2549 break;
2551 case EXPR_SUBSTRING:
2552 t = check_init_expr (e->ref->u.ss.start);
2553 if (t == FAILURE)
2554 break;
2556 t = check_init_expr (e->ref->u.ss.end);
2557 if (t == SUCCESS)
2558 t = gfc_simplify_expr (e, 0);
2560 break;
2562 case EXPR_STRUCTURE:
2563 t = e->ts.is_iso_c ? SUCCESS : FAILURE;
2564 if (t == SUCCESS)
2565 break;
2567 t = check_alloc_comp_init (e);
2568 if (t == FAILURE)
2569 break;
2571 t = gfc_check_constructor (e, check_init_expr);
2572 if (t == FAILURE)
2573 break;
2575 break;
2577 case EXPR_ARRAY:
2578 t = gfc_check_constructor (e, check_init_expr);
2579 if (t == FAILURE)
2580 break;
2582 t = gfc_expand_constructor (e, true);
2583 if (t == FAILURE)
2584 break;
2586 t = gfc_check_constructor_type (e);
2587 break;
2589 default:
2590 gfc_internal_error ("check_init_expr(): Unknown expression type");
2593 return t;
2596 /* Reduces a general expression to an initialization expression (a constant).
2597 This used to be part of gfc_match_init_expr.
2598 Note that this function doesn't free the given expression on FAILURE. */
2600 gfc_try
2601 gfc_reduce_init_expr (gfc_expr *expr)
2603 gfc_try t;
2605 gfc_init_expr_flag = true;
2606 t = gfc_resolve_expr (expr);
2607 if (t == SUCCESS)
2608 t = check_init_expr (expr);
2609 gfc_init_expr_flag = false;
2611 if (t == FAILURE)
2612 return FAILURE;
2614 if (expr->expr_type == EXPR_ARRAY)
2616 if (gfc_check_constructor_type (expr) == FAILURE)
2617 return FAILURE;
2618 if (gfc_expand_constructor (expr, true) == FAILURE)
2619 return FAILURE;
2622 return SUCCESS;
2626 /* Match an initialization expression. We work by first matching an
2627 expression, then reducing it to a constant. */
2629 match
2630 gfc_match_init_expr (gfc_expr **result)
2632 gfc_expr *expr;
2633 match m;
2634 gfc_try t;
2636 expr = NULL;
2638 gfc_init_expr_flag = true;
2640 m = gfc_match_expr (&expr);
2641 if (m != MATCH_YES)
2643 gfc_init_expr_flag = false;
2644 return m;
2647 t = gfc_reduce_init_expr (expr);
2648 if (t != SUCCESS)
2650 gfc_free_expr (expr);
2651 gfc_init_expr_flag = false;
2652 return MATCH_ERROR;
2655 *result = expr;
2656 gfc_init_expr_flag = false;
2658 return MATCH_YES;
2662 /* Given an actual argument list, test to see that each argument is a
2663 restricted expression and optionally if the expression type is
2664 integer or character. */
2666 static gfc_try
2667 restricted_args (gfc_actual_arglist *a)
2669 for (; a; a = a->next)
2671 if (check_restricted (a->expr) == FAILURE)
2672 return FAILURE;
2675 return SUCCESS;
2679 /************* Restricted/specification expressions *************/
2682 /* Make sure a non-intrinsic function is a specification function. */
2684 static gfc_try
2685 external_spec_function (gfc_expr *e)
2687 gfc_symbol *f;
2689 f = e->value.function.esym;
2691 if (f->attr.proc == PROC_ST_FUNCTION)
2693 gfc_error ("Specification function '%s' at %L cannot be a statement "
2694 "function", f->name, &e->where);
2695 return FAILURE;
2698 if (f->attr.proc == PROC_INTERNAL)
2700 gfc_error ("Specification function '%s' at %L cannot be an internal "
2701 "function", f->name, &e->where);
2702 return FAILURE;
2705 if (!f->attr.pure && !f->attr.elemental)
2707 gfc_error ("Specification function '%s' at %L must be PURE", f->name,
2708 &e->where);
2709 return FAILURE;
2712 if (f->attr.recursive)
2714 gfc_error ("Specification function '%s' at %L cannot be RECURSIVE",
2715 f->name, &e->where);
2716 return FAILURE;
2719 return restricted_args (e->value.function.actual);
2723 /* Check to see that a function reference to an intrinsic is a
2724 restricted expression. */
2726 static gfc_try
2727 restricted_intrinsic (gfc_expr *e)
2729 /* TODO: Check constraints on inquiry functions. 7.1.6.2 (7). */
2730 if (check_inquiry (e, 0) == MATCH_YES)
2731 return SUCCESS;
2733 return restricted_args (e->value.function.actual);
2737 /* Check the expressions of an actual arglist. Used by check_restricted. */
2739 static gfc_try
2740 check_arglist (gfc_actual_arglist* arg, gfc_try (*checker) (gfc_expr*))
2742 for (; arg; arg = arg->next)
2743 if (checker (arg->expr) == FAILURE)
2744 return FAILURE;
2746 return SUCCESS;
2750 /* Check the subscription expressions of a reference chain with a checking
2751 function; used by check_restricted. */
2753 static gfc_try
2754 check_references (gfc_ref* ref, gfc_try (*checker) (gfc_expr*))
2756 int dim;
2758 if (!ref)
2759 return SUCCESS;
2761 switch (ref->type)
2763 case REF_ARRAY:
2764 for (dim = 0; dim != ref->u.ar.dimen; ++dim)
2766 if (checker (ref->u.ar.start[dim]) == FAILURE)
2767 return FAILURE;
2768 if (checker (ref->u.ar.end[dim]) == FAILURE)
2769 return FAILURE;
2770 if (checker (ref->u.ar.stride[dim]) == FAILURE)
2771 return FAILURE;
2773 break;
2775 case REF_COMPONENT:
2776 /* Nothing needed, just proceed to next reference. */
2777 break;
2779 case REF_SUBSTRING:
2780 if (checker (ref->u.ss.start) == FAILURE)
2781 return FAILURE;
2782 if (checker (ref->u.ss.end) == FAILURE)
2783 return FAILURE;
2784 break;
2786 default:
2787 gcc_unreachable ();
2788 break;
2791 return check_references (ref->next, checker);
2795 /* Verify that an expression is a restricted expression. Like its
2796 cousin check_init_expr(), an error message is generated if we
2797 return FAILURE. */
2799 static gfc_try
2800 check_restricted (gfc_expr *e)
2802 gfc_symbol* sym;
2803 gfc_try t;
2805 if (e == NULL)
2806 return SUCCESS;
2808 switch (e->expr_type)
2810 case EXPR_OP:
2811 t = check_intrinsic_op (e, check_restricted);
2812 if (t == SUCCESS)
2813 t = gfc_simplify_expr (e, 0);
2815 break;
2817 case EXPR_FUNCTION:
2818 if (e->value.function.esym)
2820 t = check_arglist (e->value.function.actual, &check_restricted);
2821 if (t == SUCCESS)
2822 t = external_spec_function (e);
2824 else
2826 if (e->value.function.isym && e->value.function.isym->inquiry)
2827 t = SUCCESS;
2828 else
2829 t = check_arglist (e->value.function.actual, &check_restricted);
2831 if (t == SUCCESS)
2832 t = restricted_intrinsic (e);
2834 break;
2836 case EXPR_VARIABLE:
2837 sym = e->symtree->n.sym;
2838 t = FAILURE;
2840 /* If a dummy argument appears in a context that is valid for a
2841 restricted expression in an elemental procedure, it will have
2842 already been simplified away once we get here. Therefore we
2843 don't need to jump through hoops to distinguish valid from
2844 invalid cases. */
2845 if (sym->attr.dummy && sym->ns == gfc_current_ns
2846 && sym->ns->proc_name && sym->ns->proc_name->attr.elemental)
2848 gfc_error ("Dummy argument '%s' not allowed in expression at %L",
2849 sym->name, &e->where);
2850 break;
2853 if (sym->attr.optional)
2855 gfc_error ("Dummy argument '%s' at %L cannot be OPTIONAL",
2856 sym->name, &e->where);
2857 break;
2860 if (sym->attr.intent == INTENT_OUT)
2862 gfc_error ("Dummy argument '%s' at %L cannot be INTENT(OUT)",
2863 sym->name, &e->where);
2864 break;
2867 /* Check reference chain if any. */
2868 if (check_references (e->ref, &check_restricted) == FAILURE)
2869 break;
2871 /* gfc_is_formal_arg broadcasts that a formal argument list is being
2872 processed in resolve.c(resolve_formal_arglist). This is done so
2873 that host associated dummy array indices are accepted (PR23446).
2874 This mechanism also does the same for the specification expressions
2875 of array-valued functions. */
2876 if (e->error
2877 || sym->attr.in_common
2878 || sym->attr.use_assoc
2879 || sym->attr.dummy
2880 || sym->attr.implied_index
2881 || sym->attr.flavor == FL_PARAMETER
2882 || (sym->ns && sym->ns == gfc_current_ns->parent)
2883 || (sym->ns && gfc_current_ns->parent
2884 && sym->ns == gfc_current_ns->parent->parent)
2885 || (sym->ns->proc_name != NULL
2886 && sym->ns->proc_name->attr.flavor == FL_MODULE)
2887 || (gfc_is_formal_arg () && (sym->ns == gfc_current_ns)))
2889 t = SUCCESS;
2890 break;
2893 gfc_error ("Variable '%s' cannot appear in the expression at %L",
2894 sym->name, &e->where);
2895 /* Prevent a repetition of the error. */
2896 e->error = 1;
2897 break;
2899 case EXPR_NULL:
2900 case EXPR_CONSTANT:
2901 t = SUCCESS;
2902 break;
2904 case EXPR_SUBSTRING:
2905 t = gfc_specification_expr (e->ref->u.ss.start);
2906 if (t == FAILURE)
2907 break;
2909 t = gfc_specification_expr (e->ref->u.ss.end);
2910 if (t == SUCCESS)
2911 t = gfc_simplify_expr (e, 0);
2913 break;
2915 case EXPR_STRUCTURE:
2916 t = gfc_check_constructor (e, check_restricted);
2917 break;
2919 case EXPR_ARRAY:
2920 t = gfc_check_constructor (e, check_restricted);
2921 break;
2923 default:
2924 gfc_internal_error ("check_restricted(): Unknown expression type");
2927 return t;
2931 /* Check to see that an expression is a specification expression. If
2932 we return FAILURE, an error has been generated. */
2934 gfc_try
2935 gfc_specification_expr (gfc_expr *e)
2937 gfc_component *comp;
2939 if (e == NULL)
2940 return SUCCESS;
2942 if (e->ts.type != BT_INTEGER)
2944 gfc_error ("Expression at %L must be of INTEGER type, found %s",
2945 &e->where, gfc_basic_typename (e->ts.type));
2946 return FAILURE;
2949 if (e->expr_type == EXPR_FUNCTION
2950 && !e->value.function.isym
2951 && !e->value.function.esym
2952 && !gfc_pure (e->symtree->n.sym)
2953 && (!gfc_is_proc_ptr_comp (e, &comp)
2954 || !comp->attr.pure))
2956 gfc_error ("Function '%s' at %L must be PURE",
2957 e->symtree->n.sym->name, &e->where);
2958 /* Prevent repeat error messages. */
2959 e->symtree->n.sym->attr.pure = 1;
2960 return FAILURE;
2963 if (e->rank != 0)
2965 gfc_error ("Expression at %L must be scalar", &e->where);
2966 return FAILURE;
2969 if (gfc_simplify_expr (e, 0) == FAILURE)
2970 return FAILURE;
2972 return check_restricted (e);
2976 /************** Expression conformance checks. *************/
2978 /* Given two expressions, make sure that the arrays are conformable. */
2980 gfc_try
2981 gfc_check_conformance (gfc_expr *op1, gfc_expr *op2, const char *optype_msgid, ...)
2983 int op1_flag, op2_flag, d;
2984 mpz_t op1_size, op2_size;
2985 gfc_try t;
2987 va_list argp;
2988 char buffer[240];
2990 if (op1->rank == 0 || op2->rank == 0)
2991 return SUCCESS;
2993 va_start (argp, optype_msgid);
2994 vsnprintf (buffer, 240, optype_msgid, argp);
2995 va_end (argp);
2997 if (op1->rank != op2->rank)
2999 gfc_error ("Incompatible ranks in %s (%d and %d) at %L", _(buffer),
3000 op1->rank, op2->rank, &op1->where);
3001 return FAILURE;
3004 t = SUCCESS;
3006 for (d = 0; d < op1->rank; d++)
3008 op1_flag = gfc_array_dimen_size (op1, d, &op1_size) == SUCCESS;
3009 op2_flag = gfc_array_dimen_size (op2, d, &op2_size) == SUCCESS;
3011 if (op1_flag && op2_flag && mpz_cmp (op1_size, op2_size) != 0)
3013 gfc_error ("Different shape for %s at %L on dimension %d "
3014 "(%d and %d)", _(buffer), &op1->where, d + 1,
3015 (int) mpz_get_si (op1_size),
3016 (int) mpz_get_si (op2_size));
3018 t = FAILURE;
3021 if (op1_flag)
3022 mpz_clear (op1_size);
3023 if (op2_flag)
3024 mpz_clear (op2_size);
3026 if (t == FAILURE)
3027 return FAILURE;
3030 return SUCCESS;
3034 /* Given an assignable expression and an arbitrary expression, make
3035 sure that the assignment can take place. */
3037 gfc_try
3038 gfc_check_assign (gfc_expr *lvalue, gfc_expr *rvalue, int conform)
3040 gfc_symbol *sym;
3041 gfc_ref *ref;
3042 int has_pointer;
3044 sym = lvalue->symtree->n.sym;
3046 /* See if this is the component or subcomponent of a pointer. */
3047 has_pointer = sym->attr.pointer;
3048 for (ref = lvalue->ref; ref; ref = ref->next)
3049 if (ref->type == REF_COMPONENT && ref->u.c.component->attr.pointer)
3051 has_pointer = 1;
3052 break;
3055 /* 12.5.2.2, Note 12.26: The result variable is very similar to any other
3056 variable local to a function subprogram. Its existence begins when
3057 execution of the function is initiated and ends when execution of the
3058 function is terminated...
3059 Therefore, the left hand side is no longer a variable, when it is: */
3060 if (sym->attr.flavor == FL_PROCEDURE && sym->attr.proc != PROC_ST_FUNCTION
3061 && !sym->attr.external)
3063 bool bad_proc;
3064 bad_proc = false;
3066 /* (i) Use associated; */
3067 if (sym->attr.use_assoc)
3068 bad_proc = true;
3070 /* (ii) The assignment is in the main program; or */
3071 if (gfc_current_ns->proc_name->attr.is_main_program)
3072 bad_proc = true;
3074 /* (iii) A module or internal procedure... */
3075 if ((gfc_current_ns->proc_name->attr.proc == PROC_INTERNAL
3076 || gfc_current_ns->proc_name->attr.proc == PROC_MODULE)
3077 && gfc_current_ns->parent
3078 && (!(gfc_current_ns->parent->proc_name->attr.function
3079 || gfc_current_ns->parent->proc_name->attr.subroutine)
3080 || gfc_current_ns->parent->proc_name->attr.is_main_program))
3082 /* ... that is not a function... */
3083 if (!gfc_current_ns->proc_name->attr.function)
3084 bad_proc = true;
3086 /* ... or is not an entry and has a different name. */
3087 if (!sym->attr.entry && sym->name != gfc_current_ns->proc_name->name)
3088 bad_proc = true;
3091 /* (iv) Host associated and not the function symbol or the
3092 parent result. This picks up sibling references, which
3093 cannot be entries. */
3094 if (!sym->attr.entry
3095 && sym->ns == gfc_current_ns->parent
3096 && sym != gfc_current_ns->proc_name
3097 && sym != gfc_current_ns->parent->proc_name->result)
3098 bad_proc = true;
3100 if (bad_proc)
3102 gfc_error ("'%s' at %L is not a VALUE", sym->name, &lvalue->where);
3103 return FAILURE;
3107 if (rvalue->rank != 0 && lvalue->rank != rvalue->rank)
3109 gfc_error ("Incompatible ranks %d and %d in assignment at %L",
3110 lvalue->rank, rvalue->rank, &lvalue->where);
3111 return FAILURE;
3114 if (lvalue->ts.type == BT_UNKNOWN)
3116 gfc_error ("Variable type is UNKNOWN in assignment at %L",
3117 &lvalue->where);
3118 return FAILURE;
3121 if (rvalue->expr_type == EXPR_NULL)
3123 if (has_pointer && (ref == NULL || ref->next == NULL)
3124 && lvalue->symtree->n.sym->attr.data)
3125 return SUCCESS;
3126 else
3128 gfc_error ("NULL appears on right-hand side in assignment at %L",
3129 &rvalue->where);
3130 return FAILURE;
3134 /* This is possibly a typo: x = f() instead of x => f(). */
3135 if (gfc_option.warn_surprising
3136 && rvalue->expr_type == EXPR_FUNCTION
3137 && rvalue->symtree->n.sym->attr.pointer)
3138 gfc_warning ("POINTER valued function appears on right-hand side of "
3139 "assignment at %L", &rvalue->where);
3141 /* Check size of array assignments. */
3142 if (lvalue->rank != 0 && rvalue->rank != 0
3143 && gfc_check_conformance (lvalue, rvalue, "array assignment") != SUCCESS)
3144 return FAILURE;
3146 if (rvalue->is_boz && lvalue->ts.type != BT_INTEGER
3147 && lvalue->symtree->n.sym->attr.data
3148 && gfc_notify_std (GFC_STD_GNU, "Extension: BOZ literal at %L used to "
3149 "initialize non-integer variable '%s'",
3150 &rvalue->where, lvalue->symtree->n.sym->name)
3151 == FAILURE)
3152 return FAILURE;
3153 else if (rvalue->is_boz && !lvalue->symtree->n.sym->attr.data
3154 && gfc_notify_std (GFC_STD_GNU, "Extension: BOZ literal at %L outside "
3155 "a DATA statement and outside INT/REAL/DBLE/CMPLX",
3156 &rvalue->where) == FAILURE)
3157 return FAILURE;
3159 /* Handle the case of a BOZ literal on the RHS. */
3160 if (rvalue->is_boz && lvalue->ts.type != BT_INTEGER)
3162 int rc;
3163 if (gfc_option.warn_surprising)
3164 gfc_warning ("BOZ literal at %L is bitwise transferred "
3165 "non-integer symbol '%s'", &rvalue->where,
3166 lvalue->symtree->n.sym->name);
3167 if (!gfc_convert_boz (rvalue, &lvalue->ts))
3168 return FAILURE;
3169 if ((rc = gfc_range_check (rvalue)) != ARITH_OK)
3171 if (rc == ARITH_UNDERFLOW)
3172 gfc_error ("Arithmetic underflow of bit-wise transferred BOZ at %L"
3173 ". This check can be disabled with the option "
3174 "-fno-range-check", &rvalue->where);
3175 else if (rc == ARITH_OVERFLOW)
3176 gfc_error ("Arithmetic overflow of bit-wise transferred BOZ at %L"
3177 ". This check can be disabled with the option "
3178 "-fno-range-check", &rvalue->where);
3179 else if (rc == ARITH_NAN)
3180 gfc_error ("Arithmetic NaN of bit-wise transferred BOZ at %L"
3181 ". This check can be disabled with the option "
3182 "-fno-range-check", &rvalue->where);
3183 return FAILURE;
3187 if (gfc_compare_types (&lvalue->ts, &rvalue->ts))
3188 return SUCCESS;
3190 /* Only DATA Statements come here. */
3191 if (!conform)
3193 /* Numeric can be converted to any other numeric. And Hollerith can be
3194 converted to any other type. */
3195 if ((gfc_numeric_ts (&lvalue->ts) && gfc_numeric_ts (&rvalue->ts))
3196 || rvalue->ts.type == BT_HOLLERITH)
3197 return SUCCESS;
3199 if (lvalue->ts.type == BT_LOGICAL && rvalue->ts.type == BT_LOGICAL)
3200 return SUCCESS;
3202 gfc_error ("Incompatible types in DATA statement at %L; attempted "
3203 "conversion of %s to %s", &lvalue->where,
3204 gfc_typename (&rvalue->ts), gfc_typename (&lvalue->ts));
3206 return FAILURE;
3209 /* Assignment is the only case where character variables of different
3210 kind values can be converted into one another. */
3211 if (lvalue->ts.type == BT_CHARACTER && rvalue->ts.type == BT_CHARACTER)
3213 if (lvalue->ts.kind != rvalue->ts.kind)
3214 gfc_convert_chartype (rvalue, &lvalue->ts);
3216 return SUCCESS;
3219 return gfc_convert_type (rvalue, &lvalue->ts, 1);
3223 /* Check that a pointer assignment is OK. We first check lvalue, and
3224 we only check rvalue if it's not an assignment to NULL() or a
3225 NULLIFY statement. */
3227 gfc_try
3228 gfc_check_pointer_assign (gfc_expr *lvalue, gfc_expr *rvalue)
3230 symbol_attribute attr;
3231 gfc_ref *ref;
3232 bool is_pure, rank_remap;
3233 int proc_pointer;
3235 if (lvalue->symtree->n.sym->ts.type == BT_UNKNOWN
3236 && !lvalue->symtree->n.sym->attr.proc_pointer)
3238 gfc_error ("Pointer assignment target is not a POINTER at %L",
3239 &lvalue->where);
3240 return FAILURE;
3243 if (lvalue->symtree->n.sym->attr.flavor == FL_PROCEDURE
3244 && lvalue->symtree->n.sym->attr.use_assoc
3245 && !lvalue->symtree->n.sym->attr.proc_pointer)
3247 gfc_error ("'%s' in the pointer assignment at %L cannot be an "
3248 "l-value since it is a procedure",
3249 lvalue->symtree->n.sym->name, &lvalue->where);
3250 return FAILURE;
3253 proc_pointer = lvalue->symtree->n.sym->attr.proc_pointer;
3255 rank_remap = false;
3256 for (ref = lvalue->ref; ref; ref = ref->next)
3258 if (ref->type == REF_COMPONENT)
3259 proc_pointer = ref->u.c.component->attr.proc_pointer;
3261 if (ref->type == REF_ARRAY && ref->next == NULL)
3263 int dim;
3265 if (ref->u.ar.type == AR_FULL)
3266 break;
3268 if (ref->u.ar.type != AR_SECTION)
3270 gfc_error ("Expected bounds specification for '%s' at %L",
3271 lvalue->symtree->n.sym->name, &lvalue->where);
3272 return FAILURE;
3275 if (gfc_notify_std (GFC_STD_F2003,"Fortran 2003: Bounds "
3276 "specification for '%s' in pointer assignment "
3277 "at %L", lvalue->symtree->n.sym->name,
3278 &lvalue->where) == FAILURE)
3279 return FAILURE;
3281 /* When bounds are given, all lbounds are necessary and either all
3282 or none of the upper bounds; no strides are allowed. If the
3283 upper bounds are present, we may do rank remapping. */
3284 for (dim = 0; dim < ref->u.ar.dimen; ++dim)
3286 if (!ref->u.ar.start[dim])
3288 gfc_error ("Lower bound has to be present at %L",
3289 &lvalue->where);
3290 return FAILURE;
3292 if (ref->u.ar.stride[dim])
3294 gfc_error ("Stride must not be present at %L",
3295 &lvalue->where);
3296 return FAILURE;
3299 if (dim == 0)
3300 rank_remap = (ref->u.ar.end[dim] != NULL);
3301 else
3303 if ((rank_remap && !ref->u.ar.end[dim])
3304 || (!rank_remap && ref->u.ar.end[dim]))
3306 gfc_error ("Either all or none of the upper bounds"
3307 " must be specified at %L", &lvalue->where);
3308 return FAILURE;
3315 is_pure = gfc_pure (NULL);
3317 /* If rvalue is a NULL() or NULLIFY, we're done. Otherwise the type,
3318 kind, etc for lvalue and rvalue must match, and rvalue must be a
3319 pure variable if we're in a pure function. */
3320 if (rvalue->expr_type == EXPR_NULL && rvalue->ts.type == BT_UNKNOWN)
3321 return SUCCESS;
3323 /* F2008, C723 (pointer) and C726 (proc-pointer); for PURE also C1283. */
3324 if (lvalue->expr_type == EXPR_VARIABLE
3325 && gfc_is_coindexed (lvalue))
3327 gfc_ref *ref;
3328 for (ref = lvalue->ref; ref; ref = ref->next)
3329 if (ref->type == REF_ARRAY && ref->u.ar.codimen)
3331 gfc_error ("Pointer object at %L shall not have a coindex",
3332 &lvalue->where);
3333 return FAILURE;
3337 /* Checks on rvalue for procedure pointer assignments. */
3338 if (proc_pointer)
3340 char err[200];
3341 gfc_symbol *s1,*s2;
3342 gfc_component *comp;
3343 const char *name;
3345 attr = gfc_expr_attr (rvalue);
3346 if (!((rvalue->expr_type == EXPR_NULL)
3347 || (rvalue->expr_type == EXPR_FUNCTION && attr.proc_pointer)
3348 || (rvalue->expr_type == EXPR_VARIABLE && attr.proc_pointer)
3349 || (rvalue->expr_type == EXPR_VARIABLE
3350 && attr.flavor == FL_PROCEDURE)))
3352 gfc_error ("Invalid procedure pointer assignment at %L",
3353 &rvalue->where);
3354 return FAILURE;
3356 if (attr.abstract)
3358 gfc_error ("Abstract interface '%s' is invalid "
3359 "in procedure pointer assignment at %L",
3360 rvalue->symtree->name, &rvalue->where);
3361 return FAILURE;
3363 /* Check for C727. */
3364 if (attr.flavor == FL_PROCEDURE)
3366 if (attr.proc == PROC_ST_FUNCTION)
3368 gfc_error ("Statement function '%s' is invalid "
3369 "in procedure pointer assignment at %L",
3370 rvalue->symtree->name, &rvalue->where);
3371 return FAILURE;
3373 if (attr.proc == PROC_INTERNAL &&
3374 gfc_notify_std (GFC_STD_F2008, "Internal procedure '%s' is "
3375 "invalid in procedure pointer assignment at %L",
3376 rvalue->symtree->name, &rvalue->where) == FAILURE)
3377 return FAILURE;
3380 /* Ensure that the calling convention is the same. As other attributes
3381 such as DLLEXPORT may differ, one explicitly only tests for the
3382 calling conventions. */
3383 if (rvalue->expr_type == EXPR_VARIABLE
3384 && lvalue->symtree->n.sym->attr.ext_attr
3385 != rvalue->symtree->n.sym->attr.ext_attr)
3387 symbol_attribute calls;
3389 calls.ext_attr = 0;
3390 gfc_add_ext_attribute (&calls, EXT_ATTR_CDECL, NULL);
3391 gfc_add_ext_attribute (&calls, EXT_ATTR_STDCALL, NULL);
3392 gfc_add_ext_attribute (&calls, EXT_ATTR_FASTCALL, NULL);
3394 if ((calls.ext_attr & lvalue->symtree->n.sym->attr.ext_attr)
3395 != (calls.ext_attr & rvalue->symtree->n.sym->attr.ext_attr))
3397 gfc_error ("Mismatch in the procedure pointer assignment "
3398 "at %L: mismatch in the calling convention",
3399 &rvalue->where);
3400 return FAILURE;
3404 if (gfc_is_proc_ptr_comp (lvalue, &comp))
3405 s1 = comp->ts.interface;
3406 else
3407 s1 = lvalue->symtree->n.sym;
3409 if (gfc_is_proc_ptr_comp (rvalue, &comp))
3411 s2 = comp->ts.interface;
3412 name = comp->name;
3414 else if (rvalue->expr_type == EXPR_FUNCTION)
3416 s2 = rvalue->symtree->n.sym->result;
3417 name = rvalue->symtree->n.sym->result->name;
3419 else
3421 s2 = rvalue->symtree->n.sym;
3422 name = rvalue->symtree->n.sym->name;
3425 if (s1 && s2 && !gfc_compare_interfaces (s1, s2, name, 0, 1,
3426 err, sizeof(err)))
3428 gfc_error ("Interface mismatch in procedure pointer assignment "
3429 "at %L: %s", &rvalue->where, err);
3430 return FAILURE;
3433 return SUCCESS;
3436 if (!gfc_compare_types (&lvalue->ts, &rvalue->ts))
3438 gfc_error ("Different types in pointer assignment at %L; attempted "
3439 "assignment of %s to %s", &lvalue->where,
3440 gfc_typename (&rvalue->ts), gfc_typename (&lvalue->ts));
3441 return FAILURE;
3444 if (lvalue->ts.type != BT_CLASS && lvalue->ts.kind != rvalue->ts.kind)
3446 gfc_error ("Different kind type parameters in pointer "
3447 "assignment at %L", &lvalue->where);
3448 return FAILURE;
3451 if (lvalue->rank != rvalue->rank && !rank_remap)
3453 gfc_error ("Different ranks in pointer assignment at %L", &lvalue->where);
3454 return FAILURE;
3457 /* Check rank remapping. */
3458 if (rank_remap)
3460 mpz_t lsize, rsize;
3462 /* If this can be determined, check that the target must be at least as
3463 large as the pointer assigned to it is. */
3464 if (gfc_array_size (lvalue, &lsize) == SUCCESS
3465 && gfc_array_size (rvalue, &rsize) == SUCCESS
3466 && mpz_cmp (rsize, lsize) < 0)
3468 gfc_error ("Rank remapping target is smaller than size of the"
3469 " pointer (%ld < %ld) at %L",
3470 mpz_get_si (rsize), mpz_get_si (lsize),
3471 &lvalue->where);
3472 return FAILURE;
3475 /* The target must be either rank one or it must be simply contiguous
3476 and F2008 must be allowed. */
3477 if (rvalue->rank != 1)
3479 if (!gfc_is_simply_contiguous (rvalue, true))
3481 gfc_error ("Rank remapping target must be rank 1 or"
3482 " simply contiguous at %L", &rvalue->where);
3483 return FAILURE;
3485 if (gfc_notify_std (GFC_STD_F2008, "Fortran 2008: Rank remapping"
3486 " target is not rank 1 at %L", &rvalue->where)
3487 == FAILURE)
3488 return FAILURE;
3492 /* Now punt if we are dealing with a NULLIFY(X) or X = NULL(X). */
3493 if (rvalue->expr_type == EXPR_NULL)
3494 return SUCCESS;
3496 if (lvalue->ts.type == BT_CHARACTER)
3498 gfc_try t = gfc_check_same_strlen (lvalue, rvalue, "pointer assignment");
3499 if (t == FAILURE)
3500 return FAILURE;
3503 if (rvalue->expr_type == EXPR_VARIABLE && is_subref_array (rvalue))
3504 lvalue->symtree->n.sym->attr.subref_array_pointer = 1;
3506 attr = gfc_expr_attr (rvalue);
3507 if (!attr.target && !attr.pointer)
3509 gfc_error ("Pointer assignment target is neither TARGET "
3510 "nor POINTER at %L", &rvalue->where);
3511 return FAILURE;
3514 if (is_pure && gfc_impure_variable (rvalue->symtree->n.sym))
3516 gfc_error ("Bad target in pointer assignment in PURE "
3517 "procedure at %L", &rvalue->where);
3520 if (gfc_has_vector_index (rvalue))
3522 gfc_error ("Pointer assignment with vector subscript "
3523 "on rhs at %L", &rvalue->where);
3524 return FAILURE;
3527 if (attr.is_protected && attr.use_assoc
3528 && !(attr.pointer || attr.proc_pointer))
3530 gfc_error ("Pointer assignment target has PROTECTED "
3531 "attribute at %L", &rvalue->where);
3532 return FAILURE;
3535 /* F2008, C725. For PURE also C1283. */
3536 if (rvalue->expr_type == EXPR_VARIABLE
3537 && gfc_is_coindexed (rvalue))
3539 gfc_ref *ref;
3540 for (ref = rvalue->ref; ref; ref = ref->next)
3541 if (ref->type == REF_ARRAY && ref->u.ar.codimen)
3543 gfc_error ("Data target at %L shall not have a coindex",
3544 &rvalue->where);
3545 return FAILURE;
3549 return SUCCESS;
3553 /* Relative of gfc_check_assign() except that the lvalue is a single
3554 symbol. Used for initialization assignments. */
3556 gfc_try
3557 gfc_check_assign_symbol (gfc_symbol *sym, gfc_expr *rvalue)
3559 gfc_expr lvalue;
3560 gfc_try r;
3562 memset (&lvalue, '\0', sizeof (gfc_expr));
3564 lvalue.expr_type = EXPR_VARIABLE;
3565 lvalue.ts = sym->ts;
3566 if (sym->as)
3567 lvalue.rank = sym->as->rank;
3568 lvalue.symtree = (gfc_symtree *) gfc_getmem (sizeof (gfc_symtree));
3569 lvalue.symtree->n.sym = sym;
3570 lvalue.where = sym->declared_at;
3572 if (sym->attr.pointer || sym->attr.proc_pointer
3573 || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)->attr.class_pointer
3574 && rvalue->expr_type == EXPR_NULL))
3575 r = gfc_check_pointer_assign (&lvalue, rvalue);
3576 else
3577 r = gfc_check_assign (&lvalue, rvalue, 1);
3579 gfc_free (lvalue.symtree);
3581 if (r == FAILURE)
3582 return r;
3584 if (sym->attr.pointer && rvalue->expr_type != EXPR_NULL)
3586 /* F08:C461. Additional checks for pointer initialization. */
3587 symbol_attribute attr;
3588 attr = gfc_expr_attr (rvalue);
3589 if (attr.allocatable)
3591 gfc_error ("Pointer initialization target at %C "
3592 "must not be ALLOCATABLE ");
3593 return FAILURE;
3595 if (!attr.target)
3597 gfc_error ("Pointer initialization target at %C "
3598 "must have the TARGET attribute");
3599 return FAILURE;
3601 if (!attr.save)
3603 gfc_error ("Pointer initialization target at %C "
3604 "must have the SAVE attribute");
3605 return FAILURE;
3609 return SUCCESS;
3613 /* Check for default initializer; sym->value is not enough
3614 as it is also set for EXPR_NULL of allocatables. */
3616 bool
3617 gfc_has_default_initializer (gfc_symbol *der)
3619 gfc_component *c;
3621 gcc_assert (der->attr.flavor == FL_DERIVED);
3622 for (c = der->components; c; c = c->next)
3623 if (c->ts.type == BT_DERIVED)
3625 if (!c->attr.pointer
3626 && gfc_has_default_initializer (c->ts.u.derived))
3627 return true;
3629 else
3631 if (c->initializer)
3632 return true;
3635 return false;
3638 /* Get an expression for a default initializer. */
3640 gfc_expr *
3641 gfc_default_initializer (gfc_typespec *ts)
3643 gfc_expr *init;
3644 gfc_component *comp;
3646 /* See if we have a default initializer in this, but not in nested
3647 types (otherwise we could use gfc_has_default_initializer()). */
3648 for (comp = ts->u.derived->components; comp; comp = comp->next)
3649 if (comp->initializer || comp->attr.allocatable)
3650 break;
3652 if (!comp)
3653 return NULL;
3655 init = gfc_get_structure_constructor_expr (ts->type, ts->kind,
3656 &ts->u.derived->declared_at);
3657 init->ts = *ts;
3659 for (comp = ts->u.derived->components; comp; comp = comp->next)
3661 gfc_constructor *ctor = gfc_constructor_get();
3663 if (comp->initializer)
3664 ctor->expr = gfc_copy_expr (comp->initializer);
3666 if (comp->attr.allocatable)
3668 ctor->expr = gfc_get_expr ();
3669 ctor->expr->expr_type = EXPR_NULL;
3670 ctor->expr->ts = comp->ts;
3673 gfc_constructor_append (&init->value.constructor, ctor);
3676 return init;
3680 /* Given a symbol, create an expression node with that symbol as a
3681 variable. If the symbol is array valued, setup a reference of the
3682 whole array. */
3684 gfc_expr *
3685 gfc_get_variable_expr (gfc_symtree *var)
3687 gfc_expr *e;
3689 e = gfc_get_expr ();
3690 e->expr_type = EXPR_VARIABLE;
3691 e->symtree = var;
3692 e->ts = var->n.sym->ts;
3694 if (var->n.sym->as != NULL)
3696 e->rank = var->n.sym->as->rank;
3697 e->ref = gfc_get_ref ();
3698 e->ref->type = REF_ARRAY;
3699 e->ref->u.ar.type = AR_FULL;
3702 return e;
3706 /* Returns the array_spec of a full array expression. A NULL is
3707 returned otherwise. */
3708 gfc_array_spec *
3709 gfc_get_full_arrayspec_from_expr (gfc_expr *expr)
3711 gfc_array_spec *as;
3712 gfc_ref *ref;
3714 if (expr->rank == 0)
3715 return NULL;
3717 /* Follow any component references. */
3718 if (expr->expr_type == EXPR_VARIABLE
3719 || expr->expr_type == EXPR_CONSTANT)
3721 as = expr->symtree->n.sym->as;
3722 for (ref = expr->ref; ref; ref = ref->next)
3724 switch (ref->type)
3726 case REF_COMPONENT:
3727 as = ref->u.c.component->as;
3728 continue;
3730 case REF_SUBSTRING:
3731 continue;
3733 case REF_ARRAY:
3735 switch (ref->u.ar.type)
3737 case AR_ELEMENT:
3738 case AR_SECTION:
3739 case AR_UNKNOWN:
3740 as = NULL;
3741 continue;
3743 case AR_FULL:
3744 break;
3746 break;
3751 else
3752 as = NULL;
3754 return as;
3758 /* General expression traversal function. */
3760 bool
3761 gfc_traverse_expr (gfc_expr *expr, gfc_symbol *sym,
3762 bool (*func)(gfc_expr *, gfc_symbol *, int*),
3763 int f)
3765 gfc_array_ref ar;
3766 gfc_ref *ref;
3767 gfc_actual_arglist *args;
3768 gfc_constructor *c;
3769 int i;
3771 if (!expr)
3772 return false;
3774 if ((*func) (expr, sym, &f))
3775 return true;
3777 if (expr->ts.type == BT_CHARACTER
3778 && expr->ts.u.cl
3779 && expr->ts.u.cl->length
3780 && expr->ts.u.cl->length->expr_type != EXPR_CONSTANT
3781 && gfc_traverse_expr (expr->ts.u.cl->length, sym, func, f))
3782 return true;
3784 switch (expr->expr_type)
3786 case EXPR_PPC:
3787 case EXPR_COMPCALL:
3788 case EXPR_FUNCTION:
3789 for (args = expr->value.function.actual; args; args = args->next)
3791 if (gfc_traverse_expr (args->expr, sym, func, f))
3792 return true;
3794 break;
3796 case EXPR_VARIABLE:
3797 case EXPR_CONSTANT:
3798 case EXPR_NULL:
3799 case EXPR_SUBSTRING:
3800 break;
3802 case EXPR_STRUCTURE:
3803 case EXPR_ARRAY:
3804 for (c = gfc_constructor_first (expr->value.constructor);
3805 c; c = gfc_constructor_next (c))
3807 if (gfc_traverse_expr (c->expr, sym, func, f))
3808 return true;
3809 if (c->iterator)
3811 if (gfc_traverse_expr (c->iterator->var, sym, func, f))
3812 return true;
3813 if (gfc_traverse_expr (c->iterator->start, sym, func, f))
3814 return true;
3815 if (gfc_traverse_expr (c->iterator->end, sym, func, f))
3816 return true;
3817 if (gfc_traverse_expr (c->iterator->step, sym, func, f))
3818 return true;
3821 break;
3823 case EXPR_OP:
3824 if (gfc_traverse_expr (expr->value.op.op1, sym, func, f))
3825 return true;
3826 if (gfc_traverse_expr (expr->value.op.op2, sym, func, f))
3827 return true;
3828 break;
3830 default:
3831 gcc_unreachable ();
3832 break;
3835 ref = expr->ref;
3836 while (ref != NULL)
3838 switch (ref->type)
3840 case REF_ARRAY:
3841 ar = ref->u.ar;
3842 for (i = 0; i < GFC_MAX_DIMENSIONS; i++)
3844 if (gfc_traverse_expr (ar.start[i], sym, func, f))
3845 return true;
3846 if (gfc_traverse_expr (ar.end[i], sym, func, f))
3847 return true;
3848 if (gfc_traverse_expr (ar.stride[i], sym, func, f))
3849 return true;
3851 break;
3853 case REF_SUBSTRING:
3854 if (gfc_traverse_expr (ref->u.ss.start, sym, func, f))
3855 return true;
3856 if (gfc_traverse_expr (ref->u.ss.end, sym, func, f))
3857 return true;
3858 break;
3860 case REF_COMPONENT:
3861 if (ref->u.c.component->ts.type == BT_CHARACTER
3862 && ref->u.c.component->ts.u.cl
3863 && ref->u.c.component->ts.u.cl->length
3864 && ref->u.c.component->ts.u.cl->length->expr_type
3865 != EXPR_CONSTANT
3866 && gfc_traverse_expr (ref->u.c.component->ts.u.cl->length,
3867 sym, func, f))
3868 return true;
3870 if (ref->u.c.component->as)
3871 for (i = 0; i < ref->u.c.component->as->rank
3872 + ref->u.c.component->as->corank; i++)
3874 if (gfc_traverse_expr (ref->u.c.component->as->lower[i],
3875 sym, func, f))
3876 return true;
3877 if (gfc_traverse_expr (ref->u.c.component->as->upper[i],
3878 sym, func, f))
3879 return true;
3881 break;
3883 default:
3884 gcc_unreachable ();
3886 ref = ref->next;
3888 return false;
3891 /* Traverse expr, marking all EXPR_VARIABLE symbols referenced. */
3893 static bool
3894 expr_set_symbols_referenced (gfc_expr *expr,
3895 gfc_symbol *sym ATTRIBUTE_UNUSED,
3896 int *f ATTRIBUTE_UNUSED)
3898 if (expr->expr_type != EXPR_VARIABLE)
3899 return false;
3900 gfc_set_sym_referenced (expr->symtree->n.sym);
3901 return false;
3904 void
3905 gfc_expr_set_symbols_referenced (gfc_expr *expr)
3907 gfc_traverse_expr (expr, NULL, expr_set_symbols_referenced, 0);
3911 /* Determine if an expression is a procedure pointer component. If yes, the
3912 argument 'comp' will point to the component (provided that 'comp' was
3913 provided). */
3915 bool
3916 gfc_is_proc_ptr_comp (gfc_expr *expr, gfc_component **comp)
3918 gfc_ref *ref;
3919 bool ppc = false;
3921 if (!expr || !expr->ref)
3922 return false;
3924 ref = expr->ref;
3925 while (ref->next)
3926 ref = ref->next;
3928 if (ref->type == REF_COMPONENT)
3930 ppc = ref->u.c.component->attr.proc_pointer;
3931 if (ppc && comp)
3932 *comp = ref->u.c.component;
3935 return ppc;
3939 /* Walk an expression tree and check each variable encountered for being typed.
3940 If strict is not set, a top-level variable is tolerated untyped in -std=gnu
3941 mode as is a basic arithmetic expression using those; this is for things in
3942 legacy-code like:
3944 INTEGER :: arr(n), n
3945 INTEGER :: arr(n + 1), n
3947 The namespace is needed for IMPLICIT typing. */
3949 static gfc_namespace* check_typed_ns;
3951 static bool
3952 expr_check_typed_help (gfc_expr* e, gfc_symbol* sym ATTRIBUTE_UNUSED,
3953 int* f ATTRIBUTE_UNUSED)
3955 gfc_try t;
3957 if (e->expr_type != EXPR_VARIABLE)
3958 return false;
3960 gcc_assert (e->symtree);
3961 t = gfc_check_symbol_typed (e->symtree->n.sym, check_typed_ns,
3962 true, e->where);
3964 return (t == FAILURE);
3967 gfc_try
3968 gfc_expr_check_typed (gfc_expr* e, gfc_namespace* ns, bool strict)
3970 bool error_found;
3972 /* If this is a top-level variable or EXPR_OP, do the check with strict given
3973 to us. */
3974 if (!strict)
3976 if (e->expr_type == EXPR_VARIABLE && !e->ref)
3977 return gfc_check_symbol_typed (e->symtree->n.sym, ns, strict, e->where);
3979 if (e->expr_type == EXPR_OP)
3981 gfc_try t = SUCCESS;
3983 gcc_assert (e->value.op.op1);
3984 t = gfc_expr_check_typed (e->value.op.op1, ns, strict);
3986 if (t == SUCCESS && e->value.op.op2)
3987 t = gfc_expr_check_typed (e->value.op.op2, ns, strict);
3989 return t;
3993 /* Otherwise, walk the expression and do it strictly. */
3994 check_typed_ns = ns;
3995 error_found = gfc_traverse_expr (e, NULL, &expr_check_typed_help, 0);
3997 return error_found ? FAILURE : SUCCESS;
4000 /* Walk an expression tree and replace all symbols with a corresponding symbol
4001 in the formal_ns of "sym". Needed for copying interfaces in PROCEDURE
4002 statements. The boolean return value is required by gfc_traverse_expr. */
4004 static bool
4005 replace_symbol (gfc_expr *expr, gfc_symbol *sym, int *i ATTRIBUTE_UNUSED)
4007 if ((expr->expr_type == EXPR_VARIABLE
4008 || (expr->expr_type == EXPR_FUNCTION
4009 && !gfc_is_intrinsic (expr->symtree->n.sym, 0, expr->where)))
4010 && expr->symtree->n.sym->ns == sym->ts.interface->formal_ns)
4012 gfc_symtree *stree;
4013 gfc_namespace *ns = sym->formal_ns;
4014 /* Don't use gfc_get_symtree as we prefer to fail badly if we don't find
4015 the symtree rather than create a new one (and probably fail later). */
4016 stree = gfc_find_symtree (ns ? ns->sym_root : gfc_current_ns->sym_root,
4017 expr->symtree->n.sym->name);
4018 gcc_assert (stree);
4019 stree->n.sym->attr = expr->symtree->n.sym->attr;
4020 expr->symtree = stree;
4022 return false;
4025 void
4026 gfc_expr_replace_symbols (gfc_expr *expr, gfc_symbol *dest)
4028 gfc_traverse_expr (expr, dest, &replace_symbol, 0);
4031 /* The following is analogous to 'replace_symbol', and needed for copying
4032 interfaces for procedure pointer components. The argument 'sym' must formally
4033 be a gfc_symbol, so that the function can be passed to gfc_traverse_expr.
4034 However, it gets actually passed a gfc_component (i.e. the procedure pointer
4035 component in whose formal_ns the arguments have to be). */
4037 static bool
4038 replace_comp (gfc_expr *expr, gfc_symbol *sym, int *i ATTRIBUTE_UNUSED)
4040 gfc_component *comp;
4041 comp = (gfc_component *)sym;
4042 if ((expr->expr_type == EXPR_VARIABLE
4043 || (expr->expr_type == EXPR_FUNCTION
4044 && !gfc_is_intrinsic (expr->symtree->n.sym, 0, expr->where)))
4045 && expr->symtree->n.sym->ns == comp->ts.interface->formal_ns)
4047 gfc_symtree *stree;
4048 gfc_namespace *ns = comp->formal_ns;
4049 /* Don't use gfc_get_symtree as we prefer to fail badly if we don't find
4050 the symtree rather than create a new one (and probably fail later). */
4051 stree = gfc_find_symtree (ns ? ns->sym_root : gfc_current_ns->sym_root,
4052 expr->symtree->n.sym->name);
4053 gcc_assert (stree);
4054 stree->n.sym->attr = expr->symtree->n.sym->attr;
4055 expr->symtree = stree;
4057 return false;
4060 void
4061 gfc_expr_replace_comp (gfc_expr *expr, gfc_component *dest)
4063 gfc_traverse_expr (expr, (gfc_symbol *)dest, &replace_comp, 0);
4067 bool
4068 gfc_is_coindexed (gfc_expr *e)
4070 gfc_ref *ref;
4072 for (ref = e->ref; ref; ref = ref->next)
4073 if (ref->type == REF_ARRAY && ref->u.ar.codimen > 0)
4074 return true;
4076 return false;
4080 bool
4081 gfc_get_corank (gfc_expr *e)
4083 int corank;
4084 gfc_ref *ref;
4085 corank = e->symtree->n.sym->as ? e->symtree->n.sym->as->corank : 0;
4086 for (ref = e->ref; ref; ref = ref->next)
4088 if (ref->type == REF_ARRAY)
4089 corank = ref->u.ar.as->corank;
4090 gcc_assert (ref->type != REF_SUBSTRING);
4092 return corank;
4096 /* Check whether the expression has an ultimate allocatable component.
4097 Being itself allocatable does not count. */
4098 bool
4099 gfc_has_ultimate_allocatable (gfc_expr *e)
4101 gfc_ref *ref, *last = NULL;
4103 if (e->expr_type != EXPR_VARIABLE)
4104 return false;
4106 for (ref = e->ref; ref; ref = ref->next)
4107 if (ref->type == REF_COMPONENT)
4108 last = ref;
4110 if (last && last->u.c.component->ts.type == BT_CLASS)
4111 return CLASS_DATA (last->u.c.component)->attr.alloc_comp;
4112 else if (last && last->u.c.component->ts.type == BT_DERIVED)
4113 return last->u.c.component->ts.u.derived->attr.alloc_comp;
4114 else if (last)
4115 return false;
4117 if (e->ts.type == BT_CLASS)
4118 return CLASS_DATA (e)->attr.alloc_comp;
4119 else if (e->ts.type == BT_DERIVED)
4120 return e->ts.u.derived->attr.alloc_comp;
4121 else
4122 return false;
4126 /* Check whether the expression has an pointer component.
4127 Being itself a pointer does not count. */
4128 bool
4129 gfc_has_ultimate_pointer (gfc_expr *e)
4131 gfc_ref *ref, *last = NULL;
4133 if (e->expr_type != EXPR_VARIABLE)
4134 return false;
4136 for (ref = e->ref; ref; ref = ref->next)
4137 if (ref->type == REF_COMPONENT)
4138 last = ref;
4140 if (last && last->u.c.component->ts.type == BT_CLASS)
4141 return CLASS_DATA (last->u.c.component)->attr.pointer_comp;
4142 else if (last && last->u.c.component->ts.type == BT_DERIVED)
4143 return last->u.c.component->ts.u.derived->attr.pointer_comp;
4144 else if (last)
4145 return false;
4147 if (e->ts.type == BT_CLASS)
4148 return CLASS_DATA (e)->attr.pointer_comp;
4149 else if (e->ts.type == BT_DERIVED)
4150 return e->ts.u.derived->attr.pointer_comp;
4151 else
4152 return false;
4156 /* Check whether an expression is "simply contiguous", cf. F2008, 6.5.4.
4157 Note: A scalar is not regarded as "simply contiguous" by the standard.
4158 if bool is not strict, some futher checks are done - for instance,
4159 a "(::1)" is accepted. */
4161 bool
4162 gfc_is_simply_contiguous (gfc_expr *expr, bool strict)
4164 bool colon;
4165 int i;
4166 gfc_array_ref *ar = NULL;
4167 gfc_ref *ref, *part_ref = NULL;
4169 if (expr->expr_type == EXPR_FUNCTION)
4170 return expr->value.function.esym
4171 ? expr->value.function.esym->result->attr.contiguous : false;
4172 else if (expr->expr_type != EXPR_VARIABLE)
4173 return false;
4175 if (expr->rank == 0)
4176 return false;
4178 for (ref = expr->ref; ref; ref = ref->next)
4180 if (ar)
4181 return false; /* Array shall be last part-ref. */
4183 if (ref->type == REF_COMPONENT)
4184 part_ref = ref;
4185 else if (ref->type == REF_SUBSTRING)
4186 return false;
4187 else if (ref->u.ar.type != AR_ELEMENT)
4188 ar = &ref->u.ar;
4191 if ((part_ref && !part_ref->u.c.component->attr.contiguous
4192 && part_ref->u.c.component->attr.pointer)
4193 || (!part_ref && !expr->symtree->n.sym->attr.contiguous
4194 && (expr->symtree->n.sym->attr.pointer
4195 || expr->symtree->n.sym->as->type == AS_ASSUMED_SHAPE)))
4196 return false;
4198 if (!ar || ar->type == AR_FULL)
4199 return true;
4201 gcc_assert (ar->type == AR_SECTION);
4203 /* Check for simply contiguous array */
4204 colon = true;
4205 for (i = 0; i < ar->dimen; i++)
4207 if (ar->dimen_type[i] == DIMEN_VECTOR)
4208 return false;
4210 if (ar->dimen_type[i] == DIMEN_ELEMENT)
4212 colon = false;
4213 continue;
4216 gcc_assert (ar->dimen_type[i] == DIMEN_RANGE);
4219 /* If the previous section was not contiguous, that's an error,
4220 unless we have effective only one element and checking is not
4221 strict. */
4222 if (!colon && (strict || !ar->start[i] || !ar->end[i]
4223 || ar->start[i]->expr_type != EXPR_CONSTANT
4224 || ar->end[i]->expr_type != EXPR_CONSTANT
4225 || mpz_cmp (ar->start[i]->value.integer,
4226 ar->end[i]->value.integer) != 0))
4227 return false;
4229 /* Following the standard, "(::1)" or - if known at compile time -
4230 "(lbound:ubound)" are not simply contigous; if strict
4231 is false, they are regarded as simply contiguous. */
4232 if (ar->stride[i] && (strict || ar->stride[i]->expr_type != EXPR_CONSTANT
4233 || ar->stride[i]->ts.type != BT_INTEGER
4234 || mpz_cmp_si (ar->stride[i]->value.integer, 1) != 0))
4235 return false;
4237 if (ar->start[i]
4238 && (strict || ar->start[i]->expr_type != EXPR_CONSTANT
4239 || !ar->as->lower[i]
4240 || ar->as->lower[i]->expr_type != EXPR_CONSTANT
4241 || mpz_cmp (ar->start[i]->value.integer,
4242 ar->as->lower[i]->value.integer) != 0))
4243 colon = false;
4245 if (ar->end[i]
4246 && (strict || ar->end[i]->expr_type != EXPR_CONSTANT
4247 || !ar->as->upper[i]
4248 || ar->as->upper[i]->expr_type != EXPR_CONSTANT
4249 || mpz_cmp (ar->end[i]->value.integer,
4250 ar->as->upper[i]->value.integer) != 0))
4251 colon = false;
4254 return true;
4258 /* Build call to an intrinsic procedure. The number of arguments has to be
4259 passed (rather than ending the list with a NULL value) because we may
4260 want to add arguments but with a NULL-expression. */
4262 gfc_expr*
4263 gfc_build_intrinsic_call (const char* name, locus where, unsigned numarg, ...)
4265 gfc_expr* result;
4266 gfc_actual_arglist* atail;
4267 gfc_intrinsic_sym* isym;
4268 va_list ap;
4269 unsigned i;
4271 isym = gfc_find_function (name);
4272 gcc_assert (isym);
4274 result = gfc_get_expr ();
4275 result->expr_type = EXPR_FUNCTION;
4276 result->ts = isym->ts;
4277 result->where = where;
4278 result->value.function.name = name;
4279 result->value.function.isym = isym;
4281 va_start (ap, numarg);
4282 atail = NULL;
4283 for (i = 0; i < numarg; ++i)
4285 if (atail)
4287 atail->next = gfc_get_actual_arglist ();
4288 atail = atail->next;
4290 else
4291 atail = result->value.function.actual = gfc_get_actual_arglist ();
4293 atail->expr = va_arg (ap, gfc_expr*);
4295 va_end (ap);
4297 return result;
4301 /* Check if an expression may appear in a variable definition context
4302 (F2008, 16.6.7) or pointer association context (F2008, 16.6.8).
4303 This is called from the various places when resolving
4304 the pieces that make up such a context.
4306 Optionally, a possible error message can be suppressed if context is NULL
4307 and just the return status (SUCCESS / FAILURE) be requested. */
4309 gfc_try
4310 gfc_check_vardef_context (gfc_expr* e, bool pointer, const char* context)
4312 gfc_symbol* sym;
4313 bool is_pointer;
4314 bool check_intentin;
4315 bool ptr_component;
4316 symbol_attribute attr;
4317 gfc_ref* ref;
4319 if (e->expr_type != EXPR_VARIABLE)
4321 if (context)
4322 gfc_error ("Non-variable expression in variable definition context (%s)"
4323 " at %L", context, &e->where);
4324 return FAILURE;
4327 gcc_assert (e->symtree);
4328 sym = e->symtree->n.sym;
4330 if (!pointer && sym->attr.flavor == FL_PARAMETER)
4332 if (context)
4333 gfc_error ("Named constant '%s' in variable definition context (%s)"
4334 " at %L", sym->name, context, &e->where);
4335 return FAILURE;
4337 if (!pointer && sym->attr.flavor != FL_VARIABLE
4338 && !(sym->attr.flavor == FL_PROCEDURE && sym == sym->result)
4339 && !(sym->attr.flavor == FL_PROCEDURE && sym->attr.proc_pointer))
4341 if (context)
4342 gfc_error ("'%s' in variable definition context (%s) at %L is not"
4343 " a variable", sym->name, context, &e->where);
4344 return FAILURE;
4347 /* Find out whether the expr is a pointer; this also means following
4348 component references to the last one. */
4349 attr = gfc_expr_attr (e);
4350 is_pointer = (attr.pointer || attr.proc_pointer);
4351 if (pointer && !is_pointer)
4353 if (context)
4354 gfc_error ("Non-POINTER in pointer association context (%s)"
4355 " at %L", context, &e->where);
4356 return FAILURE;
4359 /* INTENT(IN) dummy argument. Check this, unless the object itself is
4360 the component of sub-component of a pointer. Obviously,
4361 procedure pointers are of no interest here. */
4362 check_intentin = true;
4363 ptr_component = sym->attr.pointer;
4364 for (ref = e->ref; ref && check_intentin; ref = ref->next)
4366 if (ptr_component && ref->type == REF_COMPONENT)
4367 check_intentin = false;
4368 if (ref->type == REF_COMPONENT && ref->u.c.component->attr.pointer)
4369 ptr_component = true;
4371 if (check_intentin && sym->attr.intent == INTENT_IN)
4373 if (pointer && is_pointer)
4375 if (context)
4376 gfc_error ("Dummy argument '%s' with INTENT(IN) in pointer"
4377 " association context (%s) at %L",
4378 sym->name, context, &e->where);
4379 return FAILURE;
4381 if (!pointer && !is_pointer)
4383 if (context)
4384 gfc_error ("Dummy argument '%s' with INTENT(IN) in variable"
4385 " definition context (%s) at %L",
4386 sym->name, context, &e->where);
4387 return FAILURE;
4391 /* PROTECTED and use-associated. */
4392 if (sym->attr.is_protected && sym->attr.use_assoc)
4394 if (pointer && is_pointer)
4396 if (context)
4397 gfc_error ("Variable '%s' is PROTECTED and can not appear in a"
4398 " pointer association context (%s) at %L",
4399 sym->name, context, &e->where);
4400 return FAILURE;
4402 if (!pointer && !is_pointer)
4404 if (context)
4405 gfc_error ("Variable '%s' is PROTECTED and can not appear in a"
4406 " variable definition context (%s) at %L",
4407 sym->name, context, &e->where);
4408 return FAILURE;
4412 /* Variable not assignable from a PURE procedure but appears in
4413 variable definition context. */
4414 if (!pointer && gfc_pure (NULL) && gfc_impure_variable (sym))
4416 if (context)
4417 gfc_error ("Variable '%s' can not appear in a variable definition"
4418 " context (%s) at %L in PURE procedure",
4419 sym->name, context, &e->where);
4420 return FAILURE;
4423 /* Check variable definition context for associate-names. */
4424 if (!pointer && sym->assoc)
4426 const char* name;
4427 gfc_association_list* assoc;
4429 gcc_assert (sym->assoc->target);
4431 /* If this is a SELECT TYPE temporary (the association is used internally
4432 for SELECT TYPE), silently go over to the target. */
4433 if (sym->attr.select_type_temporary)
4435 gfc_expr* t = sym->assoc->target;
4437 gcc_assert (t->expr_type == EXPR_VARIABLE);
4438 name = t->symtree->name;
4440 if (t->symtree->n.sym->assoc)
4441 assoc = t->symtree->n.sym->assoc;
4442 else
4443 assoc = sym->assoc;
4445 else
4447 name = sym->name;
4448 assoc = sym->assoc;
4450 gcc_assert (name && assoc);
4452 /* Is association to a valid variable? */
4453 if (!assoc->variable)
4455 if (context)
4457 if (assoc->target->expr_type == EXPR_VARIABLE)
4458 gfc_error ("'%s' at %L associated to vector-indexed target can"
4459 " not be used in a variable definition context (%s)",
4460 name, &e->where, context);
4461 else
4462 gfc_error ("'%s' at %L associated to expression can"
4463 " not be used in a variable definition context (%s)",
4464 name, &e->where, context);
4466 return FAILURE;
4469 /* Target must be allowed to appear in a variable definition context. */
4470 if (gfc_check_vardef_context (assoc->target, pointer, NULL) == FAILURE)
4472 if (context)
4473 gfc_error ("Associate-name '%s' can not appear in a variable"
4474 " definition context (%s) at %L because its target"
4475 " at %L can not, either",
4476 name, context, &e->where,
4477 &assoc->target->where);
4478 return FAILURE;
4482 return SUCCESS;