]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/fortran/expr.c
Replace enum gfc_try with bool type.
[thirdparty/gcc.git] / gcc / fortran / expr.c
1 /* Routines for manipulation of expression nodes.
2 Copyright (C) 2000-2013 Free Software Foundation, Inc.
3 Contributed by Andy Vaught
4
5 This file is part of GCC.
6
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.
11
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.
16
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/>. */
20
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "gfortran.h"
25 #include "arith.h"
26 #include "match.h"
27 #include "target-memory.h" /* for gfc_convert_boz */
28 #include "constructor.h"
29
30
31 /* The following set of functions provide access to gfc_expr* of
32 various types - actual all but EXPR_FUNCTION and EXPR_VARIABLE.
33
34 There are two functions available elsewhere that provide
35 slightly different flavours of variables. Namely:
36 expr.c (gfc_get_variable_expr)
37 symbol.c (gfc_lval_expr_from_sym)
38 TODO: Merge these functions, if possible. */
39
40 /* Get a new expression node. */
41
42 gfc_expr *
43 gfc_get_expr (void)
44 {
45 gfc_expr *e;
46
47 e = XCNEW (gfc_expr);
48 gfc_clear_ts (&e->ts);
49 e->shape = NULL;
50 e->ref = NULL;
51 e->symtree = NULL;
52 return e;
53 }
54
55
56 /* Get a new expression node that is an array constructor
57 of given type and kind. */
58
59 gfc_expr *
60 gfc_get_array_expr (bt type, int kind, locus *where)
61 {
62 gfc_expr *e;
63
64 e = gfc_get_expr ();
65 e->expr_type = EXPR_ARRAY;
66 e->value.constructor = NULL;
67 e->rank = 1;
68 e->shape = NULL;
69
70 e->ts.type = type;
71 e->ts.kind = kind;
72 if (where)
73 e->where = *where;
74
75 return e;
76 }
77
78
79 /* Get a new expression node that is the NULL expression. */
80
81 gfc_expr *
82 gfc_get_null_expr (locus *where)
83 {
84 gfc_expr *e;
85
86 e = gfc_get_expr ();
87 e->expr_type = EXPR_NULL;
88 e->ts.type = BT_UNKNOWN;
89
90 if (where)
91 e->where = *where;
92
93 return e;
94 }
95
96
97 /* Get a new expression node that is an operator expression node. */
98
99 gfc_expr *
100 gfc_get_operator_expr (locus *where, gfc_intrinsic_op op,
101 gfc_expr *op1, gfc_expr *op2)
102 {
103 gfc_expr *e;
104
105 e = gfc_get_expr ();
106 e->expr_type = EXPR_OP;
107 e->value.op.op = op;
108 e->value.op.op1 = op1;
109 e->value.op.op2 = op2;
110
111 if (where)
112 e->where = *where;
113
114 return e;
115 }
116
117
118 /* Get a new expression node that is an structure constructor
119 of given type and kind. */
120
121 gfc_expr *
122 gfc_get_structure_constructor_expr (bt type, int kind, locus *where)
123 {
124 gfc_expr *e;
125
126 e = gfc_get_expr ();
127 e->expr_type = EXPR_STRUCTURE;
128 e->value.constructor = NULL;
129
130 e->ts.type = type;
131 e->ts.kind = kind;
132 if (where)
133 e->where = *where;
134
135 return e;
136 }
137
138
139 /* Get a new expression node that is an constant of given type and kind. */
140
141 gfc_expr *
142 gfc_get_constant_expr (bt type, int kind, locus *where)
143 {
144 gfc_expr *e;
145
146 if (!where)
147 gfc_internal_error ("gfc_get_constant_expr(): locus 'where' cannot be NULL");
148
149 e = gfc_get_expr ();
150
151 e->expr_type = EXPR_CONSTANT;
152 e->ts.type = type;
153 e->ts.kind = kind;
154 e->where = *where;
155
156 switch (type)
157 {
158 case BT_INTEGER:
159 mpz_init (e->value.integer);
160 break;
161
162 case BT_REAL:
163 gfc_set_model_kind (kind);
164 mpfr_init (e->value.real);
165 break;
166
167 case BT_COMPLEX:
168 gfc_set_model_kind (kind);
169 mpc_init2 (e->value.complex, mpfr_get_default_prec());
170 break;
171
172 default:
173 break;
174 }
175
176 return e;
177 }
178
179
180 /* Get a new expression node that is an string constant.
181 If no string is passed, a string of len is allocated,
182 blanked and null-terminated. */
183
184 gfc_expr *
185 gfc_get_character_expr (int kind, locus *where, const char *src, int len)
186 {
187 gfc_expr *e;
188 gfc_char_t *dest;
189
190 if (!src)
191 {
192 dest = gfc_get_wide_string (len + 1);
193 gfc_wide_memset (dest, ' ', len);
194 dest[len] = '\0';
195 }
196 else
197 dest = gfc_char_to_widechar (src);
198
199 e = gfc_get_constant_expr (BT_CHARACTER, kind,
200 where ? where : &gfc_current_locus);
201 e->value.character.string = dest;
202 e->value.character.length = len;
203
204 return e;
205 }
206
207
208 /* Get a new expression node that is an integer constant. */
209
210 gfc_expr *
211 gfc_get_int_expr (int kind, locus *where, int value)
212 {
213 gfc_expr *p;
214 p = gfc_get_constant_expr (BT_INTEGER, kind,
215 where ? where : &gfc_current_locus);
216
217 mpz_set_si (p->value.integer, value);
218
219 return p;
220 }
221
222
223 /* Get a new expression node that is a logical constant. */
224
225 gfc_expr *
226 gfc_get_logical_expr (int kind, locus *where, bool value)
227 {
228 gfc_expr *p;
229 p = gfc_get_constant_expr (BT_LOGICAL, kind,
230 where ? where : &gfc_current_locus);
231
232 p->value.logical = value;
233
234 return p;
235 }
236
237
238 gfc_expr *
239 gfc_get_iokind_expr (locus *where, io_kind k)
240 {
241 gfc_expr *e;
242
243 /* Set the types to something compatible with iokind. This is needed to
244 get through gfc_free_expr later since iokind really has no Basic Type,
245 BT, of its own. */
246
247 e = gfc_get_expr ();
248 e->expr_type = EXPR_CONSTANT;
249 e->ts.type = BT_LOGICAL;
250 e->value.iokind = k;
251 e->where = *where;
252
253 return e;
254 }
255
256
257 /* Given an expression pointer, return a copy of the expression. This
258 subroutine is recursive. */
259
260 gfc_expr *
261 gfc_copy_expr (gfc_expr *p)
262 {
263 gfc_expr *q;
264 gfc_char_t *s;
265 char *c;
266
267 if (p == NULL)
268 return NULL;
269
270 q = gfc_get_expr ();
271 *q = *p;
272
273 switch (q->expr_type)
274 {
275 case EXPR_SUBSTRING:
276 s = gfc_get_wide_string (p->value.character.length + 1);
277 q->value.character.string = s;
278 memcpy (s, p->value.character.string,
279 (p->value.character.length + 1) * sizeof (gfc_char_t));
280 break;
281
282 case EXPR_CONSTANT:
283 /* Copy target representation, if it exists. */
284 if (p->representation.string)
285 {
286 c = XCNEWVEC (char, p->representation.length + 1);
287 q->representation.string = c;
288 memcpy (c, p->representation.string, (p->representation.length + 1));
289 }
290
291 /* Copy the values of any pointer components of p->value. */
292 switch (q->ts.type)
293 {
294 case BT_INTEGER:
295 mpz_init_set (q->value.integer, p->value.integer);
296 break;
297
298 case BT_REAL:
299 gfc_set_model_kind (q->ts.kind);
300 mpfr_init (q->value.real);
301 mpfr_set (q->value.real, p->value.real, GFC_RND_MODE);
302 break;
303
304 case BT_COMPLEX:
305 gfc_set_model_kind (q->ts.kind);
306 mpc_init2 (q->value.complex, mpfr_get_default_prec());
307 mpc_set (q->value.complex, p->value.complex, GFC_MPC_RND_MODE);
308 break;
309
310 case BT_CHARACTER:
311 if (p->representation.string)
312 q->value.character.string
313 = gfc_char_to_widechar (q->representation.string);
314 else
315 {
316 s = gfc_get_wide_string (p->value.character.length + 1);
317 q->value.character.string = s;
318
319 /* This is the case for the C_NULL_CHAR named constant. */
320 if (p->value.character.length == 0
321 && (p->ts.is_c_interop || p->ts.is_iso_c))
322 {
323 *s = '\0';
324 /* Need to set the length to 1 to make sure the NUL
325 terminator is copied. */
326 q->value.character.length = 1;
327 }
328 else
329 memcpy (s, p->value.character.string,
330 (p->value.character.length + 1) * sizeof (gfc_char_t));
331 }
332 break;
333
334 case BT_HOLLERITH:
335 case BT_LOGICAL:
336 case BT_DERIVED:
337 case BT_CLASS:
338 case BT_ASSUMED:
339 break; /* Already done. */
340
341 case BT_PROCEDURE:
342 case BT_VOID:
343 /* Should never be reached. */
344 case BT_UNKNOWN:
345 gfc_internal_error ("gfc_copy_expr(): Bad expr node");
346 /* Not reached. */
347 }
348
349 break;
350
351 case EXPR_OP:
352 switch (q->value.op.op)
353 {
354 case INTRINSIC_NOT:
355 case INTRINSIC_PARENTHESES:
356 case INTRINSIC_UPLUS:
357 case INTRINSIC_UMINUS:
358 q->value.op.op1 = gfc_copy_expr (p->value.op.op1);
359 break;
360
361 default: /* Binary operators. */
362 q->value.op.op1 = gfc_copy_expr (p->value.op.op1);
363 q->value.op.op2 = gfc_copy_expr (p->value.op.op2);
364 break;
365 }
366
367 break;
368
369 case EXPR_FUNCTION:
370 q->value.function.actual =
371 gfc_copy_actual_arglist (p->value.function.actual);
372 break;
373
374 case EXPR_COMPCALL:
375 case EXPR_PPC:
376 q->value.compcall.actual =
377 gfc_copy_actual_arglist (p->value.compcall.actual);
378 q->value.compcall.tbp = p->value.compcall.tbp;
379 break;
380
381 case EXPR_STRUCTURE:
382 case EXPR_ARRAY:
383 q->value.constructor = gfc_constructor_copy (p->value.constructor);
384 break;
385
386 case EXPR_VARIABLE:
387 case EXPR_NULL:
388 break;
389 }
390
391 q->shape = gfc_copy_shape (p->shape, p->rank);
392
393 q->ref = gfc_copy_ref (p->ref);
394
395 return q;
396 }
397
398
399 void
400 gfc_clear_shape (mpz_t *shape, int rank)
401 {
402 int i;
403
404 for (i = 0; i < rank; i++)
405 mpz_clear (shape[i]);
406 }
407
408
409 void
410 gfc_free_shape (mpz_t **shape, int rank)
411 {
412 if (*shape == NULL)
413 return;
414
415 gfc_clear_shape (*shape, rank);
416 free (*shape);
417 *shape = NULL;
418 }
419
420
421 /* Workhorse function for gfc_free_expr() that frees everything
422 beneath an expression node, but not the node itself. This is
423 useful when we want to simplify a node and replace it with
424 something else or the expression node belongs to another structure. */
425
426 static void
427 free_expr0 (gfc_expr *e)
428 {
429 switch (e->expr_type)
430 {
431 case EXPR_CONSTANT:
432 /* Free any parts of the value that need freeing. */
433 switch (e->ts.type)
434 {
435 case BT_INTEGER:
436 mpz_clear (e->value.integer);
437 break;
438
439 case BT_REAL:
440 mpfr_clear (e->value.real);
441 break;
442
443 case BT_CHARACTER:
444 free (e->value.character.string);
445 break;
446
447 case BT_COMPLEX:
448 mpc_clear (e->value.complex);
449 break;
450
451 default:
452 break;
453 }
454
455 /* Free the representation. */
456 free (e->representation.string);
457
458 break;
459
460 case EXPR_OP:
461 if (e->value.op.op1 != NULL)
462 gfc_free_expr (e->value.op.op1);
463 if (e->value.op.op2 != NULL)
464 gfc_free_expr (e->value.op.op2);
465 break;
466
467 case EXPR_FUNCTION:
468 gfc_free_actual_arglist (e->value.function.actual);
469 break;
470
471 case EXPR_COMPCALL:
472 case EXPR_PPC:
473 gfc_free_actual_arglist (e->value.compcall.actual);
474 break;
475
476 case EXPR_VARIABLE:
477 break;
478
479 case EXPR_ARRAY:
480 case EXPR_STRUCTURE:
481 gfc_constructor_free (e->value.constructor);
482 break;
483
484 case EXPR_SUBSTRING:
485 free (e->value.character.string);
486 break;
487
488 case EXPR_NULL:
489 break;
490
491 default:
492 gfc_internal_error ("free_expr0(): Bad expr type");
493 }
494
495 /* Free a shape array. */
496 gfc_free_shape (&e->shape, e->rank);
497
498 gfc_free_ref_list (e->ref);
499
500 memset (e, '\0', sizeof (gfc_expr));
501 }
502
503
504 /* Free an expression node and everything beneath it. */
505
506 void
507 gfc_free_expr (gfc_expr *e)
508 {
509 if (e == NULL)
510 return;
511 free_expr0 (e);
512 free (e);
513 }
514
515
516 /* Free an argument list and everything below it. */
517
518 void
519 gfc_free_actual_arglist (gfc_actual_arglist *a1)
520 {
521 gfc_actual_arglist *a2;
522
523 while (a1)
524 {
525 a2 = a1->next;
526 gfc_free_expr (a1->expr);
527 free (a1);
528 a1 = a2;
529 }
530 }
531
532
533 /* Copy an arglist structure and all of the arguments. */
534
535 gfc_actual_arglist *
536 gfc_copy_actual_arglist (gfc_actual_arglist *p)
537 {
538 gfc_actual_arglist *head, *tail, *new_arg;
539
540 head = tail = NULL;
541
542 for (; p; p = p->next)
543 {
544 new_arg = gfc_get_actual_arglist ();
545 *new_arg = *p;
546
547 new_arg->expr = gfc_copy_expr (p->expr);
548 new_arg->next = NULL;
549
550 if (head == NULL)
551 head = new_arg;
552 else
553 tail->next = new_arg;
554
555 tail = new_arg;
556 }
557
558 return head;
559 }
560
561
562 /* Free a list of reference structures. */
563
564 void
565 gfc_free_ref_list (gfc_ref *p)
566 {
567 gfc_ref *q;
568 int i;
569
570 for (; p; p = q)
571 {
572 q = p->next;
573
574 switch (p->type)
575 {
576 case REF_ARRAY:
577 for (i = 0; i < GFC_MAX_DIMENSIONS; i++)
578 {
579 gfc_free_expr (p->u.ar.start[i]);
580 gfc_free_expr (p->u.ar.end[i]);
581 gfc_free_expr (p->u.ar.stride[i]);
582 }
583
584 break;
585
586 case REF_SUBSTRING:
587 gfc_free_expr (p->u.ss.start);
588 gfc_free_expr (p->u.ss.end);
589 break;
590
591 case REF_COMPONENT:
592 break;
593 }
594
595 free (p);
596 }
597 }
598
599
600 /* Graft the *src expression onto the *dest subexpression. */
601
602 void
603 gfc_replace_expr (gfc_expr *dest, gfc_expr *src)
604 {
605 free_expr0 (dest);
606 *dest = *src;
607 free (src);
608 }
609
610
611 /* Try to extract an integer constant from the passed expression node.
612 Returns an error message or NULL if the result is set. It is
613 tempting to generate an error and return true or false, but
614 failure is OK for some callers. */
615
616 const char *
617 gfc_extract_int (gfc_expr *expr, int *result)
618 {
619 if (expr->expr_type != EXPR_CONSTANT)
620 return _("Constant expression required at %C");
621
622 if (expr->ts.type != BT_INTEGER)
623 return _("Integer expression required at %C");
624
625 if ((mpz_cmp_si (expr->value.integer, INT_MAX) > 0)
626 || (mpz_cmp_si (expr->value.integer, INT_MIN) < 0))
627 {
628 return _("Integer value too large in expression at %C");
629 }
630
631 *result = (int) mpz_get_si (expr->value.integer);
632
633 return NULL;
634 }
635
636
637 /* Recursively copy a list of reference structures. */
638
639 gfc_ref *
640 gfc_copy_ref (gfc_ref *src)
641 {
642 gfc_array_ref *ar;
643 gfc_ref *dest;
644
645 if (src == NULL)
646 return NULL;
647
648 dest = gfc_get_ref ();
649 dest->type = src->type;
650
651 switch (src->type)
652 {
653 case REF_ARRAY:
654 ar = gfc_copy_array_ref (&src->u.ar);
655 dest->u.ar = *ar;
656 free (ar);
657 break;
658
659 case REF_COMPONENT:
660 dest->u.c = src->u.c;
661 break;
662
663 case REF_SUBSTRING:
664 dest->u.ss = src->u.ss;
665 dest->u.ss.start = gfc_copy_expr (src->u.ss.start);
666 dest->u.ss.end = gfc_copy_expr (src->u.ss.end);
667 break;
668 }
669
670 dest->next = gfc_copy_ref (src->next);
671
672 return dest;
673 }
674
675
676 /* Detect whether an expression has any vector index array references. */
677
678 int
679 gfc_has_vector_index (gfc_expr *e)
680 {
681 gfc_ref *ref;
682 int i;
683 for (ref = e->ref; ref; ref = ref->next)
684 if (ref->type == REF_ARRAY)
685 for (i = 0; i < ref->u.ar.dimen; i++)
686 if (ref->u.ar.dimen_type[i] == DIMEN_VECTOR)
687 return 1;
688 return 0;
689 }
690
691
692 /* Copy a shape array. */
693
694 mpz_t *
695 gfc_copy_shape (mpz_t *shape, int rank)
696 {
697 mpz_t *new_shape;
698 int n;
699
700 if (shape == NULL)
701 return NULL;
702
703 new_shape = gfc_get_shape (rank);
704
705 for (n = 0; n < rank; n++)
706 mpz_init_set (new_shape[n], shape[n]);
707
708 return new_shape;
709 }
710
711
712 /* Copy a shape array excluding dimension N, where N is an integer
713 constant expression. Dimensions are numbered in Fortran style --
714 starting with ONE.
715
716 So, if the original shape array contains R elements
717 { s1 ... sN-1 sN sN+1 ... sR-1 sR}
718 the result contains R-1 elements:
719 { s1 ... sN-1 sN+1 ... sR-1}
720
721 If anything goes wrong -- N is not a constant, its value is out
722 of range -- or anything else, just returns NULL. */
723
724 mpz_t *
725 gfc_copy_shape_excluding (mpz_t *shape, int rank, gfc_expr *dim)
726 {
727 mpz_t *new_shape, *s;
728 int i, n;
729
730 if (shape == NULL
731 || rank <= 1
732 || dim == NULL
733 || dim->expr_type != EXPR_CONSTANT
734 || dim->ts.type != BT_INTEGER)
735 return NULL;
736
737 n = mpz_get_si (dim->value.integer);
738 n--; /* Convert to zero based index. */
739 if (n < 0 || n >= rank)
740 return NULL;
741
742 s = new_shape = gfc_get_shape (rank - 1);
743
744 for (i = 0; i < rank; i++)
745 {
746 if (i == n)
747 continue;
748 mpz_init_set (*s, shape[i]);
749 s++;
750 }
751
752 return new_shape;
753 }
754
755
756 /* Return the maximum kind of two expressions. In general, higher
757 kind numbers mean more precision for numeric types. */
758
759 int
760 gfc_kind_max (gfc_expr *e1, gfc_expr *e2)
761 {
762 return (e1->ts.kind > e2->ts.kind) ? e1->ts.kind : e2->ts.kind;
763 }
764
765
766 /* Returns nonzero if the type is numeric, zero otherwise. */
767
768 static int
769 numeric_type (bt type)
770 {
771 return type == BT_COMPLEX || type == BT_REAL || type == BT_INTEGER;
772 }
773
774
775 /* Returns nonzero if the typespec is a numeric type, zero otherwise. */
776
777 int
778 gfc_numeric_ts (gfc_typespec *ts)
779 {
780 return numeric_type (ts->type);
781 }
782
783
784 /* Return an expression node with an optional argument list attached.
785 A variable number of gfc_expr pointers are strung together in an
786 argument list with a NULL pointer terminating the list. */
787
788 gfc_expr *
789 gfc_build_conversion (gfc_expr *e)
790 {
791 gfc_expr *p;
792
793 p = gfc_get_expr ();
794 p->expr_type = EXPR_FUNCTION;
795 p->symtree = NULL;
796 p->value.function.actual = NULL;
797
798 p->value.function.actual = gfc_get_actual_arglist ();
799 p->value.function.actual->expr = e;
800
801 return p;
802 }
803
804
805 /* Given an expression node with some sort of numeric binary
806 expression, insert type conversions required to make the operands
807 have the same type. Conversion warnings are disabled if wconversion
808 is set to 0.
809
810 The exception is that the operands of an exponential don't have to
811 have the same type. If possible, the base is promoted to the type
812 of the exponent. For example, 1**2.3 becomes 1.0**2.3, but
813 1.0**2 stays as it is. */
814
815 void
816 gfc_type_convert_binary (gfc_expr *e, int wconversion)
817 {
818 gfc_expr *op1, *op2;
819
820 op1 = e->value.op.op1;
821 op2 = e->value.op.op2;
822
823 if (op1->ts.type == BT_UNKNOWN || op2->ts.type == BT_UNKNOWN)
824 {
825 gfc_clear_ts (&e->ts);
826 return;
827 }
828
829 /* Kind conversions of same type. */
830 if (op1->ts.type == op2->ts.type)
831 {
832 if (op1->ts.kind == op2->ts.kind)
833 {
834 /* No type conversions. */
835 e->ts = op1->ts;
836 goto done;
837 }
838
839 if (op1->ts.kind > op2->ts.kind)
840 gfc_convert_type_warn (op2, &op1->ts, 2, wconversion);
841 else
842 gfc_convert_type_warn (op1, &op2->ts, 2, wconversion);
843
844 e->ts = op1->ts;
845 goto done;
846 }
847
848 /* Integer combined with real or complex. */
849 if (op2->ts.type == BT_INTEGER)
850 {
851 e->ts = op1->ts;
852
853 /* Special case for ** operator. */
854 if (e->value.op.op == INTRINSIC_POWER)
855 goto done;
856
857 gfc_convert_type_warn (e->value.op.op2, &e->ts, 2, wconversion);
858 goto done;
859 }
860
861 if (op1->ts.type == BT_INTEGER)
862 {
863 e->ts = op2->ts;
864 gfc_convert_type_warn (e->value.op.op1, &e->ts, 2, wconversion);
865 goto done;
866 }
867
868 /* Real combined with complex. */
869 e->ts.type = BT_COMPLEX;
870 if (op1->ts.kind > op2->ts.kind)
871 e->ts.kind = op1->ts.kind;
872 else
873 e->ts.kind = op2->ts.kind;
874 if (op1->ts.type != BT_COMPLEX || op1->ts.kind != e->ts.kind)
875 gfc_convert_type_warn (e->value.op.op1, &e->ts, 2, wconversion);
876 if (op2->ts.type != BT_COMPLEX || op2->ts.kind != e->ts.kind)
877 gfc_convert_type_warn (e->value.op.op2, &e->ts, 2, wconversion);
878
879 done:
880 return;
881 }
882
883
884 /* Function to determine if an expression is constant or not. This
885 function expects that the expression has already been simplified. */
886
887 int
888 gfc_is_constant_expr (gfc_expr *e)
889 {
890 gfc_constructor *c;
891 gfc_actual_arglist *arg;
892 gfc_symbol *sym;
893
894 if (e == NULL)
895 return 1;
896
897 switch (e->expr_type)
898 {
899 case EXPR_OP:
900 return (gfc_is_constant_expr (e->value.op.op1)
901 && (e->value.op.op2 == NULL
902 || gfc_is_constant_expr (e->value.op.op2)));
903
904 case EXPR_VARIABLE:
905 return 0;
906
907 case EXPR_FUNCTION:
908 case EXPR_PPC:
909 case EXPR_COMPCALL:
910 gcc_assert (e->symtree || e->value.function.esym
911 || e->value.function.isym);
912
913 /* Call to intrinsic with at least one argument. */
914 if (e->value.function.isym && e->value.function.actual)
915 {
916 for (arg = e->value.function.actual; arg; arg = arg->next)
917 if (!gfc_is_constant_expr (arg->expr))
918 return 0;
919 }
920
921 /* Specification functions are constant. */
922 /* F95, 7.1.6.2; F2003, 7.1.7 */
923 sym = NULL;
924 if (e->symtree)
925 sym = e->symtree->n.sym;
926 if (e->value.function.esym)
927 sym = e->value.function.esym;
928
929 if (sym
930 && sym->attr.function
931 && sym->attr.pure
932 && !sym->attr.intrinsic
933 && !sym->attr.recursive
934 && sym->attr.proc != PROC_INTERNAL
935 && sym->attr.proc != PROC_ST_FUNCTION
936 && sym->attr.proc != PROC_UNKNOWN
937 && gfc_sym_get_dummy_args (sym) == NULL)
938 return 1;
939
940 if (e->value.function.isym
941 && (e->value.function.isym->elemental
942 || e->value.function.isym->pure
943 || e->value.function.isym->inquiry
944 || e->value.function.isym->transformational))
945 return 1;
946
947 return 0;
948
949 case EXPR_CONSTANT:
950 case EXPR_NULL:
951 return 1;
952
953 case EXPR_SUBSTRING:
954 return e->ref == NULL || (gfc_is_constant_expr (e->ref->u.ss.start)
955 && gfc_is_constant_expr (e->ref->u.ss.end));
956
957 case EXPR_ARRAY:
958 case EXPR_STRUCTURE:
959 c = gfc_constructor_first (e->value.constructor);
960 if ((e->expr_type == EXPR_ARRAY) && c && c->iterator)
961 return gfc_constant_ac (e);
962
963 for (; c; c = gfc_constructor_next (c))
964 if (!gfc_is_constant_expr (c->expr))
965 return 0;
966
967 return 1;
968
969
970 default:
971 gfc_internal_error ("gfc_is_constant_expr(): Unknown expression type");
972 return 0;
973 }
974 }
975
976
977 /* Is true if an array reference is followed by a component or substring
978 reference. */
979 bool
980 is_subref_array (gfc_expr * e)
981 {
982 gfc_ref * ref;
983 bool seen_array;
984
985 if (e->expr_type != EXPR_VARIABLE)
986 return false;
987
988 if (e->symtree->n.sym->attr.subref_array_pointer)
989 return true;
990
991 seen_array = false;
992 for (ref = e->ref; ref; ref = ref->next)
993 {
994 if (ref->type == REF_ARRAY
995 && ref->u.ar.type != AR_ELEMENT)
996 seen_array = true;
997
998 if (seen_array
999 && ref->type != REF_ARRAY)
1000 return seen_array;
1001 }
1002 return false;
1003 }
1004
1005
1006 /* Try to collapse intrinsic expressions. */
1007
1008 static bool
1009 simplify_intrinsic_op (gfc_expr *p, int type)
1010 {
1011 gfc_intrinsic_op op;
1012 gfc_expr *op1, *op2, *result;
1013
1014 if (p->value.op.op == INTRINSIC_USER)
1015 return true;
1016
1017 op1 = p->value.op.op1;
1018 op2 = p->value.op.op2;
1019 op = p->value.op.op;
1020
1021 if (!gfc_simplify_expr (op1, type))
1022 return false;
1023 if (!gfc_simplify_expr (op2, type))
1024 return false;
1025
1026 if (!gfc_is_constant_expr (op1)
1027 || (op2 != NULL && !gfc_is_constant_expr (op2)))
1028 return true;
1029
1030 /* Rip p apart. */
1031 p->value.op.op1 = NULL;
1032 p->value.op.op2 = NULL;
1033
1034 switch (op)
1035 {
1036 case INTRINSIC_PARENTHESES:
1037 result = gfc_parentheses (op1);
1038 break;
1039
1040 case INTRINSIC_UPLUS:
1041 result = gfc_uplus (op1);
1042 break;
1043
1044 case INTRINSIC_UMINUS:
1045 result = gfc_uminus (op1);
1046 break;
1047
1048 case INTRINSIC_PLUS:
1049 result = gfc_add (op1, op2);
1050 break;
1051
1052 case INTRINSIC_MINUS:
1053 result = gfc_subtract (op1, op2);
1054 break;
1055
1056 case INTRINSIC_TIMES:
1057 result = gfc_multiply (op1, op2);
1058 break;
1059
1060 case INTRINSIC_DIVIDE:
1061 result = gfc_divide (op1, op2);
1062 break;
1063
1064 case INTRINSIC_POWER:
1065 result = gfc_power (op1, op2);
1066 break;
1067
1068 case INTRINSIC_CONCAT:
1069 result = gfc_concat (op1, op2);
1070 break;
1071
1072 case INTRINSIC_EQ:
1073 case INTRINSIC_EQ_OS:
1074 result = gfc_eq (op1, op2, op);
1075 break;
1076
1077 case INTRINSIC_NE:
1078 case INTRINSIC_NE_OS:
1079 result = gfc_ne (op1, op2, op);
1080 break;
1081
1082 case INTRINSIC_GT:
1083 case INTRINSIC_GT_OS:
1084 result = gfc_gt (op1, op2, op);
1085 break;
1086
1087 case INTRINSIC_GE:
1088 case INTRINSIC_GE_OS:
1089 result = gfc_ge (op1, op2, op);
1090 break;
1091
1092 case INTRINSIC_LT:
1093 case INTRINSIC_LT_OS:
1094 result = gfc_lt (op1, op2, op);
1095 break;
1096
1097 case INTRINSIC_LE:
1098 case INTRINSIC_LE_OS:
1099 result = gfc_le (op1, op2, op);
1100 break;
1101
1102 case INTRINSIC_NOT:
1103 result = gfc_not (op1);
1104 break;
1105
1106 case INTRINSIC_AND:
1107 result = gfc_and (op1, op2);
1108 break;
1109
1110 case INTRINSIC_OR:
1111 result = gfc_or (op1, op2);
1112 break;
1113
1114 case INTRINSIC_EQV:
1115 result = gfc_eqv (op1, op2);
1116 break;
1117
1118 case INTRINSIC_NEQV:
1119 result = gfc_neqv (op1, op2);
1120 break;
1121
1122 default:
1123 gfc_internal_error ("simplify_intrinsic_op(): Bad operator");
1124 }
1125
1126 if (result == NULL)
1127 {
1128 gfc_free_expr (op1);
1129 gfc_free_expr (op2);
1130 return false;
1131 }
1132
1133 result->rank = p->rank;
1134 result->where = p->where;
1135 gfc_replace_expr (p, result);
1136
1137 return true;
1138 }
1139
1140
1141 /* Subroutine to simplify constructor expressions. Mutually recursive
1142 with gfc_simplify_expr(). */
1143
1144 static bool
1145 simplify_constructor (gfc_constructor_base base, int type)
1146 {
1147 gfc_constructor *c;
1148 gfc_expr *p;
1149
1150 for (c = gfc_constructor_first (base); c; c = gfc_constructor_next (c))
1151 {
1152 if (c->iterator
1153 && (!gfc_simplify_expr(c->iterator->start, type)
1154 || !gfc_simplify_expr (c->iterator->end, type)
1155 || !gfc_simplify_expr (c->iterator->step, type)))
1156 return false;
1157
1158 if (c->expr)
1159 {
1160 /* Try and simplify a copy. Replace the original if successful
1161 but keep going through the constructor at all costs. Not
1162 doing so can make a dog's dinner of complicated things. */
1163 p = gfc_copy_expr (c->expr);
1164
1165 if (!gfc_simplify_expr (p, type))
1166 {
1167 gfc_free_expr (p);
1168 continue;
1169 }
1170
1171 gfc_replace_expr (c->expr, p);
1172 }
1173 }
1174
1175 return true;
1176 }
1177
1178
1179 /* Pull a single array element out of an array constructor. */
1180
1181 static bool
1182 find_array_element (gfc_constructor_base base, gfc_array_ref *ar,
1183 gfc_constructor **rval)
1184 {
1185 unsigned long nelemen;
1186 int i;
1187 mpz_t delta;
1188 mpz_t offset;
1189 mpz_t span;
1190 mpz_t tmp;
1191 gfc_constructor *cons;
1192 gfc_expr *e;
1193 bool t;
1194
1195 t = true;
1196 e = NULL;
1197
1198 mpz_init_set_ui (offset, 0);
1199 mpz_init (delta);
1200 mpz_init (tmp);
1201 mpz_init_set_ui (span, 1);
1202 for (i = 0; i < ar->dimen; i++)
1203 {
1204 if (!gfc_reduce_init_expr (ar->as->lower[i])
1205 || !gfc_reduce_init_expr (ar->as->upper[i]))
1206 {
1207 t = false;
1208 cons = NULL;
1209 goto depart;
1210 }
1211
1212 e = gfc_copy_expr (ar->start[i]);
1213 if (e->expr_type != EXPR_CONSTANT)
1214 {
1215 cons = NULL;
1216 goto depart;
1217 }
1218
1219 gcc_assert (ar->as->upper[i]->expr_type == EXPR_CONSTANT
1220 && ar->as->lower[i]->expr_type == EXPR_CONSTANT);
1221
1222 /* Check the bounds. */
1223 if ((ar->as->upper[i]
1224 && mpz_cmp (e->value.integer,
1225 ar->as->upper[i]->value.integer) > 0)
1226 || (mpz_cmp (e->value.integer,
1227 ar->as->lower[i]->value.integer) < 0))
1228 {
1229 gfc_error ("Index in dimension %d is out of bounds "
1230 "at %L", i + 1, &ar->c_where[i]);
1231 cons = NULL;
1232 t = false;
1233 goto depart;
1234 }
1235
1236 mpz_sub (delta, e->value.integer, ar->as->lower[i]->value.integer);
1237 mpz_mul (delta, delta, span);
1238 mpz_add (offset, offset, delta);
1239
1240 mpz_set_ui (tmp, 1);
1241 mpz_add (tmp, tmp, ar->as->upper[i]->value.integer);
1242 mpz_sub (tmp, tmp, ar->as->lower[i]->value.integer);
1243 mpz_mul (span, span, tmp);
1244 }
1245
1246 for (cons = gfc_constructor_first (base), nelemen = mpz_get_ui (offset);
1247 cons && nelemen > 0; cons = gfc_constructor_next (cons), nelemen--)
1248 {
1249 if (cons->iterator)
1250 {
1251 cons = NULL;
1252 goto depart;
1253 }
1254 }
1255
1256 depart:
1257 mpz_clear (delta);
1258 mpz_clear (offset);
1259 mpz_clear (span);
1260 mpz_clear (tmp);
1261 if (e)
1262 gfc_free_expr (e);
1263 *rval = cons;
1264 return t;
1265 }
1266
1267
1268 /* Find a component of a structure constructor. */
1269
1270 static gfc_constructor *
1271 find_component_ref (gfc_constructor_base base, gfc_ref *ref)
1272 {
1273 gfc_component *comp;
1274 gfc_component *pick;
1275 gfc_constructor *c = gfc_constructor_first (base);
1276
1277 comp = ref->u.c.sym->components;
1278 pick = ref->u.c.component;
1279 while (comp != pick)
1280 {
1281 comp = comp->next;
1282 c = gfc_constructor_next (c);
1283 }
1284
1285 return c;
1286 }
1287
1288
1289 /* Replace an expression with the contents of a constructor, removing
1290 the subobject reference in the process. */
1291
1292 static void
1293 remove_subobject_ref (gfc_expr *p, gfc_constructor *cons)
1294 {
1295 gfc_expr *e;
1296
1297 if (cons)
1298 {
1299 e = cons->expr;
1300 cons->expr = NULL;
1301 }
1302 else
1303 e = gfc_copy_expr (p);
1304 e->ref = p->ref->next;
1305 p->ref->next = NULL;
1306 gfc_replace_expr (p, e);
1307 }
1308
1309
1310 /* Pull an array section out of an array constructor. */
1311
1312 static bool
1313 find_array_section (gfc_expr *expr, gfc_ref *ref)
1314 {
1315 int idx;
1316 int rank;
1317 int d;
1318 int shape_i;
1319 int limit;
1320 long unsigned one = 1;
1321 bool incr_ctr;
1322 mpz_t start[GFC_MAX_DIMENSIONS];
1323 mpz_t end[GFC_MAX_DIMENSIONS];
1324 mpz_t stride[GFC_MAX_DIMENSIONS];
1325 mpz_t delta[GFC_MAX_DIMENSIONS];
1326 mpz_t ctr[GFC_MAX_DIMENSIONS];
1327 mpz_t delta_mpz;
1328 mpz_t tmp_mpz;
1329 mpz_t nelts;
1330 mpz_t ptr;
1331 gfc_constructor_base base;
1332 gfc_constructor *cons, *vecsub[GFC_MAX_DIMENSIONS];
1333 gfc_expr *begin;
1334 gfc_expr *finish;
1335 gfc_expr *step;
1336 gfc_expr *upper;
1337 gfc_expr *lower;
1338 bool t;
1339
1340 t = true;
1341
1342 base = expr->value.constructor;
1343 expr->value.constructor = NULL;
1344
1345 rank = ref->u.ar.as->rank;
1346
1347 if (expr->shape == NULL)
1348 expr->shape = gfc_get_shape (rank);
1349
1350 mpz_init_set_ui (delta_mpz, one);
1351 mpz_init_set_ui (nelts, one);
1352 mpz_init (tmp_mpz);
1353
1354 /* Do the initialization now, so that we can cleanup without
1355 keeping track of where we were. */
1356 for (d = 0; d < rank; d++)
1357 {
1358 mpz_init (delta[d]);
1359 mpz_init (start[d]);
1360 mpz_init (end[d]);
1361 mpz_init (ctr[d]);
1362 mpz_init (stride[d]);
1363 vecsub[d] = NULL;
1364 }
1365
1366 /* Build the counters to clock through the array reference. */
1367 shape_i = 0;
1368 for (d = 0; d < rank; d++)
1369 {
1370 /* Make this stretch of code easier on the eye! */
1371 begin = ref->u.ar.start[d];
1372 finish = ref->u.ar.end[d];
1373 step = ref->u.ar.stride[d];
1374 lower = ref->u.ar.as->lower[d];
1375 upper = ref->u.ar.as->upper[d];
1376
1377 if (ref->u.ar.dimen_type[d] == DIMEN_VECTOR) /* Vector subscript. */
1378 {
1379 gfc_constructor *ci;
1380 gcc_assert (begin);
1381
1382 if (begin->expr_type != EXPR_ARRAY || !gfc_is_constant_expr (begin))
1383 {
1384 t = false;
1385 goto cleanup;
1386 }
1387
1388 gcc_assert (begin->rank == 1);
1389 /* Zero-sized arrays have no shape and no elements, stop early. */
1390 if (!begin->shape)
1391 {
1392 mpz_init_set_ui (nelts, 0);
1393 break;
1394 }
1395
1396 vecsub[d] = gfc_constructor_first (begin->value.constructor);
1397 mpz_set (ctr[d], vecsub[d]->expr->value.integer);
1398 mpz_mul (nelts, nelts, begin->shape[0]);
1399 mpz_set (expr->shape[shape_i++], begin->shape[0]);
1400
1401 /* Check bounds. */
1402 for (ci = vecsub[d]; ci; ci = gfc_constructor_next (ci))
1403 {
1404 if (mpz_cmp (ci->expr->value.integer, upper->value.integer) > 0
1405 || mpz_cmp (ci->expr->value.integer,
1406 lower->value.integer) < 0)
1407 {
1408 gfc_error ("index in dimension %d is out of bounds "
1409 "at %L", d + 1, &ref->u.ar.c_where[d]);
1410 t = false;
1411 goto cleanup;
1412 }
1413 }
1414 }
1415 else
1416 {
1417 if ((begin && begin->expr_type != EXPR_CONSTANT)
1418 || (finish && finish->expr_type != EXPR_CONSTANT)
1419 || (step && step->expr_type != EXPR_CONSTANT))
1420 {
1421 t = false;
1422 goto cleanup;
1423 }
1424
1425 /* Obtain the stride. */
1426 if (step)
1427 mpz_set (stride[d], step->value.integer);
1428 else
1429 mpz_set_ui (stride[d], one);
1430
1431 if (mpz_cmp_ui (stride[d], 0) == 0)
1432 mpz_set_ui (stride[d], one);
1433
1434 /* Obtain the start value for the index. */
1435 if (begin)
1436 mpz_set (start[d], begin->value.integer);
1437 else
1438 mpz_set (start[d], lower->value.integer);
1439
1440 mpz_set (ctr[d], start[d]);
1441
1442 /* Obtain the end value for the index. */
1443 if (finish)
1444 mpz_set (end[d], finish->value.integer);
1445 else
1446 mpz_set (end[d], upper->value.integer);
1447
1448 /* Separate 'if' because elements sometimes arrive with
1449 non-null end. */
1450 if (ref->u.ar.dimen_type[d] == DIMEN_ELEMENT)
1451 mpz_set (end [d], begin->value.integer);
1452
1453 /* Check the bounds. */
1454 if (mpz_cmp (ctr[d], upper->value.integer) > 0
1455 || mpz_cmp (end[d], upper->value.integer) > 0
1456 || mpz_cmp (ctr[d], lower->value.integer) < 0
1457 || mpz_cmp (end[d], lower->value.integer) < 0)
1458 {
1459 gfc_error ("index in dimension %d is out of bounds "
1460 "at %L", d + 1, &ref->u.ar.c_where[d]);
1461 t = false;
1462 goto cleanup;
1463 }
1464
1465 /* Calculate the number of elements and the shape. */
1466 mpz_set (tmp_mpz, stride[d]);
1467 mpz_add (tmp_mpz, end[d], tmp_mpz);
1468 mpz_sub (tmp_mpz, tmp_mpz, ctr[d]);
1469 mpz_div (tmp_mpz, tmp_mpz, stride[d]);
1470 mpz_mul (nelts, nelts, tmp_mpz);
1471
1472 /* An element reference reduces the rank of the expression; don't
1473 add anything to the shape array. */
1474 if (ref->u.ar.dimen_type[d] != DIMEN_ELEMENT)
1475 mpz_set (expr->shape[shape_i++], tmp_mpz);
1476 }
1477
1478 /* Calculate the 'stride' (=delta) for conversion of the
1479 counter values into the index along the constructor. */
1480 mpz_set (delta[d], delta_mpz);
1481 mpz_sub (tmp_mpz, upper->value.integer, lower->value.integer);
1482 mpz_add_ui (tmp_mpz, tmp_mpz, one);
1483 mpz_mul (delta_mpz, delta_mpz, tmp_mpz);
1484 }
1485
1486 mpz_init (ptr);
1487 cons = gfc_constructor_first (base);
1488
1489 /* Now clock through the array reference, calculating the index in
1490 the source constructor and transferring the elements to the new
1491 constructor. */
1492 for (idx = 0; idx < (int) mpz_get_si (nelts); idx++)
1493 {
1494 mpz_init_set_ui (ptr, 0);
1495
1496 incr_ctr = true;
1497 for (d = 0; d < rank; d++)
1498 {
1499 mpz_set (tmp_mpz, ctr[d]);
1500 mpz_sub (tmp_mpz, tmp_mpz, ref->u.ar.as->lower[d]->value.integer);
1501 mpz_mul (tmp_mpz, tmp_mpz, delta[d]);
1502 mpz_add (ptr, ptr, tmp_mpz);
1503
1504 if (!incr_ctr) continue;
1505
1506 if (ref->u.ar.dimen_type[d] == DIMEN_VECTOR) /* Vector subscript. */
1507 {
1508 gcc_assert(vecsub[d]);
1509
1510 if (!gfc_constructor_next (vecsub[d]))
1511 vecsub[d] = gfc_constructor_first (ref->u.ar.start[d]->value.constructor);
1512 else
1513 {
1514 vecsub[d] = gfc_constructor_next (vecsub[d]);
1515 incr_ctr = false;
1516 }
1517 mpz_set (ctr[d], vecsub[d]->expr->value.integer);
1518 }
1519 else
1520 {
1521 mpz_add (ctr[d], ctr[d], stride[d]);
1522
1523 if (mpz_cmp_ui (stride[d], 0) > 0
1524 ? mpz_cmp (ctr[d], end[d]) > 0
1525 : mpz_cmp (ctr[d], end[d]) < 0)
1526 mpz_set (ctr[d], start[d]);
1527 else
1528 incr_ctr = false;
1529 }
1530 }
1531
1532 limit = mpz_get_ui (ptr);
1533 if (limit >= gfc_option.flag_max_array_constructor)
1534 {
1535 gfc_error ("The number of elements in the array constructor "
1536 "at %L requires an increase of the allowed %d "
1537 "upper limit. See -fmax-array-constructor "
1538 "option", &expr->where,
1539 gfc_option.flag_max_array_constructor);
1540 return false;
1541 }
1542
1543 cons = gfc_constructor_lookup (base, limit);
1544 gcc_assert (cons);
1545 gfc_constructor_append_expr (&expr->value.constructor,
1546 gfc_copy_expr (cons->expr), NULL);
1547 }
1548
1549 mpz_clear (ptr);
1550
1551 cleanup:
1552
1553 mpz_clear (delta_mpz);
1554 mpz_clear (tmp_mpz);
1555 mpz_clear (nelts);
1556 for (d = 0; d < rank; d++)
1557 {
1558 mpz_clear (delta[d]);
1559 mpz_clear (start[d]);
1560 mpz_clear (end[d]);
1561 mpz_clear (ctr[d]);
1562 mpz_clear (stride[d]);
1563 }
1564 gfc_constructor_free (base);
1565 return t;
1566 }
1567
1568 /* Pull a substring out of an expression. */
1569
1570 static bool
1571 find_substring_ref (gfc_expr *p, gfc_expr **newp)
1572 {
1573 int end;
1574 int start;
1575 int length;
1576 gfc_char_t *chr;
1577
1578 if (p->ref->u.ss.start->expr_type != EXPR_CONSTANT
1579 || p->ref->u.ss.end->expr_type != EXPR_CONSTANT)
1580 return false;
1581
1582 *newp = gfc_copy_expr (p);
1583 free ((*newp)->value.character.string);
1584
1585 end = (int) mpz_get_ui (p->ref->u.ss.end->value.integer);
1586 start = (int) mpz_get_ui (p->ref->u.ss.start->value.integer);
1587 length = end - start + 1;
1588
1589 chr = (*newp)->value.character.string = gfc_get_wide_string (length + 1);
1590 (*newp)->value.character.length = length;
1591 memcpy (chr, &p->value.character.string[start - 1],
1592 length * sizeof (gfc_char_t));
1593 chr[length] = '\0';
1594 return true;
1595 }
1596
1597
1598
1599 /* Simplify a subobject reference of a constructor. This occurs when
1600 parameter variable values are substituted. */
1601
1602 static bool
1603 simplify_const_ref (gfc_expr *p)
1604 {
1605 gfc_constructor *cons, *c;
1606 gfc_expr *newp;
1607 gfc_ref *last_ref;
1608
1609 while (p->ref)
1610 {
1611 switch (p->ref->type)
1612 {
1613 case REF_ARRAY:
1614 switch (p->ref->u.ar.type)
1615 {
1616 case AR_ELEMENT:
1617 /* <type/kind spec>, parameter :: x(<int>) = scalar_expr
1618 will generate this. */
1619 if (p->expr_type != EXPR_ARRAY)
1620 {
1621 remove_subobject_ref (p, NULL);
1622 break;
1623 }
1624 if (!find_array_element (p->value.constructor, &p->ref->u.ar, &cons))
1625 return false;
1626
1627 if (!cons)
1628 return true;
1629
1630 remove_subobject_ref (p, cons);
1631 break;
1632
1633 case AR_SECTION:
1634 if (!find_array_section (p, p->ref))
1635 return false;
1636 p->ref->u.ar.type = AR_FULL;
1637
1638 /* Fall through. */
1639
1640 case AR_FULL:
1641 if (p->ref->next != NULL
1642 && (p->ts.type == BT_CHARACTER || p->ts.type == BT_DERIVED))
1643 {
1644 for (c = gfc_constructor_first (p->value.constructor);
1645 c; c = gfc_constructor_next (c))
1646 {
1647 c->expr->ref = gfc_copy_ref (p->ref->next);
1648 if (!simplify_const_ref (c->expr))
1649 return false;
1650 }
1651
1652 if (p->ts.type == BT_DERIVED
1653 && p->ref->next
1654 && (c = gfc_constructor_first (p->value.constructor)))
1655 {
1656 /* There may have been component references. */
1657 p->ts = c->expr->ts;
1658 }
1659
1660 last_ref = p->ref;
1661 for (; last_ref->next; last_ref = last_ref->next) {};
1662
1663 if (p->ts.type == BT_CHARACTER
1664 && last_ref->type == REF_SUBSTRING)
1665 {
1666 /* If this is a CHARACTER array and we possibly took
1667 a substring out of it, update the type-spec's
1668 character length according to the first element
1669 (as all should have the same length). */
1670 int string_len;
1671 if ((c = gfc_constructor_first (p->value.constructor)))
1672 {
1673 const gfc_expr* first = c->expr;
1674 gcc_assert (first->expr_type == EXPR_CONSTANT);
1675 gcc_assert (first->ts.type == BT_CHARACTER);
1676 string_len = first->value.character.length;
1677 }
1678 else
1679 string_len = 0;
1680
1681 if (!p->ts.u.cl)
1682 p->ts.u.cl = gfc_new_charlen (p->symtree->n.sym->ns,
1683 NULL);
1684 else
1685 gfc_free_expr (p->ts.u.cl->length);
1686
1687 p->ts.u.cl->length
1688 = gfc_get_int_expr (gfc_default_integer_kind,
1689 NULL, string_len);
1690 }
1691 }
1692 gfc_free_ref_list (p->ref);
1693 p->ref = NULL;
1694 break;
1695
1696 default:
1697 return true;
1698 }
1699
1700 break;
1701
1702 case REF_COMPONENT:
1703 cons = find_component_ref (p->value.constructor, p->ref);
1704 remove_subobject_ref (p, cons);
1705 break;
1706
1707 case REF_SUBSTRING:
1708 if (!find_substring_ref (p, &newp))
1709 return false;
1710
1711 gfc_replace_expr (p, newp);
1712 gfc_free_ref_list (p->ref);
1713 p->ref = NULL;
1714 break;
1715 }
1716 }
1717
1718 return true;
1719 }
1720
1721
1722 /* Simplify a chain of references. */
1723
1724 static bool
1725 simplify_ref_chain (gfc_ref *ref, int type)
1726 {
1727 int n;
1728
1729 for (; ref; ref = ref->next)
1730 {
1731 switch (ref->type)
1732 {
1733 case REF_ARRAY:
1734 for (n = 0; n < ref->u.ar.dimen; n++)
1735 {
1736 if (!gfc_simplify_expr (ref->u.ar.start[n], type))
1737 return false;
1738 if (!gfc_simplify_expr (ref->u.ar.end[n], type))
1739 return false;
1740 if (!gfc_simplify_expr (ref->u.ar.stride[n], type))
1741 return false;
1742 }
1743 break;
1744
1745 case REF_SUBSTRING:
1746 if (!gfc_simplify_expr (ref->u.ss.start, type))
1747 return false;
1748 if (!gfc_simplify_expr (ref->u.ss.end, type))
1749 return false;
1750 break;
1751
1752 default:
1753 break;
1754 }
1755 }
1756 return true;
1757 }
1758
1759
1760 /* Try to substitute the value of a parameter variable. */
1761
1762 static bool
1763 simplify_parameter_variable (gfc_expr *p, int type)
1764 {
1765 gfc_expr *e;
1766 bool t;
1767
1768 e = gfc_copy_expr (p->symtree->n.sym->value);
1769 if (e == NULL)
1770 return false;
1771
1772 e->rank = p->rank;
1773
1774 /* Do not copy subobject refs for constant. */
1775 if (e->expr_type != EXPR_CONSTANT && p->ref != NULL)
1776 e->ref = gfc_copy_ref (p->ref);
1777 t = gfc_simplify_expr (e, type);
1778
1779 /* Only use the simplification if it eliminated all subobject references. */
1780 if (t && !e->ref)
1781 gfc_replace_expr (p, e);
1782 else
1783 gfc_free_expr (e);
1784
1785 return t;
1786 }
1787
1788 /* Given an expression, simplify it by collapsing constant
1789 expressions. Most simplification takes place when the expression
1790 tree is being constructed. If an intrinsic function is simplified
1791 at some point, we get called again to collapse the result against
1792 other constants.
1793
1794 We work by recursively simplifying expression nodes, simplifying
1795 intrinsic functions where possible, which can lead to further
1796 constant collapsing. If an operator has constant operand(s), we
1797 rip the expression apart, and rebuild it, hoping that it becomes
1798 something simpler.
1799
1800 The expression type is defined for:
1801 0 Basic expression parsing
1802 1 Simplifying array constructors -- will substitute
1803 iterator values.
1804 Returns false on error, true otherwise.
1805 NOTE: Will return true even if the expression can not be simplified. */
1806
1807 bool
1808 gfc_simplify_expr (gfc_expr *p, int type)
1809 {
1810 gfc_actual_arglist *ap;
1811
1812 if (p == NULL)
1813 return true;
1814
1815 switch (p->expr_type)
1816 {
1817 case EXPR_CONSTANT:
1818 case EXPR_NULL:
1819 break;
1820
1821 case EXPR_FUNCTION:
1822 for (ap = p->value.function.actual; ap; ap = ap->next)
1823 if (!gfc_simplify_expr (ap->expr, type))
1824 return false;
1825
1826 if (p->value.function.isym != NULL
1827 && gfc_intrinsic_func_interface (p, 1) == MATCH_ERROR)
1828 return false;
1829
1830 break;
1831
1832 case EXPR_SUBSTRING:
1833 if (!simplify_ref_chain (p->ref, type))
1834 return false;
1835
1836 if (gfc_is_constant_expr (p))
1837 {
1838 gfc_char_t *s;
1839 int start, end;
1840
1841 start = 0;
1842 if (p->ref && p->ref->u.ss.start)
1843 {
1844 gfc_extract_int (p->ref->u.ss.start, &start);
1845 start--; /* Convert from one-based to zero-based. */
1846 }
1847
1848 end = p->value.character.length;
1849 if (p->ref && p->ref->u.ss.end)
1850 gfc_extract_int (p->ref->u.ss.end, &end);
1851
1852 if (end < start)
1853 end = start;
1854
1855 s = gfc_get_wide_string (end - start + 2);
1856 memcpy (s, p->value.character.string + start,
1857 (end - start) * sizeof (gfc_char_t));
1858 s[end - start + 1] = '\0'; /* TODO: C-style string. */
1859 free (p->value.character.string);
1860 p->value.character.string = s;
1861 p->value.character.length = end - start;
1862 p->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
1863 p->ts.u.cl->length = gfc_get_int_expr (gfc_default_integer_kind,
1864 NULL,
1865 p->value.character.length);
1866 gfc_free_ref_list (p->ref);
1867 p->ref = NULL;
1868 p->expr_type = EXPR_CONSTANT;
1869 }
1870 break;
1871
1872 case EXPR_OP:
1873 if (!simplify_intrinsic_op (p, type))
1874 return false;
1875 break;
1876
1877 case EXPR_VARIABLE:
1878 /* Only substitute array parameter variables if we are in an
1879 initialization expression, or we want a subsection. */
1880 if (p->symtree->n.sym->attr.flavor == FL_PARAMETER
1881 && (gfc_init_expr_flag || p->ref
1882 || p->symtree->n.sym->value->expr_type != EXPR_ARRAY))
1883 {
1884 if (!simplify_parameter_variable (p, type))
1885 return false;
1886 break;
1887 }
1888
1889 if (type == 1)
1890 {
1891 gfc_simplify_iterator_var (p);
1892 }
1893
1894 /* Simplify subcomponent references. */
1895 if (!simplify_ref_chain (p->ref, type))
1896 return false;
1897
1898 break;
1899
1900 case EXPR_STRUCTURE:
1901 case EXPR_ARRAY:
1902 if (!simplify_ref_chain (p->ref, type))
1903 return false;
1904
1905 if (!simplify_constructor (p->value.constructor, type))
1906 return false;
1907
1908 if (p->expr_type == EXPR_ARRAY && p->ref && p->ref->type == REF_ARRAY
1909 && p->ref->u.ar.type == AR_FULL)
1910 gfc_expand_constructor (p, false);
1911
1912 if (!simplify_const_ref (p))
1913 return false;
1914
1915 break;
1916
1917 case EXPR_COMPCALL:
1918 case EXPR_PPC:
1919 gcc_unreachable ();
1920 break;
1921 }
1922
1923 return true;
1924 }
1925
1926
1927 /* Returns the type of an expression with the exception that iterator
1928 variables are automatically integers no matter what else they may
1929 be declared as. */
1930
1931 static bt
1932 et0 (gfc_expr *e)
1933 {
1934 if (e->expr_type == EXPR_VARIABLE && gfc_check_iter_variable (e))
1935 return BT_INTEGER;
1936
1937 return e->ts.type;
1938 }
1939
1940
1941 /* Scalarize an expression for an elemental intrinsic call. */
1942
1943 static bool
1944 scalarize_intrinsic_call (gfc_expr *e)
1945 {
1946 gfc_actual_arglist *a, *b;
1947 gfc_constructor_base ctor;
1948 gfc_constructor *args[5];
1949 gfc_constructor *ci, *new_ctor;
1950 gfc_expr *expr, *old;
1951 int n, i, rank[5], array_arg;
1952
1953 /* Find which, if any, arguments are arrays. Assume that the old
1954 expression carries the type information and that the first arg
1955 that is an array expression carries all the shape information.*/
1956 n = array_arg = 0;
1957 a = e->value.function.actual;
1958 for (; a; a = a->next)
1959 {
1960 n++;
1961 if (a->expr->expr_type != EXPR_ARRAY)
1962 continue;
1963 array_arg = n;
1964 expr = gfc_copy_expr (a->expr);
1965 break;
1966 }
1967
1968 if (!array_arg)
1969 return false;
1970
1971 old = gfc_copy_expr (e);
1972
1973 gfc_constructor_free (expr->value.constructor);
1974 expr->value.constructor = NULL;
1975 expr->ts = old->ts;
1976 expr->where = old->where;
1977 expr->expr_type = EXPR_ARRAY;
1978
1979 /* Copy the array argument constructors into an array, with nulls
1980 for the scalars. */
1981 n = 0;
1982 a = old->value.function.actual;
1983 for (; a; a = a->next)
1984 {
1985 /* Check that this is OK for an initialization expression. */
1986 if (a->expr && !gfc_check_init_expr (a->expr))
1987 goto cleanup;
1988
1989 rank[n] = 0;
1990 if (a->expr && a->expr->rank && a->expr->expr_type == EXPR_VARIABLE)
1991 {
1992 rank[n] = a->expr->rank;
1993 ctor = a->expr->symtree->n.sym->value->value.constructor;
1994 args[n] = gfc_constructor_first (ctor);
1995 }
1996 else if (a->expr && a->expr->expr_type == EXPR_ARRAY)
1997 {
1998 if (a->expr->rank)
1999 rank[n] = a->expr->rank;
2000 else
2001 rank[n] = 1;
2002 ctor = gfc_constructor_copy (a->expr->value.constructor);
2003 args[n] = gfc_constructor_first (ctor);
2004 }
2005 else
2006 args[n] = NULL;
2007
2008 n++;
2009 }
2010
2011
2012 /* Using the array argument as the master, step through the array
2013 calling the function for each element and advancing the array
2014 constructors together. */
2015 for (ci = args[array_arg - 1]; ci; ci = gfc_constructor_next (ci))
2016 {
2017 new_ctor = gfc_constructor_append_expr (&expr->value.constructor,
2018 gfc_copy_expr (old), NULL);
2019
2020 gfc_free_actual_arglist (new_ctor->expr->value.function.actual);
2021 a = NULL;
2022 b = old->value.function.actual;
2023 for (i = 0; i < n; i++)
2024 {
2025 if (a == NULL)
2026 new_ctor->expr->value.function.actual
2027 = a = gfc_get_actual_arglist ();
2028 else
2029 {
2030 a->next = gfc_get_actual_arglist ();
2031 a = a->next;
2032 }
2033
2034 if (args[i])
2035 a->expr = gfc_copy_expr (args[i]->expr);
2036 else
2037 a->expr = gfc_copy_expr (b->expr);
2038
2039 b = b->next;
2040 }
2041
2042 /* Simplify the function calls. If the simplification fails, the
2043 error will be flagged up down-stream or the library will deal
2044 with it. */
2045 gfc_simplify_expr (new_ctor->expr, 0);
2046
2047 for (i = 0; i < n; i++)
2048 if (args[i])
2049 args[i] = gfc_constructor_next (args[i]);
2050
2051 for (i = 1; i < n; i++)
2052 if (rank[i] && ((args[i] != NULL && args[array_arg - 1] == NULL)
2053 || (args[i] == NULL && args[array_arg - 1] != NULL)))
2054 goto compliance;
2055 }
2056
2057 free_expr0 (e);
2058 *e = *expr;
2059 /* Free "expr" but not the pointers it contains. */
2060 free (expr);
2061 gfc_free_expr (old);
2062 return true;
2063
2064 compliance:
2065 gfc_error_now ("elemental function arguments at %C are not compliant");
2066
2067 cleanup:
2068 gfc_free_expr (expr);
2069 gfc_free_expr (old);
2070 return false;
2071 }
2072
2073
2074 static bool
2075 check_intrinsic_op (gfc_expr *e, bool (*check_function) (gfc_expr *))
2076 {
2077 gfc_expr *op1 = e->value.op.op1;
2078 gfc_expr *op2 = e->value.op.op2;
2079
2080 if (!(*check_function)(op1))
2081 return false;
2082
2083 switch (e->value.op.op)
2084 {
2085 case INTRINSIC_UPLUS:
2086 case INTRINSIC_UMINUS:
2087 if (!numeric_type (et0 (op1)))
2088 goto not_numeric;
2089 break;
2090
2091 case INTRINSIC_EQ:
2092 case INTRINSIC_EQ_OS:
2093 case INTRINSIC_NE:
2094 case INTRINSIC_NE_OS:
2095 case INTRINSIC_GT:
2096 case INTRINSIC_GT_OS:
2097 case INTRINSIC_GE:
2098 case INTRINSIC_GE_OS:
2099 case INTRINSIC_LT:
2100 case INTRINSIC_LT_OS:
2101 case INTRINSIC_LE:
2102 case INTRINSIC_LE_OS:
2103 if (!(*check_function)(op2))
2104 return false;
2105
2106 if (!(et0 (op1) == BT_CHARACTER && et0 (op2) == BT_CHARACTER)
2107 && !(numeric_type (et0 (op1)) && numeric_type (et0 (op2))))
2108 {
2109 gfc_error ("Numeric or CHARACTER operands are required in "
2110 "expression at %L", &e->where);
2111 return false;
2112 }
2113 break;
2114
2115 case INTRINSIC_PLUS:
2116 case INTRINSIC_MINUS:
2117 case INTRINSIC_TIMES:
2118 case INTRINSIC_DIVIDE:
2119 case INTRINSIC_POWER:
2120 if (!(*check_function)(op2))
2121 return false;
2122
2123 if (!numeric_type (et0 (op1)) || !numeric_type (et0 (op2)))
2124 goto not_numeric;
2125
2126 break;
2127
2128 case INTRINSIC_CONCAT:
2129 if (!(*check_function)(op2))
2130 return false;
2131
2132 if (et0 (op1) != BT_CHARACTER || et0 (op2) != BT_CHARACTER)
2133 {
2134 gfc_error ("Concatenation operator in expression at %L "
2135 "must have two CHARACTER operands", &op1->where);
2136 return false;
2137 }
2138
2139 if (op1->ts.kind != op2->ts.kind)
2140 {
2141 gfc_error ("Concat operator at %L must concatenate strings of the "
2142 "same kind", &e->where);
2143 return false;
2144 }
2145
2146 break;
2147
2148 case INTRINSIC_NOT:
2149 if (et0 (op1) != BT_LOGICAL)
2150 {
2151 gfc_error (".NOT. operator in expression at %L must have a LOGICAL "
2152 "operand", &op1->where);
2153 return false;
2154 }
2155
2156 break;
2157
2158 case INTRINSIC_AND:
2159 case INTRINSIC_OR:
2160 case INTRINSIC_EQV:
2161 case INTRINSIC_NEQV:
2162 if (!(*check_function)(op2))
2163 return false;
2164
2165 if (et0 (op1) != BT_LOGICAL || et0 (op2) != BT_LOGICAL)
2166 {
2167 gfc_error ("LOGICAL operands are required in expression at %L",
2168 &e->where);
2169 return false;
2170 }
2171
2172 break;
2173
2174 case INTRINSIC_PARENTHESES:
2175 break;
2176
2177 default:
2178 gfc_error ("Only intrinsic operators can be used in expression at %L",
2179 &e->where);
2180 return false;
2181 }
2182
2183 return true;
2184
2185 not_numeric:
2186 gfc_error ("Numeric operands are required in expression at %L", &e->where);
2187
2188 return false;
2189 }
2190
2191 /* F2003, 7.1.7 (3): In init expression, allocatable components
2192 must not be data-initialized. */
2193 static bool
2194 check_alloc_comp_init (gfc_expr *e)
2195 {
2196 gfc_component *comp;
2197 gfc_constructor *ctor;
2198
2199 gcc_assert (e->expr_type == EXPR_STRUCTURE);
2200 gcc_assert (e->ts.type == BT_DERIVED);
2201
2202 for (comp = e->ts.u.derived->components,
2203 ctor = gfc_constructor_first (e->value.constructor);
2204 comp; comp = comp->next, ctor = gfc_constructor_next (ctor))
2205 {
2206 if (comp->attr.allocatable
2207 && ctor->expr->expr_type != EXPR_NULL)
2208 {
2209 gfc_error("Invalid initialization expression for ALLOCATABLE "
2210 "component '%s' in structure constructor at %L",
2211 comp->name, &ctor->expr->where);
2212 return false;
2213 }
2214 }
2215
2216 return true;
2217 }
2218
2219 static match
2220 check_init_expr_arguments (gfc_expr *e)
2221 {
2222 gfc_actual_arglist *ap;
2223
2224 for (ap = e->value.function.actual; ap; ap = ap->next)
2225 if (!gfc_check_init_expr (ap->expr))
2226 return MATCH_ERROR;
2227
2228 return MATCH_YES;
2229 }
2230
2231 static bool check_restricted (gfc_expr *);
2232
2233 /* F95, 7.1.6.1, Initialization expressions, (7)
2234 F2003, 7.1.7 Initialization expression, (8) */
2235
2236 static match
2237 check_inquiry (gfc_expr *e, int not_restricted)
2238 {
2239 const char *name;
2240 const char *const *functions;
2241
2242 static const char *const inquiry_func_f95[] = {
2243 "lbound", "shape", "size", "ubound",
2244 "bit_size", "len", "kind",
2245 "digits", "epsilon", "huge", "maxexponent", "minexponent",
2246 "precision", "radix", "range", "tiny",
2247 NULL
2248 };
2249
2250 static const char *const inquiry_func_f2003[] = {
2251 "lbound", "shape", "size", "ubound",
2252 "bit_size", "len", "kind",
2253 "digits", "epsilon", "huge", "maxexponent", "minexponent",
2254 "precision", "radix", "range", "tiny",
2255 "new_line", NULL
2256 };
2257
2258 int i = 0;
2259 gfc_actual_arglist *ap;
2260
2261 if (!e->value.function.isym
2262 || !e->value.function.isym->inquiry)
2263 return MATCH_NO;
2264
2265 /* An undeclared parameter will get us here (PR25018). */
2266 if (e->symtree == NULL)
2267 return MATCH_NO;
2268
2269 if (e->symtree->n.sym->from_intmod)
2270 {
2271 if (e->symtree->n.sym->from_intmod == INTMOD_ISO_FORTRAN_ENV
2272 && e->symtree->n.sym->intmod_sym_id != ISOFORTRAN_COMPILER_OPTIONS
2273 && e->symtree->n.sym->intmod_sym_id != ISOFORTRAN_COMPILER_VERSION)
2274 return MATCH_NO;
2275
2276 if (e->symtree->n.sym->from_intmod == INTMOD_ISO_C_BINDING
2277 && e->symtree->n.sym->intmod_sym_id != ISOCBINDING_C_SIZEOF)
2278 return MATCH_NO;
2279 }
2280 else
2281 {
2282 name = e->symtree->n.sym->name;
2283
2284 functions = (gfc_option.warn_std & GFC_STD_F2003)
2285 ? inquiry_func_f2003 : inquiry_func_f95;
2286
2287 for (i = 0; functions[i]; i++)
2288 if (strcmp (functions[i], name) == 0)
2289 break;
2290
2291 if (functions[i] == NULL)
2292 return MATCH_ERROR;
2293 }
2294
2295 /* At this point we have an inquiry function with a variable argument. The
2296 type of the variable might be undefined, but we need it now, because the
2297 arguments of these functions are not allowed to be undefined. */
2298
2299 for (ap = e->value.function.actual; ap; ap = ap->next)
2300 {
2301 if (!ap->expr)
2302 continue;
2303
2304 if (ap->expr->ts.type == BT_UNKNOWN)
2305 {
2306 if (ap->expr->symtree->n.sym->ts.type == BT_UNKNOWN
2307 && !gfc_set_default_type (ap->expr->symtree->n.sym, 0, gfc_current_ns))
2308 return MATCH_NO;
2309
2310 ap->expr->ts = ap->expr->symtree->n.sym->ts;
2311 }
2312
2313 /* Assumed character length will not reduce to a constant expression
2314 with LEN, as required by the standard. */
2315 if (i == 5 && not_restricted
2316 && ap->expr->symtree->n.sym->ts.type == BT_CHARACTER
2317 && (ap->expr->symtree->n.sym->ts.u.cl->length == NULL
2318 || ap->expr->symtree->n.sym->ts.deferred))
2319 {
2320 gfc_error ("Assumed or deferred character length variable '%s' "
2321 " in constant expression at %L",
2322 ap->expr->symtree->n.sym->name,
2323 &ap->expr->where);
2324 return MATCH_ERROR;
2325 }
2326 else if (not_restricted && !gfc_check_init_expr (ap->expr))
2327 return MATCH_ERROR;
2328
2329 if (not_restricted == 0
2330 && ap->expr->expr_type != EXPR_VARIABLE
2331 && !check_restricted (ap->expr))
2332 return MATCH_ERROR;
2333
2334 if (not_restricted == 0
2335 && ap->expr->expr_type == EXPR_VARIABLE
2336 && ap->expr->symtree->n.sym->attr.dummy
2337 && ap->expr->symtree->n.sym->attr.optional)
2338 return MATCH_NO;
2339 }
2340
2341 return MATCH_YES;
2342 }
2343
2344
2345 /* F95, 7.1.6.1, Initialization expressions, (5)
2346 F2003, 7.1.7 Initialization expression, (5) */
2347
2348 static match
2349 check_transformational (gfc_expr *e)
2350 {
2351 static const char * const trans_func_f95[] = {
2352 "repeat", "reshape", "selected_int_kind",
2353 "selected_real_kind", "transfer", "trim", NULL
2354 };
2355
2356 static const char * const trans_func_f2003[] = {
2357 "all", "any", "count", "dot_product", "matmul", "null", "pack",
2358 "product", "repeat", "reshape", "selected_char_kind", "selected_int_kind",
2359 "selected_real_kind", "spread", "sum", "transfer", "transpose",
2360 "trim", "unpack", NULL
2361 };
2362
2363 int i;
2364 const char *name;
2365 const char *const *functions;
2366
2367 if (!e->value.function.isym
2368 || !e->value.function.isym->transformational)
2369 return MATCH_NO;
2370
2371 name = e->symtree->n.sym->name;
2372
2373 functions = (gfc_option.allow_std & GFC_STD_F2003)
2374 ? trans_func_f2003 : trans_func_f95;
2375
2376 /* NULL() is dealt with below. */
2377 if (strcmp ("null", name) == 0)
2378 return MATCH_NO;
2379
2380 for (i = 0; functions[i]; i++)
2381 if (strcmp (functions[i], name) == 0)
2382 break;
2383
2384 if (functions[i] == NULL)
2385 {
2386 gfc_error("transformational intrinsic '%s' at %L is not permitted "
2387 "in an initialization expression", name, &e->where);
2388 return MATCH_ERROR;
2389 }
2390
2391 return check_init_expr_arguments (e);
2392 }
2393
2394
2395 /* F95, 7.1.6.1, Initialization expressions, (6)
2396 F2003, 7.1.7 Initialization expression, (6) */
2397
2398 static match
2399 check_null (gfc_expr *e)
2400 {
2401 if (strcmp ("null", e->symtree->n.sym->name) != 0)
2402 return MATCH_NO;
2403
2404 return check_init_expr_arguments (e);
2405 }
2406
2407
2408 static match
2409 check_elemental (gfc_expr *e)
2410 {
2411 if (!e->value.function.isym
2412 || !e->value.function.isym->elemental)
2413 return MATCH_NO;
2414
2415 if (e->ts.type != BT_INTEGER
2416 && e->ts.type != BT_CHARACTER
2417 && !gfc_notify_std (GFC_STD_F2003, "Evaluation of nonstandard "
2418 "initialization expression at %L", &e->where))
2419 return MATCH_ERROR;
2420
2421 return check_init_expr_arguments (e);
2422 }
2423
2424
2425 static match
2426 check_conversion (gfc_expr *e)
2427 {
2428 if (!e->value.function.isym
2429 || !e->value.function.isym->conversion)
2430 return MATCH_NO;
2431
2432 return check_init_expr_arguments (e);
2433 }
2434
2435
2436 /* Verify that an expression is an initialization expression. A side
2437 effect is that the expression tree is reduced to a single constant
2438 node if all goes well. This would normally happen when the
2439 expression is constructed but function references are assumed to be
2440 intrinsics in the context of initialization expressions. If
2441 false is returned an error message has been generated. */
2442
2443 bool
2444 gfc_check_init_expr (gfc_expr *e)
2445 {
2446 match m;
2447 bool t;
2448
2449 if (e == NULL)
2450 return true;
2451
2452 switch (e->expr_type)
2453 {
2454 case EXPR_OP:
2455 t = check_intrinsic_op (e, gfc_check_init_expr);
2456 if (t)
2457 t = gfc_simplify_expr (e, 0);
2458
2459 break;
2460
2461 case EXPR_FUNCTION:
2462 t = false;
2463
2464 {
2465 gfc_intrinsic_sym* isym;
2466 gfc_symbol* sym;
2467
2468 sym = e->symtree->n.sym;
2469 if (!gfc_is_intrinsic (sym, 0, e->where)
2470 || (m = gfc_intrinsic_func_interface (e, 0)) != MATCH_YES)
2471 {
2472 gfc_error ("Function '%s' in initialization expression at %L "
2473 "must be an intrinsic function",
2474 e->symtree->n.sym->name, &e->where);
2475 break;
2476 }
2477
2478 if ((m = check_conversion (e)) == MATCH_NO
2479 && (m = check_inquiry (e, 1)) == MATCH_NO
2480 && (m = check_null (e)) == MATCH_NO
2481 && (m = check_transformational (e)) == MATCH_NO
2482 && (m = check_elemental (e)) == MATCH_NO)
2483 {
2484 gfc_error ("Intrinsic function '%s' at %L is not permitted "
2485 "in an initialization expression",
2486 e->symtree->n.sym->name, &e->where);
2487 m = MATCH_ERROR;
2488 }
2489
2490 if (m == MATCH_ERROR)
2491 return false;
2492
2493 /* Try to scalarize an elemental intrinsic function that has an
2494 array argument. */
2495 isym = gfc_find_function (e->symtree->n.sym->name);
2496 if (isym && isym->elemental
2497 && (t = scalarize_intrinsic_call(e)))
2498 break;
2499 }
2500
2501 if (m == MATCH_YES)
2502 t = gfc_simplify_expr (e, 0);
2503
2504 break;
2505
2506 case EXPR_VARIABLE:
2507 t = true;
2508
2509 if (gfc_check_iter_variable (e))
2510 break;
2511
2512 if (e->symtree->n.sym->attr.flavor == FL_PARAMETER)
2513 {
2514 /* A PARAMETER shall not be used to define itself, i.e.
2515 REAL, PARAMETER :: x = transfer(0, x)
2516 is invalid. */
2517 if (!e->symtree->n.sym->value)
2518 {
2519 gfc_error("PARAMETER '%s' is used at %L before its definition "
2520 "is complete", e->symtree->n.sym->name, &e->where);
2521 t = false;
2522 }
2523 else
2524 t = simplify_parameter_variable (e, 0);
2525
2526 break;
2527 }
2528
2529 if (gfc_in_match_data ())
2530 break;
2531
2532 t = false;
2533
2534 if (e->symtree->n.sym->as)
2535 {
2536 switch (e->symtree->n.sym->as->type)
2537 {
2538 case AS_ASSUMED_SIZE:
2539 gfc_error ("Assumed size array '%s' at %L is not permitted "
2540 "in an initialization expression",
2541 e->symtree->n.sym->name, &e->where);
2542 break;
2543
2544 case AS_ASSUMED_SHAPE:
2545 gfc_error ("Assumed shape array '%s' at %L is not permitted "
2546 "in an initialization expression",
2547 e->symtree->n.sym->name, &e->where);
2548 break;
2549
2550 case AS_DEFERRED:
2551 gfc_error ("Deferred array '%s' at %L is not permitted "
2552 "in an initialization expression",
2553 e->symtree->n.sym->name, &e->where);
2554 break;
2555
2556 case AS_EXPLICIT:
2557 gfc_error ("Array '%s' at %L is a variable, which does "
2558 "not reduce to a constant expression",
2559 e->symtree->n.sym->name, &e->where);
2560 break;
2561
2562 default:
2563 gcc_unreachable();
2564 }
2565 }
2566 else
2567 gfc_error ("Parameter '%s' at %L has not been declared or is "
2568 "a variable, which does not reduce to a constant "
2569 "expression", e->symtree->n.sym->name, &e->where);
2570
2571 break;
2572
2573 case EXPR_CONSTANT:
2574 case EXPR_NULL:
2575 t = true;
2576 break;
2577
2578 case EXPR_SUBSTRING:
2579 t = gfc_check_init_expr (e->ref->u.ss.start);
2580 if (!t)
2581 break;
2582
2583 t = gfc_check_init_expr (e->ref->u.ss.end);
2584 if (t)
2585 t = gfc_simplify_expr (e, 0);
2586
2587 break;
2588
2589 case EXPR_STRUCTURE:
2590 t = e->ts.is_iso_c ? true : false;
2591 if (t)
2592 break;
2593
2594 t = check_alloc_comp_init (e);
2595 if (!t)
2596 break;
2597
2598 t = gfc_check_constructor (e, gfc_check_init_expr);
2599 if (!t)
2600 break;
2601
2602 break;
2603
2604 case EXPR_ARRAY:
2605 t = gfc_check_constructor (e, gfc_check_init_expr);
2606 if (!t)
2607 break;
2608
2609 t = gfc_expand_constructor (e, true);
2610 if (!t)
2611 break;
2612
2613 t = gfc_check_constructor_type (e);
2614 break;
2615
2616 default:
2617 gfc_internal_error ("check_init_expr(): Unknown expression type");
2618 }
2619
2620 return t;
2621 }
2622
2623 /* Reduces a general expression to an initialization expression (a constant).
2624 This used to be part of gfc_match_init_expr.
2625 Note that this function doesn't free the given expression on false. */
2626
2627 bool
2628 gfc_reduce_init_expr (gfc_expr *expr)
2629 {
2630 bool t;
2631
2632 gfc_init_expr_flag = true;
2633 t = gfc_resolve_expr (expr);
2634 if (t)
2635 t = gfc_check_init_expr (expr);
2636 gfc_init_expr_flag = false;
2637
2638 if (!t)
2639 return false;
2640
2641 if (expr->expr_type == EXPR_ARRAY)
2642 {
2643 if (!gfc_check_constructor_type (expr))
2644 return false;
2645 if (!gfc_expand_constructor (expr, true))
2646 return false;
2647 }
2648
2649 return true;
2650 }
2651
2652
2653 /* Match an initialization expression. We work by first matching an
2654 expression, then reducing it to a constant. */
2655
2656 match
2657 gfc_match_init_expr (gfc_expr **result)
2658 {
2659 gfc_expr *expr;
2660 match m;
2661 bool t;
2662
2663 expr = NULL;
2664
2665 gfc_init_expr_flag = true;
2666
2667 m = gfc_match_expr (&expr);
2668 if (m != MATCH_YES)
2669 {
2670 gfc_init_expr_flag = false;
2671 return m;
2672 }
2673
2674 t = gfc_reduce_init_expr (expr);
2675 if (!t)
2676 {
2677 gfc_free_expr (expr);
2678 gfc_init_expr_flag = false;
2679 return MATCH_ERROR;
2680 }
2681
2682 *result = expr;
2683 gfc_init_expr_flag = false;
2684
2685 return MATCH_YES;
2686 }
2687
2688
2689 /* Given an actual argument list, test to see that each argument is a
2690 restricted expression and optionally if the expression type is
2691 integer or character. */
2692
2693 static bool
2694 restricted_args (gfc_actual_arglist *a)
2695 {
2696 for (; a; a = a->next)
2697 {
2698 if (!check_restricted (a->expr))
2699 return false;
2700 }
2701
2702 return true;
2703 }
2704
2705
2706 /************* Restricted/specification expressions *************/
2707
2708
2709 /* Make sure a non-intrinsic function is a specification function. */
2710
2711 static bool
2712 external_spec_function (gfc_expr *e)
2713 {
2714 gfc_symbol *f;
2715
2716 f = e->value.function.esym;
2717
2718 if (f->attr.proc == PROC_ST_FUNCTION)
2719 {
2720 gfc_error ("Specification function '%s' at %L cannot be a statement "
2721 "function", f->name, &e->where);
2722 return false;
2723 }
2724
2725 if (f->attr.proc == PROC_INTERNAL)
2726 {
2727 gfc_error ("Specification function '%s' at %L cannot be an internal "
2728 "function", f->name, &e->where);
2729 return false;
2730 }
2731
2732 if (!f->attr.pure && !f->attr.elemental)
2733 {
2734 gfc_error ("Specification function '%s' at %L must be PURE", f->name,
2735 &e->where);
2736 return false;
2737 }
2738
2739 if (f->attr.recursive)
2740 {
2741 gfc_error ("Specification function '%s' at %L cannot be RECURSIVE",
2742 f->name, &e->where);
2743 return false;
2744 }
2745
2746 return restricted_args (e->value.function.actual);
2747 }
2748
2749
2750 /* Check to see that a function reference to an intrinsic is a
2751 restricted expression. */
2752
2753 static bool
2754 restricted_intrinsic (gfc_expr *e)
2755 {
2756 /* TODO: Check constraints on inquiry functions. 7.1.6.2 (7). */
2757 if (check_inquiry (e, 0) == MATCH_YES)
2758 return true;
2759
2760 return restricted_args (e->value.function.actual);
2761 }
2762
2763
2764 /* Check the expressions of an actual arglist. Used by check_restricted. */
2765
2766 static bool
2767 check_arglist (gfc_actual_arglist* arg, bool (*checker) (gfc_expr*))
2768 {
2769 for (; arg; arg = arg->next)
2770 if (!checker (arg->expr))
2771 return false;
2772
2773 return true;
2774 }
2775
2776
2777 /* Check the subscription expressions of a reference chain with a checking
2778 function; used by check_restricted. */
2779
2780 static bool
2781 check_references (gfc_ref* ref, bool (*checker) (gfc_expr*))
2782 {
2783 int dim;
2784
2785 if (!ref)
2786 return true;
2787
2788 switch (ref->type)
2789 {
2790 case REF_ARRAY:
2791 for (dim = 0; dim != ref->u.ar.dimen; ++dim)
2792 {
2793 if (!checker (ref->u.ar.start[dim]))
2794 return false;
2795 if (!checker (ref->u.ar.end[dim]))
2796 return false;
2797 if (!checker (ref->u.ar.stride[dim]))
2798 return false;
2799 }
2800 break;
2801
2802 case REF_COMPONENT:
2803 /* Nothing needed, just proceed to next reference. */
2804 break;
2805
2806 case REF_SUBSTRING:
2807 if (!checker (ref->u.ss.start))
2808 return false;
2809 if (!checker (ref->u.ss.end))
2810 return false;
2811 break;
2812
2813 default:
2814 gcc_unreachable ();
2815 break;
2816 }
2817
2818 return check_references (ref->next, checker);
2819 }
2820
2821
2822 /* Verify that an expression is a restricted expression. Like its
2823 cousin check_init_expr(), an error message is generated if we
2824 return false. */
2825
2826 static bool
2827 check_restricted (gfc_expr *e)
2828 {
2829 gfc_symbol* sym;
2830 bool t;
2831
2832 if (e == NULL)
2833 return true;
2834
2835 switch (e->expr_type)
2836 {
2837 case EXPR_OP:
2838 t = check_intrinsic_op (e, check_restricted);
2839 if (t)
2840 t = gfc_simplify_expr (e, 0);
2841
2842 break;
2843
2844 case EXPR_FUNCTION:
2845 if (e->value.function.esym)
2846 {
2847 t = check_arglist (e->value.function.actual, &check_restricted);
2848 if (t)
2849 t = external_spec_function (e);
2850 }
2851 else
2852 {
2853 if (e->value.function.isym && e->value.function.isym->inquiry)
2854 t = true;
2855 else
2856 t = check_arglist (e->value.function.actual, &check_restricted);
2857
2858 if (t)
2859 t = restricted_intrinsic (e);
2860 }
2861 break;
2862
2863 case EXPR_VARIABLE:
2864 sym = e->symtree->n.sym;
2865 t = false;
2866
2867 /* If a dummy argument appears in a context that is valid for a
2868 restricted expression in an elemental procedure, it will have
2869 already been simplified away once we get here. Therefore we
2870 don't need to jump through hoops to distinguish valid from
2871 invalid cases. */
2872 if (sym->attr.dummy && sym->ns == gfc_current_ns
2873 && sym->ns->proc_name && sym->ns->proc_name->attr.elemental)
2874 {
2875 gfc_error ("Dummy argument '%s' not allowed in expression at %L",
2876 sym->name, &e->where);
2877 break;
2878 }
2879
2880 if (sym->attr.optional)
2881 {
2882 gfc_error ("Dummy argument '%s' at %L cannot be OPTIONAL",
2883 sym->name, &e->where);
2884 break;
2885 }
2886
2887 if (sym->attr.intent == INTENT_OUT)
2888 {
2889 gfc_error ("Dummy argument '%s' at %L cannot be INTENT(OUT)",
2890 sym->name, &e->where);
2891 break;
2892 }
2893
2894 /* Check reference chain if any. */
2895 if (!check_references (e->ref, &check_restricted))
2896 break;
2897
2898 /* gfc_is_formal_arg broadcasts that a formal argument list is being
2899 processed in resolve.c(resolve_formal_arglist). This is done so
2900 that host associated dummy array indices are accepted (PR23446).
2901 This mechanism also does the same for the specification expressions
2902 of array-valued functions. */
2903 if (e->error
2904 || sym->attr.in_common
2905 || sym->attr.use_assoc
2906 || sym->attr.dummy
2907 || sym->attr.implied_index
2908 || sym->attr.flavor == FL_PARAMETER
2909 || (sym->ns && sym->ns == gfc_current_ns->parent)
2910 || (sym->ns && gfc_current_ns->parent
2911 && sym->ns == gfc_current_ns->parent->parent)
2912 || (sym->ns->proc_name != NULL
2913 && sym->ns->proc_name->attr.flavor == FL_MODULE)
2914 || (gfc_is_formal_arg () && (sym->ns == gfc_current_ns)))
2915 {
2916 t = true;
2917 break;
2918 }
2919
2920 gfc_error ("Variable '%s' cannot appear in the expression at %L",
2921 sym->name, &e->where);
2922 /* Prevent a repetition of the error. */
2923 e->error = 1;
2924 break;
2925
2926 case EXPR_NULL:
2927 case EXPR_CONSTANT:
2928 t = true;
2929 break;
2930
2931 case EXPR_SUBSTRING:
2932 t = gfc_specification_expr (e->ref->u.ss.start);
2933 if (!t)
2934 break;
2935
2936 t = gfc_specification_expr (e->ref->u.ss.end);
2937 if (t)
2938 t = gfc_simplify_expr (e, 0);
2939
2940 break;
2941
2942 case EXPR_STRUCTURE:
2943 t = gfc_check_constructor (e, check_restricted);
2944 break;
2945
2946 case EXPR_ARRAY:
2947 t = gfc_check_constructor (e, check_restricted);
2948 break;
2949
2950 default:
2951 gfc_internal_error ("check_restricted(): Unknown expression type");
2952 }
2953
2954 return t;
2955 }
2956
2957
2958 /* Check to see that an expression is a specification expression. If
2959 we return false, an error has been generated. */
2960
2961 bool
2962 gfc_specification_expr (gfc_expr *e)
2963 {
2964 gfc_component *comp;
2965
2966 if (e == NULL)
2967 return true;
2968
2969 if (e->ts.type != BT_INTEGER)
2970 {
2971 gfc_error ("Expression at %L must be of INTEGER type, found %s",
2972 &e->where, gfc_basic_typename (e->ts.type));
2973 return false;
2974 }
2975
2976 comp = gfc_get_proc_ptr_comp (e);
2977 if (e->expr_type == EXPR_FUNCTION
2978 && !e->value.function.isym
2979 && !e->value.function.esym
2980 && !gfc_pure (e->symtree->n.sym)
2981 && (!comp || !comp->attr.pure))
2982 {
2983 gfc_error ("Function '%s' at %L must be PURE",
2984 e->symtree->n.sym->name, &e->where);
2985 /* Prevent repeat error messages. */
2986 e->symtree->n.sym->attr.pure = 1;
2987 return false;
2988 }
2989
2990 if (e->rank != 0)
2991 {
2992 gfc_error ("Expression at %L must be scalar", &e->where);
2993 return false;
2994 }
2995
2996 if (!gfc_simplify_expr (e, 0))
2997 return false;
2998
2999 return check_restricted (e);
3000 }
3001
3002
3003 /************** Expression conformance checks. *************/
3004
3005 /* Given two expressions, make sure that the arrays are conformable. */
3006
3007 bool
3008 gfc_check_conformance (gfc_expr *op1, gfc_expr *op2, const char *optype_msgid, ...)
3009 {
3010 int op1_flag, op2_flag, d;
3011 mpz_t op1_size, op2_size;
3012 bool t;
3013
3014 va_list argp;
3015 char buffer[240];
3016
3017 if (op1->rank == 0 || op2->rank == 0)
3018 return true;
3019
3020 va_start (argp, optype_msgid);
3021 vsnprintf (buffer, 240, optype_msgid, argp);
3022 va_end (argp);
3023
3024 if (op1->rank != op2->rank)
3025 {
3026 gfc_error ("Incompatible ranks in %s (%d and %d) at %L", _(buffer),
3027 op1->rank, op2->rank, &op1->where);
3028 return false;
3029 }
3030
3031 t = true;
3032
3033 for (d = 0; d < op1->rank; d++)
3034 {
3035 op1_flag = gfc_array_dimen_size(op1, d, &op1_size);
3036 op2_flag = gfc_array_dimen_size(op2, d, &op2_size);
3037
3038 if (op1_flag && op2_flag && mpz_cmp (op1_size, op2_size) != 0)
3039 {
3040 gfc_error ("Different shape for %s at %L on dimension %d "
3041 "(%d and %d)", _(buffer), &op1->where, d + 1,
3042 (int) mpz_get_si (op1_size),
3043 (int) mpz_get_si (op2_size));
3044
3045 t = false;
3046 }
3047
3048 if (op1_flag)
3049 mpz_clear (op1_size);
3050 if (op2_flag)
3051 mpz_clear (op2_size);
3052
3053 if (!t)
3054 return false;
3055 }
3056
3057 return true;
3058 }
3059
3060
3061 /* Given an assignable expression and an arbitrary expression, make
3062 sure that the assignment can take place. */
3063
3064 bool
3065 gfc_check_assign (gfc_expr *lvalue, gfc_expr *rvalue, int conform)
3066 {
3067 gfc_symbol *sym;
3068 gfc_ref *ref;
3069 int has_pointer;
3070
3071 sym = lvalue->symtree->n.sym;
3072
3073 /* See if this is the component or subcomponent of a pointer. */
3074 has_pointer = sym->attr.pointer;
3075 for (ref = lvalue->ref; ref; ref = ref->next)
3076 if (ref->type == REF_COMPONENT && ref->u.c.component->attr.pointer)
3077 {
3078 has_pointer = 1;
3079 break;
3080 }
3081
3082 /* 12.5.2.2, Note 12.26: The result variable is very similar to any other
3083 variable local to a function subprogram. Its existence begins when
3084 execution of the function is initiated and ends when execution of the
3085 function is terminated...
3086 Therefore, the left hand side is no longer a variable, when it is: */
3087 if (sym->attr.flavor == FL_PROCEDURE && sym->attr.proc != PROC_ST_FUNCTION
3088 && !sym->attr.external)
3089 {
3090 bool bad_proc;
3091 bad_proc = false;
3092
3093 /* (i) Use associated; */
3094 if (sym->attr.use_assoc)
3095 bad_proc = true;
3096
3097 /* (ii) The assignment is in the main program; or */
3098 if (gfc_current_ns->proc_name->attr.is_main_program)
3099 bad_proc = true;
3100
3101 /* (iii) A module or internal procedure... */
3102 if ((gfc_current_ns->proc_name->attr.proc == PROC_INTERNAL
3103 || gfc_current_ns->proc_name->attr.proc == PROC_MODULE)
3104 && gfc_current_ns->parent
3105 && (!(gfc_current_ns->parent->proc_name->attr.function
3106 || gfc_current_ns->parent->proc_name->attr.subroutine)
3107 || gfc_current_ns->parent->proc_name->attr.is_main_program))
3108 {
3109 /* ... that is not a function... */
3110 if (!gfc_current_ns->proc_name->attr.function)
3111 bad_proc = true;
3112
3113 /* ... or is not an entry and has a different name. */
3114 if (!sym->attr.entry && sym->name != gfc_current_ns->proc_name->name)
3115 bad_proc = true;
3116 }
3117
3118 /* (iv) Host associated and not the function symbol or the
3119 parent result. This picks up sibling references, which
3120 cannot be entries. */
3121 if (!sym->attr.entry
3122 && sym->ns == gfc_current_ns->parent
3123 && sym != gfc_current_ns->proc_name
3124 && sym != gfc_current_ns->parent->proc_name->result)
3125 bad_proc = true;
3126
3127 if (bad_proc)
3128 {
3129 gfc_error ("'%s' at %L is not a VALUE", sym->name, &lvalue->where);
3130 return false;
3131 }
3132 }
3133
3134 if (rvalue->rank != 0 && lvalue->rank != rvalue->rank)
3135 {
3136 gfc_error ("Incompatible ranks %d and %d in assignment at %L",
3137 lvalue->rank, rvalue->rank, &lvalue->where);
3138 return false;
3139 }
3140
3141 if (lvalue->ts.type == BT_UNKNOWN)
3142 {
3143 gfc_error ("Variable type is UNKNOWN in assignment at %L",
3144 &lvalue->where);
3145 return false;
3146 }
3147
3148 if (rvalue->expr_type == EXPR_NULL)
3149 {
3150 if (has_pointer && (ref == NULL || ref->next == NULL)
3151 && lvalue->symtree->n.sym->attr.data)
3152 return true;
3153 else
3154 {
3155 gfc_error ("NULL appears on right-hand side in assignment at %L",
3156 &rvalue->where);
3157 return false;
3158 }
3159 }
3160
3161 /* This is possibly a typo: x = f() instead of x => f(). */
3162 if (gfc_option.warn_surprising
3163 && rvalue->expr_type == EXPR_FUNCTION && gfc_expr_attr (rvalue).pointer)
3164 gfc_warning ("POINTER-valued function appears on right-hand side of "
3165 "assignment at %L", &rvalue->where);
3166
3167 /* Check size of array assignments. */
3168 if (lvalue->rank != 0 && rvalue->rank != 0
3169 && !gfc_check_conformance (lvalue, rvalue, "array assignment"))
3170 return false;
3171
3172 if (rvalue->is_boz && lvalue->ts.type != BT_INTEGER
3173 && lvalue->symtree->n.sym->attr.data
3174 && !gfc_notify_std (GFC_STD_GNU, "BOZ literal at %L used to "
3175 "initialize non-integer variable '%s'",
3176 &rvalue->where, lvalue->symtree->n.sym->name))
3177 return false;
3178 else if (rvalue->is_boz && !lvalue->symtree->n.sym->attr.data
3179 && !gfc_notify_std (GFC_STD_GNU, "BOZ literal at %L outside "
3180 "a DATA statement and outside INT/REAL/DBLE/CMPLX",
3181 &rvalue->where))
3182 return false;
3183
3184 /* Handle the case of a BOZ literal on the RHS. */
3185 if (rvalue->is_boz && lvalue->ts.type != BT_INTEGER)
3186 {
3187 int rc;
3188 if (gfc_option.warn_surprising)
3189 gfc_warning ("BOZ literal at %L is bitwise transferred "
3190 "non-integer symbol '%s'", &rvalue->where,
3191 lvalue->symtree->n.sym->name);
3192 if (!gfc_convert_boz (rvalue, &lvalue->ts))
3193 return false;
3194 if ((rc = gfc_range_check (rvalue)) != ARITH_OK)
3195 {
3196 if (rc == ARITH_UNDERFLOW)
3197 gfc_error ("Arithmetic underflow of bit-wise transferred BOZ at %L"
3198 ". This check can be disabled with the option "
3199 "-fno-range-check", &rvalue->where);
3200 else if (rc == ARITH_OVERFLOW)
3201 gfc_error ("Arithmetic overflow of bit-wise transferred BOZ at %L"
3202 ". This check can be disabled with the option "
3203 "-fno-range-check", &rvalue->where);
3204 else if (rc == ARITH_NAN)
3205 gfc_error ("Arithmetic NaN of bit-wise transferred BOZ at %L"
3206 ". This check can be disabled with the option "
3207 "-fno-range-check", &rvalue->where);
3208 return false;
3209 }
3210 }
3211
3212 /* Warn about type-changing conversions for REAL or COMPLEX constants.
3213 If lvalue and rvalue are mixed REAL and complex, gfc_compare_types
3214 will warn anyway, so there is no need to to so here. */
3215
3216 if (rvalue->expr_type == EXPR_CONSTANT && lvalue->ts.type == rvalue->ts.type
3217 && (lvalue->ts.type == BT_REAL || lvalue->ts.type == BT_COMPLEX))
3218 {
3219 if (lvalue->ts.kind < rvalue->ts.kind && gfc_option.gfc_warn_conversion)
3220 {
3221 /* As a special bonus, don't warn about REAL rvalues which are not
3222 changed by the conversion if -Wconversion is specified. */
3223 if (rvalue->ts.type == BT_REAL && mpfr_number_p (rvalue->value.real))
3224 {
3225 /* Calculate the difference between the constant and the rounded
3226 value and check it against zero. */
3227 mpfr_t rv, diff;
3228 gfc_set_model_kind (lvalue->ts.kind);
3229 mpfr_init (rv);
3230 gfc_set_model_kind (rvalue->ts.kind);
3231 mpfr_init (diff);
3232
3233 mpfr_set (rv, rvalue->value.real, GFC_RND_MODE);
3234 mpfr_sub (diff, rv, rvalue->value.real, GFC_RND_MODE);
3235
3236 if (!mpfr_zero_p (diff))
3237 gfc_warning ("Change of value in conversion from "
3238 " %s to %s at %L", gfc_typename (&rvalue->ts),
3239 gfc_typename (&lvalue->ts), &rvalue->where);
3240
3241 mpfr_clear (rv);
3242 mpfr_clear (diff);
3243 }
3244 else
3245 gfc_warning ("Possible change of value in conversion from %s "
3246 "to %s at %L",gfc_typename (&rvalue->ts),
3247 gfc_typename (&lvalue->ts), &rvalue->where);
3248
3249 }
3250 else if (gfc_option.warn_conversion_extra
3251 && lvalue->ts.kind > rvalue->ts.kind)
3252 {
3253 gfc_warning ("Conversion from %s to %s at %L",
3254 gfc_typename (&rvalue->ts),
3255 gfc_typename (&lvalue->ts), &rvalue->where);
3256 }
3257 }
3258
3259 if (gfc_compare_types (&lvalue->ts, &rvalue->ts))
3260 return true;
3261
3262 /* Only DATA Statements come here. */
3263 if (!conform)
3264 {
3265 /* Numeric can be converted to any other numeric. And Hollerith can be
3266 converted to any other type. */
3267 if ((gfc_numeric_ts (&lvalue->ts) && gfc_numeric_ts (&rvalue->ts))
3268 || rvalue->ts.type == BT_HOLLERITH)
3269 return true;
3270
3271 if (lvalue->ts.type == BT_LOGICAL && rvalue->ts.type == BT_LOGICAL)
3272 return true;
3273
3274 gfc_error ("Incompatible types in DATA statement at %L; attempted "
3275 "conversion of %s to %s", &lvalue->where,
3276 gfc_typename (&rvalue->ts), gfc_typename (&lvalue->ts));
3277
3278 return false;
3279 }
3280
3281 /* Assignment is the only case where character variables of different
3282 kind values can be converted into one another. */
3283 if (lvalue->ts.type == BT_CHARACTER && rvalue->ts.type == BT_CHARACTER)
3284 {
3285 if (lvalue->ts.kind != rvalue->ts.kind)
3286 gfc_convert_chartype (rvalue, &lvalue->ts);
3287
3288 return true;
3289 }
3290
3291 return gfc_convert_type (rvalue, &lvalue->ts, 1);
3292 }
3293
3294
3295 /* Check that a pointer assignment is OK. We first check lvalue, and
3296 we only check rvalue if it's not an assignment to NULL() or a
3297 NULLIFY statement. */
3298
3299 bool
3300 gfc_check_pointer_assign (gfc_expr *lvalue, gfc_expr *rvalue)
3301 {
3302 symbol_attribute attr, lhs_attr;
3303 gfc_ref *ref;
3304 bool is_pure, is_implicit_pure, rank_remap;
3305 int proc_pointer;
3306
3307 lhs_attr = gfc_expr_attr (lvalue);
3308 if (lvalue->ts.type == BT_UNKNOWN && !lhs_attr.proc_pointer)
3309 {
3310 gfc_error ("Pointer assignment target is not a POINTER at %L",
3311 &lvalue->where);
3312 return false;
3313 }
3314
3315 if (lhs_attr.flavor == FL_PROCEDURE && lhs_attr.use_assoc
3316 && !lhs_attr.proc_pointer)
3317 {
3318 gfc_error ("'%s' in the pointer assignment at %L cannot be an "
3319 "l-value since it is a procedure",
3320 lvalue->symtree->n.sym->name, &lvalue->where);
3321 return false;
3322 }
3323
3324 proc_pointer = lvalue->symtree->n.sym->attr.proc_pointer;
3325
3326 rank_remap = false;
3327 for (ref = lvalue->ref; ref; ref = ref->next)
3328 {
3329 if (ref->type == REF_COMPONENT)
3330 proc_pointer = ref->u.c.component->attr.proc_pointer;
3331
3332 if (ref->type == REF_ARRAY && ref->next == NULL)
3333 {
3334 int dim;
3335
3336 if (ref->u.ar.type == AR_FULL)
3337 break;
3338
3339 if (ref->u.ar.type != AR_SECTION)
3340 {
3341 gfc_error ("Expected bounds specification for '%s' at %L",
3342 lvalue->symtree->n.sym->name, &lvalue->where);
3343 return false;
3344 }
3345
3346 if (!gfc_notify_std (GFC_STD_F2003, "Bounds specification "
3347 "for '%s' in pointer assignment at %L",
3348 lvalue->symtree->n.sym->name, &lvalue->where))
3349 return false;
3350
3351 /* When bounds are given, all lbounds are necessary and either all
3352 or none of the upper bounds; no strides are allowed. If the
3353 upper bounds are present, we may do rank remapping. */
3354 for (dim = 0; dim < ref->u.ar.dimen; ++dim)
3355 {
3356 if (!ref->u.ar.start[dim]
3357 || ref->u.ar.dimen_type[dim] != DIMEN_RANGE)
3358 {
3359 gfc_error ("Lower bound has to be present at %L",
3360 &lvalue->where);
3361 return false;
3362 }
3363 if (ref->u.ar.stride[dim])
3364 {
3365 gfc_error ("Stride must not be present at %L",
3366 &lvalue->where);
3367 return false;
3368 }
3369
3370 if (dim == 0)
3371 rank_remap = (ref->u.ar.end[dim] != NULL);
3372 else
3373 {
3374 if ((rank_remap && !ref->u.ar.end[dim])
3375 || (!rank_remap && ref->u.ar.end[dim]))
3376 {
3377 gfc_error ("Either all or none of the upper bounds"
3378 " must be specified at %L", &lvalue->where);
3379 return false;
3380 }
3381 }
3382 }
3383 }
3384 }
3385
3386 is_pure = gfc_pure (NULL);
3387 is_implicit_pure = gfc_implicit_pure (NULL);
3388
3389 /* If rvalue is a NULL() or NULLIFY, we're done. Otherwise the type,
3390 kind, etc for lvalue and rvalue must match, and rvalue must be a
3391 pure variable if we're in a pure function. */
3392 if (rvalue->expr_type == EXPR_NULL && rvalue->ts.type == BT_UNKNOWN)
3393 return true;
3394
3395 /* F2008, C723 (pointer) and C726 (proc-pointer); for PURE also C1283. */
3396 if (lvalue->expr_type == EXPR_VARIABLE
3397 && gfc_is_coindexed (lvalue))
3398 {
3399 gfc_ref *ref;
3400 for (ref = lvalue->ref; ref; ref = ref->next)
3401 if (ref->type == REF_ARRAY && ref->u.ar.codimen)
3402 {
3403 gfc_error ("Pointer object at %L shall not have a coindex",
3404 &lvalue->where);
3405 return false;
3406 }
3407 }
3408
3409 /* Checks on rvalue for procedure pointer assignments. */
3410 if (proc_pointer)
3411 {
3412 char err[200];
3413 gfc_symbol *s1,*s2;
3414 gfc_component *comp;
3415 const char *name;
3416
3417 attr = gfc_expr_attr (rvalue);
3418 if (!((rvalue->expr_type == EXPR_NULL)
3419 || (rvalue->expr_type == EXPR_FUNCTION && attr.proc_pointer)
3420 || (rvalue->expr_type == EXPR_VARIABLE && attr.proc_pointer)
3421 || (rvalue->expr_type == EXPR_VARIABLE
3422 && attr.flavor == FL_PROCEDURE)))
3423 {
3424 gfc_error ("Invalid procedure pointer assignment at %L",
3425 &rvalue->where);
3426 return false;
3427 }
3428 if (rvalue->expr_type == EXPR_VARIABLE && !attr.proc_pointer)
3429 {
3430 /* Check for intrinsics. */
3431 gfc_symbol *sym = rvalue->symtree->n.sym;
3432 if (!sym->attr.intrinsic
3433 && (gfc_is_intrinsic (sym, 0, sym->declared_at)
3434 || gfc_is_intrinsic (sym, 1, sym->declared_at)))
3435 {
3436 sym->attr.intrinsic = 1;
3437 gfc_resolve_intrinsic (sym, &rvalue->where);
3438 attr = gfc_expr_attr (rvalue);
3439 }
3440 /* Check for result of embracing function. */
3441 if (sym->attr.function && sym->result == sym)
3442 {
3443 gfc_namespace *ns;
3444
3445 for (ns = gfc_current_ns; ns; ns = ns->parent)
3446 if (sym == ns->proc_name)
3447 {
3448 gfc_error ("Function result '%s' is invalid as proc-target "
3449 "in procedure pointer assignment at %L",
3450 sym->name, &rvalue->where);
3451 return false;
3452 }
3453 }
3454 }
3455 if (attr.abstract)
3456 {
3457 gfc_error ("Abstract interface '%s' is invalid "
3458 "in procedure pointer assignment at %L",
3459 rvalue->symtree->name, &rvalue->where);
3460 return false;
3461 }
3462 /* Check for F08:C729. */
3463 if (attr.flavor == FL_PROCEDURE)
3464 {
3465 if (attr.proc == PROC_ST_FUNCTION)
3466 {
3467 gfc_error ("Statement function '%s' is invalid "
3468 "in procedure pointer assignment at %L",
3469 rvalue->symtree->name, &rvalue->where);
3470 return false;
3471 }
3472 if (attr.proc == PROC_INTERNAL &&
3473 !gfc_notify_std(GFC_STD_F2008, "Internal procedure '%s' "
3474 "is invalid in procedure pointer assignment "
3475 "at %L", rvalue->symtree->name, &rvalue->where))
3476 return false;
3477 if (attr.intrinsic && gfc_intrinsic_actual_ok (rvalue->symtree->name,
3478 attr.subroutine) == 0)
3479 {
3480 gfc_error ("Intrinsic '%s' at %L is invalid in procedure pointer "
3481 "assignment", rvalue->symtree->name, &rvalue->where);
3482 return false;
3483 }
3484 }
3485 /* Check for F08:C730. */
3486 if (attr.elemental && !attr.intrinsic)
3487 {
3488 gfc_error ("Nonintrinsic elemental procedure '%s' is invalid "
3489 "in procedure pointer assignment at %L",
3490 rvalue->symtree->name, &rvalue->where);
3491 return false;
3492 }
3493
3494 /* Ensure that the calling convention is the same. As other attributes
3495 such as DLLEXPORT may differ, one explicitly only tests for the
3496 calling conventions. */
3497 if (rvalue->expr_type == EXPR_VARIABLE
3498 && lvalue->symtree->n.sym->attr.ext_attr
3499 != rvalue->symtree->n.sym->attr.ext_attr)
3500 {
3501 symbol_attribute calls;
3502
3503 calls.ext_attr = 0;
3504 gfc_add_ext_attribute (&calls, EXT_ATTR_CDECL, NULL);
3505 gfc_add_ext_attribute (&calls, EXT_ATTR_STDCALL, NULL);
3506 gfc_add_ext_attribute (&calls, EXT_ATTR_FASTCALL, NULL);
3507
3508 if ((calls.ext_attr & lvalue->symtree->n.sym->attr.ext_attr)
3509 != (calls.ext_attr & rvalue->symtree->n.sym->attr.ext_attr))
3510 {
3511 gfc_error ("Mismatch in the procedure pointer assignment "
3512 "at %L: mismatch in the calling convention",
3513 &rvalue->where);
3514 return false;
3515 }
3516 }
3517
3518 comp = gfc_get_proc_ptr_comp (lvalue);
3519 if (comp)
3520 s1 = comp->ts.interface;
3521 else
3522 {
3523 s1 = lvalue->symtree->n.sym;
3524 if (s1->ts.interface)
3525 s1 = s1->ts.interface;
3526 }
3527
3528 comp = gfc_get_proc_ptr_comp (rvalue);
3529 if (comp)
3530 {
3531 if (rvalue->expr_type == EXPR_FUNCTION)
3532 {
3533 s2 = comp->ts.interface->result;
3534 name = s2->name;
3535 }
3536 else
3537 {
3538 s2 = comp->ts.interface;
3539 name = comp->name;
3540 }
3541 }
3542 else if (rvalue->expr_type == EXPR_FUNCTION)
3543 {
3544 s2 = rvalue->symtree->n.sym->result;
3545 name = s2->name;
3546 }
3547 else
3548 {
3549 s2 = rvalue->symtree->n.sym;
3550 name = s2->name;
3551 }
3552
3553 if (s2 && s2->attr.proc_pointer && s2->ts.interface)
3554 s2 = s2->ts.interface;
3555
3556 if (s1 == s2 || !s1 || !s2)
3557 return true;
3558
3559 if (!gfc_compare_interfaces (s1, s2, name, 0, 1,
3560 err, sizeof(err), NULL, NULL))
3561 {
3562 gfc_error ("Interface mismatch in procedure pointer assignment "
3563 "at %L: %s", &rvalue->where, err);
3564 return false;
3565 }
3566
3567 if (!gfc_compare_interfaces (s2, s1, name, 0, 1,
3568 err, sizeof(err), NULL, NULL))
3569 {
3570 gfc_error ("Interface mismatch in procedure pointer assignment "
3571 "at %L: %s", &rvalue->where, err);
3572 return false;
3573 }
3574
3575 return true;
3576 }
3577
3578 if (!gfc_compare_types (&lvalue->ts, &rvalue->ts))
3579 {
3580 /* Check for F03:C717. */
3581 if (UNLIMITED_POLY (rvalue)
3582 && !(UNLIMITED_POLY (lvalue)
3583 || (lvalue->ts.type == BT_DERIVED
3584 && (lvalue->ts.u.derived->attr.is_bind_c
3585 || lvalue->ts.u.derived->attr.sequence))))
3586 gfc_error ("Data-pointer-object &L must be unlimited "
3587 "polymorphic, a sequence derived type or of a "
3588 "type with the BIND attribute assignment at %L "
3589 "to be compatible with an unlimited polymorphic "
3590 "target", &lvalue->where);
3591 else
3592 gfc_error ("Different types in pointer assignment at %L; "
3593 "attempted assignment of %s to %s", &lvalue->where,
3594 gfc_typename (&rvalue->ts),
3595 gfc_typename (&lvalue->ts));
3596 return false;
3597 }
3598
3599 if (lvalue->ts.type != BT_CLASS && lvalue->ts.kind != rvalue->ts.kind)
3600 {
3601 gfc_error ("Different kind type parameters in pointer "
3602 "assignment at %L", &lvalue->where);
3603 return false;
3604 }
3605
3606 if (lvalue->rank != rvalue->rank && !rank_remap)
3607 {
3608 gfc_error ("Different ranks in pointer assignment at %L", &lvalue->where);
3609 return false;
3610 }
3611
3612 /* Make sure the vtab is present. */
3613 if (lvalue->ts.type == BT_CLASS && rvalue->ts.type == BT_DERIVED)
3614 gfc_find_derived_vtab (rvalue->ts.u.derived);
3615 else if (UNLIMITED_POLY (lvalue) && !UNLIMITED_POLY (rvalue))
3616 gfc_find_intrinsic_vtab (&rvalue->ts);
3617
3618 /* Check rank remapping. */
3619 if (rank_remap)
3620 {
3621 mpz_t lsize, rsize;
3622
3623 /* If this can be determined, check that the target must be at least as
3624 large as the pointer assigned to it is. */
3625 if (gfc_array_size (lvalue, &lsize)
3626 && gfc_array_size (rvalue, &rsize)
3627 && mpz_cmp (rsize, lsize) < 0)
3628 {
3629 gfc_error ("Rank remapping target is smaller than size of the"
3630 " pointer (%ld < %ld) at %L",
3631 mpz_get_si (rsize), mpz_get_si (lsize),
3632 &lvalue->where);
3633 return false;
3634 }
3635
3636 /* The target must be either rank one or it must be simply contiguous
3637 and F2008 must be allowed. */
3638 if (rvalue->rank != 1)
3639 {
3640 if (!gfc_is_simply_contiguous (rvalue, true))
3641 {
3642 gfc_error ("Rank remapping target must be rank 1 or"
3643 " simply contiguous at %L", &rvalue->where);
3644 return false;
3645 }
3646 if (!gfc_notify_std (GFC_STD_F2008, "Rank remapping target is not "
3647 "rank 1 at %L", &rvalue->where))
3648 return false;
3649 }
3650 }
3651
3652 /* Now punt if we are dealing with a NULLIFY(X) or X = NULL(X). */
3653 if (rvalue->expr_type == EXPR_NULL)
3654 return true;
3655
3656 if (lvalue->ts.type == BT_CHARACTER)
3657 {
3658 bool t = gfc_check_same_strlen (lvalue, rvalue, "pointer assignment");
3659 if (!t)
3660 return false;
3661 }
3662
3663 if (rvalue->expr_type == EXPR_VARIABLE && is_subref_array (rvalue))
3664 lvalue->symtree->n.sym->attr.subref_array_pointer = 1;
3665
3666 attr = gfc_expr_attr (rvalue);
3667
3668 if (rvalue->expr_type == EXPR_FUNCTION && !attr.pointer)
3669 {
3670 gfc_error ("Target expression in pointer assignment "
3671 "at %L must deliver a pointer result",
3672 &rvalue->where);
3673 return false;
3674 }
3675
3676 if (!attr.target && !attr.pointer)
3677 {
3678 gfc_error ("Pointer assignment target is neither TARGET "
3679 "nor POINTER at %L", &rvalue->where);
3680 return false;
3681 }
3682
3683 if (is_pure && gfc_impure_variable (rvalue->symtree->n.sym))
3684 {
3685 gfc_error ("Bad target in pointer assignment in PURE "
3686 "procedure at %L", &rvalue->where);
3687 }
3688
3689 if (is_implicit_pure && gfc_impure_variable (rvalue->symtree->n.sym))
3690 gfc_current_ns->proc_name->attr.implicit_pure = 0;
3691
3692
3693 if (gfc_has_vector_index (rvalue))
3694 {
3695 gfc_error ("Pointer assignment with vector subscript "
3696 "on rhs at %L", &rvalue->where);
3697 return false;
3698 }
3699
3700 if (attr.is_protected && attr.use_assoc
3701 && !(attr.pointer || attr.proc_pointer))
3702 {
3703 gfc_error ("Pointer assignment target has PROTECTED "
3704 "attribute at %L", &rvalue->where);
3705 return false;
3706 }
3707
3708 /* F2008, C725. For PURE also C1283. */
3709 if (rvalue->expr_type == EXPR_VARIABLE
3710 && gfc_is_coindexed (rvalue))
3711 {
3712 gfc_ref *ref;
3713 for (ref = rvalue->ref; ref; ref = ref->next)
3714 if (ref->type == REF_ARRAY && ref->u.ar.codimen)
3715 {
3716 gfc_error ("Data target at %L shall not have a coindex",
3717 &rvalue->where);
3718 return false;
3719 }
3720 }
3721
3722 /* Warn if it is the LHS pointer may lives longer than the RHS target. */
3723 if (gfc_option.warn_target_lifetime
3724 && rvalue->expr_type == EXPR_VARIABLE
3725 && !rvalue->symtree->n.sym->attr.save
3726 && !attr.pointer && !rvalue->symtree->n.sym->attr.host_assoc
3727 && !rvalue->symtree->n.sym->attr.in_common
3728 && !rvalue->symtree->n.sym->attr.use_assoc
3729 && !rvalue->symtree->n.sym->attr.dummy)
3730 {
3731 bool warn;
3732 gfc_namespace *ns;
3733
3734 warn = lvalue->symtree->n.sym->attr.dummy
3735 || lvalue->symtree->n.sym->attr.result
3736 || lvalue->symtree->n.sym->attr.function
3737 || (lvalue->symtree->n.sym->attr.host_assoc
3738 && lvalue->symtree->n.sym->ns
3739 != rvalue->symtree->n.sym->ns)
3740 || lvalue->symtree->n.sym->attr.use_assoc
3741 || lvalue->symtree->n.sym->attr.in_common;
3742
3743 if (rvalue->symtree->n.sym->ns->proc_name
3744 && rvalue->symtree->n.sym->ns->proc_name->attr.flavor != FL_PROCEDURE
3745 && rvalue->symtree->n.sym->ns->proc_name->attr.flavor != FL_PROGRAM)
3746 for (ns = rvalue->symtree->n.sym->ns;
3747 ns && ns->proc_name && ns->proc_name->attr.flavor != FL_PROCEDURE;
3748 ns = ns->parent)
3749 if (ns->parent == lvalue->symtree->n.sym->ns)
3750 warn = true;
3751
3752 if (warn)
3753 gfc_warning ("Pointer at %L in pointer assignment might outlive the "
3754 "pointer target", &lvalue->where);
3755 }
3756
3757 return true;
3758 }
3759
3760
3761 /* Relative of gfc_check_assign() except that the lvalue is a single
3762 symbol. Used for initialization assignments. */
3763
3764 bool
3765 gfc_check_assign_symbol (gfc_symbol *sym, gfc_component *comp, gfc_expr *rvalue)
3766 {
3767 gfc_expr lvalue;
3768 bool r;
3769 bool pointer, proc_pointer;
3770
3771 memset (&lvalue, '\0', sizeof (gfc_expr));
3772
3773 lvalue.expr_type = EXPR_VARIABLE;
3774 lvalue.ts = sym->ts;
3775 if (sym->as)
3776 lvalue.rank = sym->as->rank;
3777 lvalue.symtree = XCNEW (gfc_symtree);
3778 lvalue.symtree->n.sym = sym;
3779 lvalue.where = sym->declared_at;
3780
3781 if (comp)
3782 {
3783 lvalue.ref = gfc_get_ref ();
3784 lvalue.ref->type = REF_COMPONENT;
3785 lvalue.ref->u.c.component = comp;
3786 lvalue.ref->u.c.sym = sym;
3787 lvalue.ts = comp->ts;
3788 lvalue.rank = comp->as ? comp->as->rank : 0;
3789 lvalue.where = comp->loc;
3790 pointer = comp->ts.type == BT_CLASS && CLASS_DATA (comp)
3791 ? CLASS_DATA (comp)->attr.class_pointer : comp->attr.pointer;
3792 proc_pointer = comp->attr.proc_pointer;
3793 }
3794 else
3795 {
3796 pointer = sym->ts.type == BT_CLASS && CLASS_DATA (sym)
3797 ? CLASS_DATA (sym)->attr.class_pointer : sym->attr.pointer;
3798 proc_pointer = sym->attr.proc_pointer;
3799 }
3800
3801 if (pointer || proc_pointer)
3802 r = gfc_check_pointer_assign (&lvalue, rvalue);
3803 else
3804 r = gfc_check_assign (&lvalue, rvalue, 1);
3805
3806 free (lvalue.symtree);
3807
3808 if (!r)
3809 return r;
3810
3811 if (pointer && rvalue->expr_type != EXPR_NULL)
3812 {
3813 /* F08:C461. Additional checks for pointer initialization. */
3814 symbol_attribute attr;
3815 attr = gfc_expr_attr (rvalue);
3816 if (attr.allocatable)
3817 {
3818 gfc_error ("Pointer initialization target at %L "
3819 "must not be ALLOCATABLE", &rvalue->where);
3820 return false;
3821 }
3822 if (!attr.target || attr.pointer)
3823 {
3824 gfc_error ("Pointer initialization target at %L "
3825 "must have the TARGET attribute", &rvalue->where);
3826 return false;
3827 }
3828
3829 if (!attr.save && rvalue->expr_type == EXPR_VARIABLE
3830 && rvalue->symtree->n.sym->ns->proc_name
3831 && rvalue->symtree->n.sym->ns->proc_name->attr.is_main_program)
3832 {
3833 rvalue->symtree->n.sym->ns->proc_name->attr.save = SAVE_IMPLICIT;
3834 attr.save = SAVE_IMPLICIT;
3835 }
3836
3837 if (!attr.save)
3838 {
3839 gfc_error ("Pointer initialization target at %L "
3840 "must have the SAVE attribute", &rvalue->where);
3841 return false;
3842 }
3843 }
3844
3845 if (proc_pointer && rvalue->expr_type != EXPR_NULL)
3846 {
3847 /* F08:C1220. Additional checks for procedure pointer initialization. */
3848 symbol_attribute attr = gfc_expr_attr (rvalue);
3849 if (attr.proc_pointer)
3850 {
3851 gfc_error ("Procedure pointer initialization target at %L "
3852 "may not be a procedure pointer", &rvalue->where);
3853 return false;
3854 }
3855 }
3856
3857 return true;
3858 }
3859
3860
3861 /* Check for default initializer; sym->value is not enough
3862 as it is also set for EXPR_NULL of allocatables. */
3863
3864 bool
3865 gfc_has_default_initializer (gfc_symbol *der)
3866 {
3867 gfc_component *c;
3868
3869 gcc_assert (der->attr.flavor == FL_DERIVED);
3870 for (c = der->components; c; c = c->next)
3871 if (c->ts.type == BT_DERIVED)
3872 {
3873 if (!c->attr.pointer
3874 && gfc_has_default_initializer (c->ts.u.derived))
3875 return true;
3876 if (c->attr.pointer && c->initializer)
3877 return true;
3878 }
3879 else
3880 {
3881 if (c->initializer)
3882 return true;
3883 }
3884
3885 return false;
3886 }
3887
3888
3889 /* Get an expression for a default initializer. */
3890
3891 gfc_expr *
3892 gfc_default_initializer (gfc_typespec *ts)
3893 {
3894 gfc_expr *init;
3895 gfc_component *comp;
3896
3897 /* See if we have a default initializer in this, but not in nested
3898 types (otherwise we could use gfc_has_default_initializer()). */
3899 for (comp = ts->u.derived->components; comp; comp = comp->next)
3900 if (comp->initializer || comp->attr.allocatable
3901 || (comp->ts.type == BT_CLASS && CLASS_DATA (comp)
3902 && CLASS_DATA (comp)->attr.allocatable))
3903 break;
3904
3905 if (!comp)
3906 return NULL;
3907
3908 init = gfc_get_structure_constructor_expr (ts->type, ts->kind,
3909 &ts->u.derived->declared_at);
3910 init->ts = *ts;
3911
3912 for (comp = ts->u.derived->components; comp; comp = comp->next)
3913 {
3914 gfc_constructor *ctor = gfc_constructor_get();
3915
3916 if (comp->initializer)
3917 {
3918 ctor->expr = gfc_copy_expr (comp->initializer);
3919 if ((comp->ts.type != comp->initializer->ts.type
3920 || comp->ts.kind != comp->initializer->ts.kind)
3921 && !comp->attr.pointer && !comp->attr.proc_pointer)
3922 gfc_convert_type_warn (ctor->expr, &comp->ts, 2, false);
3923 }
3924
3925 if (comp->attr.allocatable
3926 || (comp->ts.type == BT_CLASS && CLASS_DATA (comp)->attr.allocatable))
3927 {
3928 ctor->expr = gfc_get_expr ();
3929 ctor->expr->expr_type = EXPR_NULL;
3930 ctor->expr->ts = comp->ts;
3931 }
3932
3933 gfc_constructor_append (&init->value.constructor, ctor);
3934 }
3935
3936 return init;
3937 }
3938
3939
3940 /* Given a symbol, create an expression node with that symbol as a
3941 variable. If the symbol is array valued, setup a reference of the
3942 whole array. */
3943
3944 gfc_expr *
3945 gfc_get_variable_expr (gfc_symtree *var)
3946 {
3947 gfc_expr *e;
3948
3949 e = gfc_get_expr ();
3950 e->expr_type = EXPR_VARIABLE;
3951 e->symtree = var;
3952 e->ts = var->n.sym->ts;
3953
3954 if ((var->n.sym->as != NULL && var->n.sym->ts.type != BT_CLASS)
3955 || (var->n.sym->ts.type == BT_CLASS && CLASS_DATA (var->n.sym)
3956 && CLASS_DATA (var->n.sym)->as))
3957 {
3958 e->rank = var->n.sym->ts.type == BT_CLASS
3959 ? CLASS_DATA (var->n.sym)->as->rank : var->n.sym->as->rank;
3960 e->ref = gfc_get_ref ();
3961 e->ref->type = REF_ARRAY;
3962 e->ref->u.ar.type = AR_FULL;
3963 e->ref->u.ar.as = gfc_copy_array_spec (var->n.sym->ts.type == BT_CLASS
3964 ? CLASS_DATA (var->n.sym)->as
3965 : var->n.sym->as);
3966 }
3967
3968 return e;
3969 }
3970
3971
3972 /* Adds a full array reference to an expression, as needed. */
3973
3974 void
3975 gfc_add_full_array_ref (gfc_expr *e, gfc_array_spec *as)
3976 {
3977 gfc_ref *ref;
3978 for (ref = e->ref; ref; ref = ref->next)
3979 if (!ref->next)
3980 break;
3981 if (ref)
3982 {
3983 ref->next = gfc_get_ref ();
3984 ref = ref->next;
3985 }
3986 else
3987 {
3988 e->ref = gfc_get_ref ();
3989 ref = e->ref;
3990 }
3991 ref->type = REF_ARRAY;
3992 ref->u.ar.type = AR_FULL;
3993 ref->u.ar.dimen = e->rank;
3994 ref->u.ar.where = e->where;
3995 ref->u.ar.as = as;
3996 }
3997
3998
3999 gfc_expr *
4000 gfc_lval_expr_from_sym (gfc_symbol *sym)
4001 {
4002 gfc_expr *lval;
4003 lval = gfc_get_expr ();
4004 lval->expr_type = EXPR_VARIABLE;
4005 lval->where = sym->declared_at;
4006 lval->ts = sym->ts;
4007 lval->symtree = gfc_find_symtree (sym->ns->sym_root, sym->name);
4008
4009 /* It will always be a full array. */
4010 lval->rank = sym->as ? sym->as->rank : 0;
4011 if (lval->rank)
4012 gfc_add_full_array_ref (lval, sym->ts.type == BT_CLASS ?
4013 CLASS_DATA (sym)->as : sym->as);
4014 return lval;
4015 }
4016
4017
4018 /* Returns the array_spec of a full array expression. A NULL is
4019 returned otherwise. */
4020 gfc_array_spec *
4021 gfc_get_full_arrayspec_from_expr (gfc_expr *expr)
4022 {
4023 gfc_array_spec *as;
4024 gfc_ref *ref;
4025
4026 if (expr->rank == 0)
4027 return NULL;
4028
4029 /* Follow any component references. */
4030 if (expr->expr_type == EXPR_VARIABLE
4031 || expr->expr_type == EXPR_CONSTANT)
4032 {
4033 as = expr->symtree->n.sym->as;
4034 for (ref = expr->ref; ref; ref = ref->next)
4035 {
4036 switch (ref->type)
4037 {
4038 case REF_COMPONENT:
4039 as = ref->u.c.component->as;
4040 continue;
4041
4042 case REF_SUBSTRING:
4043 continue;
4044
4045 case REF_ARRAY:
4046 {
4047 switch (ref->u.ar.type)
4048 {
4049 case AR_ELEMENT:
4050 case AR_SECTION:
4051 case AR_UNKNOWN:
4052 as = NULL;
4053 continue;
4054
4055 case AR_FULL:
4056 break;
4057 }
4058 break;
4059 }
4060 }
4061 }
4062 }
4063 else
4064 as = NULL;
4065
4066 return as;
4067 }
4068
4069
4070 /* General expression traversal function. */
4071
4072 bool
4073 gfc_traverse_expr (gfc_expr *expr, gfc_symbol *sym,
4074 bool (*func)(gfc_expr *, gfc_symbol *, int*),
4075 int f)
4076 {
4077 gfc_array_ref ar;
4078 gfc_ref *ref;
4079 gfc_actual_arglist *args;
4080 gfc_constructor *c;
4081 int i;
4082
4083 if (!expr)
4084 return false;
4085
4086 if ((*func) (expr, sym, &f))
4087 return true;
4088
4089 if (expr->ts.type == BT_CHARACTER
4090 && expr->ts.u.cl
4091 && expr->ts.u.cl->length
4092 && expr->ts.u.cl->length->expr_type != EXPR_CONSTANT
4093 && gfc_traverse_expr (expr->ts.u.cl->length, sym, func, f))
4094 return true;
4095
4096 switch (expr->expr_type)
4097 {
4098 case EXPR_PPC:
4099 case EXPR_COMPCALL:
4100 case EXPR_FUNCTION:
4101 for (args = expr->value.function.actual; args; args = args->next)
4102 {
4103 if (gfc_traverse_expr (args->expr, sym, func, f))
4104 return true;
4105 }
4106 break;
4107
4108 case EXPR_VARIABLE:
4109 case EXPR_CONSTANT:
4110 case EXPR_NULL:
4111 case EXPR_SUBSTRING:
4112 break;
4113
4114 case EXPR_STRUCTURE:
4115 case EXPR_ARRAY:
4116 for (c = gfc_constructor_first (expr->value.constructor);
4117 c; c = gfc_constructor_next (c))
4118 {
4119 if (gfc_traverse_expr (c->expr, sym, func, f))
4120 return true;
4121 if (c->iterator)
4122 {
4123 if (gfc_traverse_expr (c->iterator->var, sym, func, f))
4124 return true;
4125 if (gfc_traverse_expr (c->iterator->start, sym, func, f))
4126 return true;
4127 if (gfc_traverse_expr (c->iterator->end, sym, func, f))
4128 return true;
4129 if (gfc_traverse_expr (c->iterator->step, sym, func, f))
4130 return true;
4131 }
4132 }
4133 break;
4134
4135 case EXPR_OP:
4136 if (gfc_traverse_expr (expr->value.op.op1, sym, func, f))
4137 return true;
4138 if (gfc_traverse_expr (expr->value.op.op2, sym, func, f))
4139 return true;
4140 break;
4141
4142 default:
4143 gcc_unreachable ();
4144 break;
4145 }
4146
4147 ref = expr->ref;
4148 while (ref != NULL)
4149 {
4150 switch (ref->type)
4151 {
4152 case REF_ARRAY:
4153 ar = ref->u.ar;
4154 for (i = 0; i < GFC_MAX_DIMENSIONS; i++)
4155 {
4156 if (gfc_traverse_expr (ar.start[i], sym, func, f))
4157 return true;
4158 if (gfc_traverse_expr (ar.end[i], sym, func, f))
4159 return true;
4160 if (gfc_traverse_expr (ar.stride[i], sym, func, f))
4161 return true;
4162 }
4163 break;
4164
4165 case REF_SUBSTRING:
4166 if (gfc_traverse_expr (ref->u.ss.start, sym, func, f))
4167 return true;
4168 if (gfc_traverse_expr (ref->u.ss.end, sym, func, f))
4169 return true;
4170 break;
4171
4172 case REF_COMPONENT:
4173 if (ref->u.c.component->ts.type == BT_CHARACTER
4174 && ref->u.c.component->ts.u.cl
4175 && ref->u.c.component->ts.u.cl->length
4176 && ref->u.c.component->ts.u.cl->length->expr_type
4177 != EXPR_CONSTANT
4178 && gfc_traverse_expr (ref->u.c.component->ts.u.cl->length,
4179 sym, func, f))
4180 return true;
4181
4182 if (ref->u.c.component->as)
4183 for (i = 0; i < ref->u.c.component->as->rank
4184 + ref->u.c.component->as->corank; i++)
4185 {
4186 if (gfc_traverse_expr (ref->u.c.component->as->lower[i],
4187 sym, func, f))
4188 return true;
4189 if (gfc_traverse_expr (ref->u.c.component->as->upper[i],
4190 sym, func, f))
4191 return true;
4192 }
4193 break;
4194
4195 default:
4196 gcc_unreachable ();
4197 }
4198 ref = ref->next;
4199 }
4200 return false;
4201 }
4202
4203 /* Traverse expr, marking all EXPR_VARIABLE symbols referenced. */
4204
4205 static bool
4206 expr_set_symbols_referenced (gfc_expr *expr,
4207 gfc_symbol *sym ATTRIBUTE_UNUSED,
4208 int *f ATTRIBUTE_UNUSED)
4209 {
4210 if (expr->expr_type != EXPR_VARIABLE)
4211 return false;
4212 gfc_set_sym_referenced (expr->symtree->n.sym);
4213 return false;
4214 }
4215
4216 void
4217 gfc_expr_set_symbols_referenced (gfc_expr *expr)
4218 {
4219 gfc_traverse_expr (expr, NULL, expr_set_symbols_referenced, 0);
4220 }
4221
4222
4223 /* Determine if an expression is a procedure pointer component and return
4224 the component in that case. Otherwise return NULL. */
4225
4226 gfc_component *
4227 gfc_get_proc_ptr_comp (gfc_expr *expr)
4228 {
4229 gfc_ref *ref;
4230
4231 if (!expr || !expr->ref)
4232 return NULL;
4233
4234 ref = expr->ref;
4235 while (ref->next)
4236 ref = ref->next;
4237
4238 if (ref->type == REF_COMPONENT
4239 && ref->u.c.component->attr.proc_pointer)
4240 return ref->u.c.component;
4241
4242 return NULL;
4243 }
4244
4245
4246 /* Determine if an expression is a procedure pointer component. */
4247
4248 bool
4249 gfc_is_proc_ptr_comp (gfc_expr *expr)
4250 {
4251 return (gfc_get_proc_ptr_comp (expr) != NULL);
4252 }
4253
4254
4255 /* Walk an expression tree and check each variable encountered for being typed.
4256 If strict is not set, a top-level variable is tolerated untyped in -std=gnu
4257 mode as is a basic arithmetic expression using those; this is for things in
4258 legacy-code like:
4259
4260 INTEGER :: arr(n), n
4261 INTEGER :: arr(n + 1), n
4262
4263 The namespace is needed for IMPLICIT typing. */
4264
4265 static gfc_namespace* check_typed_ns;
4266
4267 static bool
4268 expr_check_typed_help (gfc_expr* e, gfc_symbol* sym ATTRIBUTE_UNUSED,
4269 int* f ATTRIBUTE_UNUSED)
4270 {
4271 bool t;
4272
4273 if (e->expr_type != EXPR_VARIABLE)
4274 return false;
4275
4276 gcc_assert (e->symtree);
4277 t = gfc_check_symbol_typed (e->symtree->n.sym, check_typed_ns,
4278 true, e->where);
4279
4280 return (!t);
4281 }
4282
4283 bool
4284 gfc_expr_check_typed (gfc_expr* e, gfc_namespace* ns, bool strict)
4285 {
4286 bool error_found;
4287
4288 /* If this is a top-level variable or EXPR_OP, do the check with strict given
4289 to us. */
4290 if (!strict)
4291 {
4292 if (e->expr_type == EXPR_VARIABLE && !e->ref)
4293 return gfc_check_symbol_typed (e->symtree->n.sym, ns, strict, e->where);
4294
4295 if (e->expr_type == EXPR_OP)
4296 {
4297 bool t = true;
4298
4299 gcc_assert (e->value.op.op1);
4300 t = gfc_expr_check_typed (e->value.op.op1, ns, strict);
4301
4302 if (t && e->value.op.op2)
4303 t = gfc_expr_check_typed (e->value.op.op2, ns, strict);
4304
4305 return t;
4306 }
4307 }
4308
4309 /* Otherwise, walk the expression and do it strictly. */
4310 check_typed_ns = ns;
4311 error_found = gfc_traverse_expr (e, NULL, &expr_check_typed_help, 0);
4312
4313 return error_found ? false : true;
4314 }
4315
4316
4317 bool
4318 gfc_ref_this_image (gfc_ref *ref)
4319 {
4320 int n;
4321
4322 gcc_assert (ref->type == REF_ARRAY && ref->u.ar.codimen > 0);
4323
4324 for (n = ref->u.ar.dimen; n < ref->u.ar.dimen + ref->u.ar.codimen; n++)
4325 if (ref->u.ar.dimen_type[n] != DIMEN_THIS_IMAGE)
4326 return false;
4327
4328 return true;
4329 }
4330
4331
4332 bool
4333 gfc_is_coindexed (gfc_expr *e)
4334 {
4335 gfc_ref *ref;
4336
4337 for (ref = e->ref; ref; ref = ref->next)
4338 if (ref->type == REF_ARRAY && ref->u.ar.codimen > 0)
4339 return !gfc_ref_this_image (ref);
4340
4341 return false;
4342 }
4343
4344
4345 /* Coarrays are variables with a corank but not being coindexed. However, also
4346 the following is a coarray: A subobject of a coarray is a coarray if it does
4347 not have any cosubscripts, vector subscripts, allocatable component
4348 selection, or pointer component selection. (F2008, 2.4.7) */
4349
4350 bool
4351 gfc_is_coarray (gfc_expr *e)
4352 {
4353 gfc_ref *ref;
4354 gfc_symbol *sym;
4355 gfc_component *comp;
4356 bool coindexed;
4357 bool coarray;
4358 int i;
4359
4360 if (e->expr_type != EXPR_VARIABLE)
4361 return false;
4362
4363 coindexed = false;
4364 sym = e->symtree->n.sym;
4365
4366 if (sym->ts.type == BT_CLASS && sym->attr.class_ok)
4367 coarray = CLASS_DATA (sym)->attr.codimension;
4368 else
4369 coarray = sym->attr.codimension;
4370
4371 for (ref = e->ref; ref; ref = ref->next)
4372 switch (ref->type)
4373 {
4374 case REF_COMPONENT:
4375 comp = ref->u.c.component;
4376 if (comp->ts.type == BT_CLASS && comp->attr.class_ok
4377 && (CLASS_DATA (comp)->attr.class_pointer
4378 || CLASS_DATA (comp)->attr.allocatable))
4379 {
4380 coindexed = false;
4381 coarray = CLASS_DATA (comp)->attr.codimension;
4382 }
4383 else if (comp->attr.pointer || comp->attr.allocatable)
4384 {
4385 coindexed = false;
4386 coarray = comp->attr.codimension;
4387 }
4388 break;
4389
4390 case REF_ARRAY:
4391 if (!coarray)
4392 break;
4393
4394 if (ref->u.ar.codimen > 0 && !gfc_ref_this_image (ref))
4395 {
4396 coindexed = true;
4397 break;
4398 }
4399
4400 for (i = 0; i < ref->u.ar.dimen; i++)
4401 if (ref->u.ar.dimen_type[i] == DIMEN_VECTOR)
4402 {
4403 coarray = false;
4404 break;
4405 }
4406 break;
4407
4408 case REF_SUBSTRING:
4409 break;
4410 }
4411
4412 return coarray && !coindexed;
4413 }
4414
4415
4416 int
4417 gfc_get_corank (gfc_expr *e)
4418 {
4419 int corank;
4420 gfc_ref *ref;
4421
4422 if (!gfc_is_coarray (e))
4423 return 0;
4424
4425 if (e->ts.type == BT_CLASS && e->ts.u.derived->components)
4426 corank = e->ts.u.derived->components->as
4427 ? e->ts.u.derived->components->as->corank : 0;
4428 else
4429 corank = e->symtree->n.sym->as ? e->symtree->n.sym->as->corank : 0;
4430
4431 for (ref = e->ref; ref; ref = ref->next)
4432 {
4433 if (ref->type == REF_ARRAY)
4434 corank = ref->u.ar.as->corank;
4435 gcc_assert (ref->type != REF_SUBSTRING);
4436 }
4437
4438 return corank;
4439 }
4440
4441
4442 /* Check whether the expression has an ultimate allocatable component.
4443 Being itself allocatable does not count. */
4444 bool
4445 gfc_has_ultimate_allocatable (gfc_expr *e)
4446 {
4447 gfc_ref *ref, *last = NULL;
4448
4449 if (e->expr_type != EXPR_VARIABLE)
4450 return false;
4451
4452 for (ref = e->ref; ref; ref = ref->next)
4453 if (ref->type == REF_COMPONENT)
4454 last = ref;
4455
4456 if (last && last->u.c.component->ts.type == BT_CLASS)
4457 return CLASS_DATA (last->u.c.component)->attr.alloc_comp;
4458 else if (last && last->u.c.component->ts.type == BT_DERIVED)
4459 return last->u.c.component->ts.u.derived->attr.alloc_comp;
4460 else if (last)
4461 return false;
4462
4463 if (e->ts.type == BT_CLASS)
4464 return CLASS_DATA (e)->attr.alloc_comp;
4465 else if (e->ts.type == BT_DERIVED)
4466 return e->ts.u.derived->attr.alloc_comp;
4467 else
4468 return false;
4469 }
4470
4471
4472 /* Check whether the expression has an pointer component.
4473 Being itself a pointer does not count. */
4474 bool
4475 gfc_has_ultimate_pointer (gfc_expr *e)
4476 {
4477 gfc_ref *ref, *last = NULL;
4478
4479 if (e->expr_type != EXPR_VARIABLE)
4480 return false;
4481
4482 for (ref = e->ref; ref; ref = ref->next)
4483 if (ref->type == REF_COMPONENT)
4484 last = ref;
4485
4486 if (last && last->u.c.component->ts.type == BT_CLASS)
4487 return CLASS_DATA (last->u.c.component)->attr.pointer_comp;
4488 else if (last && last->u.c.component->ts.type == BT_DERIVED)
4489 return last->u.c.component->ts.u.derived->attr.pointer_comp;
4490 else if (last)
4491 return false;
4492
4493 if (e->ts.type == BT_CLASS)
4494 return CLASS_DATA (e)->attr.pointer_comp;
4495 else if (e->ts.type == BT_DERIVED)
4496 return e->ts.u.derived->attr.pointer_comp;
4497 else
4498 return false;
4499 }
4500
4501
4502 /* Check whether an expression is "simply contiguous", cf. F2008, 6.5.4.
4503 Note: A scalar is not regarded as "simply contiguous" by the standard.
4504 if bool is not strict, some further checks are done - for instance,
4505 a "(::1)" is accepted. */
4506
4507 bool
4508 gfc_is_simply_contiguous (gfc_expr *expr, bool strict)
4509 {
4510 bool colon;
4511 int i;
4512 gfc_array_ref *ar = NULL;
4513 gfc_ref *ref, *part_ref = NULL;
4514 gfc_symbol *sym;
4515
4516 if (expr->expr_type == EXPR_FUNCTION)
4517 return expr->value.function.esym
4518 ? expr->value.function.esym->result->attr.contiguous : false;
4519 else if (expr->expr_type != EXPR_VARIABLE)
4520 return false;
4521
4522 if (expr->rank == 0)
4523 return false;
4524
4525 for (ref = expr->ref; ref; ref = ref->next)
4526 {
4527 if (ar)
4528 return false; /* Array shall be last part-ref. */
4529
4530 if (ref->type == REF_COMPONENT)
4531 part_ref = ref;
4532 else if (ref->type == REF_SUBSTRING)
4533 return false;
4534 else if (ref->u.ar.type != AR_ELEMENT)
4535 ar = &ref->u.ar;
4536 }
4537
4538 sym = expr->symtree->n.sym;
4539 if (expr->ts.type != BT_CLASS
4540 && ((part_ref
4541 && !part_ref->u.c.component->attr.contiguous
4542 && part_ref->u.c.component->attr.pointer)
4543 || (!part_ref
4544 && !sym->attr.contiguous
4545 && (sym->attr.pointer
4546 || sym->as->type == AS_ASSUMED_RANK
4547 || sym->as->type == AS_ASSUMED_SHAPE))))
4548 return false;
4549
4550 if (!ar || ar->type == AR_FULL)
4551 return true;
4552
4553 gcc_assert (ar->type == AR_SECTION);
4554
4555 /* Check for simply contiguous array */
4556 colon = true;
4557 for (i = 0; i < ar->dimen; i++)
4558 {
4559 if (ar->dimen_type[i] == DIMEN_VECTOR)
4560 return false;
4561
4562 if (ar->dimen_type[i] == DIMEN_ELEMENT)
4563 {
4564 colon = false;
4565 continue;
4566 }
4567
4568 gcc_assert (ar->dimen_type[i] == DIMEN_RANGE);
4569
4570
4571 /* If the previous section was not contiguous, that's an error,
4572 unless we have effective only one element and checking is not
4573 strict. */
4574 if (!colon && (strict || !ar->start[i] || !ar->end[i]
4575 || ar->start[i]->expr_type != EXPR_CONSTANT
4576 || ar->end[i]->expr_type != EXPR_CONSTANT
4577 || mpz_cmp (ar->start[i]->value.integer,
4578 ar->end[i]->value.integer) != 0))
4579 return false;
4580
4581 /* Following the standard, "(::1)" or - if known at compile time -
4582 "(lbound:ubound)" are not simply contiguous; if strict
4583 is false, they are regarded as simply contiguous. */
4584 if (ar->stride[i] && (strict || ar->stride[i]->expr_type != EXPR_CONSTANT
4585 || ar->stride[i]->ts.type != BT_INTEGER
4586 || mpz_cmp_si (ar->stride[i]->value.integer, 1) != 0))
4587 return false;
4588
4589 if (ar->start[i]
4590 && (strict || ar->start[i]->expr_type != EXPR_CONSTANT
4591 || !ar->as->lower[i]
4592 || ar->as->lower[i]->expr_type != EXPR_CONSTANT
4593 || mpz_cmp (ar->start[i]->value.integer,
4594 ar->as->lower[i]->value.integer) != 0))
4595 colon = false;
4596
4597 if (ar->end[i]
4598 && (strict || ar->end[i]->expr_type != EXPR_CONSTANT
4599 || !ar->as->upper[i]
4600 || ar->as->upper[i]->expr_type != EXPR_CONSTANT
4601 || mpz_cmp (ar->end[i]->value.integer,
4602 ar->as->upper[i]->value.integer) != 0))
4603 colon = false;
4604 }
4605
4606 return true;
4607 }
4608
4609
4610 /* Build call to an intrinsic procedure. The number of arguments has to be
4611 passed (rather than ending the list with a NULL value) because we may
4612 want to add arguments but with a NULL-expression. */
4613
4614 gfc_expr*
4615 gfc_build_intrinsic_call (gfc_namespace *ns, gfc_isym_id id, const char* name,
4616 locus where, unsigned numarg, ...)
4617 {
4618 gfc_expr* result;
4619 gfc_actual_arglist* atail;
4620 gfc_intrinsic_sym* isym;
4621 va_list ap;
4622 unsigned i;
4623 const char *mangled_name = gfc_get_string (GFC_PREFIX ("%s"), name);
4624
4625 isym = gfc_intrinsic_function_by_id (id);
4626 gcc_assert (isym);
4627
4628 result = gfc_get_expr ();
4629 result->expr_type = EXPR_FUNCTION;
4630 result->ts = isym->ts;
4631 result->where = where;
4632 result->value.function.name = mangled_name;
4633 result->value.function.isym = isym;
4634
4635 gfc_get_sym_tree (mangled_name, ns, &result->symtree, false);
4636 gfc_commit_symbol (result->symtree->n.sym);
4637 gcc_assert (result->symtree
4638 && (result->symtree->n.sym->attr.flavor == FL_PROCEDURE
4639 || result->symtree->n.sym->attr.flavor == FL_UNKNOWN));
4640 result->symtree->n.sym->intmod_sym_id = id;
4641 result->symtree->n.sym->attr.flavor = FL_PROCEDURE;
4642 result->symtree->n.sym->attr.intrinsic = 1;
4643
4644 va_start (ap, numarg);
4645 atail = NULL;
4646 for (i = 0; i < numarg; ++i)
4647 {
4648 if (atail)
4649 {
4650 atail->next = gfc_get_actual_arglist ();
4651 atail = atail->next;
4652 }
4653 else
4654 atail = result->value.function.actual = gfc_get_actual_arglist ();
4655
4656 atail->expr = va_arg (ap, gfc_expr*);
4657 }
4658 va_end (ap);
4659
4660 return result;
4661 }
4662
4663
4664 /* Check if an expression may appear in a variable definition context
4665 (F2008, 16.6.7) or pointer association context (F2008, 16.6.8).
4666 This is called from the various places when resolving
4667 the pieces that make up such a context.
4668 If own_scope is true (applies to, e.g., ac-implied-do/data-implied-do
4669 variables), some checks are not performed.
4670
4671 Optionally, a possible error message can be suppressed if context is NULL
4672 and just the return status (true / false) be requested. */
4673
4674 bool
4675 gfc_check_vardef_context (gfc_expr* e, bool pointer, bool alloc_obj,
4676 bool own_scope, const char* context)
4677 {
4678 gfc_symbol* sym = NULL;
4679 bool is_pointer;
4680 bool check_intentin;
4681 bool ptr_component;
4682 bool unlimited;
4683 symbol_attribute attr;
4684 gfc_ref* ref;
4685
4686 if (e->expr_type == EXPR_VARIABLE)
4687 {
4688 gcc_assert (e->symtree);
4689 sym = e->symtree->n.sym;
4690 }
4691 else if (e->expr_type == EXPR_FUNCTION)
4692 {
4693 gcc_assert (e->symtree);
4694 sym = e->value.function.esym ? e->value.function.esym : e->symtree->n.sym;
4695 }
4696
4697 unlimited = e->ts.type == BT_CLASS && UNLIMITED_POLY (sym);
4698
4699 attr = gfc_expr_attr (e);
4700 if (!pointer && e->expr_type == EXPR_FUNCTION && attr.pointer)
4701 {
4702 if (!(gfc_option.allow_std & GFC_STD_F2008))
4703 {
4704 if (context)
4705 gfc_error ("Fortran 2008: Pointer functions in variable definition"
4706 " context (%s) at %L", context, &e->where);
4707 return false;
4708 }
4709 }
4710 else if (e->expr_type != EXPR_VARIABLE)
4711 {
4712 if (context)
4713 gfc_error ("Non-variable expression in variable definition context (%s)"
4714 " at %L", context, &e->where);
4715 return false;
4716 }
4717
4718 if (!pointer && sym->attr.flavor == FL_PARAMETER)
4719 {
4720 if (context)
4721 gfc_error ("Named constant '%s' in variable definition context (%s)"
4722 " at %L", sym->name, context, &e->where);
4723 return false;
4724 }
4725 if (!pointer && sym->attr.flavor != FL_VARIABLE
4726 && !(sym->attr.flavor == FL_PROCEDURE && sym == sym->result)
4727 && !(sym->attr.flavor == FL_PROCEDURE && sym->attr.proc_pointer))
4728 {
4729 if (context)
4730 gfc_error ("'%s' in variable definition context (%s) at %L is not"
4731 " a variable", sym->name, context, &e->where);
4732 return false;
4733 }
4734
4735 /* Find out whether the expr is a pointer; this also means following
4736 component references to the last one. */
4737 is_pointer = (attr.pointer || attr.proc_pointer);
4738 if (pointer && !is_pointer && !unlimited)
4739 {
4740 if (context)
4741 gfc_error ("Non-POINTER in pointer association context (%s)"
4742 " at %L", context, &e->where);
4743 return false;
4744 }
4745
4746 /* F2008, C1303. */
4747 if (!alloc_obj
4748 && (attr.lock_comp
4749 || (e->ts.type == BT_DERIVED
4750 && e->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
4751 && e->ts.u.derived->intmod_sym_id == ISOFORTRAN_LOCK_TYPE)))
4752 {
4753 if (context)
4754 gfc_error ("LOCK_TYPE in variable definition context (%s) at %L",
4755 context, &e->where);
4756 return false;
4757 }
4758
4759 /* INTENT(IN) dummy argument. Check this, unless the object itself is the
4760 component of sub-component of a pointer; we need to distinguish
4761 assignment to a pointer component from pointer-assignment to a pointer
4762 component. Note that (normal) assignment to procedure pointers is not
4763 possible. */
4764 check_intentin = !own_scope;
4765 ptr_component = (sym->ts.type == BT_CLASS && CLASS_DATA (sym))
4766 ? CLASS_DATA (sym)->attr.class_pointer : sym->attr.pointer;
4767 for (ref = e->ref; ref && check_intentin; ref = ref->next)
4768 {
4769 if (ptr_component && ref->type == REF_COMPONENT)
4770 check_intentin = false;
4771 if (ref->type == REF_COMPONENT && ref->u.c.component->attr.pointer)
4772 {
4773 ptr_component = true;
4774 if (!pointer)
4775 check_intentin = false;
4776 }
4777 }
4778 if (check_intentin && sym->attr.intent == INTENT_IN)
4779 {
4780 if (pointer && is_pointer)
4781 {
4782 if (context)
4783 gfc_error ("Dummy argument '%s' with INTENT(IN) in pointer"
4784 " association context (%s) at %L",
4785 sym->name, context, &e->where);
4786 return false;
4787 }
4788 if (!pointer && !is_pointer && !sym->attr.pointer)
4789 {
4790 if (context)
4791 gfc_error ("Dummy argument '%s' with INTENT(IN) in variable"
4792 " definition context (%s) at %L",
4793 sym->name, context, &e->where);
4794 return false;
4795 }
4796 }
4797
4798 /* PROTECTED and use-associated. */
4799 if (sym->attr.is_protected && sym->attr.use_assoc && check_intentin)
4800 {
4801 if (pointer && is_pointer)
4802 {
4803 if (context)
4804 gfc_error ("Variable '%s' is PROTECTED and can not appear in a"
4805 " pointer association context (%s) at %L",
4806 sym->name, context, &e->where);
4807 return false;
4808 }
4809 if (!pointer && !is_pointer)
4810 {
4811 if (context)
4812 gfc_error ("Variable '%s' is PROTECTED and can not appear in a"
4813 " variable definition context (%s) at %L",
4814 sym->name, context, &e->where);
4815 return false;
4816 }
4817 }
4818
4819 /* Variable not assignable from a PURE procedure but appears in
4820 variable definition context. */
4821 if (!pointer && !own_scope && gfc_pure (NULL) && gfc_impure_variable (sym))
4822 {
4823 if (context)
4824 gfc_error ("Variable '%s' can not appear in a variable definition"
4825 " context (%s) at %L in PURE procedure",
4826 sym->name, context, &e->where);
4827 return false;
4828 }
4829
4830 if (!pointer && context && gfc_implicit_pure (NULL)
4831 && gfc_impure_variable (sym))
4832 {
4833 gfc_namespace *ns;
4834 gfc_symbol *sym;
4835
4836 for (ns = gfc_current_ns; ns; ns = ns->parent)
4837 {
4838 sym = ns->proc_name;
4839 if (sym == NULL)
4840 break;
4841 if (sym->attr.flavor == FL_PROCEDURE)
4842 {
4843 sym->attr.implicit_pure = 0;
4844 break;
4845 }
4846 }
4847 }
4848 /* Check variable definition context for associate-names. */
4849 if (!pointer && sym->assoc)
4850 {
4851 const char* name;
4852 gfc_association_list* assoc;
4853
4854 gcc_assert (sym->assoc->target);
4855
4856 /* If this is a SELECT TYPE temporary (the association is used internally
4857 for SELECT TYPE), silently go over to the target. */
4858 if (sym->attr.select_type_temporary)
4859 {
4860 gfc_expr* t = sym->assoc->target;
4861
4862 gcc_assert (t->expr_type == EXPR_VARIABLE);
4863 name = t->symtree->name;
4864
4865 if (t->symtree->n.sym->assoc)
4866 assoc = t->symtree->n.sym->assoc;
4867 else
4868 assoc = sym->assoc;
4869 }
4870 else
4871 {
4872 name = sym->name;
4873 assoc = sym->assoc;
4874 }
4875 gcc_assert (name && assoc);
4876
4877 /* Is association to a valid variable? */
4878 if (!assoc->variable)
4879 {
4880 if (context)
4881 {
4882 if (assoc->target->expr_type == EXPR_VARIABLE)
4883 gfc_error ("'%s' at %L associated to vector-indexed target can"
4884 " not be used in a variable definition context (%s)",
4885 name, &e->where, context);
4886 else
4887 gfc_error ("'%s' at %L associated to expression can"
4888 " not be used in a variable definition context (%s)",
4889 name, &e->where, context);
4890 }
4891 return false;
4892 }
4893
4894 /* Target must be allowed to appear in a variable definition context. */
4895 if (!gfc_check_vardef_context (assoc->target, pointer, false, false, NULL))
4896 {
4897 if (context)
4898 gfc_error ("Associate-name '%s' can not appear in a variable"
4899 " definition context (%s) at %L because its target"
4900 " at %L can not, either",
4901 name, context, &e->where,
4902 &assoc->target->where);
4903 return false;
4904 }
4905 }
4906
4907 return true;
4908 }