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