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