PR 78534 Change character length from int to size_t
[official-gcc.git] / gcc / fortran / expr.c
bloba313328ca4cac1f473dc090f2a4ab4abcce7dd9a
1 /* Routines for manipulation of expression nodes.
2 Copyright (C) 2000-2017 Free Software Foundation, Inc.
3 Contributed by Andy Vaught
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "options.h"
25 #include "gfortran.h"
26 #include "arith.h"
27 #include "match.h"
28 #include "target-memory.h" /* for gfc_convert_boz */
29 #include "constructor.h"
30 #include "tree.h"
33 /* The following set of functions provide access to gfc_expr* of
34 various types - actual all but EXPR_FUNCTION and EXPR_VARIABLE.
36 There are two functions available elsewhere that provide
37 slightly different flavours of variables. Namely:
38 expr.c (gfc_get_variable_expr)
39 symbol.c (gfc_lval_expr_from_sym)
40 TODO: Merge these functions, if possible. */
42 /* Get a new expression node. */
44 gfc_expr *
45 gfc_get_expr (void)
47 gfc_expr *e;
49 e = XCNEW (gfc_expr);
50 gfc_clear_ts (&e->ts);
51 e->shape = NULL;
52 e->ref = NULL;
53 e->symtree = NULL;
54 return e;
58 /* Get a new expression node that is an array constructor
59 of given type and kind. */
61 gfc_expr *
62 gfc_get_array_expr (bt type, int kind, locus *where)
64 gfc_expr *e;
66 e = gfc_get_expr ();
67 e->expr_type = EXPR_ARRAY;
68 e->value.constructor = NULL;
69 e->rank = 1;
70 e->shape = NULL;
72 e->ts.type = type;
73 e->ts.kind = kind;
74 if (where)
75 e->where = *where;
77 return e;
81 /* Get a new expression node that is the NULL expression. */
83 gfc_expr *
84 gfc_get_null_expr (locus *where)
86 gfc_expr *e;
88 e = gfc_get_expr ();
89 e->expr_type = EXPR_NULL;
90 e->ts.type = BT_UNKNOWN;
92 if (where)
93 e->where = *where;
95 return e;
99 /* Get a new expression node that is an operator expression node. */
101 gfc_expr *
102 gfc_get_operator_expr (locus *where, gfc_intrinsic_op op,
103 gfc_expr *op1, gfc_expr *op2)
105 gfc_expr *e;
107 e = gfc_get_expr ();
108 e->expr_type = EXPR_OP;
109 e->value.op.op = op;
110 e->value.op.op1 = op1;
111 e->value.op.op2 = op2;
113 if (where)
114 e->where = *where;
116 return e;
120 /* Get a new expression node that is an structure constructor
121 of given type and kind. */
123 gfc_expr *
124 gfc_get_structure_constructor_expr (bt type, int kind, locus *where)
126 gfc_expr *e;
128 e = gfc_get_expr ();
129 e->expr_type = EXPR_STRUCTURE;
130 e->value.constructor = NULL;
132 e->ts.type = type;
133 e->ts.kind = kind;
134 if (where)
135 e->where = *where;
137 return e;
141 /* Get a new expression node that is an constant of given type and kind. */
143 gfc_expr *
144 gfc_get_constant_expr (bt type, int kind, locus *where)
146 gfc_expr *e;
148 if (!where)
149 gfc_internal_error ("gfc_get_constant_expr(): locus %<where%> cannot be "
150 "NULL");
152 e = gfc_get_expr ();
154 e->expr_type = EXPR_CONSTANT;
155 e->ts.type = type;
156 e->ts.kind = kind;
157 e->where = *where;
159 switch (type)
161 case BT_INTEGER:
162 mpz_init (e->value.integer);
163 break;
165 case BT_REAL:
166 gfc_set_model_kind (kind);
167 mpfr_init (e->value.real);
168 break;
170 case BT_COMPLEX:
171 gfc_set_model_kind (kind);
172 mpc_init2 (e->value.complex, mpfr_get_default_prec());
173 break;
175 default:
176 break;
179 return e;
183 /* Get a new expression node that is an string constant.
184 If no string is passed, a string of len is allocated,
185 blanked and null-terminated. */
187 gfc_expr *
188 gfc_get_character_expr (int kind, locus *where, const char *src, gfc_charlen_t len)
190 gfc_expr *e;
191 gfc_char_t *dest;
193 if (!src)
195 dest = gfc_get_wide_string (len + 1);
196 gfc_wide_memset (dest, ' ', len);
197 dest[len] = '\0';
199 else
200 dest = gfc_char_to_widechar (src);
202 e = gfc_get_constant_expr (BT_CHARACTER, kind,
203 where ? where : &gfc_current_locus);
204 e->value.character.string = dest;
205 e->value.character.length = len;
207 return e;
211 /* Get a new expression node that is an integer constant. */
213 gfc_expr *
214 gfc_get_int_expr (int kind, locus *where, HOST_WIDE_INT value)
216 gfc_expr *p;
217 p = gfc_get_constant_expr (BT_INTEGER, kind,
218 where ? where : &gfc_current_locus);
220 const wide_int w = wi::shwi (value, kind * BITS_PER_UNIT);
221 wi::to_mpz (w, p->value.integer, SIGNED);
223 return p;
227 /* Get a new expression node that is a logical constant. */
229 gfc_expr *
230 gfc_get_logical_expr (int kind, locus *where, bool value)
232 gfc_expr *p;
233 p = gfc_get_constant_expr (BT_LOGICAL, kind,
234 where ? where : &gfc_current_locus);
236 p->value.logical = value;
238 return p;
242 gfc_expr *
243 gfc_get_iokind_expr (locus *where, io_kind k)
245 gfc_expr *e;
247 /* Set the types to something compatible with iokind. This is needed to
248 get through gfc_free_expr later since iokind really has no Basic Type,
249 BT, of its own. */
251 e = gfc_get_expr ();
252 e->expr_type = EXPR_CONSTANT;
253 e->ts.type = BT_LOGICAL;
254 e->value.iokind = k;
255 e->where = *where;
257 return e;
261 /* Given an expression pointer, return a copy of the expression. This
262 subroutine is recursive. */
264 gfc_expr *
265 gfc_copy_expr (gfc_expr *p)
267 gfc_expr *q;
268 gfc_char_t *s;
269 char *c;
271 if (p == NULL)
272 return NULL;
274 q = gfc_get_expr ();
275 *q = *p;
277 switch (q->expr_type)
279 case EXPR_SUBSTRING:
280 s = gfc_get_wide_string (p->value.character.length + 1);
281 q->value.character.string = s;
282 memcpy (s, p->value.character.string,
283 (p->value.character.length + 1) * sizeof (gfc_char_t));
284 break;
286 case EXPR_CONSTANT:
287 /* Copy target representation, if it exists. */
288 if (p->representation.string)
290 c = XCNEWVEC (char, p->representation.length + 1);
291 q->representation.string = c;
292 memcpy (c, p->representation.string, (p->representation.length + 1));
295 /* Copy the values of any pointer components of p->value. */
296 switch (q->ts.type)
298 case BT_INTEGER:
299 mpz_init_set (q->value.integer, p->value.integer);
300 break;
302 case BT_REAL:
303 gfc_set_model_kind (q->ts.kind);
304 mpfr_init (q->value.real);
305 mpfr_set (q->value.real, p->value.real, GFC_RND_MODE);
306 break;
308 case BT_COMPLEX:
309 gfc_set_model_kind (q->ts.kind);
310 mpc_init2 (q->value.complex, mpfr_get_default_prec());
311 mpc_set (q->value.complex, p->value.complex, GFC_MPC_RND_MODE);
312 break;
314 case BT_CHARACTER:
315 if (p->representation.string)
316 q->value.character.string
317 = gfc_char_to_widechar (q->representation.string);
318 else
320 s = gfc_get_wide_string (p->value.character.length + 1);
321 q->value.character.string = s;
323 /* This is the case for the C_NULL_CHAR named constant. */
324 if (p->value.character.length == 0
325 && (p->ts.is_c_interop || p->ts.is_iso_c))
327 *s = '\0';
328 /* Need to set the length to 1 to make sure the NUL
329 terminator is copied. */
330 q->value.character.length = 1;
332 else
333 memcpy (s, p->value.character.string,
334 (p->value.character.length + 1) * sizeof (gfc_char_t));
336 break;
338 case BT_HOLLERITH:
339 case BT_LOGICAL:
340 case_bt_struct:
341 case BT_CLASS:
342 case BT_ASSUMED:
343 break; /* Already done. */
345 case BT_PROCEDURE:
346 case BT_VOID:
347 /* Should never be reached. */
348 case BT_UNKNOWN:
349 gfc_internal_error ("gfc_copy_expr(): Bad expr node");
350 /* Not reached. */
353 break;
355 case EXPR_OP:
356 switch (q->value.op.op)
358 case INTRINSIC_NOT:
359 case INTRINSIC_PARENTHESES:
360 case INTRINSIC_UPLUS:
361 case INTRINSIC_UMINUS:
362 q->value.op.op1 = gfc_copy_expr (p->value.op.op1);
363 break;
365 default: /* Binary operators. */
366 q->value.op.op1 = gfc_copy_expr (p->value.op.op1);
367 q->value.op.op2 = gfc_copy_expr (p->value.op.op2);
368 break;
371 break;
373 case EXPR_FUNCTION:
374 q->value.function.actual =
375 gfc_copy_actual_arglist (p->value.function.actual);
376 break;
378 case EXPR_COMPCALL:
379 case EXPR_PPC:
380 q->value.compcall.actual =
381 gfc_copy_actual_arglist (p->value.compcall.actual);
382 q->value.compcall.tbp = p->value.compcall.tbp;
383 break;
385 case EXPR_STRUCTURE:
386 case EXPR_ARRAY:
387 q->value.constructor = gfc_constructor_copy (p->value.constructor);
388 break;
390 case EXPR_VARIABLE:
391 case EXPR_NULL:
392 break;
395 q->shape = gfc_copy_shape (p->shape, p->rank);
397 q->ref = gfc_copy_ref (p->ref);
399 return q;
403 void
404 gfc_clear_shape (mpz_t *shape, int rank)
406 int i;
408 for (i = 0; i < rank; i++)
409 mpz_clear (shape[i]);
413 void
414 gfc_free_shape (mpz_t **shape, int rank)
416 if (*shape == NULL)
417 return;
419 gfc_clear_shape (*shape, rank);
420 free (*shape);
421 *shape = NULL;
425 /* Workhorse function for gfc_free_expr() that frees everything
426 beneath an expression node, but not the node itself. This is
427 useful when we want to simplify a node and replace it with
428 something else or the expression node belongs to another structure. */
430 static void
431 free_expr0 (gfc_expr *e)
433 switch (e->expr_type)
435 case EXPR_CONSTANT:
436 /* Free any parts of the value that need freeing. */
437 switch (e->ts.type)
439 case BT_INTEGER:
440 mpz_clear (e->value.integer);
441 break;
443 case BT_REAL:
444 mpfr_clear (e->value.real);
445 break;
447 case BT_CHARACTER:
448 free (e->value.character.string);
449 break;
451 case BT_COMPLEX:
452 mpc_clear (e->value.complex);
453 break;
455 default:
456 break;
459 /* Free the representation. */
460 free (e->representation.string);
462 break;
464 case EXPR_OP:
465 if (e->value.op.op1 != NULL)
466 gfc_free_expr (e->value.op.op1);
467 if (e->value.op.op2 != NULL)
468 gfc_free_expr (e->value.op.op2);
469 break;
471 case EXPR_FUNCTION:
472 gfc_free_actual_arglist (e->value.function.actual);
473 break;
475 case EXPR_COMPCALL:
476 case EXPR_PPC:
477 gfc_free_actual_arglist (e->value.compcall.actual);
478 break;
480 case EXPR_VARIABLE:
481 break;
483 case EXPR_ARRAY:
484 case EXPR_STRUCTURE:
485 gfc_constructor_free (e->value.constructor);
486 break;
488 case EXPR_SUBSTRING:
489 free (e->value.character.string);
490 break;
492 case EXPR_NULL:
493 break;
495 default:
496 gfc_internal_error ("free_expr0(): Bad expr type");
499 /* Free a shape array. */
500 gfc_free_shape (&e->shape, e->rank);
502 gfc_free_ref_list (e->ref);
504 memset (e, '\0', sizeof (gfc_expr));
508 /* Free an expression node and everything beneath it. */
510 void
511 gfc_free_expr (gfc_expr *e)
513 if (e == NULL)
514 return;
515 free_expr0 (e);
516 free (e);
520 /* Free an argument list and everything below it. */
522 void
523 gfc_free_actual_arglist (gfc_actual_arglist *a1)
525 gfc_actual_arglist *a2;
527 while (a1)
529 a2 = a1->next;
530 gfc_free_expr (a1->expr);
531 free (a1);
532 a1 = a2;
537 /* Copy an arglist structure and all of the arguments. */
539 gfc_actual_arglist *
540 gfc_copy_actual_arglist (gfc_actual_arglist *p)
542 gfc_actual_arglist *head, *tail, *new_arg;
544 head = tail = NULL;
546 for (; p; p = p->next)
548 new_arg = gfc_get_actual_arglist ();
549 *new_arg = *p;
551 new_arg->expr = gfc_copy_expr (p->expr);
552 new_arg->next = NULL;
554 if (head == NULL)
555 head = new_arg;
556 else
557 tail->next = new_arg;
559 tail = new_arg;
562 return head;
566 /* Free a list of reference structures. */
568 void
569 gfc_free_ref_list (gfc_ref *p)
571 gfc_ref *q;
572 int i;
574 for (; p; p = q)
576 q = p->next;
578 switch (p->type)
580 case REF_ARRAY:
581 for (i = 0; i < GFC_MAX_DIMENSIONS; i++)
583 gfc_free_expr (p->u.ar.start[i]);
584 gfc_free_expr (p->u.ar.end[i]);
585 gfc_free_expr (p->u.ar.stride[i]);
588 break;
590 case REF_SUBSTRING:
591 gfc_free_expr (p->u.ss.start);
592 gfc_free_expr (p->u.ss.end);
593 break;
595 case REF_COMPONENT:
596 break;
599 free (p);
604 /* Graft the *src expression onto the *dest subexpression. */
606 void
607 gfc_replace_expr (gfc_expr *dest, gfc_expr *src)
609 free_expr0 (dest);
610 *dest = *src;
611 free (src);
615 /* Try to extract an integer constant from the passed expression node.
616 Returns an error message or NULL if the result is set. It is
617 tempting to generate an error and return true or false, but
618 failure is OK for some callers. */
620 const char *
621 gfc_extract_int (gfc_expr *expr, int *result)
623 if (expr->expr_type != EXPR_CONSTANT)
624 return _("Constant expression required at %C");
626 if (expr->ts.type != BT_INTEGER)
627 return _("Integer expression required at %C");
629 if ((mpz_cmp_si (expr->value.integer, INT_MAX) > 0)
630 || (mpz_cmp_si (expr->value.integer, INT_MIN) < 0))
632 return _("Integer value too large in expression at %C");
635 *result = (int) mpz_get_si (expr->value.integer);
637 return NULL;
641 /* Same as gfc_extract_int, but use a HWI. */
643 const char *
644 gfc_extract_hwi (gfc_expr *expr, HOST_WIDE_INT *result)
646 if (expr->expr_type != EXPR_CONSTANT)
647 return _("Constant expression required at %C");
649 if (expr->ts.type != BT_INTEGER)
650 return _("Integer expression required at %C");
652 /* Use long_long_integer_type_node to determine when to saturate. */
653 const wide_int val = wi::from_mpz (long_long_integer_type_node,
654 expr->value.integer, false);
656 if (!wi::fits_shwi_p (val))
658 return _("Integer value too large in expression at %C");
661 *result = val.to_shwi ();
663 return NULL;
667 /* Recursively copy a list of reference structures. */
669 gfc_ref *
670 gfc_copy_ref (gfc_ref *src)
672 gfc_array_ref *ar;
673 gfc_ref *dest;
675 if (src == NULL)
676 return NULL;
678 dest = gfc_get_ref ();
679 dest->type = src->type;
681 switch (src->type)
683 case REF_ARRAY:
684 ar = gfc_copy_array_ref (&src->u.ar);
685 dest->u.ar = *ar;
686 free (ar);
687 break;
689 case REF_COMPONENT:
690 dest->u.c = src->u.c;
691 break;
693 case REF_SUBSTRING:
694 dest->u.ss = src->u.ss;
695 dest->u.ss.start = gfc_copy_expr (src->u.ss.start);
696 dest->u.ss.end = gfc_copy_expr (src->u.ss.end);
697 break;
700 dest->next = gfc_copy_ref (src->next);
702 return dest;
706 /* Detect whether an expression has any vector index array references. */
709 gfc_has_vector_index (gfc_expr *e)
711 gfc_ref *ref;
712 int i;
713 for (ref = e->ref; ref; ref = ref->next)
714 if (ref->type == REF_ARRAY)
715 for (i = 0; i < ref->u.ar.dimen; i++)
716 if (ref->u.ar.dimen_type[i] == DIMEN_VECTOR)
717 return 1;
718 return 0;
722 /* Copy a shape array. */
724 mpz_t *
725 gfc_copy_shape (mpz_t *shape, int rank)
727 mpz_t *new_shape;
728 int n;
730 if (shape == NULL)
731 return NULL;
733 new_shape = gfc_get_shape (rank);
735 for (n = 0; n < rank; n++)
736 mpz_init_set (new_shape[n], shape[n]);
738 return new_shape;
742 /* Copy a shape array excluding dimension N, where N is an integer
743 constant expression. Dimensions are numbered in Fortran style --
744 starting with ONE.
746 So, if the original shape array contains R elements
747 { s1 ... sN-1 sN sN+1 ... sR-1 sR}
748 the result contains R-1 elements:
749 { s1 ... sN-1 sN+1 ... sR-1}
751 If anything goes wrong -- N is not a constant, its value is out
752 of range -- or anything else, just returns NULL. */
754 mpz_t *
755 gfc_copy_shape_excluding (mpz_t *shape, int rank, gfc_expr *dim)
757 mpz_t *new_shape, *s;
758 int i, n;
760 if (shape == NULL
761 || rank <= 1
762 || dim == NULL
763 || dim->expr_type != EXPR_CONSTANT
764 || dim->ts.type != BT_INTEGER)
765 return NULL;
767 n = mpz_get_si (dim->value.integer);
768 n--; /* Convert to zero based index. */
769 if (n < 0 || n >= rank)
770 return NULL;
772 s = new_shape = gfc_get_shape (rank - 1);
774 for (i = 0; i < rank; i++)
776 if (i == n)
777 continue;
778 mpz_init_set (*s, shape[i]);
779 s++;
782 return new_shape;
786 /* Return the maximum kind of two expressions. In general, higher
787 kind numbers mean more precision for numeric types. */
790 gfc_kind_max (gfc_expr *e1, gfc_expr *e2)
792 return (e1->ts.kind > e2->ts.kind) ? e1->ts.kind : e2->ts.kind;
796 /* Returns nonzero if the type is numeric, zero otherwise. */
798 static int
799 numeric_type (bt type)
801 return type == BT_COMPLEX || type == BT_REAL || type == BT_INTEGER;
805 /* Returns nonzero if the typespec is a numeric type, zero otherwise. */
808 gfc_numeric_ts (gfc_typespec *ts)
810 return numeric_type (ts->type);
814 /* Return an expression node with an optional argument list attached.
815 A variable number of gfc_expr pointers are strung together in an
816 argument list with a NULL pointer terminating the list. */
818 gfc_expr *
819 gfc_build_conversion (gfc_expr *e)
821 gfc_expr *p;
823 p = gfc_get_expr ();
824 p->expr_type = EXPR_FUNCTION;
825 p->symtree = NULL;
826 p->value.function.actual = gfc_get_actual_arglist ();
827 p->value.function.actual->expr = e;
829 return p;
833 /* Given an expression node with some sort of numeric binary
834 expression, insert type conversions required to make the operands
835 have the same type. Conversion warnings are disabled if wconversion
836 is set to 0.
838 The exception is that the operands of an exponential don't have to
839 have the same type. If possible, the base is promoted to the type
840 of the exponent. For example, 1**2.3 becomes 1.0**2.3, but
841 1.0**2 stays as it is. */
843 void
844 gfc_type_convert_binary (gfc_expr *e, int wconversion)
846 gfc_expr *op1, *op2;
848 op1 = e->value.op.op1;
849 op2 = e->value.op.op2;
851 if (op1->ts.type == BT_UNKNOWN || op2->ts.type == BT_UNKNOWN)
853 gfc_clear_ts (&e->ts);
854 return;
857 /* Kind conversions of same type. */
858 if (op1->ts.type == op2->ts.type)
860 if (op1->ts.kind == op2->ts.kind)
862 /* No type conversions. */
863 e->ts = op1->ts;
864 goto done;
867 if (op1->ts.kind > op2->ts.kind)
868 gfc_convert_type_warn (op2, &op1->ts, 2, wconversion);
869 else
870 gfc_convert_type_warn (op1, &op2->ts, 2, wconversion);
872 e->ts = op1->ts;
873 goto done;
876 /* Integer combined with real or complex. */
877 if (op2->ts.type == BT_INTEGER)
879 e->ts = op1->ts;
881 /* Special case for ** operator. */
882 if (e->value.op.op == INTRINSIC_POWER)
883 goto done;
885 gfc_convert_type_warn (e->value.op.op2, &e->ts, 2, wconversion);
886 goto done;
889 if (op1->ts.type == BT_INTEGER)
891 e->ts = op2->ts;
892 gfc_convert_type_warn (e->value.op.op1, &e->ts, 2, wconversion);
893 goto done;
896 /* Real combined with complex. */
897 e->ts.type = BT_COMPLEX;
898 if (op1->ts.kind > op2->ts.kind)
899 e->ts.kind = op1->ts.kind;
900 else
901 e->ts.kind = op2->ts.kind;
902 if (op1->ts.type != BT_COMPLEX || op1->ts.kind != e->ts.kind)
903 gfc_convert_type_warn (e->value.op.op1, &e->ts, 2, wconversion);
904 if (op2->ts.type != BT_COMPLEX || op2->ts.kind != e->ts.kind)
905 gfc_convert_type_warn (e->value.op.op2, &e->ts, 2, wconversion);
907 done:
908 return;
912 /* Determine if an expression is constant in the sense of F08:7.1.12.
913 * This function expects that the expression has already been simplified. */
915 bool
916 gfc_is_constant_expr (gfc_expr *e)
918 gfc_constructor *c;
919 gfc_actual_arglist *arg;
921 if (e == NULL)
922 return true;
924 switch (e->expr_type)
926 case EXPR_OP:
927 return (gfc_is_constant_expr (e->value.op.op1)
928 && (e->value.op.op2 == NULL
929 || gfc_is_constant_expr (e->value.op.op2)));
931 case EXPR_VARIABLE:
932 return false;
934 case EXPR_FUNCTION:
935 case EXPR_PPC:
936 case EXPR_COMPCALL:
937 gcc_assert (e->symtree || e->value.function.esym
938 || e->value.function.isym);
940 /* Call to intrinsic with at least one argument. */
941 if (e->value.function.isym && e->value.function.actual)
943 for (arg = e->value.function.actual; arg; arg = arg->next)
944 if (!gfc_is_constant_expr (arg->expr))
945 return false;
948 if (e->value.function.isym
949 && (e->value.function.isym->elemental
950 || e->value.function.isym->pure
951 || e->value.function.isym->inquiry
952 || e->value.function.isym->transformational))
953 return true;
955 return false;
957 case EXPR_CONSTANT:
958 case EXPR_NULL:
959 return true;
961 case EXPR_SUBSTRING:
962 return e->ref == NULL || (gfc_is_constant_expr (e->ref->u.ss.start)
963 && gfc_is_constant_expr (e->ref->u.ss.end));
965 case EXPR_ARRAY:
966 case EXPR_STRUCTURE:
967 c = gfc_constructor_first (e->value.constructor);
968 if ((e->expr_type == EXPR_ARRAY) && c && c->iterator)
969 return gfc_constant_ac (e);
971 for (; c; c = gfc_constructor_next (c))
972 if (!gfc_is_constant_expr (c->expr))
973 return false;
975 return true;
978 default:
979 gfc_internal_error ("gfc_is_constant_expr(): Unknown expression type");
980 return false;
985 /* Is true if an array reference is followed by a component or substring
986 reference. */
987 bool
988 is_subref_array (gfc_expr * e)
990 gfc_ref * ref;
991 bool seen_array;
993 if (e->expr_type != EXPR_VARIABLE)
994 return false;
996 if (e->symtree->n.sym->attr.subref_array_pointer)
997 return true;
999 seen_array = false;
1000 for (ref = e->ref; ref; ref = ref->next)
1002 if (ref->type == REF_ARRAY
1003 && ref->u.ar.type != AR_ELEMENT)
1004 seen_array = true;
1006 if (seen_array
1007 && ref->type != REF_ARRAY)
1008 return seen_array;
1010 return false;
1014 /* Try to collapse intrinsic expressions. */
1016 static bool
1017 simplify_intrinsic_op (gfc_expr *p, int type)
1019 gfc_intrinsic_op op;
1020 gfc_expr *op1, *op2, *result;
1022 if (p->value.op.op == INTRINSIC_USER)
1023 return true;
1025 op1 = p->value.op.op1;
1026 op2 = p->value.op.op2;
1027 op = p->value.op.op;
1029 if (!gfc_simplify_expr (op1, type))
1030 return false;
1031 if (!gfc_simplify_expr (op2, type))
1032 return false;
1034 if (!gfc_is_constant_expr (op1)
1035 || (op2 != NULL && !gfc_is_constant_expr (op2)))
1036 return true;
1038 /* Rip p apart. */
1039 p->value.op.op1 = NULL;
1040 p->value.op.op2 = NULL;
1042 switch (op)
1044 case INTRINSIC_PARENTHESES:
1045 result = gfc_parentheses (op1);
1046 break;
1048 case INTRINSIC_UPLUS:
1049 result = gfc_uplus (op1);
1050 break;
1052 case INTRINSIC_UMINUS:
1053 result = gfc_uminus (op1);
1054 break;
1056 case INTRINSIC_PLUS:
1057 result = gfc_add (op1, op2);
1058 break;
1060 case INTRINSIC_MINUS:
1061 result = gfc_subtract (op1, op2);
1062 break;
1064 case INTRINSIC_TIMES:
1065 result = gfc_multiply (op1, op2);
1066 break;
1068 case INTRINSIC_DIVIDE:
1069 result = gfc_divide (op1, op2);
1070 break;
1072 case INTRINSIC_POWER:
1073 result = gfc_power (op1, op2);
1074 break;
1076 case INTRINSIC_CONCAT:
1077 result = gfc_concat (op1, op2);
1078 break;
1080 case INTRINSIC_EQ:
1081 case INTRINSIC_EQ_OS:
1082 result = gfc_eq (op1, op2, op);
1083 break;
1085 case INTRINSIC_NE:
1086 case INTRINSIC_NE_OS:
1087 result = gfc_ne (op1, op2, op);
1088 break;
1090 case INTRINSIC_GT:
1091 case INTRINSIC_GT_OS:
1092 result = gfc_gt (op1, op2, op);
1093 break;
1095 case INTRINSIC_GE:
1096 case INTRINSIC_GE_OS:
1097 result = gfc_ge (op1, op2, op);
1098 break;
1100 case INTRINSIC_LT:
1101 case INTRINSIC_LT_OS:
1102 result = gfc_lt (op1, op2, op);
1103 break;
1105 case INTRINSIC_LE:
1106 case INTRINSIC_LE_OS:
1107 result = gfc_le (op1, op2, op);
1108 break;
1110 case INTRINSIC_NOT:
1111 result = gfc_not (op1);
1112 break;
1114 case INTRINSIC_AND:
1115 result = gfc_and (op1, op2);
1116 break;
1118 case INTRINSIC_OR:
1119 result = gfc_or (op1, op2);
1120 break;
1122 case INTRINSIC_EQV:
1123 result = gfc_eqv (op1, op2);
1124 break;
1126 case INTRINSIC_NEQV:
1127 result = gfc_neqv (op1, op2);
1128 break;
1130 default:
1131 gfc_internal_error ("simplify_intrinsic_op(): Bad operator");
1134 if (result == NULL)
1136 gfc_free_expr (op1);
1137 gfc_free_expr (op2);
1138 return false;
1141 result->rank = p->rank;
1142 result->where = p->where;
1143 gfc_replace_expr (p, result);
1145 return true;
1149 /* Subroutine to simplify constructor expressions. Mutually recursive
1150 with gfc_simplify_expr(). */
1152 static bool
1153 simplify_constructor (gfc_constructor_base base, int type)
1155 gfc_constructor *c;
1156 gfc_expr *p;
1158 for (c = gfc_constructor_first (base); c; c = gfc_constructor_next (c))
1160 if (c->iterator
1161 && (!gfc_simplify_expr(c->iterator->start, type)
1162 || !gfc_simplify_expr (c->iterator->end, type)
1163 || !gfc_simplify_expr (c->iterator->step, type)))
1164 return false;
1166 if (c->expr)
1168 /* Try and simplify a copy. Replace the original if successful
1169 but keep going through the constructor at all costs. Not
1170 doing so can make a dog's dinner of complicated things. */
1171 p = gfc_copy_expr (c->expr);
1173 if (!gfc_simplify_expr (p, type))
1175 gfc_free_expr (p);
1176 continue;
1179 gfc_replace_expr (c->expr, p);
1183 return true;
1187 /* Pull a single array element out of an array constructor. */
1189 static bool
1190 find_array_element (gfc_constructor_base base, gfc_array_ref *ar,
1191 gfc_constructor **rval)
1193 unsigned long nelemen;
1194 int i;
1195 mpz_t delta;
1196 mpz_t offset;
1197 mpz_t span;
1198 mpz_t tmp;
1199 gfc_constructor *cons;
1200 gfc_expr *e;
1201 bool t;
1203 t = true;
1204 e = NULL;
1206 mpz_init_set_ui (offset, 0);
1207 mpz_init (delta);
1208 mpz_init (tmp);
1209 mpz_init_set_ui (span, 1);
1210 for (i = 0; i < ar->dimen; i++)
1212 if (!gfc_reduce_init_expr (ar->as->lower[i])
1213 || !gfc_reduce_init_expr (ar->as->upper[i]))
1215 t = false;
1216 cons = NULL;
1217 goto depart;
1220 e = ar->start[i];
1221 if (e->expr_type != EXPR_CONSTANT)
1223 cons = NULL;
1224 goto depart;
1227 gcc_assert (ar->as->upper[i]->expr_type == EXPR_CONSTANT
1228 && ar->as->lower[i]->expr_type == EXPR_CONSTANT);
1230 /* Check the bounds. */
1231 if ((ar->as->upper[i]
1232 && mpz_cmp (e->value.integer,
1233 ar->as->upper[i]->value.integer) > 0)
1234 || (mpz_cmp (e->value.integer,
1235 ar->as->lower[i]->value.integer) < 0))
1237 gfc_error ("Index in dimension %d is out of bounds "
1238 "at %L", i + 1, &ar->c_where[i]);
1239 cons = NULL;
1240 t = false;
1241 goto depart;
1244 mpz_sub (delta, e->value.integer, ar->as->lower[i]->value.integer);
1245 mpz_mul (delta, delta, span);
1246 mpz_add (offset, offset, delta);
1248 mpz_set_ui (tmp, 1);
1249 mpz_add (tmp, tmp, ar->as->upper[i]->value.integer);
1250 mpz_sub (tmp, tmp, ar->as->lower[i]->value.integer);
1251 mpz_mul (span, span, tmp);
1254 for (cons = gfc_constructor_first (base), nelemen = mpz_get_ui (offset);
1255 cons && nelemen > 0; cons = gfc_constructor_next (cons), nelemen--)
1257 if (cons->iterator)
1259 cons = NULL;
1260 goto depart;
1264 depart:
1265 mpz_clear (delta);
1266 mpz_clear (offset);
1267 mpz_clear (span);
1268 mpz_clear (tmp);
1269 *rval = cons;
1270 return t;
1274 /* Find a component of a structure constructor. */
1276 static gfc_constructor *
1277 find_component_ref (gfc_constructor_base base, gfc_ref *ref)
1279 gfc_component *pick = ref->u.c.component;
1280 gfc_constructor *c = gfc_constructor_first (base);
1282 gfc_symbol *dt = ref->u.c.sym;
1283 int ext = dt->attr.extension;
1285 /* For extended types, check if the desired component is in one of the
1286 * parent types. */
1287 while (ext > 0 && gfc_find_component (dt->components->ts.u.derived,
1288 pick->name, true, true, NULL))
1290 dt = dt->components->ts.u.derived;
1291 c = gfc_constructor_first (c->expr->value.constructor);
1292 ext--;
1295 gfc_component *comp = dt->components;
1296 while (comp != pick)
1298 comp = comp->next;
1299 c = gfc_constructor_next (c);
1302 return c;
1306 /* Replace an expression with the contents of a constructor, removing
1307 the subobject reference in the process. */
1309 static void
1310 remove_subobject_ref (gfc_expr *p, gfc_constructor *cons)
1312 gfc_expr *e;
1314 if (cons)
1316 e = cons->expr;
1317 cons->expr = NULL;
1319 else
1320 e = gfc_copy_expr (p);
1321 e->ref = p->ref->next;
1322 p->ref->next = NULL;
1323 gfc_replace_expr (p, e);
1327 /* Pull an array section out of an array constructor. */
1329 static bool
1330 find_array_section (gfc_expr *expr, gfc_ref *ref)
1332 int idx;
1333 int rank;
1334 int d;
1335 int shape_i;
1336 int limit;
1337 long unsigned one = 1;
1338 bool incr_ctr;
1339 mpz_t start[GFC_MAX_DIMENSIONS];
1340 mpz_t end[GFC_MAX_DIMENSIONS];
1341 mpz_t stride[GFC_MAX_DIMENSIONS];
1342 mpz_t delta[GFC_MAX_DIMENSIONS];
1343 mpz_t ctr[GFC_MAX_DIMENSIONS];
1344 mpz_t delta_mpz;
1345 mpz_t tmp_mpz;
1346 mpz_t nelts;
1347 mpz_t ptr;
1348 gfc_constructor_base base;
1349 gfc_constructor *cons, *vecsub[GFC_MAX_DIMENSIONS];
1350 gfc_expr *begin;
1351 gfc_expr *finish;
1352 gfc_expr *step;
1353 gfc_expr *upper;
1354 gfc_expr *lower;
1355 bool t;
1357 t = true;
1359 base = expr->value.constructor;
1360 expr->value.constructor = NULL;
1362 rank = ref->u.ar.as->rank;
1364 if (expr->shape == NULL)
1365 expr->shape = gfc_get_shape (rank);
1367 mpz_init_set_ui (delta_mpz, one);
1368 mpz_init_set_ui (nelts, one);
1369 mpz_init (tmp_mpz);
1371 /* Do the initialization now, so that we can cleanup without
1372 keeping track of where we were. */
1373 for (d = 0; d < rank; d++)
1375 mpz_init (delta[d]);
1376 mpz_init (start[d]);
1377 mpz_init (end[d]);
1378 mpz_init (ctr[d]);
1379 mpz_init (stride[d]);
1380 vecsub[d] = NULL;
1383 /* Build the counters to clock through the array reference. */
1384 shape_i = 0;
1385 for (d = 0; d < rank; d++)
1387 /* Make this stretch of code easier on the eye! */
1388 begin = ref->u.ar.start[d];
1389 finish = ref->u.ar.end[d];
1390 step = ref->u.ar.stride[d];
1391 lower = ref->u.ar.as->lower[d];
1392 upper = ref->u.ar.as->upper[d];
1394 if (ref->u.ar.dimen_type[d] == DIMEN_VECTOR) /* Vector subscript. */
1396 gfc_constructor *ci;
1397 gcc_assert (begin);
1399 if (begin->expr_type != EXPR_ARRAY || !gfc_is_constant_expr (begin))
1401 t = false;
1402 goto cleanup;
1405 gcc_assert (begin->rank == 1);
1406 /* Zero-sized arrays have no shape and no elements, stop early. */
1407 if (!begin->shape)
1409 mpz_init_set_ui (nelts, 0);
1410 break;
1413 vecsub[d] = gfc_constructor_first (begin->value.constructor);
1414 mpz_set (ctr[d], vecsub[d]->expr->value.integer);
1415 mpz_mul (nelts, nelts, begin->shape[0]);
1416 mpz_set (expr->shape[shape_i++], begin->shape[0]);
1418 /* Check bounds. */
1419 for (ci = vecsub[d]; ci; ci = gfc_constructor_next (ci))
1421 if (mpz_cmp (ci->expr->value.integer, upper->value.integer) > 0
1422 || mpz_cmp (ci->expr->value.integer,
1423 lower->value.integer) < 0)
1425 gfc_error ("index in dimension %d is out of bounds "
1426 "at %L", d + 1, &ref->u.ar.c_where[d]);
1427 t = false;
1428 goto cleanup;
1432 else
1434 if ((begin && begin->expr_type != EXPR_CONSTANT)
1435 || (finish && finish->expr_type != EXPR_CONSTANT)
1436 || (step && step->expr_type != EXPR_CONSTANT))
1438 t = false;
1439 goto cleanup;
1442 /* Obtain the stride. */
1443 if (step)
1444 mpz_set (stride[d], step->value.integer);
1445 else
1446 mpz_set_ui (stride[d], one);
1448 if (mpz_cmp_ui (stride[d], 0) == 0)
1449 mpz_set_ui (stride[d], one);
1451 /* Obtain the start value for the index. */
1452 if (begin)
1453 mpz_set (start[d], begin->value.integer);
1454 else
1455 mpz_set (start[d], lower->value.integer);
1457 mpz_set (ctr[d], start[d]);
1459 /* Obtain the end value for the index. */
1460 if (finish)
1461 mpz_set (end[d], finish->value.integer);
1462 else
1463 mpz_set (end[d], upper->value.integer);
1465 /* Separate 'if' because elements sometimes arrive with
1466 non-null end. */
1467 if (ref->u.ar.dimen_type[d] == DIMEN_ELEMENT)
1468 mpz_set (end [d], begin->value.integer);
1470 /* Check the bounds. */
1471 if (mpz_cmp (ctr[d], upper->value.integer) > 0
1472 || mpz_cmp (end[d], upper->value.integer) > 0
1473 || mpz_cmp (ctr[d], lower->value.integer) < 0
1474 || mpz_cmp (end[d], lower->value.integer) < 0)
1476 gfc_error ("index in dimension %d is out of bounds "
1477 "at %L", d + 1, &ref->u.ar.c_where[d]);
1478 t = false;
1479 goto cleanup;
1482 /* Calculate the number of elements and the shape. */
1483 mpz_set (tmp_mpz, stride[d]);
1484 mpz_add (tmp_mpz, end[d], tmp_mpz);
1485 mpz_sub (tmp_mpz, tmp_mpz, ctr[d]);
1486 mpz_div (tmp_mpz, tmp_mpz, stride[d]);
1487 mpz_mul (nelts, nelts, tmp_mpz);
1489 /* An element reference reduces the rank of the expression; don't
1490 add anything to the shape array. */
1491 if (ref->u.ar.dimen_type[d] != DIMEN_ELEMENT)
1492 mpz_set (expr->shape[shape_i++], tmp_mpz);
1495 /* Calculate the 'stride' (=delta) for conversion of the
1496 counter values into the index along the constructor. */
1497 mpz_set (delta[d], delta_mpz);
1498 mpz_sub (tmp_mpz, upper->value.integer, lower->value.integer);
1499 mpz_add_ui (tmp_mpz, tmp_mpz, one);
1500 mpz_mul (delta_mpz, delta_mpz, tmp_mpz);
1503 mpz_init (ptr);
1504 cons = gfc_constructor_first (base);
1506 /* Now clock through the array reference, calculating the index in
1507 the source constructor and transferring the elements to the new
1508 constructor. */
1509 for (idx = 0; idx < (int) mpz_get_si (nelts); idx++)
1511 mpz_init_set_ui (ptr, 0);
1513 incr_ctr = true;
1514 for (d = 0; d < rank; d++)
1516 mpz_set (tmp_mpz, ctr[d]);
1517 mpz_sub (tmp_mpz, tmp_mpz, ref->u.ar.as->lower[d]->value.integer);
1518 mpz_mul (tmp_mpz, tmp_mpz, delta[d]);
1519 mpz_add (ptr, ptr, tmp_mpz);
1521 if (!incr_ctr) continue;
1523 if (ref->u.ar.dimen_type[d] == DIMEN_VECTOR) /* Vector subscript. */
1525 gcc_assert(vecsub[d]);
1527 if (!gfc_constructor_next (vecsub[d]))
1528 vecsub[d] = gfc_constructor_first (ref->u.ar.start[d]->value.constructor);
1529 else
1531 vecsub[d] = gfc_constructor_next (vecsub[d]);
1532 incr_ctr = false;
1534 mpz_set (ctr[d], vecsub[d]->expr->value.integer);
1536 else
1538 mpz_add (ctr[d], ctr[d], stride[d]);
1540 if (mpz_cmp_ui (stride[d], 0) > 0
1541 ? mpz_cmp (ctr[d], end[d]) > 0
1542 : mpz_cmp (ctr[d], end[d]) < 0)
1543 mpz_set (ctr[d], start[d]);
1544 else
1545 incr_ctr = false;
1549 limit = mpz_get_ui (ptr);
1550 if (limit >= flag_max_array_constructor)
1552 gfc_error ("The number of elements in the array constructor "
1553 "at %L requires an increase of the allowed %d "
1554 "upper limit. See -fmax-array-constructor "
1555 "option", &expr->where, flag_max_array_constructor);
1556 return false;
1559 cons = gfc_constructor_lookup (base, limit);
1560 gcc_assert (cons);
1561 gfc_constructor_append_expr (&expr->value.constructor,
1562 gfc_copy_expr (cons->expr), NULL);
1565 mpz_clear (ptr);
1567 cleanup:
1569 mpz_clear (delta_mpz);
1570 mpz_clear (tmp_mpz);
1571 mpz_clear (nelts);
1572 for (d = 0; d < rank; d++)
1574 mpz_clear (delta[d]);
1575 mpz_clear (start[d]);
1576 mpz_clear (end[d]);
1577 mpz_clear (ctr[d]);
1578 mpz_clear (stride[d]);
1580 gfc_constructor_free (base);
1581 return t;
1584 /* Pull a substring out of an expression. */
1586 static bool
1587 find_substring_ref (gfc_expr *p, gfc_expr **newp)
1589 int end;
1590 int start;
1591 int length;
1592 gfc_char_t *chr;
1594 if (p->ref->u.ss.start->expr_type != EXPR_CONSTANT
1595 || p->ref->u.ss.end->expr_type != EXPR_CONSTANT)
1596 return false;
1598 *newp = gfc_copy_expr (p);
1599 free ((*newp)->value.character.string);
1601 end = (int) mpz_get_ui (p->ref->u.ss.end->value.integer);
1602 start = (int) mpz_get_ui (p->ref->u.ss.start->value.integer);
1603 length = end - start + 1;
1605 chr = (*newp)->value.character.string = gfc_get_wide_string (length + 1);
1606 (*newp)->value.character.length = length;
1607 memcpy (chr, &p->value.character.string[start - 1],
1608 length * sizeof (gfc_char_t));
1609 chr[length] = '\0';
1610 return true;
1615 /* Simplify a subobject reference of a constructor. This occurs when
1616 parameter variable values are substituted. */
1618 static bool
1619 simplify_const_ref (gfc_expr *p)
1621 gfc_constructor *cons, *c;
1622 gfc_expr *newp;
1623 gfc_ref *last_ref;
1625 while (p->ref)
1627 switch (p->ref->type)
1629 case REF_ARRAY:
1630 switch (p->ref->u.ar.type)
1632 case AR_ELEMENT:
1633 /* <type/kind spec>, parameter :: x(<int>) = scalar_expr
1634 will generate this. */
1635 if (p->expr_type != EXPR_ARRAY)
1637 remove_subobject_ref (p, NULL);
1638 break;
1640 if (!find_array_element (p->value.constructor, &p->ref->u.ar, &cons))
1641 return false;
1643 if (!cons)
1644 return true;
1646 remove_subobject_ref (p, cons);
1647 break;
1649 case AR_SECTION:
1650 if (!find_array_section (p, p->ref))
1651 return false;
1652 p->ref->u.ar.type = AR_FULL;
1654 /* Fall through. */
1656 case AR_FULL:
1657 if (p->ref->next != NULL
1658 && (p->ts.type == BT_CHARACTER || gfc_bt_struct (p->ts.type)))
1660 for (c = gfc_constructor_first (p->value.constructor);
1661 c; c = gfc_constructor_next (c))
1663 c->expr->ref = gfc_copy_ref (p->ref->next);
1664 if (!simplify_const_ref (c->expr))
1665 return false;
1668 if (gfc_bt_struct (p->ts.type)
1669 && p->ref->next
1670 && (c = gfc_constructor_first (p->value.constructor)))
1672 /* There may have been component references. */
1673 p->ts = c->expr->ts;
1676 last_ref = p->ref;
1677 for (; last_ref->next; last_ref = last_ref->next) {};
1679 if (p->ts.type == BT_CHARACTER
1680 && last_ref->type == REF_SUBSTRING)
1682 /* If this is a CHARACTER array and we possibly took
1683 a substring out of it, update the type-spec's
1684 character length according to the first element
1685 (as all should have the same length). */
1686 gfc_charlen_t string_len;
1687 if ((c = gfc_constructor_first (p->value.constructor)))
1689 const gfc_expr* first = c->expr;
1690 gcc_assert (first->expr_type == EXPR_CONSTANT);
1691 gcc_assert (first->ts.type == BT_CHARACTER);
1692 string_len = first->value.character.length;
1694 else
1695 string_len = 0;
1697 if (!p->ts.u.cl)
1698 p->ts.u.cl = gfc_new_charlen (p->symtree->n.sym->ns,
1699 NULL);
1700 else
1701 gfc_free_expr (p->ts.u.cl->length);
1703 p->ts.u.cl->length
1704 = gfc_get_int_expr (gfc_default_integer_kind,
1705 NULL, string_len);
1708 gfc_free_ref_list (p->ref);
1709 p->ref = NULL;
1710 break;
1712 default:
1713 return true;
1716 break;
1718 case REF_COMPONENT:
1719 cons = find_component_ref (p->value.constructor, p->ref);
1720 remove_subobject_ref (p, cons);
1721 break;
1723 case REF_SUBSTRING:
1724 if (!find_substring_ref (p, &newp))
1725 return false;
1727 gfc_replace_expr (p, newp);
1728 gfc_free_ref_list (p->ref);
1729 p->ref = NULL;
1730 break;
1734 return true;
1738 /* Simplify a chain of references. */
1740 static bool
1741 simplify_ref_chain (gfc_ref *ref, int type)
1743 int n;
1745 for (; ref; ref = ref->next)
1747 switch (ref->type)
1749 case REF_ARRAY:
1750 for (n = 0; n < ref->u.ar.dimen; n++)
1752 if (!gfc_simplify_expr (ref->u.ar.start[n], type))
1753 return false;
1754 if (!gfc_simplify_expr (ref->u.ar.end[n], type))
1755 return false;
1756 if (!gfc_simplify_expr (ref->u.ar.stride[n], type))
1757 return false;
1759 break;
1761 case REF_SUBSTRING:
1762 if (!gfc_simplify_expr (ref->u.ss.start, type))
1763 return false;
1764 if (!gfc_simplify_expr (ref->u.ss.end, type))
1765 return false;
1766 break;
1768 default:
1769 break;
1772 return true;
1776 /* Try to substitute the value of a parameter variable. */
1778 static bool
1779 simplify_parameter_variable (gfc_expr *p, int type)
1781 gfc_expr *e;
1782 bool t;
1784 e = gfc_copy_expr (p->symtree->n.sym->value);
1785 if (e == NULL)
1786 return false;
1788 e->rank = p->rank;
1790 /* Do not copy subobject refs for constant. */
1791 if (e->expr_type != EXPR_CONSTANT && p->ref != NULL)
1792 e->ref = gfc_copy_ref (p->ref);
1793 t = gfc_simplify_expr (e, type);
1795 /* Only use the simplification if it eliminated all subobject references. */
1796 if (t && !e->ref)
1797 gfc_replace_expr (p, e);
1798 else
1799 gfc_free_expr (e);
1801 return t;
1804 /* Given an expression, simplify it by collapsing constant
1805 expressions. Most simplification takes place when the expression
1806 tree is being constructed. If an intrinsic function is simplified
1807 at some point, we get called again to collapse the result against
1808 other constants.
1810 We work by recursively simplifying expression nodes, simplifying
1811 intrinsic functions where possible, which can lead to further
1812 constant collapsing. If an operator has constant operand(s), we
1813 rip the expression apart, and rebuild it, hoping that it becomes
1814 something simpler.
1816 The expression type is defined for:
1817 0 Basic expression parsing
1818 1 Simplifying array constructors -- will substitute
1819 iterator values.
1820 Returns false on error, true otherwise.
1821 NOTE: Will return true even if the expression can not be simplified. */
1823 bool
1824 gfc_simplify_expr (gfc_expr *p, int type)
1826 gfc_actual_arglist *ap;
1828 if (p == NULL)
1829 return true;
1831 switch (p->expr_type)
1833 case EXPR_CONSTANT:
1834 case EXPR_NULL:
1835 break;
1837 case EXPR_FUNCTION:
1838 for (ap = p->value.function.actual; ap; ap = ap->next)
1839 if (!gfc_simplify_expr (ap->expr, type))
1840 return false;
1842 if (p->value.function.isym != NULL
1843 && gfc_intrinsic_func_interface (p, 1) == MATCH_ERROR)
1844 return false;
1846 break;
1848 case EXPR_SUBSTRING:
1849 if (!simplify_ref_chain (p->ref, type))
1850 return false;
1852 if (gfc_is_constant_expr (p))
1854 gfc_char_t *s;
1855 HOST_WIDE_INT start, end;
1857 start = 0;
1858 if (p->ref && p->ref->u.ss.start)
1860 gfc_extract_hwi (p->ref->u.ss.start, &start);
1861 start--; /* Convert from one-based to zero-based. */
1864 end = p->value.character.length;
1865 if (p->ref && p->ref->u.ss.end)
1866 gfc_extract_hwi (p->ref->u.ss.end, &end);
1868 if (end < start)
1869 end = start;
1871 s = gfc_get_wide_string (end - start + 2);
1872 memcpy (s, p->value.character.string + start,
1873 (end - start) * sizeof (gfc_char_t));
1874 s[end - start + 1] = '\0'; /* TODO: C-style string. */
1875 free (p->value.character.string);
1876 p->value.character.string = s;
1877 p->value.character.length = end - start;
1878 p->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
1879 p->ts.u.cl->length = gfc_get_int_expr (gfc_default_integer_kind,
1880 NULL,
1881 p->value.character.length);
1882 gfc_free_ref_list (p->ref);
1883 p->ref = NULL;
1884 p->expr_type = EXPR_CONSTANT;
1886 break;
1888 case EXPR_OP:
1889 if (!simplify_intrinsic_op (p, type))
1890 return false;
1891 break;
1893 case EXPR_VARIABLE:
1894 /* Only substitute array parameter variables if we are in an
1895 initialization expression, or we want a subsection. */
1896 if (p->symtree->n.sym->attr.flavor == FL_PARAMETER
1897 && (gfc_init_expr_flag || p->ref
1898 || p->symtree->n.sym->value->expr_type != EXPR_ARRAY))
1900 if (!simplify_parameter_variable (p, type))
1901 return false;
1902 break;
1905 if (type == 1)
1907 gfc_simplify_iterator_var (p);
1910 /* Simplify subcomponent references. */
1911 if (!simplify_ref_chain (p->ref, type))
1912 return false;
1914 break;
1916 case EXPR_STRUCTURE:
1917 case EXPR_ARRAY:
1918 if (!simplify_ref_chain (p->ref, type))
1919 return false;
1921 if (!simplify_constructor (p->value.constructor, type))
1922 return false;
1924 if (p->expr_type == EXPR_ARRAY && p->ref && p->ref->type == REF_ARRAY
1925 && p->ref->u.ar.type == AR_FULL)
1926 gfc_expand_constructor (p, false);
1928 if (!simplify_const_ref (p))
1929 return false;
1931 break;
1933 case EXPR_COMPCALL:
1934 case EXPR_PPC:
1935 break;
1938 return true;
1942 /* Returns the type of an expression with the exception that iterator
1943 variables are automatically integers no matter what else they may
1944 be declared as. */
1946 static bt
1947 et0 (gfc_expr *e)
1949 if (e->expr_type == EXPR_VARIABLE && gfc_check_iter_variable (e))
1950 return BT_INTEGER;
1952 return e->ts.type;
1956 /* Scalarize an expression for an elemental intrinsic call. */
1958 static bool
1959 scalarize_intrinsic_call (gfc_expr *e)
1961 gfc_actual_arglist *a, *b;
1962 gfc_constructor_base ctor;
1963 gfc_constructor *args[5];
1964 gfc_constructor *ci, *new_ctor;
1965 gfc_expr *expr, *old;
1966 int n, i, rank[5], array_arg;
1968 /* Find which, if any, arguments are arrays. Assume that the old
1969 expression carries the type information and that the first arg
1970 that is an array expression carries all the shape information.*/
1971 n = array_arg = 0;
1972 a = e->value.function.actual;
1973 for (; a; a = a->next)
1975 n++;
1976 if (!a->expr || a->expr->expr_type != EXPR_ARRAY)
1977 continue;
1978 array_arg = n;
1979 expr = gfc_copy_expr (a->expr);
1980 break;
1983 if (!array_arg)
1984 return false;
1986 old = gfc_copy_expr (e);
1988 gfc_constructor_free (expr->value.constructor);
1989 expr->value.constructor = NULL;
1990 expr->ts = old->ts;
1991 expr->where = old->where;
1992 expr->expr_type = EXPR_ARRAY;
1994 /* Copy the array argument constructors into an array, with nulls
1995 for the scalars. */
1996 n = 0;
1997 a = old->value.function.actual;
1998 for (; a; a = a->next)
2000 /* Check that this is OK for an initialization expression. */
2001 if (a->expr && !gfc_check_init_expr (a->expr))
2002 goto cleanup;
2004 rank[n] = 0;
2005 if (a->expr && a->expr->rank && a->expr->expr_type == EXPR_VARIABLE)
2007 rank[n] = a->expr->rank;
2008 ctor = a->expr->symtree->n.sym->value->value.constructor;
2009 args[n] = gfc_constructor_first (ctor);
2011 else if (a->expr && a->expr->expr_type == EXPR_ARRAY)
2013 if (a->expr->rank)
2014 rank[n] = a->expr->rank;
2015 else
2016 rank[n] = 1;
2017 ctor = gfc_constructor_copy (a->expr->value.constructor);
2018 args[n] = gfc_constructor_first (ctor);
2020 else
2021 args[n] = NULL;
2023 n++;
2027 /* Using the array argument as the master, step through the array
2028 calling the function for each element and advancing the array
2029 constructors together. */
2030 for (ci = args[array_arg - 1]; ci; ci = gfc_constructor_next (ci))
2032 new_ctor = gfc_constructor_append_expr (&expr->value.constructor,
2033 gfc_copy_expr (old), NULL);
2035 gfc_free_actual_arglist (new_ctor->expr->value.function.actual);
2036 a = NULL;
2037 b = old->value.function.actual;
2038 for (i = 0; i < n; i++)
2040 if (a == NULL)
2041 new_ctor->expr->value.function.actual
2042 = a = gfc_get_actual_arglist ();
2043 else
2045 a->next = gfc_get_actual_arglist ();
2046 a = a->next;
2049 if (args[i])
2050 a->expr = gfc_copy_expr (args[i]->expr);
2051 else
2052 a->expr = gfc_copy_expr (b->expr);
2054 b = b->next;
2057 /* Simplify the function calls. If the simplification fails, the
2058 error will be flagged up down-stream or the library will deal
2059 with it. */
2060 gfc_simplify_expr (new_ctor->expr, 0);
2062 for (i = 0; i < n; i++)
2063 if (args[i])
2064 args[i] = gfc_constructor_next (args[i]);
2066 for (i = 1; i < n; i++)
2067 if (rank[i] && ((args[i] != NULL && args[array_arg - 1] == NULL)
2068 || (args[i] == NULL && args[array_arg - 1] != NULL)))
2069 goto compliance;
2072 free_expr0 (e);
2073 *e = *expr;
2074 /* Free "expr" but not the pointers it contains. */
2075 free (expr);
2076 gfc_free_expr (old);
2077 return true;
2079 compliance:
2080 gfc_error_now ("elemental function arguments at %C are not compliant");
2082 cleanup:
2083 gfc_free_expr (expr);
2084 gfc_free_expr (old);
2085 return false;
2089 static bool
2090 check_intrinsic_op (gfc_expr *e, bool (*check_function) (gfc_expr *))
2092 gfc_expr *op1 = e->value.op.op1;
2093 gfc_expr *op2 = e->value.op.op2;
2095 if (!(*check_function)(op1))
2096 return false;
2098 switch (e->value.op.op)
2100 case INTRINSIC_UPLUS:
2101 case INTRINSIC_UMINUS:
2102 if (!numeric_type (et0 (op1)))
2103 goto not_numeric;
2104 break;
2106 case INTRINSIC_EQ:
2107 case INTRINSIC_EQ_OS:
2108 case INTRINSIC_NE:
2109 case INTRINSIC_NE_OS:
2110 case INTRINSIC_GT:
2111 case INTRINSIC_GT_OS:
2112 case INTRINSIC_GE:
2113 case INTRINSIC_GE_OS:
2114 case INTRINSIC_LT:
2115 case INTRINSIC_LT_OS:
2116 case INTRINSIC_LE:
2117 case INTRINSIC_LE_OS:
2118 if (!(*check_function)(op2))
2119 return false;
2121 if (!(et0 (op1) == BT_CHARACTER && et0 (op2) == BT_CHARACTER)
2122 && !(numeric_type (et0 (op1)) && numeric_type (et0 (op2))))
2124 gfc_error ("Numeric or CHARACTER operands are required in "
2125 "expression at %L", &e->where);
2126 return false;
2128 break;
2130 case INTRINSIC_PLUS:
2131 case INTRINSIC_MINUS:
2132 case INTRINSIC_TIMES:
2133 case INTRINSIC_DIVIDE:
2134 case INTRINSIC_POWER:
2135 if (!(*check_function)(op2))
2136 return false;
2138 if (!numeric_type (et0 (op1)) || !numeric_type (et0 (op2)))
2139 goto not_numeric;
2141 break;
2143 case INTRINSIC_CONCAT:
2144 if (!(*check_function)(op2))
2145 return false;
2147 if (et0 (op1) != BT_CHARACTER || et0 (op2) != BT_CHARACTER)
2149 gfc_error ("Concatenation operator in expression at %L "
2150 "must have two CHARACTER operands", &op1->where);
2151 return false;
2154 if (op1->ts.kind != op2->ts.kind)
2156 gfc_error ("Concat operator at %L must concatenate strings of the "
2157 "same kind", &e->where);
2158 return false;
2161 break;
2163 case INTRINSIC_NOT:
2164 if (et0 (op1) != BT_LOGICAL)
2166 gfc_error (".NOT. operator in expression at %L must have a LOGICAL "
2167 "operand", &op1->where);
2168 return false;
2171 break;
2173 case INTRINSIC_AND:
2174 case INTRINSIC_OR:
2175 case INTRINSIC_EQV:
2176 case INTRINSIC_NEQV:
2177 if (!(*check_function)(op2))
2178 return false;
2180 if (et0 (op1) != BT_LOGICAL || et0 (op2) != BT_LOGICAL)
2182 gfc_error ("LOGICAL operands are required in expression at %L",
2183 &e->where);
2184 return false;
2187 break;
2189 case INTRINSIC_PARENTHESES:
2190 break;
2192 default:
2193 gfc_error ("Only intrinsic operators can be used in expression at %L",
2194 &e->where);
2195 return false;
2198 return true;
2200 not_numeric:
2201 gfc_error ("Numeric operands are required in expression at %L", &e->where);
2203 return false;
2206 /* F2003, 7.1.7 (3): In init expression, allocatable components
2207 must not be data-initialized. */
2208 static bool
2209 check_alloc_comp_init (gfc_expr *e)
2211 gfc_component *comp;
2212 gfc_constructor *ctor;
2214 gcc_assert (e->expr_type == EXPR_STRUCTURE);
2215 gcc_assert (e->ts.type == BT_DERIVED || e->ts.type == BT_CLASS);
2217 for (comp = e->ts.u.derived->components,
2218 ctor = gfc_constructor_first (e->value.constructor);
2219 comp; comp = comp->next, ctor = gfc_constructor_next (ctor))
2221 if (comp->attr.allocatable && ctor->expr
2222 && ctor->expr->expr_type != EXPR_NULL)
2224 gfc_error ("Invalid initialization expression for ALLOCATABLE "
2225 "component %qs in structure constructor at %L",
2226 comp->name, &ctor->expr->where);
2227 return false;
2231 return true;
2234 static match
2235 check_init_expr_arguments (gfc_expr *e)
2237 gfc_actual_arglist *ap;
2239 for (ap = e->value.function.actual; ap; ap = ap->next)
2240 if (!gfc_check_init_expr (ap->expr))
2241 return MATCH_ERROR;
2243 return MATCH_YES;
2246 static bool check_restricted (gfc_expr *);
2248 /* F95, 7.1.6.1, Initialization expressions, (7)
2249 F2003, 7.1.7 Initialization expression, (8) */
2251 static match
2252 check_inquiry (gfc_expr *e, int not_restricted)
2254 const char *name;
2255 const char *const *functions;
2257 static const char *const inquiry_func_f95[] = {
2258 "lbound", "shape", "size", "ubound",
2259 "bit_size", "len", "kind",
2260 "digits", "epsilon", "huge", "maxexponent", "minexponent",
2261 "precision", "radix", "range", "tiny",
2262 NULL
2265 static const char *const inquiry_func_f2003[] = {
2266 "lbound", "shape", "size", "ubound",
2267 "bit_size", "len", "kind",
2268 "digits", "epsilon", "huge", "maxexponent", "minexponent",
2269 "precision", "radix", "range", "tiny",
2270 "new_line", NULL
2273 int i = 0;
2274 gfc_actual_arglist *ap;
2276 if (!e->value.function.isym
2277 || !e->value.function.isym->inquiry)
2278 return MATCH_NO;
2280 /* An undeclared parameter will get us here (PR25018). */
2281 if (e->symtree == NULL)
2282 return MATCH_NO;
2284 if (e->symtree->n.sym->from_intmod)
2286 if (e->symtree->n.sym->from_intmod == INTMOD_ISO_FORTRAN_ENV
2287 && e->symtree->n.sym->intmod_sym_id != ISOFORTRAN_COMPILER_OPTIONS
2288 && e->symtree->n.sym->intmod_sym_id != ISOFORTRAN_COMPILER_VERSION)
2289 return MATCH_NO;
2291 if (e->symtree->n.sym->from_intmod == INTMOD_ISO_C_BINDING
2292 && e->symtree->n.sym->intmod_sym_id != ISOCBINDING_C_SIZEOF)
2293 return MATCH_NO;
2295 else
2297 name = e->symtree->n.sym->name;
2299 functions = (gfc_option.warn_std & GFC_STD_F2003)
2300 ? inquiry_func_f2003 : inquiry_func_f95;
2302 for (i = 0; functions[i]; i++)
2303 if (strcmp (functions[i], name) == 0)
2304 break;
2306 if (functions[i] == NULL)
2307 return MATCH_ERROR;
2310 /* At this point we have an inquiry function with a variable argument. The
2311 type of the variable might be undefined, but we need it now, because the
2312 arguments of these functions are not allowed to be undefined. */
2314 for (ap = e->value.function.actual; ap; ap = ap->next)
2316 if (!ap->expr)
2317 continue;
2319 if (ap->expr->ts.type == BT_UNKNOWN)
2321 if (ap->expr->symtree->n.sym->ts.type == BT_UNKNOWN
2322 && !gfc_set_default_type (ap->expr->symtree->n.sym, 0, gfc_current_ns))
2323 return MATCH_NO;
2325 ap->expr->ts = ap->expr->symtree->n.sym->ts;
2328 /* Assumed character length will not reduce to a constant expression
2329 with LEN, as required by the standard. */
2330 if (i == 5 && not_restricted
2331 && ap->expr->symtree->n.sym->ts.type == BT_CHARACTER
2332 && (ap->expr->symtree->n.sym->ts.u.cl->length == NULL
2333 || ap->expr->symtree->n.sym->ts.deferred))
2335 gfc_error ("Assumed or deferred character length variable %qs "
2336 " in constant expression at %L",
2337 ap->expr->symtree->n.sym->name,
2338 &ap->expr->where);
2339 return MATCH_ERROR;
2341 else if (not_restricted && !gfc_check_init_expr (ap->expr))
2342 return MATCH_ERROR;
2344 if (not_restricted == 0
2345 && ap->expr->expr_type != EXPR_VARIABLE
2346 && !check_restricted (ap->expr))
2347 return MATCH_ERROR;
2349 if (not_restricted == 0
2350 && ap->expr->expr_type == EXPR_VARIABLE
2351 && ap->expr->symtree->n.sym->attr.dummy
2352 && ap->expr->symtree->n.sym->attr.optional)
2353 return MATCH_NO;
2356 return MATCH_YES;
2360 /* F95, 7.1.6.1, Initialization expressions, (5)
2361 F2003, 7.1.7 Initialization expression, (5) */
2363 static match
2364 check_transformational (gfc_expr *e)
2366 static const char * const trans_func_f95[] = {
2367 "repeat", "reshape", "selected_int_kind",
2368 "selected_real_kind", "transfer", "trim", NULL
2371 static const char * const trans_func_f2003[] = {
2372 "all", "any", "count", "dot_product", "matmul", "null", "pack",
2373 "product", "repeat", "reshape", "selected_char_kind", "selected_int_kind",
2374 "selected_real_kind", "spread", "sum", "transfer", "transpose",
2375 "trim", "unpack", NULL
2378 int i;
2379 const char *name;
2380 const char *const *functions;
2382 if (!e->value.function.isym
2383 || !e->value.function.isym->transformational)
2384 return MATCH_NO;
2386 name = e->symtree->n.sym->name;
2388 functions = (gfc_option.allow_std & GFC_STD_F2003)
2389 ? trans_func_f2003 : trans_func_f95;
2391 /* NULL() is dealt with below. */
2392 if (strcmp ("null", name) == 0)
2393 return MATCH_NO;
2395 for (i = 0; functions[i]; i++)
2396 if (strcmp (functions[i], name) == 0)
2397 break;
2399 if (functions[i] == NULL)
2401 gfc_error ("transformational intrinsic %qs at %L is not permitted "
2402 "in an initialization expression", name, &e->where);
2403 return MATCH_ERROR;
2406 return check_init_expr_arguments (e);
2410 /* F95, 7.1.6.1, Initialization expressions, (6)
2411 F2003, 7.1.7 Initialization expression, (6) */
2413 static match
2414 check_null (gfc_expr *e)
2416 if (strcmp ("null", e->symtree->n.sym->name) != 0)
2417 return MATCH_NO;
2419 return check_init_expr_arguments (e);
2423 static match
2424 check_elemental (gfc_expr *e)
2426 if (!e->value.function.isym
2427 || !e->value.function.isym->elemental)
2428 return MATCH_NO;
2430 if (e->ts.type != BT_INTEGER
2431 && e->ts.type != BT_CHARACTER
2432 && !gfc_notify_std (GFC_STD_F2003, "Evaluation of nonstandard "
2433 "initialization expression at %L", &e->where))
2434 return MATCH_ERROR;
2436 return check_init_expr_arguments (e);
2440 static match
2441 check_conversion (gfc_expr *e)
2443 if (!e->value.function.isym
2444 || !e->value.function.isym->conversion)
2445 return MATCH_NO;
2447 return check_init_expr_arguments (e);
2451 /* Verify that an expression is an initialization expression. A side
2452 effect is that the expression tree is reduced to a single constant
2453 node if all goes well. This would normally happen when the
2454 expression is constructed but function references are assumed to be
2455 intrinsics in the context of initialization expressions. If
2456 false is returned an error message has been generated. */
2458 bool
2459 gfc_check_init_expr (gfc_expr *e)
2461 match m;
2462 bool t;
2464 if (e == NULL)
2465 return true;
2467 switch (e->expr_type)
2469 case EXPR_OP:
2470 t = check_intrinsic_op (e, gfc_check_init_expr);
2471 if (t)
2472 t = gfc_simplify_expr (e, 0);
2474 break;
2476 case EXPR_FUNCTION:
2477 t = false;
2480 bool conversion;
2481 gfc_intrinsic_sym* isym = NULL;
2482 gfc_symbol* sym = e->symtree->n.sym;
2484 /* Simplify here the intrinsics from the IEEE_ARITHMETIC and
2485 IEEE_EXCEPTIONS modules. */
2486 int mod = sym->from_intmod;
2487 if (mod == INTMOD_NONE && sym->generic)
2488 mod = sym->generic->sym->from_intmod;
2489 if (mod == INTMOD_IEEE_ARITHMETIC || mod == INTMOD_IEEE_EXCEPTIONS)
2491 gfc_expr *new_expr = gfc_simplify_ieee_functions (e);
2492 if (new_expr)
2494 gfc_replace_expr (e, new_expr);
2495 t = true;
2496 break;
2500 /* If a conversion function, e.g., __convert_i8_i4, was inserted
2501 into an array constructor, we need to skip the error check here.
2502 Conversion errors are caught below in scalarize_intrinsic_call. */
2503 conversion = e->value.function.isym
2504 && (e->value.function.isym->conversion == 1);
2506 if (!conversion && (!gfc_is_intrinsic (sym, 0, e->where)
2507 || (m = gfc_intrinsic_func_interface (e, 0)) != MATCH_YES))
2509 gfc_error ("Function %qs in initialization expression at %L "
2510 "must be an intrinsic function",
2511 e->symtree->n.sym->name, &e->where);
2512 break;
2515 if ((m = check_conversion (e)) == MATCH_NO
2516 && (m = check_inquiry (e, 1)) == MATCH_NO
2517 && (m = check_null (e)) == MATCH_NO
2518 && (m = check_transformational (e)) == MATCH_NO
2519 && (m = check_elemental (e)) == MATCH_NO)
2521 gfc_error ("Intrinsic function %qs at %L is not permitted "
2522 "in an initialization expression",
2523 e->symtree->n.sym->name, &e->where);
2524 m = MATCH_ERROR;
2527 if (m == MATCH_ERROR)
2528 return false;
2530 /* Try to scalarize an elemental intrinsic function that has an
2531 array argument. */
2532 isym = gfc_find_function (e->symtree->n.sym->name);
2533 if (isym && isym->elemental
2534 && (t = scalarize_intrinsic_call (e)))
2535 break;
2538 if (m == MATCH_YES)
2539 t = gfc_simplify_expr (e, 0);
2541 break;
2543 case EXPR_VARIABLE:
2544 t = true;
2546 if (gfc_check_iter_variable (e))
2547 break;
2549 if (e->symtree->n.sym->attr.flavor == FL_PARAMETER)
2551 /* A PARAMETER shall not be used to define itself, i.e.
2552 REAL, PARAMETER :: x = transfer(0, x)
2553 is invalid. */
2554 if (!e->symtree->n.sym->value)
2556 gfc_error ("PARAMETER %qs is used at %L before its definition "
2557 "is complete", e->symtree->n.sym->name, &e->where);
2558 t = false;
2560 else
2561 t = simplify_parameter_variable (e, 0);
2563 break;
2566 if (gfc_in_match_data ())
2567 break;
2569 t = false;
2571 if (e->symtree->n.sym->as)
2573 switch (e->symtree->n.sym->as->type)
2575 case AS_ASSUMED_SIZE:
2576 gfc_error ("Assumed size array %qs at %L is not permitted "
2577 "in an initialization expression",
2578 e->symtree->n.sym->name, &e->where);
2579 break;
2581 case AS_ASSUMED_SHAPE:
2582 gfc_error ("Assumed shape array %qs at %L is not permitted "
2583 "in an initialization expression",
2584 e->symtree->n.sym->name, &e->where);
2585 break;
2587 case AS_DEFERRED:
2588 gfc_error ("Deferred array %qs at %L is not permitted "
2589 "in an initialization expression",
2590 e->symtree->n.sym->name, &e->where);
2591 break;
2593 case AS_EXPLICIT:
2594 gfc_error ("Array %qs at %L is a variable, which does "
2595 "not reduce to a constant expression",
2596 e->symtree->n.sym->name, &e->where);
2597 break;
2599 default:
2600 gcc_unreachable();
2603 else
2604 gfc_error ("Parameter %qs at %L has not been declared or is "
2605 "a variable, which does not reduce to a constant "
2606 "expression", e->symtree->n.sym->name, &e->where);
2608 break;
2610 case EXPR_CONSTANT:
2611 case EXPR_NULL:
2612 t = true;
2613 break;
2615 case EXPR_SUBSTRING:
2616 if (e->ref)
2618 t = gfc_check_init_expr (e->ref->u.ss.start);
2619 if (!t)
2620 break;
2622 t = gfc_check_init_expr (e->ref->u.ss.end);
2623 if (t)
2624 t = gfc_simplify_expr (e, 0);
2626 else
2627 t = false;
2628 break;
2630 case EXPR_STRUCTURE:
2631 t = e->ts.is_iso_c ? true : false;
2632 if (t)
2633 break;
2635 t = check_alloc_comp_init (e);
2636 if (!t)
2637 break;
2639 t = gfc_check_constructor (e, gfc_check_init_expr);
2640 if (!t)
2641 break;
2643 break;
2645 case EXPR_ARRAY:
2646 t = gfc_check_constructor (e, gfc_check_init_expr);
2647 if (!t)
2648 break;
2650 t = gfc_expand_constructor (e, true);
2651 if (!t)
2652 break;
2654 t = gfc_check_constructor_type (e);
2655 break;
2657 default:
2658 gfc_internal_error ("check_init_expr(): Unknown expression type");
2661 return t;
2664 /* Reduces a general expression to an initialization expression (a constant).
2665 This used to be part of gfc_match_init_expr.
2666 Note that this function doesn't free the given expression on false. */
2668 bool
2669 gfc_reduce_init_expr (gfc_expr *expr)
2671 bool t;
2673 gfc_init_expr_flag = true;
2674 t = gfc_resolve_expr (expr);
2675 if (t)
2676 t = gfc_check_init_expr (expr);
2677 gfc_init_expr_flag = false;
2679 if (!t)
2680 return false;
2682 if (expr->expr_type == EXPR_ARRAY)
2684 if (!gfc_check_constructor_type (expr))
2685 return false;
2686 if (!gfc_expand_constructor (expr, true))
2687 return false;
2690 return true;
2694 /* Match an initialization expression. We work by first matching an
2695 expression, then reducing it to a constant. */
2697 match
2698 gfc_match_init_expr (gfc_expr **result)
2700 gfc_expr *expr;
2701 match m;
2702 bool t;
2704 expr = NULL;
2706 gfc_init_expr_flag = true;
2708 m = gfc_match_expr (&expr);
2709 if (m != MATCH_YES)
2711 gfc_init_expr_flag = false;
2712 return m;
2715 t = gfc_reduce_init_expr (expr);
2716 if (!t)
2718 gfc_free_expr (expr);
2719 gfc_init_expr_flag = false;
2720 return MATCH_ERROR;
2723 *result = expr;
2724 gfc_init_expr_flag = false;
2726 return MATCH_YES;
2730 /* Given an actual argument list, test to see that each argument is a
2731 restricted expression and optionally if the expression type is
2732 integer or character. */
2734 static bool
2735 restricted_args (gfc_actual_arglist *a)
2737 for (; a; a = a->next)
2739 if (!check_restricted (a->expr))
2740 return false;
2743 return true;
2747 /************* Restricted/specification expressions *************/
2750 /* Make sure a non-intrinsic function is a specification function,
2751 * see F08:7.1.11.5. */
2753 static bool
2754 external_spec_function (gfc_expr *e)
2756 gfc_symbol *f;
2758 f = e->value.function.esym;
2760 /* IEEE functions allowed are "a reference to a transformational function
2761 from the intrinsic module IEEE_ARITHMETIC or IEEE_EXCEPTIONS", and
2762 "inquiry function from the intrinsic modules IEEE_ARITHMETIC and
2763 IEEE_EXCEPTIONS". */
2764 if (f->from_intmod == INTMOD_IEEE_ARITHMETIC
2765 || f->from_intmod == INTMOD_IEEE_EXCEPTIONS)
2767 if (!strcmp (f->name, "ieee_selected_real_kind")
2768 || !strcmp (f->name, "ieee_support_rounding")
2769 || !strcmp (f->name, "ieee_support_flag")
2770 || !strcmp (f->name, "ieee_support_halting")
2771 || !strcmp (f->name, "ieee_support_datatype")
2772 || !strcmp (f->name, "ieee_support_denormal")
2773 || !strcmp (f->name, "ieee_support_divide")
2774 || !strcmp (f->name, "ieee_support_inf")
2775 || !strcmp (f->name, "ieee_support_io")
2776 || !strcmp (f->name, "ieee_support_nan")
2777 || !strcmp (f->name, "ieee_support_sqrt")
2778 || !strcmp (f->name, "ieee_support_standard")
2779 || !strcmp (f->name, "ieee_support_underflow_control"))
2780 goto function_allowed;
2783 if (f->attr.proc == PROC_ST_FUNCTION)
2785 gfc_error ("Specification function %qs at %L cannot be a statement "
2786 "function", f->name, &e->where);
2787 return false;
2790 if (f->attr.proc == PROC_INTERNAL)
2792 gfc_error ("Specification function %qs at %L cannot be an internal "
2793 "function", f->name, &e->where);
2794 return false;
2797 if (!f->attr.pure && !f->attr.elemental)
2799 gfc_error ("Specification function %qs at %L must be PURE", f->name,
2800 &e->where);
2801 return false;
2804 /* F08:7.1.11.6. */
2805 if (f->attr.recursive
2806 && !gfc_notify_std (GFC_STD_F2003,
2807 "Specification function '%s' "
2808 "at %L cannot be RECURSIVE", f->name, &e->where))
2809 return false;
2811 function_allowed:
2812 return restricted_args (e->value.function.actual);
2816 /* Check to see that a function reference to an intrinsic is a
2817 restricted expression. */
2819 static bool
2820 restricted_intrinsic (gfc_expr *e)
2822 /* TODO: Check constraints on inquiry functions. 7.1.6.2 (7). */
2823 if (check_inquiry (e, 0) == MATCH_YES)
2824 return true;
2826 return restricted_args (e->value.function.actual);
2830 /* Check the expressions of an actual arglist. Used by check_restricted. */
2832 static bool
2833 check_arglist (gfc_actual_arglist* arg, bool (*checker) (gfc_expr*))
2835 for (; arg; arg = arg->next)
2836 if (!checker (arg->expr))
2837 return false;
2839 return true;
2843 /* Check the subscription expressions of a reference chain with a checking
2844 function; used by check_restricted. */
2846 static bool
2847 check_references (gfc_ref* ref, bool (*checker) (gfc_expr*))
2849 int dim;
2851 if (!ref)
2852 return true;
2854 switch (ref->type)
2856 case REF_ARRAY:
2857 for (dim = 0; dim != ref->u.ar.dimen; ++dim)
2859 if (!checker (ref->u.ar.start[dim]))
2860 return false;
2861 if (!checker (ref->u.ar.end[dim]))
2862 return false;
2863 if (!checker (ref->u.ar.stride[dim]))
2864 return false;
2866 break;
2868 case REF_COMPONENT:
2869 /* Nothing needed, just proceed to next reference. */
2870 break;
2872 case REF_SUBSTRING:
2873 if (!checker (ref->u.ss.start))
2874 return false;
2875 if (!checker (ref->u.ss.end))
2876 return false;
2877 break;
2879 default:
2880 gcc_unreachable ();
2881 break;
2884 return check_references (ref->next, checker);
2887 /* Return true if ns is a parent of the current ns. */
2889 static bool
2890 is_parent_of_current_ns (gfc_namespace *ns)
2892 gfc_namespace *p;
2893 for (p = gfc_current_ns->parent; p; p = p->parent)
2894 if (ns == p)
2895 return true;
2897 return false;
2900 /* Verify that an expression is a restricted expression. Like its
2901 cousin check_init_expr(), an error message is generated if we
2902 return false. */
2904 static bool
2905 check_restricted (gfc_expr *e)
2907 gfc_symbol* sym;
2908 bool t;
2910 if (e == NULL)
2911 return true;
2913 switch (e->expr_type)
2915 case EXPR_OP:
2916 t = check_intrinsic_op (e, check_restricted);
2917 if (t)
2918 t = gfc_simplify_expr (e, 0);
2920 break;
2922 case EXPR_FUNCTION:
2923 if (e->value.function.esym)
2925 t = check_arglist (e->value.function.actual, &check_restricted);
2926 if (t)
2927 t = external_spec_function (e);
2929 else
2931 if (e->value.function.isym && e->value.function.isym->inquiry)
2932 t = true;
2933 else
2934 t = check_arglist (e->value.function.actual, &check_restricted);
2936 if (t)
2937 t = restricted_intrinsic (e);
2939 break;
2941 case EXPR_VARIABLE:
2942 sym = e->symtree->n.sym;
2943 t = false;
2945 /* If a dummy argument appears in a context that is valid for a
2946 restricted expression in an elemental procedure, it will have
2947 already been simplified away once we get here. Therefore we
2948 don't need to jump through hoops to distinguish valid from
2949 invalid cases. */
2950 if (sym->attr.dummy && sym->ns == gfc_current_ns
2951 && sym->ns->proc_name && sym->ns->proc_name->attr.elemental)
2953 gfc_error ("Dummy argument %qs not allowed in expression at %L",
2954 sym->name, &e->where);
2955 break;
2958 if (sym->attr.optional)
2960 gfc_error ("Dummy argument %qs at %L cannot be OPTIONAL",
2961 sym->name, &e->where);
2962 break;
2965 if (sym->attr.intent == INTENT_OUT)
2967 gfc_error ("Dummy argument %qs at %L cannot be INTENT(OUT)",
2968 sym->name, &e->where);
2969 break;
2972 /* Check reference chain if any. */
2973 if (!check_references (e->ref, &check_restricted))
2974 break;
2976 /* gfc_is_formal_arg broadcasts that a formal argument list is being
2977 processed in resolve.c(resolve_formal_arglist). This is done so
2978 that host associated dummy array indices are accepted (PR23446).
2979 This mechanism also does the same for the specification expressions
2980 of array-valued functions. */
2981 if (e->error
2982 || sym->attr.in_common
2983 || sym->attr.use_assoc
2984 || sym->attr.dummy
2985 || sym->attr.implied_index
2986 || sym->attr.flavor == FL_PARAMETER
2987 || is_parent_of_current_ns (sym->ns)
2988 || (sym->ns->proc_name != NULL
2989 && sym->ns->proc_name->attr.flavor == FL_MODULE)
2990 || (gfc_is_formal_arg () && (sym->ns == gfc_current_ns)))
2992 t = true;
2993 break;
2996 gfc_error ("Variable %qs cannot appear in the expression at %L",
2997 sym->name, &e->where);
2998 /* Prevent a repetition of the error. */
2999 e->error = 1;
3000 break;
3002 case EXPR_NULL:
3003 case EXPR_CONSTANT:
3004 t = true;
3005 break;
3007 case EXPR_SUBSTRING:
3008 t = gfc_specification_expr (e->ref->u.ss.start);
3009 if (!t)
3010 break;
3012 t = gfc_specification_expr (e->ref->u.ss.end);
3013 if (t)
3014 t = gfc_simplify_expr (e, 0);
3016 break;
3018 case EXPR_STRUCTURE:
3019 t = gfc_check_constructor (e, check_restricted);
3020 break;
3022 case EXPR_ARRAY:
3023 t = gfc_check_constructor (e, check_restricted);
3024 break;
3026 default:
3027 gfc_internal_error ("check_restricted(): Unknown expression type");
3030 return t;
3034 /* Check to see that an expression is a specification expression. If
3035 we return false, an error has been generated. */
3037 bool
3038 gfc_specification_expr (gfc_expr *e)
3040 gfc_component *comp;
3042 if (e == NULL)
3043 return true;
3045 if (e->ts.type != BT_INTEGER)
3047 gfc_error ("Expression at %L must be of INTEGER type, found %s",
3048 &e->where, gfc_basic_typename (e->ts.type));
3049 return false;
3052 comp = gfc_get_proc_ptr_comp (e);
3053 if (e->expr_type == EXPR_FUNCTION
3054 && !e->value.function.isym
3055 && !e->value.function.esym
3056 && !gfc_pure (e->symtree->n.sym)
3057 && (!comp || !comp->attr.pure))
3059 gfc_error ("Function %qs at %L must be PURE",
3060 e->symtree->n.sym->name, &e->where);
3061 /* Prevent repeat error messages. */
3062 e->symtree->n.sym->attr.pure = 1;
3063 return false;
3066 if (e->rank != 0)
3068 gfc_error ("Expression at %L must be scalar", &e->where);
3069 return false;
3072 if (!gfc_simplify_expr (e, 0))
3073 return false;
3075 return check_restricted (e);
3079 /************** Expression conformance checks. *************/
3081 /* Given two expressions, make sure that the arrays are conformable. */
3083 bool
3084 gfc_check_conformance (gfc_expr *op1, gfc_expr *op2, const char *optype_msgid, ...)
3086 int op1_flag, op2_flag, d;
3087 mpz_t op1_size, op2_size;
3088 bool t;
3090 va_list argp;
3091 char buffer[240];
3093 if (op1->rank == 0 || op2->rank == 0)
3094 return true;
3096 va_start (argp, optype_msgid);
3097 vsnprintf (buffer, 240, optype_msgid, argp);
3098 va_end (argp);
3100 if (op1->rank != op2->rank)
3102 gfc_error ("Incompatible ranks in %s (%d and %d) at %L", _(buffer),
3103 op1->rank, op2->rank, &op1->where);
3104 return false;
3107 t = true;
3109 for (d = 0; d < op1->rank; d++)
3111 op1_flag = gfc_array_dimen_size(op1, d, &op1_size);
3112 op2_flag = gfc_array_dimen_size(op2, d, &op2_size);
3114 if (op1_flag && op2_flag && mpz_cmp (op1_size, op2_size) != 0)
3116 gfc_error ("Different shape for %s at %L on dimension %d "
3117 "(%d and %d)", _(buffer), &op1->where, d + 1,
3118 (int) mpz_get_si (op1_size),
3119 (int) mpz_get_si (op2_size));
3121 t = false;
3124 if (op1_flag)
3125 mpz_clear (op1_size);
3126 if (op2_flag)
3127 mpz_clear (op2_size);
3129 if (!t)
3130 return false;
3133 return true;
3137 /* Given an assignable expression and an arbitrary expression, make
3138 sure that the assignment can take place. Only add a call to the intrinsic
3139 conversion routines, when allow_convert is set. When this assign is a
3140 coarray call, then the convert is done by the coarray routine implictly and
3141 adding the intrinsic conversion would do harm in most cases. */
3143 bool
3144 gfc_check_assign (gfc_expr *lvalue, gfc_expr *rvalue, int conform,
3145 bool allow_convert)
3147 gfc_symbol *sym;
3148 gfc_ref *ref;
3149 int has_pointer;
3151 sym = lvalue->symtree->n.sym;
3153 /* See if this is the component or subcomponent of a pointer. */
3154 has_pointer = sym->attr.pointer;
3155 for (ref = lvalue->ref; ref; ref = ref->next)
3156 if (ref->type == REF_COMPONENT && ref->u.c.component->attr.pointer)
3158 has_pointer = 1;
3159 break;
3162 /* 12.5.2.2, Note 12.26: The result variable is very similar to any other
3163 variable local to a function subprogram. Its existence begins when
3164 execution of the function is initiated and ends when execution of the
3165 function is terminated...
3166 Therefore, the left hand side is no longer a variable, when it is: */
3167 if (sym->attr.flavor == FL_PROCEDURE && sym->attr.proc != PROC_ST_FUNCTION
3168 && !sym->attr.external)
3170 bool bad_proc;
3171 bad_proc = false;
3173 /* (i) Use associated; */
3174 if (sym->attr.use_assoc)
3175 bad_proc = true;
3177 /* (ii) The assignment is in the main program; or */
3178 if (gfc_current_ns->proc_name
3179 && gfc_current_ns->proc_name->attr.is_main_program)
3180 bad_proc = true;
3182 /* (iii) A module or internal procedure... */
3183 if (gfc_current_ns->proc_name
3184 && (gfc_current_ns->proc_name->attr.proc == PROC_INTERNAL
3185 || gfc_current_ns->proc_name->attr.proc == PROC_MODULE)
3186 && gfc_current_ns->parent
3187 && (!(gfc_current_ns->parent->proc_name->attr.function
3188 || gfc_current_ns->parent->proc_name->attr.subroutine)
3189 || gfc_current_ns->parent->proc_name->attr.is_main_program))
3191 /* ... that is not a function... */
3192 if (gfc_current_ns->proc_name
3193 && !gfc_current_ns->proc_name->attr.function)
3194 bad_proc = true;
3196 /* ... or is not an entry and has a different name. */
3197 if (!sym->attr.entry && sym->name != gfc_current_ns->proc_name->name)
3198 bad_proc = true;
3201 /* (iv) Host associated and not the function symbol or the
3202 parent result. This picks up sibling references, which
3203 cannot be entries. */
3204 if (!sym->attr.entry
3205 && sym->ns == gfc_current_ns->parent
3206 && sym != gfc_current_ns->proc_name
3207 && sym != gfc_current_ns->parent->proc_name->result)
3208 bad_proc = true;
3210 if (bad_proc)
3212 gfc_error ("%qs at %L is not a VALUE", sym->name, &lvalue->where);
3213 return false;
3217 if (rvalue->rank != 0 && lvalue->rank != rvalue->rank)
3219 gfc_error ("Incompatible ranks %d and %d in assignment at %L",
3220 lvalue->rank, rvalue->rank, &lvalue->where);
3221 return false;
3224 if (lvalue->ts.type == BT_UNKNOWN)
3226 gfc_error ("Variable type is UNKNOWN in assignment at %L",
3227 &lvalue->where);
3228 return false;
3231 if (rvalue->expr_type == EXPR_NULL)
3233 if (has_pointer && (ref == NULL || ref->next == NULL)
3234 && lvalue->symtree->n.sym->attr.data)
3235 return true;
3236 else
3238 gfc_error ("NULL appears on right-hand side in assignment at %L",
3239 &rvalue->where);
3240 return false;
3244 /* This is possibly a typo: x = f() instead of x => f(). */
3245 if (warn_surprising
3246 && rvalue->expr_type == EXPR_FUNCTION && gfc_expr_attr (rvalue).pointer)
3247 gfc_warning (OPT_Wsurprising,
3248 "POINTER-valued function appears on right-hand side of "
3249 "assignment at %L", &rvalue->where);
3251 /* Check size of array assignments. */
3252 if (lvalue->rank != 0 && rvalue->rank != 0
3253 && !gfc_check_conformance (lvalue, rvalue, "array assignment"))
3254 return false;
3256 if (rvalue->is_boz && lvalue->ts.type != BT_INTEGER
3257 && lvalue->symtree->n.sym->attr.data
3258 && !gfc_notify_std (GFC_STD_GNU, "BOZ literal at %L used to "
3259 "initialize non-integer variable %qs",
3260 &rvalue->where, lvalue->symtree->n.sym->name))
3261 return false;
3262 else if (rvalue->is_boz && !lvalue->symtree->n.sym->attr.data
3263 && !gfc_notify_std (GFC_STD_GNU, "BOZ literal at %L outside "
3264 "a DATA statement and outside INT/REAL/DBLE/CMPLX",
3265 &rvalue->where))
3266 return false;
3268 /* Handle the case of a BOZ literal on the RHS. */
3269 if (rvalue->is_boz && lvalue->ts.type != BT_INTEGER)
3271 int rc;
3272 if (warn_surprising)
3273 gfc_warning (OPT_Wsurprising,
3274 "BOZ literal at %L is bitwise transferred "
3275 "non-integer symbol %qs", &rvalue->where,
3276 lvalue->symtree->n.sym->name);
3277 if (!gfc_convert_boz (rvalue, &lvalue->ts))
3278 return false;
3279 if ((rc = gfc_range_check (rvalue)) != ARITH_OK)
3281 if (rc == ARITH_UNDERFLOW)
3282 gfc_error ("Arithmetic underflow of bit-wise transferred BOZ at %L"
3283 ". This check can be disabled with the option "
3284 "%<-fno-range-check%>", &rvalue->where);
3285 else if (rc == ARITH_OVERFLOW)
3286 gfc_error ("Arithmetic overflow of bit-wise transferred BOZ at %L"
3287 ". This check can be disabled with the option "
3288 "%<-fno-range-check%>", &rvalue->where);
3289 else if (rc == ARITH_NAN)
3290 gfc_error ("Arithmetic NaN of bit-wise transferred BOZ at %L"
3291 ". This check can be disabled with the option "
3292 "%<-fno-range-check%>", &rvalue->where);
3293 return false;
3297 if (gfc_compare_types (&lvalue->ts, &rvalue->ts))
3298 return true;
3300 /* Only DATA Statements come here. */
3301 if (!conform)
3303 /* Numeric can be converted to any other numeric. And Hollerith can be
3304 converted to any other type. */
3305 if ((gfc_numeric_ts (&lvalue->ts) && gfc_numeric_ts (&rvalue->ts))
3306 || rvalue->ts.type == BT_HOLLERITH)
3307 return true;
3309 if (lvalue->ts.type == BT_LOGICAL && rvalue->ts.type == BT_LOGICAL)
3310 return true;
3312 gfc_error ("Incompatible types in DATA statement at %L; attempted "
3313 "conversion of %s to %s", &lvalue->where,
3314 gfc_typename (&rvalue->ts), gfc_typename (&lvalue->ts));
3316 return false;
3319 /* Assignment is the only case where character variables of different
3320 kind values can be converted into one another. */
3321 if (lvalue->ts.type == BT_CHARACTER && rvalue->ts.type == BT_CHARACTER)
3323 if (lvalue->ts.kind != rvalue->ts.kind && allow_convert)
3324 return gfc_convert_chartype (rvalue, &lvalue->ts);
3325 else
3326 return true;
3329 if (!allow_convert)
3330 return true;
3332 return gfc_convert_type (rvalue, &lvalue->ts, 1);
3336 /* Check that a pointer assignment is OK. We first check lvalue, and
3337 we only check rvalue if it's not an assignment to NULL() or a
3338 NULLIFY statement. */
3340 bool
3341 gfc_check_pointer_assign (gfc_expr *lvalue, gfc_expr *rvalue)
3343 symbol_attribute attr, lhs_attr;
3344 gfc_ref *ref;
3345 bool is_pure, is_implicit_pure, rank_remap;
3346 int proc_pointer;
3348 lhs_attr = gfc_expr_attr (lvalue);
3349 if (lvalue->ts.type == BT_UNKNOWN && !lhs_attr.proc_pointer)
3351 gfc_error ("Pointer assignment target is not a POINTER at %L",
3352 &lvalue->where);
3353 return false;
3356 if (lhs_attr.flavor == FL_PROCEDURE && lhs_attr.use_assoc
3357 && !lhs_attr.proc_pointer)
3359 gfc_error ("%qs in the pointer assignment at %L cannot be an "
3360 "l-value since it is a procedure",
3361 lvalue->symtree->n.sym->name, &lvalue->where);
3362 return false;
3365 proc_pointer = lvalue->symtree->n.sym->attr.proc_pointer;
3367 rank_remap = false;
3368 for (ref = lvalue->ref; ref; ref = ref->next)
3370 if (ref->type == REF_COMPONENT)
3371 proc_pointer = ref->u.c.component->attr.proc_pointer;
3373 if (ref->type == REF_ARRAY && ref->next == NULL)
3375 int dim;
3377 if (ref->u.ar.type == AR_FULL)
3378 break;
3380 if (ref->u.ar.type != AR_SECTION)
3382 gfc_error ("Expected bounds specification for %qs at %L",
3383 lvalue->symtree->n.sym->name, &lvalue->where);
3384 return false;
3387 if (!gfc_notify_std (GFC_STD_F2003, "Bounds specification "
3388 "for %qs in pointer assignment at %L",
3389 lvalue->symtree->n.sym->name, &lvalue->where))
3390 return false;
3392 /* When bounds are given, all lbounds are necessary and either all
3393 or none of the upper bounds; no strides are allowed. If the
3394 upper bounds are present, we may do rank remapping. */
3395 for (dim = 0; dim < ref->u.ar.dimen; ++dim)
3397 if (!ref->u.ar.start[dim]
3398 || ref->u.ar.dimen_type[dim] != DIMEN_RANGE)
3400 gfc_error ("Lower bound has to be present at %L",
3401 &lvalue->where);
3402 return false;
3404 if (ref->u.ar.stride[dim])
3406 gfc_error ("Stride must not be present at %L",
3407 &lvalue->where);
3408 return false;
3411 if (dim == 0)
3412 rank_remap = (ref->u.ar.end[dim] != NULL);
3413 else
3415 if ((rank_remap && !ref->u.ar.end[dim])
3416 || (!rank_remap && ref->u.ar.end[dim]))
3418 gfc_error ("Either all or none of the upper bounds"
3419 " must be specified at %L", &lvalue->where);
3420 return false;
3427 is_pure = gfc_pure (NULL);
3428 is_implicit_pure = gfc_implicit_pure (NULL);
3430 /* If rvalue is a NULL() or NULLIFY, we're done. Otherwise the type,
3431 kind, etc for lvalue and rvalue must match, and rvalue must be a
3432 pure variable if we're in a pure function. */
3433 if (rvalue->expr_type == EXPR_NULL && rvalue->ts.type == BT_UNKNOWN)
3434 return true;
3436 /* F2008, C723 (pointer) and C726 (proc-pointer); for PURE also C1283. */
3437 if (lvalue->expr_type == EXPR_VARIABLE
3438 && gfc_is_coindexed (lvalue))
3440 gfc_ref *ref;
3441 for (ref = lvalue->ref; ref; ref = ref->next)
3442 if (ref->type == REF_ARRAY && ref->u.ar.codimen)
3444 gfc_error ("Pointer object at %L shall not have a coindex",
3445 &lvalue->where);
3446 return false;
3450 /* Checks on rvalue for procedure pointer assignments. */
3451 if (proc_pointer)
3453 char err[200];
3454 gfc_symbol *s1,*s2;
3455 gfc_component *comp1, *comp2;
3456 const char *name;
3458 attr = gfc_expr_attr (rvalue);
3459 if (!((rvalue->expr_type == EXPR_NULL)
3460 || (rvalue->expr_type == EXPR_FUNCTION && attr.proc_pointer)
3461 || (rvalue->expr_type == EXPR_VARIABLE && attr.proc_pointer)
3462 || (rvalue->expr_type == EXPR_VARIABLE
3463 && attr.flavor == FL_PROCEDURE)))
3465 gfc_error ("Invalid procedure pointer assignment at %L",
3466 &rvalue->where);
3467 return false;
3469 if (rvalue->expr_type == EXPR_VARIABLE && !attr.proc_pointer)
3471 /* Check for intrinsics. */
3472 gfc_symbol *sym = rvalue->symtree->n.sym;
3473 if (!sym->attr.intrinsic
3474 && (gfc_is_intrinsic (sym, 0, sym->declared_at)
3475 || gfc_is_intrinsic (sym, 1, sym->declared_at)))
3477 sym->attr.intrinsic = 1;
3478 gfc_resolve_intrinsic (sym, &rvalue->where);
3479 attr = gfc_expr_attr (rvalue);
3481 /* Check for result of embracing function. */
3482 if (sym->attr.function && sym->result == sym)
3484 gfc_namespace *ns;
3486 for (ns = gfc_current_ns; ns; ns = ns->parent)
3487 if (sym == ns->proc_name)
3489 gfc_error ("Function result %qs is invalid as proc-target "
3490 "in procedure pointer assignment at %L",
3491 sym->name, &rvalue->where);
3492 return false;
3496 if (attr.abstract)
3498 gfc_error ("Abstract interface %qs is invalid "
3499 "in procedure pointer assignment at %L",
3500 rvalue->symtree->name, &rvalue->where);
3501 return false;
3503 /* Check for F08:C729. */
3504 if (attr.flavor == FL_PROCEDURE)
3506 if (attr.proc == PROC_ST_FUNCTION)
3508 gfc_error ("Statement function %qs is invalid "
3509 "in procedure pointer assignment at %L",
3510 rvalue->symtree->name, &rvalue->where);
3511 return false;
3513 if (attr.proc == PROC_INTERNAL &&
3514 !gfc_notify_std(GFC_STD_F2008, "Internal procedure %qs "
3515 "is invalid in procedure pointer assignment "
3516 "at %L", rvalue->symtree->name, &rvalue->where))
3517 return false;
3518 if (attr.intrinsic && gfc_intrinsic_actual_ok (rvalue->symtree->name,
3519 attr.subroutine) == 0)
3521 gfc_error ("Intrinsic %qs at %L is invalid in procedure pointer "
3522 "assignment", rvalue->symtree->name, &rvalue->where);
3523 return false;
3526 /* Check for F08:C730. */
3527 if (attr.elemental && !attr.intrinsic)
3529 gfc_error ("Nonintrinsic elemental procedure %qs is invalid "
3530 "in procedure pointer assignment at %L",
3531 rvalue->symtree->name, &rvalue->where);
3532 return false;
3535 /* Ensure that the calling convention is the same. As other attributes
3536 such as DLLEXPORT may differ, one explicitly only tests for the
3537 calling conventions. */
3538 if (rvalue->expr_type == EXPR_VARIABLE
3539 && lvalue->symtree->n.sym->attr.ext_attr
3540 != rvalue->symtree->n.sym->attr.ext_attr)
3542 symbol_attribute calls;
3544 calls.ext_attr = 0;
3545 gfc_add_ext_attribute (&calls, EXT_ATTR_CDECL, NULL);
3546 gfc_add_ext_attribute (&calls, EXT_ATTR_STDCALL, NULL);
3547 gfc_add_ext_attribute (&calls, EXT_ATTR_FASTCALL, NULL);
3549 if ((calls.ext_attr & lvalue->symtree->n.sym->attr.ext_attr)
3550 != (calls.ext_attr & rvalue->symtree->n.sym->attr.ext_attr))
3552 gfc_error ("Mismatch in the procedure pointer assignment "
3553 "at %L: mismatch in the calling convention",
3554 &rvalue->where);
3555 return false;
3559 comp1 = gfc_get_proc_ptr_comp (lvalue);
3560 if (comp1)
3561 s1 = comp1->ts.interface;
3562 else
3564 s1 = lvalue->symtree->n.sym;
3565 if (s1->ts.interface)
3566 s1 = s1->ts.interface;
3569 comp2 = gfc_get_proc_ptr_comp (rvalue);
3570 if (comp2)
3572 if (rvalue->expr_type == EXPR_FUNCTION)
3574 s2 = comp2->ts.interface->result;
3575 name = s2->name;
3577 else
3579 s2 = comp2->ts.interface;
3580 name = comp2->name;
3583 else if (rvalue->expr_type == EXPR_FUNCTION)
3585 if (rvalue->value.function.esym)
3586 s2 = rvalue->value.function.esym->result;
3587 else
3588 s2 = rvalue->symtree->n.sym->result;
3590 name = s2->name;
3592 else
3594 s2 = rvalue->symtree->n.sym;
3595 name = s2->name;
3598 if (s2 && s2->attr.proc_pointer && s2->ts.interface)
3599 s2 = s2->ts.interface;
3601 /* Special check for the case of absent interface on the lvalue.
3602 * All other interface checks are done below. */
3603 if (!s1 && comp1 && comp1->attr.subroutine && s2 && s2->attr.function)
3605 gfc_error ("Interface mismatch in procedure pointer assignment "
3606 "at %L: '%s' is not a subroutine", &rvalue->where, name);
3607 return false;
3610 if (s1 == s2 || !s1 || !s2)
3611 return true;
3613 /* F08:7.2.2.4 (4) */
3614 if (s1->attr.if_source == IFSRC_UNKNOWN
3615 && gfc_explicit_interface_required (s2, err, sizeof(err)))
3617 gfc_error ("Explicit interface required for %qs at %L: %s",
3618 s1->name, &lvalue->where, err);
3619 return false;
3621 if (s2->attr.if_source == IFSRC_UNKNOWN
3622 && gfc_explicit_interface_required (s1, err, sizeof(err)))
3624 gfc_error ("Explicit interface required for %qs at %L: %s",
3625 s2->name, &rvalue->where, err);
3626 return false;
3629 if (!gfc_compare_interfaces (s1, s2, name, 0, 1,
3630 err, sizeof(err), NULL, NULL))
3632 gfc_error ("Interface mismatch in procedure pointer assignment "
3633 "at %L: %s", &rvalue->where, err);
3634 return false;
3637 /* Check F2008Cor2, C729. */
3638 if (!s2->attr.intrinsic && s2->attr.if_source == IFSRC_UNKNOWN
3639 && !s2->attr.external && !s2->attr.subroutine && !s2->attr.function)
3641 gfc_error ("Procedure pointer target %qs at %L must be either an "
3642 "intrinsic, host or use associated, referenced or have "
3643 "the EXTERNAL attribute", s2->name, &rvalue->where);
3644 return false;
3647 return true;
3650 if (!gfc_compare_types (&lvalue->ts, &rvalue->ts))
3652 /* Check for F03:C717. */
3653 if (UNLIMITED_POLY (rvalue)
3654 && !(UNLIMITED_POLY (lvalue)
3655 || (lvalue->ts.type == BT_DERIVED
3656 && (lvalue->ts.u.derived->attr.is_bind_c
3657 || lvalue->ts.u.derived->attr.sequence))))
3658 gfc_error ("Data-pointer-object at %L must be unlimited "
3659 "polymorphic, or of a type with the BIND or SEQUENCE "
3660 "attribute, to be compatible with an unlimited "
3661 "polymorphic target", &lvalue->where);
3662 else
3663 gfc_error ("Different types in pointer assignment at %L; "
3664 "attempted assignment of %s to %s", &lvalue->where,
3665 gfc_typename (&rvalue->ts),
3666 gfc_typename (&lvalue->ts));
3667 return false;
3670 if (lvalue->ts.type != BT_CLASS && lvalue->ts.kind != rvalue->ts.kind)
3672 gfc_error ("Different kind type parameters in pointer "
3673 "assignment at %L", &lvalue->where);
3674 return false;
3677 if (lvalue->rank != rvalue->rank && !rank_remap)
3679 gfc_error ("Different ranks in pointer assignment at %L", &lvalue->where);
3680 return false;
3683 /* Make sure the vtab is present. */
3684 if (lvalue->ts.type == BT_CLASS && !UNLIMITED_POLY (rvalue))
3685 gfc_find_vtab (&rvalue->ts);
3687 /* Check rank remapping. */
3688 if (rank_remap)
3690 mpz_t lsize, rsize;
3692 /* If this can be determined, check that the target must be at least as
3693 large as the pointer assigned to it is. */
3694 if (gfc_array_size (lvalue, &lsize)
3695 && gfc_array_size (rvalue, &rsize)
3696 && mpz_cmp (rsize, lsize) < 0)
3698 gfc_error ("Rank remapping target is smaller than size of the"
3699 " pointer (%ld < %ld) at %L",
3700 mpz_get_si (rsize), mpz_get_si (lsize),
3701 &lvalue->where);
3702 return false;
3705 /* The target must be either rank one or it must be simply contiguous
3706 and F2008 must be allowed. */
3707 if (rvalue->rank != 1)
3709 if (!gfc_is_simply_contiguous (rvalue, true, false))
3711 gfc_error ("Rank remapping target must be rank 1 or"
3712 " simply contiguous at %L", &rvalue->where);
3713 return false;
3715 if (!gfc_notify_std (GFC_STD_F2008, "Rank remapping target is not "
3716 "rank 1 at %L", &rvalue->where))
3717 return false;
3721 /* Now punt if we are dealing with a NULLIFY(X) or X = NULL(X). */
3722 if (rvalue->expr_type == EXPR_NULL)
3723 return true;
3725 if (lvalue->ts.type == BT_CHARACTER)
3727 bool t = gfc_check_same_strlen (lvalue, rvalue, "pointer assignment");
3728 if (!t)
3729 return false;
3732 if (rvalue->expr_type == EXPR_VARIABLE && is_subref_array (rvalue))
3733 lvalue->symtree->n.sym->attr.subref_array_pointer = 1;
3735 attr = gfc_expr_attr (rvalue);
3737 if (rvalue->expr_type == EXPR_FUNCTION && !attr.pointer)
3739 /* F2008, C725. For PURE also C1283. Sometimes rvalue is a function call
3740 to caf_get. Map this to the same error message as below when it is
3741 still a variable expression. */
3742 if (rvalue->value.function.isym
3743 && rvalue->value.function.isym->id == GFC_ISYM_CAF_GET)
3744 /* The test above might need to be extend when F08, Note 5.4 has to be
3745 interpreted in the way that target and pointer with the same coindex
3746 are allowed. */
3747 gfc_error ("Data target at %L shall not have a coindex",
3748 &rvalue->where);
3749 else
3750 gfc_error ("Target expression in pointer assignment "
3751 "at %L must deliver a pointer result",
3752 &rvalue->where);
3753 return false;
3756 if (!attr.target && !attr.pointer)
3758 gfc_error ("Pointer assignment target is neither TARGET "
3759 "nor POINTER at %L", &rvalue->where);
3760 return false;
3763 if (is_pure && gfc_impure_variable (rvalue->symtree->n.sym))
3765 gfc_error ("Bad target in pointer assignment in PURE "
3766 "procedure at %L", &rvalue->where);
3769 if (is_implicit_pure && gfc_impure_variable (rvalue->symtree->n.sym))
3770 gfc_unset_implicit_pure (gfc_current_ns->proc_name);
3772 if (gfc_has_vector_index (rvalue))
3774 gfc_error ("Pointer assignment with vector subscript "
3775 "on rhs at %L", &rvalue->where);
3776 return false;
3779 if (attr.is_protected && attr.use_assoc
3780 && !(attr.pointer || attr.proc_pointer))
3782 gfc_error ("Pointer assignment target has PROTECTED "
3783 "attribute at %L", &rvalue->where);
3784 return false;
3787 /* F2008, C725. For PURE also C1283. */
3788 if (rvalue->expr_type == EXPR_VARIABLE
3789 && gfc_is_coindexed (rvalue))
3791 gfc_ref *ref;
3792 for (ref = rvalue->ref; ref; ref = ref->next)
3793 if (ref->type == REF_ARRAY && ref->u.ar.codimen)
3795 gfc_error ("Data target at %L shall not have a coindex",
3796 &rvalue->where);
3797 return false;
3801 /* Warn if it is the LHS pointer may lives longer than the RHS target. */
3802 if (warn_target_lifetime
3803 && rvalue->expr_type == EXPR_VARIABLE
3804 && !rvalue->symtree->n.sym->attr.save
3805 && !attr.pointer && !rvalue->symtree->n.sym->attr.host_assoc
3806 && !rvalue->symtree->n.sym->attr.in_common
3807 && !rvalue->symtree->n.sym->attr.use_assoc
3808 && !rvalue->symtree->n.sym->attr.dummy)
3810 bool warn;
3811 gfc_namespace *ns;
3813 warn = lvalue->symtree->n.sym->attr.dummy
3814 || lvalue->symtree->n.sym->attr.result
3815 || lvalue->symtree->n.sym->attr.function
3816 || (lvalue->symtree->n.sym->attr.host_assoc
3817 && lvalue->symtree->n.sym->ns
3818 != rvalue->symtree->n.sym->ns)
3819 || lvalue->symtree->n.sym->attr.use_assoc
3820 || lvalue->symtree->n.sym->attr.in_common;
3822 if (rvalue->symtree->n.sym->ns->proc_name
3823 && rvalue->symtree->n.sym->ns->proc_name->attr.flavor != FL_PROCEDURE
3824 && rvalue->symtree->n.sym->ns->proc_name->attr.flavor != FL_PROGRAM)
3825 for (ns = rvalue->symtree->n.sym->ns;
3826 ns && ns->proc_name && ns->proc_name->attr.flavor != FL_PROCEDURE;
3827 ns = ns->parent)
3828 if (ns->parent == lvalue->symtree->n.sym->ns)
3830 warn = true;
3831 break;
3834 if (warn)
3835 gfc_warning (OPT_Wtarget_lifetime,
3836 "Pointer at %L in pointer assignment might outlive the "
3837 "pointer target", &lvalue->where);
3840 return true;
3844 /* Relative of gfc_check_assign() except that the lvalue is a single
3845 symbol. Used for initialization assignments. */
3847 bool
3848 gfc_check_assign_symbol (gfc_symbol *sym, gfc_component *comp, gfc_expr *rvalue)
3850 gfc_expr lvalue;
3851 bool r;
3852 bool pointer, proc_pointer;
3854 memset (&lvalue, '\0', sizeof (gfc_expr));
3856 lvalue.expr_type = EXPR_VARIABLE;
3857 lvalue.ts = sym->ts;
3858 if (sym->as)
3859 lvalue.rank = sym->as->rank;
3860 lvalue.symtree = XCNEW (gfc_symtree);
3861 lvalue.symtree->n.sym = sym;
3862 lvalue.where = sym->declared_at;
3864 if (comp)
3866 lvalue.ref = gfc_get_ref ();
3867 lvalue.ref->type = REF_COMPONENT;
3868 lvalue.ref->u.c.component = comp;
3869 lvalue.ref->u.c.sym = sym;
3870 lvalue.ts = comp->ts;
3871 lvalue.rank = comp->as ? comp->as->rank : 0;
3872 lvalue.where = comp->loc;
3873 pointer = comp->ts.type == BT_CLASS && CLASS_DATA (comp)
3874 ? CLASS_DATA (comp)->attr.class_pointer : comp->attr.pointer;
3875 proc_pointer = comp->attr.proc_pointer;
3877 else
3879 pointer = sym->ts.type == BT_CLASS && CLASS_DATA (sym)
3880 ? CLASS_DATA (sym)->attr.class_pointer : sym->attr.pointer;
3881 proc_pointer = sym->attr.proc_pointer;
3884 if (pointer || proc_pointer)
3885 r = gfc_check_pointer_assign (&lvalue, rvalue);
3886 else
3888 /* If a conversion function, e.g., __convert_i8_i4, was inserted
3889 into an array constructor, we should check if it can be reduced
3890 as an initialization expression. */
3891 if (rvalue->expr_type == EXPR_FUNCTION
3892 && rvalue->value.function.isym
3893 && (rvalue->value.function.isym->conversion == 1))
3894 gfc_check_init_expr (rvalue);
3896 r = gfc_check_assign (&lvalue, rvalue, 1);
3899 free (lvalue.symtree);
3900 free (lvalue.ref);
3902 if (!r)
3903 return r;
3905 if (pointer && rvalue->expr_type != EXPR_NULL)
3907 /* F08:C461. Additional checks for pointer initialization. */
3908 symbol_attribute attr;
3909 attr = gfc_expr_attr (rvalue);
3910 if (attr.allocatable)
3912 gfc_error ("Pointer initialization target at %L "
3913 "must not be ALLOCATABLE", &rvalue->where);
3914 return false;
3916 if (!attr.target || attr.pointer)
3918 gfc_error ("Pointer initialization target at %L "
3919 "must have the TARGET attribute", &rvalue->where);
3920 return false;
3923 if (!attr.save && rvalue->expr_type == EXPR_VARIABLE
3924 && rvalue->symtree->n.sym->ns->proc_name
3925 && rvalue->symtree->n.sym->ns->proc_name->attr.is_main_program)
3927 rvalue->symtree->n.sym->ns->proc_name->attr.save = SAVE_IMPLICIT;
3928 attr.save = SAVE_IMPLICIT;
3931 if (!attr.save)
3933 gfc_error ("Pointer initialization target at %L "
3934 "must have the SAVE attribute", &rvalue->where);
3935 return false;
3939 if (proc_pointer && rvalue->expr_type != EXPR_NULL)
3941 /* F08:C1220. Additional checks for procedure pointer initialization. */
3942 symbol_attribute attr = gfc_expr_attr (rvalue);
3943 if (attr.proc_pointer)
3945 gfc_error ("Procedure pointer initialization target at %L "
3946 "may not be a procedure pointer", &rvalue->where);
3947 return false;
3951 return true;
3955 /* Build an initializer for a local integer, real, complex, logical, or
3956 character variable, based on the command line flags finit-local-zero,
3957 finit-integer=, finit-real=, finit-logical=, and finit-character=. */
3959 gfc_expr *
3960 gfc_build_default_init_expr (gfc_typespec *ts, locus *where)
3962 int char_len;
3963 gfc_expr *init_expr;
3964 int i;
3966 /* Try to build an initializer expression. */
3967 init_expr = gfc_get_constant_expr (ts->type, ts->kind, where);
3969 /* We will only initialize integers, reals, complex, logicals, and
3970 characters, and only if the corresponding command-line flags
3971 were set. Otherwise, we free init_expr and return null. */
3972 switch (ts->type)
3974 case BT_INTEGER:
3975 if (gfc_option.flag_init_integer != GFC_INIT_INTEGER_OFF)
3976 mpz_set_si (init_expr->value.integer,
3977 gfc_option.flag_init_integer_value);
3978 else
3980 gfc_free_expr (init_expr);
3981 init_expr = NULL;
3983 break;
3985 case BT_REAL:
3986 switch (flag_init_real)
3988 case GFC_INIT_REAL_SNAN:
3989 init_expr->is_snan = 1;
3990 /* Fall through. */
3991 case GFC_INIT_REAL_NAN:
3992 mpfr_set_nan (init_expr->value.real);
3993 break;
3995 case GFC_INIT_REAL_INF:
3996 mpfr_set_inf (init_expr->value.real, 1);
3997 break;
3999 case GFC_INIT_REAL_NEG_INF:
4000 mpfr_set_inf (init_expr->value.real, -1);
4001 break;
4003 case GFC_INIT_REAL_ZERO:
4004 mpfr_set_ui (init_expr->value.real, 0.0, GFC_RND_MODE);
4005 break;
4007 default:
4008 gfc_free_expr (init_expr);
4009 init_expr = NULL;
4010 break;
4012 break;
4014 case BT_COMPLEX:
4015 switch (flag_init_real)
4017 case GFC_INIT_REAL_SNAN:
4018 init_expr->is_snan = 1;
4019 /* Fall through. */
4020 case GFC_INIT_REAL_NAN:
4021 mpfr_set_nan (mpc_realref (init_expr->value.complex));
4022 mpfr_set_nan (mpc_imagref (init_expr->value.complex));
4023 break;
4025 case GFC_INIT_REAL_INF:
4026 mpfr_set_inf (mpc_realref (init_expr->value.complex), 1);
4027 mpfr_set_inf (mpc_imagref (init_expr->value.complex), 1);
4028 break;
4030 case GFC_INIT_REAL_NEG_INF:
4031 mpfr_set_inf (mpc_realref (init_expr->value.complex), -1);
4032 mpfr_set_inf (mpc_imagref (init_expr->value.complex), -1);
4033 break;
4035 case GFC_INIT_REAL_ZERO:
4036 mpc_set_ui (init_expr->value.complex, 0, GFC_MPC_RND_MODE);
4037 break;
4039 default:
4040 gfc_free_expr (init_expr);
4041 init_expr = NULL;
4042 break;
4044 break;
4046 case BT_LOGICAL:
4047 if (gfc_option.flag_init_logical == GFC_INIT_LOGICAL_FALSE)
4048 init_expr->value.logical = 0;
4049 else if (gfc_option.flag_init_logical == GFC_INIT_LOGICAL_TRUE)
4050 init_expr->value.logical = 1;
4051 else
4053 gfc_free_expr (init_expr);
4054 init_expr = NULL;
4056 break;
4058 case BT_CHARACTER:
4059 /* For characters, the length must be constant in order to
4060 create a default initializer. */
4061 if (gfc_option.flag_init_character == GFC_INIT_CHARACTER_ON
4062 && ts->u.cl->length
4063 && ts->u.cl->length->expr_type == EXPR_CONSTANT)
4065 char_len = mpz_get_si (ts->u.cl->length->value.integer);
4066 init_expr->value.character.length = char_len;
4067 init_expr->value.character.string = gfc_get_wide_string (char_len+1);
4068 for (i = 0; i < char_len; i++)
4069 init_expr->value.character.string[i]
4070 = (unsigned char) gfc_option.flag_init_character_value;
4072 else
4074 gfc_free_expr (init_expr);
4075 init_expr = NULL;
4077 if (!init_expr && gfc_option.flag_init_character == GFC_INIT_CHARACTER_ON
4078 && ts->u.cl->length && flag_max_stack_var_size != 0)
4080 gfc_actual_arglist *arg;
4081 init_expr = gfc_get_expr ();
4082 init_expr->where = *where;
4083 init_expr->ts = *ts;
4084 init_expr->expr_type = EXPR_FUNCTION;
4085 init_expr->value.function.isym =
4086 gfc_intrinsic_function_by_id (GFC_ISYM_REPEAT);
4087 init_expr->value.function.name = "repeat";
4088 arg = gfc_get_actual_arglist ();
4089 arg->expr = gfc_get_character_expr (ts->kind, where, NULL, 1);
4090 arg->expr->value.character.string[0] =
4091 gfc_option.flag_init_character_value;
4092 arg->next = gfc_get_actual_arglist ();
4093 arg->next->expr = gfc_copy_expr (ts->u.cl->length);
4094 init_expr->value.function.actual = arg;
4096 break;
4098 default:
4099 gfc_free_expr (init_expr);
4100 init_expr = NULL;
4103 return init_expr;
4106 /* Apply an initialization expression to a typespec. Can be used for symbols or
4107 components. Similar to add_init_expr_to_sym in decl.c; could probably be
4108 combined with some effort. */
4110 void
4111 gfc_apply_init (gfc_typespec *ts, symbol_attribute *attr, gfc_expr *init)
4113 if (ts->type == BT_CHARACTER && !attr->pointer && init
4114 && ts->u.cl
4115 && ts->u.cl->length && ts->u.cl->length->expr_type == EXPR_CONSTANT)
4117 int len;
4119 gcc_assert (ts->u.cl && ts->u.cl->length);
4120 gcc_assert (ts->u.cl->length->expr_type == EXPR_CONSTANT);
4121 gcc_assert (ts->u.cl->length->ts.type == BT_INTEGER);
4123 len = mpz_get_si (ts->u.cl->length->value.integer);
4125 if (init->expr_type == EXPR_CONSTANT)
4126 gfc_set_constant_character_len (len, init, -1);
4127 else if (init
4128 && init->ts.u.cl
4129 && mpz_cmp (ts->u.cl->length->value.integer,
4130 init->ts.u.cl->length->value.integer))
4132 gfc_constructor *ctor;
4133 ctor = gfc_constructor_first (init->value.constructor);
4135 if (ctor)
4137 int first_len;
4138 bool has_ts = (init->ts.u.cl
4139 && init->ts.u.cl->length_from_typespec);
4141 /* Remember the length of the first element for checking
4142 that all elements *in the constructor* have the same
4143 length. This need not be the length of the LHS! */
4144 gcc_assert (ctor->expr->expr_type == EXPR_CONSTANT);
4145 gcc_assert (ctor->expr->ts.type == BT_CHARACTER);
4146 first_len = ctor->expr->value.character.length;
4148 for ( ; ctor; ctor = gfc_constructor_next (ctor))
4149 if (ctor->expr->expr_type == EXPR_CONSTANT)
4151 gfc_set_constant_character_len (len, ctor->expr,
4152 has_ts ? -1 : first_len);
4153 if (!ctor->expr->ts.u.cl)
4154 ctor->expr->ts.u.cl
4155 = gfc_new_charlen (gfc_current_ns, ts->u.cl);
4156 else
4157 ctor->expr->ts.u.cl->length
4158 = gfc_copy_expr (ts->u.cl->length);
4166 /* Check whether an expression is a structure constructor and whether it has
4167 other values than NULL. */
4169 bool
4170 is_non_empty_structure_constructor (gfc_expr * e)
4172 if (e->expr_type != EXPR_STRUCTURE)
4173 return false;
4175 gfc_constructor *cons = gfc_constructor_first (e->value.constructor);
4176 while (cons)
4178 if (!cons->expr || cons->expr->expr_type != EXPR_NULL)
4179 return true;
4180 cons = gfc_constructor_next (cons);
4182 return false;
4186 /* Check for default initializer; sym->value is not enough
4187 as it is also set for EXPR_NULL of allocatables. */
4189 bool
4190 gfc_has_default_initializer (gfc_symbol *der)
4192 gfc_component *c;
4194 gcc_assert (gfc_fl_struct (der->attr.flavor));
4195 for (c = der->components; c; c = c->next)
4196 if (gfc_bt_struct (c->ts.type))
4198 if (!c->attr.pointer && !c->attr.proc_pointer
4199 && !(c->attr.allocatable && der == c->ts.u.derived)
4200 && ((c->initializer
4201 && is_non_empty_structure_constructor (c->initializer))
4202 || gfc_has_default_initializer (c->ts.u.derived)))
4203 return true;
4204 if (c->attr.pointer && c->initializer)
4205 return true;
4207 else
4209 if (c->initializer)
4210 return true;
4213 return false;
4218 Generate an initializer expression which initializes the entirety of a union.
4219 A normal structure constructor is insufficient without undue effort, because
4220 components of maps may be oddly aligned/overlapped. (For example if a
4221 character is initialized from one map overtop a real from the other, only one
4222 byte of the real is actually initialized.) Unfortunately we don't know the
4223 size of the union right now, so we can't generate a proper initializer, but
4224 we use a NULL expr as a placeholder and do the right thing later in
4225 gfc_trans_subcomponent_assign.
4227 static gfc_expr *
4228 generate_union_initializer (gfc_component *un)
4230 if (un == NULL || un->ts.type != BT_UNION)
4231 return NULL;
4233 gfc_expr *placeholder = gfc_get_null_expr (&un->loc);
4234 placeholder->ts = un->ts;
4235 return placeholder;
4239 /* Get the user-specified initializer for a union, if any. This means the user
4240 has said to initialize component(s) of a map. For simplicity's sake we
4241 only allow the user to initialize the first map. We don't have to worry
4242 about overlapping initializers as they are released early in resolution (see
4243 resolve_fl_struct). */
4245 static gfc_expr *
4246 get_union_initializer (gfc_symbol *union_type, gfc_component **map_p)
4248 gfc_component *map;
4249 gfc_expr *init=NULL;
4251 if (!union_type || union_type->attr.flavor != FL_UNION)
4252 return NULL;
4254 for (map = union_type->components; map; map = map->next)
4256 if (gfc_has_default_initializer (map->ts.u.derived))
4258 init = gfc_default_initializer (&map->ts);
4259 if (map_p)
4260 *map_p = map;
4261 break;
4265 if (map_p && !init)
4266 *map_p = NULL;
4268 return init;
4271 /* Fetch or generate an initializer for the given component.
4272 Only generate an initializer if generate is true. */
4274 static gfc_expr *
4275 component_initializer (gfc_typespec *ts, gfc_component *c, bool generate)
4277 gfc_expr *init = NULL;
4279 /* See if we can find the initializer immediately. */
4280 if (c->initializer || !generate
4281 || (ts->type == BT_CLASS && !c->attr.allocatable))
4282 return c->initializer;
4284 /* Recursively handle derived type components. */
4285 if (c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
4286 init = gfc_generate_initializer (&c->ts, true);
4288 else if (c->ts.type == BT_UNION && c->ts.u.derived->components)
4290 gfc_component *map = NULL;
4291 gfc_constructor *ctor;
4292 gfc_expr *user_init;
4294 /* If we don't have a user initializer and we aren't generating one, this
4295 union has no initializer. */
4296 user_init = get_union_initializer (c->ts.u.derived, &map);
4297 if (!user_init && !generate)
4298 return NULL;
4300 /* Otherwise use a structure constructor. */
4301 init = gfc_get_structure_constructor_expr (c->ts.type, c->ts.kind,
4302 &c->loc);
4303 init->ts = c->ts;
4305 /* If we are to generate an initializer for the union, add a constructor
4306 which initializes the whole union first. */
4307 if (generate)
4309 ctor = gfc_constructor_get ();
4310 ctor->expr = generate_union_initializer (c);
4311 gfc_constructor_append (&init->value.constructor, ctor);
4314 /* If we found an initializer in one of our maps, apply it. Note this
4315 is applied _after_ the entire-union initializer above if any. */
4316 if (user_init)
4318 ctor = gfc_constructor_get ();
4319 ctor->expr = user_init;
4320 ctor->n.component = map;
4321 gfc_constructor_append (&init->value.constructor, ctor);
4325 /* Treat simple components like locals. */
4326 else
4328 init = gfc_build_default_init_expr (&c->ts, &c->loc);
4329 gfc_apply_init (&c->ts, &c->attr, init);
4332 return init;
4336 /* Get an expression for a default initializer of a derived type. */
4338 gfc_expr *
4339 gfc_default_initializer (gfc_typespec *ts)
4341 return gfc_generate_initializer (ts, false);
4345 /* Get or generate an expression for a default initializer of a derived type.
4346 If -finit-derived is specified, generate default initialization expressions
4347 for components that lack them when generate is set. */
4349 gfc_expr *
4350 gfc_generate_initializer (gfc_typespec *ts, bool generate)
4352 gfc_expr *init, *tmp;
4353 gfc_component *comp;
4354 generate = flag_init_derived && generate;
4356 /* See if we have a default initializer in this, but not in nested
4357 types (otherwise we could use gfc_has_default_initializer()).
4358 We don't need to check if we are going to generate them. */
4359 comp = ts->u.derived->components;
4360 if (!generate)
4362 for (; comp; comp = comp->next)
4363 if (comp->initializer || comp->attr.allocatable
4364 || (comp->ts.type == BT_CLASS && CLASS_DATA (comp)
4365 && CLASS_DATA (comp)->attr.allocatable))
4366 break;
4369 if (!comp)
4370 return NULL;
4372 init = gfc_get_structure_constructor_expr (ts->type, ts->kind,
4373 &ts->u.derived->declared_at);
4374 init->ts = *ts;
4376 for (comp = ts->u.derived->components; comp; comp = comp->next)
4378 gfc_constructor *ctor = gfc_constructor_get();
4380 /* Fetch or generate an initializer for the component. */
4381 tmp = component_initializer (ts, comp, generate);
4382 if (tmp)
4384 /* Save the component ref for STRUCTUREs and UNIONs. */
4385 if (ts->u.derived->attr.flavor == FL_STRUCT
4386 || ts->u.derived->attr.flavor == FL_UNION)
4387 ctor->n.component = comp;
4389 /* If the initializer was not generated, we need a copy. */
4390 ctor->expr = comp->initializer ? gfc_copy_expr (tmp) : tmp;
4391 if ((comp->ts.type != tmp->ts.type
4392 || comp->ts.kind != tmp->ts.kind)
4393 && !comp->attr.pointer && !comp->attr.proc_pointer)
4394 gfc_convert_type_warn (ctor->expr, &comp->ts, 2, false);
4397 if (comp->attr.allocatable
4398 || (comp->ts.type == BT_CLASS && CLASS_DATA (comp)->attr.allocatable))
4400 ctor->expr = gfc_get_expr ();
4401 ctor->expr->expr_type = EXPR_NULL;
4402 ctor->expr->where = init->where;
4403 ctor->expr->ts = comp->ts;
4406 gfc_constructor_append (&init->value.constructor, ctor);
4409 return init;
4413 /* Given a symbol, create an expression node with that symbol as a
4414 variable. If the symbol is array valued, setup a reference of the
4415 whole array. */
4417 gfc_expr *
4418 gfc_get_variable_expr (gfc_symtree *var)
4420 gfc_expr *e;
4422 e = gfc_get_expr ();
4423 e->expr_type = EXPR_VARIABLE;
4424 e->symtree = var;
4425 e->ts = var->n.sym->ts;
4427 if (var->n.sym->attr.flavor != FL_PROCEDURE
4428 && ((var->n.sym->as != NULL && var->n.sym->ts.type != BT_CLASS)
4429 || (var->n.sym->ts.type == BT_CLASS && CLASS_DATA (var->n.sym)
4430 && CLASS_DATA (var->n.sym)->as)))
4432 e->rank = var->n.sym->ts.type == BT_CLASS
4433 ? CLASS_DATA (var->n.sym)->as->rank : var->n.sym->as->rank;
4434 e->ref = gfc_get_ref ();
4435 e->ref->type = REF_ARRAY;
4436 e->ref->u.ar.type = AR_FULL;
4437 e->ref->u.ar.as = gfc_copy_array_spec (var->n.sym->ts.type == BT_CLASS
4438 ? CLASS_DATA (var->n.sym)->as
4439 : var->n.sym->as);
4442 return e;
4446 /* Adds a full array reference to an expression, as needed. */
4448 void
4449 gfc_add_full_array_ref (gfc_expr *e, gfc_array_spec *as)
4451 gfc_ref *ref;
4452 for (ref = e->ref; ref; ref = ref->next)
4453 if (!ref->next)
4454 break;
4455 if (ref)
4457 ref->next = gfc_get_ref ();
4458 ref = ref->next;
4460 else
4462 e->ref = gfc_get_ref ();
4463 ref = e->ref;
4465 ref->type = REF_ARRAY;
4466 ref->u.ar.type = AR_FULL;
4467 ref->u.ar.dimen = e->rank;
4468 ref->u.ar.where = e->where;
4469 ref->u.ar.as = as;
4473 gfc_expr *
4474 gfc_lval_expr_from_sym (gfc_symbol *sym)
4476 gfc_expr *lval;
4477 gfc_array_spec *as;
4478 lval = gfc_get_expr ();
4479 lval->expr_type = EXPR_VARIABLE;
4480 lval->where = sym->declared_at;
4481 lval->ts = sym->ts;
4482 lval->symtree = gfc_find_symtree (sym->ns->sym_root, sym->name);
4484 /* It will always be a full array. */
4485 as = IS_CLASS_ARRAY (sym) ? CLASS_DATA (sym)->as : sym->as;
4486 lval->rank = as ? as->rank : 0;
4487 if (lval->rank)
4488 gfc_add_full_array_ref (lval, as);
4489 return lval;
4493 /* Returns the array_spec of a full array expression. A NULL is
4494 returned otherwise. */
4495 gfc_array_spec *
4496 gfc_get_full_arrayspec_from_expr (gfc_expr *expr)
4498 gfc_array_spec *as;
4499 gfc_ref *ref;
4501 if (expr->rank == 0)
4502 return NULL;
4504 /* Follow any component references. */
4505 if (expr->expr_type == EXPR_VARIABLE
4506 || expr->expr_type == EXPR_CONSTANT)
4508 as = expr->symtree->n.sym->as;
4509 for (ref = expr->ref; ref; ref = ref->next)
4511 switch (ref->type)
4513 case REF_COMPONENT:
4514 as = ref->u.c.component->as;
4515 continue;
4517 case REF_SUBSTRING:
4518 continue;
4520 case REF_ARRAY:
4522 switch (ref->u.ar.type)
4524 case AR_ELEMENT:
4525 case AR_SECTION:
4526 case AR_UNKNOWN:
4527 as = NULL;
4528 continue;
4530 case AR_FULL:
4531 break;
4533 break;
4538 else
4539 as = NULL;
4541 return as;
4545 /* General expression traversal function. */
4547 bool
4548 gfc_traverse_expr (gfc_expr *expr, gfc_symbol *sym,
4549 bool (*func)(gfc_expr *, gfc_symbol *, int*),
4550 int f)
4552 gfc_array_ref ar;
4553 gfc_ref *ref;
4554 gfc_actual_arglist *args;
4555 gfc_constructor *c;
4556 int i;
4558 if (!expr)
4559 return false;
4561 if ((*func) (expr, sym, &f))
4562 return true;
4564 if (expr->ts.type == BT_CHARACTER
4565 && expr->ts.u.cl
4566 && expr->ts.u.cl->length
4567 && expr->ts.u.cl->length->expr_type != EXPR_CONSTANT
4568 && gfc_traverse_expr (expr->ts.u.cl->length, sym, func, f))
4569 return true;
4571 switch (expr->expr_type)
4573 case EXPR_PPC:
4574 case EXPR_COMPCALL:
4575 case EXPR_FUNCTION:
4576 for (args = expr->value.function.actual; args; args = args->next)
4578 if (gfc_traverse_expr (args->expr, sym, func, f))
4579 return true;
4581 break;
4583 case EXPR_VARIABLE:
4584 case EXPR_CONSTANT:
4585 case EXPR_NULL:
4586 case EXPR_SUBSTRING:
4587 break;
4589 case EXPR_STRUCTURE:
4590 case EXPR_ARRAY:
4591 for (c = gfc_constructor_first (expr->value.constructor);
4592 c; c = gfc_constructor_next (c))
4594 if (gfc_traverse_expr (c->expr, sym, func, f))
4595 return true;
4596 if (c->iterator)
4598 if (gfc_traverse_expr (c->iterator->var, sym, func, f))
4599 return true;
4600 if (gfc_traverse_expr (c->iterator->start, sym, func, f))
4601 return true;
4602 if (gfc_traverse_expr (c->iterator->end, sym, func, f))
4603 return true;
4604 if (gfc_traverse_expr (c->iterator->step, sym, func, f))
4605 return true;
4608 break;
4610 case EXPR_OP:
4611 if (gfc_traverse_expr (expr->value.op.op1, sym, func, f))
4612 return true;
4613 if (gfc_traverse_expr (expr->value.op.op2, sym, func, f))
4614 return true;
4615 break;
4617 default:
4618 gcc_unreachable ();
4619 break;
4622 ref = expr->ref;
4623 while (ref != NULL)
4625 switch (ref->type)
4627 case REF_ARRAY:
4628 ar = ref->u.ar;
4629 for (i = 0; i < GFC_MAX_DIMENSIONS; i++)
4631 if (gfc_traverse_expr (ar.start[i], sym, func, f))
4632 return true;
4633 if (gfc_traverse_expr (ar.end[i], sym, func, f))
4634 return true;
4635 if (gfc_traverse_expr (ar.stride[i], sym, func, f))
4636 return true;
4638 break;
4640 case REF_SUBSTRING:
4641 if (gfc_traverse_expr (ref->u.ss.start, sym, func, f))
4642 return true;
4643 if (gfc_traverse_expr (ref->u.ss.end, sym, func, f))
4644 return true;
4645 break;
4647 case REF_COMPONENT:
4648 if (ref->u.c.component->ts.type == BT_CHARACTER
4649 && ref->u.c.component->ts.u.cl
4650 && ref->u.c.component->ts.u.cl->length
4651 && ref->u.c.component->ts.u.cl->length->expr_type
4652 != EXPR_CONSTANT
4653 && gfc_traverse_expr (ref->u.c.component->ts.u.cl->length,
4654 sym, func, f))
4655 return true;
4657 if (ref->u.c.component->as)
4658 for (i = 0; i < ref->u.c.component->as->rank
4659 + ref->u.c.component->as->corank; i++)
4661 if (gfc_traverse_expr (ref->u.c.component->as->lower[i],
4662 sym, func, f))
4663 return true;
4664 if (gfc_traverse_expr (ref->u.c.component->as->upper[i],
4665 sym, func, f))
4666 return true;
4668 break;
4670 default:
4671 gcc_unreachable ();
4673 ref = ref->next;
4675 return false;
4678 /* Traverse expr, marking all EXPR_VARIABLE symbols referenced. */
4680 static bool
4681 expr_set_symbols_referenced (gfc_expr *expr,
4682 gfc_symbol *sym ATTRIBUTE_UNUSED,
4683 int *f ATTRIBUTE_UNUSED)
4685 if (expr->expr_type != EXPR_VARIABLE)
4686 return false;
4687 gfc_set_sym_referenced (expr->symtree->n.sym);
4688 return false;
4691 void
4692 gfc_expr_set_symbols_referenced (gfc_expr *expr)
4694 gfc_traverse_expr (expr, NULL, expr_set_symbols_referenced, 0);
4698 /* Determine if an expression is a procedure pointer component and return
4699 the component in that case. Otherwise return NULL. */
4701 gfc_component *
4702 gfc_get_proc_ptr_comp (gfc_expr *expr)
4704 gfc_ref *ref;
4706 if (!expr || !expr->ref)
4707 return NULL;
4709 ref = expr->ref;
4710 while (ref->next)
4711 ref = ref->next;
4713 if (ref->type == REF_COMPONENT
4714 && ref->u.c.component->attr.proc_pointer)
4715 return ref->u.c.component;
4717 return NULL;
4721 /* Determine if an expression is a procedure pointer component. */
4723 bool
4724 gfc_is_proc_ptr_comp (gfc_expr *expr)
4726 return (gfc_get_proc_ptr_comp (expr) != NULL);
4730 /* Determine if an expression is a function with an allocatable class scalar
4731 result. */
4732 bool
4733 gfc_is_alloc_class_scalar_function (gfc_expr *expr)
4735 if (expr->expr_type == EXPR_FUNCTION
4736 && expr->value.function.esym
4737 && expr->value.function.esym->result
4738 && expr->value.function.esym->result->ts.type == BT_CLASS
4739 && !CLASS_DATA (expr->value.function.esym->result)->attr.dimension
4740 && CLASS_DATA (expr->value.function.esym->result)->attr.allocatable)
4741 return true;
4743 return false;
4747 /* Determine if an expression is a function with an allocatable class array
4748 result. */
4749 bool
4750 gfc_is_alloc_class_array_function (gfc_expr *expr)
4752 if (expr->expr_type == EXPR_FUNCTION
4753 && expr->value.function.esym
4754 && expr->value.function.esym->result
4755 && expr->value.function.esym->result->ts.type == BT_CLASS
4756 && CLASS_DATA (expr->value.function.esym->result)->attr.dimension
4757 && CLASS_DATA (expr->value.function.esym->result)->attr.allocatable)
4758 return true;
4760 return false;
4764 /* Walk an expression tree and check each variable encountered for being typed.
4765 If strict is not set, a top-level variable is tolerated untyped in -std=gnu
4766 mode as is a basic arithmetic expression using those; this is for things in
4767 legacy-code like:
4769 INTEGER :: arr(n), n
4770 INTEGER :: arr(n + 1), n
4772 The namespace is needed for IMPLICIT typing. */
4774 static gfc_namespace* check_typed_ns;
4776 static bool
4777 expr_check_typed_help (gfc_expr* e, gfc_symbol* sym ATTRIBUTE_UNUSED,
4778 int* f ATTRIBUTE_UNUSED)
4780 bool t;
4782 if (e->expr_type != EXPR_VARIABLE)
4783 return false;
4785 gcc_assert (e->symtree);
4786 t = gfc_check_symbol_typed (e->symtree->n.sym, check_typed_ns,
4787 true, e->where);
4789 return (!t);
4792 bool
4793 gfc_expr_check_typed (gfc_expr* e, gfc_namespace* ns, bool strict)
4795 bool error_found;
4797 /* If this is a top-level variable or EXPR_OP, do the check with strict given
4798 to us. */
4799 if (!strict)
4801 if (e->expr_type == EXPR_VARIABLE && !e->ref)
4802 return gfc_check_symbol_typed (e->symtree->n.sym, ns, strict, e->where);
4804 if (e->expr_type == EXPR_OP)
4806 bool t = true;
4808 gcc_assert (e->value.op.op1);
4809 t = gfc_expr_check_typed (e->value.op.op1, ns, strict);
4811 if (t && e->value.op.op2)
4812 t = gfc_expr_check_typed (e->value.op.op2, ns, strict);
4814 return t;
4818 /* Otherwise, walk the expression and do it strictly. */
4819 check_typed_ns = ns;
4820 error_found = gfc_traverse_expr (e, NULL, &expr_check_typed_help, 0);
4822 return error_found ? false : true;
4826 bool
4827 gfc_ref_this_image (gfc_ref *ref)
4829 int n;
4831 gcc_assert (ref->type == REF_ARRAY && ref->u.ar.codimen > 0);
4833 for (n = ref->u.ar.dimen; n < ref->u.ar.dimen + ref->u.ar.codimen; n++)
4834 if (ref->u.ar.dimen_type[n] != DIMEN_THIS_IMAGE)
4835 return false;
4837 return true;
4840 gfc_expr *
4841 gfc_find_stat_co(gfc_expr *e)
4843 gfc_ref *ref;
4845 for (ref = e->ref; ref; ref = ref->next)
4846 if (ref->type == REF_ARRAY && ref->u.ar.codimen > 0)
4847 return ref->u.ar.stat;
4849 if (e->value.function.actual->expr)
4850 for (ref = e->value.function.actual->expr->ref; ref;
4851 ref = ref->next)
4852 if (ref->type == REF_ARRAY && ref->u.ar.codimen > 0)
4853 return ref->u.ar.stat;
4855 return NULL;
4858 bool
4859 gfc_is_coindexed (gfc_expr *e)
4861 gfc_ref *ref;
4863 for (ref = e->ref; ref; ref = ref->next)
4864 if (ref->type == REF_ARRAY && ref->u.ar.codimen > 0)
4865 return !gfc_ref_this_image (ref);
4867 return false;
4871 /* Coarrays are variables with a corank but not being coindexed. However, also
4872 the following is a coarray: A subobject of a coarray is a coarray if it does
4873 not have any cosubscripts, vector subscripts, allocatable component
4874 selection, or pointer component selection. (F2008, 2.4.7) */
4876 bool
4877 gfc_is_coarray (gfc_expr *e)
4879 gfc_ref *ref;
4880 gfc_symbol *sym;
4881 gfc_component *comp;
4882 bool coindexed;
4883 bool coarray;
4884 int i;
4886 if (e->expr_type != EXPR_VARIABLE)
4887 return false;
4889 coindexed = false;
4890 sym = e->symtree->n.sym;
4892 if (sym->ts.type == BT_CLASS && sym->attr.class_ok)
4893 coarray = CLASS_DATA (sym)->attr.codimension;
4894 else
4895 coarray = sym->attr.codimension;
4897 for (ref = e->ref; ref; ref = ref->next)
4898 switch (ref->type)
4900 case REF_COMPONENT:
4901 comp = ref->u.c.component;
4902 if (comp->ts.type == BT_CLASS && comp->attr.class_ok
4903 && (CLASS_DATA (comp)->attr.class_pointer
4904 || CLASS_DATA (comp)->attr.allocatable))
4906 coindexed = false;
4907 coarray = CLASS_DATA (comp)->attr.codimension;
4909 else if (comp->attr.pointer || comp->attr.allocatable)
4911 coindexed = false;
4912 coarray = comp->attr.codimension;
4914 break;
4916 case REF_ARRAY:
4917 if (!coarray)
4918 break;
4920 if (ref->u.ar.codimen > 0 && !gfc_ref_this_image (ref))
4922 coindexed = true;
4923 break;
4926 for (i = 0; i < ref->u.ar.dimen; i++)
4927 if (ref->u.ar.dimen_type[i] == DIMEN_VECTOR)
4929 coarray = false;
4930 break;
4932 break;
4934 case REF_SUBSTRING:
4935 break;
4938 return coarray && !coindexed;
4943 gfc_get_corank (gfc_expr *e)
4945 int corank;
4946 gfc_ref *ref;
4948 if (!gfc_is_coarray (e))
4949 return 0;
4951 if (e->ts.type == BT_CLASS && e->ts.u.derived->components)
4952 corank = e->ts.u.derived->components->as
4953 ? e->ts.u.derived->components->as->corank : 0;
4954 else
4955 corank = e->symtree->n.sym->as ? e->symtree->n.sym->as->corank : 0;
4957 for (ref = e->ref; ref; ref = ref->next)
4959 if (ref->type == REF_ARRAY)
4960 corank = ref->u.ar.as->corank;
4961 gcc_assert (ref->type != REF_SUBSTRING);
4964 return corank;
4968 /* Check whether the expression has an ultimate allocatable component.
4969 Being itself allocatable does not count. */
4970 bool
4971 gfc_has_ultimate_allocatable (gfc_expr *e)
4973 gfc_ref *ref, *last = NULL;
4975 if (e->expr_type != EXPR_VARIABLE)
4976 return false;
4978 for (ref = e->ref; ref; ref = ref->next)
4979 if (ref->type == REF_COMPONENT)
4980 last = ref;
4982 if (last && last->u.c.component->ts.type == BT_CLASS)
4983 return CLASS_DATA (last->u.c.component)->attr.alloc_comp;
4984 else if (last && last->u.c.component->ts.type == BT_DERIVED)
4985 return last->u.c.component->ts.u.derived->attr.alloc_comp;
4986 else if (last)
4987 return false;
4989 if (e->ts.type == BT_CLASS)
4990 return CLASS_DATA (e)->attr.alloc_comp;
4991 else if (e->ts.type == BT_DERIVED)
4992 return e->ts.u.derived->attr.alloc_comp;
4993 else
4994 return false;
4998 /* Check whether the expression has an pointer component.
4999 Being itself a pointer does not count. */
5000 bool
5001 gfc_has_ultimate_pointer (gfc_expr *e)
5003 gfc_ref *ref, *last = NULL;
5005 if (e->expr_type != EXPR_VARIABLE)
5006 return false;
5008 for (ref = e->ref; ref; ref = ref->next)
5009 if (ref->type == REF_COMPONENT)
5010 last = ref;
5012 if (last && last->u.c.component->ts.type == BT_CLASS)
5013 return CLASS_DATA (last->u.c.component)->attr.pointer_comp;
5014 else if (last && last->u.c.component->ts.type == BT_DERIVED)
5015 return last->u.c.component->ts.u.derived->attr.pointer_comp;
5016 else if (last)
5017 return false;
5019 if (e->ts.type == BT_CLASS)
5020 return CLASS_DATA (e)->attr.pointer_comp;
5021 else if (e->ts.type == BT_DERIVED)
5022 return e->ts.u.derived->attr.pointer_comp;
5023 else
5024 return false;
5028 /* Check whether an expression is "simply contiguous", cf. F2008, 6.5.4.
5029 Note: A scalar is not regarded as "simply contiguous" by the standard.
5030 if bool is not strict, some further checks are done - for instance,
5031 a "(::1)" is accepted. */
5033 bool
5034 gfc_is_simply_contiguous (gfc_expr *expr, bool strict, bool permit_element)
5036 bool colon;
5037 int i;
5038 gfc_array_ref *ar = NULL;
5039 gfc_ref *ref, *part_ref = NULL;
5040 gfc_symbol *sym;
5042 if (expr->expr_type == EXPR_FUNCTION)
5043 return expr->value.function.esym
5044 ? expr->value.function.esym->result->attr.contiguous : false;
5045 else if (expr->expr_type != EXPR_VARIABLE)
5046 return false;
5048 if (!permit_element && expr->rank == 0)
5049 return false;
5051 for (ref = expr->ref; ref; ref = ref->next)
5053 if (ar)
5054 return false; /* Array shall be last part-ref. */
5056 if (ref->type == REF_COMPONENT)
5057 part_ref = ref;
5058 else if (ref->type == REF_SUBSTRING)
5059 return false;
5060 else if (ref->u.ar.type != AR_ELEMENT)
5061 ar = &ref->u.ar;
5064 sym = expr->symtree->n.sym;
5065 if (expr->ts.type != BT_CLASS
5066 && ((part_ref
5067 && !part_ref->u.c.component->attr.contiguous
5068 && part_ref->u.c.component->attr.pointer)
5069 || (!part_ref
5070 && !sym->attr.contiguous
5071 && (sym->attr.pointer
5072 || sym->as->type == AS_ASSUMED_RANK
5073 || sym->as->type == AS_ASSUMED_SHAPE))))
5074 return false;
5076 if (!ar || ar->type == AR_FULL)
5077 return true;
5079 gcc_assert (ar->type == AR_SECTION);
5081 /* Check for simply contiguous array */
5082 colon = true;
5083 for (i = 0; i < ar->dimen; i++)
5085 if (ar->dimen_type[i] == DIMEN_VECTOR)
5086 return false;
5088 if (ar->dimen_type[i] == DIMEN_ELEMENT)
5090 colon = false;
5091 continue;
5094 gcc_assert (ar->dimen_type[i] == DIMEN_RANGE);
5097 /* If the previous section was not contiguous, that's an error,
5098 unless we have effective only one element and checking is not
5099 strict. */
5100 if (!colon && (strict || !ar->start[i] || !ar->end[i]
5101 || ar->start[i]->expr_type != EXPR_CONSTANT
5102 || ar->end[i]->expr_type != EXPR_CONSTANT
5103 || mpz_cmp (ar->start[i]->value.integer,
5104 ar->end[i]->value.integer) != 0))
5105 return false;
5107 /* Following the standard, "(::1)" or - if known at compile time -
5108 "(lbound:ubound)" are not simply contiguous; if strict
5109 is false, they are regarded as simply contiguous. */
5110 if (ar->stride[i] && (strict || ar->stride[i]->expr_type != EXPR_CONSTANT
5111 || ar->stride[i]->ts.type != BT_INTEGER
5112 || mpz_cmp_si (ar->stride[i]->value.integer, 1) != 0))
5113 return false;
5115 if (ar->start[i]
5116 && (strict || ar->start[i]->expr_type != EXPR_CONSTANT
5117 || !ar->as->lower[i]
5118 || ar->as->lower[i]->expr_type != EXPR_CONSTANT
5119 || mpz_cmp (ar->start[i]->value.integer,
5120 ar->as->lower[i]->value.integer) != 0))
5121 colon = false;
5123 if (ar->end[i]
5124 && (strict || ar->end[i]->expr_type != EXPR_CONSTANT
5125 || !ar->as->upper[i]
5126 || ar->as->upper[i]->expr_type != EXPR_CONSTANT
5127 || mpz_cmp (ar->end[i]->value.integer,
5128 ar->as->upper[i]->value.integer) != 0))
5129 colon = false;
5132 return true;
5136 /* Build call to an intrinsic procedure. The number of arguments has to be
5137 passed (rather than ending the list with a NULL value) because we may
5138 want to add arguments but with a NULL-expression. */
5140 gfc_expr*
5141 gfc_build_intrinsic_call (gfc_namespace *ns, gfc_isym_id id, const char* name,
5142 locus where, unsigned numarg, ...)
5144 gfc_expr* result;
5145 gfc_actual_arglist* atail;
5146 gfc_intrinsic_sym* isym;
5147 va_list ap;
5148 unsigned i;
5149 const char *mangled_name = gfc_get_string (GFC_PREFIX ("%s"), name);
5151 isym = gfc_intrinsic_function_by_id (id);
5152 gcc_assert (isym);
5154 result = gfc_get_expr ();
5155 result->expr_type = EXPR_FUNCTION;
5156 result->ts = isym->ts;
5157 result->where = where;
5158 result->value.function.name = mangled_name;
5159 result->value.function.isym = isym;
5161 gfc_get_sym_tree (mangled_name, ns, &result->symtree, false);
5162 gfc_commit_symbol (result->symtree->n.sym);
5163 gcc_assert (result->symtree
5164 && (result->symtree->n.sym->attr.flavor == FL_PROCEDURE
5165 || result->symtree->n.sym->attr.flavor == FL_UNKNOWN));
5166 result->symtree->n.sym->intmod_sym_id = id;
5167 result->symtree->n.sym->attr.flavor = FL_PROCEDURE;
5168 result->symtree->n.sym->attr.intrinsic = 1;
5169 result->symtree->n.sym->attr.artificial = 1;
5171 va_start (ap, numarg);
5172 atail = NULL;
5173 for (i = 0; i < numarg; ++i)
5175 if (atail)
5177 atail->next = gfc_get_actual_arglist ();
5178 atail = atail->next;
5180 else
5181 atail = result->value.function.actual = gfc_get_actual_arglist ();
5183 atail->expr = va_arg (ap, gfc_expr*);
5185 va_end (ap);
5187 return result;
5191 /* Check if an expression may appear in a variable definition context
5192 (F2008, 16.6.7) or pointer association context (F2008, 16.6.8).
5193 This is called from the various places when resolving
5194 the pieces that make up such a context.
5195 If own_scope is true (applies to, e.g., ac-implied-do/data-implied-do
5196 variables), some checks are not performed.
5198 Optionally, a possible error message can be suppressed if context is NULL
5199 and just the return status (true / false) be requested. */
5201 bool
5202 gfc_check_vardef_context (gfc_expr* e, bool pointer, bool alloc_obj,
5203 bool own_scope, const char* context)
5205 gfc_symbol* sym = NULL;
5206 bool is_pointer;
5207 bool check_intentin;
5208 bool ptr_component;
5209 symbol_attribute attr;
5210 gfc_ref* ref;
5211 int i;
5213 if (e->expr_type == EXPR_VARIABLE)
5215 gcc_assert (e->symtree);
5216 sym = e->symtree->n.sym;
5218 else if (e->expr_type == EXPR_FUNCTION)
5220 gcc_assert (e->symtree);
5221 sym = e->value.function.esym ? e->value.function.esym : e->symtree->n.sym;
5224 attr = gfc_expr_attr (e);
5225 if (!pointer && e->expr_type == EXPR_FUNCTION && attr.pointer)
5227 if (!(gfc_option.allow_std & GFC_STD_F2008))
5229 if (context)
5230 gfc_error ("Fortran 2008: Pointer functions in variable definition"
5231 " context (%s) at %L", context, &e->where);
5232 return false;
5235 else if (e->expr_type != EXPR_VARIABLE)
5237 if (context)
5238 gfc_error ("Non-variable expression in variable definition context (%s)"
5239 " at %L", context, &e->where);
5240 return false;
5243 if (!pointer && sym->attr.flavor == FL_PARAMETER)
5245 if (context)
5246 gfc_error ("Named constant %qs in variable definition context (%s)"
5247 " at %L", sym->name, context, &e->where);
5248 return false;
5250 if (!pointer && sym->attr.flavor != FL_VARIABLE
5251 && !(sym->attr.flavor == FL_PROCEDURE && sym == sym->result)
5252 && !(sym->attr.flavor == FL_PROCEDURE && sym->attr.proc_pointer))
5254 if (context)
5255 gfc_error ("%qs in variable definition context (%s) at %L is not"
5256 " a variable", sym->name, context, &e->where);
5257 return false;
5260 /* Find out whether the expr is a pointer; this also means following
5261 component references to the last one. */
5262 is_pointer = (attr.pointer || attr.proc_pointer);
5263 if (pointer && !is_pointer)
5265 if (context)
5266 gfc_error ("Non-POINTER in pointer association context (%s)"
5267 " at %L", context, &e->where);
5268 return false;
5271 if (e->ts.type == BT_DERIVED
5272 && e->ts.u.derived == NULL)
5274 if (context)
5275 gfc_error ("Type inaccessible in variable definition context (%s) "
5276 "at %L", context, &e->where);
5277 return false;
5280 /* F2008, C1303. */
5281 if (!alloc_obj
5282 && (attr.lock_comp
5283 || (e->ts.type == BT_DERIVED
5284 && e->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
5285 && e->ts.u.derived->intmod_sym_id == ISOFORTRAN_LOCK_TYPE)))
5287 if (context)
5288 gfc_error ("LOCK_TYPE in variable definition context (%s) at %L",
5289 context, &e->where);
5290 return false;
5293 /* TS18508, C702/C203. */
5294 if (!alloc_obj
5295 && (attr.lock_comp
5296 || (e->ts.type == BT_DERIVED
5297 && e->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
5298 && e->ts.u.derived->intmod_sym_id == ISOFORTRAN_EVENT_TYPE)))
5300 if (context)
5301 gfc_error ("LOCK_EVENT in variable definition context (%s) at %L",
5302 context, &e->where);
5303 return false;
5306 /* INTENT(IN) dummy argument. Check this, unless the object itself is the
5307 component of sub-component of a pointer; we need to distinguish
5308 assignment to a pointer component from pointer-assignment to a pointer
5309 component. Note that (normal) assignment to procedure pointers is not
5310 possible. */
5311 check_intentin = !own_scope;
5312 ptr_component = (sym->ts.type == BT_CLASS && sym->ts.u.derived
5313 && CLASS_DATA (sym))
5314 ? CLASS_DATA (sym)->attr.class_pointer : sym->attr.pointer;
5315 for (ref = e->ref; ref && check_intentin; ref = ref->next)
5317 if (ptr_component && ref->type == REF_COMPONENT)
5318 check_intentin = false;
5319 if (ref->type == REF_COMPONENT && ref->u.c.component->attr.pointer)
5321 ptr_component = true;
5322 if (!pointer)
5323 check_intentin = false;
5326 if (check_intentin && sym->attr.intent == INTENT_IN)
5328 if (pointer && is_pointer)
5330 if (context)
5331 gfc_error ("Dummy argument %qs with INTENT(IN) in pointer"
5332 " association context (%s) at %L",
5333 sym->name, context, &e->where);
5334 return false;
5336 if (!pointer && !is_pointer && !sym->attr.pointer)
5338 if (context)
5339 gfc_error ("Dummy argument %qs with INTENT(IN) in variable"
5340 " definition context (%s) at %L",
5341 sym->name, context, &e->where);
5342 return false;
5346 /* PROTECTED and use-associated. */
5347 if (sym->attr.is_protected && sym->attr.use_assoc && check_intentin)
5349 if (pointer && is_pointer)
5351 if (context)
5352 gfc_error ("Variable %qs is PROTECTED and can not appear in a"
5353 " pointer association context (%s) at %L",
5354 sym->name, context, &e->where);
5355 return false;
5357 if (!pointer && !is_pointer)
5359 if (context)
5360 gfc_error ("Variable %qs is PROTECTED and can not appear in a"
5361 " variable definition context (%s) at %L",
5362 sym->name, context, &e->where);
5363 return false;
5367 /* Variable not assignable from a PURE procedure but appears in
5368 variable definition context. */
5369 if (!pointer && !own_scope && gfc_pure (NULL) && gfc_impure_variable (sym))
5371 if (context)
5372 gfc_error ("Variable %qs can not appear in a variable definition"
5373 " context (%s) at %L in PURE procedure",
5374 sym->name, context, &e->where);
5375 return false;
5378 if (!pointer && context && gfc_implicit_pure (NULL)
5379 && gfc_impure_variable (sym))
5381 gfc_namespace *ns;
5382 gfc_symbol *sym;
5384 for (ns = gfc_current_ns; ns; ns = ns->parent)
5386 sym = ns->proc_name;
5387 if (sym == NULL)
5388 break;
5389 if (sym->attr.flavor == FL_PROCEDURE)
5391 sym->attr.implicit_pure = 0;
5392 break;
5396 /* Check variable definition context for associate-names. */
5397 if (!pointer && sym->assoc)
5399 const char* name;
5400 gfc_association_list* assoc;
5402 gcc_assert (sym->assoc->target);
5404 /* If this is a SELECT TYPE temporary (the association is used internally
5405 for SELECT TYPE), silently go over to the target. */
5406 if (sym->attr.select_type_temporary)
5408 gfc_expr* t = sym->assoc->target;
5410 gcc_assert (t->expr_type == EXPR_VARIABLE);
5411 name = t->symtree->name;
5413 if (t->symtree->n.sym->assoc)
5414 assoc = t->symtree->n.sym->assoc;
5415 else
5416 assoc = sym->assoc;
5418 else
5420 name = sym->name;
5421 assoc = sym->assoc;
5423 gcc_assert (name && assoc);
5425 /* Is association to a valid variable? */
5426 if (!assoc->variable)
5428 if (context)
5430 if (assoc->target->expr_type == EXPR_VARIABLE)
5431 gfc_error ("%qs at %L associated to vector-indexed target can"
5432 " not be used in a variable definition context (%s)",
5433 name, &e->where, context);
5434 else
5435 gfc_error ("%qs at %L associated to expression can"
5436 " not be used in a variable definition context (%s)",
5437 name, &e->where, context);
5439 return false;
5442 /* Target must be allowed to appear in a variable definition context. */
5443 if (!gfc_check_vardef_context (assoc->target, pointer, false, false, NULL))
5445 if (context)
5446 gfc_error ("Associate-name %qs can not appear in a variable"
5447 " definition context (%s) at %L because its target"
5448 " at %L can not, either",
5449 name, context, &e->where,
5450 &assoc->target->where);
5451 return false;
5455 /* Check for same value in vector expression subscript. */
5457 if (e->rank > 0)
5458 for (ref = e->ref; ref != NULL; ref = ref->next)
5459 if (ref->type == REF_ARRAY && ref->u.ar.type == AR_SECTION)
5460 for (i = 0; i < GFC_MAX_DIMENSIONS
5461 && ref->u.ar.dimen_type[i] != 0; i++)
5462 if (ref->u.ar.dimen_type[i] == DIMEN_VECTOR)
5464 gfc_expr *arr = ref->u.ar.start[i];
5465 if (arr->expr_type == EXPR_ARRAY)
5467 gfc_constructor *c, *n;
5468 gfc_expr *ec, *en;
5470 for (c = gfc_constructor_first (arr->value.constructor);
5471 c != NULL; c = gfc_constructor_next (c))
5473 if (c == NULL || c->iterator != NULL)
5474 continue;
5476 ec = c->expr;
5478 for (n = gfc_constructor_next (c); n != NULL;
5479 n = gfc_constructor_next (n))
5481 if (n->iterator != NULL)
5482 continue;
5484 en = n->expr;
5485 if (gfc_dep_compare_expr (ec, en) == 0)
5487 if (context)
5488 gfc_error_now ("Elements with the same value "
5489 "at %L and %L in vector "
5490 "subscript in a variable "
5491 "definition context (%s)",
5492 &(ec->where), &(en->where),
5493 context);
5494 return false;
5501 return true;