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