Branch data Line data Source code
1 : : /* Check functions
2 : : Copyright (C) 2002-2024 Free Software Foundation, Inc.
3 : : Contributed by Andy Vaught & Katherine Holcomb
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 : :
22 : : /* These functions check to see if an argument list is compatible with
23 : : a particular intrinsic function or subroutine. Presence of
24 : : required arguments has already been established, the argument list
25 : : has been sorted into the right order and has NULL arguments in the
26 : : correct places for missing optional arguments. */
27 : :
28 : : #include "config.h"
29 : : #include "system.h"
30 : : #include "coretypes.h"
31 : : #include "options.h"
32 : : #include "gfortran.h"
33 : : #include "intrinsic.h"
34 : : #include "constructor.h"
35 : : #include "target-memory.h"
36 : :
37 : :
38 : : /* Reset a BOZ to a zero value. This is used to prevent run-on errors
39 : : from resolve.cc(resolve_function). */
40 : :
41 : : static void
42 : 39 : reset_boz (gfc_expr *x)
43 : : {
44 : : /* Clear boz info. */
45 : 39 : x->boz.rdx = 0;
46 : 39 : x->boz.len = 0;
47 : 39 : free (x->boz.str);
48 : :
49 : 39 : x->ts.type = BT_INTEGER;
50 : 39 : x->ts.kind = gfc_default_integer_kind;
51 : 39 : mpz_init (x->value.integer);
52 : 39 : mpz_set_ui (x->value.integer, 0);
53 : 39 : }
54 : :
55 : : /* A BOZ literal constant can appear in a limited number of contexts.
56 : : gfc_invalid_boz() is a helper function to simplify error/warning
57 : : generation. gfortran accepts the nonstandard 'X' for 'Z', and gfortran
58 : : allows the BOZ indicator to appear as a suffix. If -fallow-invalid-boz
59 : : is used, then issue a warning; otherwise issue an error. */
60 : :
61 : : bool
62 : 217 : gfc_invalid_boz (const char *msg, locus *loc)
63 : : {
64 : 217 : if (flag_allow_invalid_boz)
65 : : {
66 : 204 : gfc_warning (0, msg, loc);
67 : 204 : return false;
68 : : }
69 : :
70 : 13 : const char *hint = _(" [see %<-fno-allow-invalid-boz%>]");
71 : 13 : size_t len = strlen (msg) + strlen (hint) + 1;
72 : 13 : char *msg2 = (char *) alloca (len);
73 : 13 : strcpy (msg2, msg);
74 : 13 : strcat (msg2, hint);
75 : 13 : gfc_error (msg2, loc);
76 : 13 : return true;
77 : : }
78 : :
79 : :
80 : : /* Issue an error for an illegal BOZ argument. */
81 : :
82 : : static bool
83 : 1814 : illegal_boz_arg (gfc_expr *x)
84 : : {
85 : 1814 : if (x->ts.type == BT_BOZ)
86 : : {
87 : 4 : gfc_error ("BOZ literal constant at %L cannot be an actual argument "
88 : : "to %qs", &x->where, gfc_current_intrinsic);
89 : 4 : reset_boz (x);
90 : 4 : return true;
91 : : }
92 : :
93 : : return false;
94 : : }
95 : :
96 : : /* Some procedures take two arguments such that both cannot be BOZ. */
97 : :
98 : : static bool
99 : 6986 : boz_args_check(gfc_expr *i, gfc_expr *j)
100 : : {
101 : 6986 : if (i->ts.type == BT_BOZ && j->ts.type == BT_BOZ)
102 : : {
103 : 14 : gfc_error ("Arguments of %qs at %L and %L cannot both be BOZ "
104 : : "literal constants", gfc_current_intrinsic, &i->where,
105 : : &j->where);
106 : 14 : reset_boz (i);
107 : 14 : reset_boz (j);
108 : 14 : return false;
109 : :
110 : : }
111 : :
112 : : return true;
113 : : }
114 : :
115 : :
116 : : /* Check that a BOZ is a constant. */
117 : :
118 : : static bool
119 : 2637 : is_boz_constant (gfc_expr *a)
120 : : {
121 : 0 : if (a->expr_type != EXPR_CONSTANT)
122 : : {
123 : 0 : gfc_error ("Invalid use of BOZ literal constant at %L", &a->where);
124 : 0 : return false;
125 : : }
126 : :
127 : : return true;
128 : : }
129 : :
130 : :
131 : : /* Convert a octal string into a binary string. This is used in the
132 : : fallback conversion of an octal string to a REAL. */
133 : :
134 : : static char *
135 : 0 : oct2bin(int nbits, char *oct)
136 : : {
137 : 0 : const char bits[8][5] = {
138 : : "000", "001", "010", "011", "100", "101", "110", "111"};
139 : :
140 : 0 : char *buf, *bufp;
141 : 0 : int i, j, n;
142 : :
143 : 0 : j = nbits + 1;
144 : 0 : if (nbits == 64) j++;
145 : :
146 : 0 : bufp = buf = XCNEWVEC (char, j + 1);
147 : 0 : memset (bufp, 0, j + 1);
148 : :
149 : 0 : n = strlen (oct);
150 : 0 : for (i = 0; i < n; i++, oct++)
151 : : {
152 : 0 : j = *oct - 48;
153 : 0 : strcpy (bufp, &bits[j][0]);
154 : 0 : bufp += 3;
155 : : }
156 : :
157 : 0 : bufp = XCNEWVEC (char, nbits + 1);
158 : 0 : if (nbits == 64)
159 : 0 : strcpy (bufp, buf + 2);
160 : : else
161 : 0 : strcpy (bufp, buf + 1);
162 : :
163 : 0 : free (buf);
164 : :
165 : 0 : return bufp;
166 : : }
167 : :
168 : :
169 : : /* Convert a hexidecimal string into a binary string. This is used in the
170 : : fallback conversion of a hexidecimal string to a REAL. */
171 : :
172 : : static char *
173 : 0 : hex2bin(int nbits, char *hex)
174 : : {
175 : 0 : const char bits[16][5] = {
176 : : "0000", "0001", "0010", "0011", "0100", "0101", "0110", "0111",
177 : : "1000", "1001", "1010", "1011", "1100", "1101", "1110", "1111"};
178 : :
179 : 0 : char *buf, *bufp;
180 : 0 : int i, j, n;
181 : :
182 : 0 : bufp = buf = XCNEWVEC (char, nbits + 1);
183 : 0 : memset (bufp, 0, nbits + 1);
184 : :
185 : 0 : n = strlen (hex);
186 : 0 : for (i = 0; i < n; i++, hex++)
187 : : {
188 : 0 : j = *hex;
189 : 0 : if (j > 47 && j < 58)
190 : 0 : j -= 48;
191 : 0 : else if (j > 64 && j < 71)
192 : 0 : j -= 55;
193 : 0 : else if (j > 96 && j < 103)
194 : 0 : j -= 87;
195 : : else
196 : 0 : gcc_unreachable ();
197 : :
198 : 0 : strcpy (bufp, &bits[j][0]);
199 : 0 : bufp += 4;
200 : : }
201 : :
202 : 0 : return buf;
203 : : }
204 : :
205 : :
206 : : /* Fallback conversion of a BOZ string to REAL. */
207 : :
208 : : static void
209 : 0 : bin2real (gfc_expr *x, int kind)
210 : : {
211 : 0 : char buf[114], *sp;
212 : 0 : int b, i, ie, t, w;
213 : 0 : bool sgn;
214 : 0 : mpz_t em;
215 : :
216 : 0 : i = gfc_validate_kind (BT_REAL, kind, false);
217 : 0 : t = gfc_real_kinds[i].digits - 1;
218 : :
219 : : /* Number of bits in the exponent. */
220 : 0 : if (gfc_real_kinds[i].max_exponent == 16384)
221 : : w = 15;
222 : 0 : else if (gfc_real_kinds[i].max_exponent == 1024)
223 : : w = 11;
224 : : else
225 : 0 : w = 8;
226 : :
227 : 0 : if (x->boz.rdx == 16)
228 : 0 : sp = hex2bin (gfc_real_kinds[i].mode_precision, x->boz.str);
229 : 0 : else if (x->boz.rdx == 8)
230 : 0 : sp = oct2bin (gfc_real_kinds[i].mode_precision, x->boz.str);
231 : : else
232 : 0 : sp = x->boz.str;
233 : :
234 : : /* Extract sign bit. */
235 : 0 : sgn = *sp != '0';
236 : :
237 : : /* Extract biased exponent. */
238 : 0 : memset (buf, 0, 114);
239 : 0 : strncpy (buf, ++sp, w);
240 : 0 : mpz_init (em);
241 : 0 : mpz_set_str (em, buf, 2);
242 : 0 : ie = mpz_get_si (em);
243 : :
244 : 0 : mpfr_init2 (x->value.real, t + 1);
245 : 0 : x->ts.type = BT_REAL;
246 : 0 : x->ts.kind = kind;
247 : :
248 : 0 : sp += w; /* Set to first digit in significand. */
249 : 0 : b = (1 << w) - 1;
250 : 0 : if ((i == 0 && ie == b) || (i == 1 && ie == b)
251 : 0 : || ((i == 2 || i == 3) && ie == b))
252 : : {
253 : 0 : bool zeros = true;
254 : 0 : if (i == 2) sp++;
255 : 0 : for (; *sp; sp++)
256 : : {
257 : 0 : if (*sp != '0')
258 : : {
259 : : zeros = false;
260 : : break;
261 : : }
262 : : }
263 : :
264 : 0 : if (zeros)
265 : 0 : mpfr_set_inf (x->value.real, 1);
266 : : else
267 : 0 : mpfr_set_nan (x->value.real);
268 : : }
269 : : else
270 : : {
271 : 0 : if (i == 2)
272 : 0 : strncpy (buf, sp, t + 1);
273 : : else
274 : : {
275 : : /* Significand with hidden bit. */
276 : 0 : buf[0] = '1';
277 : 0 : strncpy (&buf[1], sp, t);
278 : : }
279 : :
280 : : /* Convert to significand to integer. */
281 : 0 : mpz_set_str (em, buf, 2);
282 : 0 : ie -= ((1 << (w - 1)) - 1); /* Unbiased exponent. */
283 : 0 : mpfr_set_z_2exp (x->value.real, em, ie - t, GFC_RND_MODE);
284 : : }
285 : :
286 : 0 : if (sgn) mpfr_neg (x->value.real, x->value.real, GFC_RND_MODE);
287 : :
288 : 0 : mpz_clear (em);
289 : 0 : }
290 : :
291 : :
292 : : /* Fortran 2018 treats a BOZ as simply a string of bits. gfc_boz2real ()
293 : : converts the string into a REAL of the appropriate kind. The treatment
294 : : of the sign bit is processor dependent. */
295 : :
296 : : bool
297 : 254 : gfc_boz2real (gfc_expr *x, int kind)
298 : : {
299 : 254 : extern int gfc_max_integer_kind;
300 : 254 : gfc_typespec ts;
301 : 254 : int len;
302 : 254 : char *buf, *str;
303 : :
304 : 254 : if (!is_boz_constant (x))
305 : 0 : return false;
306 : :
307 : : /* Determine the length of the required string. */
308 : 254 : len = 8 * kind;
309 : 254 : if (x->boz.rdx == 16) len /= 4;
310 : 254 : if (x->boz.rdx == 8) len = len / 3 + 1;
311 : 254 : buf = (char *) alloca (len + 1); /* +1 for NULL terminator. */
312 : :
313 : 254 : if (x->boz.len >= len) /* Truncate if necessary. */
314 : : {
315 : 172 : str = x->boz.str + (x->boz.len - len);
316 : 172 : strcpy(buf, str);
317 : : }
318 : : else /* Copy and pad. */
319 : : {
320 : 82 : memset (buf, 48, len);
321 : 82 : str = buf + (len - x->boz.len);
322 : 82 : strcpy (str, x->boz.str);
323 : : }
324 : :
325 : : /* Need to adjust leading bits in an octal string. */
326 : 254 : if (x->boz.rdx == 8)
327 : : {
328 : : /* Clear first bit. */
329 : 54 : if (kind == 4 || kind == 10 || kind == 16)
330 : : {
331 : 36 : if (buf[0] == '4')
332 : 0 : buf[0] = '0';
333 : 36 : else if (buf[0] == '5')
334 : 0 : buf[0] = '1';
335 : 36 : else if (buf[0] == '6')
336 : 0 : buf[0] = '2';
337 : 36 : else if (buf[0] == '7')
338 : 0 : buf[0] = '3';
339 : : }
340 : : /* Clear first two bits. */
341 : : else
342 : : {
343 : 18 : if (buf[0] == '2' || buf[0] == '4' || buf[0] == '6')
344 : 0 : buf[0] = '0';
345 : : else if (buf[0] == '3' || buf[0] == '5' || buf[0] == '7')
346 : 0 : buf[0] = '1';
347 : : }
348 : : }
349 : :
350 : : /* Reset BOZ string to the truncated or padded version. */
351 : 254 : free (x->boz.str);
352 : 254 : x->boz.len = len;
353 : 254 : x->boz.str = XCNEWVEC (char, len + 1);
354 : 254 : strncpy (x->boz.str, buf, len);
355 : :
356 : : /* For some targets, the largest INTEGER in terms of bits is smaller than
357 : : the bits needed to hold the REAL. Fortunately, the kind type parameter
358 : : indicates the number of bytes required to an INTEGER and a REAL. */
359 : 254 : if (gfc_max_integer_kind < kind)
360 : : {
361 : 0 : bin2real (x, kind);
362 : : }
363 : : else
364 : : {
365 : : /* Convert to widest possible integer. */
366 : 254 : gfc_boz2int (x, gfc_max_integer_kind);
367 : 254 : ts.type = BT_REAL;
368 : 254 : ts.kind = kind;
369 : 254 : if (!gfc_convert_boz (x, &ts))
370 : : {
371 : 0 : gfc_error ("Failure in conversion of BOZ to REAL at %L", &x->where);
372 : 0 : return false;
373 : : }
374 : : }
375 : :
376 : : return true;
377 : : }
378 : :
379 : :
380 : : /* Fortran 2018 treats a BOZ as simply a string of bits. gfc_boz2int ()
381 : : converts the string into an INTEGER of the appropriate kind. The
382 : : treatment of the sign bit is processor dependent. If the converted
383 : : value exceeds the range of the type, then wrap-around semantics are
384 : : applied. */
385 : :
386 : : bool
387 : 2377 : gfc_boz2int (gfc_expr *x, int kind)
388 : : {
389 : 2377 : int i, len;
390 : 2377 : char *buf, *str;
391 : 2377 : mpz_t tmp1;
392 : :
393 : 2377 : if (!is_boz_constant (x))
394 : 0 : return false;
395 : :
396 : 2377 : i = gfc_validate_kind (BT_INTEGER, kind, false);
397 : 2377 : len = gfc_integer_kinds[i].bit_size;
398 : 2377 : if (x->boz.rdx == 16) len /= 4;
399 : 2377 : if (x->boz.rdx == 8) len = len / 3 + 1;
400 : 2377 : buf = (char *) alloca (len + 1); /* +1 for NULL terminator. */
401 : :
402 : 2377 : if (x->boz.len >= len) /* Truncate if necessary. */
403 : : {
404 : 814 : str = x->boz.str + (x->boz.len - len);
405 : 814 : strcpy(buf, str);
406 : : }
407 : : else /* Copy and pad. */
408 : : {
409 : 1563 : memset (buf, 48, len);
410 : 1563 : str = buf + (len - x->boz.len);
411 : 1563 : strcpy (str, x->boz.str);
412 : : }
413 : :
414 : : /* Need to adjust leading bits in an octal string. */
415 : 2377 : if (x->boz.rdx == 8)
416 : : {
417 : : /* Clear first bit. */
418 : 358 : if (kind == 1 || kind == 4 || kind == 16)
419 : : {
420 : 192 : if (buf[0] == '4')
421 : 0 : buf[0] = '0';
422 : 192 : else if (buf[0] == '5')
423 : 0 : buf[0] = '1';
424 : 192 : else if (buf[0] == '6')
425 : 1 : buf[0] = '2';
426 : 191 : else if (buf[0] == '7')
427 : 0 : buf[0] = '3';
428 : : }
429 : : /* Clear first two bits. */
430 : : else
431 : : {
432 : 166 : if (buf[0] == '2' || buf[0] == '4' || buf[0] == '6')
433 : 66 : buf[0] = '0';
434 : : else if (buf[0] == '3' || buf[0] == '5' || buf[0] == '7')
435 : 37 : buf[0] = '1';
436 : : }
437 : : }
438 : :
439 : : /* Convert as-if unsigned integer. */
440 : 2377 : mpz_init (tmp1);
441 : 2377 : mpz_set_str (tmp1, buf, x->boz.rdx);
442 : :
443 : : /* Check for wrap-around. */
444 : 2377 : if (mpz_cmp (tmp1, gfc_integer_kinds[i].huge) > 0)
445 : : {
446 : 103 : mpz_t tmp2;
447 : 103 : mpz_init (tmp2);
448 : 103 : mpz_add_ui (tmp2, gfc_integer_kinds[i].huge, 1);
449 : 103 : mpz_mod (tmp1, tmp1, tmp2);
450 : 103 : mpz_sub (tmp1, tmp1, tmp2);
451 : 103 : mpz_clear (tmp2);
452 : : }
453 : :
454 : : /* Clear boz info. */
455 : 2377 : x->boz.rdx = 0;
456 : 2377 : x->boz.len = 0;
457 : 2377 : free (x->boz.str);
458 : :
459 : 2377 : mpz_init (x->value.integer);
460 : 2377 : mpz_set (x->value.integer, tmp1);
461 : 2377 : x->ts.type = BT_INTEGER;
462 : 2377 : x->ts.kind = kind;
463 : 2377 : mpz_clear (tmp1);
464 : :
465 : 2377 : return true;
466 : : }
467 : :
468 : : /* Same as above for UNSIGNED, but much simpler because
469 : : of wraparound. */
470 : : bool
471 : 6 : gfc_boz2uint (gfc_expr *x, int kind)
472 : : {
473 : 6 : int k;
474 : 6 : if (!is_boz_constant (x))
475 : 0 : return false;
476 : :
477 : 6 : mpz_init (x->value.integer);
478 : 6 : mpz_set_str (x->value.integer, x->boz.str, x->boz.rdx);
479 : 6 : k = gfc_validate_kind (BT_UNSIGNED, kind, false);
480 : 6 : if (mpz_cmp (x->value.integer, gfc_unsigned_kinds[k].huge) > 0)
481 : : {
482 : 0 : gfc_warning (0, _("BOZ constant truncated at %L"), &x->where);
483 : 0 : mpz_and (x->value.integer, x->value.integer, gfc_unsigned_kinds[k].huge);
484 : : }
485 : :
486 : 6 : x->ts.type = BT_UNSIGNED;
487 : 6 : x->ts.kind = kind;
488 : :
489 : : /* Clear boz info. */
490 : 6 : x->boz.rdx = 0;
491 : 6 : x->boz.len = 0;
492 : 6 : free (x->boz.str);
493 : :
494 : 6 : return true;
495 : : }
496 : : /* Make sure an expression is a scalar. */
497 : :
498 : : static bool
499 : 53683 : scalar_check (gfc_expr *e, int n)
500 : : {
501 : 53683 : if (e->rank == 0)
502 : : return true;
503 : :
504 : 33 : gfc_error ("%qs argument of %qs intrinsic at %L must be a scalar",
505 : 33 : gfc_current_intrinsic_arg[n]->name, gfc_current_intrinsic,
506 : : &e->where);
507 : :
508 : 33 : return false;
509 : : }
510 : :
511 : :
512 : : /* Check the type of an expression. */
513 : :
514 : : static bool
515 : 178652 : type_check (gfc_expr *e, int n, bt type)
516 : : {
517 : 178652 : if (e->ts.type == type)
518 : : return true;
519 : :
520 : 3249 : gfc_error ("%qs argument of %qs intrinsic at %L must be %s",
521 : 3249 : gfc_current_intrinsic_arg[n]->name, gfc_current_intrinsic,
522 : : &e->where, gfc_basic_typename (type));
523 : :
524 : 3249 : return false;
525 : : }
526 : :
527 : : /* Check the type of an expression which can be one of two. */
528 : :
529 : : static bool
530 : 1956 : type_check2 (gfc_expr *e, int n, bt type1, bt type2)
531 : : {
532 : 1956 : if (e->ts.type == type1 || e->ts.type == type2)
533 : : return true;
534 : :
535 : 0 : gfc_error ("%qs argument of %qs intrinsic at %L must be %s or %s",
536 : 0 : gfc_current_intrinsic_arg[n]->name, gfc_current_intrinsic,
537 : : &e->where, gfc_basic_typename (type1), gfc_basic_typename (type2));
538 : :
539 : 0 : return false;
540 : : }
541 : :
542 : : /* Check that the expression is a numeric type. */
543 : :
544 : : static bool
545 : 18355 : numeric_check (gfc_expr *e, int n)
546 : : {
547 : : /* Users sometime use a subroutine designator as an actual argument to
548 : : an intrinsic subprogram that expects an argument with a numeric type. */
549 : 18355 : if (e->symtree && e->symtree->n.sym->attr.subroutine)
550 : 1 : goto error;
551 : :
552 : 18354 : if (gfc_numeric_ts (&e->ts))
553 : : return true;
554 : :
555 : : /* If the expression has not got a type, check if its namespace can
556 : : offer a default type. */
557 : 1 : if ((e->expr_type == EXPR_VARIABLE || e->expr_type == EXPR_FUNCTION)
558 : 2 : && e->symtree->n.sym->ts.type == BT_UNKNOWN
559 : 0 : && gfc_set_default_type (e->symtree->n.sym, 0, e->symtree->n.sym->ns)
560 : 3 : && gfc_numeric_ts (&e->symtree->n.sym->ts))
561 : : {
562 : 0 : e->ts = e->symtree->n.sym->ts;
563 : 0 : return true;
564 : : }
565 : :
566 : 4 : error:
567 : :
568 : 4 : gfc_error ("%qs argument of %qs intrinsic at %L must have a numeric type",
569 : 4 : gfc_current_intrinsic_arg[n]->name, gfc_current_intrinsic,
570 : : &e->where);
571 : :
572 : 4 : return false;
573 : : }
574 : :
575 : :
576 : : /* Check that an expression is integer or real. */
577 : :
578 : : static bool
579 : 7671 : int_or_real_check (gfc_expr *e, int n)
580 : : {
581 : 7671 : if (e->ts.type != BT_INTEGER && e->ts.type != BT_REAL)
582 : : {
583 : 2 : gfc_error ("%qs argument of %qs intrinsic at %L must be INTEGER "
584 : 2 : "or REAL", gfc_current_intrinsic_arg[n]->name,
585 : : gfc_current_intrinsic, &e->where);
586 : 2 : return false;
587 : : }
588 : :
589 : : return true;
590 : : }
591 : :
592 : : /* Check that an expression is integer or real... or unsigned. */
593 : :
594 : : static bool
595 : 168 : int_or_real_or_unsigned_check (gfc_expr *e, int n)
596 : : {
597 : 168 : if (e->ts.type != BT_INTEGER && e->ts.type != BT_REAL
598 : : && e->ts.type != BT_UNSIGNED)
599 : : {
600 : 0 : gfc_error ("%qs argument of %qs intrinsic at %L must be INTEGER, "
601 : 0 : "REAL or UNSIGNED", gfc_current_intrinsic_arg[n]->name,
602 : : gfc_current_intrinsic, &e->where);
603 : 0 : return false;
604 : : }
605 : :
606 : : return true;
607 : : }
608 : :
609 : : /* Check that an expression is integer or real; allow character for
610 : : F2003 or later. */
611 : :
612 : : static bool
613 : 14091 : int_or_real_or_char_check_f2003 (gfc_expr *e, int n)
614 : : {
615 : 14091 : if (e->ts.type != BT_INTEGER && e->ts.type != BT_REAL)
616 : : {
617 : 1093 : if (e->ts.type == BT_CHARACTER)
618 : 1093 : return gfc_notify_std (GFC_STD_F2003, "Fortran 2003: Character for "
619 : : "%qs argument of %qs intrinsic at %L",
620 : 1093 : gfc_current_intrinsic_arg[n]->name,
621 : 1093 : gfc_current_intrinsic, &e->where);
622 : : else
623 : : {
624 : 0 : if (gfc_option.allow_std & GFC_STD_F2003)
625 : 0 : gfc_error ("%qs argument of %qs intrinsic at %L must be INTEGER "
626 : : "or REAL or CHARACTER",
627 : 0 : gfc_current_intrinsic_arg[n]->name,
628 : : gfc_current_intrinsic, &e->where);
629 : : else
630 : 0 : gfc_error ("%qs argument of %qs intrinsic at %L must be INTEGER "
631 : 0 : "or REAL", gfc_current_intrinsic_arg[n]->name,
632 : : gfc_current_intrinsic, &e->where);
633 : : }
634 : 0 : return false;
635 : : }
636 : :
637 : : return true;
638 : : }
639 : :
640 : : /* Check that an expression is integer or real or unsigned; allow character for
641 : : F2003 or later. */
642 : :
643 : : static bool
644 : 192 : int_or_real_or_char_or_unsigned_check_f2003 (gfc_expr *e, int n)
645 : : {
646 : 192 : if (e->ts.type != BT_INTEGER && e->ts.type != BT_REAL
647 : 144 : && e->ts.type != BT_UNSIGNED)
648 : : {
649 : 0 : if (e->ts.type == BT_CHARACTER)
650 : 0 : return gfc_notify_std (GFC_STD_F2003, "Fortran 2003: Character for "
651 : : "%qs argument of %qs intrinsic at %L",
652 : 0 : gfc_current_intrinsic_arg[n]->name,
653 : 0 : gfc_current_intrinsic, &e->where);
654 : : else
655 : : {
656 : 0 : if (gfc_option.allow_std & GFC_STD_F2003)
657 : 0 : gfc_error ("%qs argument of %qs intrinsic at %L must be INTEGER "
658 : : "or REAL or CHARACTER or UNSIGNED",
659 : 0 : gfc_current_intrinsic_arg[n]->name,
660 : : gfc_current_intrinsic, &e->where);
661 : : else
662 : 0 : gfc_error ("%qs argument of %qs intrinsic at %L must be INTEGER "
663 : : "or REAL or UNSIGNED",
664 : 0 : gfc_current_intrinsic_arg[n]->name,
665 : : gfc_current_intrinsic, &e->where);
666 : : }
667 : 0 : return false;
668 : : }
669 : :
670 : : return true;
671 : : }
672 : :
673 : : /* Check that an expression is an intrinsic type. */
674 : : static bool
675 : 1730 : intrinsic_type_check (gfc_expr *e, int n)
676 : : {
677 : 1730 : if (e->ts.type != BT_INTEGER && e->ts.type != BT_REAL
678 : : && e->ts.type != BT_COMPLEX && e->ts.type != BT_CHARACTER
679 : : && e->ts.type != BT_LOGICAL && e->ts.type != BT_UNSIGNED)
680 : : {
681 : 1 : gfc_error ("%qs argument of %qs intrinsic at %L must be of intrinsic type",
682 : 1 : gfc_current_intrinsic_arg[n]->name,
683 : : gfc_current_intrinsic, &e->where);
684 : 1 : return false;
685 : : }
686 : : return true;
687 : : }
688 : :
689 : : /* Check that an expression is real or complex. */
690 : :
691 : : static bool
692 : 3033 : real_or_complex_check (gfc_expr *e, int n)
693 : : {
694 : 3033 : if (e->ts.type != BT_REAL && e->ts.type != BT_COMPLEX)
695 : : {
696 : 0 : gfc_error ("%qs argument of %qs intrinsic at %L must be REAL "
697 : 0 : "or COMPLEX", gfc_current_intrinsic_arg[n]->name,
698 : : gfc_current_intrinsic, &e->where);
699 : 0 : return false;
700 : : }
701 : :
702 : : return true;
703 : : }
704 : :
705 : :
706 : : /* Check that an expression is INTEGER or PROCEDURE. */
707 : :
708 : : static bool
709 : 1 : int_or_proc_check (gfc_expr *e, int n)
710 : : {
711 : 1 : if (e->ts.type != BT_INTEGER && e->ts.type != BT_PROCEDURE)
712 : : {
713 : 0 : gfc_error ("%qs argument of %qs intrinsic at %L must be INTEGER "
714 : 0 : "or PROCEDURE", gfc_current_intrinsic_arg[n]->name,
715 : : gfc_current_intrinsic, &e->where);
716 : 0 : return false;
717 : : }
718 : :
719 : : return true;
720 : : }
721 : :
722 : :
723 : : /* Check that the expression is an optional constant integer
724 : : and that it specifies a valid kind for that type. */
725 : :
726 : : static bool
727 : 81914 : kind_check (gfc_expr *k, int n, bt type)
728 : : {
729 : 81914 : int kind;
730 : :
731 : 81914 : if (k == NULL)
732 : : return true;
733 : :
734 : 6906 : if (!type_check (k, n, BT_INTEGER))
735 : : return false;
736 : :
737 : 6906 : if (!scalar_check (k, n))
738 : : return false;
739 : :
740 : 6904 : if (!gfc_check_init_expr (k))
741 : : {
742 : 0 : gfc_error ("%qs argument of %qs intrinsic at %L must be a constant",
743 : 0 : gfc_current_intrinsic_arg[n]->name, gfc_current_intrinsic,
744 : : &k->where);
745 : 0 : return false;
746 : : }
747 : :
748 : 6904 : if (gfc_extract_int (k, &kind)
749 : 6904 : || gfc_validate_kind (type, kind, true) < 0)
750 : : {
751 : 1 : gfc_error ("Invalid kind for %s at %L", gfc_basic_typename (type),
752 : : &k->where);
753 : 1 : return false;
754 : : }
755 : :
756 : : return true;
757 : : }
758 : :
759 : :
760 : : /* Make sure the expression is a double precision real. */
761 : :
762 : : static bool
763 : 15117 : double_check (gfc_expr *d, int n)
764 : : {
765 : 15117 : if (!type_check (d, n, BT_REAL))
766 : : return false;
767 : :
768 : 11941 : if (d->ts.kind != gfc_default_double_kind)
769 : : {
770 : 6924 : gfc_error ("%qs argument of %qs intrinsic at %L must be double "
771 : 6924 : "precision", gfc_current_intrinsic_arg[n]->name,
772 : : gfc_current_intrinsic, &d->where);
773 : 6924 : return false;
774 : : }
775 : :
776 : : return true;
777 : : }
778 : :
779 : :
780 : : static bool
781 : 1240 : coarray_check (gfc_expr *e, int n)
782 : : {
783 : 98 : if (e->ts.type == BT_CLASS && gfc_expr_attr (e).class_ok
784 : 97 : && CLASS_DATA (e)->attr.codimension
785 : 1337 : && CLASS_DATA (e)->as->corank)
786 : : {
787 : 97 : gfc_add_class_array_ref (e);
788 : 97 : return true;
789 : : }
790 : :
791 : 1143 : if (!gfc_is_coarray (e))
792 : : {
793 : 9 : gfc_error ("Expected coarray variable as %qs argument to the %s "
794 : 9 : "intrinsic at %L", gfc_current_intrinsic_arg[n]->name,
795 : : gfc_current_intrinsic, &e->where);
796 : 9 : return false;
797 : : }
798 : :
799 : : return true;
800 : : }
801 : :
802 : :
803 : : /* Make sure the expression is a logical array. */
804 : :
805 : : static bool
806 : 36706 : logical_array_check (gfc_expr *array, int n)
807 : : {
808 : 36706 : if (array->ts.type != BT_LOGICAL || array->rank == 0)
809 : : {
810 : 0 : gfc_error ("%qs argument of %qs intrinsic at %L must be a logical "
811 : 0 : "array", gfc_current_intrinsic_arg[n]->name,
812 : : gfc_current_intrinsic, &array->where);
813 : 0 : return false;
814 : : }
815 : :
816 : : return true;
817 : : }
818 : :
819 : :
820 : : /* Make sure an expression is an array. */
821 : :
822 : : static bool
823 : 57328 : array_check (gfc_expr *e, int n)
824 : : {
825 : 57328 : if (e->rank != 0 && e->ts.type == BT_CLASS && gfc_expr_attr (e).class_ok
826 : 1071 : && CLASS_DATA (e)->attr.dimension
827 : 58399 : && CLASS_DATA (e)->as->rank)
828 : : {
829 : 1071 : gfc_add_class_array_ref (e);
830 : : }
831 : :
832 : 57328 : if (e->rank != 0 && e->ts.type != BT_PROCEDURE)
833 : : return true;
834 : :
835 : 11 : gfc_error ("%qs argument of %qs intrinsic at %L must be an array",
836 : 11 : gfc_current_intrinsic_arg[n]->name, gfc_current_intrinsic,
837 : : &e->where);
838 : :
839 : 11 : return false;
840 : : }
841 : :
842 : :
843 : : /* If expr is a constant, then check to ensure that it is greater than
844 : : of equal to zero. */
845 : :
846 : : static bool
847 : 11185 : nonnegative_check (const char *arg, gfc_expr *expr)
848 : : {
849 : 11185 : int i;
850 : :
851 : 11185 : if (expr->expr_type == EXPR_CONSTANT)
852 : : {
853 : 10267 : gfc_extract_int (expr, &i);
854 : 10267 : if (i < 0)
855 : : {
856 : 33 : gfc_error ("%qs at %L must be nonnegative", arg, &expr->where);
857 : 33 : return false;
858 : : }
859 : : }
860 : :
861 : : return true;
862 : : }
863 : :
864 : :
865 : : /* If expr is a constant, then check to ensure that it is greater than zero. */
866 : :
867 : : static bool
868 : 87 : positive_check (int n, gfc_expr *expr)
869 : : {
870 : 87 : int i;
871 : :
872 : 87 : if (expr->expr_type == EXPR_CONSTANT)
873 : : {
874 : 75 : gfc_extract_int (expr, &i);
875 : 75 : if (i <= 0)
876 : : {
877 : 8 : gfc_error ("%qs argument of %qs intrinsic at %L must be positive",
878 : 8 : gfc_current_intrinsic_arg[n]->name, gfc_current_intrinsic,
879 : : &expr->where);
880 : 8 : return false;
881 : : }
882 : : }
883 : :
884 : : return true;
885 : : }
886 : :
887 : :
888 : : /* If expr2 is constant, then check that the value is less than
889 : : (less than or equal to, if 'or_equal' is true) bit_size(expr1). */
890 : :
891 : : static bool
892 : 11232 : less_than_bitsize1 (const char *arg1, gfc_expr *expr1, const char *arg2,
893 : : gfc_expr *expr2, bool or_equal)
894 : : {
895 : 11232 : int i2, i3;
896 : :
897 : 11232 : if (expr2->expr_type == EXPR_CONSTANT)
898 : : {
899 : 9803 : gfc_extract_int (expr2, &i2);
900 : 9803 : i3 = gfc_validate_kind (BT_INTEGER, expr1->ts.kind, false);
901 : :
902 : : /* For ISHFT[C], check that |shift| <= bit_size(i). */
903 : 9803 : if (arg2 == NULL)
904 : : {
905 : 1088 : if (i2 < 0)
906 : 288 : i2 = -i2;
907 : :
908 : 1088 : if (i2 > gfc_integer_kinds[i3].bit_size)
909 : : {
910 : 4 : gfc_error ("The absolute value of SHIFT at %L must be less "
911 : : "than or equal to BIT_SIZE(%qs)",
912 : : &expr2->where, arg1);
913 : 4 : return false;
914 : : }
915 : : }
916 : :
917 : 9799 : if (or_equal)
918 : : {
919 : 9427 : if (i2 > gfc_integer_kinds[i3].bit_size)
920 : : {
921 : 7 : gfc_error ("%qs at %L must be less than "
922 : : "or equal to BIT_SIZE(%qs)",
923 : : arg2, &expr2->where, arg1);
924 : 7 : return false;
925 : : }
926 : : }
927 : : else
928 : : {
929 : 372 : if (i2 >= gfc_integer_kinds[i3].bit_size)
930 : : {
931 : 15 : gfc_error ("%qs at %L must be less than BIT_SIZE(%qs)",
932 : : arg2, &expr2->where, arg1);
933 : 15 : return false;
934 : : }
935 : : }
936 : : }
937 : :
938 : : return true;
939 : : }
940 : :
941 : :
942 : : /* If expr is constant, then check that the value is less than or equal
943 : : to the bit_size of the kind k. */
944 : :
945 : : static bool
946 : 1018 : less_than_bitsizekind (const char *arg, gfc_expr *expr, int k)
947 : : {
948 : 1018 : int i, val;
949 : 1018 : int bit_size;
950 : :
951 : 1018 : if (expr->expr_type != EXPR_CONSTANT)
952 : : return true;
953 : :
954 : 944 : i = gfc_validate_kind (expr->ts.type, k, false);
955 : 944 : gfc_extract_int (expr, &val);
956 : :
957 : 944 : if (expr->ts.type == BT_INTEGER)
958 : 944 : bit_size = gfc_integer_kinds[i].bit_size;
959 : : else
960 : 0 : bit_size = gfc_unsigned_kinds[i].bit_size;
961 : :
962 : 944 : if (val > bit_size)
963 : : {
964 : 4 : gfc_error ("%qs at %L must be less than or equal to the BIT_SIZE of "
965 : : "INTEGER(KIND=%d)", arg, &expr->where, k);
966 : 4 : return false;
967 : : }
968 : :
969 : : return true;
970 : : }
971 : :
972 : :
973 : : /* If expr2 and expr3 are constants, then check that the value is less than
974 : : or equal to bit_size(expr1). */
975 : :
976 : : static bool
977 : 466 : less_than_bitsize2 (const char *arg1, gfc_expr *expr1, const char *arg2,
978 : : gfc_expr *expr2, const char *arg3, gfc_expr *expr3)
979 : : {
980 : 466 : int i2, i3;
981 : 466 : int k, bit_size;
982 : :
983 : 466 : if (expr2->expr_type == EXPR_CONSTANT && expr3->expr_type == EXPR_CONSTANT)
984 : : {
985 : 310 : gfc_extract_int (expr2, &i2);
986 : 310 : gfc_extract_int (expr3, &i3);
987 : 310 : i2 += i3;
988 : 310 : k = gfc_validate_kind (expr1->ts.type, expr1->ts.kind, false);
989 : :
990 : 310 : if (expr1->ts.type == BT_INTEGER)
991 : 298 : bit_size = gfc_integer_kinds[k].bit_size;
992 : : else
993 : 12 : bit_size = gfc_unsigned_kinds[k].bit_size;
994 : :
995 : 310 : if (i2 > bit_size)
996 : : {
997 : 7 : gfc_error ("%<%s + %s%> at %L must be less than or equal "
998 : : "to BIT_SIZE(%qs)",
999 : : arg2, arg3, &expr2->where, arg1);
1000 : 7 : return false;
1001 : : }
1002 : : }
1003 : :
1004 : : return true;
1005 : : }
1006 : :
1007 : : /* Make sure two expressions have the same type. */
1008 : :
1009 : : static bool
1010 : 9284 : same_type_check (gfc_expr *e, int n, gfc_expr *f, int m, bool assoc = false)
1011 : : {
1012 : 9284 : gfc_typespec *ets = &e->ts;
1013 : 9284 : gfc_typespec *fts = &f->ts;
1014 : :
1015 : 9284 : if (assoc)
1016 : : {
1017 : : /* Procedure pointer component expressions have the type of the interface
1018 : : procedure. If they are being tested for association with a procedure
1019 : : pointer (ie. not a component), the type of the procedure must be
1020 : : determined. */
1021 : 1769 : if (e->ts.type == BT_PROCEDURE && e->symtree->n.sym)
1022 : 92 : ets = &e->symtree->n.sym->ts;
1023 : 1769 : if (f->ts.type == BT_PROCEDURE && f->symtree->n.sym)
1024 : 91 : fts = &f->symtree->n.sym->ts;
1025 : : }
1026 : :
1027 : 9284 : if (gfc_compare_types (ets, fts))
1028 : : return true;
1029 : :
1030 : 24 : gfc_error ("%qs argument of %qs intrinsic at %L must be the same type "
1031 : 24 : "and kind as %qs", gfc_current_intrinsic_arg[m]->name,
1032 : : gfc_current_intrinsic, &f->where,
1033 : 24 : gfc_current_intrinsic_arg[n]->name);
1034 : :
1035 : 24 : return false;
1036 : : }
1037 : :
1038 : :
1039 : : /* Make sure that an expression has a certain (nonzero) rank. */
1040 : :
1041 : : static bool
1042 : 13667 : rank_check (gfc_expr *e, int n, int rank)
1043 : : {
1044 : 13667 : if (e->rank == rank)
1045 : : return true;
1046 : :
1047 : 3 : gfc_error ("%qs argument of %qs intrinsic at %L must be of rank %d",
1048 : 3 : gfc_current_intrinsic_arg[n]->name, gfc_current_intrinsic,
1049 : : &e->where, rank);
1050 : :
1051 : 3 : return false;
1052 : : }
1053 : :
1054 : :
1055 : : /* Make sure a variable expression is not an optional dummy argument. */
1056 : :
1057 : : static bool
1058 : 22435 : nonoptional_check (gfc_expr *e, int n)
1059 : : {
1060 : 22435 : if (e->expr_type == EXPR_VARIABLE && e->symtree->n.sym->attr.optional)
1061 : : {
1062 : 2 : gfc_error ("%qs argument of %qs intrinsic at %L must not be OPTIONAL",
1063 : 2 : gfc_current_intrinsic_arg[n]->name, gfc_current_intrinsic,
1064 : : &e->where);
1065 : : }
1066 : :
1067 : : /* TODO: Recursive check on nonoptional variables? */
1068 : :
1069 : 22435 : return true;
1070 : : }
1071 : :
1072 : :
1073 : : /* Check for ALLOCATABLE attribute. */
1074 : :
1075 : : static bool
1076 : 7127 : allocatable_check (gfc_expr *e, int n)
1077 : : {
1078 : 7127 : symbol_attribute attr;
1079 : :
1080 : 7127 : attr = gfc_variable_attr (e, NULL);
1081 : 7127 : if (!attr.allocatable
1082 : 7117 : || (attr.associate_var && !attr.select_rank_temporary))
1083 : : {
1084 : 11 : gfc_error ("%qs argument of %qs intrinsic at %L must be ALLOCATABLE",
1085 : 11 : gfc_current_intrinsic_arg[n]->name, gfc_current_intrinsic,
1086 : : &e->where);
1087 : 11 : return false;
1088 : : }
1089 : :
1090 : : return true;
1091 : : }
1092 : :
1093 : :
1094 : : /* Check that an expression has a particular kind. */
1095 : :
1096 : : static bool
1097 : 2837 : kind_value_check (gfc_expr *e, int n, int k)
1098 : : {
1099 : 2837 : if (e->ts.kind == k)
1100 : : return true;
1101 : :
1102 : 140 : gfc_error ("%qs argument of %qs intrinsic at %L must be of kind %d",
1103 : 140 : gfc_current_intrinsic_arg[n]->name, gfc_current_intrinsic,
1104 : : &e->where, k);
1105 : :
1106 : 140 : return false;
1107 : : }
1108 : :
1109 : :
1110 : : /* Make sure an expression is a variable. */
1111 : :
1112 : : static bool
1113 : 19035 : variable_check (gfc_expr *e, int n, bool allow_proc)
1114 : : {
1115 : 19035 : if (e->expr_type == EXPR_VARIABLE
1116 : 19018 : && e->symtree->n.sym->attr.intent == INTENT_IN
1117 : 1296 : && (gfc_current_intrinsic_arg[n]->intent == INTENT_OUT
1118 : 1285 : || gfc_current_intrinsic_arg[n]->intent == INTENT_INOUT)
1119 : 19062 : && !gfc_check_vardef_context (e, false, true, false, NULL))
1120 : : {
1121 : 6 : gfc_error ("%qs argument of %qs intrinsic at %L cannot be INTENT(IN)",
1122 : 6 : gfc_current_intrinsic_arg[n]->name,
1123 : : gfc_current_intrinsic, &e->where);
1124 : 6 : return false;
1125 : : }
1126 : :
1127 : 19029 : if (e->expr_type == EXPR_VARIABLE
1128 : 19012 : && e->symtree->n.sym->attr.flavor != FL_PARAMETER
1129 : 19012 : && (allow_proc || !e->symtree->n.sym->attr.function))
1130 : : return true;
1131 : :
1132 : 73 : if (e->expr_type == EXPR_VARIABLE && e->symtree->n.sym->attr.function
1133 : 56 : && e->symtree->n.sym == e->symtree->n.sym->result)
1134 : : {
1135 : 56 : gfc_namespace *ns;
1136 : 67 : for (ns = gfc_current_ns; ns; ns = ns->parent)
1137 : 66 : if (ns->proc_name == e->symtree->n.sym)
1138 : : return true;
1139 : : }
1140 : :
1141 : : /* F2018:R902: function reference having a data pointer result. */
1142 : 18 : if (e->expr_type == EXPR_FUNCTION
1143 : 1 : && e->symtree->n.sym->attr.flavor == FL_PROCEDURE
1144 : : && e->symtree->n.sym->attr.function
1145 : 1 : && e->symtree->n.sym->attr.pointer)
1146 : : return true;
1147 : :
1148 : 17 : gfc_error ("%qs argument of %qs intrinsic at %L must be a variable",
1149 : 17 : gfc_current_intrinsic_arg[n]->name, gfc_current_intrinsic, &e->where);
1150 : :
1151 : 17 : return false;
1152 : : }
1153 : :
1154 : :
1155 : : /* Check the common DIM parameter for correctness. */
1156 : :
1157 : : static bool
1158 : 84120 : dim_check (gfc_expr *dim, int n, bool optional)
1159 : : {
1160 : 84120 : if (dim == NULL)
1161 : : return true;
1162 : :
1163 : 27562 : if (!type_check (dim, n, BT_INTEGER))
1164 : : return false;
1165 : :
1166 : 27561 : if (!scalar_check (dim, n))
1167 : : return false;
1168 : :
1169 : 27558 : if (!optional && !nonoptional_check (dim, n))
1170 : : return false;
1171 : :
1172 : : return true;
1173 : : }
1174 : :
1175 : :
1176 : : /* If a coarray DIM parameter is a constant, make sure that it is greater than
1177 : : zero and less than or equal to the corank of the given array. */
1178 : :
1179 : : static bool
1180 : 686 : dim_corank_check (gfc_expr *dim, gfc_expr *array)
1181 : : {
1182 : 686 : gcc_assert (array->expr_type == EXPR_VARIABLE);
1183 : :
1184 : 686 : if (dim->expr_type != EXPR_CONSTANT)
1185 : : return true;
1186 : :
1187 : 534 : if (array->ts.type == BT_CLASS)
1188 : : return true;
1189 : :
1190 : 504 : if (mpz_cmp_ui (dim->value.integer, 1) < 0
1191 : 504 : || mpz_cmp_ui (dim->value.integer, array->corank) > 0)
1192 : : {
1193 : 1 : gfc_error ("%<dim%> argument of %qs intrinsic at %L is not a valid "
1194 : : "codimension index", gfc_current_intrinsic, &dim->where);
1195 : :
1196 : 1 : return false;
1197 : : }
1198 : :
1199 : : return true;
1200 : : }
1201 : :
1202 : :
1203 : : /* If a DIM parameter is a constant, make sure that it is greater than
1204 : : zero and less than or equal to the rank of the given array. If
1205 : : allow_assumed is zero then dim must be less than the rank of the array
1206 : : for assumed size arrays. */
1207 : :
1208 : : static bool
1209 : 82737 : dim_rank_check (gfc_expr *dim, gfc_expr *array, int allow_assumed)
1210 : : {
1211 : 82737 : gfc_array_ref *ar;
1212 : 82737 : int rank;
1213 : :
1214 : 82737 : if (dim == NULL)
1215 : : return true;
1216 : :
1217 : 26179 : if (dim->expr_type != EXPR_CONSTANT)
1218 : : return true;
1219 : :
1220 : 24738 : if (array->expr_type == EXPR_FUNCTION && array->value.function.isym
1221 : 639 : && array->value.function.isym->id == GFC_ISYM_SPREAD)
1222 : 60 : rank = array->rank + 1;
1223 : : else
1224 : 24678 : rank = array->rank;
1225 : :
1226 : : /* Assumed-rank array. */
1227 : 24738 : if (rank == -1)
1228 : 1164 : rank = GFC_MAX_DIMENSIONS;
1229 : :
1230 : 24738 : if (array->expr_type == EXPR_VARIABLE)
1231 : : {
1232 : 23527 : ar = gfc_find_array_ref (array, true);
1233 : 23527 : if (!ar)
1234 : : return false;
1235 : 23526 : if (ar->as->type == AS_ASSUMED_SIZE
1236 : 430 : && !allow_assumed
1237 : 190 : && ar->type != AR_ELEMENT
1238 : 190 : && ar->type != AR_SECTION)
1239 : 184 : rank--;
1240 : : }
1241 : :
1242 : 24737 : if (mpz_cmp_ui (dim->value.integer, 1) < 0
1243 : 24735 : || mpz_cmp_ui (dim->value.integer, rank) > 0)
1244 : : {
1245 : 11 : gfc_error ("%<dim%> argument of %qs intrinsic at %L is not a valid "
1246 : : "dimension index", gfc_current_intrinsic, &dim->where);
1247 : :
1248 : 11 : return false;
1249 : : }
1250 : :
1251 : : return true;
1252 : : }
1253 : :
1254 : :
1255 : : /* Compare the size of a along dimension ai with the size of b along
1256 : : dimension bi, returning 0 if they are known not to be identical,
1257 : : and 1 if they are identical, or if this cannot be determined. */
1258 : :
1259 : : static bool
1260 : 2649 : identical_dimen_shape (gfc_expr *a, int ai, gfc_expr *b, int bi)
1261 : : {
1262 : 2649 : mpz_t a_size, b_size;
1263 : 2649 : bool ret;
1264 : :
1265 : 2649 : gcc_assert (a->rank > ai);
1266 : 2649 : gcc_assert (b->rank > bi);
1267 : :
1268 : 2649 : ret = true;
1269 : :
1270 : 2649 : if (gfc_array_dimen_size (a, ai, &a_size))
1271 : : {
1272 : 2144 : if (gfc_array_dimen_size (b, bi, &b_size))
1273 : : {
1274 : 2047 : if (mpz_cmp (a_size, b_size) != 0)
1275 : 10 : ret = false;
1276 : :
1277 : 2047 : mpz_clear (b_size);
1278 : : }
1279 : 2144 : mpz_clear (a_size);
1280 : : }
1281 : 2649 : return ret;
1282 : : }
1283 : :
1284 : : /* Calculate the length of a character variable, including substrings.
1285 : : Strip away parentheses if necessary. Return -1 if no length could
1286 : : be determined. */
1287 : :
1288 : : static long
1289 : 4656 : gfc_var_strlen (const gfc_expr *a)
1290 : : {
1291 : 4656 : gfc_ref *ra;
1292 : :
1293 : 4656 : while (a->expr_type == EXPR_OP && a->value.op.op == INTRINSIC_PARENTHESES)
1294 : 0 : a = a->value.op.op1;
1295 : :
1296 : 6476 : for (ra = a->ref; ra != NULL && ra->type != REF_SUBSTRING; ra = ra->next)
1297 : : ;
1298 : :
1299 : 4656 : if (ra)
1300 : : {
1301 : 207 : long start_a, end_a;
1302 : :
1303 : 207 : if (!ra->u.ss.end)
1304 : : return -1;
1305 : :
1306 : 206 : if ((!ra->u.ss.start || ra->u.ss.start->expr_type == EXPR_CONSTANT)
1307 : 197 : && ra->u.ss.end->expr_type == EXPR_CONSTANT)
1308 : : {
1309 : 191 : start_a = ra->u.ss.start ? mpz_get_si (ra->u.ss.start->value.integer)
1310 : : : 1;
1311 : 191 : end_a = mpz_get_si (ra->u.ss.end->value.integer);
1312 : 191 : return (end_a < start_a) ? 0 : end_a - start_a + 1;
1313 : : }
1314 : 15 : else if (ra->u.ss.start
1315 : 15 : && gfc_dep_compare_expr (ra->u.ss.start, ra->u.ss.end) == 0)
1316 : : return 1;
1317 : : else
1318 : 13 : return -1;
1319 : : }
1320 : :
1321 : 4449 : if (a->ts.u.cl && a->ts.u.cl->length
1322 : 2473 : && a->ts.u.cl->length->expr_type == EXPR_CONSTANT)
1323 : 2392 : return mpz_get_si (a->ts.u.cl->length->value.integer);
1324 : 2057 : else if (a->expr_type == EXPR_CONSTANT
1325 : 373 : && (a->ts.u.cl == NULL || a->ts.u.cl->length == NULL))
1326 : 373 : return a->value.character.length;
1327 : : else
1328 : : return -1;
1329 : :
1330 : : }
1331 : :
1332 : : /* Check whether two character expressions have the same length;
1333 : : returns true if they have or if the length cannot be determined,
1334 : : otherwise return false and raise a gfc_error. */
1335 : :
1336 : : bool
1337 : 1937 : gfc_check_same_strlen (const gfc_expr *a, const gfc_expr *b, const char *name)
1338 : : {
1339 : 1937 : long len_a, len_b;
1340 : :
1341 : 1937 : len_a = gfc_var_strlen(a);
1342 : 1937 : len_b = gfc_var_strlen(b);
1343 : :
1344 : 1937 : if (len_a == -1 || len_b == -1 || len_a == len_b)
1345 : : return true;
1346 : : else
1347 : : {
1348 : 23 : gfc_error ("Unequal character lengths (%ld/%ld) in %s at %L",
1349 : : len_a, len_b, name, &a->where);
1350 : 23 : return false;
1351 : : }
1352 : : }
1353 : :
1354 : : /* Check size of an array argument against a required size.
1355 : : Returns true if the requirement is satisfied or if the size cannot be
1356 : : determined, otherwise return false and raise a gfc_error */
1357 : :
1358 : : static bool
1359 : 110 : array_size_check (gfc_expr *a, int n, long size_min)
1360 : : {
1361 : 110 : bool ok = true;
1362 : 110 : mpz_t size;
1363 : :
1364 : 110 : if (gfc_array_size (a, &size))
1365 : : {
1366 : 110 : HOST_WIDE_INT sz = gfc_mpz_get_hwi (size);
1367 : 110 : if (size_min >= 0 && sz < size_min)
1368 : : {
1369 : 1 : gfc_error ("Size of %qs argument of %qs intrinsic at %L "
1370 : : "too small (%wd/%ld)",
1371 : 1 : gfc_current_intrinsic_arg[n]->name,
1372 : : gfc_current_intrinsic, &a->where, sz, size_min);
1373 : 1 : ok = false;
1374 : : }
1375 : 110 : mpz_clear (size);
1376 : : }
1377 : :
1378 : 110 : return ok;
1379 : : }
1380 : :
1381 : :
1382 : : /***** Check functions *****/
1383 : :
1384 : : /* Check subroutine suitable for intrinsics taking a real argument and
1385 : : a kind argument for the result. */
1386 : :
1387 : : static bool
1388 : 651 : check_a_kind (gfc_expr *a, gfc_expr *kind, bt type)
1389 : : {
1390 : 651 : if (!type_check (a, 0, BT_REAL))
1391 : : return false;
1392 : 651 : if (!kind_check (kind, 1, type))
1393 : : return false;
1394 : :
1395 : : return true;
1396 : : }
1397 : :
1398 : :
1399 : : /* Check subroutine suitable for ceiling, floor and nint. */
1400 : :
1401 : : bool
1402 : 389 : gfc_check_a_ikind (gfc_expr *a, gfc_expr *kind)
1403 : : {
1404 : 389 : return check_a_kind (a, kind, BT_INTEGER);
1405 : : }
1406 : :
1407 : :
1408 : : /* Check subroutine suitable for aint, anint. */
1409 : :
1410 : : bool
1411 : 262 : gfc_check_a_xkind (gfc_expr *a, gfc_expr *kind)
1412 : : {
1413 : 262 : return check_a_kind (a, kind, BT_REAL);
1414 : : }
1415 : :
1416 : :
1417 : : bool
1418 : 4443 : gfc_check_abs (gfc_expr *a)
1419 : : {
1420 : 4443 : if (!numeric_check (a, 0))
1421 : : return false;
1422 : :
1423 : : return true;
1424 : : }
1425 : :
1426 : :
1427 : : bool
1428 : 6806 : gfc_check_achar (gfc_expr *a, gfc_expr *kind)
1429 : : {
1430 : 6806 : if (a->ts.type == BT_BOZ)
1431 : : {
1432 : 0 : if (gfc_invalid_boz (G_("BOZ literal constant at %L cannot appear in "
1433 : : "ACHAR intrinsic subprogram"), &a->where))
1434 : : return false;
1435 : :
1436 : 0 : if (!gfc_boz2int (a, gfc_default_integer_kind))
1437 : : return false;
1438 : : }
1439 : :
1440 : 6806 : if (!type_check (a, 0, BT_INTEGER))
1441 : : return false;
1442 : :
1443 : 6806 : if (!kind_check (kind, 1, BT_CHARACTER))
1444 : : return false;
1445 : :
1446 : : return true;
1447 : : }
1448 : :
1449 : :
1450 : : bool
1451 : 292 : gfc_check_access_func (gfc_expr *name, gfc_expr *mode)
1452 : : {
1453 : 292 : if (!type_check (name, 0, BT_CHARACTER)
1454 : 292 : || !scalar_check (name, 0))
1455 : 0 : return false;
1456 : 292 : if (!kind_value_check (name, 0, gfc_default_character_kind))
1457 : : return false;
1458 : :
1459 : 290 : if (!type_check (mode, 1, BT_CHARACTER)
1460 : 290 : || !scalar_check (mode, 1))
1461 : 0 : return false;
1462 : 290 : if (!kind_value_check (mode, 1, gfc_default_character_kind))
1463 : : return false;
1464 : :
1465 : : return true;
1466 : : }
1467 : :
1468 : :
1469 : : bool
1470 : 36358 : gfc_check_all_any (gfc_expr *mask, gfc_expr *dim)
1471 : : {
1472 : 36358 : if (!logical_array_check (mask, 0))
1473 : : return false;
1474 : :
1475 : 36358 : if (!dim_check (dim, 1, false))
1476 : : return false;
1477 : :
1478 : 36358 : if (!dim_rank_check (dim, mask, 0))
1479 : : return false;
1480 : :
1481 : : return true;
1482 : : }
1483 : :
1484 : :
1485 : : /* Limited checking for ALLOCATED intrinsic. Additional checking
1486 : : is performed in intrinsic.cc(sort_actual), because ALLOCATED
1487 : : has two mutually exclusive non-optional arguments. */
1488 : :
1489 : : bool
1490 : 6600 : gfc_check_allocated (gfc_expr *array)
1491 : : {
1492 : : /* Tests on allocated components of coarrays need to detour the check to
1493 : : argument of the _caf_get. */
1494 : 6600 : if (flag_coarray == GFC_FCOARRAY_LIB && array->expr_type == EXPR_FUNCTION
1495 : 66 : && array->value.function.isym
1496 : 66 : && array->value.function.isym->id == GFC_ISYM_CAF_GET)
1497 : : {
1498 : 66 : array = array->value.function.actual->expr;
1499 : 66 : if (!array->ref)
1500 : : return false;
1501 : : }
1502 : :
1503 : 6600 : if (!variable_check (array, 0, false))
1504 : : return false;
1505 : 6599 : if (!allocatable_check (array, 0))
1506 : : return false;
1507 : :
1508 : : return true;
1509 : : }
1510 : :
1511 : : /* Common check function where the first argument must be real or
1512 : : integer and the second argument must be the same as the first. */
1513 : :
1514 : : bool
1515 : 73 : gfc_check_a_p (gfc_expr *a, gfc_expr *p)
1516 : : {
1517 : 73 : if (!int_or_real_check (a, 0))
1518 : : return false;
1519 : :
1520 : 73 : if (a->ts.type != p->ts.type)
1521 : : {
1522 : 0 : gfc_error ("%qs and %qs arguments of %qs intrinsic at %L must "
1523 : 0 : "have the same type", gfc_current_intrinsic_arg[0]->name,
1524 : 0 : gfc_current_intrinsic_arg[1]->name, gfc_current_intrinsic,
1525 : : &p->where);
1526 : 0 : return false;
1527 : : }
1528 : :
1529 : 73 : if (a->ts.kind != p->ts.kind)
1530 : : {
1531 : 0 : if (!gfc_notify_std (GFC_STD_GNU, "Different type kinds at %L",
1532 : : &p->where))
1533 : : return false;
1534 : : }
1535 : :
1536 : : return true;
1537 : : }
1538 : :
1539 : : /* Check function where the first argument must be real or integer (or
1540 : : unsigned) and the second argument must be the same as the first. */
1541 : :
1542 : : bool
1543 : 1589 : gfc_check_mod (gfc_expr *a, gfc_expr *p)
1544 : : {
1545 : 1589 : if (flag_unsigned)
1546 : : {
1547 : 78 : if (!int_or_real_or_unsigned_check (a,0))
1548 : : return false;
1549 : : }
1550 : 1511 : else if (!int_or_real_check (a, 0))
1551 : : return false;
1552 : :
1553 : 1589 : if (a->ts.type != p->ts.type)
1554 : : {
1555 : 0 : gfc_error ("%qs and %qs arguments of %qs intrinsic at %L must "
1556 : 0 : "have the same type", gfc_current_intrinsic_arg[0]->name,
1557 : 0 : gfc_current_intrinsic_arg[1]->name, gfc_current_intrinsic,
1558 : : &p->where);
1559 : 0 : return false;
1560 : : }
1561 : :
1562 : 1589 : if (a->ts.kind != p->ts.kind)
1563 : : {
1564 : 97 : if (!gfc_notify_std (GFC_STD_GNU, "Different type kinds at %L",
1565 : : &p->where))
1566 : : return false;
1567 : : }
1568 : :
1569 : : return true;
1570 : : }
1571 : :
1572 : :
1573 : : bool
1574 : 1473 : gfc_check_x_yd (gfc_expr *x, gfc_expr *y)
1575 : : {
1576 : 1473 : if (!double_check (x, 0) || !double_check (y, 1))
1577 : 1319 : return false;
1578 : :
1579 : : return true;
1580 : : }
1581 : :
1582 : : bool
1583 : 42326 : gfc_invalid_null_arg (gfc_expr *x)
1584 : : {
1585 : 42326 : if (x->expr_type == EXPR_NULL)
1586 : : {
1587 : 23 : gfc_error ("NULL at %L is not permitted as actual argument "
1588 : : "to %qs intrinsic function", &x->where,
1589 : : gfc_current_intrinsic);
1590 : 23 : return true;
1591 : : }
1592 : : return false;
1593 : : }
1594 : :
1595 : : bool
1596 : 6478 : gfc_check_associated (gfc_expr *pointer, gfc_expr *target)
1597 : : {
1598 : 6478 : symbol_attribute attr1, attr2;
1599 : 6478 : int i;
1600 : 6478 : bool t;
1601 : :
1602 : 6478 : if (gfc_invalid_null_arg (pointer))
1603 : : return false;
1604 : :
1605 : 6477 : attr1 = gfc_expr_attr (pointer);
1606 : :
1607 : 6477 : if (!attr1.pointer && !attr1.proc_pointer)
1608 : : {
1609 : 1 : gfc_error ("%qs argument of %qs intrinsic at %L must be a POINTER",
1610 : 1 : gfc_current_intrinsic_arg[0]->name, gfc_current_intrinsic,
1611 : : &pointer->where);
1612 : 1 : return false;
1613 : : }
1614 : :
1615 : : /* F2008, C1242. */
1616 : 6476 : if (attr1.pointer && gfc_is_coindexed (pointer))
1617 : : {
1618 : 1 : gfc_error ("%qs argument of %qs intrinsic at %L shall not be "
1619 : 1 : "coindexed", gfc_current_intrinsic_arg[0]->name,
1620 : : gfc_current_intrinsic, &pointer->where);
1621 : 1 : return false;
1622 : : }
1623 : :
1624 : : /* Target argument is optional. */
1625 : 6475 : if (target == NULL)
1626 : : return true;
1627 : :
1628 : 1772 : if (gfc_invalid_null_arg (target))
1629 : : return false;
1630 : :
1631 : 1771 : if (target->expr_type == EXPR_VARIABLE || target->expr_type == EXPR_FUNCTION)
1632 : 1770 : attr2 = gfc_expr_attr (target);
1633 : : else
1634 : : {
1635 : 1 : gfc_error ("%qs argument of %qs intrinsic at %L must be a pointer "
1636 : : "or target VARIABLE or FUNCTION",
1637 : 1 : gfc_current_intrinsic_arg[1]->name, gfc_current_intrinsic,
1638 : : &target->where);
1639 : 1 : return false;
1640 : : }
1641 : :
1642 : 1770 : if (attr1.pointer && !attr2.pointer && !attr2.target)
1643 : : {
1644 : 0 : gfc_error ("%qs argument of %qs intrinsic at %L must be a POINTER "
1645 : 0 : "or a TARGET", gfc_current_intrinsic_arg[1]->name,
1646 : : gfc_current_intrinsic, &target->where);
1647 : 0 : return false;
1648 : : }
1649 : :
1650 : : /* F2008, C1242. */
1651 : 1770 : if (attr1.pointer && gfc_is_coindexed (target))
1652 : : {
1653 : 1 : gfc_error ("%qs argument of %qs intrinsic at %L shall not be "
1654 : 1 : "coindexed", gfc_current_intrinsic_arg[1]->name,
1655 : : gfc_current_intrinsic, &target->where);
1656 : 1 : return false;
1657 : : }
1658 : :
1659 : 1769 : t = true;
1660 : 1769 : if (!same_type_check (pointer, 0, target, 1, true))
1661 : : t = false;
1662 : : /* F2018 C838 explicitly allows an assumed-rank variable as the first
1663 : : argument of intrinsic inquiry functions. */
1664 : 1769 : if (pointer->rank != -1 && !rank_check (target, 0, pointer->rank))
1665 : : t = false;
1666 : 1769 : if (target->rank > 0 && target->ref)
1667 : : {
1668 : 2103 : for (i = 0; i < target->rank; i++)
1669 : 1191 : if (target->ref->u.ar.dimen_type[i] == DIMEN_VECTOR)
1670 : : {
1671 : 0 : gfc_error ("Array section with a vector subscript at %L shall not "
1672 : : "be the target of a pointer",
1673 : : &target->where);
1674 : 0 : t = false;
1675 : 0 : break;
1676 : : }
1677 : : }
1678 : : return t;
1679 : : }
1680 : :
1681 : :
1682 : : bool
1683 : 74 : gfc_check_atan_2 (gfc_expr *y, gfc_expr *x)
1684 : : {
1685 : : /* gfc_notify_std would be a waste of time as the return value
1686 : : is seemingly used only for the generic resolution. The error
1687 : : will be: Too many arguments. */
1688 : 74 : if ((gfc_option.allow_std & GFC_STD_F2008) == 0)
1689 : : return false;
1690 : :
1691 : 72 : return gfc_check_atan2 (y, x);
1692 : : }
1693 : :
1694 : :
1695 : : bool
1696 : 413 : gfc_check_atan2 (gfc_expr *y, gfc_expr *x)
1697 : : {
1698 : 413 : if (!type_check (y, 0, BT_REAL))
1699 : : return false;
1700 : 409 : if (!same_type_check (y, 0, x, 1))
1701 : : return false;
1702 : :
1703 : : return true;
1704 : : }
1705 : :
1706 : :
1707 : : static bool
1708 : 275 : gfc_check_atomic (gfc_expr *atom, int atom_no, gfc_expr *value, int val_no,
1709 : : gfc_expr *stat, int stat_no)
1710 : : {
1711 : 275 : if (!scalar_check (atom, atom_no) || !scalar_check (value, val_no))
1712 : 1 : return false;
1713 : :
1714 : 274 : if (!(atom->ts.type == BT_INTEGER && atom->ts.kind == gfc_atomic_int_kind)
1715 : 50 : && !(atom->ts.type == BT_LOGICAL
1716 : 47 : && atom->ts.kind == gfc_atomic_logical_kind))
1717 : : {
1718 : 7 : gfc_error ("ATOM argument at %L to intrinsic function %s shall be an "
1719 : : "integer of ATOMIC_INT_KIND or a logical of "
1720 : : "ATOMIC_LOGICAL_KIND", &atom->where, gfc_current_intrinsic);
1721 : 7 : return false;
1722 : : }
1723 : :
1724 : 267 : if (!gfc_is_coarray (atom) && !gfc_is_coindexed (atom))
1725 : : {
1726 : 14 : gfc_error ("ATOM argument at %L of the %s intrinsic function shall be a "
1727 : : "coarray or coindexed", &atom->where, gfc_current_intrinsic);
1728 : 14 : return false;
1729 : : }
1730 : :
1731 : 253 : if (atom->ts.type != value->ts.type)
1732 : : {
1733 : 13 : gfc_error ("%qs argument of %qs intrinsic at %L shall have the same "
1734 : 13 : "type as %qs at %L", gfc_current_intrinsic_arg[val_no]->name,
1735 : : gfc_current_intrinsic, &value->where,
1736 : 13 : gfc_current_intrinsic_arg[atom_no]->name, &atom->where);
1737 : 13 : return false;
1738 : : }
1739 : :
1740 : 240 : if (stat != NULL)
1741 : : {
1742 : 211 : if (!type_check (stat, stat_no, BT_INTEGER))
1743 : : return false;
1744 : 211 : if (!scalar_check (stat, stat_no))
1745 : : return false;
1746 : 211 : if (!variable_check (stat, stat_no, false))
1747 : : return false;
1748 : 211 : if (!kind_value_check (stat, stat_no, gfc_default_integer_kind))
1749 : : return false;
1750 : :
1751 : 200 : if (!gfc_notify_std (GFC_STD_F2018, "STAT= argument to %s at %L",
1752 : : gfc_current_intrinsic, &stat->where))
1753 : : return false;
1754 : : }
1755 : :
1756 : : return true;
1757 : : }
1758 : :
1759 : :
1760 : : bool
1761 : 73 : gfc_check_atomic_def (gfc_expr *atom, gfc_expr *value, gfc_expr *stat)
1762 : : {
1763 : 73 : if (atom->expr_type == EXPR_FUNCTION
1764 : 15 : && atom->value.function.isym
1765 : 15 : && atom->value.function.isym->id == GFC_ISYM_CAF_GET)
1766 : 15 : atom = atom->value.function.actual->expr;
1767 : :
1768 : 73 : if (!gfc_check_vardef_context (atom, false, false, false, NULL))
1769 : : {
1770 : 0 : gfc_error ("ATOM argument of the %s intrinsic function at %L shall be "
1771 : : "definable", gfc_current_intrinsic, &atom->where);
1772 : 0 : return false;
1773 : : }
1774 : :
1775 : 73 : return gfc_check_atomic (atom, 0, value, 1, stat, 2);
1776 : : }
1777 : :
1778 : :
1779 : : bool
1780 : 51 : gfc_check_atomic_op (gfc_expr *atom, gfc_expr *value, gfc_expr *stat)
1781 : : {
1782 : 51 : if (atom->ts.type != BT_INTEGER || atom->ts.kind != gfc_atomic_int_kind)
1783 : : {
1784 : 4 : gfc_error ("ATOM argument at %L to intrinsic function %s shall be an "
1785 : : "integer of ATOMIC_INT_KIND", &atom->where,
1786 : : gfc_current_intrinsic);
1787 : 4 : return false;
1788 : : }
1789 : :
1790 : 47 : return gfc_check_atomic_def (atom, value, stat);
1791 : : }
1792 : :
1793 : :
1794 : : bool
1795 : 130 : gfc_check_atomic_ref (gfc_expr *value, gfc_expr *atom, gfc_expr *stat)
1796 : : {
1797 : 130 : if (atom->expr_type == EXPR_FUNCTION
1798 : 52 : && atom->value.function.isym
1799 : 52 : && atom->value.function.isym->id == GFC_ISYM_CAF_GET)
1800 : 52 : atom = atom->value.function.actual->expr;
1801 : :
1802 : 130 : if (!gfc_check_vardef_context (value, false, false, false, NULL))
1803 : : {
1804 : 1 : gfc_error ("VALUE argument of the %s intrinsic function at %L shall be "
1805 : : "definable", gfc_current_intrinsic, &value->where);
1806 : 1 : return false;
1807 : : }
1808 : :
1809 : 129 : return gfc_check_atomic (atom, 1, value, 0, stat, 2);
1810 : : }
1811 : :
1812 : :
1813 : : bool
1814 : 39 : gfc_check_image_status (gfc_expr *image, gfc_expr *team)
1815 : : {
1816 : : /* IMAGE has to be a positive, scalar integer. */
1817 : 76 : if (!type_check (image, 0, BT_INTEGER) || !scalar_check (image, 0)
1818 : 74 : || !positive_check (0, image))
1819 : 8 : return false;
1820 : :
1821 : 31 : if (team)
1822 : : {
1823 : 2 : gfc_error ("%qs argument of %qs intrinsic at %L not yet supported",
1824 : 2 : gfc_current_intrinsic_arg[1]->name, gfc_current_intrinsic,
1825 : : &team->where);
1826 : 2 : return false;
1827 : : }
1828 : : return true;
1829 : : }
1830 : :
1831 : :
1832 : : bool
1833 : 80 : gfc_check_failed_or_stopped_images (gfc_expr *team, gfc_expr *kind)
1834 : : {
1835 : 80 : if (team)
1836 : : {
1837 : 4 : gfc_error ("%qs argument of %qs intrinsic at %L not yet supported",
1838 : 4 : gfc_current_intrinsic_arg[0]->name, gfc_current_intrinsic,
1839 : : &team->where);
1840 : 4 : return false;
1841 : : }
1842 : :
1843 : 76 : if (kind)
1844 : : {
1845 : 56 : int k;
1846 : :
1847 : 108 : if (!type_check (kind, 1, BT_INTEGER) || !scalar_check (kind, 1)
1848 : 108 : || !positive_check (1, kind))
1849 : 16 : return false;
1850 : :
1851 : : /* Get the kind, reporting error on non-constant or overflow. */
1852 : 48 : gfc_current_locus = kind->where;
1853 : 48 : if (gfc_extract_int (kind, &k, 1))
1854 : : return false;
1855 : 44 : if (gfc_validate_kind (BT_INTEGER, k, true) == -1)
1856 : : {
1857 : 4 : gfc_error ("%qs argument of %qs intrinsic at %L shall specify a "
1858 : 4 : "valid integer kind", gfc_current_intrinsic_arg[1]->name,
1859 : : gfc_current_intrinsic, &kind->where);
1860 : 4 : return false;
1861 : : }
1862 : : }
1863 : : return true;
1864 : : }
1865 : :
1866 : :
1867 : : bool
1868 : 1 : gfc_check_get_team (gfc_expr *level)
1869 : : {
1870 : 1 : if (level)
1871 : : {
1872 : 0 : gfc_error ("%qs argument of %qs intrinsic at %L not yet supported",
1873 : 0 : gfc_current_intrinsic_arg[0]->name, gfc_current_intrinsic,
1874 : : &level->where);
1875 : 0 : return false;
1876 : : }
1877 : : return true;
1878 : : }
1879 : :
1880 : :
1881 : : bool
1882 : 23 : gfc_check_atomic_cas (gfc_expr *atom, gfc_expr *old, gfc_expr *compare,
1883 : : gfc_expr *new_val, gfc_expr *stat)
1884 : : {
1885 : 23 : if (atom->expr_type == EXPR_FUNCTION
1886 : 4 : && atom->value.function.isym
1887 : 4 : && atom->value.function.isym->id == GFC_ISYM_CAF_GET)
1888 : 4 : atom = atom->value.function.actual->expr;
1889 : :
1890 : 23 : if (!gfc_check_atomic (atom, 0, new_val, 3, stat, 4))
1891 : : return false;
1892 : :
1893 : 16 : if (!scalar_check (old, 1) || !scalar_check (compare, 2))
1894 : 0 : return false;
1895 : :
1896 : 16 : if (!same_type_check (atom, 0, old, 1))
1897 : : return false;
1898 : :
1899 : 14 : if (!same_type_check (atom, 0, compare, 2))
1900 : : return false;
1901 : :
1902 : 12 : if (!gfc_check_vardef_context (atom, false, false, false, NULL))
1903 : : {
1904 : 0 : gfc_error ("ATOM argument of the %s intrinsic function at %L shall be "
1905 : : "definable", gfc_current_intrinsic, &atom->where);
1906 : 0 : return false;
1907 : : }
1908 : :
1909 : 12 : if (!gfc_check_vardef_context (old, false, false, false, NULL))
1910 : : {
1911 : 0 : gfc_error ("OLD argument of the %s intrinsic function at %L shall be "
1912 : : "definable", gfc_current_intrinsic, &old->where);
1913 : 0 : return false;
1914 : : }
1915 : :
1916 : : return true;
1917 : : }
1918 : :
1919 : : bool
1920 : 70 : gfc_check_event_query (gfc_expr *event, gfc_expr *count, gfc_expr *stat)
1921 : : {
1922 : 70 : if (event->ts.type != BT_DERIVED
1923 : 70 : || event->ts.u.derived->from_intmod != INTMOD_ISO_FORTRAN_ENV
1924 : 70 : || event->ts.u.derived->intmod_sym_id != ISOFORTRAN_EVENT_TYPE)
1925 : : {
1926 : 0 : gfc_error ("EVENT argument at %L to the intrinsic EVENT_QUERY "
1927 : : "shall be of type EVENT_TYPE", &event->where);
1928 : 0 : return false;
1929 : : }
1930 : :
1931 : 70 : if (!scalar_check (event, 0))
1932 : : return false;
1933 : :
1934 : 70 : if (!gfc_check_vardef_context (count, false, false, false, NULL))
1935 : : {
1936 : 0 : gfc_error ("COUNT argument of the EVENT_QUERY intrinsic function at %L "
1937 : : "shall be definable", &count->where);
1938 : 0 : return false;
1939 : : }
1940 : :
1941 : 70 : if (!type_check (count, 1, BT_INTEGER))
1942 : : return false;
1943 : :
1944 : 70 : int i = gfc_validate_kind (BT_INTEGER, count->ts.kind, false);
1945 : 70 : int j = gfc_validate_kind (BT_INTEGER, gfc_default_integer_kind, false);
1946 : :
1947 : 70 : if (gfc_integer_kinds[i].range < gfc_integer_kinds[j].range)
1948 : : {
1949 : 0 : gfc_error ("COUNT argument of the EVENT_QUERY intrinsic function at %L "
1950 : : "shall have at least the range of the default integer",
1951 : : &count->where);
1952 : 0 : return false;
1953 : : }
1954 : :
1955 : 70 : if (stat != NULL)
1956 : : {
1957 : 12 : if (!type_check (stat, 2, BT_INTEGER))
1958 : : return false;
1959 : 12 : if (!scalar_check (stat, 2))
1960 : : return false;
1961 : 12 : if (!variable_check (stat, 2, false))
1962 : : return false;
1963 : :
1964 : 12 : if (!gfc_notify_std (GFC_STD_F2018, "STAT= argument to %s at %L",
1965 : : gfc_current_intrinsic, &stat->where))
1966 : : return false;
1967 : : }
1968 : :
1969 : : return true;
1970 : : }
1971 : :
1972 : :
1973 : : bool
1974 : 54 : gfc_check_atomic_fetch_op (gfc_expr *atom, gfc_expr *value, gfc_expr *old,
1975 : : gfc_expr *stat)
1976 : : {
1977 : 54 : if (atom->expr_type == EXPR_FUNCTION
1978 : 10 : && atom->value.function.isym
1979 : 10 : && atom->value.function.isym->id == GFC_ISYM_CAF_GET)
1980 : 10 : atom = atom->value.function.actual->expr;
1981 : :
1982 : 54 : if (atom->ts.type != BT_INTEGER || atom->ts.kind != gfc_atomic_int_kind)
1983 : : {
1984 : 4 : gfc_error ("ATOM argument at %L to intrinsic function %s shall be an "
1985 : : "integer of ATOMIC_INT_KIND", &atom->where,
1986 : : gfc_current_intrinsic);
1987 : 4 : return false;
1988 : : }
1989 : :
1990 : 50 : if (!gfc_check_atomic (atom, 0, value, 1, stat, 3))
1991 : : return false;
1992 : :
1993 : 38 : if (!scalar_check (old, 2))
1994 : : return false;
1995 : :
1996 : 38 : if (!same_type_check (atom, 0, old, 2))
1997 : : return false;
1998 : :
1999 : 34 : if (!gfc_check_vardef_context (atom, false, false, false, NULL))
2000 : : {
2001 : 0 : gfc_error ("ATOM argument of the %s intrinsic function at %L shall be "
2002 : : "definable", gfc_current_intrinsic, &atom->where);
2003 : 0 : return false;
2004 : : }
2005 : :
2006 : 34 : if (!gfc_check_vardef_context (old, false, false, false, NULL))
2007 : : {
2008 : 0 : gfc_error ("OLD argument of the %s intrinsic function at %L shall be "
2009 : : "definable", gfc_current_intrinsic, &old->where);
2010 : 0 : return false;
2011 : : }
2012 : :
2013 : : return true;
2014 : : }
2015 : :
2016 : :
2017 : : /* BESJN and BESYN functions. */
2018 : :
2019 : : bool
2020 : 234 : gfc_check_besn (gfc_expr *n, gfc_expr *x)
2021 : : {
2022 : 234 : if (!type_check (n, 0, BT_INTEGER))
2023 : : return false;
2024 : 234 : if (n->expr_type == EXPR_CONSTANT)
2025 : : {
2026 : 59 : int i;
2027 : 59 : gfc_extract_int (n, &i);
2028 : 59 : if (i < 0 && !gfc_notify_std (GFC_STD_GNU, "Negative argument "
2029 : : "N at %L", &n->where))
2030 : 2 : return false;
2031 : : }
2032 : :
2033 : 232 : if (!type_check (x, 1, BT_REAL))
2034 : : return false;
2035 : :
2036 : : return true;
2037 : : }
2038 : :
2039 : :
2040 : : /* Transformational version of the Bessel JN and YN functions. */
2041 : :
2042 : : bool
2043 : 66 : gfc_check_bessel_n2 (gfc_expr *n1, gfc_expr *n2, gfc_expr *x)
2044 : : {
2045 : 66 : if (!type_check (n1, 0, BT_INTEGER))
2046 : : return false;
2047 : 66 : if (!scalar_check (n1, 0))
2048 : : return false;
2049 : 66 : if (!nonnegative_check ("N1", n1))
2050 : : return false;
2051 : :
2052 : 65 : if (!type_check (n2, 1, BT_INTEGER))
2053 : : return false;
2054 : 65 : if (!scalar_check (n2, 1))
2055 : : return false;
2056 : 65 : if (!nonnegative_check ("N2", n2))
2057 : : return false;
2058 : :
2059 : 65 : if (!type_check (x, 2, BT_REAL))
2060 : : return false;
2061 : 65 : if (!scalar_check (x, 2))
2062 : : return false;
2063 : :
2064 : : return true;
2065 : : }
2066 : :
2067 : :
2068 : : bool
2069 : 1662 : gfc_check_bge_bgt_ble_blt (gfc_expr *i, gfc_expr *j)
2070 : : {
2071 : 1662 : extern int gfc_max_integer_kind;
2072 : :
2073 : : /* If i and j are both BOZ, convert to widest INTEGER. */
2074 : 1662 : if (i->ts.type == BT_BOZ && j->ts.type == BT_BOZ)
2075 : : {
2076 : 24 : if (!gfc_boz2int (i, gfc_max_integer_kind))
2077 : : return false;
2078 : 24 : if (!gfc_boz2int (j, gfc_max_integer_kind))
2079 : : return false;
2080 : : }
2081 : :
2082 : : /* If i is BOZ and j is integer, convert i to type of j. */
2083 : 24 : if (i->ts.type == BT_BOZ && j->ts.type == BT_INTEGER
2084 : 1686 : && !gfc_boz2int (i, j->ts.kind))
2085 : : return false;
2086 : :
2087 : : /* If j is BOZ and i is integer, convert j to type of i. */
2088 : 24 : if (j->ts.type == BT_BOZ && i->ts.type == BT_INTEGER
2089 : 1686 : && !gfc_boz2int (j, i->ts.kind))
2090 : : return false;
2091 : :
2092 : 1662 : if (flag_unsigned)
2093 : : {
2094 : : /* If i is BOZ and j is UNSIGNED, convert i to type of j. */
2095 : 0 : if (i->ts.type == BT_BOZ && j->ts.type == BT_UNSIGNED
2096 : 480 : && !gfc_boz2uint (i, j->ts.kind))
2097 : : return false;
2098 : :
2099 : : /* If j is BOZ and i is UNSIGNED, convert j to type of i. */
2100 : 0 : if (j->ts.type == BT_BOZ && i->ts.type == BT_UNSIGNED
2101 : 480 : && !gfc_boz2uint (j, i->ts.kind))
2102 : : return false;
2103 : :
2104 : 480 : if (gfc_invalid_unsigned_ops (i,j))
2105 : : return false;
2106 : :
2107 : 480 : if (!type_check2 (i, 0, BT_INTEGER, BT_UNSIGNED))
2108 : : return false;
2109 : :
2110 : 480 : if (!type_check2 (j, 1, BT_INTEGER, BT_UNSIGNED))
2111 : : return false;
2112 : :
2113 : : }
2114 : : else
2115 : : {
2116 : 1182 : if (!type_check (i, 0, BT_INTEGER))
2117 : : return false;
2118 : :
2119 : 1182 : if (!type_check (j, 1, BT_INTEGER))
2120 : : return false;
2121 : : }
2122 : :
2123 : : return true;
2124 : : }
2125 : :
2126 : :
2127 : : bool
2128 : 777 : gfc_check_bitfcn (gfc_expr *i, gfc_expr *pos)
2129 : : {
2130 : 777 : if (flag_unsigned)
2131 : : {
2132 : 102 : if (!type_check2 (i, 0, BT_INTEGER, BT_UNSIGNED))
2133 : : return false;
2134 : : }
2135 : : else
2136 : : {
2137 : 675 : if (!type_check (i, 0, BT_INTEGER))
2138 : : return false;
2139 : : }
2140 : :
2141 : 777 : if (!type_check (pos, 1, BT_INTEGER))
2142 : : return false;
2143 : :
2144 : 777 : if (!nonnegative_check ("pos", pos))
2145 : : return false;
2146 : :
2147 : 762 : if (!less_than_bitsize1 ("i", i, "pos", pos, false))
2148 : : return false;
2149 : :
2150 : : return true;
2151 : : }
2152 : :
2153 : :
2154 : : bool
2155 : 1024 : gfc_check_char (gfc_expr *i, gfc_expr *kind)
2156 : : {
2157 : 1024 : if (i->ts.type == BT_BOZ)
2158 : : {
2159 : 0 : if (gfc_invalid_boz (G_("BOZ literal constant at %L cannot appear in "
2160 : : "CHAR intrinsic subprogram"), &i->where))
2161 : : return false;
2162 : :
2163 : 0 : if (!gfc_boz2int (i, gfc_default_integer_kind))
2164 : : return false;
2165 : : }
2166 : :
2167 : 1024 : if (!type_check (i, 0, BT_INTEGER))
2168 : : return false;
2169 : :
2170 : 1024 : if (!kind_check (kind, 1, BT_CHARACTER))
2171 : : return false;
2172 : :
2173 : : return true;
2174 : : }
2175 : :
2176 : :
2177 : : bool
2178 : 5 : gfc_check_chdir (gfc_expr *dir)
2179 : : {
2180 : 5 : if (!type_check (dir, 0, BT_CHARACTER))
2181 : : return false;
2182 : 5 : if (!kind_value_check (dir, 0, gfc_default_character_kind))
2183 : : return false;
2184 : :
2185 : : return true;
2186 : : }
2187 : :
2188 : :
2189 : : bool
2190 : 11 : gfc_check_chdir_sub (gfc_expr *dir, gfc_expr *status)
2191 : : {
2192 : 11 : if (!type_check (dir, 0, BT_CHARACTER))
2193 : : return false;
2194 : 11 : if (!kind_value_check (dir, 0, gfc_default_character_kind))
2195 : : return false;
2196 : :
2197 : 9 : if (status == NULL)
2198 : : return true;
2199 : :
2200 : 7 : if (!type_check (status, 1, BT_INTEGER))
2201 : : return false;
2202 : 7 : if (!scalar_check (status, 1))
2203 : : return false;
2204 : :
2205 : : return true;
2206 : : }
2207 : :
2208 : :
2209 : : bool
2210 : 40 : gfc_check_chmod (gfc_expr *name, gfc_expr *mode)
2211 : : {
2212 : 40 : if (!type_check (name, 0, BT_CHARACTER))
2213 : : return false;
2214 : 40 : if (!kind_value_check (name, 0, gfc_default_character_kind))
2215 : : return false;
2216 : :
2217 : 38 : if (!type_check (mode, 1, BT_CHARACTER))
2218 : : return false;
2219 : 38 : if (!kind_value_check (mode, 1, gfc_default_character_kind))
2220 : : return false;
2221 : :
2222 : : return true;
2223 : : }
2224 : :
2225 : :
2226 : : bool
2227 : 20 : gfc_check_chmod_sub (gfc_expr *name, gfc_expr *mode, gfc_expr *status)
2228 : : {
2229 : 20 : if (!type_check (name, 0, BT_CHARACTER))
2230 : : return false;
2231 : 20 : if (!kind_value_check (name, 0, gfc_default_character_kind))
2232 : : return false;
2233 : :
2234 : 16 : if (!type_check (mode, 1, BT_CHARACTER))
2235 : : return false;
2236 : 16 : if (!kind_value_check (mode, 1, gfc_default_character_kind))
2237 : : return false;
2238 : :
2239 : 14 : if (status == NULL)
2240 : : return true;
2241 : :
2242 : 13 : if (!type_check (status, 2, BT_INTEGER))
2243 : : return false;
2244 : :
2245 : 13 : if (!scalar_check (status, 2))
2246 : : return false;
2247 : :
2248 : : return true;
2249 : : }
2250 : :
2251 : :
2252 : : bool
2253 : 2215 : gfc_check_cmplx (gfc_expr *x, gfc_expr *y, gfc_expr *kind)
2254 : : {
2255 : 2215 : int k;
2256 : :
2257 : : /* Check kind first, because it may be needed in conversion of a BOZ. */
2258 : 2215 : if (kind)
2259 : : {
2260 : 1248 : if (!kind_check (kind, 2, BT_COMPLEX))
2261 : : return false;
2262 : 1248 : gfc_extract_int (kind, &k);
2263 : : }
2264 : : else
2265 : 967 : k = gfc_default_complex_kind;
2266 : :
2267 : 2215 : if (x->ts.type == BT_BOZ && !gfc_boz2real (x, k))
2268 : : return false;
2269 : :
2270 : 2215 : if (!numeric_check (x, 0))
2271 : : return false;
2272 : :
2273 : 2215 : if (y != NULL)
2274 : : {
2275 : 2062 : if (y->ts.type == BT_BOZ && !gfc_boz2real (y, k))
2276 : : return false;
2277 : :
2278 : 2062 : if (!numeric_check (y, 1))
2279 : : return false;
2280 : :
2281 : 2062 : if (x->ts.type == BT_COMPLEX)
2282 : : {
2283 : 0 : gfc_error ("%qs argument of %qs intrinsic at %L must not be "
2284 : : "present if %<x%> is COMPLEX",
2285 : 0 : gfc_current_intrinsic_arg[1]->name, gfc_current_intrinsic,
2286 : : &y->where);
2287 : 0 : return false;
2288 : : }
2289 : :
2290 : 2062 : if (y->ts.type == BT_COMPLEX)
2291 : : {
2292 : 1 : gfc_error ("%qs argument of %qs intrinsic at %L must have a type "
2293 : : "of either REAL or INTEGER",
2294 : 1 : gfc_current_intrinsic_arg[1]->name, gfc_current_intrinsic,
2295 : : &y->where);
2296 : 1 : return false;
2297 : : }
2298 : : }
2299 : :
2300 : 2214 : if (!kind && warn_conversion
2301 : 6 : && x->ts.type == BT_REAL && x->ts.kind > gfc_default_real_kind)
2302 : 2 : gfc_warning_now (OPT_Wconversion, "Conversion from %s to default-kind "
2303 : : "COMPLEX(%d) at %L might lose precision, consider using "
2304 : : "the KIND argument", gfc_typename (&x->ts),
2305 : : gfc_default_real_kind, &x->where);
2306 : 2212 : else if (y && !kind && warn_conversion
2307 : 4 : && y->ts.type == BT_REAL && y->ts.kind > gfc_default_real_kind)
2308 : 1 : gfc_warning_now (OPT_Wconversion, "Conversion from %s to default-kind "
2309 : : "COMPLEX(%d) at %L might lose precision, consider using "
2310 : : "the KIND argument", gfc_typename (&y->ts),
2311 : : gfc_default_real_kind, &y->where);
2312 : : return true;
2313 : : }
2314 : :
2315 : :
2316 : : static bool
2317 : 156 : check_co_collective (gfc_expr *a, gfc_expr *image_idx, gfc_expr *stat,
2318 : : gfc_expr *errmsg, bool co_reduce)
2319 : : {
2320 : 156 : if (!variable_check (a, 0, false))
2321 : : return false;
2322 : :
2323 : 151 : if (!gfc_check_vardef_context (a, false, false, false, "argument 'A' with "
2324 : : "INTENT(INOUT)"))
2325 : : return false;
2326 : :
2327 : : /* Fortran 2008, 12.5.2.4, paragraph 18. */
2328 : 150 : if (gfc_has_vector_subscript (a))
2329 : : {
2330 : 4 : gfc_error ("Argument %<A%> with INTENT(INOUT) at %L of the intrinsic "
2331 : : "subroutine %s shall not have a vector subscript",
2332 : : &a->where, gfc_current_intrinsic);
2333 : 4 : return false;
2334 : : }
2335 : :
2336 : 146 : if (gfc_is_coindexed (a))
2337 : : {
2338 : 5 : gfc_error ("The A argument at %L to the intrinsic %s shall not be "
2339 : : "coindexed", &a->where, gfc_current_intrinsic);
2340 : 5 : return false;
2341 : : }
2342 : :
2343 : 141 : if (image_idx != NULL)
2344 : : {
2345 : 136 : if (!type_check (image_idx, co_reduce ? 2 : 1, BT_INTEGER))
2346 : : return false;
2347 : 70 : if (!scalar_check (image_idx, co_reduce ? 2 : 1))
2348 : : return false;
2349 : : }
2350 : :
2351 : 135 : if (stat != NULL)
2352 : : {
2353 : 132 : if (!type_check (stat, co_reduce ? 3 : 2, BT_INTEGER))
2354 : : return false;
2355 : 70 : if (!scalar_check (stat, co_reduce ? 3 : 2))
2356 : : return false;
2357 : 67 : if (!variable_check (stat, co_reduce ? 3 : 2, false))
2358 : : return false;
2359 : 64 : if (stat->ts.kind != 4)
2360 : : {
2361 : 3 : gfc_error ("The stat= argument at %L must be a kind=4 integer "
2362 : : "variable", &stat->where);
2363 : 3 : return false;
2364 : : }
2365 : : }
2366 : :
2367 : 123 : if (errmsg != NULL)
2368 : : {
2369 : 96 : if (!type_check (errmsg, co_reduce ? 4 : 3, BT_CHARACTER))
2370 : : return false;
2371 : 49 : if (!scalar_check (errmsg, co_reduce ? 4 : 3))
2372 : : return false;
2373 : 46 : if (!variable_check (errmsg, co_reduce ? 4 : 3, false))
2374 : : return false;
2375 : 43 : if (errmsg->ts.kind != 1)
2376 : : {
2377 : 3 : gfc_error ("The errmsg= argument at %L must be a default-kind "
2378 : : "character variable", &errmsg->where);
2379 : 3 : return false;
2380 : : }
2381 : : }
2382 : :
2383 : 111 : if (flag_coarray == GFC_FCOARRAY_NONE)
2384 : : {
2385 : 1 : gfc_fatal_error ("Coarrays disabled at %L, use %<-fcoarray=%> to enable",
2386 : : &a->where);
2387 : : return false;
2388 : : }
2389 : :
2390 : : return true;
2391 : : }
2392 : :
2393 : :
2394 : : bool
2395 : 48 : gfc_check_co_broadcast (gfc_expr *a, gfc_expr *source_image, gfc_expr *stat,
2396 : : gfc_expr *errmsg)
2397 : : {
2398 : 48 : if (a->ts.type == BT_CLASS || gfc_expr_attr (a).alloc_comp)
2399 : : {
2400 : 0 : gfc_error ("Support for the A argument at %L which is polymorphic A "
2401 : : "argument or has allocatable components is not yet "
2402 : : "implemented", &a->where);
2403 : 0 : return false;
2404 : : }
2405 : 48 : return check_co_collective (a, source_image, stat, errmsg, false);
2406 : : }
2407 : :
2408 : :
2409 : : bool
2410 : 63 : gfc_check_co_reduce (gfc_expr *a, gfc_expr *op, gfc_expr *result_image,
2411 : : gfc_expr *stat, gfc_expr *errmsg)
2412 : : {
2413 : 63 : symbol_attribute attr;
2414 : 63 : gfc_formal_arglist *formal;
2415 : 63 : gfc_symbol *sym;
2416 : :
2417 : 63 : if (a->ts.type == BT_CLASS)
2418 : : {
2419 : 0 : gfc_error ("The A argument at %L of CO_REDUCE shall not be polymorphic",
2420 : : &a->where);
2421 : 0 : return false;
2422 : : }
2423 : :
2424 : 63 : if (gfc_expr_attr (a).alloc_comp)
2425 : : {
2426 : 0 : gfc_error ("Support for the A argument at %L with allocatable components"
2427 : : " is not yet implemented", &a->where);
2428 : 0 : return false;
2429 : : }
2430 : :
2431 : 63 : if (!check_co_collective (a, result_image, stat, errmsg, true))
2432 : : return false;
2433 : :
2434 : 50 : if (!gfc_resolve_expr (op))
2435 : : return false;
2436 : :
2437 : 50 : attr = gfc_expr_attr (op);
2438 : 50 : if (!attr.pure || !attr.function)
2439 : : {
2440 : 7 : gfc_error ("OPERATION argument at %L must be a PURE function",
2441 : : &op->where);
2442 : 7 : return false;
2443 : : }
2444 : :
2445 : 43 : if (attr.intrinsic)
2446 : : {
2447 : : /* None of the intrinsics fulfills the criteria of taking two arguments,
2448 : : returning the same type and kind as the arguments and being permitted
2449 : : as actual argument. */
2450 : 1 : gfc_error ("Intrinsic function %s at %L is not permitted for CO_REDUCE",
2451 : 1 : op->symtree->n.sym->name, &op->where);
2452 : 1 : return false;
2453 : : }
2454 : :
2455 : 42 : if (gfc_is_proc_ptr_comp (op))
2456 : : {
2457 : 16 : gfc_component *comp = gfc_get_proc_ptr_comp (op);
2458 : 16 : sym = comp->ts.interface;
2459 : : }
2460 : : else
2461 : 26 : sym = op->symtree->n.sym;
2462 : :
2463 : 42 : formal = sym->formal;
2464 : :
2465 : 42 : if (!formal || !formal->next || formal->next->next)
2466 : : {
2467 : 4 : gfc_error ("The function passed as OPERATION at %L shall have two "
2468 : : "arguments", &op->where);
2469 : 4 : return false;
2470 : : }
2471 : :
2472 : 38 : if (sym->result->ts.type == BT_UNKNOWN)
2473 : 0 : gfc_set_default_type (sym->result, 0, NULL);
2474 : :
2475 : 38 : if (!gfc_compare_types (&a->ts, &sym->result->ts))
2476 : : {
2477 : 4 : gfc_error ("The A argument at %L has type %s but the function passed as "
2478 : : "OPERATION at %L returns %s",
2479 : : &a->where, gfc_typename (a), &op->where,
2480 : 4 : gfc_typename (&sym->result->ts));
2481 : 4 : return false;
2482 : : }
2483 : 34 : if (!gfc_compare_types (&a->ts, &formal->sym->ts)
2484 : 34 : || !gfc_compare_types (&a->ts, &formal->next->sym->ts))
2485 : : {
2486 : 0 : gfc_error ("The function passed as OPERATION at %L has arguments of type "
2487 : : "%s and %s but shall have type %s", &op->where,
2488 : 0 : gfc_typename (&formal->sym->ts),
2489 : 0 : gfc_typename (&formal->next->sym->ts), gfc_typename (a));
2490 : 0 : return false;
2491 : : }
2492 : 34 : if (op->rank || attr.allocatable || attr.pointer || formal->sym->as
2493 : 32 : || formal->next->sym->as || formal->sym->attr.allocatable
2494 : 30 : || formal->next->sym->attr.allocatable || formal->sym->attr.pointer
2495 : 28 : || formal->next->sym->attr.pointer)
2496 : : {
2497 : 6 : gfc_error ("The function passed as OPERATION at %L shall have scalar "
2498 : : "nonallocatable nonpointer arguments and return a "
2499 : : "nonallocatable nonpointer scalar", &op->where);
2500 : 6 : return false;
2501 : : }
2502 : :
2503 : 28 : if (formal->sym->attr.value != formal->next->sym->attr.value)
2504 : : {
2505 : 2 : gfc_error ("The function passed as OPERATION at %L shall have the VALUE "
2506 : : "attribute either for none or both arguments", &op->where);
2507 : 2 : return false;
2508 : : }
2509 : :
2510 : 26 : if (formal->sym->attr.target != formal->next->sym->attr.target)
2511 : : {
2512 : 2 : gfc_error ("The function passed as OPERATION at %L shall have the TARGET "
2513 : : "attribute either for none or both arguments", &op->where);
2514 : 2 : return false;
2515 : : }
2516 : :
2517 : 24 : if (formal->sym->attr.asynchronous != formal->next->sym->attr.asynchronous)
2518 : : {
2519 : 2 : gfc_error ("The function passed as OPERATION at %L shall have the "
2520 : : "ASYNCHRONOUS attribute either for none or both arguments",
2521 : : &op->where);
2522 : 2 : return false;
2523 : : }
2524 : :
2525 : 22 : if (formal->sym->attr.optional || formal->next->sym->attr.optional)
2526 : : {
2527 : 2 : gfc_error ("The function passed as OPERATION at %L shall not have the "
2528 : : "OPTIONAL attribute for either of the arguments", &op->where);
2529 : 2 : return false;
2530 : : }
2531 : :
2532 : 20 : if (a->ts.type == BT_CHARACTER)
2533 : : {
2534 : 7 : gfc_charlen *cl;
2535 : 7 : unsigned long actual_size, formal_size1, formal_size2, result_size;
2536 : :
2537 : 7 : cl = a->ts.u.cl;
2538 : 7 : actual_size = cl && cl->length && cl->length->expr_type == EXPR_CONSTANT
2539 : 14 : ? mpz_get_ui (cl->length->value.integer) : 0;
2540 : :
2541 : 7 : cl = formal->sym->ts.u.cl;
2542 : 7 : formal_size1 = cl && cl->length && cl->length->expr_type == EXPR_CONSTANT
2543 : 14 : ? mpz_get_ui (cl->length->value.integer) : 0;
2544 : :
2545 : 7 : cl = formal->next->sym->ts.u.cl;
2546 : 7 : formal_size2 = cl && cl->length && cl->length->expr_type == EXPR_CONSTANT
2547 : 14 : ? mpz_get_ui (cl->length->value.integer) : 0;
2548 : :
2549 : 7 : cl = sym->ts.u.cl;
2550 : 7 : result_size = cl && cl->length && cl->length->expr_type == EXPR_CONSTANT
2551 : 14 : ? mpz_get_ui (cl->length->value.integer) : 0;
2552 : :
2553 : 7 : if (actual_size
2554 : 7 : && ((formal_size1 && actual_size != formal_size1)
2555 : 5 : || (formal_size2 && actual_size != formal_size2)))
2556 : : {
2557 : 2 : gfc_error ("The character length of the A argument at %L and of the "
2558 : : "arguments of the OPERATION at %L shall be the same",
2559 : : &a->where, &op->where);
2560 : 2 : return false;
2561 : : }
2562 : 5 : if (actual_size && result_size && actual_size != result_size)
2563 : : {
2564 : 2 : gfc_error ("The character length of the A argument at %L and of the "
2565 : : "function result of the OPERATION at %L shall be the same",
2566 : : &a->where, &op->where);
2567 : 2 : return false;
2568 : : }
2569 : : }
2570 : :
2571 : : return true;
2572 : : }
2573 : :
2574 : :
2575 : : bool
2576 : 32 : gfc_check_co_minmax (gfc_expr *a, gfc_expr *result_image, gfc_expr *stat,
2577 : : gfc_expr *errmsg)
2578 : : {
2579 : 32 : if (a->ts.type != BT_INTEGER && a->ts.type != BT_REAL
2580 : : && a->ts.type != BT_CHARACTER)
2581 : : {
2582 : 2 : gfc_error ("%qs argument of %qs intrinsic at %L shall be of type "
2583 : : "integer, real or character",
2584 : 2 : gfc_current_intrinsic_arg[0]->name, gfc_current_intrinsic,
2585 : : &a->where);
2586 : 2 : return false;
2587 : : }
2588 : 30 : return check_co_collective (a, result_image, stat, errmsg, false);
2589 : : }
2590 : :
2591 : :
2592 : : bool
2593 : 16 : gfc_check_co_sum (gfc_expr *a, gfc_expr *result_image, gfc_expr *stat,
2594 : : gfc_expr *errmsg)
2595 : : {
2596 : 16 : if (!numeric_check (a, 0))
2597 : : return false;
2598 : 15 : return check_co_collective (a, result_image, stat, errmsg, false);
2599 : : }
2600 : :
2601 : :
2602 : : bool
2603 : 56 : gfc_check_complex (gfc_expr *x, gfc_expr *y)
2604 : : {
2605 : 56 : if (!boz_args_check (x, y))
2606 : : return false;
2607 : :
2608 : : /* COMPLEX is an extension, we do not want UNSIGNED there. */
2609 : 55 : if (x->ts.type == BT_UNSIGNED)
2610 : : {
2611 : 1 : gfc_error ("%qs argument of %qs intrinsic at %L shall not be "
2612 : 1 : "UNSIGNED", gfc_current_intrinsic_arg[0]->name,
2613 : : gfc_current_intrinsic, &x->where);
2614 : 1 : return false;
2615 : : }
2616 : :
2617 : 54 : if (y->ts.type == BT_UNSIGNED)
2618 : : {
2619 : 1 : gfc_error ("%qs argument of %qs intrinsic at %L shall not be "
2620 : 1 : "UNSIGNED", gfc_current_intrinsic_arg[1]->name,
2621 : : gfc_current_intrinsic, &y->where);
2622 : 1 : return false;
2623 : : }
2624 : :
2625 : 53 : if (x->ts.type == BT_BOZ)
2626 : : {
2627 : 16 : if (gfc_invalid_boz (G_("BOZ constant at %L cannot appear in the COMPLEX"
2628 : : " intrinsic subprogram"), &x->where))
2629 : : {
2630 : 2 : reset_boz (x);
2631 : 2 : return false;
2632 : : }
2633 : 14 : if (y->ts.type == BT_INTEGER && !gfc_boz2int (x, y->ts.kind))
2634 : : return false;
2635 : 14 : if (y->ts.type == BT_REAL && !gfc_boz2real (x, y->ts.kind))
2636 : : return false;
2637 : : }
2638 : :
2639 : 51 : if (y->ts.type == BT_BOZ)
2640 : : {
2641 : 0 : if (gfc_invalid_boz (G_("BOZ constant at %L cannot appear in the COMPLEX"
2642 : : " intrinsic subprogram"), &y->where))
2643 : : {
2644 : 0 : reset_boz (y);
2645 : 0 : return false;
2646 : : }
2647 : 0 : if (x->ts.type == BT_INTEGER && !gfc_boz2int (y, x->ts.kind))
2648 : : return false;
2649 : 0 : if (x->ts.type == BT_REAL && !gfc_boz2real (y, x->ts.kind))
2650 : : return false;
2651 : : }
2652 : :
2653 : 51 : if (!int_or_real_check (x, 0))
2654 : : return false;
2655 : 50 : if (!scalar_check (x, 0))
2656 : : return false;
2657 : :
2658 : 50 : if (!int_or_real_check (y, 1))
2659 : : return false;
2660 : 49 : if (!scalar_check (y, 1))
2661 : : return false;
2662 : :
2663 : : return true;
2664 : : }
2665 : :
2666 : :
2667 : : bool
2668 : 348 : gfc_check_count (gfc_expr *mask, gfc_expr *dim, gfc_expr *kind)
2669 : : {
2670 : 348 : if (!logical_array_check (mask, 0))
2671 : : return false;
2672 : 348 : if (!dim_check (dim, 1, false))
2673 : : return false;
2674 : 348 : if (!dim_rank_check (dim, mask, 0))
2675 : : return false;
2676 : 348 : if (!kind_check (kind, 2, BT_INTEGER))
2677 : : return false;
2678 : 348 : if (kind && !gfc_notify_std (GFC_STD_F2003, "%qs intrinsic "
2679 : : "with KIND argument at %L",
2680 : : gfc_current_intrinsic, &kind->where))
2681 : : return false;
2682 : :
2683 : : return true;
2684 : : }
2685 : :
2686 : :
2687 : : bool
2688 : 712 : gfc_check_cshift (gfc_expr *array, gfc_expr *shift, gfc_expr *dim)
2689 : : {
2690 : 712 : if (!array_check (array, 0))
2691 : : return false;
2692 : :
2693 : 712 : if (!type_check (shift, 1, BT_INTEGER))
2694 : : return false;
2695 : :
2696 : 711 : if (!dim_check (dim, 2, true))
2697 : : return false;
2698 : :
2699 : 711 : if (!dim_rank_check (dim, array, false))
2700 : : return false;
2701 : :
2702 : 711 : if (array->rank == 1 || shift->rank == 0)
2703 : : {
2704 : 503 : if (!scalar_check (shift, 1))
2705 : : return false;
2706 : : }
2707 : 208 : else if (shift->rank == array->rank - 1)
2708 : : {
2709 : 207 : int d;
2710 : 207 : if (!dim)
2711 : 48 : d = 1;
2712 : 159 : else if (dim->expr_type == EXPR_CONSTANT)
2713 : 128 : gfc_extract_int (dim, &d);
2714 : : else
2715 : 31 : d = -1;
2716 : :
2717 : 207 : if (d > 0)
2718 : : {
2719 : : int i, j;
2720 : 593 : for (i = 0, j = 0; i < array->rank; i++)
2721 : 417 : if (i != d - 1)
2722 : : {
2723 : 241 : if (!identical_dimen_shape (array, i, shift, j))
2724 : : {
2725 : 0 : gfc_error ("%qs argument of %qs intrinsic at %L has "
2726 : : "invalid shape in dimension %d (%ld/%ld)",
2727 : 0 : gfc_current_intrinsic_arg[1]->name,
2728 : : gfc_current_intrinsic, &shift->where, i + 1,
2729 : 0 : mpz_get_si (array->shape[i]),
2730 : 0 : mpz_get_si (shift->shape[j]));
2731 : 0 : return false;
2732 : : }
2733 : :
2734 : 241 : j += 1;
2735 : : }
2736 : : }
2737 : : }
2738 : : else
2739 : : {
2740 : 1 : gfc_error ("%qs argument of intrinsic %qs at %L of must have rank "
2741 : 1 : "%d or be a scalar", gfc_current_intrinsic_arg[1]->name,
2742 : : gfc_current_intrinsic, &shift->where, array->rank - 1);
2743 : 1 : return false;
2744 : : }
2745 : :
2746 : : return true;
2747 : : }
2748 : :
2749 : :
2750 : : bool
2751 : 0 : gfc_check_ctime (gfc_expr *time)
2752 : : {
2753 : 0 : if (!scalar_check (time, 0))
2754 : : return false;
2755 : :
2756 : 0 : if (!type_check (time, 0, BT_INTEGER))
2757 : : return false;
2758 : :
2759 : : return true;
2760 : : }
2761 : :
2762 : :
2763 : 423 : bool gfc_check_datan2 (gfc_expr *y, gfc_expr *x)
2764 : : {
2765 : 423 : if (!double_check (y, 0) || !double_check (x, 1))
2766 : 247 : return false;
2767 : :
2768 : : return true;
2769 : : }
2770 : :
2771 : : bool
2772 : 163 : gfc_check_dcmplx (gfc_expr *x, gfc_expr *y)
2773 : : {
2774 : 163 : if (x->ts.type == BT_BOZ && !gfc_boz2real (x, gfc_default_double_kind))
2775 : : return false;
2776 : :
2777 : 163 : if (!numeric_check (x, 0))
2778 : : return false;
2779 : :
2780 : 163 : if (y != NULL)
2781 : : {
2782 : 162 : if (y->ts.type == BT_BOZ && !gfc_boz2real (y, gfc_default_double_kind))
2783 : : return false;
2784 : :
2785 : 162 : if (!numeric_check (y, 1))
2786 : : return false;
2787 : :
2788 : 162 : if (x->ts.type == BT_COMPLEX)
2789 : : {
2790 : 0 : gfc_error ("%qs argument of %qs intrinsic at %L must not be "
2791 : : "present if %<x%> is COMPLEX",
2792 : 0 : gfc_current_intrinsic_arg[1]->name, gfc_current_intrinsic,
2793 : : &y->where);
2794 : 0 : return false;
2795 : : }
2796 : :
2797 : 162 : if (y->ts.type == BT_COMPLEX)
2798 : : {
2799 : 1 : gfc_error ("%qs argument of %qs intrinsic at %L must have a type "
2800 : : "of either REAL or INTEGER",
2801 : 1 : gfc_current_intrinsic_arg[1]->name, gfc_current_intrinsic,
2802 : : &y->where);
2803 : 1 : return false;
2804 : : }
2805 : : }
2806 : :
2807 : : return true;
2808 : : }
2809 : :
2810 : :
2811 : : bool
2812 : 223 : gfc_check_dble (gfc_expr *x)
2813 : : {
2814 : 223 : if (x->ts.type == BT_BOZ && !gfc_boz2real (x, gfc_default_double_kind))
2815 : : return false;
2816 : :
2817 : 223 : if (!numeric_check (x, 0))
2818 : : return false;
2819 : :
2820 : : return true;
2821 : : }
2822 : :
2823 : :
2824 : : bool
2825 : 40 : gfc_check_digits (gfc_expr *x)
2826 : : {
2827 : :
2828 : 40 : if (flag_unsigned)
2829 : : {
2830 : 6 : if (!int_or_real_or_unsigned_check (x, 0))
2831 : : return false;
2832 : : }
2833 : 34 : else if (!int_or_real_check (x, 0))
2834 : : return false;
2835 : :
2836 : : return true;
2837 : : }
2838 : :
2839 : :
2840 : : bool
2841 : 195 : gfc_check_dot_product (gfc_expr *vector_a, gfc_expr *vector_b)
2842 : : {
2843 : 195 : switch (vector_a->ts.type)
2844 : : {
2845 : 36 : case BT_LOGICAL:
2846 : 36 : if (!type_check (vector_b, 1, BT_LOGICAL))
2847 : : return false;
2848 : : break;
2849 : :
2850 : 147 : case BT_INTEGER:
2851 : 147 : case BT_REAL:
2852 : 147 : case BT_COMPLEX:
2853 : 147 : if (!numeric_check (vector_b, 1))
2854 : : return false;
2855 : : break;
2856 : :
2857 : : case BT_UNSIGNED:
2858 : : /* Check comes later. */
2859 : : break;
2860 : :
2861 : 0 : default:
2862 : 0 : gfc_error ("%qs argument of %qs intrinsic at %L must be numeric "
2863 : 0 : "or LOGICAL", gfc_current_intrinsic_arg[0]->name,
2864 : : gfc_current_intrinsic, &vector_a->where);
2865 : 0 : return false;
2866 : : }
2867 : :
2868 : 195 : if (gfc_invalid_unsigned_ops (vector_a, vector_b))
2869 : : {
2870 : 0 : gfc_error ("Argument types of %qs intrinsic at %L must match (%s/%s)",
2871 : : gfc_current_intrinsic, &vector_a->where,
2872 : : gfc_typename(&vector_a->ts), gfc_typename(&vector_b->ts));
2873 : 0 : return false;
2874 : : }
2875 : :
2876 : 195 : if (!rank_check (vector_a, 0, 1))
2877 : : return false;
2878 : :
2879 : 195 : if (!rank_check (vector_b, 1, 1))
2880 : : return false;
2881 : :
2882 : 195 : if (! identical_dimen_shape (vector_a, 0, vector_b, 0))
2883 : : {
2884 : 1 : gfc_error ("Different shape for arguments %qs and %qs at %L for "
2885 : : "intrinsic %<dot_product%>",
2886 : 1 : gfc_current_intrinsic_arg[0]->name,
2887 : 1 : gfc_current_intrinsic_arg[1]->name, &vector_a->where);
2888 : 1 : return false;
2889 : : }
2890 : :
2891 : : return true;
2892 : : }
2893 : :
2894 : :
2895 : : bool
2896 : 22 : gfc_check_dprod (gfc_expr *x, gfc_expr *y)
2897 : : {
2898 : 22 : if (!type_check (x, 0, BT_REAL)
2899 : 22 : || !type_check (y, 1, BT_REAL))
2900 : 0 : return false;
2901 : :
2902 : 22 : if (x->ts.kind != gfc_default_real_kind)
2903 : : {
2904 : 1 : gfc_error ("%qs argument of %qs intrinsic at %L must be default "
2905 : 1 : "real", gfc_current_intrinsic_arg[0]->name,
2906 : : gfc_current_intrinsic, &x->where);
2907 : 1 : return false;
2908 : : }
2909 : :
2910 : 21 : if (y->ts.kind != gfc_default_real_kind)
2911 : : {
2912 : 1 : gfc_error ("%qs argument of %qs intrinsic at %L must be default "
2913 : 1 : "real", gfc_current_intrinsic_arg[1]->name,
2914 : : gfc_current_intrinsic, &y->where);
2915 : 1 : return false;
2916 : : }
2917 : :
2918 : : return true;
2919 : : }
2920 : :
2921 : : bool
2922 : 1644 : gfc_check_dshift (gfc_expr *i, gfc_expr *j, gfc_expr *shift)
2923 : : {
2924 : : /* i and j cannot both be BOZ literal constants. */
2925 : 1644 : if (!boz_args_check (i, j))
2926 : : return false;
2927 : :
2928 : 1640 : if (i->ts.type == BT_BOZ)
2929 : : {
2930 : 17 : if (j->ts.type == BT_INTEGER)
2931 : : {
2932 : 16 : if (!gfc_boz2int (i, j->ts.kind))
2933 : : return false;
2934 : : }
2935 : 1 : else if (flag_unsigned && j->ts.type == BT_UNSIGNED)
2936 : : {
2937 : 0 : if (!gfc_boz2uint (i, j->ts.kind))
2938 : : return false;
2939 : : }
2940 : : else
2941 : 1 : reset_boz (i);
2942 : : }
2943 : :
2944 : 1640 : if (j->ts.type == BT_BOZ)
2945 : : {
2946 : 15 : if (i->ts.type == BT_INTEGER)
2947 : : {
2948 : 14 : if (!gfc_boz2int (j, i->ts.kind))
2949 : : return false;
2950 : : }
2951 : 1 : else if (flag_unsigned && i->ts.type == BT_UNSIGNED)
2952 : : {
2953 : 0 : if (!gfc_boz2uint (j, i->ts.kind))
2954 : : return false;
2955 : : }
2956 : : else
2957 : 1 : reset_boz (j);
2958 : : }
2959 : :
2960 : 1640 : if (flag_unsigned)
2961 : : {
2962 : 96 : if (!type_check2 (i, 0, BT_INTEGER, BT_UNSIGNED))
2963 : : return false;
2964 : :
2965 : 96 : if (!type_check2 (j, 1, BT_INTEGER, BT_UNSIGNED))
2966 : : return false;
2967 : : }
2968 : : else
2969 : : {
2970 : 1544 : if (!type_check (i, 0, BT_INTEGER))
2971 : : return false;
2972 : :
2973 : 1543 : if (!type_check (j, 1, BT_INTEGER))
2974 : : return false;
2975 : : }
2976 : :
2977 : 1638 : if (!same_type_check (i, 0, j, 1))
2978 : : return false;
2979 : :
2980 : 1634 : if (!type_check (shift, 2, BT_INTEGER))
2981 : : return false;
2982 : :
2983 : 1634 : if (!nonnegative_check ("SHIFT", shift))
2984 : : return false;
2985 : :
2986 : 1632 : if (!less_than_bitsize1 ("I", i, "SHIFT", shift, true))
2987 : : return false;
2988 : :
2989 : : return true;
2990 : : }
2991 : :
2992 : :
2993 : : bool
2994 : 1158 : gfc_check_eoshift (gfc_expr *array, gfc_expr *shift, gfc_expr *boundary,
2995 : : gfc_expr *dim)
2996 : : {
2997 : 1158 : int d;
2998 : :
2999 : 1158 : if (!array_check (array, 0))
3000 : : return false;
3001 : :
3002 : 1158 : if (!type_check (shift, 1, BT_INTEGER))
3003 : : return false;
3004 : :
3005 : 1156 : if (!dim_check (dim, 3, true))
3006 : : return false;
3007 : :
3008 : 1156 : if (!dim_rank_check (dim, array, false))
3009 : : return false;
3010 : :
3011 : 1156 : if (!dim)
3012 : 458 : d = 1;
3013 : 698 : else if (dim->expr_type == EXPR_CONSTANT)
3014 : 622 : gfc_extract_int (dim, &d);
3015 : : else
3016 : 76 : d = -1;
3017 : :
3018 : 1156 : if (array->rank == 1 || shift->rank == 0)
3019 : : {
3020 : 765 : if (!scalar_check (shift, 1))
3021 : : return false;
3022 : : }
3023 : 391 : else if (shift->rank == array->rank - 1)
3024 : : {
3025 : 390 : if (d > 0)
3026 : : {
3027 : : int i, j;
3028 : 1139 : for (i = 0, j = 0; i < array->rank; i++)
3029 : 793 : if (i != d - 1)
3030 : : {
3031 : 446 : if (!identical_dimen_shape (array, i, shift, j))
3032 : : {
3033 : 1 : gfc_error ("%qs argument of %qs intrinsic at %L has "
3034 : : "invalid shape in dimension %d (%ld/%ld)",
3035 : 1 : gfc_current_intrinsic_arg[1]->name,
3036 : : gfc_current_intrinsic, &shift->where, i + 1,
3037 : 1 : mpz_get_si (array->shape[i]),
3038 : 1 : mpz_get_si (shift->shape[j]));
3039 : 1 : return false;
3040 : : }
3041 : :
3042 : 445 : j += 1;
3043 : : }
3044 : : }
3045 : : }
3046 : : else
3047 : : {
3048 : 1 : gfc_error ("%qs argument of intrinsic %qs at %L of must have rank "
3049 : 1 : "%d or be a scalar", gfc_current_intrinsic_arg[1]->name,
3050 : : gfc_current_intrinsic, &shift->where, array->rank - 1);
3051 : 1 : return false;
3052 : : }
3053 : :
3054 : 1152 : if (boundary != NULL)
3055 : : {
3056 : 651 : if (!same_type_check (array, 0, boundary, 2))
3057 : : return false;
3058 : :
3059 : : /* Reject unequal string lengths and emit a better error message than
3060 : : gfc_check_same_strlen would. */
3061 : 651 : if (array->ts.type == BT_CHARACTER)
3062 : : {
3063 : 250 : ssize_t len_a, len_b;
3064 : :
3065 : 250 : len_a = gfc_var_strlen (array);
3066 : 250 : len_b = gfc_var_strlen (boundary);
3067 : 250 : if (len_a != -1 && len_b != -1 && len_a != len_b)
3068 : : {
3069 : 1 : gfc_error ("%qs must be of same type and kind as %qs at %L in %qs",
3070 : 1 : gfc_current_intrinsic_arg[2]->name,
3071 : 1 : gfc_current_intrinsic_arg[0]->name,
3072 : : &boundary->where, gfc_current_intrinsic);
3073 : 1 : return false;
3074 : : }
3075 : : }
3076 : :
3077 : 650 : if (array->rank == 1 || boundary->rank == 0)
3078 : : {
3079 : 396 : if (!scalar_check (boundary, 2))
3080 : : return false;
3081 : : }
3082 : 254 : else if (boundary->rank == array->rank - 1)
3083 : : {
3084 : 252 : if (d > 0)
3085 : : {
3086 : : int i,j;
3087 : 786 : for (i = 0, j = 0; i < array->rank; i++)
3088 : : {
3089 : 542 : if (i != d - 1)
3090 : : {
3091 : 297 : if (!identical_dimen_shape (array, i, boundary, j))
3092 : : {
3093 : 1 : gfc_error ("%qs argument of %qs intrinsic at %L has "
3094 : : "invalid shape in dimension %d (%ld/%ld)",
3095 : 1 : gfc_current_intrinsic_arg[2]->name,
3096 : : gfc_current_intrinsic, &shift->where, i+1,
3097 : 1 : mpz_get_si (array->shape[i]),
3098 : 1 : mpz_get_si (boundary->shape[j]));
3099 : 1 : return false;
3100 : : }
3101 : 296 : j += 1;
3102 : : }
3103 : : }
3104 : : }
3105 : : }
3106 : : else
3107 : : {
3108 : 2 : gfc_error ("%qs argument of intrinsic %qs at %L of must have "
3109 : : "rank %d or be a scalar",
3110 : 2 : gfc_current_intrinsic_arg[1]->name, gfc_current_intrinsic,
3111 : : &shift->where, array->rank - 1);
3112 : 2 : return false;
3113 : : }
3114 : : }
3115 : : else
3116 : : {
3117 : 501 : switch (array->ts.type)
3118 : : {
3119 : : case BT_INTEGER:
3120 : : case BT_LOGICAL:
3121 : : case BT_REAL:
3122 : : case BT_COMPLEX:
3123 : : case BT_CHARACTER:
3124 : : break;
3125 : :
3126 : 12 : case BT_UNSIGNED:
3127 : 12 : if (flag_unsigned)
3128 : : break;
3129 : :
3130 : 1 : gcc_fallthrough();
3131 : :
3132 : 1 : default:
3133 : 1 : gfc_error ("Missing %qs argument to %qs intrinsic at %L for %qs "
3134 : 1 : "of type %qs", gfc_current_intrinsic_arg[2]->name,
3135 : : gfc_current_intrinsic, &array->where,
3136 : 1 : gfc_current_intrinsic_arg[0]->name,
3137 : : gfc_typename (array));
3138 : 1 : return false;
3139 : : }
3140 : : }
3141 : :
3142 : : return true;
3143 : : }
3144 : :
3145 : :
3146 : : bool
3147 : 152 : gfc_check_float (gfc_expr *a)
3148 : : {
3149 : 152 : if (a->ts.type == BT_BOZ)
3150 : : {
3151 : 8 : if (gfc_invalid_boz (G_("BOZ literal constant at %L cannot appear in the"
3152 : : " FLOAT intrinsic subprogram"), &a->where))
3153 : : {
3154 : 1 : reset_boz (a);
3155 : 1 : return false;
3156 : : }
3157 : 7 : if (!gfc_boz2int (a, gfc_default_integer_kind))
3158 : : return false;
3159 : : }
3160 : :
3161 : 151 : if (!type_check (a, 0, BT_INTEGER))
3162 : : return false;
3163 : :
3164 : 151 : if ((a->ts.kind != gfc_default_integer_kind)
3165 : 151 : && !gfc_notify_std (GFC_STD_GNU, "non-default INTEGER "
3166 : : "kind argument to %s intrinsic at %L",
3167 : : gfc_current_intrinsic, &a->where))
3168 : : return false;
3169 : :
3170 : : return true;
3171 : : }
3172 : :
3173 : : /* A single complex argument. */
3174 : :
3175 : : bool
3176 : 733 : gfc_check_fn_c (gfc_expr *a)
3177 : : {
3178 : 733 : if (!type_check (a, 0, BT_COMPLEX))
3179 : : return false;
3180 : :
3181 : : return true;
3182 : : }
3183 : :
3184 : :
3185 : : /* A single real argument. */
3186 : :
3187 : : bool
3188 : 6463 : gfc_check_fn_r (gfc_expr *a)
3189 : : {
3190 : 6463 : if (!type_check (a, 0, BT_REAL))
3191 : : return false;
3192 : :
3193 : : return true;
3194 : : }
3195 : :
3196 : : /* A single double argument. */
3197 : :
3198 : : bool
3199 : 12628 : gfc_check_fn_d (gfc_expr *a)
3200 : : {
3201 : 12628 : if (!double_check (a, 0))
3202 : : return false;
3203 : :
3204 : : return true;
3205 : : }
3206 : :
3207 : : /* A single real or complex argument. */
3208 : :
3209 : : bool
3210 : 1006 : gfc_check_fn_rc (gfc_expr *a)
3211 : : {
3212 : 1006 : if (!real_or_complex_check (a, 0))
3213 : : return false;
3214 : :
3215 : : return true;
3216 : : }
3217 : :
3218 : :
3219 : : bool
3220 : 1566 : gfc_check_fn_rc2008 (gfc_expr *a)
3221 : : {
3222 : 1566 : if (!real_or_complex_check (a, 0))
3223 : : return false;
3224 : :
3225 : 1566 : if (a->ts.type == BT_COMPLEX
3226 : 2216 : && !gfc_notify_std (GFC_STD_F2008, "COMPLEX argument %qs "
3227 : : "of %qs intrinsic at %L",
3228 : 650 : gfc_current_intrinsic_arg[0]->name,
3229 : : gfc_current_intrinsic, &a->where))
3230 : : return false;
3231 : :
3232 : : return true;
3233 : : }
3234 : :
3235 : :
3236 : : bool
3237 : 0 : gfc_check_fnum (gfc_expr *unit)
3238 : : {
3239 : 0 : if (!type_check (unit, 0, BT_INTEGER))
3240 : : return false;
3241 : :
3242 : 0 : if (!scalar_check (unit, 0))
3243 : : return false;
3244 : :
3245 : : return true;
3246 : : }
3247 : :
3248 : :
3249 : : bool
3250 : 5659 : gfc_check_huge (gfc_expr *x)
3251 : : {
3252 : 5659 : if (flag_unsigned)
3253 : : {
3254 : 84 : if (!int_or_real_or_unsigned_check (x, 0))
3255 : : return false;
3256 : : }
3257 : 5575 : else if (!int_or_real_check (x, 0))
3258 : : return false;
3259 : :
3260 : : return true;
3261 : : }
3262 : :
3263 : :
3264 : : bool
3265 : 24 : gfc_check_hypot (gfc_expr *x, gfc_expr *y)
3266 : : {
3267 : 24 : if (!type_check (x, 0, BT_REAL))
3268 : : return false;
3269 : 24 : if (!same_type_check (x, 0, y, 1))
3270 : : return false;
3271 : :
3272 : : return true;
3273 : : }
3274 : :
3275 : :
3276 : : /* Check that the single argument is an integer. */
3277 : :
3278 : : bool
3279 : 1136 : gfc_check_i (gfc_expr *i)
3280 : : {
3281 : 1136 : if (!type_check (i, 0, BT_INTEGER))
3282 : : return false;
3283 : :
3284 : : return true;
3285 : : }
3286 : :
3287 : : /* Check that the single argument is an integer or an UNSIGNED. */
3288 : :
3289 : : bool
3290 : 4726 : gfc_check_iu (gfc_expr *i)
3291 : : {
3292 : 4726 : if (flag_unsigned)
3293 : : {
3294 : 48 : if (!type_check2 (i, 0, BT_INTEGER, BT_UNSIGNED))
3295 : : return false;
3296 : : }
3297 : 4678 : else if (!type_check (i, 0, BT_INTEGER))
3298 : : return false;
3299 : :
3300 : : return true;
3301 : : }
3302 : :
3303 : : bool
3304 : 4791 : gfc_check_iand_ieor_ior (gfc_expr *i, gfc_expr *j)
3305 : : {
3306 : : /* i and j cannot both be BOZ literal constants. */
3307 : 4791 : if (!boz_args_check (i, j))
3308 : : return false;
3309 : :
3310 : : /* If i is BOZ and j is integer, convert i to type of j. */
3311 : 25 : if (i->ts.type == BT_BOZ && j->ts.type == BT_INTEGER
3312 : 4812 : && !gfc_boz2int (i, j->ts.kind))
3313 : : return false;
3314 : :
3315 : : /* If j is BOZ and i is integer, convert j to type of i. */
3316 : 37 : if (j->ts.type == BT_BOZ && i->ts.type == BT_INTEGER
3317 : 4824 : && !gfc_boz2int (j, i->ts.kind))
3318 : : return false;
3319 : :
3320 : 4787 : if (flag_unsigned)
3321 : : {
3322 : : /* If i is BOZ and j is UNSIGNED, convert i to type of j. */
3323 : 0 : if (i->ts.type == BT_BOZ && j->ts.type == BT_UNSIGNED
3324 : 42 : && !gfc_boz2uint (i, j->ts.kind))
3325 : : return false;
3326 : :
3327 : : /* If j is BOZ and i is UNSIGNED, convert j to type of i. */
3328 : 0 : if (j->ts.type == BT_BOZ && i->ts.type == BT_UNSIGNED
3329 : 42 : && !gfc_boz2uint (j, i->ts.kind))
3330 : : return false;
3331 : :
3332 : 42 : if (gfc_invalid_unsigned_ops (i,j))
3333 : : return false;
3334 : :
3335 : 42 : if (!type_check2 (i, 0, BT_INTEGER, BT_UNSIGNED))
3336 : : return false;
3337 : :
3338 : 42 : if (!type_check2 (j, 1, BT_INTEGER, BT_UNSIGNED))
3339 : : return false;
3340 : : }
3341 : : else
3342 : : {
3343 : 4745 : if (!type_check (i, 0, BT_INTEGER))
3344 : : return false;
3345 : :
3346 : 4745 : if (!type_check (j, 1, BT_INTEGER))
3347 : : return false;
3348 : : }
3349 : :
3350 : 4787 : if (i->ts.kind != j->ts.kind)
3351 : : {
3352 : 1 : gfc_error ("Arguments of %qs have different kind type parameters "
3353 : : "at %L", gfc_current_intrinsic, &i->where);
3354 : 1 : return false;
3355 : : }
3356 : :
3357 : : return true;
3358 : : }
3359 : :
3360 : :
3361 : : bool
3362 : 77 : gfc_check_ibits (gfc_expr *i, gfc_expr *pos, gfc_expr *len)
3363 : : {
3364 : 77 : if (flag_unsigned)
3365 : : {
3366 : 24 : if (!type_check2 (i, 0, BT_INTEGER, BT_UNSIGNED))
3367 : : return false;
3368 : : }
3369 : : else
3370 : : {
3371 : 53 : if (!type_check (i, 0, BT_INTEGER))
3372 : : return false;
3373 : : }
3374 : :
3375 : 77 : if (!type_check (pos, 1, BT_INTEGER))
3376 : : return false;
3377 : :
3378 : 77 : if (!type_check (len, 2, BT_INTEGER))
3379 : : return false;
3380 : :
3381 : 77 : if (!nonnegative_check ("pos", pos))
3382 : : return false;
3383 : :
3384 : 72 : if (!nonnegative_check ("len", len))
3385 : : return false;
3386 : :
3387 : 67 : if (!less_than_bitsize2 ("i", i, "pos", pos, "len", len))
3388 : : return false;
3389 : :
3390 : : return true;
3391 : : }
3392 : :
3393 : :
3394 : : bool
3395 : 8972 : gfc_check_ichar_iachar (gfc_expr *c, gfc_expr *kind)
3396 : : {
3397 : 8972 : int i;
3398 : :
3399 : 8972 : if (!type_check (c, 0, BT_CHARACTER))
3400 : : return false;
3401 : :
3402 : 8972 : if (!kind_check (kind, 1, BT_INTEGER))
3403 : : return false;
3404 : :
3405 : 8972 : if (kind && !gfc_notify_std (GFC_STD_F2003, "%qs intrinsic "
3406 : : "with KIND argument at %L",
3407 : : gfc_current_intrinsic, &kind->where))
3408 : : return false;
3409 : :
3410 : 8972 : if (c->expr_type == EXPR_VARIABLE || c->expr_type == EXPR_SUBSTRING)
3411 : : {
3412 : 1956 : gfc_expr *start;
3413 : 1956 : gfc_expr *end;
3414 : 1956 : gfc_ref *ref;
3415 : :
3416 : : /* Substring references don't have the charlength set. */
3417 : 1956 : ref = c->ref;
3418 : 2101 : while (ref && ref->type != REF_SUBSTRING)
3419 : 145 : ref = ref->next;
3420 : :
3421 : 1956 : gcc_assert (ref == NULL || ref->type == REF_SUBSTRING);
3422 : :
3423 : 1956 : if (!ref)
3424 : : {
3425 : : /* Check that the argument is length one. Non-constant lengths
3426 : : can't be checked here, so assume they are ok. */
3427 : 1691 : if (c->ts.u.cl && c->ts.u.cl->length)
3428 : : {
3429 : : /* If we already have a length for this expression then use it. */
3430 : 1684 : if (c->ts.u.cl->length->expr_type != EXPR_CONSTANT)
3431 : : return true;
3432 : 1684 : i = mpz_get_si (c->ts.u.cl->length->value.integer);
3433 : : }
3434 : : else
3435 : : return true;
3436 : : }
3437 : : else
3438 : : {
3439 : 265 : start = ref->u.ss.start;
3440 : 265 : end = ref->u.ss.end;
3441 : :
3442 : 265 : gcc_assert (start);
3443 : 265 : if (end == NULL || end->expr_type != EXPR_CONSTANT
3444 : 184 : || start->expr_type != EXPR_CONSTANT)
3445 : : return true;
3446 : :
3447 : 184 : i = mpz_get_si (end->value.integer) + 1
3448 : 184 : - mpz_get_si (start->value.integer);
3449 : : }
3450 : : }
3451 : : else
3452 : : return true;
3453 : :
3454 : 1868 : if (i != 1)
3455 : : {
3456 : 8 : gfc_error ("Argument of %s at %L must be of length one",
3457 : : gfc_current_intrinsic, &c->where);
3458 : 8 : return false;
3459 : : }
3460 : :
3461 : : return true;
3462 : : }
3463 : :
3464 : :
3465 : : bool
3466 : 257 : gfc_check_idnint (gfc_expr *a)
3467 : : {
3468 : 257 : if (!double_check (a, 0))
3469 : : return false;
3470 : :
3471 : : return true;
3472 : : }
3473 : :
3474 : :
3475 : : bool
3476 : 599 : gfc_check_index (gfc_expr *string, gfc_expr *substring, gfc_expr *back,
3477 : : gfc_expr *kind)
3478 : : {
3479 : 599 : if (!type_check (string, 0, BT_CHARACTER)
3480 : 599 : || !type_check (substring, 1, BT_CHARACTER))
3481 : 0 : return false;
3482 : :
3483 : 599 : if (back != NULL && !type_check (back, 2, BT_LOGICAL))
3484 : : return false;
3485 : :
3486 : 599 : if (!kind_check (kind, 3, BT_INTEGER))
3487 : : return false;
3488 : 599 : if (kind && !gfc_notify_std (GFC_STD_F2003, "%qs intrinsic "
3489 : : "with KIND argument at %L",
3490 : : gfc_current_intrinsic, &kind->where))
3491 : : return false;
3492 : :
3493 : 599 : if (string->ts.kind != substring->ts.kind)
3494 : : {
3495 : 0 : gfc_error ("%qs argument of %qs intrinsic at %L must be the same "
3496 : 0 : "kind as %qs", gfc_current_intrinsic_arg[1]->name,
3497 : : gfc_current_intrinsic, &substring->where,
3498 : 0 : gfc_current_intrinsic_arg[0]->name);
3499 : 0 : return false;
3500 : : }
3501 : :
3502 : : return true;
3503 : : }
3504 : :
3505 : :
3506 : : bool
3507 : 4040 : gfc_check_int (gfc_expr *x, gfc_expr *kind)
3508 : : {
3509 : : /* BOZ is dealt within simplify_int*. */
3510 : 4040 : if (x->ts.type == BT_BOZ)
3511 : : return true;
3512 : :
3513 : 2458 : if (!numeric_check (x, 0))
3514 : : return false;
3515 : :
3516 : 2458 : if (!kind_check (kind, 1, BT_INTEGER))
3517 : : return false;
3518 : :
3519 : : return true;
3520 : : }
3521 : :
3522 : : bool
3523 : 186 : gfc_check_uint (gfc_expr *x, gfc_expr *kind)
3524 : : {
3525 : :
3526 : 186 : if (!flag_unsigned)
3527 : : {
3528 : 0 : gfc_error ("UINT intrinsic only valid with %<-funsigned%> at %L",
3529 : : &x->where);
3530 : 0 : return false;
3531 : : }
3532 : :
3533 : : /* BOZ is dealt within simplify_uint*. */
3534 : 186 : if (x->ts.type == BT_BOZ)
3535 : : return true;
3536 : :
3537 : 180 : if (!numeric_check (x, 0))
3538 : : return false;
3539 : :
3540 : 180 : if (!kind_check (kind, 1, BT_INTEGER))
3541 : : return false;
3542 : :
3543 : : return true;
3544 : : }
3545 : :
3546 : : bool
3547 : 97 : gfc_check_intconv (gfc_expr *x)
3548 : : {
3549 : 97 : if (strcmp (gfc_current_intrinsic, "short") == 0
3550 : 62 : || strcmp (gfc_current_intrinsic, "long") == 0)
3551 : : {
3552 : 36 : gfc_error ("%qs intrinsic subprogram at %L has been removed. "
3553 : : "Use INT intrinsic subprogram.", gfc_current_intrinsic,
3554 : : &x->where);
3555 : 36 : return false;
3556 : : }
3557 : :
3558 : : /* BOZ is dealt within simplify_int*. */
3559 : 61 : if (x->ts.type == BT_BOZ)
3560 : : return true;
3561 : :
3562 : 61 : if (!numeric_check (x, 0))
3563 : : return false;
3564 : :
3565 : : return true;
3566 : : }
3567 : :
3568 : : bool
3569 : 1076 : gfc_check_ishft (gfc_expr *i, gfc_expr *shift)
3570 : : {
3571 : 1076 : if (flag_unsigned)
3572 : : {
3573 : 78 : if (!type_check2 (i, 0, BT_INTEGER, BT_UNSIGNED))
3574 : : return false;
3575 : : }
3576 : : else
3577 : : {
3578 : 998 : if (!type_check (i, 0, BT_INTEGER))
3579 : : return false;
3580 : : }
3581 : :
3582 : 1076 : if (!type_check (shift, 1, BT_INTEGER))
3583 : : return false;
3584 : :
3585 : 1076 : if (!less_than_bitsize1 ("I", i, NULL, shift, true))
3586 : : return false;
3587 : :
3588 : : return true;
3589 : : }
3590 : :
3591 : :
3592 : : bool
3593 : 904 : gfc_check_ishftc (gfc_expr *i, gfc_expr *shift, gfc_expr *size)
3594 : : {
3595 : 904 : if (flag_unsigned)
3596 : : {
3597 : 48 : if (!type_check2 (i, 0, BT_INTEGER, BT_UNSIGNED))
3598 : : return false;
3599 : : }
3600 : : else
3601 : : {
3602 : 856 : if (!type_check (i, 0, BT_INTEGER))
3603 : : return false;
3604 : : }
3605 : :
3606 : 904 : if (size != NULL)
3607 : : {
3608 : 605 : int i2, i3;
3609 : :
3610 : 605 : if (!type_check (size, 2, BT_INTEGER))
3611 : 11 : return false;
3612 : :
3613 : 605 : if (!less_than_bitsize1 ("I", i, "SIZE", size, true))
3614 : : return false;
3615 : :
3616 : 602 : if (size->expr_type == EXPR_CONSTANT)
3617 : : {
3618 : 155 : gfc_extract_int (size, &i3);
3619 : 155 : if (i3 <= 0)
3620 : : {
3621 : 4 : gfc_error ("SIZE at %L must be positive", &size->where);
3622 : 4 : return false;
3623 : : }
3624 : :
3625 : 151 : if (shift->expr_type == EXPR_CONSTANT)
3626 : : {
3627 : 126 : gfc_extract_int (shift, &i2);
3628 : 126 : if (i2 < 0)
3629 : 28 : i2 = -i2;
3630 : :
3631 : 126 : if (i2 > i3)
3632 : : {
3633 : 4 : gfc_error ("The absolute value of SHIFT at %L must be less "
3634 : : "than or equal to SIZE at %L", &shift->where,
3635 : : &size->where);
3636 : 4 : return false;
3637 : : }
3638 : : }
3639 : : }
3640 : : }
3641 : 299 : else if (!less_than_bitsize1 ("I", i, NULL, shift, true))
3642 : : return false;
3643 : :
3644 : : return true;
3645 : : }
3646 : :
3647 : :
3648 : : bool
3649 : 8 : gfc_check_kill (gfc_expr *pid, gfc_expr *sig)
3650 : : {
3651 : 8 : if (!type_check (pid, 0, BT_INTEGER))
3652 : : return false;
3653 : :
3654 : 8 : if (!scalar_check (pid, 0))
3655 : : return false;
3656 : :
3657 : 8 : if (!type_check (sig, 1, BT_INTEGER))
3658 : : return false;
3659 : :
3660 : 8 : if (!scalar_check (sig, 1))
3661 : : return false;
3662 : :
3663 : : return true;
3664 : : }
3665 : :
3666 : :
3667 : : bool
3668 : 18 : gfc_check_kill_sub (gfc_expr *pid, gfc_expr *sig, gfc_expr *status)
3669 : : {
3670 : 18 : if (!type_check (pid, 0, BT_INTEGER))
3671 : : return false;
3672 : :
3673 : 18 : if (!scalar_check (pid, 0))
3674 : : return false;
3675 : :
3676 : 18 : if (!type_check (sig, 1, BT_INTEGER))
3677 : : return false;
3678 : :
3679 : 18 : if (!scalar_check (sig, 1))
3680 : : return false;
3681 : :
3682 : 18 : if (status)
3683 : : {
3684 : 13 : if (!type_check (status, 2, BT_INTEGER))
3685 : : return false;
3686 : :
3687 : 13 : if (!scalar_check (status, 2))
3688 : : return false;
3689 : :
3690 : 13 : if (status->expr_type != EXPR_VARIABLE)
3691 : : {
3692 : 1 : gfc_error ("STATUS at %L shall be an INTENT(OUT) variable",
3693 : : &status->where);
3694 : 1 : return false;
3695 : : }
3696 : :
3697 : 12 : if (status->expr_type == EXPR_VARIABLE
3698 : 12 : && status->symtree && status->symtree->n.sym
3699 : 12 : && status->symtree->n.sym->attr.intent == INTENT_IN)
3700 : : {
3701 : 1 : gfc_error ("%qs at %L shall be an INTENT(OUT) variable",
3702 : : status->symtree->name, &status->where);
3703 : 1 : return false;
3704 : : }
3705 : : }
3706 : :
3707 : : return true;
3708 : : }
3709 : :
3710 : :
3711 : : bool
3712 : 4484 : gfc_check_kind (gfc_expr *x)
3713 : : {
3714 : 4484 : if (gfc_invalid_null_arg (x))
3715 : : return false;
3716 : :
3717 : 4483 : if (gfc_bt_struct (x->ts.type) || x->ts.type == BT_CLASS)
3718 : : {
3719 : 2 : gfc_error ("%qs argument of %qs intrinsic at %L must be of "
3720 : 2 : "intrinsic type", gfc_current_intrinsic_arg[0]->name,
3721 : : gfc_current_intrinsic, &x->where);
3722 : 2 : return false;
3723 : : }
3724 : 4481 : if (x->ts.type == BT_PROCEDURE)
3725 : : {
3726 : 2 : gfc_error ("%qs argument of %qs intrinsic at %L must be a data entity",
3727 : 2 : gfc_current_intrinsic_arg[0]->name, gfc_current_intrinsic,
3728 : : &x->where);
3729 : 2 : return false;
3730 : : }
3731 : :
3732 : : return true;
3733 : : }
3734 : :
3735 : :
3736 : : bool
3737 : 6423 : gfc_check_lbound (gfc_expr *array, gfc_expr *dim, gfc_expr *kind)
3738 : : {
3739 : 6423 : if (!array_check (array, 0))
3740 : : return false;
3741 : :
3742 : 6422 : if (!dim_check (dim, 1, false))
3743 : : return false;
3744 : :
3745 : 6422 : if (!dim_rank_check (dim, array, 1))
3746 : : return false;
3747 : :
3748 : 6422 : if (!kind_check (kind, 2, BT_INTEGER))
3749 : : return false;
3750 : 6422 : if (kind && !gfc_notify_std (GFC_STD_F2003, "%qs intrinsic "
3751 : : "with KIND argument at %L",
3752 : : gfc_current_intrinsic, &kind->where))
3753 : : return false;
3754 : :
3755 : : return true;
3756 : : }
3757 : :
3758 : :
3759 : : bool
3760 : 311 : gfc_check_lcobound (gfc_expr *coarray, gfc_expr *dim, gfc_expr *kind)
3761 : : {
3762 : 311 : if (flag_coarray == GFC_FCOARRAY_NONE)
3763 : : {
3764 : 0 : gfc_fatal_error ("Coarrays disabled at %C, use %<-fcoarray=%> to enable");
3765 : : return false;
3766 : : }
3767 : :
3768 : 311 : if (!coarray_check (coarray, 0))
3769 : : return false;
3770 : :
3771 : 307 : if (dim != NULL)
3772 : : {
3773 : 176 : if (!dim_check (dim, 1, false))
3774 : : return false;
3775 : :
3776 : 176 : if (!dim_corank_check (dim, coarray))
3777 : : return false;
3778 : : }
3779 : :
3780 : 307 : if (!kind_check (kind, 2, BT_INTEGER))
3781 : : return false;
3782 : :
3783 : : return true;
3784 : : }
3785 : :
3786 : :
3787 : : bool
3788 : 10339 : gfc_check_len_lentrim (gfc_expr *s, gfc_expr *kind)
3789 : : {
3790 : 10339 : if (!type_check (s, 0, BT_CHARACTER))
3791 : : return false;
3792 : :
3793 : 10318 : if (gfc_invalid_null_arg (s))
3794 : : return false;
3795 : :
3796 : 10312 : if (!kind_check (kind, 1, BT_INTEGER))
3797 : : return false;
3798 : 10312 : if (kind && !gfc_notify_std (GFC_STD_F2003, "%qs intrinsic "
3799 : : "with KIND argument at %L",
3800 : : gfc_current_intrinsic, &kind->where))
3801 : : return false;
3802 : :
3803 : : return true;
3804 : : }
3805 : :
3806 : :
3807 : : bool
3808 : 187 : gfc_check_lge_lgt_lle_llt (gfc_expr *a, gfc_expr *b)
3809 : : {
3810 : 187 : if (!type_check (a, 0, BT_CHARACTER))
3811 : : return false;
3812 : 187 : if (!kind_value_check (a, 0, gfc_default_character_kind))
3813 : : return false;
3814 : :
3815 : 155 : if (!type_check (b, 1, BT_CHARACTER))
3816 : : return false;
3817 : 155 : if (!kind_value_check (b, 1, gfc_default_character_kind))
3818 : : return false;
3819 : :
3820 : : return true;
3821 : : }
3822 : :
3823 : :
3824 : : bool
3825 : 7 : gfc_check_link (gfc_expr *path1, gfc_expr *path2)
3826 : : {
3827 : 7 : if (!type_check (path1, 0, BT_CHARACTER))
3828 : : return false;
3829 : 7 : if (!kind_value_check (path1, 0, gfc_default_character_kind))
3830 : : return false;
3831 : :
3832 : 5 : if (!type_check (path2, 1, BT_CHARACTER))
3833 : : return false;
3834 : 5 : if (!kind_value_check (path2, 1, gfc_default_character_kind))
3835 : : return false;
3836 : :
3837 : : return true;
3838 : : }
3839 : :
3840 : :
3841 : : bool
3842 : 15 : gfc_check_link_sub (gfc_expr *path1, gfc_expr *path2, gfc_expr *status)
3843 : : {
3844 : 15 : if (!type_check (path1, 0, BT_CHARACTER))
3845 : : return false;
3846 : 15 : if (!kind_value_check (path1, 0, gfc_default_character_kind))
3847 : : return false;
3848 : :
3849 : 11 : if (!type_check (path2, 1, BT_CHARACTER))
3850 : : return false;
3851 : 11 : if (!kind_value_check (path2, 0, gfc_default_character_kind))
3852 : : return false;
3853 : :
3854 : 9 : if (status == NULL)
3855 : : return true;
3856 : :
3857 : 7 : if (!type_check (status, 2, BT_INTEGER))
3858 : : return false;
3859 : :
3860 : 7 : if (!scalar_check (status, 2))
3861 : : return false;
3862 : :
3863 : : return true;
3864 : : }
3865 : :
3866 : :
3867 : : bool
3868 : 3859 : gfc_check_loc (gfc_expr *expr)
3869 : : {
3870 : 3859 : return variable_check (expr, 0, true);
3871 : : }
3872 : :
3873 : :
3874 : : bool
3875 : 7 : gfc_check_symlnk (gfc_expr *path1, gfc_expr *path2)
3876 : : {
3877 : 7 : if (!type_check (path1, 0, BT_CHARACTER))
3878 : : return false;
3879 : 7 : if (!kind_value_check (path1, 0, gfc_default_character_kind))
3880 : : return false;
3881 : :
3882 : 5 : if (!type_check (path2, 1, BT_CHARACTER))
3883 : : return false;
3884 : 5 : if (!kind_value_check (path2, 1, gfc_default_character_kind))
3885 : : return false;
3886 : :
3887 : : return true;
3888 : : }
3889 : :
3890 : :
3891 : : bool
3892 : 15 : gfc_check_symlnk_sub (gfc_expr *path1, gfc_expr *path2, gfc_expr *status)
3893 : : {
3894 : 15 : if (!type_check (path1, 0, BT_CHARACTER))
3895 : : return false;
3896 : 15 : if (!kind_value_check (path1, 0, gfc_default_character_kind))
3897 : : return false;
3898 : :
3899 : 11 : if (!type_check (path2, 1, BT_CHARACTER))
3900 : : return false;
3901 : 11 : if (!kind_value_check (path2, 1, gfc_default_character_kind))
3902 : : return false;
3903 : :
3904 : 9 : if (status == NULL)
3905 : : return true;
3906 : :
3907 : 7 : if (!type_check (status, 2, BT_INTEGER))
3908 : : return false;
3909 : :
3910 : 7 : if (!scalar_check (status, 2))
3911 : : return false;
3912 : :
3913 : : return true;
3914 : : }
3915 : :
3916 : :
3917 : : bool
3918 : 28 : gfc_check_logical (gfc_expr *a, gfc_expr *kind)
3919 : : {
3920 : 28 : if (!type_check (a, 0, BT_LOGICAL))
3921 : : return false;
3922 : 28 : if (!kind_check (kind, 1, BT_LOGICAL))
3923 : : return false;
3924 : :
3925 : : return true;
3926 : : }
3927 : :
3928 : :
3929 : : /* Min/max family. */
3930 : :
3931 : : static bool
3932 : 4952 : min_max_args (gfc_actual_arglist *args)
3933 : : {
3934 : 4952 : gfc_actual_arglist *arg;
3935 : 4952 : int i, j, nargs, *nlabels, nlabelless;
3936 : 4952 : bool a1 = false, a2 = false;
3937 : :
3938 : 4952 : if (args == NULL || args->next == NULL)
3939 : : {
3940 : 0 : gfc_error ("Intrinsic %qs at %L must have at least two arguments",
3941 : : gfc_current_intrinsic, gfc_current_intrinsic_where);
3942 : 0 : return false;
3943 : : }
3944 : :
3945 : 4952 : if (!args->name)
3946 : 4940 : a1 = true;
3947 : :
3948 : 4952 : if (!args->next->name)
3949 : 4939 : a2 = true;
3950 : :
3951 : 4952 : nargs = 0;
3952 : 16339 : for (arg = args; arg; arg = arg->next)
3953 : 11387 : if (arg->name)
3954 : 38 : nargs++;
3955 : :
3956 : 4952 : if (nargs == 0)
3957 : : return true;
3958 : :
3959 : : /* Note: Having a keywordless argument after an "arg=" is checked before. */
3960 : 13 : nlabelless = 0;
3961 : 13 : nlabels = XALLOCAVEC (int, nargs);
3962 : 40 : for (arg = args, i = 0; arg; arg = arg->next, i++)
3963 : 34 : if (arg->name)
3964 : : {
3965 : 33 : int n;
3966 : 33 : char *endp;
3967 : :
3968 : 33 : if (arg->name[0] != 'a' || arg->name[1] < '1' || arg->name[1] > '9')
3969 : 2 : goto unknown;
3970 : 31 : n = strtol (&arg->name[1], &endp, 10);
3971 : 31 : if (endp[0] != '\0')
3972 : 4 : goto unknown;
3973 : 27 : if (n <= 0)
3974 : 0 : goto unknown;
3975 : 27 : if (n <= nlabelless)
3976 : 1 : goto duplicate;
3977 : 26 : nlabels[i] = n;
3978 : 26 : if (n == 1)
3979 : : a1 = true;
3980 : 15 : if (n == 2)
3981 : 5 : a2 = true;
3982 : : }
3983 : : else
3984 : 1 : nlabelless++;
3985 : :
3986 : 6 : if (!a1 || !a2)
3987 : : {
3988 : 4 : gfc_error ("Missing %qs argument to the %s intrinsic at %L",
3989 : : !a1 ? "a1" : "a2", gfc_current_intrinsic,
3990 : : gfc_current_intrinsic_where);
3991 : 4 : return false;
3992 : : }
3993 : :
3994 : : /* Check for duplicates. */
3995 : 8 : for (i = 0; i < nargs; i++)
3996 : 12 : for (j = i + 1; j < nargs; j++)
3997 : 6 : if (nlabels[i] == nlabels[j])
3998 : 0 : goto duplicate;
3999 : :
4000 : : return true;
4001 : :
4002 : 1 : duplicate:
4003 : 1 : gfc_error ("Duplicate argument %qs at %L to intrinsic %s", arg->name,
4004 : 1 : &arg->expr->where, gfc_current_intrinsic);
4005 : 1 : return false;
4006 : :
4007 : 6 : unknown:
4008 : 6 : gfc_error ("Unknown argument %qs at %L to intrinsic %s", arg->name,
4009 : 6 : &arg->expr->where, gfc_current_intrinsic);
4010 : 6 : return false;
4011 : : }
4012 : :
4013 : :
4014 : : static bool
4015 : 2525 : check_rest (bt type, int kind, gfc_actual_arglist *arglist)
4016 : : {
4017 : 2525 : gfc_actual_arglist *arg, *tmp;
4018 : 2525 : gfc_expr *x;
4019 : 2525 : int m, n;
4020 : :
4021 : 2525 : if (!min_max_args (arglist))
4022 : : return false;
4023 : :
4024 : 8251 : for (arg = arglist, n=1; arg; arg = arg->next, n++)
4025 : : {
4026 : 5773 : x = arg->expr;
4027 : 5773 : if (x->ts.type != type || x->ts.kind != kind)
4028 : : {
4029 : 163 : if (x->ts.type == type)
4030 : : {
4031 : 163 : if (x->ts.type == BT_CHARACTER)
4032 : : {
4033 : 2 : gfc_error ("Different character kinds at %L", &x->where);
4034 : 2 : return false;
4035 : : }
4036 : 161 : if (!gfc_notify_std (GFC_STD_GNU, "Different type "
4037 : : "kinds at %L", &x->where))
4038 : : return false;
4039 : : }
4040 : : else
4041 : : {
4042 : 0 : gfc_error ("%<a%d%> argument of %qs intrinsic at %L must be "
4043 : : "%s(%d)", n, gfc_current_intrinsic, &x->where,
4044 : : gfc_basic_typename (type), kind);
4045 : 0 : return false;
4046 : : }
4047 : : }
4048 : :
4049 : 10013 : for (tmp = arglist, m=1; tmp != arg; tmp = tmp->next, m++)
4050 : 4278 : if (!gfc_check_conformance (tmp->expr, x,
4051 : 4278 : _("arguments 'a%d' and 'a%d' for "
4052 : : "intrinsic '%s'"), m, n,
4053 : : gfc_current_intrinsic))
4054 : : return false;
4055 : : }
4056 : :
4057 : : return true;
4058 : : }
4059 : :
4060 : :
4061 : : bool
4062 : 2427 : gfc_check_min_max (gfc_actual_arglist *arg)
4063 : : {
4064 : 2427 : gfc_expr *x;
4065 : :
4066 : 2427 : if (!min_max_args (arg))
4067 : : return false;
4068 : :
4069 : 2425 : x = arg->expr;
4070 : :
4071 : 2425 : if (x->ts.type == BT_CHARACTER)
4072 : : {
4073 : 521 : if (!gfc_notify_std (GFC_STD_F2003, "%qs intrinsic "
4074 : : "with CHARACTER argument at %L",
4075 : : gfc_current_intrinsic, &x->where))
4076 : : return false;
4077 : : }
4078 : : else
4079 : : {
4080 : 1904 : if (flag_unsigned)
4081 : : {
4082 : 78 : if (x->ts.type != BT_INTEGER && x->ts.type != BT_REAL
4083 : : && x->ts.type != BT_UNSIGNED)
4084 : : {
4085 : 0 : gfc_error ("%<a1%> argument of %qs intrinsic at %L must be "
4086 : : "INTEGER, REAL, CHARACTER or UNSIGNED",
4087 : : gfc_current_intrinsic, &x->where);
4088 : 0 : return false;
4089 : : }
4090 : : }
4091 : : else
4092 : : {
4093 : 1826 : if (x->ts.type != BT_INTEGER && x->ts.type != BT_REAL)
4094 : : {
4095 : 0 : gfc_error ("%<a1%> argument of %qs intrinsic at %L must be "
4096 : : "INTEGER, REAL or CHARACTER",
4097 : : gfc_current_intrinsic, &x->where);
4098 : 0 : return false;
4099 : : }
4100 : : }
4101 : : }
4102 : :
4103 : 2424 : return check_rest (x->ts.type, x->ts.kind, arg);
4104 : : }
4105 : :
4106 : :
4107 : : bool
4108 : 43 : gfc_check_min_max_integer (gfc_actual_arglist *arg)
4109 : : {
4110 : 43 : return check_rest (BT_INTEGER, gfc_default_integer_kind, arg);
4111 : : }
4112 : :
4113 : :
4114 : : bool
4115 : 48 : gfc_check_min_max_real (gfc_actual_arglist *arg)
4116 : : {
4117 : 48 : return check_rest (BT_REAL, gfc_default_real_kind, arg);
4118 : : }
4119 : :
4120 : :
4121 : : bool
4122 : 10 : gfc_check_min_max_double (gfc_actual_arglist *arg)
4123 : : {
4124 : 10 : return check_rest (BT_REAL, gfc_default_double_kind, arg);
4125 : : }
4126 : :
4127 : :
4128 : : /* End of min/max family. */
4129 : :
4130 : : bool
4131 : 16 : gfc_check_malloc (gfc_expr *size)
4132 : : {
4133 : 16 : if (!type_check (size, 0, BT_INTEGER))
4134 : : return false;
4135 : :
4136 : 16 : if (!scalar_check (size, 0))
4137 : : return false;
4138 : :
4139 : : return true;
4140 : : }
4141 : :
4142 : :
4143 : : bool
4144 : 1025 : gfc_check_matmul (gfc_expr *matrix_a, gfc_expr *matrix_b)
4145 : : {
4146 : 1025 : if ((matrix_a->ts.type != BT_LOGICAL) && !gfc_numeric_ts (&matrix_a->ts))
4147 : : {
4148 : 3 : gfc_error ("%qs argument of %qs intrinsic at %L must be numeric "
4149 : 3 : "or LOGICAL", gfc_current_intrinsic_arg[0]->name,
4150 : : gfc_current_intrinsic, &matrix_a->where);
4151 : 3 : return false;
4152 : : }
4153 : :
4154 : 1022 : if ((matrix_b->ts.type != BT_LOGICAL) && !gfc_numeric_ts (&matrix_b->ts))
4155 : : {
4156 : 2 : gfc_error ("%qs argument of %qs intrinsic at %L must be numeric "
4157 : 2 : "or LOGICAL", gfc_current_intrinsic_arg[1]->name,
4158 : : gfc_current_intrinsic, &matrix_b->where);
4159 : 2 : return false;
4160 : : }
4161 : :
4162 : 20 : if ((matrix_a->ts.type == BT_LOGICAL && gfc_numeric_ts (&matrix_b->ts))
4163 : 1019 : || (gfc_numeric_ts (&matrix_a->ts) && matrix_b->ts.type == BT_LOGICAL)
4164 : 2038 : || gfc_invalid_unsigned_ops (matrix_a, matrix_b))
4165 : : {
4166 : 2 : gfc_error ("Argument types of %qs intrinsic at %L must match (%s/%s)",
4167 : : gfc_current_intrinsic, &matrix_a->where,
4168 : : gfc_typename(&matrix_a->ts), gfc_typename(&matrix_b->ts));
4169 : 2 : return false;
4170 : : }
4171 : :
4172 : 1018 : switch (matrix_a->rank)
4173 : : {
4174 : 145 : case 1:
4175 : 145 : if (!rank_check (matrix_b, 1, 2))
4176 : : return false;
4177 : : /* Check for case matrix_a has shape(m), matrix_b has shape (m, k). */
4178 : 145 : if (!identical_dimen_shape (matrix_a, 0, matrix_b, 0))
4179 : : {
4180 : 2 : gfc_error ("Different shape on dimension 1 for arguments %qs "
4181 : : "and %qs at %L for intrinsic matmul",
4182 : 2 : gfc_current_intrinsic_arg[0]->name,
4183 : 2 : gfc_current_intrinsic_arg[1]->name, &matrix_a->where);
4184 : 2 : return false;
4185 : : }
4186 : : break;
4187 : :
4188 : 873 : case 2:
4189 : 873 : if (matrix_b->rank != 2)
4190 : : {
4191 : 176 : if (!rank_check (matrix_b, 1, 1))
4192 : : return false;
4193 : : }
4194 : : /* matrix_b has rank 1 or 2 here. Common check for the cases
4195 : : - matrix_a has shape (n,m) and matrix_b has shape (m, k)
4196 : : - matrix_a has shape (n,m) and matrix_b has shape (m). */
4197 : 873 : if (!identical_dimen_shape (matrix_a, 1, matrix_b, 0))
4198 : : {
4199 : 0 : gfc_error ("Different shape on dimension 2 for argument %qs and "
4200 : : "dimension 1 for argument %qs at %L for intrinsic "
4201 : 0 : "matmul", gfc_current_intrinsic_arg[0]->name,
4202 : 0 : gfc_current_intrinsic_arg[1]->name, &matrix_a->where);
4203 : 0 : return false;
4204 : : }
4205 : : break;
4206 : :
4207 : 0 : default:
4208 : 0 : gfc_error ("%qs argument of %qs intrinsic at %L must be of rank "
4209 : 0 : "1 or 2", gfc_current_intrinsic_arg[0]->name,
4210 : : gfc_current_intrinsic, &matrix_a->where);
4211 : 0 : return false;
4212 : : }
4213 : :
4214 : : return true;
4215 : : }
4216 : :
4217 : :
4218 : : /* Whoever came up with this interface was probably on something.
4219 : : The possibilities for the occupation of the second and third
4220 : : parameters are:
4221 : :
4222 : : Arg #2 Arg #3
4223 : : NULL NULL
4224 : : DIM NULL
4225 : : MASK NULL
4226 : : NULL MASK minloc(array, mask=m)
4227 : : DIM MASK
4228 : :
4229 : : I.e. in the case of minloc(array,mask), mask will be in the second
4230 : : position of the argument list and we'll have to fix that up. Also,
4231 : : add the BACK argument if that isn't present. */
4232 : :
4233 : : bool
4234 : 10307 : gfc_check_minloc_maxloc (gfc_actual_arglist *ap)
4235 : : {
4236 : 10307 : gfc_expr *a, *m, *d, *k, *b;
4237 : :
4238 : 10307 : a = ap->expr;
4239 : :
4240 : 10307 : if (flag_unsigned)
4241 : : {
4242 : 96 : if (!int_or_real_or_char_or_unsigned_check_f2003 (a, 0))
4243 : : return false;
4244 : : }
4245 : : else
4246 : 10211 : if (!int_or_real_or_char_check_f2003 (a, 0))
4247 : : return false;
4248 : :
4249 : 10307 : if (!array_check (a, 0))
4250 : : return false;
4251 : :
4252 : 10307 : d = ap->next->expr;
4253 : 10307 : m = ap->next->next->expr;
4254 : 10307 : k = ap->next->next->next->expr;
4255 : 10307 : b = ap->next->next->next->next->expr;
4256 : :
4257 : 10307 : if (b)
4258 : : {
4259 : 1072 : if (!type_check (b, 4, BT_LOGICAL) || !scalar_check (b,4))
4260 : 4 : return false;
4261 : : }
4262 : : else
4263 : : {
4264 : 9235 : b = gfc_get_logical_expr (gfc_logical_4_kind, NULL, 0);
4265 : 9235 : ap->next->next->next->next->expr = b;
4266 : 9235 : ap->next->next->next->next->name = gfc_get_string ("back");
4267 : : }
4268 : :
4269 : 10303 : if (m == NULL && d != NULL && d->ts.type == BT_LOGICAL
4270 : 62 : && ap->next->name == NULL)
4271 : : {
4272 : 62 : m = d;
4273 : 62 : d = NULL;
4274 : 62 : ap->next->expr = NULL;
4275 : 62 : ap->next->next->expr = m;
4276 : : }
4277 : :
4278 : 10303 : if (!dim_check (d, 1, false))
4279 : : return false;
4280 : :
4281 : 10303 : if (!dim_rank_check (d, a, 0))
4282 : : return false;
4283 : :
4284 : 10302 : if (m != NULL && !type_check (m, 2, BT_LOGICAL))
4285 : : return false;
4286 : :
4287 : 10298 : if (m != NULL
4288 : 17386 : && !gfc_check_conformance (a, m,
4289 : 7088 : _("arguments '%s' and '%s' for intrinsic %s"),
4290 : 7088 : gfc_current_intrinsic_arg[0]->name,
4291 : 7088 : gfc_current_intrinsic_arg[2]->name,
4292 : : gfc_current_intrinsic))
4293 : : return false;
4294 : :
4295 : 10290 : if (!kind_check (k, 1, BT_INTEGER))
4296 : : return false;
4297 : :
4298 : : return true;
4299 : : }
4300 : :
4301 : : /* Check function for findloc. Mostly like gfc_check_minloc_maxloc
4302 : : above, with the additional "value" argument. */
4303 : :
4304 : : bool
4305 : 865 : gfc_check_findloc (gfc_actual_arglist *ap)
4306 : : {
4307 : 865 : gfc_expr *a, *v, *m, *d, *k, *b;
4308 : 865 : bool a1, v1;
4309 : :
4310 : 865 : a = ap->expr;
4311 : 865 : if (!intrinsic_type_check (a, 0) || !array_check (a, 0))
4312 : 0 : return false;
4313 : :
4314 : 865 : v = ap->next->expr;
4315 : 865 : if (!intrinsic_type_check (v, 1) || !scalar_check (v,1))
4316 : 1 : return false;
4317 : :
4318 : : /* Check if the type are both logical. */
4319 : 864 : a1 = a->ts.type == BT_LOGICAL;
4320 : 864 : v1 = v->ts.type == BT_LOGICAL;
4321 : 864 : if ((a1 && !v1) || (!a1 && v1))
4322 : 1 : goto incompat;
4323 : :
4324 : : /* Check if the type are both character. */
4325 : 863 : a1 = a->ts.type == BT_CHARACTER;
4326 : 863 : v1 = v->ts.type == BT_CHARACTER;
4327 : 863 : if ((a1 && !v1) || (!a1 && v1))
4328 : 2 : goto incompat;
4329 : :
4330 : 861 : if (flag_unsigned && gfc_invalid_unsigned_ops (a,v))
4331 : 0 : goto incompat;
4332 : :
4333 : : /* Check the kind of the characters argument match. */
4334 : 861 : if (a1 && v1 && a->ts.kind != v->ts.kind)
4335 : 4 : goto incompat;
4336 : :
4337 : 857 : d = ap->next->next->expr;
4338 : 857 : m = ap->next->next->next->expr;
4339 : 857 : k = ap->next->next->next->next->expr;
4340 : 857 : b = ap->next->next->next->next->next->expr;
4341 : :
4342 : 857 : if (b)
4343 : : {
4344 : 212 : if (!type_check (b, 5, BT_LOGICAL) || !scalar_check (b,4))
4345 : 0 : return false;
4346 : : }
4347 : : else
4348 : : {
4349 : 645 : b = gfc_get_logical_expr (gfc_logical_4_kind, NULL, 0);
4350 : 645 : ap->next->next->next->next->next->expr = b;
4351 : 645 : ap->next->next->next->next->next->name = gfc_get_string ("back");
4352 : : }
4353 : :
4354 : 857 : if (m == NULL && d != NULL && d->ts.type == BT_LOGICAL
4355 : 13 : && ap->next->name == NULL)
4356 : : {
4357 : 13 : m = d;
4358 : 13 : d = NULL;
4359 : 13 : ap->next->next->expr = NULL;
4360 : 13 : ap->next->next->next->expr = m;
4361 : : }
4362 : :
4363 : 857 : if (!dim_check (d, 2, false))
4364 : : return false;
4365 : :
4366 : 856 : if (!dim_rank_check (d, a, 0))
4367 : : return false;
4368 : :
4369 : 855 : if (m != NULL && !type_check (m, 3, BT_LOGICAL))
4370 : : return false;
4371 : :
4372 : 853 : if (m != NULL
4373 : 1247 : && !gfc_check_conformance (a, m,
4374 : 394 : _("arguments '%s' and '%s' for intrinsic %s"),
4375 : 394 : gfc_current_intrinsic_arg[0]->name,
4376 : 394 : gfc_current_intrinsic_arg[3]->name,
4377 : : gfc_current_intrinsic))
4378 : : return false;
4379 : :
4380 : 852 : if (!kind_check (k, 1, BT_INTEGER))
4381 : : return false;
4382 : :
4383 : : return true;
4384 : :
4385 : 7 : incompat:
4386 : 7 : gfc_error ("Argument %qs of %qs intrinsic at %L must be in type "
4387 : : "conformance to argument %qs at %L",
4388 : 7 : gfc_current_intrinsic_arg[0]->name,
4389 : : gfc_current_intrinsic, &a->where,
4390 : 7 : gfc_current_intrinsic_arg[1]->name, &v->where);
4391 : 7 : return false;
4392 : : }
4393 : :
4394 : :
4395 : : /* Similar to minloc/maxloc, the argument list might need to be
4396 : : reordered for the MINVAL, MAXVAL, PRODUCT, and SUM intrinsics. The
4397 : : difference is that MINLOC/MAXLOC take an additional KIND argument.
4398 : : The possibilities are:
4399 : :
4400 : : Arg #2 Arg #3
4401 : : NULL NULL
4402 : : DIM NULL
4403 : : MASK NULL
4404 : : NULL MASK minval(array, mask=m)
4405 : : DIM MASK
4406 : :
4407 : : I.e. in the case of minval(array,mask), mask will be in the second
4408 : : position of the argument list and we'll have to fix that up. */
4409 : :
4410 : : static bool
4411 : 7316 : check_reduction (gfc_actual_arglist *ap)
4412 : : {
4413 : 7316 : gfc_expr *a, *m, *d;
4414 : :
4415 : 7316 : a = ap->expr;
4416 : 7316 : d = ap->next->expr;
4417 : 7316 : m = ap->next->next->expr;
4418 : :
4419 : 7316 : if (m == NULL && d != NULL && d->ts.type == BT_LOGICAL
4420 : 254 : && ap->next->name == NULL)
4421 : : {
4422 : 254 : m = d;
4423 : 254 : d = NULL;
4424 : 254 : ap->next->expr = NULL;
4425 : 254 : ap->next->next->expr = m;
4426 : : }
4427 : :
4428 : 7316 : if (!dim_check (d, 1, false))
4429 : : return false;
4430 : :
4431 : 7316 : if (!dim_rank_check (d, a, 0))
4432 : : return false;
4433 : :
4434 : 7313 : if (m != NULL && !type_check (m, 2, BT_LOGICAL))
4435 : : return false;
4436 : :
4437 : 7313 : if (m != NULL
4438 : 10672 : && !gfc_check_conformance (a, m,
4439 : 3359 : _("arguments '%s' and '%s' for intrinsic %s"),
4440 : 3359 : gfc_current_intrinsic_arg[0]->name,
4441 : 3359 : gfc_current_intrinsic_arg[2]->name,
4442 : : gfc_current_intrinsic))
4443 : : return false;
4444 : :
4445 : : return true;
4446 : : }
4447 : :
4448 : :
4449 : : bool
4450 : 3976 : gfc_check_minval_maxval (gfc_actual_arglist *ap)
4451 : : {
4452 : 3976 : if (flag_unsigned)
4453 : : {
4454 : 96 : if (!int_or_real_or_char_or_unsigned_check_f2003 (ap->expr, 0))
4455 : : return false;
4456 : : }
4457 : 3880 : else if (!int_or_real_or_char_check_f2003 (ap->expr, 0))
4458 : : return false;
4459 : :
4460 : 3976 : if (!array_check (ap->expr, 0))
4461 : : return false;
4462 : :
4463 : 3976 : return check_reduction (ap);
4464 : : }
4465 : :
4466 : :
4467 : : bool
4468 : 2809 : gfc_check_product_sum (gfc_actual_arglist *ap)
4469 : : {
4470 : 2809 : if (!numeric_check (ap->expr, 0)
4471 : 2809 : || !array_check (ap->expr, 0))
4472 : 0 : return false;
4473 : :
4474 : 2809 : return check_reduction (ap);
4475 : : }
4476 : :
4477 : :
4478 : : /* For IANY, IALL and IPARITY. */
4479 : :
4480 : : bool
4481 : 1020 : gfc_check_mask (gfc_expr *i, gfc_expr *kind)
4482 : : {
4483 : 1020 : int k;
4484 : :
4485 : 1020 : if (flag_unsigned)
4486 : : {
4487 : 96 : if (!type_check2 (i, 0, BT_INTEGER, BT_UNSIGNED))
4488 : : return false;
4489 : : }
4490 : 924 : else if (!type_check (i, 0, BT_INTEGER))
4491 : : return false;
4492 : :
4493 : 1020 : if (!nonnegative_check ("I", i))
4494 : : return false;
4495 : :
4496 : 1018 : if (!kind_check (kind, 1, BT_INTEGER))
4497 : : return false;
4498 : :
4499 : 1018 : if (kind)
4500 : 960 : gfc_extract_int (kind, &k);
4501 : : else
4502 : 58 : k = i->ts.type == BT_UNSIGNED ? gfc_default_unsigned_kind : gfc_default_integer_kind;
4503 : :
4504 : 1018 : if (!less_than_bitsizekind ("I", i, k))
4505 : : return false;
4506 : :
4507 : : return true;
4508 : : }
4509 : :
4510 : :
4511 : : bool
4512 : 531 : gfc_check_transf_bit_intrins (gfc_actual_arglist *ap)
4513 : : {
4514 : 531 : bt type = ap->expr->ts.type;
4515 : :
4516 : 531 : if (flag_unsigned)
4517 : : {
4518 : 108 : if (type != BT_INTEGER && type != BT_UNSIGNED)
4519 : : {
4520 : 0 : gfc_error ("%qs argument of %qs intrinsic at %L must be INTEGER "
4521 : 0 : "or UNSIGNED", gfc_current_intrinsic_arg[0]->name,
4522 : : gfc_current_intrinsic, &ap->expr->where);
4523 : 0 : return false;
4524 : : }
4525 : : }
4526 : 423 : else if (ap->expr->ts.type != BT_INTEGER)
4527 : : {
4528 : 0 : gfc_error ("%qs argument of %qs intrinsic at %L must be INTEGER",
4529 : 0 : gfc_current_intrinsic_arg[0]->name,
4530 : : gfc_current_intrinsic, &ap->expr->where);
4531 : 0 : return false;
4532 : : }
4533 : :
4534 : 531 : if (!array_check (ap->expr, 0))
4535 : : return false;
4536 : :
4537 : 531 : return check_reduction (ap);
4538 : : }
4539 : :
4540 : :
4541 : : bool
4542 : 1475 : gfc_check_merge (gfc_expr *tsource, gfc_expr *fsource, gfc_expr *mask)
4543 : : {
4544 : 1475 : if (gfc_invalid_null_arg (tsource))
4545 : : return false;
4546 : :
4547 : 1473 : if (gfc_invalid_null_arg (fsource))
4548 : : return false;
4549 : :
4550 : 1472 : if (!same_type_check (tsource, 0, fsource, 1))
4551 : : return false;
4552 : :
4553 : 1472 : if (!type_check (mask, 2, BT_LOGICAL))
4554 : : return false;
4555 : :
4556 : 1472 : if (tsource->ts.type == BT_CHARACTER)
4557 : 571 : return gfc_check_same_strlen (tsource, fsource, "MERGE intrinsic");
4558 : :
4559 : : return true;
4560 : : }
4561 : :
4562 : :
4563 : : bool
4564 : 337 : gfc_check_merge_bits (gfc_expr *i, gfc_expr *j, gfc_expr *mask)
4565 : : {
4566 : : /* i and j cannot both be BOZ literal constants. */
4567 : 337 : if (!boz_args_check (i, j))
4568 : : return false;
4569 : :
4570 : : /* If i is BOZ and j is integer, convert i to type of j. */
4571 : 12 : if (i->ts.type == BT_BOZ && j->ts.type == BT_INTEGER
4572 : 348 : && !gfc_boz2int (i, j->ts.kind))
4573 : : return false;
4574 : :
4575 : : /* If j is BOZ and i is integer, convert j to type of i. */
4576 : 24 : if (j->ts.type == BT_BOZ && i->ts.type == BT_INTEGER
4577 : 360 : && !gfc_boz2int (j, i->ts.kind))
4578 : : return false;
4579 : :
4580 : 336 : if (flag_unsigned)
4581 : : {
4582 : : /* If i is BOZ and j is unsigned, convert i to type of j. */
4583 : 0 : if (i->ts.type == BT_BOZ && j->ts.type == BT_UNSIGNED
4584 : 24 : && !gfc_boz2uint (i, j->ts.kind))
4585 : : return false;
4586 : :
4587 : : /* If j is BOZ and i is unsigned, convert j to type of i. */
4588 : 0 : if (j->ts.type == BT_BOZ && i->ts.type == BT_UNSIGNED
4589 : 24 : && !gfc_boz2int (j, i->ts.kind))
4590 : : return false;
4591 : :
4592 : 24 : if (!type_check2 (i, 0, BT_INTEGER, BT_UNSIGNED))
4593 : : return false;
4594 : :
4595 : 24 : if (!type_check2 (j, 1, BT_INTEGER, BT_UNSIGNED))
4596 : : return false;
4597 : : }
4598 : : else
4599 : : {
4600 : 312 : if (!type_check (i, 0, BT_INTEGER))
4601 : : return false;
4602 : :
4603 : 312 : if (!type_check (j, 1, BT_INTEGER))
4604 : : return false;
4605 : : }
4606 : :
4607 : 336 : if (!same_type_check (i, 0, j, 1))
4608 : : return false;
4609 : :
4610 : 336 : if (mask->ts.type == BT_BOZ)
4611 : : {
4612 : 24 : if (i->ts.type == BT_INTEGER && !gfc_boz2int (mask, i->ts.kind))
4613 : : return false;
4614 : 24 : if (i->ts.type == BT_UNSIGNED && !gfc_boz2uint (mask, i->ts.kind))
4615 : : return false;
4616 : : }
4617 : :
4618 : 336 : if (flag_unsigned)
4619 : : {
4620 : 24 : if (!type_check2 (mask, 2, BT_INTEGER, BT_UNSIGNED))
4621 : : return false;
4622 : : }
4623 : : else
4624 : : {
4625 : 312 : if (!type_check (mask, 2, BT_INTEGER))
4626 : : return false;
4627 : : }
4628 : :
4629 : 336 : if (!same_type_check (i, 0, mask, 2))
4630 : : return false;
4631 : :
4632 : : return true;
4633 : : }
4634 : :
4635 : :
4636 : : bool
4637 : 273 : gfc_check_move_alloc (gfc_expr *from, gfc_expr *to)
4638 : : {
4639 : 273 : if (!variable_check (from, 0, false))
4640 : : return false;
4641 : 268 : if (!allocatable_check (from, 0))
4642 : : return false;
4643 : 262 : if (gfc_is_coindexed (from))
4644 : : {
4645 : 2 : gfc_error ("The FROM argument to MOVE_ALLOC at %L shall not be "
4646 : : "coindexed", &from->where);
4647 : 2 : return false;
4648 : : }
4649 : :
4650 : 260 : if (!variable_check (to, 1, false))
4651 : : return false;
4652 : 260 : if (!allocatable_check (to, 1))
4653 : : return false;
4654 : 259 : if (gfc_is_coindexed (to))
4655 : : {
4656 : 2 : gfc_error ("The TO argument to MOVE_ALLOC at %L shall not be "
4657 : : "coindexed", &to->where);
4658 : 2 : return false;
4659 : : }
4660 : :
4661 : 257 : if (from->ts.type == BT_CLASS && to->ts.type == BT_DERIVED)
4662 : : {
4663 : 1 : gfc_error ("The TO arguments in MOVE_ALLOC at %L must be "
4664 : : "polymorphic if FROM is polymorphic",
4665 : : &to->where);
4666 : 1 : return false;
4667 : : }
4668 : :
4669 : 256 : if (!same_type_check (to, 1, from, 0))
4670 : : return false;
4671 : :
4672 : 256 : if (to->rank != from->rank)
4673 : : {
4674 : 0 : gfc_error ("The FROM and TO arguments of the MOVE_ALLOC intrinsic at %L "
4675 : : "must have the same rank %d/%d", &to->where, from->rank,
4676 : : to->rank);
4677 : 0 : return false;
4678 : : }
4679 : :
4680 : : /* IR F08/0040; cf. 12-006A. */
4681 : 256 : if (to->corank != from->corank)
4682 : : {
4683 : 4 : gfc_error ("The FROM and TO arguments of the MOVE_ALLOC intrinsic at %L "
4684 : : "must have the same corank %d/%d",
4685 : : &to->where, from->corank, to->corank);
4686 : 4 : return false;
4687 : : }
4688 : :
4689 : : /* This is based losely on F2003 12.4.1.7. It is intended to prevent
4690 : : the likes of to = sym->cmp1->cmp2 and from = sym->cmp1, where cmp1
4691 : : and cmp2 are allocatable. After the allocation is transferred,
4692 : : the 'to' chain is broken by the nullification of the 'from'. A bit
4693 : : of reflection reveals that this can only occur for derived types
4694 : : with recursive allocatable components. */
4695 : 252 : if (to->expr_type == EXPR_VARIABLE && from->expr_type == EXPR_VARIABLE
4696 : 252 : && !strcmp (to->symtree->n.sym->name, from->symtree->n.sym->name))
4697 : : {
4698 : 2 : gfc_ref *to_ref, *from_ref;
4699 : 2 : to_ref = to->ref;
4700 : 2 : from_ref = from->ref;
4701 : 2 : bool aliasing = true;
4702 : :
4703 : 3 : for (; from_ref && to_ref;
4704 : 1 : from_ref = from_ref->next, to_ref = to_ref->next)
4705 : : {
4706 : 2 : if (to_ref->type != from->ref->type)
4707 : : aliasing = false;
4708 : 2 : else if (to_ref->type == REF_ARRAY
4709 : 1 : && to_ref->u.ar.type != AR_FULL
4710 : 1 : && from_ref->u.ar.type != AR_FULL)
4711 : : /* Play safe; assume sections and elements are different. */
4712 : : aliasing = false;
4713 : 1 : else if (to_ref->type == REF_COMPONENT
4714 : 1 : && to_ref->u.c.component != from_ref->u.c.component)
4715 : : aliasing = false;
4716 : :
4717 : 1 : if (!aliasing)
4718 : : break;
4719 : : }
4720 : :
4721 : 2 : if (aliasing)
4722 : : {
4723 : 1 : gfc_error ("The FROM and TO arguments at %L violate aliasing "
4724 : : "restrictions (F2003 12.4.1.7)", &to->where);
4725 : 1 : return false;
4726 : : }
4727 : : }
4728 : :
4729 : : /* CLASS arguments: Make sure the vtab of from is present. */
4730 : 251 : if (to->ts.type == BT_CLASS && !UNLIMITED_POLY (from))
4731 : 94 : gfc_find_vtab (&from->ts);
4732 : :
4733 : : return true;
4734 : : }
4735 : :
4736 : :
4737 : : bool
4738 : 2440 : gfc_check_nearest (gfc_expr *x, gfc_expr *s)
4739 : : {
4740 : 2440 : if (!type_check (x, 0, BT_REAL))
4741 : : return false;
4742 : :
4743 : 2440 : if (!type_check (s, 1, BT_REAL))
4744 : : return false;
4745 : :
4746 : 2440 : if (s->expr_type == EXPR_CONSTANT)
4747 : : {
4748 : 2344 : if (mpfr_sgn (s->value.real) == 0)
4749 : : {
4750 : 4 : gfc_error ("Argument %<S%> of NEAREST at %L shall not be zero",
4751 : : &s->where);
4752 : 4 : return false;
4753 : : }
4754 : : }
4755 : :
4756 : : return true;
4757 : : }
4758 : :
4759 : :
4760 : : bool
4761 : 331 : gfc_check_new_line (gfc_expr *a)
4762 : : {
4763 : 331 : if (!type_check (a, 0, BT_CHARACTER))
4764 : : return false;
4765 : :
4766 : : return true;
4767 : : }
4768 : :
4769 : :
4770 : : bool
4771 : 172 : gfc_check_norm2 (gfc_expr *array, gfc_expr *dim)
4772 : : {
4773 : 172 : if (!type_check (array, 0, BT_REAL))
4774 : : return false;
4775 : :
4776 : 170 : if (!array_check (array, 0))
4777 : : return false;
4778 : :
4779 : 169 : if (!dim_check (dim, 1, false))
4780 : : return false;
4781 : :
4782 : 168 : if (!dim_rank_check (dim, array, false))
4783 : : return false;
4784 : :
4785 : : return true;
4786 : : }
4787 : :
4788 : : bool
4789 : 1870 : gfc_check_null (gfc_expr *mold)
4790 : : {
4791 : 1870 : symbol_attribute attr;
4792 : :
4793 : 1870 : if (mold == NULL)
4794 : : return true;
4795 : :
4796 : 564 : if (mold->expr_type == EXPR_NULL)
4797 : : return true;
4798 : :
4799 : 561 : if (!variable_check (mold, 0, true))
4800 : : return false;
4801 : :
4802 : 561 : attr = gfc_variable_attr (mold, NULL);
4803 : :
4804 : 561 : if (!attr.pointer && !attr.proc_pointer && !attr.allocatable)
4805 : : {
4806 : 0 : gfc_error ("%qs argument of %qs intrinsic at %L must be a POINTER, "
4807 : : "ALLOCATABLE or procedure pointer",
4808 : 0 : gfc_current_intrinsic_arg[0]->name,
4809 : : gfc_current_intrinsic, &mold->where);
4810 : 0 : return false;
4811 : : }
4812 : :
4813 : 561 : if (attr.allocatable
4814 : 561 : && !gfc_notify_std (GFC_STD_F2003, "NULL intrinsic with "
4815 : : "allocatable MOLD at %L", &mold->where))
4816 : : return false;
4817 : :
4818 : : /* F2008, C1242. */
4819 : 560 : if (gfc_is_coindexed (mold))
4820 : : {
4821 : 1 : gfc_error ("%qs argument of %qs intrinsic at %L shall not be "
4822 : 1 : "coindexed", gfc_current_intrinsic_arg[0]->name,
4823 : : gfc_current_intrinsic, &mold->where);
4824 : 1 : return false;
4825 : : }
4826 : :
4827 : : return true;
4828 : : }
4829 : :
4830 : :
4831 : : bool
4832 : 640 : gfc_check_pack (gfc_expr *array, gfc_expr *mask, gfc_expr *vector)
4833 : : {
4834 : 640 : if (!array_check (array, 0))
4835 : : return false;
4836 : :
4837 : 640 : if (!type_check (mask, 1, BT_LOGICAL))
4838 : : return false;
4839 : :
4840 : 640 : if (!gfc_check_conformance (array, mask,
4841 : 640 : _("arguments '%s' and '%s' for intrinsic '%s'"),
4842 : 640 : gfc_current_intrinsic_arg[0]->name,
4843 : 640 : gfc_current_intrinsic_arg[1]->name,
4844 : : gfc_current_intrinsic))
4845 : : return false;
4846 : :
4847 : 639 : if (vector != NULL)
4848 : : {
4849 : 213 : mpz_t array_size, vector_size;
4850 : 213 : bool have_array_size, have_vector_size;
4851 : :
4852 : 213 : if (!same_type_check (array, 0, vector, 2))
4853 : 2 : return false;
4854 : :
4855 : 213 : if (!rank_check (vector, 2, 1))
4856 : : return false;
4857 : :
4858 : : /* VECTOR requires at least as many elements as MASK
4859 : : has .TRUE. values. */
4860 : 213 : have_array_size = gfc_array_size(array, &array_size);
4861 : 213 : have_vector_size = gfc_array_size(vector, &vector_size);
4862 : :
4863 : 213 : if (have_vector_size
4864 : 177 : && (mask->expr_type == EXPR_ARRAY
4865 : 174 : || (mask->expr_type == EXPR_CONSTANT
4866 : 42 : && have_array_size)))
4867 : : {
4868 : 33 : int mask_true_values = 0;
4869 : :
4870 : 33 : if (mask->expr_type == EXPR_ARRAY)
4871 : : {
4872 : 3 : gfc_constructor *mask_ctor;
4873 : 3 : mask_ctor = gfc_constructor_first (mask->value.constructor);
4874 : 42 : while (mask_ctor)
4875 : : {
4876 : 36 : if (mask_ctor->expr->expr_type != EXPR_CONSTANT)
4877 : : {
4878 : : mask_true_values = 0;
4879 : : break;
4880 : : }
4881 : :
4882 : 36 : if (mask_ctor->expr->value.logical)
4883 : 6 : mask_true_values++;
4884 : :
4885 : 36 : mask_ctor = gfc_constructor_next (mask_ctor);
4886 : : }
4887 : : }
4888 : 30 : else if (mask->expr_type == EXPR_CONSTANT && mask->value.logical)
4889 : 12 : mask_true_values = mpz_get_si (array_size);
4890 : :
4891 : 33 : if (mpz_get_si (vector_size) < mask_true_values)
4892 : : {
4893 : 2 : gfc_error ("%qs argument of %qs intrinsic at %L must "
4894 : : "provide at least as many elements as there "
4895 : : "are .TRUE. values in %qs (%ld/%d)",
4896 : 2 : gfc_current_intrinsic_arg[2]->name,
4897 : : gfc_current_intrinsic, &vector->where,
4898 : 2 : gfc_current_intrinsic_arg[1]->name,
4899 : : mpz_get_si (vector_size), mask_true_values);
4900 : 2 : return false;
4901 : : }
4902 : : }
4903 : :
4904 : 199 : if (have_array_size)
4905 : 151 : mpz_clear (array_size);
4906 : 211 : if (have_vector_size)
4907 : 175 : mpz_clear (vector_size);
4908 : : }
4909 : :
4910 : : return true;
4911 : : }
4912 : :
4913 : :
4914 : : bool
4915 : 103 : gfc_check_parity (gfc_expr *mask, gfc_expr *dim)
4916 : : {
4917 : 103 : if (!type_check (mask, 0, BT_LOGICAL))
4918 : : return false;
4919 : :
4920 : 101 : if (!array_check (mask, 0))
4921 : : return false;
4922 : :
4923 : 100 : if (!dim_check (dim, 1, false))
4924 : : return false;
4925 : :
4926 : 99 : if (!dim_rank_check (dim, mask, false))
4927 : : return false;
4928 : :
4929 : : return true;
4930 : : }
4931 : :
4932 : :
4933 : : bool
4934 : 461 : gfc_check_precision (gfc_expr *x)
4935 : : {
4936 : 461 : if (!real_or_complex_check (x, 0))
4937 : : return false;
4938 : :
4939 : : return true;
4940 : : }
4941 : :
4942 : :
4943 : : bool
4944 : 4837 : gfc_check_present (gfc_expr *a)
4945 : : {
4946 : 4837 : gfc_symbol *sym;
4947 : :
4948 : 4837 : if (!variable_check (a, 0, true))
4949 : : return false;
4950 : :
4951 : 4837 : sym = a->symtree->n.sym;
4952 : 4837 : if (!sym->attr.dummy)
4953 : : {
4954 : 0 : gfc_error ("%qs argument of %qs intrinsic at %L must be of a "
4955 : 0 : "dummy variable", gfc_current_intrinsic_arg[0]->name,
4956 : : gfc_current_intrinsic, &a->where);
4957 : 0 : return false;
4958 : : }
4959 : :
4960 : : /* For CLASS, the optional attribute might be set at either location. */
4961 : 4837 : if ((sym->ts.type != BT_CLASS || !CLASS_DATA (sym)->attr.optional)
4962 : 4837 : && !sym->attr.optional)
4963 : : {
4964 : 0 : gfc_error ("%qs argument of %qs intrinsic at %L must be of "
4965 : : "an OPTIONAL dummy variable",
4966 : 0 : gfc_current_intrinsic_arg[0]->name, gfc_current_intrinsic,
4967 : : &a->where);
4968 : 0 : return false;
4969 : : }
4970 : :
4971 : : /* 13.14.82 PRESENT(A)
4972 : : ......
4973 : : Argument. A shall be the name of an optional dummy argument that is
4974 : : accessible in the subprogram in which the PRESENT function reference
4975 : : appears... */
4976 : :
4977 : 4837 : if (a->ref != NULL
4978 : 2351 : && !(a->ref->next == NULL && a->ref->type == REF_ARRAY
4979 : 2350 : && (a->ref->u.ar.type == AR_FULL
4980 : 21 : || (a->ref->u.ar.type == AR_ELEMENT
4981 : 21 : && a->ref->u.ar.as->rank == 0))))
4982 : : {
4983 : 2 : gfc_error ("%qs argument of %qs intrinsic at %L must not be a "
4984 : 2 : "subobject of %qs", gfc_current_intrinsic_arg[0]->name,
4985 : : gfc_current_intrinsic, &a->where, sym->name);
4986 : 2 : return false;
4987 : : }
4988 : :
4989 : : return true;
4990 : : }
4991 : :
4992 : :
4993 : : bool
4994 : 49 : gfc_check_radix (gfc_expr *x)
4995 : : {
4996 : 49 : if (!int_or_real_check (x, 0))
4997 : : return false;
4998 : :
4999 : : return true;
5000 : : }
5001 : :
5002 : :
5003 : : bool
5004 : 183 : gfc_check_range (gfc_expr *x)
5005 : : {
5006 : 183 : if (!numeric_check (x, 0))
5007 : : return false;
5008 : :
5009 : : return true;
5010 : : }
5011 : :
5012 : :
5013 : : bool
5014 : 1360 : gfc_check_rank (gfc_expr *a)
5015 : : {
5016 : : /* Any data object is allowed; a "data object" is a "constant (4.1.3),
5017 : : variable (6), or subobject of a constant (2.4.3.2.3)" (F2008, 1.3.45). */
5018 : :
5019 : 1360 : bool is_variable = true;
5020 : :
5021 : : /* Functions returning pointers are regarded as variable, cf. F2008, R602. */
5022 : 1360 : if (a->expr_type == EXPR_FUNCTION)
5023 : 0 : is_variable = a->value.function.esym
5024 : 0 : ? a->value.function.esym->result->attr.pointer
5025 : 0 : : a->symtree->n.sym->result->attr.pointer;
5026 : :
5027 : 1360 : if (a->expr_type == EXPR_OP
5028 : 1360 : || a->expr_type == EXPR_NULL
5029 : 1360 : || a->expr_type == EXPR_COMPCALL
5030 : 1360 : || a->expr_type == EXPR_PPC
5031 : 1360 : || a->ts.type == BT_PROCEDURE
5032 : 1360 : || !is_variable)
5033 : : {
5034 : 0 : gfc_error ("The argument of the RANK intrinsic at %L must be a data "
5035 : : "object", &a->where);
5036 : 0 : return false;
5037 : : }
5038 : :
5039 : : return true;
5040 : : }
5041 : :
5042 : :
5043 : : bool
5044 : 3318 : gfc_check_real (gfc_expr *a, gfc_expr *kind)
5045 : : {
5046 : 3318 : if (!kind_check (kind, 1, BT_REAL))
5047 : : return false;
5048 : :
5049 : : /* BOZ is dealt with in gfc_simplify_real. */
5050 : 3318 : if (a->ts.type == BT_BOZ)
5051 : : return true;
5052 : :
5053 : 3233 : if (!numeric_check (a, 0))
5054 : : return false;
5055 : :
5056 : : return true;
5057 : : }
5058 : :
5059 : :
5060 : : bool
5061 : 7 : gfc_check_rename (gfc_expr *path1, gfc_expr *path2)
5062 : : {
5063 : 7 : if (!type_check (path1, 0, BT_CHARACTER))
5064 : : return false;
5065 : 7 : if (!kind_value_check (path1, 0, gfc_default_character_kind))
5066 : : return false;
5067 : :
5068 : 5 : if (!type_check (path2, 1, BT_CHARACTER))
5069 : : return false;
5070 : 5 : if (!kind_value_check (path2, 1, gfc_default_character_kind))
5071 : : return false;
5072 : :
5073 : : return true;
5074 : : }
5075 : :
5076 : :
5077 : : bool
5078 : 15 : gfc_check_rename_sub (gfc_expr *path1, gfc_expr *path2, gfc_expr *status)
5079 : : {
5080 : 15 : if (!type_check (path1, 0, BT_CHARACTER))
5081 : : return false;
5082 : 15 : if (!kind_value_check (path1, 0, gfc_default_character_kind))
5083 : : return false;
5084 : :
5085 : 11 : if (!type_check (path2, 1, BT_CHARACTER))
5086 : : return false;
5087 : 11 : if (!kind_value_check (path2, 1, gfc_default_character_kind))
5088 : : return false;
5089 : :
5090 : 9 : if (status == NULL)
5091 : : return true;
5092 : :
5093 : 7 : if (!type_check (status, 2, BT_INTEGER))
5094 : : return false;
5095 : :
5096 : 7 : if (!scalar_check (status, 2))
5097 : : return false;
5098 : :
5099 : : return true;
5100 : : }
5101 : :
5102 : :
5103 : : bool
5104 : 1469 : gfc_check_repeat (gfc_expr *x, gfc_expr *y)
5105 : : {
5106 : 1469 : if (!type_check (x, 0, BT_CHARACTER))
5107 : : return false;
5108 : :
5109 : 1469 : if (!scalar_check (x, 0))
5110 : : return false;
5111 : :
5112 : 1469 : if (!type_check (y, 0, BT_INTEGER))
5113 : : return false;
5114 : :
5115 : 1469 : if (!scalar_check (y, 1))
5116 : : return false;
5117 : :
5118 : : return true;
5119 : : }
5120 : :
5121 : :
5122 : : bool
5123 : 8605 : gfc_check_reshape (gfc_expr *source, gfc_expr *shape,
5124 : : gfc_expr *pad, gfc_expr *order)
5125 : : {
5126 : 8605 : mpz_t size;
5127 : 8605 : mpz_t nelems;
5128 : 8605 : int shape_size;
5129 : 8605 : bool shape_is_const;
5130 : :
5131 : 8605 : if (!array_check (source, 0))
5132 : : return false;
5133 : :
5134 : 8604 : if (!rank_check (shape, 1, 1))
5135 : : return false;
5136 : :
5137 : 8604 : if (!type_check (shape, 1, BT_INTEGER))
5138 : : return false;
5139 : :
5140 : 8604 : if (!gfc_array_size (shape, &size))
5141 : : {
5142 : 0 : gfc_error ("%<shape%> argument of %<reshape%> intrinsic at %L must be an "
5143 : : "array of constant size", &shape->where);
5144 : 0 : return false;
5145 : : }
5146 : :
5147 : 8604 : shape_size = mpz_get_ui (size);
5148 : 8604 : mpz_clear (size);
5149 : :
5150 : 8604 : if (shape_size <= 0)
5151 : : {
5152 : 1 : gfc_error ("%qs argument of %qs intrinsic at %L is empty",
5153 : 1 : gfc_current_intrinsic_arg[1]->name, gfc_current_intrinsic,
5154 : : &shape->where);
5155 : 1 : return false;
5156 : : }
5157 : 8603 : else if (shape_size > GFC_MAX_DIMENSIONS)
5158 : : {
5159 : 1 : gfc_error ("%<shape%> argument of %<reshape%> intrinsic at %L has more "
5160 : : "than %d elements", &shape->where, GFC_MAX_DIMENSIONS);
5161 : 1 : return false;
5162 : : }
5163 : :
5164 : 8602 : gfc_simplify_expr (shape, 0);
5165 : 8602 : shape_is_const = gfc_is_constant_array_expr (shape);
5166 : :
5167 : 8602 : if (shape->expr_type == EXPR_ARRAY && shape_is_const)
5168 : : {
5169 : : gfc_expr *e;
5170 : : int i, extent;
5171 : 23375 : for (i = 0; i < shape_size; ++i)
5172 : : {
5173 : 16328 : e = gfc_constructor_lookup_expr (shape->value.constructor, i);
5174 : 16328 : if (e == NULL)
5175 : : break;
5176 : 16328 : if (e->expr_type != EXPR_CONSTANT)
5177 : 0 : continue;
5178 : :
5179 : 16328 : gfc_extract_int (e, &extent);
5180 : 16328 : if (extent < 0)
5181 : : {
5182 : 4 : gfc_error ("%qs argument of %qs intrinsic at %L has "
5183 : : "negative element (%d)",
5184 : 4 : gfc_current_intrinsic_arg[1]->name,
5185 : : gfc_current_intrinsic, &shape->where, extent);
5186 : 4 : return false;
5187 : : }
5188 : : }
5189 : : }
5190 : :
5191 : 8598 : if (pad != NULL)
5192 : : {
5193 : 367 : if (!same_type_check (source, 0, pad, 2))
5194 : : return false;
5195 : :
5196 : 367 : if (!array_check (pad, 2))
5197 : : return false;
5198 : : }
5199 : :
5200 : 8598 : if (order != NULL)
5201 : : {
5202 : 136 : if (!array_check (order, 3))
5203 : : return false;
5204 : :
5205 : 136 : if (!type_check (order, 3, BT_INTEGER))
5206 : : return false;
5207 : :
5208 : 135 : if (order->expr_type == EXPR_ARRAY && gfc_is_constant_array_expr (order))
5209 : : {
5210 : : int i, order_size, dim, perm[GFC_MAX_DIMENSIONS];
5211 : : gfc_expr *e;
5212 : :
5213 : 1232 : for (i = 0; i < GFC_MAX_DIMENSIONS; ++i)
5214 : 1155 : perm[i] = 0;
5215 : :
5216 : 77 : gfc_array_size (order, &size);
5217 : 77 : order_size = mpz_get_ui (size);
5218 : 77 : mpz_clear (size);
5219 : :
5220 : 77 : if (order_size != shape_size)
5221 : : {
5222 : 1 : gfc_error ("%qs argument of %qs intrinsic at %L "
5223 : : "has wrong number of elements (%d/%d)",
5224 : 1 : gfc_current_intrinsic_arg[3]->name,
5225 : : gfc_current_intrinsic, &order->where,
5226 : : order_size, shape_size);
5227 : 3 : return false;
5228 : : }
5229 : :
5230 : 232 : for (i = 1; i <= order_size; ++i)
5231 : : {
5232 : 158 : e = gfc_constructor_lookup_expr (order->value.constructor, i-1);
5233 : 158 : if (e->expr_type != EXPR_CONSTANT)
5234 : 0 : continue;
5235 : :
5236 : 158 : gfc_extract_int (e, &dim);
5237 : :
5238 : 158 : if (dim < 1 || dim > order_size)
5239 : : {
5240 : 1 : gfc_error ("%qs argument of %qs intrinsic at %L "
5241 : : "has out-of-range dimension (%d)",
5242 : 1 : gfc_current_intrinsic_arg[3]->name,
5243 : : gfc_current_intrinsic, &e->where, dim);
5244 : 1 : return false;
5245 : : }
5246 : :
5247 : 157 : if (perm[dim-1] != 0)
5248 : : {
5249 : 1 : gfc_error ("%qs argument of %qs intrinsic at %L has "
5250 : : "invalid permutation of dimensions (dimension "
5251 : : "%qd duplicated)",
5252 : 1 : gfc_current_intrinsic_arg[3]->name,
5253 : : gfc_current_intrinsic, &e->where, dim);
5254 : 1 : return false;
5255 : : }
5256 : :
5257 : 156 : perm[dim-1] = 1;
5258 : : }
5259 : : }
5260 : : }
5261 : :
5262 : 8594 : if (pad == NULL && shape->expr_type == EXPR_ARRAY && shape_is_const
5263 : 6727 : && !(source->expr_type == EXPR_VARIABLE && source->symtree->n.sym->as
5264 : 1855 : && source->symtree->n.sym->as->type == AS_ASSUMED_SIZE))
5265 : : {
5266 : : /* Check the match in size between source and destination. */
5267 : 6726 : if (gfc_array_size (source, &nelems))
5268 : : {
5269 : 6495 : gfc_constructor *c;
5270 : 6495 : bool test;
5271 : :
5272 : :
5273 : 6495 : mpz_init_set_ui (size, 1);
5274 : 6495 : for (c = gfc_constructor_first (shape->value.constructor);
5275 : 21430 : c; c = gfc_constructor_next (c))
5276 : 14935 : mpz_mul (size, size, c->expr->value.integer);
5277 : :
5278 : 6495 : test = mpz_cmp (nelems, size) < 0 && mpz_cmp_ui (size, 0) > 0;
5279 : 6495 : mpz_clear (nelems);
5280 : 6495 : mpz_clear (size);
5281 : :
5282 : 6495 : if (test)
5283 : : {
5284 : 11 : gfc_error ("Without padding, there are not enough elements "
5285 : : "in the intrinsic RESHAPE source at %L to match "
5286 : : "the shape", &source->where);
5287 : 11 : return false;
5288 : : }
5289 : : }
5290 : : }
5291 : :
5292 : : return true;
5293 : : }
5294 : :
5295 : :
5296 : : bool
5297 : 758 : gfc_check_same_type_as (gfc_expr *a, gfc_expr *b)
5298 : : {
5299 : 758 : if (a->ts.type != BT_DERIVED && a->ts.type != BT_CLASS)
5300 : : {
5301 : 4 : gfc_error ("%qs argument of %qs intrinsic at %L "
5302 : : "cannot be of type %s",
5303 : 4 : gfc_current_intrinsic_arg[0]->name,
5304 : : gfc_current_intrinsic,
5305 : : &a->where, gfc_typename (a));
5306 : 4 : return false;
5307 : : }
5308 : :
5309 : 754 : if (!(gfc_type_is_extensible (a->ts.u.derived) || UNLIMITED_POLY (a)))
5310 : : {
5311 : 0 : gfc_error ("%qs argument of %qs intrinsic at %L "
5312 : : "must be of an extensible type",
5313 : 0 : gfc_current_intrinsic_arg[0]->name, gfc_current_intrinsic,
5314 : : &a->where);
5315 : 0 : return false;
5316 : : }
5317 : :
5318 : 754 : if (b->ts.type != BT_DERIVED && b->ts.type != BT_CLASS)
5319 : : {
5320 : 0 : gfc_error ("%qs argument of %qs intrinsic at %L "
5321 : : "cannot be of type %s",
5322 : 0 : gfc_current_intrinsic_arg[0]->name,
5323 : : gfc_current_intrinsic,
5324 : : &b->where, gfc_typename (b));
5325 : 0 : return false;
5326 : : }
5327 : :
5328 : 754 : if (!(gfc_type_is_extensible (b->ts.u.derived) || UNLIMITED_POLY (b)))
5329 : : {
5330 : 2 : gfc_error ("%qs argument of %qs intrinsic at %L "
5331 : : "must be of an extensible type",
5332 : 2 : gfc_current_intrinsic_arg[1]->name, gfc_current_intrinsic,
5333 : : &b->where);
5334 : 2 : return false;
5335 : : }
5336 : :
5337 : : return true;
5338 : : }
5339 : :
5340 : :
5341 : : bool
5342 : 84 : gfc_check_scale (gfc_expr *x, gfc_expr *i)
5343 : : {
5344 : 84 : if (!type_check (x, 0, BT_REAL))
5345 : : return false;
5346 : :
5347 : 84 : if (!type_check (i, 1, BT_INTEGER))
5348 : : return false;
5349 : :
5350 : : return true;
5351 : : }
5352 : :
5353 : :
5354 : : bool
5355 : 418 : gfc_check_scan (gfc_expr *x, gfc_expr *y, gfc_expr *z, gfc_expr *kind)
5356 : : {
5357 : 418 : if (!type_check (x, 0, BT_CHARACTER))
5358 : : return false;
5359 : :
5360 : 418 : if (!type_check (y, 1, BT_CHARACTER))
5361 : : return false;
5362 : :
5363 : 418 : if (z != NULL && !type_check (z, 2, BT_LOGICAL))
5364 : : return false;
5365 : :
5366 : 418 : if (!kind_check (kind, 3, BT_INTEGER))
5367 : : return false;
5368 : 418 : if (kind && !gfc_notify_std (GFC_STD_F2003, "%qs intrinsic "
5369 : : "with KIND argument at %L",
5370 : : gfc_current_intrinsic, &kind->where))
5371 : : return false;
5372 : :
5373 : 418 : if (!same_type_check (x, 0, y, 1))
5374 : : return false;
5375 : :
5376 : : return true;
5377 : : }
5378 : :
5379 : :
5380 : : bool
5381 : 52 : gfc_check_secnds (gfc_expr *r)
5382 : : {
5383 : 52 : if (!type_check (r, 0, BT_REAL))
5384 : : return false;
5385 : :
5386 : 52 : if (!kind_value_check (r, 0, 4))
5387 : : return false;
5388 : :
5389 : 52 : if (!scalar_check (r, 0))
5390 : : return false;
5391 : :
5392 : : return true;
5393 : : }
5394 : :
5395 : :
5396 : : bool
5397 : 214 : gfc_check_selected_char_kind (gfc_expr *name)
5398 : : {
5399 : 214 : if (!type_check (name, 0, BT_CHARACTER))
5400 : : return false;
5401 : :
5402 : 213 : if (!kind_value_check (name, 0, gfc_default_character_kind))
5403 : : return false;
5404 : :
5405 : 211 : if (!scalar_check (name, 0))
5406 : : return false;
5407 : :
5408 : : return true;
5409 : : }
5410 : :
5411 : :
5412 : : bool
5413 : 347 : gfc_check_selected_int_kind (gfc_expr *r)
5414 : : {
5415 : 347 : if (!type_check (r, 0, BT_INTEGER))
5416 : : return false;
5417 : :
5418 : 347 : if (!scalar_check (r, 0))
5419 : : return false;
5420 : :
5421 : : return true;
5422 : : }
5423 : :
5424 : : bool
5425 : 731 : gfc_check_selected_real_kind (gfc_expr *p, gfc_expr *r, gfc_expr *radix)
5426 : : {
5427 : 731 : if (p == NULL && r == NULL
5428 : 731 : && !gfc_notify_std (GFC_STD_F2008, "SELECTED_REAL_KIND with"
5429 : : " neither %<P%> nor %<R%> argument at %L",
5430 : : gfc_current_intrinsic_where))
5431 : : return false;
5432 : :
5433 : 730 : if (p)
5434 : : {
5435 : 688 : if (!type_check (p, 0, BT_INTEGER))
5436 : : return false;
5437 : :
5438 : 688 : if (!scalar_check (p, 0))
5439 : : return false;
5440 : : }
5441 : :
5442 : 729 : if (r)
5443 : : {
5444 : 246 : if (!type_check (r, 1, BT_INTEGER))
5445 : : return false;
5446 : :
5447 : 246 : if (!scalar_check (r, 1))
5448 : : return false;
5449 : : }
5450 : :
5451 : 728 : if (radix)
5452 : : {
5453 : 53 : if (!type_check (radix, 1, BT_INTEGER))
5454 : : return false;
5455 : :
5456 : 53 : if (!scalar_check (radix, 1))
5457 : : return false;
5458 : :
5459 : 53 : if (!gfc_notify_std (GFC_STD_F2008, "%qs intrinsic with "
5460 : : "RADIX argument at %L", gfc_current_intrinsic,
5461 : : &radix->where))
5462 : : return false;
5463 : : }
5464 : :
5465 : : return true;
5466 : : }
5467 : :
5468 : :
5469 : : bool
5470 : 412 : gfc_check_set_exponent (gfc_expr *x, gfc_expr *i)
5471 : : {
5472 : 412 : if (!type_check (x, 0, BT_REAL))
5473 : : return false;
5474 : :
5475 : 412 : if (!type_check (i, 1, BT_INTEGER))
5476 : : return false;
5477 : :
5478 : : return true;
5479 : : }
5480 : :
5481 : :
5482 : : bool
5483 : 7147 : gfc_check_shape (gfc_expr *source, gfc_expr *kind)
5484 : : {
5485 : 7147 : gfc_array_ref *ar;
5486 : :
5487 : 7147 : if (gfc_invalid_null_arg (source))
5488 : : return false;
5489 : :
5490 : 7146 : if (!kind_check (kind, 1, BT_INTEGER))
5491 : : return false;
5492 : 7145 : if (kind && !gfc_notify_std (GFC_STD_F2003, "%qs intrinsic "
5493 : : "with KIND argument at %L",
5494 : : gfc_current_intrinsic, &kind->where))
5495 : : return false;
5496 : :
5497 : 7145 : if (source->rank == 0 || source->expr_type != EXPR_VARIABLE)
5498 : : return true;
5499 : :
5500 : 7072 : if (source->ref == NULL)
5501 : : return false;
5502 : :
5503 : 7072 : ar = gfc_find_array_ref (source);
5504 : :
5505 : 7072 : if (ar->as && ar->as->type == AS_ASSUMED_SIZE && ar->type == AR_FULL)
5506 : : {
5507 : 1 : gfc_error ("%<source%> argument of %<shape%> intrinsic at %L must not be "
5508 : : "an assumed size array", &source->where);
5509 : 1 : return false;
5510 : : }
5511 : :
5512 : : return true;
5513 : : }
5514 : :
5515 : :
5516 : : bool
5517 : 6858 : gfc_check_shift (gfc_expr *i, gfc_expr *shift)
5518 : : {
5519 : 6858 : if (flag_unsigned)
5520 : : {
5521 : 156 : if (!type_check2 (i, 0, BT_INTEGER, BT_UNSIGNED))
5522 : : return false;
5523 : : }
5524 : : else
5525 : : {
5526 : 6702 : if (!type_check (i, 0, BT_INTEGER))
5527 : : return false;
5528 : : }
5529 : :
5530 : 6858 : if (!type_check (shift, 0, BT_INTEGER))
5531 : : return false;
5532 : :
5533 : 6858 : if (!nonnegative_check ("SHIFT", shift))
5534 : : return false;
5535 : :
5536 : 6858 : if (!less_than_bitsize1 ("I", i, "SHIFT", shift, true))
5537 : : return false;
5538 : :
5539 : : return true;
5540 : : }
5541 : :
5542 : :
5543 : : bool
5544 : 328 : gfc_check_sign (gfc_expr *a, gfc_expr *b)
5545 : : {
5546 : 328 : if (!int_or_real_check (a, 0))
5547 : : return false;
5548 : :
5549 : 328 : if (!same_type_check (a, 0, b, 1))
5550 : : return false;
5551 : :
5552 : : return true;
5553 : : }
5554 : :
5555 : :
5556 : : bool
5557 : 11928 : gfc_check_size (gfc_expr *array, gfc_expr *dim, gfc_expr *kind)
5558 : : {
5559 : 11928 : if (!array_check (array, 0))
5560 : : return false;
5561 : :
5562 : 11922 : if (!dim_check (dim, 1, true))
5563 : : return false;
5564 : :
5565 : 11921 : if (!dim_rank_check (dim, array, 0))
5566 : : return false;
5567 : :
5568 : 11917 : if (!kind_check (kind, 2, BT_INTEGER))
5569 : : return false;
5570 : 11916 : if (kind && !gfc_notify_std (GFC_STD_F2003, "%qs intrinsic "
5571 : : "with KIND argument at %L",
5572 : : gfc_current_intrinsic, &kind->where))
5573 : : return false;
5574 : :
5575 : :
5576 : : return true;
5577 : : }
5578 : :
5579 : :
5580 : : bool
5581 : 1817 : gfc_check_sizeof (gfc_expr *arg)
5582 : : {
5583 : 1817 : if (gfc_invalid_null_arg (arg))
5584 : : return false;
5585 : :
5586 : 1816 : if (arg->ts.type == BT_PROCEDURE)
5587 : : {
5588 : 5 : gfc_error ("%qs argument of %qs intrinsic at %L shall not be a procedure",
5589 : 5 : gfc_current_intrinsic_arg[0]->name, gfc_current_intrinsic,
5590 : : &arg->where);
5591 : 5 : return false;
5592 : : }
5593 : :
5594 : 1811 : if (illegal_boz_arg (arg))
5595 : : return false;
5596 : :
5597 : : /* TYPE(*) is acceptable if and only if it uses an array descriptor. */
5598 : 1810 : if (arg->ts.type == BT_ASSUMED
5599 : 165 : && (arg->symtree->n.sym->as == NULL
5600 : 164 : || (arg->symtree->n.sym->as->type != AS_ASSUMED_SHAPE
5601 : 164 : && arg->symtree->n.sym->as->type != AS_DEFERRED
5602 : 98 : && arg->symtree->n.sym->as->type != AS_ASSUMED_RANK)))
5603 : : {
5604 : 1 : gfc_error ("%qs argument of %qs intrinsic at %L shall not be TYPE(*)",
5605 : 1 : gfc_current_intrinsic_arg[0]->name, gfc_current_intrinsic,
5606 : : &arg->where);
5607 : 1 : return false;
5608 : : }
5609 : :
5610 : 1809 : if (arg->rank && arg->expr_type == EXPR_VARIABLE
5611 : 1085 : && arg->symtree->n.sym->as != NULL
5612 : 667 : && arg->symtree->n.sym->as->type == AS_ASSUMED_SIZE && arg->ref
5613 : 1 : && arg->ref->type == REF_ARRAY && arg->ref->u.ar.type == AR_FULL)
5614 : : {
5615 : 1 : gfc_error ("%qs argument of %qs intrinsic at %L shall not be an "
5616 : 1 : "assumed-size array", gfc_current_intrinsic_arg[0]->name,
5617 : : gfc_current_intrinsic, &arg->where);
5618 : 1 : return false;
5619 : : }
5620 : :
5621 : : return true;
5622 : : }
5623 : :
5624 : :
5625 : : /* Check whether an expression is interoperable. When returning false,
5626 : : msg is set to a string telling why the expression is not interoperable,
5627 : : otherwise, it is set to NULL. The msg string can be used in diagnostics.
5628 : : If c_loc is true, character with len > 1 are allowed (cf. Fortran
5629 : : 2003corr5); additionally, assumed-shape/assumed-rank/deferred-shape
5630 : : arrays are permitted. And if c_f_ptr is true, deferred-shape arrays
5631 : : are permitted. */
5632 : :
5633 : : static bool
5634 : 4407 : is_c_interoperable (gfc_expr *expr, const char **msg, bool c_loc, bool c_f_ptr)
5635 : : {
5636 : 4407 : *msg = NULL;
5637 : :
5638 : 4407 : if (expr->expr_type == EXPR_NULL && expr->ts.type == BT_UNKNOWN)
5639 : : {
5640 : 1 : *msg = _("NULL() is not interoperable");
5641 : 1 : return false;
5642 : : }
5643 : :
5644 : 4406 : if (expr->ts.type == BT_BOZ)
5645 : : {
5646 : 1 : *msg = _("BOZ literal constant");
5647 : 1 : return false;
5648 : : }
5649 : :
5650 : 4405 : if (expr->ts.type == BT_CLASS)
5651 : : {
5652 : 0 : *msg = _("Expression is polymorphic");
5653 : 0 : return false;
5654 : : }
5655 : :
5656 : 4405 : if (expr->ts.type == BT_DERIVED && !expr->ts.u.derived->attr.is_bind_c
5657 : 35 : && !expr->ts.u.derived->ts.is_iso_c)
5658 : : {
5659 : 35 : *msg = _("Expression is a noninteroperable derived type");
5660 : 35 : return false;
5661 : : }
5662 : :
5663 : 4370 : if (expr->ts.type == BT_PROCEDURE)
5664 : : {
5665 : 4 : *msg = _("Procedure unexpected as argument");
5666 : 4 : return false;
5667 : : }
5668 : :
5669 : 4366 : if (gfc_notification_std (GFC_STD_GNU) && expr->ts.type == BT_LOGICAL)
5670 : : {
5671 : : int i;
5672 : 24 : for (i = 0; gfc_logical_kinds[i].kind; i++)
5673 : 24 : if (gfc_logical_kinds[i].kind == expr->ts.kind)
5674 : : return true;
5675 : 0 : *msg = _("Extension to use a non-C_Bool-kind LOGICAL");
5676 : 0 : return false;
5677 : : }
5678 : :
5679 : 5001 : if (gfc_notification_std (GFC_STD_GNU) && expr->ts.type == BT_CHARACTER
5680 : 4501 : && expr->ts.kind != 1)
5681 : : {
5682 : 48 : *msg = _("Extension to use a non-C_CHAR-kind CHARACTER");
5683 : 48 : return false;
5684 : : }
5685 : :
5686 : 4306 : if (expr->ts.type == BT_CHARACTER) {
5687 : 105 : if (expr->ts.deferred)
5688 : : {
5689 : : /* TS 29113 allows deferred-length strings as dummy arguments,
5690 : : but it is not an interoperable type. */
5691 : 1 : *msg = "Expression shall not be a deferred-length string";
5692 : 1 : return false;
5693 : : }
5694 : :
5695 : 104 : if (expr->ts.u.cl && expr->ts.u.cl->length
5696 : 151 : && !gfc_simplify_expr (expr->ts.u.cl->length, 0))
5697 : 0 : gfc_internal_error ("is_c_interoperable(): gfc_simplify_expr failed");
5698 : :
5699 : 104 : if (!c_loc
5700 : 28 : && expr->ts.u.cl
5701 : 132 : && !gfc_length_one_character_type_p (&expr->ts))
5702 : : {
5703 : 0 : *msg = _("Type shall have a character length of 1");
5704 : 0 : return false;
5705 : : }
5706 : : }
5707 : :
5708 : : /* Note: The following checks are about interoperatable variables, Fortran
5709 : : 15.3.5/15.3.6. In intrinsics like C_LOC or in procedure interface, more
5710 : : is allowed, e.g. assumed-shape arrays with TS 29113. */
5711 : :
5712 : 4305 : if (gfc_is_coarray (expr))
5713 : : {
5714 : 0 : *msg = _("Coarrays are not interoperable");
5715 : 0 : return false;
5716 : : }
5717 : :
5718 : : /* Checks for C_SIZEOF need to take into account edits to 18-007r1, see
5719 : : https://j3-fortran.org/doc/year/22/22-101r1.txt . */
5720 : 4305 : if (!c_loc && !c_f_ptr && expr->rank > 0 && expr->expr_type == EXPR_VARIABLE)
5721 : : {
5722 : 95 : gfc_array_ref *ar = gfc_find_array_ref (expr);
5723 : 95 : if (ar->type == AR_FULL && ar->as->type == AS_ASSUMED_SIZE)
5724 : : {
5725 : 2 : *msg = _("Assumed-size arrays are not interoperable");
5726 : 2 : return false;
5727 : : }
5728 : : }
5729 : :
5730 : : return true;
5731 : : }
5732 : :
5733 : :
5734 : : bool
5735 : 375 : gfc_check_c_sizeof (gfc_expr *arg)
5736 : : {
5737 : 375 : const char *msg;
5738 : :
5739 : 375 : if (!is_c_interoperable (arg, &msg, false, false))
5740 : : {
5741 : 9 : gfc_error ("%qs argument of %qs intrinsic at %L must be an "
5742 : : "interoperable data entity: %s",
5743 : 9 : gfc_current_intrinsic_arg[0]->name, gfc_current_intrinsic,
5744 : : &arg->where, msg);
5745 : 9 : return false;
5746 : : }
5747 : :
5748 : 366 : if (arg->ts.type == BT_ASSUMED)
5749 : : {
5750 : 0 : gfc_error ("%qs argument of %qs intrinsic at %L shall not be "
5751 : : "TYPE(*)",
5752 : 0 : gfc_current_intrinsic_arg[0]->name, gfc_current_intrinsic,
5753 : : &arg->where);
5754 : 0 : return false;
5755 : : }
5756 : :
5757 : 366 : if (arg->rank && arg->expr_type == EXPR_VARIABLE
5758 : 95 : && arg->symtree->n.sym->as != NULL
5759 : 93 : && arg->symtree->n.sym->as->type == AS_ASSUMED_SIZE && arg->ref
5760 : 1 : && arg->ref->type == REF_ARRAY && arg->ref->u.ar.type == AR_FULL)
5761 : : {
5762 : 0 : gfc_error ("%qs argument of %qs intrinsic at %L shall not be an "
5763 : 0 : "assumed-size array", gfc_current_intrinsic_arg[0]->name,
5764 : : gfc_current_intrinsic, &arg->where);
5765 : 0 : return false;
5766 : : }
5767 : :
5768 : : return true;
5769 : : }
5770 : :
5771 : :
5772 : : bool
5773 : 2031 : gfc_check_c_associated (gfc_expr *c_ptr_1, gfc_expr *c_ptr_2)
5774 : : {
5775 : 2031 : if (c_ptr_1->ts.type != BT_DERIVED
5776 : 2030 : || c_ptr_1->ts.u.derived->from_intmod != INTMOD_ISO_C_BINDING
5777 : 2030 : || (c_ptr_1->ts.u.derived->intmod_sym_id != ISOCBINDING_PTR
5778 : 158 : && c_ptr_1->ts.u.derived->intmod_sym_id != ISOCBINDING_FUNPTR))
5779 : : {
5780 : 1 : gfc_error ("Argument C_PTR_1 at %L to C_ASSOCIATED shall have the "
5781 : : "type TYPE(C_PTR) or TYPE(C_FUNPTR)", &c_ptr_1->where);
5782 : 1 : return false;
5783 : : }
5784 : :
5785 : 2030 : if (!scalar_check (c_ptr_1, 0))
5786 : : return false;
5787 : :
5788 : 2029 : if (c_ptr_2
5789 : 342 : && (c_ptr_2->ts.type != BT_DERIVED
5790 : 342 : || c_ptr_2->ts.u.derived->from_intmod != INTMOD_ISO_C_BINDING
5791 : 342 : || (c_ptr_1->ts.u.derived->intmod_sym_id
5792 : 342 : != c_ptr_2->ts.u.derived->intmod_sym_id)))
5793 : : {
5794 : 1 : gfc_error ("Argument C_PTR_2 at %L to C_ASSOCIATED shall have the "
5795 : : "same type as C_PTR_1: %s instead of %s", &c_ptr_1->where,
5796 : : gfc_typename (&c_ptr_1->ts),
5797 : : gfc_typename (&c_ptr_2->ts));
5798 : 1 : return false;
5799 : : }
5800 : :
5801 : 341 : if (c_ptr_2 && !scalar_check (c_ptr_2, 1))
5802 : : return false;
5803 : :
5804 : : return true;
5805 : : }
5806 : :
5807 : :
5808 : : bool
5809 : 558 : gfc_check_c_f_pointer (gfc_expr *cptr, gfc_expr *fptr, gfc_expr *shape)
5810 : : {
5811 : 558 : symbol_attribute attr;
5812 : 558 : const char *msg;
5813 : :
5814 : 558 : if (cptr->ts.type != BT_DERIVED
5815 : 558 : || cptr->ts.u.derived->from_intmod != INTMOD_ISO_C_BINDING
5816 : 558 : || cptr->ts.u.derived->intmod_sym_id != ISOCBINDING_PTR)
5817 : : {
5818 : 2 : gfc_error ("Argument CPTR at %L to C_F_POINTER shall have the "
5819 : : "type TYPE(C_PTR)", &cptr->where);
5820 : 2 : return false;
5821 : : }
5822 : :
5823 : 556 : if (!scalar_check (cptr, 0))
5824 : : return false;
5825 : :
5826 : 556 : attr = gfc_expr_attr (fptr);
5827 : :
5828 : 556 : if (!attr.pointer)
5829 : : {
5830 : 1 : gfc_error ("Argument FPTR at %L to C_F_POINTER must be a pointer",
5831 : : &fptr->where);
5832 : 1 : return false;
5833 : : }
5834 : :
5835 : 555 : if (fptr->ts.type == BT_CLASS)
5836 : : {
5837 : 1 : gfc_error ("FPTR argument at %L to C_F_POINTER shall not be polymorphic",
5838 : : &fptr->where);
5839 : 1 : return false;
5840 : : }
5841 : :
5842 : 554 : if (gfc_is_coindexed (fptr))
5843 : : {
5844 : 0 : gfc_error ("Argument FPTR at %L to C_F_POINTER shall not be "
5845 : : "coindexed", &fptr->where);
5846 : 0 : return false;
5847 : : }
5848 : :
5849 : 554 : if (fptr->rank == 0 && shape)
5850 : : {
5851 : 1 : gfc_error ("Unexpected SHAPE argument at %L to C_F_POINTER with scalar "
5852 : : "FPTR", &fptr->where);
5853 : 1 : return false;
5854 : : }
5855 : 553 : else if (fptr->rank && !shape)
5856 : : {
5857 : 1 : gfc_error ("Expected SHAPE argument to C_F_POINTER with array "
5858 : : "FPTR at %L", &fptr->where);
5859 : 1 : return false;
5860 : : }
5861 : :
5862 : 552 : if (shape && !rank_check (shape, 2, 1))
5863 : : return false;
5864 : :
5865 : 551 : if (shape && !type_check (shape, 2, BT_INTEGER))
5866 : : return false;
5867 : :
5868 : 550 : if (shape)
5869 : : {
5870 : 457 : mpz_t size;
5871 : 457 : if (gfc_array_size (shape, &size))
5872 : : {
5873 : 456 : if (mpz_cmp_ui (size, fptr->rank) != 0)
5874 : : {
5875 : 0 : mpz_clear (size);
5876 : 0 : gfc_error ("SHAPE argument at %L to C_F_POINTER must have the same "
5877 : : "size as the RANK of FPTR", &shape->where);
5878 : 0 : return false;
5879 : : }
5880 : 456 : mpz_clear (size);
5881 : : }
5882 : : }
5883 : :
5884 : 550 : if (fptr->ts.type == BT_CLASS)
5885 : : {
5886 : 0 : gfc_error ("Polymorphic FPTR at %L to C_F_POINTER", &fptr->where);
5887 : 0 : return false;
5888 : : }
5889 : :
5890 : 550 : if (fptr->ts.type == BT_PROCEDURE && attr.function)
5891 : : {
5892 : 2 : gfc_error ("FPTR argument to C_F_POINTER at %L is a function "
5893 : : "returning a pointer", &fptr->where);
5894 : 2 : return false;
5895 : : }
5896 : :
5897 : 548 : if (fptr->rank > 0 && !is_c_interoperable (fptr, &msg, false, true))
5898 : 13 : return gfc_notify_std (GFC_STD_F2018,
5899 : : "Noninteroperable array FPTR argument to "
5900 : 13 : "C_F_POINTER at %L: %s", &fptr->where, msg);
5901 : :
5902 : : return true;
5903 : : }
5904 : :
5905 : :
5906 : : bool
5907 : 62 : gfc_check_c_f_procpointer (gfc_expr *cptr, gfc_expr *fptr)
5908 : : {
5909 : 62 : symbol_attribute attr;
5910 : :
5911 : 62 : if (cptr->ts.type != BT_DERIVED
5912 : 62 : || cptr->ts.u.derived->from_intmod != INTMOD_ISO_C_BINDING
5913 : 62 : || cptr->ts.u.derived->intmod_sym_id != ISOCBINDING_FUNPTR)
5914 : : {
5915 : 3 : gfc_error ("Argument CPTR at %L to C_F_PROCPOINTER shall have the "
5916 : : "type TYPE(C_FUNPTR)", &cptr->where);
5917 : 3 : return false;
5918 : : }
5919 : :
5920 : 59 : if (!scalar_check (cptr, 0))
5921 : : return false;
5922 : :
5923 : 59 : attr = gfc_expr_attr (fptr);
5924 : :
5925 : 59 : if (!attr.proc_pointer)
5926 : : {
5927 : 0 : gfc_error ("Argument FPTR at %L to C_F_PROCPOINTER shall be a procedure "
5928 : : "pointer", &fptr->where);
5929 : 0 : return false;
5930 : : }
5931 : :
5932 : 59 : if (gfc_is_coindexed (fptr))
5933 : : {
5934 : 0 : gfc_error ("Argument FPTR at %L to C_F_PROCPOINTER shall not be "
5935 : : "coindexed", &fptr->where);
5936 : 0 : return false;
5937 : : }
5938 : :
5939 : 59 : if (!attr.is_bind_c)
5940 : 47 : return gfc_notify_std (GFC_STD_F2018, "Noninteroperable procedure "
5941 : 47 : "pointer at %L to C_F_PROCPOINTER", &fptr->where);
5942 : :
5943 : : return true;
5944 : : }
5945 : :
5946 : :
5947 : : bool
5948 : 240 : gfc_check_c_funloc (gfc_expr *x)
5949 : : {
5950 : 240 : symbol_attribute attr;
5951 : :
5952 : 240 : if (gfc_is_coindexed (x))
5953 : : {
5954 : 0 : gfc_error ("Argument X at %L to C_FUNLOC shall not be "
5955 : : "coindexed", &x->where);
5956 : 0 : return false;
5957 : : }
5958 : :
5959 : 240 : attr = gfc_expr_attr (x);
5960 : :
5961 : 240 : if (attr.function && !attr.proc_pointer && x->expr_type == EXPR_VARIABLE
5962 : 123 : && x->symtree->n.sym == x->symtree->n.sym->result)
5963 : 56 : for (gfc_namespace *ns = gfc_current_ns; ns; ns = ns->parent)
5964 : 34 : if (x->symtree->n.sym == ns->proc_name)
5965 : : {
5966 : 3 : gfc_error ("Function result %qs at %L is invalid as X argument "
5967 : : "to C_FUNLOC", x->symtree->n.sym->name, &x->where);
5968 : 3 : return false;
5969 : : }
5970 : :
5971 : 237 : if (attr.flavor != FL_PROCEDURE)
5972 : : {
5973 : 1 : gfc_error ("Argument X at %L to C_FUNLOC shall be a procedure "
5974 : : "or a procedure pointer", &x->where);
5975 : 1 : return false;
5976 : : }
5977 : :
5978 : 236 : if (!attr.is_bind_c)
5979 : 96 : return gfc_notify_std (GFC_STD_F2018, "Noninteroperable procedure "
5980 : 96 : "at %L to C_FUNLOC", &x->where);
5981 : : return true;
5982 : : }
5983 : :
5984 : :
5985 : : bool
5986 : 3581 : gfc_check_c_loc (gfc_expr *x)
5987 : : {
5988 : 3581 : symbol_attribute attr;
5989 : 3581 : const char *msg;
5990 : :
5991 : 3581 : if (gfc_is_coindexed (x))
5992 : : {
5993 : 1 : gfc_error ("Argument X at %L to C_LOC shall not be coindexed", &x->where);
5994 : 1 : return false;
5995 : : }
5996 : :
5997 : 3580 : if (x->ts.type == BT_CLASS)
5998 : : {
5999 : 1 : gfc_error ("X argument at %L to C_LOC shall not be polymorphic",
6000 : : &x->where);
6001 : 1 : return false;
6002 : : }
6003 : :
6004 : 3579 : attr = gfc_expr_attr (x);
6005 : :
6006 : 3579 : if (!attr.pointer
6007 : 2231 : && (x->expr_type != EXPR_VARIABLE || !attr.target
6008 : 2228 : || attr.flavor == FL_PARAMETER))
6009 : : {
6010 : 3 : gfc_error ("Argument X at %L to C_LOC shall have either "
6011 : : "the POINTER or the TARGET attribute", &x->where);
6012 : 3 : return false;
6013 : : }
6014 : :
6015 : 3576 : if (x->ts.type == BT_CHARACTER
6016 : 3576 : && gfc_var_strlen (x) == 0)
6017 : : {
6018 : 0 : gfc_error ("Argument X at %L to C_LOC shall be not be a zero-sized "
6019 : : "string", &x->where);
6020 : 0 : return false;
6021 : : }
6022 : :
6023 : 3576 : if (!is_c_interoperable (x, &msg, true, false))
6024 : : {
6025 : 70 : if (x->ts.type == BT_CLASS)
6026 : : {
6027 : 0 : gfc_error ("Argument at %L to C_LOC shall not be polymorphic",
6028 : : &x->where);
6029 : 0 : return false;
6030 : : }
6031 : :
6032 : 70 : if (x->rank
6033 : 70 : && !gfc_notify_std (GFC_STD_F2018,
6034 : : "Noninteroperable array at %L as"
6035 : : " argument to C_LOC: %s", &x->where, msg))
6036 : : return false;
6037 : : }
6038 : 3506 : else if (x->rank > 0 && gfc_notification_std (GFC_STD_F2008))
6039 : : {
6040 : 7 : gfc_array_ref *ar = gfc_find_array_ref (x);
6041 : :
6042 : 6 : if (ar->as->type != AS_EXPLICIT && ar->as->type != AS_ASSUMED_SIZE
6043 : 5 : && !attr.allocatable
6044 : 11 : && !gfc_notify_std (GFC_STD_F2008,
6045 : : "Array of interoperable type at %L "
6046 : : "to C_LOC which is nonallocatable and neither "
6047 : : "assumed size nor explicit size", &x->where))
6048 : : return false;
6049 : 3 : else if (ar->type != AR_FULL
6050 : 3 : && !gfc_notify_std (GFC_STD_F2008, "Array section at %L "
6051 : : "to C_LOC", &x->where))
6052 : : return false;
6053 : : }
6054 : :
6055 : : return true;
6056 : : }
6057 : :
6058 : :
6059 : : bool
6060 : 19 : gfc_check_sleep_sub (gfc_expr *seconds)
6061 : : {
6062 : 19 : if (!type_check (seconds, 0, BT_INTEGER))
6063 : : return false;
6064 : :
6065 : 19 : if (!scalar_check (seconds, 0))
6066 : : return false;
6067 : :
6068 : : return true;
6069 : : }
6070 : :
6071 : : bool
6072 : 3 : gfc_check_sngl (gfc_expr *a)
6073 : : {
6074 : 3 : if (!type_check (a, 0, BT_REAL))
6075 : : return false;
6076 : :
6077 : 3 : if ((a->ts.kind != gfc_default_double_kind)
6078 : 3 : && !gfc_notify_std (GFC_STD_GNU, "non double precision "
6079 : : "REAL argument to %s intrinsic at %L",
6080 : : gfc_current_intrinsic, &a->where))
6081 : : return false;
6082 : :
6083 : : return true;
6084 : : }
6085 : :
6086 : : bool
6087 : 694 : gfc_check_spread (gfc_expr *source, gfc_expr *dim, gfc_expr *ncopies)
6088 : : {
6089 : 694 : if (gfc_invalid_null_arg (source))
6090 : : return false;
6091 : :
6092 : 693 : if (source->rank >= GFC_MAX_DIMENSIONS)
6093 : : {
6094 : 0 : gfc_error ("%qs argument of %qs intrinsic at %L must be less "
6095 : 0 : "than rank %d", gfc_current_intrinsic_arg[0]->name,
6096 : : gfc_current_intrinsic, &source->where, GFC_MAX_DIMENSIONS);
6097 : :
6098 : 0 : return false;
6099 : : }
6100 : :
6101 : 693 : if (dim == NULL)
6102 : : return false;
6103 : :
6104 : 693 : if (!dim_check (dim, 1, false))
6105 : : return false;
6106 : :
6107 : : /* dim_rank_check() does not apply here. */
6108 : 693 : if (dim
6109 : 693 : && dim->expr_type == EXPR_CONSTANT
6110 : 693 : && (mpz_cmp_ui (dim->value.integer, 1) < 0
6111 : 692 : || mpz_cmp_ui (dim->value.integer, source->rank + 1) > 0))
6112 : : {
6113 : 2 : gfc_error ("%qs argument of %qs intrinsic at %L is not a valid "
6114 : 2 : "dimension index", gfc_current_intrinsic_arg[1]->name,
6115 : : gfc_current_intrinsic, &dim->where);
6116 : 2 : return false;
6117 : : }
6118 : :
6119 : 691 : if (!type_check (ncopies, 2, BT_INTEGER))
6120 : : return false;
6121 : :
6122 : 691 : if (!scalar_check (ncopies, 2))
6123 : : return false;
6124 : :
6125 : : return true;
6126 : : }
6127 : :
6128 : :
6129 : : /* Functions for checking FGETC, FPUTC, FGET and FPUT (subroutines and
6130 : : functions). */
6131 : :
6132 : : bool
6133 : 157 : arg_strlen_is_zero (gfc_expr *c, int n)
6134 : : {
6135 : 157 : if (gfc_var_strlen (c) == 0)
6136 : : {
6137 : 2 : gfc_error ("%qs argument of %qs intrinsic at %L must have "
6138 : 2 : "length at least 1", gfc_current_intrinsic_arg[n]->name,
6139 : : gfc_current_intrinsic, &c->where);
6140 : 2 : return true;
6141 : : }
6142 : : return false;
6143 : : }
6144 : :
6145 : : bool
6146 : 155 : gfc_check_fgetputc_sub (gfc_expr *unit, gfc_expr *c, gfc_expr *status)
6147 : : {
6148 : 155 : if (!type_check (unit, 0, BT_INTEGER))
6149 : : return false;
6150 : :
6151 : 155 : if (!scalar_check (unit, 0))
6152 : : return false;
6153 : :
6154 : 155 : if (!type_check (c, 1, BT_CHARACTER))
6155 : : return false;
6156 : 155 : if (!kind_value_check (c, 1, gfc_default_character_kind))
6157 : : return false;
6158 : 149 : if (strcmp (gfc_current_intrinsic, "fgetc") == 0
6159 : 149 : && !variable_check (c, 1, false))
6160 : : return false;
6161 : 148 : if (arg_strlen_is_zero (c, 1))
6162 : : return false;
6163 : :
6164 : 147 : if (status == NULL)
6165 : : return true;
6166 : :
6167 : 58 : if (!type_check (status, 2, BT_INTEGER)
6168 : 58 : || !kind_value_check (status, 2, gfc_default_integer_kind)
6169 : 58 : || !scalar_check (status, 2)
6170 : 116 : || !variable_check (status, 2, false))
6171 : 2 : return false;
6172 : :
6173 : : return true;
6174 : : }
6175 : :
6176 : :
6177 : : bool
6178 : 71 : gfc_check_fgetputc (gfc_expr *unit, gfc_expr *c)
6179 : : {
6180 : 71 : return gfc_check_fgetputc_sub (unit, c, NULL);
6181 : : }
6182 : :
6183 : :
6184 : : bool
6185 : 17 : gfc_check_fgetput_sub (gfc_expr *c, gfc_expr *status)
6186 : : {
6187 : 17 : if (!type_check (c, 0, BT_CHARACTER))
6188 : : return false;
6189 : 17 : if (!kind_value_check (c, 0, gfc_default_character_kind))
6190 : : return false;
6191 : 11 : if (strcmp (gfc_current_intrinsic, "fget") == 0
6192 : 11 : && !variable_check (c, 0, false))
6193 : : return false;
6194 : 9 : if (arg_strlen_is_zero (c, 0))
6195 : : return false;
6196 : :
6197 : 8 : if (status == NULL)
6198 : : return true;
6199 : :
6200 : 2 : if (!type_check (status, 1, BT_INTEGER)
6201 : 2 : || !kind_value_check (status, 1, gfc_default_integer_kind)
6202 : 2 : || !scalar_check (status, 1)
6203 : 4 : || !variable_check (status, 1, false))
6204 : 0 : return false;
6205 : :
6206 : : return true;
6207 : : }
6208 : :
6209 : :
6210 : : bool
6211 : 8 : gfc_check_fgetput (gfc_expr *c)
6212 : : {
6213 : 8 : return gfc_check_fgetput_sub (c, NULL);
6214 : : }
6215 : :
6216 : :
6217 : : bool
6218 : 60 : gfc_check_fseek_sub (gfc_expr *unit, gfc_expr *offset, gfc_expr *whence, gfc_expr *status)
6219 : : {
6220 : 60 : if (!type_check (unit, 0, BT_INTEGER))
6221 : : return false;
6222 : :
6223 : 60 : if (!scalar_check (unit, 0))
6224 : : return false;
6225 : :
6226 : 60 : if (!type_check (offset, 1, BT_INTEGER))
6227 : : return false;
6228 : :
6229 : 60 : if (!scalar_check (offset, 1))
6230 : : return false;
6231 : :
6232 : 60 : if (!type_check (whence, 2, BT_INTEGER))
6233 : : return false;
6234 : :
6235 : 60 : if (!scalar_check (whence, 2))
6236 : : return false;
6237 : :
6238 : 60 : if (status == NULL)
6239 : : return true;
6240 : :
6241 : 54 : if (!type_check (status, 3, BT_INTEGER))
6242 : : return false;
6243 : :
6244 : 54 : if (!kind_value_check (status, 3, 4))
6245 : : return false;
6246 : :
6247 : 54 : if (!scalar_check (status, 3))
6248 : : return false;
6249 : :
6250 : : return true;
6251 : : }
6252 : :
6253 : :
6254 : :
6255 : : bool
6256 : 6 : gfc_check_fstat (gfc_expr *unit, gfc_expr *array)
6257 : : {
6258 : 6 : if (!type_check (unit, 0, BT_INTEGER))
6259 : : return false;
6260 : :
6261 : 6 : if (!scalar_check (unit, 0))
6262 : : return false;
6263 : :
6264 : 6 : if (!type_check (array, 1, BT_INTEGER)
6265 : 6 : || !kind_value_check (unit, 0, gfc_default_integer_kind))
6266 : 0 : return false;
6267 : :
6268 : 6 : if (!array_check (array, 1))
6269 : : return false;
6270 : :
6271 : : return true;
6272 : : }
6273 : :
6274 : :
6275 : : bool
6276 : 6 : gfc_check_fstat_sub (gfc_expr *unit, gfc_expr *array, gfc_expr *status)
6277 : : {
6278 : 6 : if (!type_check (unit, 0, BT_INTEGER))
6279 : : return false;
6280 : :
6281 : 6 : if (!scalar_check (unit, 0))
6282 : : return false;
6283 : :
6284 : 6 : if (!type_check (array, 1, BT_INTEGER)
6285 : 6 : || !kind_value_check (array, 1, gfc_default_integer_kind))
6286 : 0 : return false;
6287 : :
6288 : 6 : if (!array_check (array, 1))
6289 : : return false;
6290 : :
6291 : 6 : if (status == NULL)
6292 : : return true;
6293 : :
6294 : 6 : if (!type_check (status, 2, BT_INTEGER)
6295 : 6 : || !kind_value_check (status, 2, gfc_default_integer_kind))
6296 : 0 : return false;
6297 : :
6298 : 6 : if (!scalar_check (status, 2))
6299 : : return false;
6300 : :
6301 : : return true;
6302 : : }
6303 : :
6304 : :
6305 : : bool
6306 : 102 : gfc_check_ftell (gfc_expr *unit)
6307 : : {
6308 : 102 : if (!type_check (unit, 0, BT_INTEGER))
6309 : : return false;
6310 : :
6311 : 102 : if (!scalar_check (unit, 0))
6312 : : return false;
6313 : :
6314 : : return true;
6315 : : }
6316 : :
6317 : :
6318 : : bool
6319 : 36 : gfc_check_ftell_sub (gfc_expr *unit, gfc_expr *offset)
6320 : : {
6321 : 36 : if (!type_check (unit, 0, BT_INTEGER))
6322 : : return false;
6323 : :
6324 : 36 : if (!scalar_check (unit, 0))
6325 : : return false;
6326 : :
6327 : 36 : if (!type_check (offset, 1, BT_INTEGER))
6328 : : return false;
6329 : :
6330 : 36 : if (!scalar_check (offset, 1))
6331 : : return false;
6332 : :
6333 : : return true;
6334 : : }
6335 : :
6336 : :
6337 : : bool
6338 : 22 : gfc_check_stat (gfc_expr *name, gfc_expr *array)
6339 : : {
6340 : 22 : if (!type_check (name, 0, BT_CHARACTER))
6341 : : return false;
6342 : 22 : if (!kind_value_check (name, 0, gfc_default_character_kind))
6343 : : return false;
6344 : :
6345 : 20 : if (!type_check (array, 1, BT_INTEGER)
6346 : 20 : || !kind_value_check (array, 1, gfc_default_integer_kind))
6347 : 0 : return false;
6348 : :
6349 : 20 : if (!array_check (array, 1))
6350 : : return false;
6351 : :
6352 : : return true;
6353 : : }
6354 : :
6355 : :
6356 : : bool
6357 : 26 : gfc_check_stat_sub (gfc_expr *name, gfc_expr *array, gfc_expr *status)
6358 : : {
6359 : 26 : if (!type_check (name, 0, BT_CHARACTER))
6360 : : return false;
6361 : 26 : if (!kind_value_check (name, 0, gfc_default_character_kind))
6362 : : return false;
6363 : :
6364 : 22 : if (!type_check (array, 1, BT_INTEGER)
6365 : 22 : || !kind_value_check (array, 1, gfc_default_integer_kind))
6366 : 0 : return false;
6367 : :
6368 : 22 : if (!array_check (array, 1))
6369 : : return false;
6370 : :
6371 : 22 : if (status == NULL)
6372 : : return true;
6373 : :
6374 : 20 : if (!type_check (status, 2, BT_INTEGER)
6375 : 20 : || !kind_value_check (array, 1, gfc_default_integer_kind))
6376 : 0 : return false;
6377 : :
6378 : 20 : if (!scalar_check (status, 2))
6379 : : return false;
6380 : :
6381 : : return true;
6382 : : }
6383 : :
6384 : :
6385 : : bool
6386 : 236 : gfc_check_image_index (gfc_expr *coarray, gfc_expr *sub)
6387 : : {
6388 : 236 : mpz_t nelems;
6389 : :
6390 : 236 : if (flag_coarray == GFC_FCOARRAY_NONE)
6391 : : {
6392 : 0 : gfc_fatal_error ("Coarrays disabled at %C, use %<-fcoarray=%> to enable");
6393 : : return false;
6394 : : }
6395 : :
6396 : 236 : if (!coarray_check (coarray, 0))
6397 : : return false;
6398 : :
6399 : 235 : if (sub->rank != 1)
6400 : : {
6401 : 1 : gfc_error ("%s argument to IMAGE_INDEX must be a rank one array at %L",
6402 : 1 : gfc_current_intrinsic_arg[1]->name, &sub->where);
6403 : 1 : return false;
6404 : : }
6405 : :
6406 : 234 : if (sub->ts.type != BT_INTEGER)
6407 : : {
6408 : 1 : gfc_error ("Type of %s argument of IMAGE_INDEX at %L shall be INTEGER",
6409 : 1 : gfc_current_intrinsic_arg[1]->name, &sub->where);
6410 : 1 : return false;
6411 : : }
6412 : :
6413 : 233 : if (gfc_array_size (sub, &nelems))
6414 : : {
6415 : 233 : if (mpz_cmp_ui (nelems, coarray->corank) != 0)
6416 : : {
6417 : 3 : gfc_error ("The number of array elements of the SUB argument to "
6418 : : "IMAGE_INDEX at %L shall be %d (corank) not %d",
6419 : 3 : &sub->where, coarray->corank, (int) mpz_get_si (nelems));
6420 : 3 : mpz_clear (nelems);
6421 : 3 : return false;
6422 : : }
6423 : 230 : mpz_clear (nelems);
6424 : : }
6425 : :
6426 : : return true;
6427 : : }
6428 : :
6429 : :
6430 : : bool
6431 : 778 : gfc_check_num_images (gfc_expr *distance, gfc_expr *failed)
6432 : : {
6433 : 778 : if (flag_coarray == GFC_FCOARRAY_NONE)
6434 : : {
6435 : 0 : gfc_fatal_error ("Coarrays disabled at %C, use %<-fcoarray=%> to enable");
6436 : : return false;
6437 : : }
6438 : :
6439 : 778 : if (distance)
6440 : : {
6441 : 6 : if (!type_check (distance, 0, BT_INTEGER))
6442 : : return false;
6443 : :
6444 : 6 : if (!nonnegative_check ("DISTANCE", distance))
6445 : : return false;
6446 : :
6447 : 6 : if (!scalar_check (distance, 0))
6448 : : return false;
6449 : :
6450 : 6 : if (!gfc_notify_std (GFC_STD_F2018, "DISTANCE= argument to "
6451 : : "NUM_IMAGES at %L", &distance->where))
6452 : : return false;
6453 : : }
6454 : :
6455 : 778 : if (failed)
6456 : : {
6457 : 5 : if (!type_check (failed, 1, BT_LOGICAL))
6458 : : return false;
6459 : :
6460 : 5 : if (!scalar_check (failed, 1))
6461 : : return false;
6462 : :
6463 : 5 : if (!gfc_notify_std (GFC_STD_F2018, "FAILED= argument to "
6464 : : "NUM_IMAGES at %L", &failed->where))
6465 : : return false;
6466 : : }
6467 : :
6468 : : return true;
6469 : : }
6470 : :
6471 : :
6472 : : bool
6473 : 32 : gfc_check_team_number (gfc_expr *team)
6474 : : {
6475 : 32 : if (flag_coarray == GFC_FCOARRAY_NONE)
6476 : : {
6477 : 0 : gfc_fatal_error ("Coarrays disabled at %C, use %<-fcoarray=%> to enable");
6478 : : return false;
6479 : : }
6480 : :
6481 : 32 : if (team)
6482 : : {
6483 : 0 : if (team->ts.type != BT_DERIVED
6484 : 0 : || team->ts.u.derived->from_intmod != INTMOD_ISO_FORTRAN_ENV
6485 : 0 : || team->ts.u.derived->intmod_sym_id != ISOFORTRAN_TEAM_TYPE)
6486 : : {
6487 : 0 : gfc_error ("TEAM argument at %L to the intrinsic TEAM_NUMBER "
6488 : : "shall be of type TEAM_TYPE", &team->where);
6489 : 0 : return false;
6490 : : }
6491 : : }
6492 : : else
6493 : : return true;
6494 : :
6495 : : return true;
6496 : : }
6497 : :
6498 : :
6499 : : bool
6500 : 1471 : gfc_check_this_image (gfc_expr *coarray, gfc_expr *dim, gfc_expr *distance)
6501 : : {
6502 : 1471 : if (flag_coarray == GFC_FCOARRAY_NONE)
6503 : : {
6504 : 0 : gfc_fatal_error ("Coarrays disabled at %C, use %<-fcoarray=%> to enable");
6505 : : return false;
6506 : : }
6507 : :
6508 : 1471 : if (coarray == NULL && dim == NULL && distance == NULL)
6509 : : return true;
6510 : :
6511 : 421 : if (dim != NULL && coarray == NULL)
6512 : : {
6513 : 1 : gfc_error ("DIM argument without COARRAY argument not allowed for "
6514 : : "THIS_IMAGE intrinsic at %L", &dim->where);
6515 : 1 : return false;
6516 : : }
6517 : :
6518 : 420 : if (distance && (coarray || dim))
6519 : : {
6520 : 0 : gfc_error ("The DISTANCE argument may not be specified together with the "
6521 : : "COARRAY or DIM argument in intrinsic at %L",
6522 : : &distance->where);
6523 : 0 : return false;
6524 : : }
6525 : :
6526 : : /* Assume that we have "this_image (distance)". */
6527 : 418 : if (coarray && !gfc_is_coarray (coarray) && coarray->ts.type == BT_INTEGER)
6528 : : {
6529 : 2 : if (dim)
6530 : : {
6531 : 0 : gfc_error ("Unexpected DIM argument with noncoarray argument at %L",
6532 : : &coarray->where);
6533 : 0 : return false;
6534 : : }
6535 : : distance = coarray;
6536 : : }
6537 : :
6538 : 420 : if (distance)
6539 : : {
6540 : 4 : if (!type_check (distance, 2, BT_INTEGER))
6541 : : return false;
6542 : :
6543 : 4 : if (!nonnegative_check ("DISTANCE", distance))
6544 : : return false;
6545 : :
6546 : 4 : if (!scalar_check (distance, 2))
6547 : : return false;
6548 : :
6549 : 4 : if (!gfc_notify_std (GFC_STD_F2018, "DISTANCE= argument to "
6550 : : "THIS_IMAGE at %L", &distance->where))
6551 : : return false;
6552 : :
6553 : : return true;
6554 : : }
6555 : :
6556 : 416 : if (!coarray_check (coarray, 0))
6557 : : return false;
6558 : :
6559 : 416 : if (dim != NULL)
6560 : : {
6561 : 326 : if (!dim_check (dim, 1, false))
6562 : : return false;
6563 : :
6564 : 326 : if (!dim_corank_check (dim, coarray))
6565 : : return false;
6566 : : }
6567 : :
6568 : : return true;
6569 : : }
6570 : :
6571 : : /* Calculate the sizes for transfer, used by gfc_check_transfer and also
6572 : : by gfc_simplify_transfer. Return false if we cannot do so. */
6573 : :
6574 : : bool
6575 : 1104 : gfc_calculate_transfer_sizes (gfc_expr *source, gfc_expr *mold, gfc_expr *size,
6576 : : size_t *source_size, size_t *result_size,
6577 : : size_t *result_length_p)
6578 : : {
6579 : 1104 : size_t result_elt_size;
6580 : :
6581 : 1104 : if (source->expr_type == EXPR_FUNCTION)
6582 : : return false;
6583 : :
6584 : 1103 : if (size && size->expr_type != EXPR_CONSTANT)
6585 : : return false;
6586 : :
6587 : : /* Calculate the size of the source. */
6588 : 1102 : if (!gfc_target_expr_size (source, source_size))
6589 : : return false;
6590 : :
6591 : : /* Determine the size of the element. */
6592 : 1101 : if (!gfc_element_size (mold, &result_elt_size))
6593 : : return false;
6594 : :
6595 : : /* If the storage size of SOURCE is greater than zero and MOLD is an array,
6596 : : * a scalar with the type and type parameters of MOLD shall not have a
6597 : : * storage size equal to zero.
6598 : : * If MOLD is a scalar and SIZE is absent, the result is a scalar.
6599 : : * If MOLD is an array and SIZE is absent, the result is an array and of
6600 : : * rank one. Its size is as small as possible such that its physical
6601 : : * representation is not shorter than that of SOURCE.
6602 : : * If SIZE is present, the result is an array of rank one and size SIZE.
6603 : : */
6604 : 1070 : if (result_elt_size == 0 && *source_size > 0
6605 : 14 : && (mold->expr_type == EXPR_ARRAY || mold->rank))
6606 : : {
6607 : 8 : gfc_error ("%<MOLD%> argument of %<TRANSFER%> intrinsic at %L is an "
6608 : : "array and shall not have storage size 0 when %<SOURCE%> "
6609 : : "argument has size greater than 0", &mold->where);
6610 : 8 : return false;
6611 : : }
6612 : :
6613 : 1062 : if (result_elt_size == 0 && *source_size == 0 && !size)
6614 : : {
6615 : 41 : *result_size = 0;
6616 : 41 : if (result_length_p)
6617 : 40 : *result_length_p = 0;
6618 : 41 : return true;
6619 : : }
6620 : :
6621 : 1021 : if ((result_elt_size > 0 && (mold->expr_type == EXPR_ARRAY || mold->rank))
6622 : 806 : || size)
6623 : : {
6624 : 215 : int result_length;
6625 : :
6626 : 215 : if (size)
6627 : 197 : result_length = (size_t)mpz_get_ui (size->value.integer);
6628 : : else
6629 : : {
6630 : 152 : result_length = *source_size / result_elt_size;
6631 : 152 : if (result_length * result_elt_size < *source_size)
6632 : 0 : result_length += 1;
6633 : : }
6634 : :
6635 : 329 : *result_size = result_length * result_elt_size;
6636 : 329 : if (result_length_p)
6637 : 321 : *result_length_p = result_length;
6638 : : }
6639 : : else
6640 : 692 : *result_size = result_elt_size;
6641 : :
6642 : : return true;
6643 : : }
6644 : :
6645 : :
6646 : : bool
6647 : 2286 : gfc_check_transfer (gfc_expr *source, gfc_expr *mold, gfc_expr *size)
6648 : : {
6649 : 2286 : size_t source_size;
6650 : 2286 : size_t result_size;
6651 : :
6652 : 2286 : if (gfc_invalid_null_arg (source))
6653 : : return false;
6654 : :
6655 : : /* SOURCE shall be a scalar or array of any type. */
6656 : 2283 : if (source->ts.type == BT_PROCEDURE
6657 : 3 : && source->symtree->n.sym->attr.subroutine == 1)
6658 : : {
6659 : 1 : gfc_error ("%<SOURCE%> argument of %<TRANSFER%> intrinsic at %L "
6660 : : "must not be a %s", &source->where,
6661 : : gfc_basic_typename (source->ts.type));
6662 : 1 : return false;
6663 : : }
6664 : :
6665 : 2282 : if (source->ts.type == BT_BOZ && illegal_boz_arg (source))
6666 : : return false;
6667 : :
6668 : 2281 : if (mold->ts.type == BT_BOZ && illegal_boz_arg (mold))
6669 : : return false;
6670 : :
6671 : 2280 : if (gfc_invalid_null_arg (mold))
6672 : : return false;
6673 : :
6674 : : /* MOLD shall be a scalar or array of any type. */
6675 : 2278 : if (mold->ts.type == BT_PROCEDURE
6676 : 2 : && mold->symtree->n.sym->attr.subroutine == 1)
6677 : : {
6678 : 1 : gfc_error ("%<MOLD%> argument of %<TRANSFER%> intrinsic at %L "
6679 : : "must not be a %s", &mold->where,
6680 : : gfc_basic_typename (mold->ts.type));
6681 : 1 : return false;
6682 : : }
6683 : :
6684 : 2277 : if (mold->ts.type == BT_HOLLERITH)
6685 : : {
6686 : 1 : gfc_error ("%<MOLD%> argument of %<TRANSFER%> intrinsic at %L must not be"
6687 : : " %s", &mold->where, gfc_basic_typename (BT_HOLLERITH));
6688 : 1 : return false;
6689 : : }
6690 : :
6691 : : /* SIZE (optional) shall be an integer scalar. The corresponding actual
6692 : : argument shall not be an optional dummy argument. */
6693 : 2276 : if (size != NULL)
6694 : : {
6695 : 423 : if (!type_check (size, 2, BT_INTEGER))
6696 : : {
6697 : 1 : if (size->ts.type == BT_BOZ)
6698 : 1 : reset_boz (size);
6699 : 1 : return false;
6700 : : }
6701 : :
6702 : 422 : if (!scalar_check (size, 2))
6703 : : return false;
6704 : :
6705 : 422 : if (!nonoptional_check (size, 2))
6706 : : return false;
6707 : : }
6708 : :
6709 : 2275 : if (!warn_surprising)
6710 : : return true;
6711 : :
6712 : : /* If we can't calculate the sizes, we cannot check any more.
6713 : : Return true for that case. */
6714 : :
6715 : 52 : if (!gfc_calculate_transfer_sizes (source, mold, size, &source_size,
6716 : : &result_size, NULL))
6717 : : return true;
6718 : :
6719 : 49 : if (source_size < result_size)
6720 : 6 : gfc_warning (OPT_Wsurprising,
6721 : : "Intrinsic TRANSFER at %L has partly undefined result: "
6722 : : "source size %zd < result size %zd", &source->where,
6723 : : source_size, result_size);
6724 : :
6725 : : return true;
6726 : : }
6727 : :
6728 : :
6729 : : bool
6730 : 1194 : gfc_check_transpose (gfc_expr *matrix)
6731 : : {
6732 : 1194 : if (!rank_check (matrix, 0, 2))
6733 : : return false;
6734 : :
6735 : : return true;
6736 : : }
6737 : :
6738 : :
6739 : : bool
6740 : 7080 : gfc_check_ubound (gfc_expr *array, gfc_expr *dim, gfc_expr *kind)
6741 : : {
6742 : 7080 : if (!array_check (array, 0))
6743 : : return false;
6744 : :
6745 : 7079 : if (!dim_check (dim, 1, false))
6746 : : return false;
6747 : :
6748 : 7079 : if (!dim_rank_check (dim, array, 0))
6749 : : return false;
6750 : :
6751 : 7077 : if (!kind_check (kind, 2, BT_INTEGER))
6752 : : return false;
6753 : 7077 : if (kind && !gfc_notify_std (GFC_STD_F2003, "%qs intrinsic "
6754 : : "with KIND argument at %L",
6755 : : gfc_current_intrinsic, &kind->where))
6756 : : return false;
6757 : :
6758 : : return true;
6759 : : }
6760 : :
6761 : :
6762 : : bool
6763 : 277 : gfc_check_ucobound (gfc_expr *coarray, gfc_expr *dim, gfc_expr *kind)
6764 : : {
6765 : 277 : if (flag_coarray == GFC_FCOARRAY_NONE)
6766 : : {
6767 : 0 : gfc_fatal_error ("Coarrays disabled at %C, use %<-fcoarray=%> to enable");
6768 : : return false;
6769 : : }
6770 : :
6771 : 277 : if (!coarray_check (coarray, 0))
6772 : : return false;
6773 : :
6774 : 273 : if (dim != NULL)
6775 : : {
6776 : 184 : if (!dim_check (dim, 1, false))
6777 : : return false;
6778 : :
6779 : 184 : if (!dim_corank_check (dim, coarray))
6780 : : return false;
6781 : : }
6782 : :
6783 : 273 : if (!kind_check (kind, 2, BT_INTEGER))
6784 : : return false;
6785 : :
6786 : : return true;
6787 : : }
6788 : :
6789 : :
6790 : : bool
6791 : 393 : gfc_check_unpack (gfc_expr *vector, gfc_expr *mask, gfc_expr *field)
6792 : : {
6793 : 393 : mpz_t vector_size;
6794 : :
6795 : 393 : if (!rank_check (vector, 0, 1))
6796 : : return false;
6797 : :
6798 : 393 : if (!array_check (mask, 1))
6799 : : return false;
6800 : :
6801 : 393 : if (!type_check (mask, 1, BT_LOGICAL))
6802 : : return false;
6803 : :
6804 : 393 : if (!same_type_check (vector, 0, field, 2))
6805 : : return false;
6806 : :
6807 : 393 : gfc_simplify_expr (mask, 0);
6808 : :
6809 : 393 : if (mask->expr_type == EXPR_ARRAY
6810 : 393 : && gfc_array_size (vector, &vector_size))
6811 : : {
6812 : 40 : int mask_true_count = 0;
6813 : 40 : gfc_constructor *mask_ctor;
6814 : 40 : mask_ctor = gfc_constructor_first (mask->value.constructor);
6815 : 263 : while (mask_ctor)
6816 : : {
6817 : 183 : if (mask_ctor->expr->expr_type != EXPR_CONSTANT)
6818 : : {
6819 : : mask_true_count = 0;
6820 : : break;
6821 : : }
6822 : :
6823 : 183 : if (mask_ctor->expr->value.logical)
6824 : 78 : mask_true_count++;
6825 : :
6826 : 183 : mask_ctor = gfc_constructor_next (mask_ctor);
6827 : : }
6828 : :
6829 : 40 : if (mpz_get_si (vector_size) < mask_true_count)
6830 : : {
6831 : 1 : gfc_error ("%qs argument of %qs intrinsic at %L must "
6832 : : "provide at least as many elements as there "
6833 : : "are .TRUE. values in %qs (%ld/%d)",
6834 : 1 : gfc_current_intrinsic_arg[0]->name, gfc_current_intrinsic,
6835 : 1 : &vector->where, gfc_current_intrinsic_arg[1]->name,
6836 : : mpz_get_si (vector_size), mask_true_count);
6837 : 1 : return false;
6838 : : }
6839 : :
6840 : 39 : mpz_clear (vector_size);
6841 : : }
6842 : :
6843 : 392 : if (mask->rank != field->rank && field->rank != 0)
6844 : : {
6845 : 0 : gfc_error ("%qs argument of %qs intrinsic at %L must have "
6846 : : "the same rank as %qs or be a scalar",
6847 : 0 : gfc_current_intrinsic_arg[2]->name, gfc_current_intrinsic,
6848 : 0 : &field->where, gfc_current_intrinsic_arg[1]->name);
6849 : 0 : return false;
6850 : : }
6851 : :
6852 : 392 : if (mask->rank == field->rank)
6853 : : {
6854 : : int i;
6855 : 712 : for (i = 0; i < field->rank; i++)
6856 : 452 : if (! identical_dimen_shape (mask, i, field, i))
6857 : : {
6858 : 5 : gfc_error ("%qs and %qs arguments of %qs intrinsic at %L "
6859 : : "must have identical shape.",
6860 : 5 : gfc_current_intrinsic_arg[2]->name,
6861 : 5 : gfc_current_intrinsic_arg[1]->name, gfc_current_intrinsic,
6862 : : &field->where);
6863 : : }
6864 : : }
6865 : :
6866 : : return true;
6867 : : }
6868 : :
6869 : :
6870 : : bool
6871 : 250 : gfc_check_verify (gfc_expr *x, gfc_expr *y, gfc_expr *z, gfc_expr *kind)
6872 : : {
6873 : 250 : if (!type_check (x, 0, BT_CHARACTER))
6874 : : return false;
6875 : :
6876 : 250 : if (!same_type_check (x, 0, y, 1))
6877 : : return false;
6878 : :
6879 : 250 : if (z != NULL && !type_check (z, 2, BT_LOGICAL))
6880 : : return false;
6881 : :
6882 : 250 : if (!kind_check (kind, 3, BT_INTEGER))
6883 : : return false;
6884 : 250 : if (kind && !gfc_notify_std (GFC_STD_F2003, "%qs intrinsic "
6885 : : "with KIND argument at %L",
6886 : : gfc_current_intrinsic, &kind->where))
6887 : : return false;
6888 : :
6889 : : return true;
6890 : : }
6891 : :
6892 : :
6893 : : bool
6894 : 2100 : gfc_check_trim (gfc_expr *x)
6895 : : {
6896 : 2100 : if (!type_check (x, 0, BT_CHARACTER))
6897 : : return false;
6898 : :
6899 : 2100 : if (gfc_invalid_null_arg (x))
6900 : : return false;
6901 : :
6902 : 2099 : if (!scalar_check (x, 0))
6903 : : return false;
6904 : :
6905 : : return true;
6906 : : }
6907 : :
6908 : :
6909 : : bool
6910 : 0 : gfc_check_ttynam (gfc_expr *unit)
6911 : : {
6912 : 0 : if (!scalar_check (unit, 0))
6913 : : return false;
6914 : :
6915 : 0 : if (!type_check (unit, 0, BT_INTEGER))
6916 : : return false;
6917 : :
6918 : : return true;
6919 : : }
6920 : :
6921 : :
6922 : : /************* Check functions for intrinsic subroutines *************/
6923 : :
6924 : : bool
6925 : 21 : gfc_check_cpu_time (gfc_expr *time)
6926 : : {
6927 : 21 : if (!scalar_check (time, 0))
6928 : : return false;
6929 : :
6930 : 21 : if (!type_check (time, 0, BT_REAL))
6931 : : return false;
6932 : :
6933 : 21 : if (!variable_check (time, 0, false))
6934 : : return false;
6935 : :
6936 : : return true;
6937 : : }
6938 : :
6939 : :
6940 : : bool
6941 : 193 : gfc_check_date_and_time (gfc_expr *date, gfc_expr *time,
6942 : : gfc_expr *zone, gfc_expr *values)
6943 : : {
6944 : 193 : if (date != NULL)
6945 : : {
6946 : 81 : if (!type_check (date, 0, BT_CHARACTER))
6947 : : return false;
6948 : 81 : if (!kind_value_check (date, 0, gfc_default_character_kind))
6949 : : return false;
6950 : 79 : if (!scalar_check (date, 0))
6951 : : return false;
6952 : 79 : if (!variable_check (date, 0, false))
6953 : : return false;
6954 : : }
6955 : :
6956 : 191 : if (time != NULL)
6957 : : {
6958 : 89 : if (!type_check (time, 1, BT_CHARACTER))
6959 : : return false;
6960 : 89 : if (!kind_value_check (time, 1, gfc_default_character_kind))
6961 : : return false;
6962 : 88 : if (!scalar_check (time, 1))
6963 : : return false;
6964 : 88 : if (!variable_check (time, 1, false))
6965 : : return false;
6966 : : }
6967 : :
6968 : 190 : if (zone != NULL)
6969 : : {
6970 : 80 : if (!type_check (zone, 2, BT_CHARACTER))
6971 : : return false;
6972 : 80 : if (!kind_value_check (zone, 2, gfc_default_character_kind))
6973 : : return false;
6974 : 79 : if (!scalar_check (zone, 2))
6975 : : return false;
6976 : 79 : if (!variable_check (zone, 2, false))
6977 : : return false;
6978 : : }
6979 : :
6980 : 189 : if (values != NULL)
6981 : : {
6982 : 110 : if (!type_check (values, 3, BT_INTEGER))
6983 : : return false;
6984 : 110 : if (!array_check (values, 3))
6985 : : return false;
6986 : 110 : if (!rank_check (values, 3, 1))
6987 : : return false;
6988 : 110 : if (!variable_check (values, 3, false))
6989 : : return false;
6990 : 110 : if (!array_size_check (values, 3, 8))
6991 : : return false;
6992 : :
6993 : 109 : if (values->ts.kind != gfc_default_integer_kind
6994 : 109 : && !gfc_notify_std (GFC_STD_F2018, "VALUES argument of "
6995 : : "DATE_AND_TIME at %L has non-default kind",
6996 : : &values->where))
6997 : : return false;
6998 : :
6999 : : /* F2018:16.9.59 DATE_AND_TIME
7000 : : "VALUES shall be a rank-one array of type integer
7001 : : with a decimal exponent range of at least four."
7002 : : This is a hard limit also required by the implementation in
7003 : : libgfortran. */
7004 : 109 : if (values->ts.kind < 2)
7005 : : {
7006 : 1 : gfc_error ("VALUES argument of DATE_AND_TIME at %L must have "
7007 : : "a decimal exponent range of at least four",
7008 : : &values->where);
7009 : 1 : return false;
7010 : : }
7011 : : }
7012 : :
7013 : : return true;
7014 : : }
7015 : :
7016 : :
7017 : : bool
7018 : 203 : gfc_check_mvbits (gfc_expr *from, gfc_expr *frompos, gfc_expr *len,
7019 : : gfc_expr *to, gfc_expr *topos)
7020 : : {
7021 : :
7022 : 203 : if (flag_unsigned)
7023 : : {
7024 : 24 : if (!type_check2 (from, 0, BT_INTEGER, BT_UNSIGNED))
7025 : : return false;
7026 : : }
7027 : : else
7028 : : {
7029 : 179 : if (!type_check (from, 0, BT_INTEGER))
7030 : : return false;
7031 : : }
7032 : :
7033 : 203 : if (!type_check (frompos, 1, BT_INTEGER))
7034 : : return false;
7035 : :
7036 : 203 : if (!type_check (len, 2, BT_INTEGER))
7037 : : return false;
7038 : :
7039 : 203 : if (!same_type_check (from, 0, to, 3))
7040 : : return false;
7041 : :
7042 : 203 : if (!variable_check (to, 3, false))
7043 : : return false;
7044 : :
7045 : 203 : if (!type_check (topos, 4, BT_INTEGER))
7046 : : return false;
7047 : :
7048 : 203 : if (!nonnegative_check ("frompos", frompos))
7049 : : return false;
7050 : :
7051 : 202 : if (!nonnegative_check ("topos", topos))
7052 : : return false;
7053 : :
7054 : 201 : if (!nonnegative_check ("len", len))
7055 : : return false;
7056 : :
7057 : 200 : if (!less_than_bitsize2 ("from", from, "frompos", frompos, "len", len))
7058 : : return false;
7059 : :
7060 : 199 : if (!less_than_bitsize2 ("to", to, "topos", topos, "len", len))
7061 : : return false;
7062 : :
7063 : : return true;
7064 : : }
7065 : :
7066 : :
7067 : : /* Check the arguments for RANDOM_INIT. */
7068 : :
7069 : : bool
7070 : 94 : gfc_check_random_init (gfc_expr *repeatable, gfc_expr *image_distinct)
7071 : : {
7072 : 94 : if (!type_check (repeatable, 0, BT_LOGICAL))
7073 : : return false;
7074 : :
7075 : 93 : if (!scalar_check (repeatable, 0))
7076 : : return false;
7077 : :
7078 : 92 : if (!type_check (image_distinct, 1, BT_LOGICAL))
7079 : : return false;
7080 : :
7081 : 91 : if (!scalar_check (image_distinct, 1))
7082 : : return false;
7083 : :
7084 : : return true;
7085 : : }
7086 : :
7087 : :
7088 : : bool
7089 : 552 : gfc_check_random_number (gfc_expr *harvest)
7090 : : {
7091 : 552 : if (flag_unsigned)
7092 : : {
7093 : 72 : if (!type_check2 (harvest, 0, BT_REAL, BT_UNSIGNED))
7094 : : return false;
7095 : : }
7096 : : else
7097 : 480 : if (!type_check (harvest, 0, BT_REAL))
7098 : : return false;
7099 : :
7100 : 552 : if (!variable_check (harvest, 0, false))
7101 : : return false;
7102 : :
7103 : : return true;
7104 : : }
7105 : :
7106 : :
7107 : : bool
7108 : 304 : gfc_check_random_seed (gfc_expr *size, gfc_expr *put, gfc_expr *get)
7109 : : {
7110 : 304 : unsigned int nargs = 0, seed_size;
7111 : 304 : locus *where = NULL;
7112 : 304 : mpz_t put_size, get_size;
7113 : :
7114 : : /* Keep the number of bytes in sync with master_state in
7115 : : libgfortran/intrinsics/random.c. */
7116 : 304 : seed_size = 32 / gfc_default_integer_kind;
7117 : :
7118 : 304 : if (size != NULL)
7119 : : {
7120 : 90 : if (size->expr_type != EXPR_VARIABLE
7121 : 90 : || !size->symtree->n.sym->attr.optional)
7122 : 68 : nargs++;
7123 : :
7124 : 90 : if (!scalar_check (size, 0))
7125 : : return false;
7126 : :
7127 : 90 : if (!type_check (size, 0, BT_INTEGER))
7128 : : return false;
7129 : :
7130 : 90 : if (!variable_check (size, 0, false))
7131 : : return false;
7132 : :
7133 : 89 : if (!kind_value_check (size, 0, gfc_default_integer_kind))
7134 : : return false;
7135 : : }
7136 : :
7137 : 303 : if (put != NULL)
7138 : : {
7139 : 117 : if (put->expr_type != EXPR_VARIABLE
7140 : 117 : || !put->symtree->n.sym->attr.optional)
7141 : : {
7142 : 96 : nargs++;
7143 : 96 : where = &put->where;
7144 : : }
7145 : :
7146 : 117 : if (!array_check (put, 1))
7147 : : return false;
7148 : :
7149 : 117 : if (!rank_check (put, 1, 1))
7150 : : return false;
7151 : :
7152 : 117 : if (!type_check (put, 1, BT_INTEGER))
7153 : : return false;
7154 : :
7155 : 117 : if (!kind_value_check (put, 1, gfc_default_integer_kind))
7156 : : return false;
7157 : :
7158 : 117 : if (gfc_array_size (put, &put_size))
7159 : : {
7160 : 5 : if (mpz_get_ui (put_size) < seed_size)
7161 : 3 : gfc_error ("Size of %qs argument of %qs intrinsic at %L "
7162 : : "too small (%i/%i)",
7163 : 3 : gfc_current_intrinsic_arg[1]->name,
7164 : : gfc_current_intrinsic,
7165 : 3 : &put->where, (int) mpz_get_ui (put_size), seed_size);
7166 : 5 : mpz_clear (put_size);
7167 : : }
7168 : : }
7169 : :
7170 : 303 : if (get != NULL)
7171 : : {
7172 : 136 : if (get->expr_type != EXPR_VARIABLE
7173 : 136 : || !get->symtree->n.sym->attr.optional)
7174 : : {
7175 : 115 : nargs++;
7176 : 115 : where = &get->where;
7177 : : }
7178 : :
7179 : 136 : if (!array_check (get, 2))
7180 : : return false;
7181 : :
7182 : 136 : if (!rank_check (get, 2, 1))
7183 : : return false;
7184 : :
7185 : 136 : if (!type_check (get, 2, BT_INTEGER))
7186 : : return false;
7187 : :
7188 : 136 : if (!variable_check (get, 2, false))
7189 : : return false;
7190 : :
7191 : 136 : if (!kind_value_check (get, 2, gfc_default_integer_kind))
7192 : : return false;
7193 : :
7194 : 136 : if (gfc_array_size (get, &get_size))
7195 : : {
7196 : 5 : if (mpz_get_ui (get_size) < seed_size)
7197 : 3 : gfc_error ("Size of %qs argument of %qs intrinsic at %L "
7198 : : "too small (%i/%i)",
7199 : 3 : gfc_current_intrinsic_arg[2]->name,
7200 : : gfc_current_intrinsic,
7201 : 3 : &get->where, (int) mpz_get_ui (get_size), seed_size);
7202 : 5 : mpz_clear (get_size);
7203 : : }
7204 : : }
7205 : :
7206 : : /* RANDOM_SEED may not have more than one non-optional argument. */
7207 : 303 : if (nargs > 1)
7208 : 1 : gfc_error ("Too many arguments to %s at %L", gfc_current_intrinsic, where);
7209 : :
7210 : : return true;
7211 : : }
7212 : :
7213 : : bool
7214 : 401 : gfc_check_fe_runtime_error (gfc_actual_arglist *a)
7215 : : {
7216 : 401 : gfc_expr *e;
7217 : 401 : size_t len, i;
7218 : 401 : int num_percent, nargs;
7219 : :
7220 : 401 : e = a->expr;
7221 : 401 : if (e->expr_type != EXPR_CONSTANT)
7222 : : return true;
7223 : :
7224 : 401 : len = e->value.character.length;
7225 : 401 : if (e->value.character.string[len-1] != '\0')
7226 : 0 : gfc_internal_error ("fe_runtime_error string must be null terminated");
7227 : :
7228 : : num_percent = 0;
7229 : 27901 : for (i=0; i<len-1; i++)
7230 : 27500 : if (e->value.character.string[i] == '%')
7231 : 802 : num_percent ++;
7232 : :
7233 : : nargs = 0;
7234 : 1604 : for (; a; a = a->next)
7235 : 1203 : nargs ++;
7236 : :
7237 : 401 : if (nargs -1 != num_percent)
7238 : 0 : gfc_internal_error ("fe_runtime_error: Wrong number of arguments (%d instead of %d)",
7239 : : nargs, num_percent++);
7240 : :
7241 : : return true;
7242 : : }
7243 : :
7244 : : bool
7245 : 0 : gfc_check_second_sub (gfc_expr *time)
7246 : : {
7247 : 0 : if (!scalar_check (time, 0))
7248 : : return false;
7249 : :
7250 : 0 : if (!type_check (time, 0, BT_REAL))
7251 : : return false;
7252 : :
7253 : 0 : if (!kind_value_check (time, 0, 4))
7254 : : return false;
7255 : :
7256 : : return true;
7257 : : }
7258 : :
7259 : :
7260 : : /* COUNT and COUNT_MAX of SYSTEM_CLOCK are scalar, default-kind integer
7261 : : variables in Fortran 95. In Fortran 2003 and later, they can be of any
7262 : : kind, and COUNT_RATE can be of type real. Note, count, count_rate, and
7263 : : count_max are all optional arguments */
7264 : :
7265 : : bool
7266 : 212 : gfc_check_system_clock (gfc_expr *count, gfc_expr *count_rate,
7267 : : gfc_expr *count_max)
7268 : : {
7269 : 212 : int first_int_kind = -1;
7270 : :
7271 : 212 : if (count != NULL)
7272 : : {
7273 : 207 : if (!scalar_check (count, 0))
7274 : : return false;
7275 : :
7276 : 207 : if (!type_check (count, 0, BT_INTEGER))
7277 : : return false;
7278 : :
7279 : 207 : if (count->ts.kind != gfc_default_integer_kind
7280 : 207 : && !gfc_notify_std (GFC_STD_F2003, "COUNT argument to "
7281 : : "SYSTEM_CLOCK at %L has non-default kind",
7282 : : &count->where))
7283 : : return false;
7284 : :
7285 : 206 : if (count->ts.kind < gfc_default_integer_kind
7286 : 206 : && !gfc_notify_std (GFC_STD_F2023_DEL,
7287 : : "COUNT argument to SYSTEM_CLOCK at %L "
7288 : : "with kind smaller than default integer",
7289 : : &count->where))
7290 : : return false;
7291 : :
7292 : 205 : if (!variable_check (count, 0, false))
7293 : : return false;
7294 : :
7295 : 205 : first_int_kind = count->ts.kind;
7296 : : }
7297 : :
7298 : 210 : if (count_rate != NULL)
7299 : : {
7300 : 194 : if (!scalar_check (count_rate, 1))
7301 : : return false;
7302 : :
7303 : 194 : if (!variable_check (count_rate, 1, false))
7304 : : return false;
7305 : :
7306 : 194 : if (count_rate->ts.type == BT_REAL)
7307 : : {
7308 : 120 : if (!gfc_notify_std (GFC_STD_F2003, "Real COUNT_RATE argument to "
7309 : : "SYSTEM_CLOCK at %L", &count_rate->where))
7310 : : return false;
7311 : : }
7312 : : else
7313 : : {
7314 : 74 : if (!type_check (count_rate, 1, BT_INTEGER))
7315 : : return false;
7316 : :
7317 : 74 : if (count_rate->ts.kind != gfc_default_integer_kind
7318 : 74 : && !gfc_notify_std (GFC_STD_F2003, "COUNT_RATE argument to "
7319 : : "SYSTEM_CLOCK at %L has non-default kind",
7320 : : &count_rate->where))
7321 : : return false;
7322 : :
7323 : 73 : if (count_rate->ts.kind < gfc_default_integer_kind
7324 : 73 : && !gfc_notify_std (GFC_STD_F2023_DEL,
7325 : : "COUNT_RATE argument to SYSTEM_CLOCK at %L "
7326 : : "with kind smaller than default integer",
7327 : : &count_rate->where))
7328 : : return false;
7329 : :
7330 : 72 : if (first_int_kind < 0)
7331 : 2 : first_int_kind = count_rate->ts.kind;
7332 : : }
7333 : :
7334 : : }
7335 : :
7336 : 206 : if (count_max != NULL)
7337 : : {
7338 : 189 : if (!scalar_check (count_max, 2))
7339 : : return false;
7340 : :
7341 : 189 : if (!type_check (count_max, 2, BT_INTEGER))
7342 : : return false;
7343 : :
7344 : 189 : if (count_max->ts.kind != gfc_default_integer_kind
7345 : 189 : && !gfc_notify_std (GFC_STD_F2003, "COUNT_MAX argument to "
7346 : : "SYSTEM_CLOCK at %L has non-default kind",
7347 : : &count_max->where))
7348 : : return false;
7349 : :
7350 : 188 : if (!variable_check (count_max, 2, false))
7351 : : return false;
7352 : :
7353 : 188 : if (count_max->ts.kind < gfc_default_integer_kind
7354 : 188 : && !gfc_notify_std (GFC_STD_F2023_DEL,
7355 : : "COUNT_MAX argument to SYSTEM_CLOCK at %L "
7356 : : "with kind smaller than default integer",
7357 : : &count_max->where))
7358 : : return false;
7359 : :
7360 : 187 : if (first_int_kind < 0)
7361 : 0 : first_int_kind = count_max->ts.kind;
7362 : : }
7363 : :
7364 : 204 : if (first_int_kind > 0)
7365 : : {
7366 : 203 : if (count_rate
7367 : 188 : && count_rate->ts.type == BT_INTEGER
7368 : 71 : && count_rate->ts.kind != first_int_kind
7369 : 235 : && !gfc_notify_std (GFC_STD_F2023_DEL,
7370 : : "integer arguments to SYSTEM_CLOCK at %L "
7371 : : "with different kind parameters",
7372 : : &count_rate->where))
7373 : : return false;
7374 : :
7375 : 187 : if (count_max && count_max->ts.kind != first_int_kind
7376 : 284 : && !gfc_notify_std (GFC_STD_F2023_DEL,
7377 : : "integer arguments to SYSTEM_CLOCK at %L "
7378 : : "with different kind parameters",
7379 : : &count_max->where))
7380 : : return false;
7381 : : }
7382 : :
7383 : : return true;
7384 : : }
7385 : :
7386 : :
7387 : : bool
7388 : 2 : gfc_check_irand (gfc_expr *x)
7389 : : {
7390 : 2 : if (x == NULL)
7391 : : return true;
7392 : :
7393 : 0 : if (!scalar_check (x, 0))
7394 : : return false;
7395 : :
7396 : 0 : if (!type_check (x, 0, BT_INTEGER))
7397 : : return false;
7398 : :
7399 : 0 : if (!kind_value_check (x, 0, 4))
7400 : : return false;
7401 : :
7402 : : return true;
7403 : : }
7404 : :
7405 : :
7406 : : bool
7407 : 0 : gfc_check_alarm_sub (gfc_expr *seconds, gfc_expr *handler, gfc_expr *status)
7408 : : {
7409 : 0 : if (!scalar_check (seconds, 0))
7410 : : return false;
7411 : 0 : if (!type_check (seconds, 0, BT_INTEGER))
7412 : : return false;
7413 : :
7414 : 0 : if (!int_or_proc_check (handler, 1))
7415 : : return false;
7416 : 0 : if (handler->ts.type == BT_INTEGER && !scalar_check (handler, 1))
7417 : : return false;
7418 : :
7419 : 0 : if (status == NULL)
7420 : : return true;
7421 : :
7422 : 0 : if (!scalar_check (status, 2))
7423 : : return false;
7424 : 0 : if (!type_check (status, 2, BT_INTEGER))
7425 : : return false;
7426 : 0 : if (!kind_value_check (status, 2, gfc_default_integer_kind))
7427 : : return false;
7428 : :
7429 : : return true;
7430 : : }
7431 : :
7432 : :
7433 : : bool
7434 : 8 : gfc_check_rand (gfc_expr *x)
7435 : : {
7436 : 8 : if (x == NULL)
7437 : : return true;
7438 : :
7439 : 1 : if (!scalar_check (x, 0))
7440 : : return false;
7441 : :
7442 : 1 : if (!type_check (x, 0, BT_INTEGER))
7443 : : return false;
7444 : :
7445 : 1 : if (!kind_value_check (x, 0, 4))
7446 : : return false;
7447 : :
7448 : : return true;
7449 : : }
7450 : :
7451 : :
7452 : : bool
7453 : 0 : gfc_check_srand (gfc_expr *x)
7454 : : {
7455 : 0 : if (!scalar_check (x, 0))
7456 : : return false;
7457 : :
7458 : 0 : if (!type_check (x, 0, BT_INTEGER))
7459 : : return false;
7460 : :
7461 : 0 : if (!kind_value_check (x, 0, 4))
7462 : : return false;
7463 : :
7464 : : return true;
7465 : : }
7466 : :
7467 : :
7468 : : bool
7469 : 2 : gfc_check_ctime_sub (gfc_expr *time, gfc_expr *result)
7470 : : {
7471 : 2 : if (!scalar_check (time, 0))
7472 : : return false;
7473 : 2 : if (!type_check (time, 0, BT_INTEGER))
7474 : : return false;
7475 : :
7476 : 2 : if (!type_check (result, 1, BT_CHARACTER))
7477 : : return false;
7478 : 2 : if (!kind_value_check (result, 1, gfc_default_character_kind))
7479 : : return false;
7480 : :
7481 : : return true;
7482 : : }
7483 : :
7484 : :
7485 : : bool
7486 : 1 : gfc_check_dtime_etime (gfc_expr *x)
7487 : : {
7488 : 1 : if (!array_check (x, 0))
7489 : : return false;
7490 : :
7491 : 1 : if (!rank_check (x, 0, 1))
7492 : : return false;
7493 : :
7494 : 1 : if (!variable_check (x, 0, false))
7495 : : return false;
7496 : :
7497 : 1 : if (!type_check (x, 0, BT_REAL))
7498 : : return false;
7499 : :
7500 : 1 : if (!kind_value_check (x, 0, 4))
7501 : : return false;
7502 : :
7503 : : return true;
7504 : : }
7505 : :
7506 : :
7507 : : bool
7508 : 1 : gfc_check_dtime_etime_sub (gfc_expr *values, gfc_expr *time)
7509 : : {
7510 : 1 : if (!array_check (values, 0))
7511 : : return false;
7512 : :
7513 : 1 : if (!rank_check (values, 0, 1))
7514 : : return false;
7515 : :
7516 : 1 : if (!variable_check (values, 0, false))
7517 : : return false;
7518 : :
7519 : 1 : if (!type_check (values, 0, BT_REAL))
7520 : : return false;
7521 : :
7522 : 1 : if (!kind_value_check (values, 0, 4))
7523 : : return false;
7524 : :
7525 : 1 : if (!scalar_check (time, 1))
7526 : : return false;
7527 : :
7528 : 1 : if (!type_check (time, 1, BT_REAL))
7529 : : return false;
7530 : :
7531 : 1 : if (!kind_value_check (time, 1, 4))
7532 : : return false;
7533 : :
7534 : : return true;
7535 : : }
7536 : :
7537 : :
7538 : : bool
7539 : 2 : gfc_check_fdate_sub (gfc_expr *date)
7540 : : {
7541 : 2 : if (!type_check (date, 0, BT_CHARACTER))
7542 : : return false;
7543 : 2 : if (!kind_value_check (date, 0, gfc_default_character_kind))
7544 : : return false;
7545 : :
7546 : : return true;
7547 : : }
7548 : :
7549 : :
7550 : : bool
7551 : 3 : gfc_check_gerror (gfc_expr *msg)
7552 : : {
7553 : 3 : if (!type_check (msg, 0, BT_CHARACTER))
7554 : : return false;
7555 : 3 : if (!kind_value_check (msg, 0, gfc_default_character_kind))
7556 : : return false;
7557 : :
7558 : : return true;
7559 : : }
7560 : :
7561 : :
7562 : : bool
7563 : 10 : gfc_check_getcwd_sub (gfc_expr *cwd, gfc_expr *status)
7564 : : {
7565 : 10 : if (!type_check (cwd, 0, BT_CHARACTER))
7566 : : return false;
7567 : 10 : if (!kind_value_check (cwd, 0, gfc_default_character_kind))
7568 : : return false;
7569 : :
7570 : 8 : if (status == NULL)
7571 : : return true;
7572 : :
7573 : 1 : if (!scalar_check (status, 1))
7574 : : return false;
7575 : :
7576 : 1 : if (!type_check (status, 1, BT_INTEGER))
7577 : : return false;
7578 : :
7579 : : return true;
7580 : : }
7581 : :
7582 : :
7583 : : bool
7584 : 56 : gfc_check_getarg (gfc_expr *pos, gfc_expr *value)
7585 : : {
7586 : 56 : if (!type_check (pos, 0, BT_INTEGER))
7587 : : return false;
7588 : :
7589 : 56 : if (pos->ts.kind > gfc_default_integer_kind)
7590 : : {
7591 : 0 : gfc_error ("%qs argument of %qs intrinsic at %L must be of a kind "
7592 : : "not wider than the default kind (%d)",
7593 : 0 : gfc_current_intrinsic_arg[0]->name, gfc_current_intrinsic,
7594 : : &pos->where, gfc_default_integer_kind);
7595 : 0 : return false;
7596 : : }
7597 : :
7598 : 56 : if (!type_check (value, 1, BT_CHARACTER))
7599 : : return false;
7600 : 56 : if (!kind_value_check (value, 1, gfc_default_character_kind))
7601 : : return false;
7602 : :
7603 : : return true;
7604 : : }
7605 : :
7606 : :
7607 : : bool
7608 : 3 : gfc_check_getlog (gfc_expr *msg)
7609 : : {
7610 : 3 : if (!type_check (msg, 0, BT_CHARACTER))
7611 : : return false;
7612 : 3 : if (!kind_value_check (msg, 0, gfc_default_character_kind))
7613 : : return false;
7614 : :
7615 : : return true;
7616 : : }
7617 : :
7618 : :
7619 : : bool
7620 : 3 : gfc_check_exit (gfc_expr *status)
7621 : : {
7622 : 3 : if (status == NULL)
7623 : : return true;
7624 : :
7625 : 2 : if (!type_check (status, 0, BT_INTEGER))
7626 : : return false;
7627 : :
7628 : 2 : if (!scalar_check (status, 0))
7629 : : return false;
7630 : :
7631 : : return true;
7632 : : }
7633 : :
7634 : :
7635 : : bool
7636 : 25 : gfc_check_flush (gfc_expr *unit)
7637 : : {
7638 : 25 : if (unit == NULL)
7639 : : return true;
7640 : :
7641 : 12 : if (!type_check (unit, 0, BT_INTEGER))
7642 : : return false;
7643 : :
7644 : 12 : if (!scalar_check (unit, 0))
7645 : : return false;
7646 : :
7647 : : return true;
7648 : : }
7649 : :
7650 : :
7651 : : bool
7652 : 10 : gfc_check_free (gfc_expr *i)
7653 : : {
7654 : 10 : if (!type_check (i, 0, BT_INTEGER))
7655 : : return false;
7656 : :
7657 : 10 : if (!scalar_check (i, 0))
7658 : : return false;
7659 : :
7660 : : return true;
7661 : : }
7662 : :
7663 : :
7664 : : bool
7665 : 5 : gfc_check_hostnm (gfc_expr *name)
7666 : : {
7667 : 5 : if (!type_check (name, 0, BT_CHARACTER))
7668 : : return false;
7669 : 5 : if (!kind_value_check (name, 0, gfc_default_character_kind))
7670 : : return false;
7671 : :
7672 : : return true;
7673 : : }
7674 : :
7675 : :
7676 : : bool
7677 : 11 : gfc_check_hostnm_sub (gfc_expr *name, gfc_expr *status)
7678 : : {
7679 : 11 : if (!type_check (name, 0, BT_CHARACTER))
7680 : : return false;
7681 : 11 : if (!kind_value_check (name, 0, gfc_default_character_kind))
7682 : : return false;
7683 : :
7684 : 9 : if (status == NULL)
7685 : : return true;
7686 : :
7687 : 7 : if (!scalar_check (status, 1))
7688 : : return false;
7689 : :
7690 : 7 : if (!type_check (status, 1, BT_INTEGER))
7691 : : return false;
7692 : :
7693 : : return true;
7694 : : }
7695 : :
7696 : :
7697 : : bool
7698 : 24 : gfc_check_itime_idate (gfc_expr *values)
7699 : : {
7700 : 24 : if (!array_check (values, 0))
7701 : : return false;
7702 : :
7703 : 24 : if (!rank_check (values, 0, 1))
7704 : : return false;
7705 : :
7706 : 24 : if (!variable_check (values, 0, false))
7707 : : return false;
7708 : :
7709 : 24 : if (!type_check (values, 0, BT_INTEGER))
7710 : : return false;
7711 : :
7712 : 24 : if (!kind_value_check (values, 0, gfc_default_integer_kind))
7713 : : return false;
7714 : :
7715 : : return true;
7716 : : }
7717 : :
7718 : :
7719 : : bool
7720 : 24 : gfc_check_ltime_gmtime (gfc_expr *time, gfc_expr *values)
7721 : : {
7722 : 24 : if (!type_check (time, 0, BT_INTEGER))
7723 : : return false;
7724 : :
7725 : 24 : if (!kind_value_check (time, 0, gfc_default_integer_kind))
7726 : : return false;
7727 : :
7728 : 24 : if (!scalar_check (time, 0))
7729 : : return false;
7730 : :
7731 : 24 : if (!array_check (values, 1))
7732 : : return false;
7733 : :
7734 : 24 : if (!rank_check (values, 1, 1))
7735 : : return false;
7736 : :
7737 : 24 : if (!variable_check (values, 1, false))
7738 : : return false;
7739 : :
7740 : 24 : if (!type_check (values, 1, BT_INTEGER))
7741 : : return false;
7742 : :
7743 : 24 : if (!kind_value_check (values, 1, gfc_default_integer_kind))
7744 : : return false;
7745 : :
7746 : : return true;
7747 : : }
7748 : :
7749 : :
7750 : : bool
7751 : 2 : gfc_check_ttynam_sub (gfc_expr *unit, gfc_expr *name)
7752 : : {
7753 : 2 : if (!scalar_check (unit, 0))
7754 : : return false;
7755 : :
7756 : 2 : if (!type_check (unit, 0, BT_INTEGER))
7757 : : return false;
7758 : :
7759 : 2 : if (!type_check (name, 1, BT_CHARACTER))
7760 : : return false;
7761 : 2 : if (!kind_value_check (name, 1, gfc_default_character_kind))
7762 : : return false;
7763 : :
7764 : : return true;
7765 : : }
7766 : :
7767 : :
7768 : : bool
7769 : 662 : gfc_check_is_contiguous (gfc_expr *array)
7770 : : {
7771 : 662 : if (array->expr_type == EXPR_NULL)
7772 : : {
7773 : 2 : gfc_error ("Actual argument at %L of %qs intrinsic shall be an "
7774 : : "associated pointer", &array->where, gfc_current_intrinsic);
7775 : 2 : return false;
7776 : : }
7777 : :
7778 : 660 : if (!array_check (array, 0))
7779 : : return false;
7780 : :
7781 : : return true;
7782 : : }
7783 : :
7784 : :
7785 : : bool
7786 : 0 : gfc_check_isatty (gfc_expr *unit)
7787 : : {
7788 : 0 : if (unit == NULL)
7789 : : return false;
7790 : :
7791 : 0 : if (!type_check (unit, 0, BT_INTEGER))
7792 : : return false;
7793 : :
7794 : 0 : if (!scalar_check (unit, 0))
7795 : : return false;
7796 : :
7797 : : return true;
7798 : : }
7799 : :
7800 : :
7801 : : bool
7802 : 626 : gfc_check_isnan (gfc_expr *x)
7803 : : {
7804 : 626 : if (!type_check (x, 0, BT_REAL))
7805 : : return false;
7806 : :
7807 : : return true;
7808 : : }
7809 : :
7810 : :
7811 : : bool
7812 : 3 : gfc_check_perror (gfc_expr *string)
7813 : : {
7814 : 3 : if (!type_check (string, 0, BT_CHARACTER))
7815 : : return false;
7816 : 3 : if (!kind_value_check (string, 0, gfc_default_character_kind))
7817 : : return false;
7818 : :
7819 : : return true;
7820 : : }
7821 : :
7822 : :
7823 : : bool
7824 : 0 : gfc_check_umask (gfc_expr *mask)
7825 : : {
7826 : 0 : if (!type_check (mask, 0, BT_INTEGER))
7827 : : return false;
7828 : :
7829 : 0 : if (!scalar_check (mask, 0))
7830 : : return false;
7831 : :
7832 : : return true;
7833 : : }
7834 : :
7835 : :
7836 : : bool
7837 : 0 : gfc_check_umask_sub (gfc_expr *mask, gfc_expr *old)
7838 : : {
7839 : 0 : if (!type_check (mask, 0, BT_INTEGER))
7840 : : return false;
7841 : :
7842 : 0 : if (!scalar_check (mask, 0))
7843 : : return false;
7844 : :
7845 : 0 : if (old == NULL)
7846 : : return true;
7847 : :
7848 : 0 : if (!scalar_check (old, 1))
7849 : : return false;
7850 : :
7851 : 0 : if (!type_check (old, 1, BT_INTEGER))
7852 : : return false;
7853 : :
7854 : : return true;
7855 : : }
7856 : :
7857 : :
7858 : : bool
7859 : 2 : gfc_check_unlink (gfc_expr *name)
7860 : : {
7861 : 2 : if (!type_check (name, 0, BT_CHARACTER))
7862 : : return false;
7863 : 2 : if (!kind_value_check (name, 0, gfc_default_character_kind))
7864 : : return false;
7865 : :
7866 : : return true;
7867 : : }
7868 : :
7869 : :
7870 : : bool
7871 : 12 : gfc_check_unlink_sub (gfc_expr *name, gfc_expr *status)
7872 : : {
7873 : 12 : if (!type_check (name, 0, BT_CHARACTER))
7874 : : return false;
7875 : 12 : if (!kind_value_check (name, 0, gfc_default_character_kind))
7876 : : return false;
7877 : :
7878 : 10 : if (status == NULL)
7879 : : return true;
7880 : :
7881 : 1 : if (!scalar_check (status, 1))
7882 : : return false;
7883 : :
7884 : 1 : if (!type_check (status, 1, BT_INTEGER))
7885 : : return false;
7886 : :
7887 : : return true;
7888 : : }
7889 : :
7890 : :
7891 : : bool
7892 : 1 : gfc_check_signal (gfc_expr *number, gfc_expr *handler)
7893 : : {
7894 : 1 : if (!scalar_check (number, 0))
7895 : : return false;
7896 : 1 : if (!type_check (number, 0, BT_INTEGER))
7897 : : return false;
7898 : :
7899 : 1 : if (!int_or_proc_check (handler, 1))
7900 : : return false;
7901 : 1 : if (handler->ts.type == BT_INTEGER && !scalar_check (handler, 1))
7902 : : return false;
7903 : :
7904 : : return true;
7905 : : }
7906 : :
7907 : :
7908 : : bool
7909 : 0 : gfc_check_signal_sub (gfc_expr *number, gfc_expr *handler, gfc_expr *status)
7910 : : {
7911 : 0 : if (!scalar_check (number, 0))
7912 : : return false;
7913 : 0 : if (!type_check (number, 0, BT_INTEGER))
7914 : : return false;
7915 : :
7916 : 0 : if (!int_or_proc_check (handler, 1))
7917 : : return false;
7918 : 0 : if (handler->ts.type == BT_INTEGER && !scalar_check (handler, 1))
7919 : : return false;
7920 : :
7921 : 0 : if (status == NULL)
7922 : : return true;
7923 : :
7924 : 0 : if (!type_check (status, 2, BT_INTEGER))
7925 : : return false;
7926 : 0 : if (!scalar_check (status, 2))
7927 : : return false;
7928 : :
7929 : : return true;
7930 : : }
7931 : :
7932 : :
7933 : : bool
7934 : 0 : gfc_check_system_sub (gfc_expr *cmd, gfc_expr *status)
7935 : : {
7936 : 0 : if (!type_check (cmd, 0, BT_CHARACTER))
7937 : : return false;
7938 : 0 : if (!kind_value_check (cmd, 0, gfc_default_character_kind))
7939 : : return false;
7940 : :
7941 : 0 : if (!scalar_check (status, 1))
7942 : : return false;
7943 : :
7944 : 0 : if (!type_check (status, 1, BT_INTEGER))
7945 : : return false;
7946 : :
7947 : 0 : if (!kind_value_check (status, 1, gfc_default_integer_kind))
7948 : : return false;
7949 : :
7950 : : return true;
7951 : : }
7952 : :
7953 : :
7954 : : /* This is used for the GNU intrinsics AND, OR and XOR. */
7955 : : bool
7956 : 164 : gfc_check_and (gfc_expr *i, gfc_expr *j)
7957 : : {
7958 : 164 : if (i->ts.type != BT_INTEGER
7959 : 164 : && i->ts.type != BT_LOGICAL
7960 : 25 : && i->ts.type != BT_BOZ)
7961 : : {
7962 : 3 : gfc_error ("%qs argument of %qs intrinsic at %L must be INTEGER, "
7963 : : "LOGICAL, or a BOZ literal constant",
7964 : 3 : gfc_current_intrinsic_arg[0]->name,
7965 : : gfc_current_intrinsic, &i->where);
7966 : 3 : return false;
7967 : : }
7968 : :
7969 : 161 : if (j->ts.type != BT_INTEGER
7970 : 161 : && j->ts.type != BT_LOGICAL
7971 : 28 : && j->ts.type != BT_BOZ)
7972 : : {
7973 : 3 : gfc_error ("%qs argument of %qs intrinsic at %L must be INTEGER, "
7974 : : "LOGICAL, or a BOZ literal constant",
7975 : 3 : gfc_current_intrinsic_arg[1]->name,
7976 : : gfc_current_intrinsic, &j->where);
7977 : 3 : return false;
7978 : : }
7979 : :
7980 : : /* i and j cannot both be BOZ literal constants. */
7981 : 158 : if (!boz_args_check (i, j))
7982 : : return false;
7983 : :
7984 : : /* If i is BOZ and j is integer, convert i to type of j. */
7985 : 154 : if (i->ts.type == BT_BOZ)
7986 : : {
7987 : 18 : if (j->ts.type != BT_INTEGER)
7988 : : {
7989 : 0 : gfc_error ("%qs argument of %qs intrinsic at %L must be INTEGER",
7990 : 0 : gfc_current_intrinsic_arg[1]->name,
7991 : : gfc_current_intrinsic, &j->where);
7992 : 0 : reset_boz (i);
7993 : 0 : return false;
7994 : : }
7995 : 18 : if (!gfc_boz2int (i, j->ts.kind))
7996 : : return false;
7997 : : }
7998 : :
7999 : : /* If j is BOZ and i is integer, convert j to type of i. */
8000 : 154 : if (j->ts.type == BT_BOZ)
8001 : : {
8002 : 21 : if (i->ts.type != BT_INTEGER)
8003 : : {
8004 : 1 : gfc_error ("%qs argument of %qs intrinsic at %L must be INTEGER",
8005 : 1 : gfc_current_intrinsic_arg[0]->name,
8006 : : gfc_current_intrinsic, &j->where);
8007 : 1 : reset_boz (j);
8008 : 1 : return false;
8009 : : }
8010 : 20 : if (!gfc_boz2int (j, i->ts.kind))
8011 : : return false;
8012 : : }
8013 : :
8014 : 153 : if (!same_type_check (i, 0, j, 1, false))
8015 : : return false;
8016 : :
8017 : 146 : if (!scalar_check (i, 0))
8018 : : return false;
8019 : :
8020 : 146 : if (!scalar_check (j, 1))
8021 : : return false;
8022 : :
8023 : : return true;
8024 : : }
8025 : :
8026 : :
8027 : : bool
8028 : 959 : gfc_check_storage_size (gfc_expr *a, gfc_expr *kind)
8029 : : {
8030 : :
8031 : 959 : if (a->expr_type == EXPR_NULL)
8032 : : {
8033 : 1 : gfc_error ("Intrinsic function NULL at %L cannot be an actual "
8034 : : "argument to STORAGE_SIZE, because it returns a "
8035 : : "disassociated pointer", &a->where);
8036 : 1 : return false;
8037 : : }
8038 : :
8039 : 958 : if (a->ts.type == BT_ASSUMED)
8040 : : {
8041 : 0 : gfc_error ("%qs argument of %qs intrinsic at %L shall not be TYPE(*)",
8042 : 0 : gfc_current_intrinsic_arg[0]->name, gfc_current_intrinsic,
8043 : : &a->where);
8044 : 0 : return false;
8045 : : }
8046 : :
8047 : 958 : if (a->ts.type == BT_PROCEDURE)
8048 : : {
8049 : 1 : gfc_error ("%qs argument of %qs intrinsic at %L shall not be a "
8050 : 1 : "procedure", gfc_current_intrinsic_arg[0]->name,
8051 : : gfc_current_intrinsic, &a->where);
8052 : 1 : return false;
8053 : : }
8054 : :
8055 : 957 : if (a->ts.type == BT_BOZ && illegal_boz_arg (a))
8056 : : return false;
8057 : :
8058 : 956 : if (kind == NULL)
8059 : : return true;
8060 : :
8061 : 303 : if (!type_check (kind, 1, BT_INTEGER))
8062 : : return false;
8063 : :
8064 : 302 : if (!scalar_check (kind, 1))
8065 : : return false;
8066 : :
8067 : 301 : if (kind->expr_type != EXPR_CONSTANT)
8068 : : {
8069 : 1 : gfc_error ("%qs argument of %qs intrinsic at %L must be a constant",
8070 : 1 : gfc_current_intrinsic_arg[1]->name, gfc_current_intrinsic,
8071 : : &kind->where);
8072 : 1 : return false;
8073 : : }
8074 : :
8075 : : return true;
8076 : : }
8077 : :
8078 : : /* Check two operands that either both or none of them can
8079 : : be UNSIGNED. */
8080 : :
8081 : : bool
8082 : 7699 : gfc_invalid_unsigned_ops (gfc_expr * op1, gfc_expr * op2)
8083 : : {
8084 : 7699 : return (op1->ts.type == BT_UNSIGNED) ^ (op2->ts.type == BT_UNSIGNED);
8085 : : }
|