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