hppa: Fix pr110279-1.c on hppa
[official-gcc.git] / gcc / fortran / check.cc
blobb91a743be4287a9f4534f3cd1de542d667373abb
1 /* Check functions
2 Copyright (C) 2002-2023 Free Software Foundation, Inc.
3 Contributed by Andy Vaught & Katherine Holcomb
5 This file is part of GCC.
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.
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.
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/>. */
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. */
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"
38 /* Reset a BOZ to a zero value. This is used to prevent run-on errors
39 from resolve.cc(resolve_function). */
41 static void
42 reset_boz (gfc_expr *x)
44 /* Clear boz info. */
45 x->boz.rdx = 0;
46 x->boz.len = 0;
47 free (x->boz.str);
49 x->ts.type = BT_INTEGER;
50 x->ts.kind = gfc_default_integer_kind;
51 mpz_init (x->value.integer);
52 mpz_set_ui (x->value.integer, 0);
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. */
61 bool
62 gfc_invalid_boz (const char *msg, locus *loc)
64 if (flag_allow_invalid_boz)
66 gfc_warning (0, msg, loc);
67 return false;
70 const char *hint = _(" [see %<-fno-allow-invalid-boz%>]");
71 size_t len = strlen (msg) + strlen (hint) + 1;
72 char *msg2 = (char *) alloca (len);
73 strcpy (msg2, msg);
74 strcat (msg2, hint);
75 gfc_error (msg2, loc);
76 return true;
80 /* Issue an error for an illegal BOZ argument. */
82 static bool
83 illegal_boz_arg (gfc_expr *x)
85 if (x->ts.type == BT_BOZ)
87 gfc_error ("BOZ literal constant at %L cannot be an actual argument "
88 "to %qs", &x->where, gfc_current_intrinsic);
89 reset_boz (x);
90 return true;
93 return false;
96 /* Some procedures take two arguments such that both cannot be BOZ. */
98 static bool
99 boz_args_check(gfc_expr *i, gfc_expr *j)
101 if (i->ts.type == BT_BOZ && j->ts.type == BT_BOZ)
103 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 reset_boz (i);
107 reset_boz (j);
108 return false;
112 return true;
116 /* Check that a BOZ is a constant. */
118 static bool
119 is_boz_constant (gfc_expr *a)
121 if (a->expr_type != EXPR_CONSTANT)
123 gfc_error ("Invalid use of BOZ literal constant at %L", &a->where);
124 return false;
127 return true;
131 /* Convert a octal string into a binary string. This is used in the
132 fallback conversion of an octal string to a REAL. */
134 static char *
135 oct2bin(int nbits, char *oct)
137 const char bits[8][5] = {
138 "000", "001", "010", "011", "100", "101", "110", "111"};
140 char *buf, *bufp;
141 int i, j, n;
143 j = nbits + 1;
144 if (nbits == 64) j++;
146 bufp = buf = XCNEWVEC (char, j + 1);
147 memset (bufp, 0, j + 1);
149 n = strlen (oct);
150 for (i = 0; i < n; i++, oct++)
152 j = *oct - 48;
153 strcpy (bufp, &bits[j][0]);
154 bufp += 3;
157 bufp = XCNEWVEC (char, nbits + 1);
158 if (nbits == 64)
159 strcpy (bufp, buf + 2);
160 else
161 strcpy (bufp, buf + 1);
163 free (buf);
165 return bufp;
169 /* Convert a hexidecimal string into a binary string. This is used in the
170 fallback conversion of a hexidecimal string to a REAL. */
172 static char *
173 hex2bin(int nbits, char *hex)
175 const char bits[16][5] = {
176 "0000", "0001", "0010", "0011", "0100", "0101", "0110", "0111",
177 "1000", "1001", "1010", "1011", "1100", "1101", "1110", "1111"};
179 char *buf, *bufp;
180 int i, j, n;
182 bufp = buf = XCNEWVEC (char, nbits + 1);
183 memset (bufp, 0, nbits + 1);
185 n = strlen (hex);
186 for (i = 0; i < n; i++, hex++)
188 j = *hex;
189 if (j > 47 && j < 58)
190 j -= 48;
191 else if (j > 64 && j < 71)
192 j -= 55;
193 else if (j > 96 && j < 103)
194 j -= 87;
195 else
196 gcc_unreachable ();
198 strcpy (bufp, &bits[j][0]);
199 bufp += 4;
202 return buf;
206 /* Fallback conversion of a BOZ string to REAL. */
208 static void
209 bin2real (gfc_expr *x, int kind)
211 char buf[114], *sp;
212 int b, i, ie, t, w;
213 bool sgn;
214 mpz_t em;
216 i = gfc_validate_kind (BT_REAL, kind, false);
217 t = gfc_real_kinds[i].digits - 1;
219 /* Number of bits in the exponent. */
220 if (gfc_real_kinds[i].max_exponent == 16384)
221 w = 15;
222 else if (gfc_real_kinds[i].max_exponent == 1024)
223 w = 11;
224 else
225 w = 8;
227 if (x->boz.rdx == 16)
228 sp = hex2bin (gfc_real_kinds[i].mode_precision, x->boz.str);
229 else if (x->boz.rdx == 8)
230 sp = oct2bin (gfc_real_kinds[i].mode_precision, x->boz.str);
231 else
232 sp = x->boz.str;
234 /* Extract sign bit. */
235 sgn = *sp != '0';
237 /* Extract biased exponent. */
238 memset (buf, 0, 114);
239 strncpy (buf, ++sp, w);
240 mpz_init (em);
241 mpz_set_str (em, buf, 2);
242 ie = mpz_get_si (em);
244 mpfr_init2 (x->value.real, t + 1);
245 x->ts.type = BT_REAL;
246 x->ts.kind = kind;
248 sp += w; /* Set to first digit in significand. */
249 b = (1 << w) - 1;
250 if ((i == 0 && ie == b) || (i == 1 && ie == b)
251 || ((i == 2 || i == 3) && ie == b))
253 bool zeros = true;
254 if (i == 2) sp++;
255 for (; *sp; sp++)
257 if (*sp != '0')
259 zeros = false;
260 break;
264 if (zeros)
265 mpfr_set_inf (x->value.real, 1);
266 else
267 mpfr_set_nan (x->value.real);
269 else
271 if (i == 2)
272 strncpy (buf, sp, t + 1);
273 else
275 /* Significand with hidden bit. */
276 buf[0] = '1';
277 strncpy (&buf[1], sp, t);
280 /* Convert to significand to integer. */
281 mpz_set_str (em, buf, 2);
282 ie -= ((1 << (w - 1)) - 1); /* Unbiased exponent. */
283 mpfr_set_z_2exp (x->value.real, em, ie - t, GFC_RND_MODE);
286 if (sgn) mpfr_neg (x->value.real, x->value.real, GFC_RND_MODE);
288 mpz_clear (em);
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. */
296 bool
297 gfc_boz2real (gfc_expr *x, int kind)
299 extern int gfc_max_integer_kind;
300 gfc_typespec ts;
301 int len;
302 char *buf, *str;
304 if (!is_boz_constant (x))
305 return false;
307 /* Determine the length of the required string. */
308 len = 8 * kind;
309 if (x->boz.rdx == 16) len /= 4;
310 if (x->boz.rdx == 8) len = len / 3 + 1;
311 buf = (char *) alloca (len + 1); /* +1 for NULL terminator. */
313 if (x->boz.len >= len) /* Truncate if necessary. */
315 str = x->boz.str + (x->boz.len - len);
316 strcpy(buf, str);
318 else /* Copy and pad. */
320 memset (buf, 48, len);
321 str = buf + (len - x->boz.len);
322 strcpy (str, x->boz.str);
325 /* Need to adjust leading bits in an octal string. */
326 if (x->boz.rdx == 8)
328 /* Clear first bit. */
329 if (kind == 4 || kind == 10 || kind == 16)
331 if (buf[0] == '4')
332 buf[0] = '0';
333 else if (buf[0] == '5')
334 buf[0] = '1';
335 else if (buf[0] == '6')
336 buf[0] = '2';
337 else if (buf[0] == '7')
338 buf[0] = '3';
340 /* Clear first two bits. */
341 else
343 if (buf[0] == '2' || buf[0] == '4' || buf[0] == '6')
344 buf[0] = '0';
345 else if (buf[0] == '3' || buf[0] == '5' || buf[0] == '7')
346 buf[0] = '1';
350 /* Reset BOZ string to the truncated or padded version. */
351 free (x->boz.str);
352 x->boz.len = len;
353 x->boz.str = XCNEWVEC (char, len + 1);
354 strncpy (x->boz.str, buf, len);
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 if (gfc_max_integer_kind < kind)
361 bin2real (x, kind);
363 else
365 /* Convert to widest possible integer. */
366 gfc_boz2int (x, gfc_max_integer_kind);
367 ts.type = BT_REAL;
368 ts.kind = kind;
369 if (!gfc_convert_boz (x, &ts))
371 gfc_error ("Failure in conversion of BOZ to REAL at %L", &x->where);
372 return false;
376 return true;
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. */
386 bool
387 gfc_boz2int (gfc_expr *x, int kind)
389 int i, len;
390 char *buf, *str;
391 mpz_t tmp1;
393 if (!is_boz_constant (x))
394 return false;
396 i = gfc_validate_kind (BT_INTEGER, kind, false);
397 len = gfc_integer_kinds[i].bit_size;
398 if (x->boz.rdx == 16) len /= 4;
399 if (x->boz.rdx == 8) len = len / 3 + 1;
400 buf = (char *) alloca (len + 1); /* +1 for NULL terminator. */
402 if (x->boz.len >= len) /* Truncate if necessary. */
404 str = x->boz.str + (x->boz.len - len);
405 strcpy(buf, str);
407 else /* Copy and pad. */
409 memset (buf, 48, len);
410 str = buf + (len - x->boz.len);
411 strcpy (str, x->boz.str);
414 /* Need to adjust leading bits in an octal string. */
415 if (x->boz.rdx == 8)
417 /* Clear first bit. */
418 if (kind == 1 || kind == 4 || kind == 16)
420 if (buf[0] == '4')
421 buf[0] = '0';
422 else if (buf[0] == '5')
423 buf[0] = '1';
424 else if (buf[0] == '6')
425 buf[0] = '2';
426 else if (buf[0] == '7')
427 buf[0] = '3';
429 /* Clear first two bits. */
430 else
432 if (buf[0] == '2' || buf[0] == '4' || buf[0] == '6')
433 buf[0] = '0';
434 else if (buf[0] == '3' || buf[0] == '5' || buf[0] == '7')
435 buf[0] = '1';
439 /* Convert as-if unsigned integer. */
440 mpz_init (tmp1);
441 mpz_set_str (tmp1, buf, x->boz.rdx);
443 /* Check for wrap-around. */
444 if (mpz_cmp (tmp1, gfc_integer_kinds[i].huge) > 0)
446 mpz_t tmp2;
447 mpz_init (tmp2);
448 mpz_add_ui (tmp2, gfc_integer_kinds[i].huge, 1);
449 mpz_mod (tmp1, tmp1, tmp2);
450 mpz_sub (tmp1, tmp1, tmp2);
451 mpz_clear (tmp2);
454 /* Clear boz info. */
455 x->boz.rdx = 0;
456 x->boz.len = 0;
457 free (x->boz.str);
459 mpz_init (x->value.integer);
460 mpz_set (x->value.integer, tmp1);
461 x->ts.type = BT_INTEGER;
462 x->ts.kind = kind;
463 mpz_clear (tmp1);
465 return true;
469 /* Make sure an expression is a scalar. */
471 static bool
472 scalar_check (gfc_expr *e, int n)
474 if (e->rank == 0)
475 return true;
477 gfc_error ("%qs argument of %qs intrinsic at %L must be a scalar",
478 gfc_current_intrinsic_arg[n]->name, gfc_current_intrinsic,
479 &e->where);
481 return false;
485 /* Check the type of an expression. */
487 static bool
488 type_check (gfc_expr *e, int n, bt type)
490 if (e->ts.type == type)
491 return true;
493 gfc_error ("%qs argument of %qs intrinsic at %L must be %s",
494 gfc_current_intrinsic_arg[n]->name, gfc_current_intrinsic,
495 &e->where, gfc_basic_typename (type));
497 return false;
501 /* Check that the expression is a numeric type. */
503 static bool
504 numeric_check (gfc_expr *e, int n)
506 /* Users sometime use a subroutine designator as an actual argument to
507 an intrinsic subprogram that expects an argument with a numeric type. */
508 if (e->symtree && e->symtree->n.sym->attr.subroutine)
509 goto error;
511 if (gfc_numeric_ts (&e->ts))
512 return true;
514 /* If the expression has not got a type, check if its namespace can
515 offer a default type. */
516 if ((e->expr_type == EXPR_VARIABLE || e->expr_type == EXPR_FUNCTION)
517 && e->symtree->n.sym->ts.type == BT_UNKNOWN
518 && gfc_set_default_type (e->symtree->n.sym, 0, e->symtree->n.sym->ns)
519 && gfc_numeric_ts (&e->symtree->n.sym->ts))
521 e->ts = e->symtree->n.sym->ts;
522 return true;
525 error:
527 gfc_error ("%qs argument of %qs intrinsic at %L must have a numeric type",
528 gfc_current_intrinsic_arg[n]->name, gfc_current_intrinsic,
529 &e->where);
531 return false;
535 /* Check that an expression is integer or real. */
537 static bool
538 int_or_real_check (gfc_expr *e, int n)
540 if (e->ts.type != BT_INTEGER && e->ts.type != BT_REAL)
542 gfc_error ("%qs argument of %qs intrinsic at %L must be INTEGER "
543 "or REAL", gfc_current_intrinsic_arg[n]->name,
544 gfc_current_intrinsic, &e->where);
545 return false;
548 return true;
551 /* Check that an expression is integer or real; allow character for
552 F2003 or later. */
554 static bool
555 int_or_real_or_char_check_f2003 (gfc_expr *e, int n)
557 if (e->ts.type != BT_INTEGER && e->ts.type != BT_REAL)
559 if (e->ts.type == BT_CHARACTER)
560 return gfc_notify_std (GFC_STD_F2003, "Fortran 2003: Character for "
561 "%qs argument of %qs intrinsic at %L",
562 gfc_current_intrinsic_arg[n]->name,
563 gfc_current_intrinsic, &e->where);
564 else
566 if (gfc_option.allow_std & GFC_STD_F2003)
567 gfc_error ("%qs argument of %qs intrinsic at %L must be INTEGER "
568 "or REAL or CHARACTER",
569 gfc_current_intrinsic_arg[n]->name,
570 gfc_current_intrinsic, &e->where);
571 else
572 gfc_error ("%qs argument of %qs intrinsic at %L must be INTEGER "
573 "or REAL", gfc_current_intrinsic_arg[n]->name,
574 gfc_current_intrinsic, &e->where);
576 return false;
579 return true;
582 /* Check that an expression is an intrinsic type. */
583 static bool
584 intrinsic_type_check (gfc_expr *e, int n)
586 if (e->ts.type != BT_INTEGER && e->ts.type != BT_REAL
587 && e->ts.type != BT_COMPLEX && e->ts.type != BT_CHARACTER
588 && e->ts.type != BT_LOGICAL)
590 gfc_error ("%qs argument of %qs intrinsic at %L must be of intrinsic type",
591 gfc_current_intrinsic_arg[n]->name,
592 gfc_current_intrinsic, &e->where);
593 return false;
595 return true;
598 /* Check that an expression is real or complex. */
600 static bool
601 real_or_complex_check (gfc_expr *e, int n)
603 if (e->ts.type != BT_REAL && e->ts.type != BT_COMPLEX)
605 gfc_error ("%qs argument of %qs intrinsic at %L must be REAL "
606 "or COMPLEX", gfc_current_intrinsic_arg[n]->name,
607 gfc_current_intrinsic, &e->where);
608 return false;
611 return true;
615 /* Check that an expression is INTEGER or PROCEDURE. */
617 static bool
618 int_or_proc_check (gfc_expr *e, int n)
620 if (e->ts.type != BT_INTEGER && e->ts.type != BT_PROCEDURE)
622 gfc_error ("%qs argument of %qs intrinsic at %L must be INTEGER "
623 "or PROCEDURE", gfc_current_intrinsic_arg[n]->name,
624 gfc_current_intrinsic, &e->where);
625 return false;
628 return true;
632 /* Check that the expression is an optional constant integer
633 and that it specifies a valid kind for that type. */
635 static bool
636 kind_check (gfc_expr *k, int n, bt type)
638 int kind;
640 if (k == NULL)
641 return true;
643 if (!type_check (k, n, BT_INTEGER))
644 return false;
646 if (!scalar_check (k, n))
647 return false;
649 if (!gfc_check_init_expr (k))
651 gfc_error ("%qs argument of %qs intrinsic at %L must be a constant",
652 gfc_current_intrinsic_arg[n]->name, gfc_current_intrinsic,
653 &k->where);
654 return false;
657 if (gfc_extract_int (k, &kind)
658 || gfc_validate_kind (type, kind, true) < 0)
660 gfc_error ("Invalid kind for %s at %L", gfc_basic_typename (type),
661 &k->where);
662 return false;
665 return true;
669 /* Make sure the expression is a double precision real. */
671 static bool
672 double_check (gfc_expr *d, int n)
674 if (!type_check (d, n, BT_REAL))
675 return false;
677 if (d->ts.kind != gfc_default_double_kind)
679 gfc_error ("%qs argument of %qs intrinsic at %L must be double "
680 "precision", gfc_current_intrinsic_arg[n]->name,
681 gfc_current_intrinsic, &d->where);
682 return false;
685 return true;
689 static bool
690 coarray_check (gfc_expr *e, int n)
692 if (e->ts.type == BT_CLASS && gfc_expr_attr (e).class_ok
693 && CLASS_DATA (e)->attr.codimension
694 && CLASS_DATA (e)->as->corank)
696 gfc_add_class_array_ref (e);
697 return true;
700 if (!gfc_is_coarray (e))
702 gfc_error ("Expected coarray variable as %qs argument to the %s "
703 "intrinsic at %L", gfc_current_intrinsic_arg[n]->name,
704 gfc_current_intrinsic, &e->where);
705 return false;
708 return true;
712 /* Make sure the expression is a logical array. */
714 static bool
715 logical_array_check (gfc_expr *array, int n)
717 if (array->ts.type != BT_LOGICAL || array->rank == 0)
719 gfc_error ("%qs argument of %qs intrinsic at %L must be a logical "
720 "array", gfc_current_intrinsic_arg[n]->name,
721 gfc_current_intrinsic, &array->where);
722 return false;
725 return true;
729 /* Make sure an expression is an array. */
731 static bool
732 array_check (gfc_expr *e, int n)
734 if (e->rank != 0 && e->ts.type == BT_CLASS && gfc_expr_attr (e).class_ok
735 && CLASS_DATA (e)->attr.dimension
736 && CLASS_DATA (e)->as->rank)
738 gfc_add_class_array_ref (e);
741 if (e->rank != 0 && e->ts.type != BT_PROCEDURE)
742 return true;
744 gfc_error ("%qs argument of %qs intrinsic at %L must be an array",
745 gfc_current_intrinsic_arg[n]->name, gfc_current_intrinsic,
746 &e->where);
748 return false;
752 /* If expr is a constant, then check to ensure that it is greater than
753 of equal to zero. */
755 static bool
756 nonnegative_check (const char *arg, gfc_expr *expr)
758 int i;
760 if (expr->expr_type == EXPR_CONSTANT)
762 gfc_extract_int (expr, &i);
763 if (i < 0)
765 gfc_error ("%qs at %L must be nonnegative", arg, &expr->where);
766 return false;
770 return true;
774 /* If expr is a constant, then check to ensure that it is greater than zero. */
776 static bool
777 positive_check (int n, gfc_expr *expr)
779 int i;
781 if (expr->expr_type == EXPR_CONSTANT)
783 gfc_extract_int (expr, &i);
784 if (i <= 0)
786 gfc_error ("%qs argument of %qs intrinsic at %L must be positive",
787 gfc_current_intrinsic_arg[n]->name, gfc_current_intrinsic,
788 &expr->where);
789 return false;
793 return true;
797 /* If expr2 is constant, then check that the value is less than
798 (less than or equal to, if 'or_equal' is true) bit_size(expr1). */
800 static bool
801 less_than_bitsize1 (const char *arg1, gfc_expr *expr1, const char *arg2,
802 gfc_expr *expr2, bool or_equal)
804 int i2, i3;
806 if (expr2->expr_type == EXPR_CONSTANT)
808 gfc_extract_int (expr2, &i2);
809 i3 = gfc_validate_kind (BT_INTEGER, expr1->ts.kind, false);
811 /* For ISHFT[C], check that |shift| <= bit_size(i). */
812 if (arg2 == NULL)
814 if (i2 < 0)
815 i2 = -i2;
817 if (i2 > gfc_integer_kinds[i3].bit_size)
819 gfc_error ("The absolute value of SHIFT at %L must be less "
820 "than or equal to BIT_SIZE(%qs)",
821 &expr2->where, arg1);
822 return false;
826 if (or_equal)
828 if (i2 > gfc_integer_kinds[i3].bit_size)
830 gfc_error ("%qs at %L must be less than "
831 "or equal to BIT_SIZE(%qs)",
832 arg2, &expr2->where, arg1);
833 return false;
836 else
838 if (i2 >= gfc_integer_kinds[i3].bit_size)
840 gfc_error ("%qs at %L must be less than BIT_SIZE(%qs)",
841 arg2, &expr2->where, arg1);
842 return false;
847 return true;
851 /* If expr is constant, then check that the value is less than or equal
852 to the bit_size of the kind k. */
854 static bool
855 less_than_bitsizekind (const char *arg, gfc_expr *expr, int k)
857 int i, val;
859 if (expr->expr_type != EXPR_CONSTANT)
860 return true;
862 i = gfc_validate_kind (BT_INTEGER, k, false);
863 gfc_extract_int (expr, &val);
865 if (val > gfc_integer_kinds[i].bit_size)
867 gfc_error ("%qs at %L must be less than or equal to the BIT_SIZE of "
868 "INTEGER(KIND=%d)", arg, &expr->where, k);
869 return false;
872 return true;
876 /* If expr2 and expr3 are constants, then check that the value is less than
877 or equal to bit_size(expr1). */
879 static bool
880 less_than_bitsize2 (const char *arg1, gfc_expr *expr1, const char *arg2,
881 gfc_expr *expr2, const char *arg3, gfc_expr *expr3)
883 int i2, i3;
885 if (expr2->expr_type == EXPR_CONSTANT && expr3->expr_type == EXPR_CONSTANT)
887 gfc_extract_int (expr2, &i2);
888 gfc_extract_int (expr3, &i3);
889 i2 += i3;
890 i3 = gfc_validate_kind (BT_INTEGER, expr1->ts.kind, false);
891 if (i2 > gfc_integer_kinds[i3].bit_size)
893 gfc_error ("%<%s + %s%> at %L must be less than or equal "
894 "to BIT_SIZE(%qs)",
895 arg2, arg3, &expr2->where, arg1);
896 return false;
900 return true;
903 /* Make sure two expressions have the same type. */
905 static bool
906 same_type_check (gfc_expr *e, int n, gfc_expr *f, int m, bool assoc = false)
908 gfc_typespec *ets = &e->ts;
909 gfc_typespec *fts = &f->ts;
911 if (assoc)
913 /* Procedure pointer component expressions have the type of the interface
914 procedure. If they are being tested for association with a procedure
915 pointer (ie. not a component), the type of the procedure must be
916 determined. */
917 if (e->ts.type == BT_PROCEDURE && e->symtree->n.sym)
918 ets = &e->symtree->n.sym->ts;
919 if (f->ts.type == BT_PROCEDURE && f->symtree->n.sym)
920 fts = &f->symtree->n.sym->ts;
923 if (gfc_compare_types (ets, fts))
924 return true;
926 gfc_error ("%qs argument of %qs intrinsic at %L must be the same type "
927 "and kind as %qs", gfc_current_intrinsic_arg[m]->name,
928 gfc_current_intrinsic, &f->where,
929 gfc_current_intrinsic_arg[n]->name);
931 return false;
935 /* Make sure that an expression has a certain (nonzero) rank. */
937 static bool
938 rank_check (gfc_expr *e, int n, int rank)
940 if (e->rank == rank)
941 return true;
943 gfc_error ("%qs argument of %qs intrinsic at %L must be of rank %d",
944 gfc_current_intrinsic_arg[n]->name, gfc_current_intrinsic,
945 &e->where, rank);
947 return false;
951 /* Make sure a variable expression is not an optional dummy argument. */
953 static bool
954 nonoptional_check (gfc_expr *e, int n)
956 if (e->expr_type == EXPR_VARIABLE && e->symtree->n.sym->attr.optional)
958 gfc_error ("%qs argument of %qs intrinsic at %L must not be OPTIONAL",
959 gfc_current_intrinsic_arg[n]->name, gfc_current_intrinsic,
960 &e->where);
963 /* TODO: Recursive check on nonoptional variables? */
965 return true;
969 /* Check for ALLOCATABLE attribute. */
971 static bool
972 allocatable_check (gfc_expr *e, int n)
974 symbol_attribute attr;
976 attr = gfc_variable_attr (e, NULL);
977 if (!attr.allocatable
978 || (attr.associate_var && !attr.select_rank_temporary))
980 gfc_error ("%qs argument of %qs intrinsic at %L must be ALLOCATABLE",
981 gfc_current_intrinsic_arg[n]->name, gfc_current_intrinsic,
982 &e->where);
983 return false;
986 return true;
990 /* Check that an expression has a particular kind. */
992 static bool
993 kind_value_check (gfc_expr *e, int n, int k)
995 if (e->ts.kind == k)
996 return true;
998 gfc_error ("%qs argument of %qs intrinsic at %L must be of kind %d",
999 gfc_current_intrinsic_arg[n]->name, gfc_current_intrinsic,
1000 &e->where, k);
1002 return false;
1006 /* Make sure an expression is a variable. */
1008 static bool
1009 variable_check (gfc_expr *e, int n, bool allow_proc)
1011 if (e->expr_type == EXPR_VARIABLE
1012 && e->symtree->n.sym->attr.intent == INTENT_IN
1013 && (gfc_current_intrinsic_arg[n]->intent == INTENT_OUT
1014 || gfc_current_intrinsic_arg[n]->intent == INTENT_INOUT)
1015 && !gfc_check_vardef_context (e, false, true, false, NULL))
1017 gfc_error ("%qs argument of %qs intrinsic at %L cannot be INTENT(IN)",
1018 gfc_current_intrinsic_arg[n]->name,
1019 gfc_current_intrinsic, &e->where);
1020 return false;
1023 if (e->expr_type == EXPR_VARIABLE
1024 && e->symtree->n.sym->attr.flavor != FL_PARAMETER
1025 && (allow_proc || !e->symtree->n.sym->attr.function))
1026 return true;
1028 if (e->expr_type == EXPR_VARIABLE && e->symtree->n.sym->attr.function
1029 && e->symtree->n.sym == e->symtree->n.sym->result)
1031 gfc_namespace *ns;
1032 for (ns = gfc_current_ns; ns; ns = ns->parent)
1033 if (ns->proc_name == e->symtree->n.sym)
1034 return true;
1037 /* F2018:R902: function reference having a data pointer result. */
1038 if (e->expr_type == EXPR_FUNCTION
1039 && e->symtree->n.sym->attr.flavor == FL_PROCEDURE
1040 && e->symtree->n.sym->attr.function
1041 && e->symtree->n.sym->attr.pointer)
1042 return true;
1044 gfc_error ("%qs argument of %qs intrinsic at %L must be a variable",
1045 gfc_current_intrinsic_arg[n]->name, gfc_current_intrinsic, &e->where);
1047 return false;
1051 /* Check the common DIM parameter for correctness. */
1053 static bool
1054 dim_check (gfc_expr *dim, int n, bool optional)
1056 if (dim == NULL)
1057 return true;
1059 if (!type_check (dim, n, BT_INTEGER))
1060 return false;
1062 if (!scalar_check (dim, n))
1063 return false;
1065 if (!optional && !nonoptional_check (dim, n))
1066 return false;
1068 return true;
1072 /* If a coarray DIM parameter is a constant, make sure that it is greater than
1073 zero and less than or equal to the corank of the given array. */
1075 static bool
1076 dim_corank_check (gfc_expr *dim, gfc_expr *array)
1078 int corank;
1080 gcc_assert (array->expr_type == EXPR_VARIABLE);
1082 if (dim->expr_type != EXPR_CONSTANT)
1083 return true;
1085 if (array->ts.type == BT_CLASS)
1086 return true;
1088 corank = gfc_get_corank (array);
1090 if (mpz_cmp_ui (dim->value.integer, 1) < 0
1091 || mpz_cmp_ui (dim->value.integer, corank) > 0)
1093 gfc_error ("%<dim%> argument of %qs intrinsic at %L is not a valid "
1094 "codimension index", gfc_current_intrinsic, &dim->where);
1096 return false;
1099 return true;
1103 /* If a DIM parameter is a constant, make sure that it is greater than
1104 zero and less than or equal to the rank of the given array. If
1105 allow_assumed is zero then dim must be less than the rank of the array
1106 for assumed size arrays. */
1108 static bool
1109 dim_rank_check (gfc_expr *dim, gfc_expr *array, int allow_assumed)
1111 gfc_array_ref *ar;
1112 int rank;
1114 if (dim == NULL)
1115 return true;
1117 if (dim->expr_type != EXPR_CONSTANT)
1118 return true;
1120 if (array->expr_type == EXPR_FUNCTION && array->value.function.isym
1121 && array->value.function.isym->id == GFC_ISYM_SPREAD)
1122 rank = array->rank + 1;
1123 else
1124 rank = array->rank;
1126 /* Assumed-rank array. */
1127 if (rank == -1)
1128 rank = GFC_MAX_DIMENSIONS;
1130 if (array->expr_type == EXPR_VARIABLE)
1132 ar = gfc_find_array_ref (array, true);
1133 if (!ar)
1134 return false;
1135 if (ar->as->type == AS_ASSUMED_SIZE
1136 && !allow_assumed
1137 && ar->type != AR_ELEMENT
1138 && ar->type != AR_SECTION)
1139 rank--;
1142 if (mpz_cmp_ui (dim->value.integer, 1) < 0
1143 || mpz_cmp_ui (dim->value.integer, rank) > 0)
1145 gfc_error ("%<dim%> argument of %qs intrinsic at %L is not a valid "
1146 "dimension index", gfc_current_intrinsic, &dim->where);
1148 return false;
1151 return true;
1155 /* Compare the size of a along dimension ai with the size of b along
1156 dimension bi, returning 0 if they are known not to be identical,
1157 and 1 if they are identical, or if this cannot be determined. */
1159 static bool
1160 identical_dimen_shape (gfc_expr *a, int ai, gfc_expr *b, int bi)
1162 mpz_t a_size, b_size;
1163 bool ret;
1165 gcc_assert (a->rank > ai);
1166 gcc_assert (b->rank > bi);
1168 ret = true;
1170 if (gfc_array_dimen_size (a, ai, &a_size))
1172 if (gfc_array_dimen_size (b, bi, &b_size))
1174 if (mpz_cmp (a_size, b_size) != 0)
1175 ret = false;
1177 mpz_clear (b_size);
1179 mpz_clear (a_size);
1181 return ret;
1184 /* Calculate the length of a character variable, including substrings.
1185 Strip away parentheses if necessary. Return -1 if no length could
1186 be determined. */
1188 static long
1189 gfc_var_strlen (const gfc_expr *a)
1191 gfc_ref *ra;
1193 while (a->expr_type == EXPR_OP && a->value.op.op == INTRINSIC_PARENTHESES)
1194 a = a->value.op.op1;
1196 for (ra = a->ref; ra != NULL && ra->type != REF_SUBSTRING; ra = ra->next)
1199 if (ra)
1201 long start_a, end_a;
1203 if (!ra->u.ss.end)
1204 return -1;
1206 if ((!ra->u.ss.start || ra->u.ss.start->expr_type == EXPR_CONSTANT)
1207 && ra->u.ss.end->expr_type == EXPR_CONSTANT)
1209 start_a = ra->u.ss.start ? mpz_get_si (ra->u.ss.start->value.integer)
1210 : 1;
1211 end_a = mpz_get_si (ra->u.ss.end->value.integer);
1212 return (end_a < start_a) ? 0 : end_a - start_a + 1;
1214 else if (ra->u.ss.start
1215 && gfc_dep_compare_expr (ra->u.ss.start, ra->u.ss.end) == 0)
1216 return 1;
1217 else
1218 return -1;
1221 if (a->ts.u.cl && a->ts.u.cl->length
1222 && a->ts.u.cl->length->expr_type == EXPR_CONSTANT)
1223 return mpz_get_si (a->ts.u.cl->length->value.integer);
1224 else if (a->expr_type == EXPR_CONSTANT
1225 && (a->ts.u.cl == NULL || a->ts.u.cl->length == NULL))
1226 return a->value.character.length;
1227 else
1228 return -1;
1232 /* Check whether two character expressions have the same length;
1233 returns true if they have or if the length cannot be determined,
1234 otherwise return false and raise a gfc_error. */
1236 bool
1237 gfc_check_same_strlen (const gfc_expr *a, const gfc_expr *b, const char *name)
1239 long len_a, len_b;
1241 len_a = gfc_var_strlen(a);
1242 len_b = gfc_var_strlen(b);
1244 if (len_a == -1 || len_b == -1 || len_a == len_b)
1245 return true;
1246 else
1248 gfc_error ("Unequal character lengths (%ld/%ld) in %s at %L",
1249 len_a, len_b, name, &a->where);
1250 return false;
1254 /* Check size of an array argument against a required size.
1255 Returns true if the requirement is satisfied or if the size cannot be
1256 determined, otherwise return false and raise a gfc_error */
1258 static bool
1259 array_size_check (gfc_expr *a, int n, long size_min)
1261 bool ok = true;
1262 mpz_t size;
1264 if (gfc_array_size (a, &size))
1266 HOST_WIDE_INT sz = gfc_mpz_get_hwi (size);
1267 if (size_min >= 0 && sz < size_min)
1269 gfc_error ("Size of %qs argument of %qs intrinsic at %L "
1270 "too small (%wd/%ld)",
1271 gfc_current_intrinsic_arg[n]->name,
1272 gfc_current_intrinsic, &a->where, sz, size_min);
1273 ok = false;
1275 mpz_clear (size);
1278 return ok;
1282 /***** Check functions *****/
1284 /* Check subroutine suitable for intrinsics taking a real argument and
1285 a kind argument for the result. */
1287 static bool
1288 check_a_kind (gfc_expr *a, gfc_expr *kind, bt type)
1290 if (!type_check (a, 0, BT_REAL))
1291 return false;
1292 if (!kind_check (kind, 1, type))
1293 return false;
1295 return true;
1299 /* Check subroutine suitable for ceiling, floor and nint. */
1301 bool
1302 gfc_check_a_ikind (gfc_expr *a, gfc_expr *kind)
1304 return check_a_kind (a, kind, BT_INTEGER);
1308 /* Check subroutine suitable for aint, anint. */
1310 bool
1311 gfc_check_a_xkind (gfc_expr *a, gfc_expr *kind)
1313 return check_a_kind (a, kind, BT_REAL);
1317 bool
1318 gfc_check_abs (gfc_expr *a)
1320 if (!numeric_check (a, 0))
1321 return false;
1323 return true;
1327 bool
1328 gfc_check_achar (gfc_expr *a, gfc_expr *kind)
1330 if (a->ts.type == BT_BOZ)
1332 if (gfc_invalid_boz (G_("BOZ literal constant at %L cannot appear in "
1333 "ACHAR intrinsic subprogram"), &a->where))
1334 return false;
1336 if (!gfc_boz2int (a, gfc_default_integer_kind))
1337 return false;
1340 if (!type_check (a, 0, BT_INTEGER))
1341 return false;
1343 if (!kind_check (kind, 1, BT_CHARACTER))
1344 return false;
1346 return true;
1350 bool
1351 gfc_check_access_func (gfc_expr *name, gfc_expr *mode)
1353 if (!type_check (name, 0, BT_CHARACTER)
1354 || !scalar_check (name, 0))
1355 return false;
1356 if (!kind_value_check (name, 0, gfc_default_character_kind))
1357 return false;
1359 if (!type_check (mode, 1, BT_CHARACTER)
1360 || !scalar_check (mode, 1))
1361 return false;
1362 if (!kind_value_check (mode, 1, gfc_default_character_kind))
1363 return false;
1365 return true;
1369 bool
1370 gfc_check_all_any (gfc_expr *mask, gfc_expr *dim)
1372 if (!logical_array_check (mask, 0))
1373 return false;
1375 if (!dim_check (dim, 1, false))
1376 return false;
1378 if (!dim_rank_check (dim, mask, 0))
1379 return false;
1381 return true;
1385 /* Limited checking for ALLOCATED intrinsic. Additional checking
1386 is performed in intrinsic.cc(sort_actual), because ALLOCATED
1387 has two mutually exclusive non-optional arguments. */
1389 bool
1390 gfc_check_allocated (gfc_expr *array)
1392 /* Tests on allocated components of coarrays need to detour the check to
1393 argument of the _caf_get. */
1394 if (flag_coarray == GFC_FCOARRAY_LIB && array->expr_type == EXPR_FUNCTION
1395 && array->value.function.isym
1396 && array->value.function.isym->id == GFC_ISYM_CAF_GET)
1398 array = array->value.function.actual->expr;
1399 if (!array->ref)
1400 return false;
1403 if (!variable_check (array, 0, false))
1404 return false;
1405 if (!allocatable_check (array, 0))
1406 return false;
1408 return true;
1412 /* Common check function where the first argument must be real or
1413 integer and the second argument must be the same as the first. */
1415 bool
1416 gfc_check_a_p (gfc_expr *a, gfc_expr *p)
1418 if (!int_or_real_check (a, 0))
1419 return false;
1421 if (a->ts.type != p->ts.type)
1423 gfc_error ("%qs and %qs arguments of %qs intrinsic at %L must "
1424 "have the same type", gfc_current_intrinsic_arg[0]->name,
1425 gfc_current_intrinsic_arg[1]->name, gfc_current_intrinsic,
1426 &p->where);
1427 return false;
1430 if (a->ts.kind != p->ts.kind)
1432 if (!gfc_notify_std (GFC_STD_GNU, "Different type kinds at %L",
1433 &p->where))
1434 return false;
1437 return true;
1441 bool
1442 gfc_check_x_yd (gfc_expr *x, gfc_expr *y)
1444 if (!double_check (x, 0) || !double_check (y, 1))
1445 return false;
1447 return true;
1450 bool
1451 gfc_invalid_null_arg (gfc_expr *x)
1453 if (x->expr_type == EXPR_NULL)
1455 gfc_error ("NULL at %L is not permitted as actual argument "
1456 "to %qs intrinsic function", &x->where,
1457 gfc_current_intrinsic);
1458 return true;
1460 return false;
1463 bool
1464 gfc_check_associated (gfc_expr *pointer, gfc_expr *target)
1466 symbol_attribute attr1, attr2;
1467 int i;
1468 bool t;
1470 if (gfc_invalid_null_arg (pointer))
1471 return false;
1473 attr1 = gfc_expr_attr (pointer);
1475 if (!attr1.pointer && !attr1.proc_pointer)
1477 gfc_error ("%qs argument of %qs intrinsic at %L must be a POINTER",
1478 gfc_current_intrinsic_arg[0]->name, gfc_current_intrinsic,
1479 &pointer->where);
1480 return false;
1483 /* F2008, C1242. */
1484 if (attr1.pointer && gfc_is_coindexed (pointer))
1486 gfc_error ("%qs argument of %qs intrinsic at %L shall not be "
1487 "coindexed", gfc_current_intrinsic_arg[0]->name,
1488 gfc_current_intrinsic, &pointer->where);
1489 return false;
1492 /* Target argument is optional. */
1493 if (target == NULL)
1494 return true;
1496 if (gfc_invalid_null_arg (target))
1497 return false;
1499 if (target->expr_type == EXPR_VARIABLE || target->expr_type == EXPR_FUNCTION)
1500 attr2 = gfc_expr_attr (target);
1501 else
1503 gfc_error ("%qs argument of %qs intrinsic at %L must be a pointer "
1504 "or target VARIABLE or FUNCTION",
1505 gfc_current_intrinsic_arg[1]->name, gfc_current_intrinsic,
1506 &target->where);
1507 return false;
1510 if (attr1.pointer && !attr2.pointer && !attr2.target)
1512 gfc_error ("%qs argument of %qs intrinsic at %L must be a POINTER "
1513 "or a TARGET", gfc_current_intrinsic_arg[1]->name,
1514 gfc_current_intrinsic, &target->where);
1515 return false;
1518 /* F2008, C1242. */
1519 if (attr1.pointer && gfc_is_coindexed (target))
1521 gfc_error ("%qs argument of %qs intrinsic at %L shall not be "
1522 "coindexed", gfc_current_intrinsic_arg[1]->name,
1523 gfc_current_intrinsic, &target->where);
1524 return false;
1527 t = true;
1528 if (!same_type_check (pointer, 0, target, 1, true))
1529 t = false;
1530 /* F2018 C838 explicitly allows an assumed-rank variable as the first
1531 argument of intrinsic inquiry functions. */
1532 if (pointer->rank != -1 && !rank_check (target, 0, pointer->rank))
1533 t = false;
1534 if (target->rank > 0 && target->ref)
1536 for (i = 0; i < target->rank; i++)
1537 if (target->ref->u.ar.dimen_type[i] == DIMEN_VECTOR)
1539 gfc_error ("Array section with a vector subscript at %L shall not "
1540 "be the target of a pointer",
1541 &target->where);
1542 t = false;
1543 break;
1546 return t;
1550 bool
1551 gfc_check_atan_2 (gfc_expr *y, gfc_expr *x)
1553 /* gfc_notify_std would be a waste of time as the return value
1554 is seemingly used only for the generic resolution. The error
1555 will be: Too many arguments. */
1556 if ((gfc_option.allow_std & GFC_STD_F2008) == 0)
1557 return false;
1559 return gfc_check_atan2 (y, x);
1563 bool
1564 gfc_check_atan2 (gfc_expr *y, gfc_expr *x)
1566 if (!type_check (y, 0, BT_REAL))
1567 return false;
1568 if (!same_type_check (y, 0, x, 1))
1569 return false;
1571 return true;
1575 static bool
1576 gfc_check_atomic (gfc_expr *atom, int atom_no, gfc_expr *value, int val_no,
1577 gfc_expr *stat, int stat_no)
1579 if (!scalar_check (atom, atom_no) || !scalar_check (value, val_no))
1580 return false;
1582 if (!(atom->ts.type == BT_INTEGER && atom->ts.kind == gfc_atomic_int_kind)
1583 && !(atom->ts.type == BT_LOGICAL
1584 && atom->ts.kind == gfc_atomic_logical_kind))
1586 gfc_error ("ATOM argument at %L to intrinsic function %s shall be an "
1587 "integer of ATOMIC_INT_KIND or a logical of "
1588 "ATOMIC_LOGICAL_KIND", &atom->where, gfc_current_intrinsic);
1589 return false;
1592 if (!gfc_is_coarray (atom) && !gfc_is_coindexed (atom))
1594 gfc_error ("ATOM argument at %L of the %s intrinsic function shall be a "
1595 "coarray or coindexed", &atom->where, gfc_current_intrinsic);
1596 return false;
1599 if (atom->ts.type != value->ts.type)
1601 gfc_error ("%qs argument of %qs intrinsic at %L shall have the same "
1602 "type as %qs at %L", gfc_current_intrinsic_arg[val_no]->name,
1603 gfc_current_intrinsic, &value->where,
1604 gfc_current_intrinsic_arg[atom_no]->name, &atom->where);
1605 return false;
1608 if (stat != NULL)
1610 if (!type_check (stat, stat_no, BT_INTEGER))
1611 return false;
1612 if (!scalar_check (stat, stat_no))
1613 return false;
1614 if (!variable_check (stat, stat_no, false))
1615 return false;
1616 if (!kind_value_check (stat, stat_no, gfc_default_integer_kind))
1617 return false;
1619 if (!gfc_notify_std (GFC_STD_F2018, "STAT= argument to %s at %L",
1620 gfc_current_intrinsic, &stat->where))
1621 return false;
1624 return true;
1628 bool
1629 gfc_check_atomic_def (gfc_expr *atom, gfc_expr *value, gfc_expr *stat)
1631 if (atom->expr_type == EXPR_FUNCTION
1632 && atom->value.function.isym
1633 && atom->value.function.isym->id == GFC_ISYM_CAF_GET)
1634 atom = atom->value.function.actual->expr;
1636 if (!gfc_check_vardef_context (atom, false, false, false, NULL))
1638 gfc_error ("ATOM argument of the %s intrinsic function at %L shall be "
1639 "definable", gfc_current_intrinsic, &atom->where);
1640 return false;
1643 return gfc_check_atomic (atom, 0, value, 1, stat, 2);
1647 bool
1648 gfc_check_atomic_op (gfc_expr *atom, gfc_expr *value, gfc_expr *stat)
1650 if (atom->ts.type != BT_INTEGER || atom->ts.kind != gfc_atomic_int_kind)
1652 gfc_error ("ATOM argument at %L to intrinsic function %s shall be an "
1653 "integer of ATOMIC_INT_KIND", &atom->where,
1654 gfc_current_intrinsic);
1655 return false;
1658 return gfc_check_atomic_def (atom, value, stat);
1662 bool
1663 gfc_check_atomic_ref (gfc_expr *value, gfc_expr *atom, gfc_expr *stat)
1665 if (atom->expr_type == EXPR_FUNCTION
1666 && atom->value.function.isym
1667 && atom->value.function.isym->id == GFC_ISYM_CAF_GET)
1668 atom = atom->value.function.actual->expr;
1670 if (!gfc_check_vardef_context (value, false, false, false, NULL))
1672 gfc_error ("VALUE argument of the %s intrinsic function at %L shall be "
1673 "definable", gfc_current_intrinsic, &value->where);
1674 return false;
1677 return gfc_check_atomic (atom, 1, value, 0, stat, 2);
1681 bool
1682 gfc_check_image_status (gfc_expr *image, gfc_expr *team)
1684 /* IMAGE has to be a positive, scalar integer. */
1685 if (!type_check (image, 0, BT_INTEGER) || !scalar_check (image, 0)
1686 || !positive_check (0, image))
1687 return false;
1689 if (team)
1691 gfc_error ("%qs argument of %qs intrinsic at %L not yet supported",
1692 gfc_current_intrinsic_arg[1]->name, gfc_current_intrinsic,
1693 &team->where);
1694 return false;
1696 return true;
1700 bool
1701 gfc_check_failed_or_stopped_images (gfc_expr *team, gfc_expr *kind)
1703 if (team)
1705 gfc_error ("%qs argument of %qs intrinsic at %L not yet supported",
1706 gfc_current_intrinsic_arg[0]->name, gfc_current_intrinsic,
1707 &team->where);
1708 return false;
1711 if (kind)
1713 int k;
1715 if (!type_check (kind, 1, BT_INTEGER) || !scalar_check (kind, 1)
1716 || !positive_check (1, kind))
1717 return false;
1719 /* Get the kind, reporting error on non-constant or overflow. */
1720 gfc_current_locus = kind->where;
1721 if (gfc_extract_int (kind, &k, 1))
1722 return false;
1723 if (gfc_validate_kind (BT_INTEGER, k, true) == -1)
1725 gfc_error ("%qs argument of %qs intrinsic at %L shall specify a "
1726 "valid integer kind", gfc_current_intrinsic_arg[1]->name,
1727 gfc_current_intrinsic, &kind->where);
1728 return false;
1731 return true;
1735 bool
1736 gfc_check_get_team (gfc_expr *level)
1738 if (level)
1740 gfc_error ("%qs argument of %qs intrinsic at %L not yet supported",
1741 gfc_current_intrinsic_arg[0]->name, gfc_current_intrinsic,
1742 &level->where);
1743 return false;
1745 return true;
1749 bool
1750 gfc_check_atomic_cas (gfc_expr *atom, gfc_expr *old, gfc_expr *compare,
1751 gfc_expr *new_val, gfc_expr *stat)
1753 if (atom->expr_type == EXPR_FUNCTION
1754 && atom->value.function.isym
1755 && atom->value.function.isym->id == GFC_ISYM_CAF_GET)
1756 atom = atom->value.function.actual->expr;
1758 if (!gfc_check_atomic (atom, 0, new_val, 3, stat, 4))
1759 return false;
1761 if (!scalar_check (old, 1) || !scalar_check (compare, 2))
1762 return false;
1764 if (!same_type_check (atom, 0, old, 1))
1765 return false;
1767 if (!same_type_check (atom, 0, compare, 2))
1768 return false;
1770 if (!gfc_check_vardef_context (atom, false, false, false, NULL))
1772 gfc_error ("ATOM argument of the %s intrinsic function at %L shall be "
1773 "definable", gfc_current_intrinsic, &atom->where);
1774 return false;
1777 if (!gfc_check_vardef_context (old, false, false, false, NULL))
1779 gfc_error ("OLD argument of the %s intrinsic function at %L shall be "
1780 "definable", gfc_current_intrinsic, &old->where);
1781 return false;
1784 return true;
1787 bool
1788 gfc_check_event_query (gfc_expr *event, gfc_expr *count, gfc_expr *stat)
1790 if (event->ts.type != BT_DERIVED
1791 || event->ts.u.derived->from_intmod != INTMOD_ISO_FORTRAN_ENV
1792 || event->ts.u.derived->intmod_sym_id != ISOFORTRAN_EVENT_TYPE)
1794 gfc_error ("EVENT argument at %L to the intrinsic EVENT_QUERY "
1795 "shall be of type EVENT_TYPE", &event->where);
1796 return false;
1799 if (!scalar_check (event, 0))
1800 return false;
1802 if (!gfc_check_vardef_context (count, false, false, false, NULL))
1804 gfc_error ("COUNT argument of the EVENT_QUERY intrinsic function at %L "
1805 "shall be definable", &count->where);
1806 return false;
1809 if (!type_check (count, 1, BT_INTEGER))
1810 return false;
1812 int i = gfc_validate_kind (BT_INTEGER, count->ts.kind, false);
1813 int j = gfc_validate_kind (BT_INTEGER, gfc_default_integer_kind, false);
1815 if (gfc_integer_kinds[i].range < gfc_integer_kinds[j].range)
1817 gfc_error ("COUNT argument of the EVENT_QUERY intrinsic function at %L "
1818 "shall have at least the range of the default integer",
1819 &count->where);
1820 return false;
1823 if (stat != NULL)
1825 if (!type_check (stat, 2, BT_INTEGER))
1826 return false;
1827 if (!scalar_check (stat, 2))
1828 return false;
1829 if (!variable_check (stat, 2, false))
1830 return false;
1832 if (!gfc_notify_std (GFC_STD_F2018, "STAT= argument to %s at %L",
1833 gfc_current_intrinsic, &stat->where))
1834 return false;
1837 return true;
1841 bool
1842 gfc_check_atomic_fetch_op (gfc_expr *atom, gfc_expr *value, gfc_expr *old,
1843 gfc_expr *stat)
1845 if (atom->expr_type == EXPR_FUNCTION
1846 && atom->value.function.isym
1847 && atom->value.function.isym->id == GFC_ISYM_CAF_GET)
1848 atom = atom->value.function.actual->expr;
1850 if (atom->ts.type != BT_INTEGER || atom->ts.kind != gfc_atomic_int_kind)
1852 gfc_error ("ATOM argument at %L to intrinsic function %s shall be an "
1853 "integer of ATOMIC_INT_KIND", &atom->where,
1854 gfc_current_intrinsic);
1855 return false;
1858 if (!gfc_check_atomic (atom, 0, value, 1, stat, 3))
1859 return false;
1861 if (!scalar_check (old, 2))
1862 return false;
1864 if (!same_type_check (atom, 0, old, 2))
1865 return false;
1867 if (!gfc_check_vardef_context (atom, false, false, false, NULL))
1869 gfc_error ("ATOM argument of the %s intrinsic function at %L shall be "
1870 "definable", gfc_current_intrinsic, &atom->where);
1871 return false;
1874 if (!gfc_check_vardef_context (old, false, false, false, NULL))
1876 gfc_error ("OLD argument of the %s intrinsic function at %L shall be "
1877 "definable", gfc_current_intrinsic, &old->where);
1878 return false;
1881 return true;
1885 /* BESJN and BESYN functions. */
1887 bool
1888 gfc_check_besn (gfc_expr *n, gfc_expr *x)
1890 if (!type_check (n, 0, BT_INTEGER))
1891 return false;
1892 if (n->expr_type == EXPR_CONSTANT)
1894 int i;
1895 gfc_extract_int (n, &i);
1896 if (i < 0 && !gfc_notify_std (GFC_STD_GNU, "Negative argument "
1897 "N at %L", &n->where))
1898 return false;
1901 if (!type_check (x, 1, BT_REAL))
1902 return false;
1904 return true;
1908 /* Transformational version of the Bessel JN and YN functions. */
1910 bool
1911 gfc_check_bessel_n2 (gfc_expr *n1, gfc_expr *n2, gfc_expr *x)
1913 if (!type_check (n1, 0, BT_INTEGER))
1914 return false;
1915 if (!scalar_check (n1, 0))
1916 return false;
1917 if (!nonnegative_check ("N1", n1))
1918 return false;
1920 if (!type_check (n2, 1, BT_INTEGER))
1921 return false;
1922 if (!scalar_check (n2, 1))
1923 return false;
1924 if (!nonnegative_check ("N2", n2))
1925 return false;
1927 if (!type_check (x, 2, BT_REAL))
1928 return false;
1929 if (!scalar_check (x, 2))
1930 return false;
1932 return true;
1936 bool
1937 gfc_check_bge_bgt_ble_blt (gfc_expr *i, gfc_expr *j)
1939 extern int gfc_max_integer_kind;
1941 /* If i and j are both BOZ, convert to widest INTEGER. */
1942 if (i->ts.type == BT_BOZ && j->ts.type == BT_BOZ)
1944 if (!gfc_boz2int (i, gfc_max_integer_kind))
1945 return false;
1946 if (!gfc_boz2int (j, gfc_max_integer_kind))
1947 return false;
1950 /* If i is BOZ and j is integer, convert i to type of j. */
1951 if (i->ts.type == BT_BOZ && j->ts.type == BT_INTEGER
1952 && !gfc_boz2int (i, j->ts.kind))
1953 return false;
1955 /* If j is BOZ and i is integer, convert j to type of i. */
1956 if (j->ts.type == BT_BOZ && i->ts.type == BT_INTEGER
1957 && !gfc_boz2int (j, i->ts.kind))
1958 return false;
1960 if (!type_check (i, 0, BT_INTEGER))
1961 return false;
1963 if (!type_check (j, 1, BT_INTEGER))
1964 return false;
1966 return true;
1970 bool
1971 gfc_check_bitfcn (gfc_expr *i, gfc_expr *pos)
1973 if (!type_check (i, 0, BT_INTEGER))
1974 return false;
1976 if (!type_check (pos, 1, BT_INTEGER))
1977 return false;
1979 if (!nonnegative_check ("pos", pos))
1980 return false;
1982 if (!less_than_bitsize1 ("i", i, "pos", pos, false))
1983 return false;
1985 return true;
1989 bool
1990 gfc_check_char (gfc_expr *i, gfc_expr *kind)
1992 if (i->ts.type == BT_BOZ)
1994 if (gfc_invalid_boz (G_("BOZ literal constant at %L cannot appear in "
1995 "CHAR intrinsic subprogram"), &i->where))
1996 return false;
1998 if (!gfc_boz2int (i, gfc_default_integer_kind))
1999 return false;
2002 if (!type_check (i, 0, BT_INTEGER))
2003 return false;
2005 if (!kind_check (kind, 1, BT_CHARACTER))
2006 return false;
2008 return true;
2012 bool
2013 gfc_check_chdir (gfc_expr *dir)
2015 if (!type_check (dir, 0, BT_CHARACTER))
2016 return false;
2017 if (!kind_value_check (dir, 0, gfc_default_character_kind))
2018 return false;
2020 return true;
2024 bool
2025 gfc_check_chdir_sub (gfc_expr *dir, gfc_expr *status)
2027 if (!type_check (dir, 0, BT_CHARACTER))
2028 return false;
2029 if (!kind_value_check (dir, 0, gfc_default_character_kind))
2030 return false;
2032 if (status == NULL)
2033 return true;
2035 if (!type_check (status, 1, BT_INTEGER))
2036 return false;
2037 if (!scalar_check (status, 1))
2038 return false;
2040 return true;
2044 bool
2045 gfc_check_chmod (gfc_expr *name, gfc_expr *mode)
2047 if (!type_check (name, 0, BT_CHARACTER))
2048 return false;
2049 if (!kind_value_check (name, 0, gfc_default_character_kind))
2050 return false;
2052 if (!type_check (mode, 1, BT_CHARACTER))
2053 return false;
2054 if (!kind_value_check (mode, 1, gfc_default_character_kind))
2055 return false;
2057 return true;
2061 bool
2062 gfc_check_chmod_sub (gfc_expr *name, gfc_expr *mode, gfc_expr *status)
2064 if (!type_check (name, 0, BT_CHARACTER))
2065 return false;
2066 if (!kind_value_check (name, 0, gfc_default_character_kind))
2067 return false;
2069 if (!type_check (mode, 1, BT_CHARACTER))
2070 return false;
2071 if (!kind_value_check (mode, 1, gfc_default_character_kind))
2072 return false;
2074 if (status == NULL)
2075 return true;
2077 if (!type_check (status, 2, BT_INTEGER))
2078 return false;
2080 if (!scalar_check (status, 2))
2081 return false;
2083 return true;
2087 bool
2088 gfc_check_cmplx (gfc_expr *x, gfc_expr *y, gfc_expr *kind)
2090 int k;
2092 /* Check kind first, because it may be needed in conversion of a BOZ. */
2093 if (kind)
2095 if (!kind_check (kind, 2, BT_COMPLEX))
2096 return false;
2097 gfc_extract_int (kind, &k);
2099 else
2100 k = gfc_default_complex_kind;
2102 if (x->ts.type == BT_BOZ && !gfc_boz2real (x, k))
2103 return false;
2105 if (!numeric_check (x, 0))
2106 return false;
2108 if (y != NULL)
2110 if (y->ts.type == BT_BOZ && !gfc_boz2real (y, k))
2111 return false;
2113 if (!numeric_check (y, 1))
2114 return false;
2116 if (x->ts.type == BT_COMPLEX)
2118 gfc_error ("%qs argument of %qs intrinsic at %L must not be "
2119 "present if %<x%> is COMPLEX",
2120 gfc_current_intrinsic_arg[1]->name, gfc_current_intrinsic,
2121 &y->where);
2122 return false;
2125 if (y->ts.type == BT_COMPLEX)
2127 gfc_error ("%qs argument of %qs intrinsic at %L must have a type "
2128 "of either REAL or INTEGER",
2129 gfc_current_intrinsic_arg[1]->name, gfc_current_intrinsic,
2130 &y->where);
2131 return false;
2135 if (!kind && warn_conversion
2136 && x->ts.type == BT_REAL && x->ts.kind > gfc_default_real_kind)
2137 gfc_warning_now (OPT_Wconversion, "Conversion from %s to default-kind "
2138 "COMPLEX(%d) at %L might lose precision, consider using "
2139 "the KIND argument", gfc_typename (&x->ts),
2140 gfc_default_real_kind, &x->where);
2141 else if (y && !kind && warn_conversion
2142 && y->ts.type == BT_REAL && y->ts.kind > gfc_default_real_kind)
2143 gfc_warning_now (OPT_Wconversion, "Conversion from %s to default-kind "
2144 "COMPLEX(%d) at %L might lose precision, consider using "
2145 "the KIND argument", gfc_typename (&y->ts),
2146 gfc_default_real_kind, &y->where);
2147 return true;
2151 static bool
2152 check_co_collective (gfc_expr *a, gfc_expr *image_idx, gfc_expr *stat,
2153 gfc_expr *errmsg, bool co_reduce)
2155 if (!variable_check (a, 0, false))
2156 return false;
2158 if (!gfc_check_vardef_context (a, false, false, false, "argument 'A' with "
2159 "INTENT(INOUT)"))
2160 return false;
2162 /* Fortran 2008, 12.5.2.4, paragraph 18. */
2163 if (gfc_has_vector_subscript (a))
2165 gfc_error ("Argument %<A%> with INTENT(INOUT) at %L of the intrinsic "
2166 "subroutine %s shall not have a vector subscript",
2167 &a->where, gfc_current_intrinsic);
2168 return false;
2171 if (gfc_is_coindexed (a))
2173 gfc_error ("The A argument at %L to the intrinsic %s shall not be "
2174 "coindexed", &a->where, gfc_current_intrinsic);
2175 return false;
2178 if (image_idx != NULL)
2180 if (!type_check (image_idx, co_reduce ? 2 : 1, BT_INTEGER))
2181 return false;
2182 if (!scalar_check (image_idx, co_reduce ? 2 : 1))
2183 return false;
2186 if (stat != NULL)
2188 if (!type_check (stat, co_reduce ? 3 : 2, BT_INTEGER))
2189 return false;
2190 if (!scalar_check (stat, co_reduce ? 3 : 2))
2191 return false;
2192 if (!variable_check (stat, co_reduce ? 3 : 2, false))
2193 return false;
2194 if (stat->ts.kind != 4)
2196 gfc_error ("The stat= argument at %L must be a kind=4 integer "
2197 "variable", &stat->where);
2198 return false;
2202 if (errmsg != NULL)
2204 if (!type_check (errmsg, co_reduce ? 4 : 3, BT_CHARACTER))
2205 return false;
2206 if (!scalar_check (errmsg, co_reduce ? 4 : 3))
2207 return false;
2208 if (!variable_check (errmsg, co_reduce ? 4 : 3, false))
2209 return false;
2210 if (errmsg->ts.kind != 1)
2212 gfc_error ("The errmsg= argument at %L must be a default-kind "
2213 "character variable", &errmsg->where);
2214 return false;
2218 if (flag_coarray == GFC_FCOARRAY_NONE)
2220 gfc_fatal_error ("Coarrays disabled at %L, use %<-fcoarray=%> to enable",
2221 &a->where);
2222 return false;
2225 return true;
2229 bool
2230 gfc_check_co_broadcast (gfc_expr *a, gfc_expr *source_image, gfc_expr *stat,
2231 gfc_expr *errmsg)
2233 if (a->ts.type == BT_CLASS || gfc_expr_attr (a).alloc_comp)
2235 gfc_error ("Support for the A argument at %L which is polymorphic A "
2236 "argument or has allocatable components is not yet "
2237 "implemented", &a->where);
2238 return false;
2240 return check_co_collective (a, source_image, stat, errmsg, false);
2244 bool
2245 gfc_check_co_reduce (gfc_expr *a, gfc_expr *op, gfc_expr *result_image,
2246 gfc_expr *stat, gfc_expr *errmsg)
2248 symbol_attribute attr;
2249 gfc_formal_arglist *formal;
2250 gfc_symbol *sym;
2252 if (a->ts.type == BT_CLASS)
2254 gfc_error ("The A argument at %L of CO_REDUCE shall not be polymorphic",
2255 &a->where);
2256 return false;
2259 if (gfc_expr_attr (a).alloc_comp)
2261 gfc_error ("Support for the A argument at %L with allocatable components"
2262 " is not yet implemented", &a->where);
2263 return false;
2266 if (!check_co_collective (a, result_image, stat, errmsg, true))
2267 return false;
2269 if (!gfc_resolve_expr (op))
2270 return false;
2272 attr = gfc_expr_attr (op);
2273 if (!attr.pure || !attr.function)
2275 gfc_error ("OPERATION argument at %L must be a PURE function",
2276 &op->where);
2277 return false;
2280 if (attr.intrinsic)
2282 /* None of the intrinsics fulfills the criteria of taking two arguments,
2283 returning the same type and kind as the arguments and being permitted
2284 as actual argument. */
2285 gfc_error ("Intrinsic function %s at %L is not permitted for CO_REDUCE",
2286 op->symtree->n.sym->name, &op->where);
2287 return false;
2290 if (gfc_is_proc_ptr_comp (op))
2292 gfc_component *comp = gfc_get_proc_ptr_comp (op);
2293 sym = comp->ts.interface;
2295 else
2296 sym = op->symtree->n.sym;
2298 formal = sym->formal;
2300 if (!formal || !formal->next || formal->next->next)
2302 gfc_error ("The function passed as OPERATION at %L shall have two "
2303 "arguments", &op->where);
2304 return false;
2307 if (sym->result->ts.type == BT_UNKNOWN)
2308 gfc_set_default_type (sym->result, 0, NULL);
2310 if (!gfc_compare_types (&a->ts, &sym->result->ts))
2312 gfc_error ("The A argument at %L has type %s but the function passed as "
2313 "OPERATION at %L returns %s",
2314 &a->where, gfc_typename (a), &op->where,
2315 gfc_typename (&sym->result->ts));
2316 return false;
2318 if (!gfc_compare_types (&a->ts, &formal->sym->ts)
2319 || !gfc_compare_types (&a->ts, &formal->next->sym->ts))
2321 gfc_error ("The function passed as OPERATION at %L has arguments of type "
2322 "%s and %s but shall have type %s", &op->where,
2323 gfc_typename (&formal->sym->ts),
2324 gfc_typename (&formal->next->sym->ts), gfc_typename (a));
2325 return false;
2327 if (op->rank || attr.allocatable || attr.pointer || formal->sym->as
2328 || formal->next->sym->as || formal->sym->attr.allocatable
2329 || formal->next->sym->attr.allocatable || formal->sym->attr.pointer
2330 || formal->next->sym->attr.pointer)
2332 gfc_error ("The function passed as OPERATION at %L shall have scalar "
2333 "nonallocatable nonpointer arguments and return a "
2334 "nonallocatable nonpointer scalar", &op->where);
2335 return false;
2338 if (formal->sym->attr.value != formal->next->sym->attr.value)
2340 gfc_error ("The function passed as OPERATION at %L shall have the VALUE "
2341 "attribute either for none or both arguments", &op->where);
2342 return false;
2345 if (formal->sym->attr.target != formal->next->sym->attr.target)
2347 gfc_error ("The function passed as OPERATION at %L shall have the TARGET "
2348 "attribute either for none or both arguments", &op->where);
2349 return false;
2352 if (formal->sym->attr.asynchronous != formal->next->sym->attr.asynchronous)
2354 gfc_error ("The function passed as OPERATION at %L shall have the "
2355 "ASYNCHRONOUS attribute either for none or both arguments",
2356 &op->where);
2357 return false;
2360 if (formal->sym->attr.optional || formal->next->sym->attr.optional)
2362 gfc_error ("The function passed as OPERATION at %L shall not have the "
2363 "OPTIONAL attribute for either of the arguments", &op->where);
2364 return false;
2367 if (a->ts.type == BT_CHARACTER)
2369 gfc_charlen *cl;
2370 unsigned long actual_size, formal_size1, formal_size2, result_size;
2372 cl = a->ts.u.cl;
2373 actual_size = cl && cl->length && cl->length->expr_type == EXPR_CONSTANT
2374 ? mpz_get_ui (cl->length->value.integer) : 0;
2376 cl = formal->sym->ts.u.cl;
2377 formal_size1 = cl && cl->length && cl->length->expr_type == EXPR_CONSTANT
2378 ? mpz_get_ui (cl->length->value.integer) : 0;
2380 cl = formal->next->sym->ts.u.cl;
2381 formal_size2 = cl && cl->length && cl->length->expr_type == EXPR_CONSTANT
2382 ? mpz_get_ui (cl->length->value.integer) : 0;
2384 cl = sym->ts.u.cl;
2385 result_size = cl && cl->length && cl->length->expr_type == EXPR_CONSTANT
2386 ? mpz_get_ui (cl->length->value.integer) : 0;
2388 if (actual_size
2389 && ((formal_size1 && actual_size != formal_size1)
2390 || (formal_size2 && actual_size != formal_size2)))
2392 gfc_error ("The character length of the A argument at %L and of the "
2393 "arguments of the OPERATION at %L shall be the same",
2394 &a->where, &op->where);
2395 return false;
2397 if (actual_size && result_size && actual_size != result_size)
2399 gfc_error ("The character length of the A argument at %L and of the "
2400 "function result of the OPERATION at %L shall be the same",
2401 &a->where, &op->where);
2402 return false;
2406 return true;
2410 bool
2411 gfc_check_co_minmax (gfc_expr *a, gfc_expr *result_image, gfc_expr *stat,
2412 gfc_expr *errmsg)
2414 if (a->ts.type != BT_INTEGER && a->ts.type != BT_REAL
2415 && a->ts.type != BT_CHARACTER)
2417 gfc_error ("%qs argument of %qs intrinsic at %L shall be of type "
2418 "integer, real or character",
2419 gfc_current_intrinsic_arg[0]->name, gfc_current_intrinsic,
2420 &a->where);
2421 return false;
2423 return check_co_collective (a, result_image, stat, errmsg, false);
2427 bool
2428 gfc_check_co_sum (gfc_expr *a, gfc_expr *result_image, gfc_expr *stat,
2429 gfc_expr *errmsg)
2431 if (!numeric_check (a, 0))
2432 return false;
2433 return check_co_collective (a, result_image, stat, errmsg, false);
2437 bool
2438 gfc_check_complex (gfc_expr *x, gfc_expr *y)
2440 if (!boz_args_check (x, y))
2441 return false;
2443 if (x->ts.type == BT_BOZ)
2445 if (gfc_invalid_boz (G_("BOZ constant at %L cannot appear in the COMPLEX"
2446 " intrinsic subprogram"), &x->where))
2448 reset_boz (x);
2449 return false;
2451 if (y->ts.type == BT_INTEGER && !gfc_boz2int (x, y->ts.kind))
2452 return false;
2453 if (y->ts.type == BT_REAL && !gfc_boz2real (x, y->ts.kind))
2454 return false;
2457 if (y->ts.type == BT_BOZ)
2459 if (gfc_invalid_boz (G_("BOZ constant at %L cannot appear in the COMPLEX"
2460 " intrinsic subprogram"), &y->where))
2462 reset_boz (y);
2463 return false;
2465 if (x->ts.type == BT_INTEGER && !gfc_boz2int (y, x->ts.kind))
2466 return false;
2467 if (x->ts.type == BT_REAL && !gfc_boz2real (y, x->ts.kind))
2468 return false;
2471 if (!int_or_real_check (x, 0))
2472 return false;
2473 if (!scalar_check (x, 0))
2474 return false;
2476 if (!int_or_real_check (y, 1))
2477 return false;
2478 if (!scalar_check (y, 1))
2479 return false;
2481 return true;
2485 bool
2486 gfc_check_count (gfc_expr *mask, gfc_expr *dim, gfc_expr *kind)
2488 if (!logical_array_check (mask, 0))
2489 return false;
2490 if (!dim_check (dim, 1, false))
2491 return false;
2492 if (!dim_rank_check (dim, mask, 0))
2493 return false;
2494 if (!kind_check (kind, 2, BT_INTEGER))
2495 return false;
2496 if (kind && !gfc_notify_std (GFC_STD_F2003, "%qs intrinsic "
2497 "with KIND argument at %L",
2498 gfc_current_intrinsic, &kind->where))
2499 return false;
2501 return true;
2505 bool
2506 gfc_check_cshift (gfc_expr *array, gfc_expr *shift, gfc_expr *dim)
2508 if (!array_check (array, 0))
2509 return false;
2511 if (!type_check (shift, 1, BT_INTEGER))
2512 return false;
2514 if (!dim_check (dim, 2, true))
2515 return false;
2517 if (!dim_rank_check (dim, array, false))
2518 return false;
2520 if (array->rank == 1 || shift->rank == 0)
2522 if (!scalar_check (shift, 1))
2523 return false;
2525 else if (shift->rank == array->rank - 1)
2527 int d;
2528 if (!dim)
2529 d = 1;
2530 else if (dim->expr_type == EXPR_CONSTANT)
2531 gfc_extract_int (dim, &d);
2532 else
2533 d = -1;
2535 if (d > 0)
2537 int i, j;
2538 for (i = 0, j = 0; i < array->rank; i++)
2539 if (i != d - 1)
2541 if (!identical_dimen_shape (array, i, shift, j))
2543 gfc_error ("%qs argument of %qs intrinsic at %L has "
2544 "invalid shape in dimension %d (%ld/%ld)",
2545 gfc_current_intrinsic_arg[1]->name,
2546 gfc_current_intrinsic, &shift->where, i + 1,
2547 mpz_get_si (array->shape[i]),
2548 mpz_get_si (shift->shape[j]));
2549 return false;
2552 j += 1;
2556 else
2558 gfc_error ("%qs argument of intrinsic %qs at %L of must have rank "
2559 "%d or be a scalar", gfc_current_intrinsic_arg[1]->name,
2560 gfc_current_intrinsic, &shift->where, array->rank - 1);
2561 return false;
2564 return true;
2568 bool
2569 gfc_check_ctime (gfc_expr *time)
2571 if (!scalar_check (time, 0))
2572 return false;
2574 if (!type_check (time, 0, BT_INTEGER))
2575 return false;
2577 return true;
2581 bool gfc_check_datan2 (gfc_expr *y, gfc_expr *x)
2583 if (!double_check (y, 0) || !double_check (x, 1))
2584 return false;
2586 return true;
2589 bool
2590 gfc_check_dcmplx (gfc_expr *x, gfc_expr *y)
2592 if (x->ts.type == BT_BOZ && !gfc_boz2real (x, gfc_default_double_kind))
2593 return false;
2595 if (!numeric_check (x, 0))
2596 return false;
2598 if (y != NULL)
2600 if (y->ts.type == BT_BOZ && !gfc_boz2real (y, gfc_default_double_kind))
2601 return false;
2603 if (!numeric_check (y, 1))
2604 return false;
2606 if (x->ts.type == BT_COMPLEX)
2608 gfc_error ("%qs argument of %qs intrinsic at %L must not be "
2609 "present if %<x%> is COMPLEX",
2610 gfc_current_intrinsic_arg[1]->name, gfc_current_intrinsic,
2611 &y->where);
2612 return false;
2615 if (y->ts.type == BT_COMPLEX)
2617 gfc_error ("%qs argument of %qs intrinsic at %L must have a type "
2618 "of either REAL or INTEGER",
2619 gfc_current_intrinsic_arg[1]->name, gfc_current_intrinsic,
2620 &y->where);
2621 return false;
2625 return true;
2629 bool
2630 gfc_check_dble (gfc_expr *x)
2632 if (x->ts.type == BT_BOZ && !gfc_boz2real (x, gfc_default_double_kind))
2633 return false;
2635 if (!numeric_check (x, 0))
2636 return false;
2638 return true;
2642 bool
2643 gfc_check_digits (gfc_expr *x)
2645 if (!int_or_real_check (x, 0))
2646 return false;
2648 return true;
2652 bool
2653 gfc_check_dot_product (gfc_expr *vector_a, gfc_expr *vector_b)
2655 switch (vector_a->ts.type)
2657 case BT_LOGICAL:
2658 if (!type_check (vector_b, 1, BT_LOGICAL))
2659 return false;
2660 break;
2662 case BT_INTEGER:
2663 case BT_REAL:
2664 case BT_COMPLEX:
2665 if (!numeric_check (vector_b, 1))
2666 return false;
2667 break;
2669 default:
2670 gfc_error ("%qs argument of %qs intrinsic at %L must be numeric "
2671 "or LOGICAL", gfc_current_intrinsic_arg[0]->name,
2672 gfc_current_intrinsic, &vector_a->where);
2673 return false;
2676 if (!rank_check (vector_a, 0, 1))
2677 return false;
2679 if (!rank_check (vector_b, 1, 1))
2680 return false;
2682 if (! identical_dimen_shape (vector_a, 0, vector_b, 0))
2684 gfc_error ("Different shape for arguments %qs and %qs at %L for "
2685 "intrinsic %<dot_product%>",
2686 gfc_current_intrinsic_arg[0]->name,
2687 gfc_current_intrinsic_arg[1]->name, &vector_a->where);
2688 return false;
2691 return true;
2695 bool
2696 gfc_check_dprod (gfc_expr *x, gfc_expr *y)
2698 if (!type_check (x, 0, BT_REAL)
2699 || !type_check (y, 1, BT_REAL))
2700 return false;
2702 if (x->ts.kind != gfc_default_real_kind)
2704 gfc_error ("%qs argument of %qs intrinsic at %L must be default "
2705 "real", gfc_current_intrinsic_arg[0]->name,
2706 gfc_current_intrinsic, &x->where);
2707 return false;
2710 if (y->ts.kind != gfc_default_real_kind)
2712 gfc_error ("%qs argument of %qs intrinsic at %L must be default "
2713 "real", gfc_current_intrinsic_arg[1]->name,
2714 gfc_current_intrinsic, &y->where);
2715 return false;
2718 return true;
2721 bool
2722 gfc_check_dshift (gfc_expr *i, gfc_expr *j, gfc_expr *shift)
2724 /* i and j cannot both be BOZ literal constants. */
2725 if (!boz_args_check (i, j))
2726 return false;
2728 /* If i is BOZ and j is integer, convert i to type of j. If j is not
2729 an integer, clear the BOZ; otherwise, check that i is an integer. */
2730 if (i->ts.type == BT_BOZ)
2732 if (j->ts.type != BT_INTEGER)
2733 reset_boz (i);
2734 else if (!gfc_boz2int (i, j->ts.kind))
2735 return false;
2737 else if (!type_check (i, 0, BT_INTEGER))
2739 if (j->ts.type == BT_BOZ)
2740 reset_boz (j);
2741 return false;
2744 /* If j is BOZ and i is integer, convert j to type of i. If i is not
2745 an integer, clear the BOZ; otherwise, check that i is an integer. */
2746 if (j->ts.type == BT_BOZ)
2748 if (i->ts.type != BT_INTEGER)
2749 reset_boz (j);
2750 else if (!gfc_boz2int (j, i->ts.kind))
2751 return false;
2753 else if (!type_check (j, 1, BT_INTEGER))
2754 return false;
2756 if (!same_type_check (i, 0, j, 1))
2757 return false;
2759 if (!type_check (shift, 2, BT_INTEGER))
2760 return false;
2762 if (!nonnegative_check ("SHIFT", shift))
2763 return false;
2765 if (!less_than_bitsize1 ("I", i, "SHIFT", shift, true))
2766 return false;
2768 return true;
2772 bool
2773 gfc_check_eoshift (gfc_expr *array, gfc_expr *shift, gfc_expr *boundary,
2774 gfc_expr *dim)
2776 int d;
2778 if (!array_check (array, 0))
2779 return false;
2781 if (!type_check (shift, 1, BT_INTEGER))
2782 return false;
2784 if (!dim_check (dim, 3, true))
2785 return false;
2787 if (!dim_rank_check (dim, array, false))
2788 return false;
2790 if (!dim)
2791 d = 1;
2792 else if (dim->expr_type == EXPR_CONSTANT)
2793 gfc_extract_int (dim, &d);
2794 else
2795 d = -1;
2797 if (array->rank == 1 || shift->rank == 0)
2799 if (!scalar_check (shift, 1))
2800 return false;
2802 else if (shift->rank == array->rank - 1)
2804 if (d > 0)
2806 int i, j;
2807 for (i = 0, j = 0; i < array->rank; i++)
2808 if (i != d - 1)
2810 if (!identical_dimen_shape (array, i, shift, j))
2812 gfc_error ("%qs argument of %qs intrinsic at %L has "
2813 "invalid shape in dimension %d (%ld/%ld)",
2814 gfc_current_intrinsic_arg[1]->name,
2815 gfc_current_intrinsic, &shift->where, i + 1,
2816 mpz_get_si (array->shape[i]),
2817 mpz_get_si (shift->shape[j]));
2818 return false;
2821 j += 1;
2825 else
2827 gfc_error ("%qs argument of intrinsic %qs at %L of must have rank "
2828 "%d or be a scalar", gfc_current_intrinsic_arg[1]->name,
2829 gfc_current_intrinsic, &shift->where, array->rank - 1);
2830 return false;
2833 if (boundary != NULL)
2835 if (!same_type_check (array, 0, boundary, 2))
2836 return false;
2838 /* Reject unequal string lengths and emit a better error message than
2839 gfc_check_same_strlen would. */
2840 if (array->ts.type == BT_CHARACTER)
2842 ssize_t len_a, len_b;
2844 len_a = gfc_var_strlen (array);
2845 len_b = gfc_var_strlen (boundary);
2846 if (len_a != -1 && len_b != -1 && len_a != len_b)
2848 gfc_error ("%qs must be of same type and kind as %qs at %L in %qs",
2849 gfc_current_intrinsic_arg[2]->name,
2850 gfc_current_intrinsic_arg[0]->name,
2851 &boundary->where, gfc_current_intrinsic);
2852 return false;
2856 if (array->rank == 1 || boundary->rank == 0)
2858 if (!scalar_check (boundary, 2))
2859 return false;
2861 else if (boundary->rank == array->rank - 1)
2863 if (d > 0)
2865 int i,j;
2866 for (i = 0, j = 0; i < array->rank; i++)
2868 if (i != d - 1)
2870 if (!identical_dimen_shape (array, i, boundary, j))
2872 gfc_error ("%qs argument of %qs intrinsic at %L has "
2873 "invalid shape in dimension %d (%ld/%ld)",
2874 gfc_current_intrinsic_arg[2]->name,
2875 gfc_current_intrinsic, &shift->where, i+1,
2876 mpz_get_si (array->shape[i]),
2877 mpz_get_si (boundary->shape[j]));
2878 return false;
2880 j += 1;
2885 else
2887 gfc_error ("%qs argument of intrinsic %qs at %L of must have "
2888 "rank %d or be a scalar",
2889 gfc_current_intrinsic_arg[1]->name, gfc_current_intrinsic,
2890 &shift->where, array->rank - 1);
2891 return false;
2894 else
2896 switch (array->ts.type)
2898 case BT_INTEGER:
2899 case BT_LOGICAL:
2900 case BT_REAL:
2901 case BT_COMPLEX:
2902 case BT_CHARACTER:
2903 break;
2905 default:
2906 gfc_error ("Missing %qs argument to %qs intrinsic at %L for %qs "
2907 "of type %qs", gfc_current_intrinsic_arg[2]->name,
2908 gfc_current_intrinsic, &array->where,
2909 gfc_current_intrinsic_arg[0]->name,
2910 gfc_typename (array));
2911 return false;
2915 return true;
2919 bool
2920 gfc_check_float (gfc_expr *a)
2922 if (a->ts.type == BT_BOZ)
2924 if (gfc_invalid_boz (G_("BOZ literal constant at %L cannot appear in the"
2925 " FLOAT intrinsic subprogram"), &a->where))
2927 reset_boz (a);
2928 return false;
2930 if (!gfc_boz2int (a, gfc_default_integer_kind))
2931 return false;
2934 if (!type_check (a, 0, BT_INTEGER))
2935 return false;
2937 if ((a->ts.kind != gfc_default_integer_kind)
2938 && !gfc_notify_std (GFC_STD_GNU, "non-default INTEGER "
2939 "kind argument to %s intrinsic at %L",
2940 gfc_current_intrinsic, &a->where))
2941 return false;
2943 return true;
2946 /* A single complex argument. */
2948 bool
2949 gfc_check_fn_c (gfc_expr *a)
2951 if (!type_check (a, 0, BT_COMPLEX))
2952 return false;
2954 return true;
2958 /* A single real argument. */
2960 bool
2961 gfc_check_fn_r (gfc_expr *a)
2963 if (!type_check (a, 0, BT_REAL))
2964 return false;
2966 return true;
2969 /* A single double argument. */
2971 bool
2972 gfc_check_fn_d (gfc_expr *a)
2974 if (!double_check (a, 0))
2975 return false;
2977 return true;
2980 /* A single real or complex argument. */
2982 bool
2983 gfc_check_fn_rc (gfc_expr *a)
2985 if (!real_or_complex_check (a, 0))
2986 return false;
2988 return true;
2992 bool
2993 gfc_check_fn_rc2008 (gfc_expr *a)
2995 if (!real_or_complex_check (a, 0))
2996 return false;
2998 if (a->ts.type == BT_COMPLEX
2999 && !gfc_notify_std (GFC_STD_F2008, "COMPLEX argument %qs "
3000 "of %qs intrinsic at %L",
3001 gfc_current_intrinsic_arg[0]->name,
3002 gfc_current_intrinsic, &a->where))
3003 return false;
3005 return true;
3009 bool
3010 gfc_check_fnum (gfc_expr *unit)
3012 if (!type_check (unit, 0, BT_INTEGER))
3013 return false;
3015 if (!scalar_check (unit, 0))
3016 return false;
3018 return true;
3022 bool
3023 gfc_check_huge (gfc_expr *x)
3025 if (!int_or_real_check (x, 0))
3026 return false;
3028 return true;
3032 bool
3033 gfc_check_hypot (gfc_expr *x, gfc_expr *y)
3035 if (!type_check (x, 0, BT_REAL))
3036 return false;
3037 if (!same_type_check (x, 0, y, 1))
3038 return false;
3040 return true;
3044 /* Check that the single argument is an integer. */
3046 bool
3047 gfc_check_i (gfc_expr *i)
3049 if (!type_check (i, 0, BT_INTEGER))
3050 return false;
3052 return true;
3056 bool
3057 gfc_check_iand_ieor_ior (gfc_expr *i, gfc_expr *j)
3059 /* i and j cannot both be BOZ literal constants. */
3060 if (!boz_args_check (i, j))
3061 return false;
3063 /* If i is BOZ and j is integer, convert i to type of j. */
3064 if (i->ts.type == BT_BOZ && j->ts.type == BT_INTEGER
3065 && !gfc_boz2int (i, j->ts.kind))
3066 return false;
3068 /* If j is BOZ and i is integer, convert j to type of i. */
3069 if (j->ts.type == BT_BOZ && i->ts.type == BT_INTEGER
3070 && !gfc_boz2int (j, i->ts.kind))
3071 return false;
3073 if (!type_check (i, 0, BT_INTEGER))
3074 return false;
3076 if (!type_check (j, 1, BT_INTEGER))
3077 return false;
3079 if (i->ts.kind != j->ts.kind)
3081 gfc_error ("Arguments of %qs have different kind type parameters "
3082 "at %L", gfc_current_intrinsic, &i->where);
3083 return false;
3086 return true;
3090 bool
3091 gfc_check_ibits (gfc_expr *i, gfc_expr *pos, gfc_expr *len)
3093 if (!type_check (i, 0, BT_INTEGER))
3094 return false;
3096 if (!type_check (pos, 1, BT_INTEGER))
3097 return false;
3099 if (!type_check (len, 2, BT_INTEGER))
3100 return false;
3102 if (!nonnegative_check ("pos", pos))
3103 return false;
3105 if (!nonnegative_check ("len", len))
3106 return false;
3108 if (!less_than_bitsize2 ("i", i, "pos", pos, "len", len))
3109 return false;
3111 return true;
3115 bool
3116 gfc_check_ichar_iachar (gfc_expr *c, gfc_expr *kind)
3118 int i;
3120 if (!type_check (c, 0, BT_CHARACTER))
3121 return false;
3123 if (!kind_check (kind, 1, BT_INTEGER))
3124 return false;
3126 if (kind && !gfc_notify_std (GFC_STD_F2003, "%qs intrinsic "
3127 "with KIND argument at %L",
3128 gfc_current_intrinsic, &kind->where))
3129 return false;
3131 if (c->expr_type == EXPR_VARIABLE || c->expr_type == EXPR_SUBSTRING)
3133 gfc_expr *start;
3134 gfc_expr *end;
3135 gfc_ref *ref;
3137 /* Substring references don't have the charlength set. */
3138 ref = c->ref;
3139 while (ref && ref->type != REF_SUBSTRING)
3140 ref = ref->next;
3142 gcc_assert (ref == NULL || ref->type == REF_SUBSTRING);
3144 if (!ref)
3146 /* Check that the argument is length one. Non-constant lengths
3147 can't be checked here, so assume they are ok. */
3148 if (c->ts.u.cl && c->ts.u.cl->length)
3150 /* If we already have a length for this expression then use it. */
3151 if (c->ts.u.cl->length->expr_type != EXPR_CONSTANT)
3152 return true;
3153 i = mpz_get_si (c->ts.u.cl->length->value.integer);
3155 else
3156 return true;
3158 else
3160 start = ref->u.ss.start;
3161 end = ref->u.ss.end;
3163 gcc_assert (start);
3164 if (end == NULL || end->expr_type != EXPR_CONSTANT
3165 || start->expr_type != EXPR_CONSTANT)
3166 return true;
3168 i = mpz_get_si (end->value.integer) + 1
3169 - mpz_get_si (start->value.integer);
3172 else
3173 return true;
3175 if (i != 1)
3177 gfc_error ("Argument of %s at %L must be of length one",
3178 gfc_current_intrinsic, &c->where);
3179 return false;
3182 return true;
3186 bool
3187 gfc_check_idnint (gfc_expr *a)
3189 if (!double_check (a, 0))
3190 return false;
3192 return true;
3196 bool
3197 gfc_check_index (gfc_expr *string, gfc_expr *substring, gfc_expr *back,
3198 gfc_expr *kind)
3200 if (!type_check (string, 0, BT_CHARACTER)
3201 || !type_check (substring, 1, BT_CHARACTER))
3202 return false;
3204 if (back != NULL && !type_check (back, 2, BT_LOGICAL))
3205 return false;
3207 if (!kind_check (kind, 3, BT_INTEGER))
3208 return false;
3209 if (kind && !gfc_notify_std (GFC_STD_F2003, "%qs intrinsic "
3210 "with KIND argument at %L",
3211 gfc_current_intrinsic, &kind->where))
3212 return false;
3214 if (string->ts.kind != substring->ts.kind)
3216 gfc_error ("%qs argument of %qs intrinsic at %L must be the same "
3217 "kind as %qs", gfc_current_intrinsic_arg[1]->name,
3218 gfc_current_intrinsic, &substring->where,
3219 gfc_current_intrinsic_arg[0]->name);
3220 return false;
3223 return true;
3227 bool
3228 gfc_check_int (gfc_expr *x, gfc_expr *kind)
3230 /* BOZ is dealt within simplify_int*. */
3231 if (x->ts.type == BT_BOZ)
3232 return true;
3234 if (!numeric_check (x, 0))
3235 return false;
3237 if (!kind_check (kind, 1, BT_INTEGER))
3238 return false;
3240 return true;
3244 bool
3245 gfc_check_intconv (gfc_expr *x)
3247 if (strcmp (gfc_current_intrinsic, "short") == 0
3248 || strcmp (gfc_current_intrinsic, "long") == 0)
3250 gfc_error ("%qs intrinsic subprogram at %L has been removed. "
3251 "Use INT intrinsic subprogram.", gfc_current_intrinsic,
3252 &x->where);
3253 return false;
3256 /* BOZ is dealt within simplify_int*. */
3257 if (x->ts.type == BT_BOZ)
3258 return true;
3260 if (!numeric_check (x, 0))
3261 return false;
3263 return true;
3266 bool
3267 gfc_check_ishft (gfc_expr *i, gfc_expr *shift)
3269 if (!type_check (i, 0, BT_INTEGER)
3270 || !type_check (shift, 1, BT_INTEGER))
3271 return false;
3273 if (!less_than_bitsize1 ("I", i, NULL, shift, true))
3274 return false;
3276 return true;
3280 bool
3281 gfc_check_ishftc (gfc_expr *i, gfc_expr *shift, gfc_expr *size)
3283 if (!type_check (i, 0, BT_INTEGER)
3284 || !type_check (shift, 1, BT_INTEGER))
3285 return false;
3287 if (size != NULL)
3289 int i2, i3;
3291 if (!type_check (size, 2, BT_INTEGER))
3292 return false;
3294 if (!less_than_bitsize1 ("I", i, "SIZE", size, true))
3295 return false;
3297 if (size->expr_type == EXPR_CONSTANT)
3299 gfc_extract_int (size, &i3);
3300 if (i3 <= 0)
3302 gfc_error ("SIZE at %L must be positive", &size->where);
3303 return false;
3306 if (shift->expr_type == EXPR_CONSTANT)
3308 gfc_extract_int (shift, &i2);
3309 if (i2 < 0)
3310 i2 = -i2;
3312 if (i2 > i3)
3314 gfc_error ("The absolute value of SHIFT at %L must be less "
3315 "than or equal to SIZE at %L", &shift->where,
3316 &size->where);
3317 return false;
3322 else if (!less_than_bitsize1 ("I", i, NULL, shift, true))
3323 return false;
3325 return true;
3329 bool
3330 gfc_check_kill (gfc_expr *pid, gfc_expr *sig)
3332 if (!type_check (pid, 0, BT_INTEGER))
3333 return false;
3335 if (!scalar_check (pid, 0))
3336 return false;
3338 if (!type_check (sig, 1, BT_INTEGER))
3339 return false;
3341 if (!scalar_check (sig, 1))
3342 return false;
3344 return true;
3348 bool
3349 gfc_check_kill_sub (gfc_expr *pid, gfc_expr *sig, gfc_expr *status)
3351 if (!type_check (pid, 0, BT_INTEGER))
3352 return false;
3354 if (!scalar_check (pid, 0))
3355 return false;
3357 if (!type_check (sig, 1, BT_INTEGER))
3358 return false;
3360 if (!scalar_check (sig, 1))
3361 return false;
3363 if (status)
3365 if (!type_check (status, 2, BT_INTEGER))
3366 return false;
3368 if (!scalar_check (status, 2))
3369 return false;
3371 if (status->expr_type != EXPR_VARIABLE)
3373 gfc_error ("STATUS at %L shall be an INTENT(OUT) variable",
3374 &status->where);
3375 return false;
3378 if (status->expr_type == EXPR_VARIABLE
3379 && status->symtree && status->symtree->n.sym
3380 && status->symtree->n.sym->attr.intent == INTENT_IN)
3382 gfc_error ("%qs at %L shall be an INTENT(OUT) variable",
3383 status->symtree->name, &status->where);
3384 return false;
3388 return true;
3392 bool
3393 gfc_check_kind (gfc_expr *x)
3395 if (gfc_invalid_null_arg (x))
3396 return false;
3398 if (gfc_bt_struct (x->ts.type) || x->ts.type == BT_CLASS)
3400 gfc_error ("%qs argument of %qs intrinsic at %L must be of "
3401 "intrinsic type", gfc_current_intrinsic_arg[0]->name,
3402 gfc_current_intrinsic, &x->where);
3403 return false;
3405 if (x->ts.type == BT_PROCEDURE)
3407 gfc_error ("%qs argument of %qs intrinsic at %L must be a data entity",
3408 gfc_current_intrinsic_arg[0]->name, gfc_current_intrinsic,
3409 &x->where);
3410 return false;
3413 return true;
3417 bool
3418 gfc_check_lbound (gfc_expr *array, gfc_expr *dim, gfc_expr *kind)
3420 if (!array_check (array, 0))
3421 return false;
3423 if (!dim_check (dim, 1, false))
3424 return false;
3426 if (!dim_rank_check (dim, array, 1))
3427 return false;
3429 if (!kind_check (kind, 2, BT_INTEGER))
3430 return false;
3431 if (kind && !gfc_notify_std (GFC_STD_F2003, "%qs intrinsic "
3432 "with KIND argument at %L",
3433 gfc_current_intrinsic, &kind->where))
3434 return false;
3436 return true;
3440 bool
3441 gfc_check_lcobound (gfc_expr *coarray, gfc_expr *dim, gfc_expr *kind)
3443 if (flag_coarray == GFC_FCOARRAY_NONE)
3445 gfc_fatal_error ("Coarrays disabled at %C, use %<-fcoarray=%> to enable");
3446 return false;
3449 if (!coarray_check (coarray, 0))
3450 return false;
3452 if (dim != NULL)
3454 if (!dim_check (dim, 1, false))
3455 return false;
3457 if (!dim_corank_check (dim, coarray))
3458 return false;
3461 if (!kind_check (kind, 2, BT_INTEGER))
3462 return false;
3464 return true;
3468 bool
3469 gfc_check_len_lentrim (gfc_expr *s, gfc_expr *kind)
3471 if (!type_check (s, 0, BT_CHARACTER))
3472 return false;
3474 if (gfc_invalid_null_arg (s))
3475 return false;
3477 if (!kind_check (kind, 1, BT_INTEGER))
3478 return false;
3479 if (kind && !gfc_notify_std (GFC_STD_F2003, "%qs intrinsic "
3480 "with KIND argument at %L",
3481 gfc_current_intrinsic, &kind->where))
3482 return false;
3484 return true;
3488 bool
3489 gfc_check_lge_lgt_lle_llt (gfc_expr *a, gfc_expr *b)
3491 if (!type_check (a, 0, BT_CHARACTER))
3492 return false;
3493 if (!kind_value_check (a, 0, gfc_default_character_kind))
3494 return false;
3496 if (!type_check (b, 1, BT_CHARACTER))
3497 return false;
3498 if (!kind_value_check (b, 1, gfc_default_character_kind))
3499 return false;
3501 return true;
3505 bool
3506 gfc_check_link (gfc_expr *path1, gfc_expr *path2)
3508 if (!type_check (path1, 0, BT_CHARACTER))
3509 return false;
3510 if (!kind_value_check (path1, 0, gfc_default_character_kind))
3511 return false;
3513 if (!type_check (path2, 1, BT_CHARACTER))
3514 return false;
3515 if (!kind_value_check (path2, 1, gfc_default_character_kind))
3516 return false;
3518 return true;
3522 bool
3523 gfc_check_link_sub (gfc_expr *path1, gfc_expr *path2, gfc_expr *status)
3525 if (!type_check (path1, 0, BT_CHARACTER))
3526 return false;
3527 if (!kind_value_check (path1, 0, gfc_default_character_kind))
3528 return false;
3530 if (!type_check (path2, 1, BT_CHARACTER))
3531 return false;
3532 if (!kind_value_check (path2, 0, gfc_default_character_kind))
3533 return false;
3535 if (status == NULL)
3536 return true;
3538 if (!type_check (status, 2, BT_INTEGER))
3539 return false;
3541 if (!scalar_check (status, 2))
3542 return false;
3544 return true;
3548 bool
3549 gfc_check_loc (gfc_expr *expr)
3551 return variable_check (expr, 0, true);
3555 bool
3556 gfc_check_symlnk (gfc_expr *path1, gfc_expr *path2)
3558 if (!type_check (path1, 0, BT_CHARACTER))
3559 return false;
3560 if (!kind_value_check (path1, 0, gfc_default_character_kind))
3561 return false;
3563 if (!type_check (path2, 1, BT_CHARACTER))
3564 return false;
3565 if (!kind_value_check (path2, 1, gfc_default_character_kind))
3566 return false;
3568 return true;
3572 bool
3573 gfc_check_symlnk_sub (gfc_expr *path1, gfc_expr *path2, gfc_expr *status)
3575 if (!type_check (path1, 0, BT_CHARACTER))
3576 return false;
3577 if (!kind_value_check (path1, 0, gfc_default_character_kind))
3578 return false;
3580 if (!type_check (path2, 1, BT_CHARACTER))
3581 return false;
3582 if (!kind_value_check (path2, 1, gfc_default_character_kind))
3583 return false;
3585 if (status == NULL)
3586 return true;
3588 if (!type_check (status, 2, BT_INTEGER))
3589 return false;
3591 if (!scalar_check (status, 2))
3592 return false;
3594 return true;
3598 bool
3599 gfc_check_logical (gfc_expr *a, gfc_expr *kind)
3601 if (!type_check (a, 0, BT_LOGICAL))
3602 return false;
3603 if (!kind_check (kind, 1, BT_LOGICAL))
3604 return false;
3606 return true;
3610 /* Min/max family. */
3612 static bool
3613 min_max_args (gfc_actual_arglist *args)
3615 gfc_actual_arglist *arg;
3616 int i, j, nargs, *nlabels, nlabelless;
3617 bool a1 = false, a2 = false;
3619 if (args == NULL || args->next == NULL)
3621 gfc_error ("Intrinsic %qs at %L must have at least two arguments",
3622 gfc_current_intrinsic, gfc_current_intrinsic_where);
3623 return false;
3626 if (!args->name)
3627 a1 = true;
3629 if (!args->next->name)
3630 a2 = true;
3632 nargs = 0;
3633 for (arg = args; arg; arg = arg->next)
3634 if (arg->name)
3635 nargs++;
3637 if (nargs == 0)
3638 return true;
3640 /* Note: Having a keywordless argument after an "arg=" is checked before. */
3641 nlabelless = 0;
3642 nlabels = XALLOCAVEC (int, nargs);
3643 for (arg = args, i = 0; arg; arg = arg->next, i++)
3644 if (arg->name)
3646 int n;
3647 char *endp;
3649 if (arg->name[0] != 'a' || arg->name[1] < '1' || arg->name[1] > '9')
3650 goto unknown;
3651 n = strtol (&arg->name[1], &endp, 10);
3652 if (endp[0] != '\0')
3653 goto unknown;
3654 if (n <= 0)
3655 goto unknown;
3656 if (n <= nlabelless)
3657 goto duplicate;
3658 nlabels[i] = n;
3659 if (n == 1)
3660 a1 = true;
3661 if (n == 2)
3662 a2 = true;
3664 else
3665 nlabelless++;
3667 if (!a1 || !a2)
3669 gfc_error ("Missing %qs argument to the %s intrinsic at %L",
3670 !a1 ? "a1" : "a2", gfc_current_intrinsic,
3671 gfc_current_intrinsic_where);
3672 return false;
3675 /* Check for duplicates. */
3676 for (i = 0; i < nargs; i++)
3677 for (j = i + 1; j < nargs; j++)
3678 if (nlabels[i] == nlabels[j])
3679 goto duplicate;
3681 return true;
3683 duplicate:
3684 gfc_error ("Duplicate argument %qs at %L to intrinsic %s", arg->name,
3685 &arg->expr->where, gfc_current_intrinsic);
3686 return false;
3688 unknown:
3689 gfc_error ("Unknown argument %qs at %L to intrinsic %s", arg->name,
3690 &arg->expr->where, gfc_current_intrinsic);
3691 return false;
3695 static bool
3696 check_rest (bt type, int kind, gfc_actual_arglist *arglist)
3698 gfc_actual_arglist *arg, *tmp;
3699 gfc_expr *x;
3700 int m, n;
3702 if (!min_max_args (arglist))
3703 return false;
3705 for (arg = arglist, n=1; arg; arg = arg->next, n++)
3707 x = arg->expr;
3708 if (x->ts.type != type || x->ts.kind != kind)
3710 if (x->ts.type == type)
3712 if (x->ts.type == BT_CHARACTER)
3714 gfc_error ("Different character kinds at %L", &x->where);
3715 return false;
3717 if (!gfc_notify_std (GFC_STD_GNU, "Different type "
3718 "kinds at %L", &x->where))
3719 return false;
3721 else
3723 gfc_error ("%<a%d%> argument of %qs intrinsic at %L must be "
3724 "%s(%d)", n, gfc_current_intrinsic, &x->where,
3725 gfc_basic_typename (type), kind);
3726 return false;
3730 for (tmp = arglist, m=1; tmp != arg; tmp = tmp->next, m++)
3731 if (!gfc_check_conformance (tmp->expr, x,
3732 _("arguments 'a%d' and 'a%d' for "
3733 "intrinsic '%s'"), m, n,
3734 gfc_current_intrinsic))
3735 return false;
3738 return true;
3742 bool
3743 gfc_check_min_max (gfc_actual_arglist *arg)
3745 gfc_expr *x;
3747 if (!min_max_args (arg))
3748 return false;
3750 x = arg->expr;
3752 if (x->ts.type == BT_CHARACTER)
3754 if (!gfc_notify_std (GFC_STD_F2003, "%qs intrinsic "
3755 "with CHARACTER argument at %L",
3756 gfc_current_intrinsic, &x->where))
3757 return false;
3759 else if (x->ts.type != BT_INTEGER && x->ts.type != BT_REAL)
3761 gfc_error ("%<a1%> argument of %qs intrinsic at %L must be INTEGER, "
3762 "REAL or CHARACTER", gfc_current_intrinsic, &x->where);
3763 return false;
3766 return check_rest (x->ts.type, x->ts.kind, arg);
3770 bool
3771 gfc_check_min_max_integer (gfc_actual_arglist *arg)
3773 return check_rest (BT_INTEGER, gfc_default_integer_kind, arg);
3777 bool
3778 gfc_check_min_max_real (gfc_actual_arglist *arg)
3780 return check_rest (BT_REAL, gfc_default_real_kind, arg);
3784 bool
3785 gfc_check_min_max_double (gfc_actual_arglist *arg)
3787 return check_rest (BT_REAL, gfc_default_double_kind, arg);
3791 /* End of min/max family. */
3793 bool
3794 gfc_check_malloc (gfc_expr *size)
3796 if (!type_check (size, 0, BT_INTEGER))
3797 return false;
3799 if (!scalar_check (size, 0))
3800 return false;
3802 return true;
3806 bool
3807 gfc_check_matmul (gfc_expr *matrix_a, gfc_expr *matrix_b)
3809 if ((matrix_a->ts.type != BT_LOGICAL) && !gfc_numeric_ts (&matrix_a->ts))
3811 gfc_error ("%qs argument of %qs intrinsic at %L must be numeric "
3812 "or LOGICAL", gfc_current_intrinsic_arg[0]->name,
3813 gfc_current_intrinsic, &matrix_a->where);
3814 return false;
3817 if ((matrix_b->ts.type != BT_LOGICAL) && !gfc_numeric_ts (&matrix_b->ts))
3819 gfc_error ("%qs argument of %qs intrinsic at %L must be numeric "
3820 "or LOGICAL", gfc_current_intrinsic_arg[1]->name,
3821 gfc_current_intrinsic, &matrix_b->where);
3822 return false;
3825 if ((matrix_a->ts.type == BT_LOGICAL && gfc_numeric_ts (&matrix_b->ts))
3826 || (gfc_numeric_ts (&matrix_a->ts) && matrix_b->ts.type == BT_LOGICAL))
3828 gfc_error ("Argument types of %qs intrinsic at %L must match (%s/%s)",
3829 gfc_current_intrinsic, &matrix_a->where,
3830 gfc_typename(&matrix_a->ts), gfc_typename(&matrix_b->ts));
3831 return false;
3834 switch (matrix_a->rank)
3836 case 1:
3837 if (!rank_check (matrix_b, 1, 2))
3838 return false;
3839 /* Check for case matrix_a has shape(m), matrix_b has shape (m, k). */
3840 if (!identical_dimen_shape (matrix_a, 0, matrix_b, 0))
3842 gfc_error ("Different shape on dimension 1 for arguments %qs "
3843 "and %qs at %L for intrinsic matmul",
3844 gfc_current_intrinsic_arg[0]->name,
3845 gfc_current_intrinsic_arg[1]->name, &matrix_a->where);
3846 return false;
3848 break;
3850 case 2:
3851 if (matrix_b->rank != 2)
3853 if (!rank_check (matrix_b, 1, 1))
3854 return false;
3856 /* matrix_b has rank 1 or 2 here. Common check for the cases
3857 - matrix_a has shape (n,m) and matrix_b has shape (m, k)
3858 - matrix_a has shape (n,m) and matrix_b has shape (m). */
3859 if (!identical_dimen_shape (matrix_a, 1, matrix_b, 0))
3861 gfc_error ("Different shape on dimension 2 for argument %qs and "
3862 "dimension 1 for argument %qs at %L for intrinsic "
3863 "matmul", gfc_current_intrinsic_arg[0]->name,
3864 gfc_current_intrinsic_arg[1]->name, &matrix_a->where);
3865 return false;
3867 break;
3869 default:
3870 gfc_error ("%qs argument of %qs intrinsic at %L must be of rank "
3871 "1 or 2", gfc_current_intrinsic_arg[0]->name,
3872 gfc_current_intrinsic, &matrix_a->where);
3873 return false;
3876 return true;
3880 /* Whoever came up with this interface was probably on something.
3881 The possibilities for the occupation of the second and third
3882 parameters are:
3884 Arg #2 Arg #3
3885 NULL NULL
3886 DIM NULL
3887 MASK NULL
3888 NULL MASK minloc(array, mask=m)
3889 DIM MASK
3891 I.e. in the case of minloc(array,mask), mask will be in the second
3892 position of the argument list and we'll have to fix that up. Also,
3893 add the BACK argument if that isn't present. */
3895 bool
3896 gfc_check_minloc_maxloc (gfc_actual_arglist *ap)
3898 gfc_expr *a, *m, *d, *k, *b;
3900 a = ap->expr;
3901 if (!int_or_real_or_char_check_f2003 (a, 0) || !array_check (a, 0))
3902 return false;
3904 d = ap->next->expr;
3905 m = ap->next->next->expr;
3906 k = ap->next->next->next->expr;
3907 b = ap->next->next->next->next->expr;
3909 if (b)
3911 if (!type_check (b, 4, BT_LOGICAL) || !scalar_check (b,4))
3912 return false;
3914 else
3916 b = gfc_get_logical_expr (gfc_logical_4_kind, NULL, 0);
3917 ap->next->next->next->next->expr = b;
3918 ap->next->next->next->next->name = gfc_get_string ("back");
3921 if (m == NULL && d != NULL && d->ts.type == BT_LOGICAL
3922 && ap->next->name == NULL)
3924 m = d;
3925 d = NULL;
3926 ap->next->expr = NULL;
3927 ap->next->next->expr = m;
3930 if (!dim_check (d, 1, false))
3931 return false;
3933 if (!dim_rank_check (d, a, 0))
3934 return false;
3936 if (m != NULL && !type_check (m, 2, BT_LOGICAL))
3937 return false;
3939 if (m != NULL
3940 && !gfc_check_conformance (a, m,
3941 _("arguments '%s' and '%s' for intrinsic %s"),
3942 gfc_current_intrinsic_arg[0]->name,
3943 gfc_current_intrinsic_arg[2]->name,
3944 gfc_current_intrinsic))
3945 return false;
3947 if (!kind_check (k, 1, BT_INTEGER))
3948 return false;
3950 return true;
3953 /* Check function for findloc. Mostly like gfc_check_minloc_maxloc
3954 above, with the additional "value" argument. */
3956 bool
3957 gfc_check_findloc (gfc_actual_arglist *ap)
3959 gfc_expr *a, *v, *m, *d, *k, *b;
3960 bool a1, v1;
3962 a = ap->expr;
3963 if (!intrinsic_type_check (a, 0) || !array_check (a, 0))
3964 return false;
3966 v = ap->next->expr;
3967 if (!intrinsic_type_check (v, 1) || !scalar_check (v,1))
3968 return false;
3970 /* Check if the type are both logical. */
3971 a1 = a->ts.type == BT_LOGICAL;
3972 v1 = v->ts.type == BT_LOGICAL;
3973 if ((a1 && !v1) || (!a1 && v1))
3974 goto incompat;
3976 /* Check if the type are both character. */
3977 a1 = a->ts.type == BT_CHARACTER;
3978 v1 = v->ts.type == BT_CHARACTER;
3979 if ((a1 && !v1) || (!a1 && v1))
3980 goto incompat;
3982 /* Check the kind of the characters argument match. */
3983 if (a1 && v1 && a->ts.kind != v->ts.kind)
3984 goto incompat;
3986 d = ap->next->next->expr;
3987 m = ap->next->next->next->expr;
3988 k = ap->next->next->next->next->expr;
3989 b = ap->next->next->next->next->next->expr;
3991 if (b)
3993 if (!type_check (b, 5, BT_LOGICAL) || !scalar_check (b,4))
3994 return false;
3996 else
3998 b = gfc_get_logical_expr (gfc_logical_4_kind, NULL, 0);
3999 ap->next->next->next->next->next->expr = b;
4000 ap->next->next->next->next->next->name = gfc_get_string ("back");
4003 if (m == NULL && d != NULL && d->ts.type == BT_LOGICAL
4004 && ap->next->name == NULL)
4006 m = d;
4007 d = NULL;
4008 ap->next->next->expr = NULL;
4009 ap->next->next->next->expr = m;
4012 if (!dim_check (d, 2, false))
4013 return false;
4015 if (!dim_rank_check (d, a, 0))
4016 return false;
4018 if (m != NULL && !type_check (m, 3, BT_LOGICAL))
4019 return false;
4021 if (m != NULL
4022 && !gfc_check_conformance (a, m,
4023 _("arguments '%s' and '%s' for intrinsic %s"),
4024 gfc_current_intrinsic_arg[0]->name,
4025 gfc_current_intrinsic_arg[3]->name,
4026 gfc_current_intrinsic))
4027 return false;
4029 if (!kind_check (k, 1, BT_INTEGER))
4030 return false;
4032 return true;
4034 incompat:
4035 gfc_error ("Argument %qs of %qs intrinsic at %L must be in type "
4036 "conformance to argument %qs at %L",
4037 gfc_current_intrinsic_arg[0]->name,
4038 gfc_current_intrinsic, &a->where,
4039 gfc_current_intrinsic_arg[1]->name, &v->where);
4040 return false;
4044 /* Similar to minloc/maxloc, the argument list might need to be
4045 reordered for the MINVAL, MAXVAL, PRODUCT, and SUM intrinsics. The
4046 difference is that MINLOC/MAXLOC take an additional KIND argument.
4047 The possibilities are:
4049 Arg #2 Arg #3
4050 NULL NULL
4051 DIM NULL
4052 MASK NULL
4053 NULL MASK minval(array, mask=m)
4054 DIM MASK
4056 I.e. in the case of minval(array,mask), mask will be in the second
4057 position of the argument list and we'll have to fix that up. */
4059 static bool
4060 check_reduction (gfc_actual_arglist *ap)
4062 gfc_expr *a, *m, *d;
4064 a = ap->expr;
4065 d = ap->next->expr;
4066 m = ap->next->next->expr;
4068 if (m == NULL && d != NULL && d->ts.type == BT_LOGICAL
4069 && ap->next->name == NULL)
4071 m = d;
4072 d = NULL;
4073 ap->next->expr = NULL;
4074 ap->next->next->expr = m;
4077 if (!dim_check (d, 1, false))
4078 return false;
4080 if (!dim_rank_check (d, a, 0))
4081 return false;
4083 if (m != NULL && !type_check (m, 2, BT_LOGICAL))
4084 return false;
4086 if (m != NULL
4087 && !gfc_check_conformance (a, m,
4088 _("arguments '%s' and '%s' for intrinsic %s"),
4089 gfc_current_intrinsic_arg[0]->name,
4090 gfc_current_intrinsic_arg[2]->name,
4091 gfc_current_intrinsic))
4092 return false;
4094 return true;
4098 bool
4099 gfc_check_minval_maxval (gfc_actual_arglist *ap)
4101 if (!int_or_real_or_char_check_f2003 (ap->expr, 0)
4102 || !array_check (ap->expr, 0))
4103 return false;
4105 return check_reduction (ap);
4109 bool
4110 gfc_check_product_sum (gfc_actual_arglist *ap)
4112 if (!numeric_check (ap->expr, 0)
4113 || !array_check (ap->expr, 0))
4114 return false;
4116 return check_reduction (ap);
4120 /* For IANY, IALL and IPARITY. */
4122 bool
4123 gfc_check_mask (gfc_expr *i, gfc_expr *kind)
4125 int k;
4127 if (!type_check (i, 0, BT_INTEGER))
4128 return false;
4130 if (!nonnegative_check ("I", i))
4131 return false;
4133 if (!kind_check (kind, 1, BT_INTEGER))
4134 return false;
4136 if (kind)
4137 gfc_extract_int (kind, &k);
4138 else
4139 k = gfc_default_integer_kind;
4141 if (!less_than_bitsizekind ("I", i, k))
4142 return false;
4144 return true;
4148 bool
4149 gfc_check_transf_bit_intrins (gfc_actual_arglist *ap)
4151 if (ap->expr->ts.type != BT_INTEGER)
4153 gfc_error ("%qs argument of %qs intrinsic at %L must be INTEGER",
4154 gfc_current_intrinsic_arg[0]->name,
4155 gfc_current_intrinsic, &ap->expr->where);
4156 return false;
4159 if (!array_check (ap->expr, 0))
4160 return false;
4162 return check_reduction (ap);
4166 bool
4167 gfc_check_merge (gfc_expr *tsource, gfc_expr *fsource, gfc_expr *mask)
4169 if (gfc_invalid_null_arg (tsource))
4170 return false;
4172 if (gfc_invalid_null_arg (fsource))
4173 return false;
4175 if (!same_type_check (tsource, 0, fsource, 1))
4176 return false;
4178 if (!type_check (mask, 2, BT_LOGICAL))
4179 return false;
4181 if (tsource->ts.type == BT_CHARACTER)
4182 return gfc_check_same_strlen (tsource, fsource, "MERGE intrinsic");
4184 return true;
4188 bool
4189 gfc_check_merge_bits (gfc_expr *i, gfc_expr *j, gfc_expr *mask)
4191 /* i and j cannot both be BOZ literal constants. */
4192 if (!boz_args_check (i, j))
4193 return false;
4195 /* If i is BOZ and j is integer, convert i to type of j. */
4196 if (i->ts.type == BT_BOZ && j->ts.type == BT_INTEGER
4197 && !gfc_boz2int (i, j->ts.kind))
4198 return false;
4200 /* If j is BOZ and i is integer, convert j to type of i. */
4201 if (j->ts.type == BT_BOZ && i->ts.type == BT_INTEGER
4202 && !gfc_boz2int (j, i->ts.kind))
4203 return false;
4205 if (!type_check (i, 0, BT_INTEGER))
4206 return false;
4208 if (!type_check (j, 1, BT_INTEGER))
4209 return false;
4211 if (!same_type_check (i, 0, j, 1))
4212 return false;
4214 if (mask->ts.type == BT_BOZ && !gfc_boz2int(mask, i->ts.kind))
4215 return false;
4217 if (!type_check (mask, 2, BT_INTEGER))
4218 return false;
4220 if (!same_type_check (i, 0, mask, 2))
4221 return false;
4223 return true;
4227 bool
4228 gfc_check_move_alloc (gfc_expr *from, gfc_expr *to)
4230 if (!variable_check (from, 0, false))
4231 return false;
4232 if (!allocatable_check (from, 0))
4233 return false;
4234 if (gfc_is_coindexed (from))
4236 gfc_error ("The FROM argument to MOVE_ALLOC at %L shall not be "
4237 "coindexed", &from->where);
4238 return false;
4241 if (!variable_check (to, 1, false))
4242 return false;
4243 if (!allocatable_check (to, 1))
4244 return false;
4245 if (gfc_is_coindexed (to))
4247 gfc_error ("The TO argument to MOVE_ALLOC at %L shall not be "
4248 "coindexed", &to->where);
4249 return false;
4252 if (from->ts.type == BT_CLASS && to->ts.type == BT_DERIVED)
4254 gfc_error ("The TO arguments in MOVE_ALLOC at %L must be "
4255 "polymorphic if FROM is polymorphic",
4256 &to->where);
4257 return false;
4260 if (!same_type_check (to, 1, from, 0))
4261 return false;
4263 if (to->rank != from->rank)
4265 gfc_error ("The FROM and TO arguments of the MOVE_ALLOC intrinsic at %L "
4266 "must have the same rank %d/%d", &to->where, from->rank,
4267 to->rank);
4268 return false;
4271 /* IR F08/0040; cf. 12-006A. */
4272 if (gfc_get_corank (to) != gfc_get_corank (from))
4274 gfc_error ("The FROM and TO arguments of the MOVE_ALLOC intrinsic at %L "
4275 "must have the same corank %d/%d", &to->where,
4276 gfc_get_corank (from), gfc_get_corank (to));
4277 return false;
4280 /* This is based losely on F2003 12.4.1.7. It is intended to prevent
4281 the likes of to = sym->cmp1->cmp2 and from = sym->cmp1, where cmp1
4282 and cmp2 are allocatable. After the allocation is transferred,
4283 the 'to' chain is broken by the nullification of the 'from'. A bit
4284 of reflection reveals that this can only occur for derived types
4285 with recursive allocatable components. */
4286 if (to->expr_type == EXPR_VARIABLE && from->expr_type == EXPR_VARIABLE
4287 && !strcmp (to->symtree->n.sym->name, from->symtree->n.sym->name))
4289 gfc_ref *to_ref, *from_ref;
4290 to_ref = to->ref;
4291 from_ref = from->ref;
4292 bool aliasing = true;
4294 for (; from_ref && to_ref;
4295 from_ref = from_ref->next, to_ref = to_ref->next)
4297 if (to_ref->type != from->ref->type)
4298 aliasing = false;
4299 else if (to_ref->type == REF_ARRAY
4300 && to_ref->u.ar.type != AR_FULL
4301 && from_ref->u.ar.type != AR_FULL)
4302 /* Play safe; assume sections and elements are different. */
4303 aliasing = false;
4304 else if (to_ref->type == REF_COMPONENT
4305 && to_ref->u.c.component != from_ref->u.c.component)
4306 aliasing = false;
4308 if (!aliasing)
4309 break;
4312 if (aliasing)
4314 gfc_error ("The FROM and TO arguments at %L violate aliasing "
4315 "restrictions (F2003 12.4.1.7)", &to->where);
4316 return false;
4320 /* CLASS arguments: Make sure the vtab of from is present. */
4321 if (to->ts.type == BT_CLASS && !UNLIMITED_POLY (from))
4322 gfc_find_vtab (&from->ts);
4324 return true;
4328 bool
4329 gfc_check_nearest (gfc_expr *x, gfc_expr *s)
4331 if (!type_check (x, 0, BT_REAL))
4332 return false;
4334 if (!type_check (s, 1, BT_REAL))
4335 return false;
4337 if (s->expr_type == EXPR_CONSTANT)
4339 if (mpfr_sgn (s->value.real) == 0)
4341 gfc_error ("Argument %<S%> of NEAREST at %L shall not be zero",
4342 &s->where);
4343 return false;
4347 return true;
4351 bool
4352 gfc_check_new_line (gfc_expr *a)
4354 if (!type_check (a, 0, BT_CHARACTER))
4355 return false;
4357 return true;
4361 bool
4362 gfc_check_norm2 (gfc_expr *array, gfc_expr *dim)
4364 if (!type_check (array, 0, BT_REAL))
4365 return false;
4367 if (!array_check (array, 0))
4368 return false;
4370 if (!dim_check (dim, 1, false))
4371 return false;
4373 if (!dim_rank_check (dim, array, false))
4374 return false;
4376 return true;
4379 bool
4380 gfc_check_null (gfc_expr *mold)
4382 symbol_attribute attr;
4384 if (mold == NULL)
4385 return true;
4387 if (!variable_check (mold, 0, true))
4388 return false;
4390 attr = gfc_variable_attr (mold, NULL);
4392 if (!attr.pointer && !attr.proc_pointer && !attr.allocatable)
4394 gfc_error ("%qs argument of %qs intrinsic at %L must be a POINTER, "
4395 "ALLOCATABLE or procedure pointer",
4396 gfc_current_intrinsic_arg[0]->name,
4397 gfc_current_intrinsic, &mold->where);
4398 return false;
4401 if (attr.allocatable
4402 && !gfc_notify_std (GFC_STD_F2003, "NULL intrinsic with "
4403 "allocatable MOLD at %L", &mold->where))
4404 return false;
4406 /* F2008, C1242. */
4407 if (gfc_is_coindexed (mold))
4409 gfc_error ("%qs argument of %qs intrinsic at %L shall not be "
4410 "coindexed", gfc_current_intrinsic_arg[0]->name,
4411 gfc_current_intrinsic, &mold->where);
4412 return false;
4415 return true;
4419 bool
4420 gfc_check_pack (gfc_expr *array, gfc_expr *mask, gfc_expr *vector)
4422 if (!array_check (array, 0))
4423 return false;
4425 if (!type_check (mask, 1, BT_LOGICAL))
4426 return false;
4428 if (!gfc_check_conformance (array, mask,
4429 _("arguments '%s' and '%s' for intrinsic '%s'"),
4430 gfc_current_intrinsic_arg[0]->name,
4431 gfc_current_intrinsic_arg[1]->name,
4432 gfc_current_intrinsic))
4433 return false;
4435 if (vector != NULL)
4437 mpz_t array_size, vector_size;
4438 bool have_array_size, have_vector_size;
4440 if (!same_type_check (array, 0, vector, 2))
4441 return false;
4443 if (!rank_check (vector, 2, 1))
4444 return false;
4446 /* VECTOR requires at least as many elements as MASK
4447 has .TRUE. values. */
4448 have_array_size = gfc_array_size(array, &array_size);
4449 have_vector_size = gfc_array_size(vector, &vector_size);
4451 if (have_vector_size
4452 && (mask->expr_type == EXPR_ARRAY
4453 || (mask->expr_type == EXPR_CONSTANT
4454 && have_array_size)))
4456 int mask_true_values = 0;
4458 if (mask->expr_type == EXPR_ARRAY)
4460 gfc_constructor *mask_ctor;
4461 mask_ctor = gfc_constructor_first (mask->value.constructor);
4462 while (mask_ctor)
4464 if (mask_ctor->expr->expr_type != EXPR_CONSTANT)
4466 mask_true_values = 0;
4467 break;
4470 if (mask_ctor->expr->value.logical)
4471 mask_true_values++;
4473 mask_ctor = gfc_constructor_next (mask_ctor);
4476 else if (mask->expr_type == EXPR_CONSTANT && mask->value.logical)
4477 mask_true_values = mpz_get_si (array_size);
4479 if (mpz_get_si (vector_size) < mask_true_values)
4481 gfc_error ("%qs argument of %qs intrinsic at %L must "
4482 "provide at least as many elements as there "
4483 "are .TRUE. values in %qs (%ld/%d)",
4484 gfc_current_intrinsic_arg[2]->name,
4485 gfc_current_intrinsic, &vector->where,
4486 gfc_current_intrinsic_arg[1]->name,
4487 mpz_get_si (vector_size), mask_true_values);
4488 return false;
4492 if (have_array_size)
4493 mpz_clear (array_size);
4494 if (have_vector_size)
4495 mpz_clear (vector_size);
4498 return true;
4502 bool
4503 gfc_check_parity (gfc_expr *mask, gfc_expr *dim)
4505 if (!type_check (mask, 0, BT_LOGICAL))
4506 return false;
4508 if (!array_check (mask, 0))
4509 return false;
4511 if (!dim_check (dim, 1, false))
4512 return false;
4514 if (!dim_rank_check (dim, mask, false))
4515 return false;
4517 return true;
4521 bool
4522 gfc_check_precision (gfc_expr *x)
4524 if (!real_or_complex_check (x, 0))
4525 return false;
4527 return true;
4531 bool
4532 gfc_check_present (gfc_expr *a)
4534 gfc_symbol *sym;
4536 if (!variable_check (a, 0, true))
4537 return false;
4539 sym = a->symtree->n.sym;
4540 if (!sym->attr.dummy)
4542 gfc_error ("%qs argument of %qs intrinsic at %L must be of a "
4543 "dummy variable", gfc_current_intrinsic_arg[0]->name,
4544 gfc_current_intrinsic, &a->where);
4545 return false;
4548 /* For CLASS, the optional attribute might be set at either location. */
4549 if ((sym->ts.type != BT_CLASS || !CLASS_DATA (sym)->attr.optional)
4550 && !sym->attr.optional)
4552 gfc_error ("%qs argument of %qs intrinsic at %L must be of "
4553 "an OPTIONAL dummy variable",
4554 gfc_current_intrinsic_arg[0]->name, gfc_current_intrinsic,
4555 &a->where);
4556 return false;
4559 /* 13.14.82 PRESENT(A)
4560 ......
4561 Argument. A shall be the name of an optional dummy argument that is
4562 accessible in the subprogram in which the PRESENT function reference
4563 appears... */
4565 if (a->ref != NULL
4566 && !(a->ref->next == NULL && a->ref->type == REF_ARRAY
4567 && (a->ref->u.ar.type == AR_FULL
4568 || (a->ref->u.ar.type == AR_ELEMENT
4569 && a->ref->u.ar.as->rank == 0))))
4571 gfc_error ("%qs argument of %qs intrinsic at %L must not be a "
4572 "subobject of %qs", gfc_current_intrinsic_arg[0]->name,
4573 gfc_current_intrinsic, &a->where, sym->name);
4574 return false;
4577 return true;
4581 bool
4582 gfc_check_radix (gfc_expr *x)
4584 if (!int_or_real_check (x, 0))
4585 return false;
4587 return true;
4591 bool
4592 gfc_check_range (gfc_expr *x)
4594 if (!numeric_check (x, 0))
4595 return false;
4597 return true;
4601 bool
4602 gfc_check_rank (gfc_expr *a)
4604 /* Any data object is allowed; a "data object" is a "constant (4.1.3),
4605 variable (6), or subobject of a constant (2.4.3.2.3)" (F2008, 1.3.45). */
4607 bool is_variable = true;
4609 /* Functions returning pointers are regarded as variable, cf. F2008, R602. */
4610 if (a->expr_type == EXPR_FUNCTION)
4611 is_variable = a->value.function.esym
4612 ? a->value.function.esym->result->attr.pointer
4613 : a->symtree->n.sym->result->attr.pointer;
4615 if (a->expr_type == EXPR_OP
4616 || a->expr_type == EXPR_NULL
4617 || a->expr_type == EXPR_COMPCALL
4618 || a->expr_type == EXPR_PPC
4619 || a->ts.type == BT_PROCEDURE
4620 || !is_variable)
4622 gfc_error ("The argument of the RANK intrinsic at %L must be a data "
4623 "object", &a->where);
4624 return false;
4627 return true;
4631 bool
4632 gfc_check_real (gfc_expr *a, gfc_expr *kind)
4634 if (!kind_check (kind, 1, BT_REAL))
4635 return false;
4637 /* BOZ is dealt with in gfc_simplify_real. */
4638 if (a->ts.type == BT_BOZ)
4639 return true;
4641 if (!numeric_check (a, 0))
4642 return false;
4644 return true;
4648 bool
4649 gfc_check_rename (gfc_expr *path1, gfc_expr *path2)
4651 if (!type_check (path1, 0, BT_CHARACTER))
4652 return false;
4653 if (!kind_value_check (path1, 0, gfc_default_character_kind))
4654 return false;
4656 if (!type_check (path2, 1, BT_CHARACTER))
4657 return false;
4658 if (!kind_value_check (path2, 1, gfc_default_character_kind))
4659 return false;
4661 return true;
4665 bool
4666 gfc_check_rename_sub (gfc_expr *path1, gfc_expr *path2, gfc_expr *status)
4668 if (!type_check (path1, 0, BT_CHARACTER))
4669 return false;
4670 if (!kind_value_check (path1, 0, gfc_default_character_kind))
4671 return false;
4673 if (!type_check (path2, 1, BT_CHARACTER))
4674 return false;
4675 if (!kind_value_check (path2, 1, gfc_default_character_kind))
4676 return false;
4678 if (status == NULL)
4679 return true;
4681 if (!type_check (status, 2, BT_INTEGER))
4682 return false;
4684 if (!scalar_check (status, 2))
4685 return false;
4687 return true;
4691 bool
4692 gfc_check_repeat (gfc_expr *x, gfc_expr *y)
4694 if (!type_check (x, 0, BT_CHARACTER))
4695 return false;
4697 if (!scalar_check (x, 0))
4698 return false;
4700 if (!type_check (y, 0, BT_INTEGER))
4701 return false;
4703 if (!scalar_check (y, 1))
4704 return false;
4706 return true;
4710 bool
4711 gfc_check_reshape (gfc_expr *source, gfc_expr *shape,
4712 gfc_expr *pad, gfc_expr *order)
4714 mpz_t size;
4715 mpz_t nelems;
4716 int shape_size;
4717 bool shape_is_const;
4719 if (!array_check (source, 0))
4720 return false;
4722 if (!rank_check (shape, 1, 1))
4723 return false;
4725 if (!type_check (shape, 1, BT_INTEGER))
4726 return false;
4728 if (!gfc_array_size (shape, &size))
4730 gfc_error ("%<shape%> argument of %<reshape%> intrinsic at %L must be an "
4731 "array of constant size", &shape->where);
4732 return false;
4735 shape_size = mpz_get_ui (size);
4736 mpz_clear (size);
4738 if (shape_size <= 0)
4740 gfc_error ("%qs argument of %qs intrinsic at %L is empty",
4741 gfc_current_intrinsic_arg[1]->name, gfc_current_intrinsic,
4742 &shape->where);
4743 return false;
4745 else if (shape_size > GFC_MAX_DIMENSIONS)
4747 gfc_error ("%<shape%> argument of %<reshape%> intrinsic at %L has more "
4748 "than %d elements", &shape->where, GFC_MAX_DIMENSIONS);
4749 return false;
4752 gfc_simplify_expr (shape, 0);
4753 shape_is_const = gfc_is_constant_array_expr (shape);
4755 if (shape->expr_type == EXPR_ARRAY && shape_is_const)
4757 gfc_expr *e;
4758 int i, extent;
4759 for (i = 0; i < shape_size; ++i)
4761 e = gfc_constructor_lookup_expr (shape->value.constructor, i);
4762 if (e == NULL)
4763 break;
4764 if (e->expr_type != EXPR_CONSTANT)
4765 continue;
4767 gfc_extract_int (e, &extent);
4768 if (extent < 0)
4770 gfc_error ("%qs argument of %qs intrinsic at %L has "
4771 "negative element (%d)",
4772 gfc_current_intrinsic_arg[1]->name,
4773 gfc_current_intrinsic, &shape->where, extent);
4774 return false;
4779 if (pad != NULL)
4781 if (!same_type_check (source, 0, pad, 2))
4782 return false;
4784 if (!array_check (pad, 2))
4785 return false;
4788 if (order != NULL)
4790 if (!array_check (order, 3))
4791 return false;
4793 if (!type_check (order, 3, BT_INTEGER))
4794 return false;
4796 if (order->expr_type == EXPR_ARRAY && gfc_is_constant_array_expr (order))
4798 int i, order_size, dim, perm[GFC_MAX_DIMENSIONS];
4799 gfc_expr *e;
4801 for (i = 0; i < GFC_MAX_DIMENSIONS; ++i)
4802 perm[i] = 0;
4804 gfc_array_size (order, &size);
4805 order_size = mpz_get_ui (size);
4806 mpz_clear (size);
4808 if (order_size != shape_size)
4810 gfc_error ("%qs argument of %qs intrinsic at %L "
4811 "has wrong number of elements (%d/%d)",
4812 gfc_current_intrinsic_arg[3]->name,
4813 gfc_current_intrinsic, &order->where,
4814 order_size, shape_size);
4815 return false;
4818 for (i = 1; i <= order_size; ++i)
4820 e = gfc_constructor_lookup_expr (order->value.constructor, i-1);
4821 if (e->expr_type != EXPR_CONSTANT)
4822 continue;
4824 gfc_extract_int (e, &dim);
4826 if (dim < 1 || dim > order_size)
4828 gfc_error ("%qs argument of %qs intrinsic at %L "
4829 "has out-of-range dimension (%d)",
4830 gfc_current_intrinsic_arg[3]->name,
4831 gfc_current_intrinsic, &e->where, dim);
4832 return false;
4835 if (perm[dim-1] != 0)
4837 gfc_error ("%qs argument of %qs intrinsic at %L has "
4838 "invalid permutation of dimensions (dimension "
4839 "%qd duplicated)",
4840 gfc_current_intrinsic_arg[3]->name,
4841 gfc_current_intrinsic, &e->where, dim);
4842 return false;
4845 perm[dim-1] = 1;
4850 if (pad == NULL && shape->expr_type == EXPR_ARRAY && shape_is_const
4851 && !(source->expr_type == EXPR_VARIABLE && source->symtree->n.sym->as
4852 && source->symtree->n.sym->as->type == AS_ASSUMED_SIZE))
4854 /* Check the match in size between source and destination. */
4855 if (gfc_array_size (source, &nelems))
4857 gfc_constructor *c;
4858 bool test;
4861 mpz_init_set_ui (size, 1);
4862 for (c = gfc_constructor_first (shape->value.constructor);
4863 c; c = gfc_constructor_next (c))
4864 mpz_mul (size, size, c->expr->value.integer);
4866 test = mpz_cmp (nelems, size) < 0 && mpz_cmp_ui (size, 0) > 0;
4867 mpz_clear (nelems);
4868 mpz_clear (size);
4870 if (test)
4872 gfc_error ("Without padding, there are not enough elements "
4873 "in the intrinsic RESHAPE source at %L to match "
4874 "the shape", &source->where);
4875 return false;
4880 return true;
4884 bool
4885 gfc_check_same_type_as (gfc_expr *a, gfc_expr *b)
4887 if (a->ts.type != BT_DERIVED && a->ts.type != BT_CLASS)
4889 gfc_error ("%qs argument of %qs intrinsic at %L "
4890 "cannot be of type %s",
4891 gfc_current_intrinsic_arg[0]->name,
4892 gfc_current_intrinsic,
4893 &a->where, gfc_typename (a));
4894 return false;
4897 if (!(gfc_type_is_extensible (a->ts.u.derived) || UNLIMITED_POLY (a)))
4899 gfc_error ("%qs argument of %qs intrinsic at %L "
4900 "must be of an extensible type",
4901 gfc_current_intrinsic_arg[0]->name, gfc_current_intrinsic,
4902 &a->where);
4903 return false;
4906 if (b->ts.type != BT_DERIVED && b->ts.type != BT_CLASS)
4908 gfc_error ("%qs argument of %qs intrinsic at %L "
4909 "cannot be of type %s",
4910 gfc_current_intrinsic_arg[0]->name,
4911 gfc_current_intrinsic,
4912 &b->where, gfc_typename (b));
4913 return false;
4916 if (!(gfc_type_is_extensible (b->ts.u.derived) || UNLIMITED_POLY (b)))
4918 gfc_error ("%qs argument of %qs intrinsic at %L "
4919 "must be of an extensible type",
4920 gfc_current_intrinsic_arg[1]->name, gfc_current_intrinsic,
4921 &b->where);
4922 return false;
4925 return true;
4929 bool
4930 gfc_check_scale (gfc_expr *x, gfc_expr *i)
4932 if (!type_check (x, 0, BT_REAL))
4933 return false;
4935 if (!type_check (i, 1, BT_INTEGER))
4936 return false;
4938 return true;
4942 bool
4943 gfc_check_scan (gfc_expr *x, gfc_expr *y, gfc_expr *z, gfc_expr *kind)
4945 if (!type_check (x, 0, BT_CHARACTER))
4946 return false;
4948 if (!type_check (y, 1, BT_CHARACTER))
4949 return false;
4951 if (z != NULL && !type_check (z, 2, BT_LOGICAL))
4952 return false;
4954 if (!kind_check (kind, 3, BT_INTEGER))
4955 return false;
4956 if (kind && !gfc_notify_std (GFC_STD_F2003, "%qs intrinsic "
4957 "with KIND argument at %L",
4958 gfc_current_intrinsic, &kind->where))
4959 return false;
4961 if (!same_type_check (x, 0, y, 1))
4962 return false;
4964 return true;
4968 bool
4969 gfc_check_secnds (gfc_expr *r)
4971 if (!type_check (r, 0, BT_REAL))
4972 return false;
4974 if (!kind_value_check (r, 0, 4))
4975 return false;
4977 if (!scalar_check (r, 0))
4978 return false;
4980 return true;
4984 bool
4985 gfc_check_selected_char_kind (gfc_expr *name)
4987 if (!type_check (name, 0, BT_CHARACTER))
4988 return false;
4990 if (!kind_value_check (name, 0, gfc_default_character_kind))
4991 return false;
4993 if (!scalar_check (name, 0))
4994 return false;
4996 return true;
5000 bool
5001 gfc_check_selected_int_kind (gfc_expr *r)
5003 if (!type_check (r, 0, BT_INTEGER))
5004 return false;
5006 if (!scalar_check (r, 0))
5007 return false;
5009 return true;
5013 bool
5014 gfc_check_selected_real_kind (gfc_expr *p, gfc_expr *r, gfc_expr *radix)
5016 if (p == NULL && r == NULL
5017 && !gfc_notify_std (GFC_STD_F2008, "SELECTED_REAL_KIND with"
5018 " neither %<P%> nor %<R%> argument at %L",
5019 gfc_current_intrinsic_where))
5020 return false;
5022 if (p)
5024 if (!type_check (p, 0, BT_INTEGER))
5025 return false;
5027 if (!scalar_check (p, 0))
5028 return false;
5031 if (r)
5033 if (!type_check (r, 1, BT_INTEGER))
5034 return false;
5036 if (!scalar_check (r, 1))
5037 return false;
5040 if (radix)
5042 if (!type_check (radix, 1, BT_INTEGER))
5043 return false;
5045 if (!scalar_check (radix, 1))
5046 return false;
5048 if (!gfc_notify_std (GFC_STD_F2008, "%qs intrinsic with "
5049 "RADIX argument at %L", gfc_current_intrinsic,
5050 &radix->where))
5051 return false;
5054 return true;
5058 bool
5059 gfc_check_set_exponent (gfc_expr *x, gfc_expr *i)
5061 if (!type_check (x, 0, BT_REAL))
5062 return false;
5064 if (!type_check (i, 1, BT_INTEGER))
5065 return false;
5067 return true;
5071 bool
5072 gfc_check_shape (gfc_expr *source, gfc_expr *kind)
5074 gfc_array_ref *ar;
5076 if (gfc_invalid_null_arg (source))
5077 return false;
5079 if (!kind_check (kind, 1, BT_INTEGER))
5080 return false;
5081 if (kind && !gfc_notify_std (GFC_STD_F2003, "%qs intrinsic "
5082 "with KIND argument at %L",
5083 gfc_current_intrinsic, &kind->where))
5084 return false;
5086 if (source->rank == 0 || source->expr_type != EXPR_VARIABLE)
5087 return true;
5089 if (source->ref == NULL)
5090 return false;
5092 ar = gfc_find_array_ref (source);
5094 if (ar->as && ar->as->type == AS_ASSUMED_SIZE && ar->type == AR_FULL)
5096 gfc_error ("%<source%> argument of %<shape%> intrinsic at %L must not be "
5097 "an assumed size array", &source->where);
5098 return false;
5101 return true;
5105 bool
5106 gfc_check_shift (gfc_expr *i, gfc_expr *shift)
5108 if (!type_check (i, 0, BT_INTEGER))
5109 return false;
5111 if (!type_check (shift, 0, BT_INTEGER))
5112 return false;
5114 if (!nonnegative_check ("SHIFT", shift))
5115 return false;
5117 if (!less_than_bitsize1 ("I", i, "SHIFT", shift, true))
5118 return false;
5120 return true;
5124 bool
5125 gfc_check_sign (gfc_expr *a, gfc_expr *b)
5127 if (!int_or_real_check (a, 0))
5128 return false;
5130 if (!same_type_check (a, 0, b, 1))
5131 return false;
5133 return true;
5137 bool
5138 gfc_check_size (gfc_expr *array, gfc_expr *dim, gfc_expr *kind)
5140 if (!array_check (array, 0))
5141 return false;
5143 if (!dim_check (dim, 1, true))
5144 return false;
5146 if (!dim_rank_check (dim, array, 0))
5147 return false;
5149 if (!kind_check (kind, 2, BT_INTEGER))
5150 return false;
5151 if (kind && !gfc_notify_std (GFC_STD_F2003, "%qs intrinsic "
5152 "with KIND argument at %L",
5153 gfc_current_intrinsic, &kind->where))
5154 return false;
5157 return true;
5161 bool
5162 gfc_check_sizeof (gfc_expr *arg)
5164 if (gfc_invalid_null_arg (arg))
5165 return false;
5167 if (arg->ts.type == BT_PROCEDURE)
5169 gfc_error ("%qs argument of %qs intrinsic at %L shall not be a procedure",
5170 gfc_current_intrinsic_arg[0]->name, gfc_current_intrinsic,
5171 &arg->where);
5172 return false;
5175 if (illegal_boz_arg (arg))
5176 return false;
5178 /* TYPE(*) is acceptable if and only if it uses an array descriptor. */
5179 if (arg->ts.type == BT_ASSUMED
5180 && (arg->symtree->n.sym->as == NULL
5181 || (arg->symtree->n.sym->as->type != AS_ASSUMED_SHAPE
5182 && arg->symtree->n.sym->as->type != AS_DEFERRED
5183 && arg->symtree->n.sym->as->type != AS_ASSUMED_RANK)))
5185 gfc_error ("%qs argument of %qs intrinsic at %L shall not be TYPE(*)",
5186 gfc_current_intrinsic_arg[0]->name, gfc_current_intrinsic,
5187 &arg->where);
5188 return false;
5191 if (arg->rank && arg->expr_type == EXPR_VARIABLE
5192 && arg->symtree->n.sym->as != NULL
5193 && arg->symtree->n.sym->as->type == AS_ASSUMED_SIZE && arg->ref
5194 && arg->ref->type == REF_ARRAY && arg->ref->u.ar.type == AR_FULL)
5196 gfc_error ("%qs argument of %qs intrinsic at %L shall not be an "
5197 "assumed-size array", gfc_current_intrinsic_arg[0]->name,
5198 gfc_current_intrinsic, &arg->where);
5199 return false;
5202 return true;
5206 /* Check whether an expression is interoperable. When returning false,
5207 msg is set to a string telling why the expression is not interoperable,
5208 otherwise, it is set to NULL. The msg string can be used in diagnostics.
5209 If c_loc is true, character with len > 1 are allowed (cf. Fortran
5210 2003corr5); additionally, assumed-shape/assumed-rank/deferred-shape
5211 arrays are permitted. And if c_f_ptr is true, deferred-shape arrays
5212 are permitted. */
5214 static bool
5215 is_c_interoperable (gfc_expr *expr, const char **msg, bool c_loc, bool c_f_ptr)
5217 *msg = NULL;
5219 if (expr->expr_type == EXPR_NULL)
5221 *msg = "NULL() is not interoperable";
5222 return false;
5225 if (expr->ts.type == BT_BOZ)
5227 *msg = "BOZ literal constant";
5228 return false;
5231 if (expr->ts.type == BT_CLASS)
5233 *msg = "Expression is polymorphic";
5234 return false;
5237 if (expr->ts.type == BT_DERIVED && !expr->ts.u.derived->attr.is_bind_c
5238 && !expr->ts.u.derived->ts.is_iso_c)
5240 *msg = "Expression is a noninteroperable derived type";
5241 return false;
5244 if (expr->ts.type == BT_PROCEDURE)
5246 *msg = "Procedure unexpected as argument";
5247 return false;
5250 if (gfc_notification_std (GFC_STD_GNU) && expr->ts.type == BT_LOGICAL)
5252 int i;
5253 for (i = 0; gfc_logical_kinds[i].kind; i++)
5254 if (gfc_logical_kinds[i].kind == expr->ts.kind)
5255 return true;
5256 *msg = "Extension to use a non-C_Bool-kind LOGICAL";
5257 return false;
5260 if (gfc_notification_std (GFC_STD_GNU) && expr->ts.type == BT_CHARACTER
5261 && expr->ts.kind != 1)
5263 *msg = "Extension to use a non-C_CHAR-kind CHARACTER";
5264 return false;
5267 if (expr->ts.type == BT_CHARACTER) {
5268 if (expr->ts.deferred)
5270 /* TS 29113 allows deferred-length strings as dummy arguments,
5271 but it is not an interoperable type. */
5272 *msg = "Expression shall not be a deferred-length string";
5273 return false;
5276 if (expr->ts.u.cl && expr->ts.u.cl->length
5277 && !gfc_simplify_expr (expr->ts.u.cl->length, 0))
5278 gfc_internal_error ("is_c_interoperable(): gfc_simplify_expr failed");
5280 if (!c_loc
5281 && expr->ts.u.cl
5282 && !gfc_length_one_character_type_p (&expr->ts))
5284 *msg = "Type shall have a character length of 1";
5285 return false;
5289 /* Note: The following checks are about interoperatable variables, Fortran
5290 15.3.5/15.3.6. In intrinsics like C_LOC or in procedure interface, more
5291 is allowed, e.g. assumed-shape arrays with TS 29113. */
5293 if (gfc_is_coarray (expr))
5295 *msg = "Coarrays are not interoperable";
5296 return false;
5299 if (!c_loc && expr->rank > 0 && expr->expr_type != EXPR_ARRAY)
5301 gfc_array_ref *ar = gfc_find_array_ref (expr);
5302 if (ar->type != AR_FULL)
5304 *msg = "Only whole-arrays are interoperable";
5305 return false;
5307 if (!c_f_ptr && ar->as->type != AS_EXPLICIT
5308 && ar->as->type != AS_ASSUMED_SIZE)
5310 *msg = "Only explicit-size and assumed-size arrays are interoperable";
5311 return false;
5315 return true;
5319 bool
5320 gfc_check_c_sizeof (gfc_expr *arg)
5322 const char *msg;
5324 if (!is_c_interoperable (arg, &msg, false, false))
5326 gfc_error ("%qs argument of %qs intrinsic at %L must be an "
5327 "interoperable data entity: %s",
5328 gfc_current_intrinsic_arg[0]->name, gfc_current_intrinsic,
5329 &arg->where, msg);
5330 return false;
5333 if (arg->ts.type == BT_ASSUMED)
5335 gfc_error ("%qs argument of %qs intrinsic at %L shall not be "
5336 "TYPE(*)",
5337 gfc_current_intrinsic_arg[0]->name, gfc_current_intrinsic,
5338 &arg->where);
5339 return false;
5342 if (arg->rank && arg->expr_type == EXPR_VARIABLE
5343 && arg->symtree->n.sym->as != NULL
5344 && arg->symtree->n.sym->as->type == AS_ASSUMED_SIZE && arg->ref
5345 && arg->ref->type == REF_ARRAY && arg->ref->u.ar.type == AR_FULL)
5347 gfc_error ("%qs argument of %qs intrinsic at %L shall not be an "
5348 "assumed-size array", gfc_current_intrinsic_arg[0]->name,
5349 gfc_current_intrinsic, &arg->where);
5350 return false;
5353 return true;
5357 bool
5358 gfc_check_c_associated (gfc_expr *c_ptr_1, gfc_expr *c_ptr_2)
5360 if (c_ptr_1->ts.type != BT_DERIVED
5361 || c_ptr_1->ts.u.derived->from_intmod != INTMOD_ISO_C_BINDING
5362 || (c_ptr_1->ts.u.derived->intmod_sym_id != ISOCBINDING_PTR
5363 && c_ptr_1->ts.u.derived->intmod_sym_id != ISOCBINDING_FUNPTR))
5365 gfc_error ("Argument C_PTR_1 at %L to C_ASSOCIATED shall have the "
5366 "type TYPE(C_PTR) or TYPE(C_FUNPTR)", &c_ptr_1->where);
5367 return false;
5370 if (!scalar_check (c_ptr_1, 0))
5371 return false;
5373 if (c_ptr_2
5374 && (c_ptr_2->ts.type != BT_DERIVED
5375 || c_ptr_2->ts.u.derived->from_intmod != INTMOD_ISO_C_BINDING
5376 || (c_ptr_1->ts.u.derived->intmod_sym_id
5377 != c_ptr_2->ts.u.derived->intmod_sym_id)))
5379 gfc_error ("Argument C_PTR_2 at %L to C_ASSOCIATED shall have the "
5380 "same type as C_PTR_1: %s instead of %s", &c_ptr_1->where,
5381 gfc_typename (&c_ptr_1->ts),
5382 gfc_typename (&c_ptr_2->ts));
5383 return false;
5386 if (c_ptr_2 && !scalar_check (c_ptr_2, 1))
5387 return false;
5389 return true;
5393 bool
5394 gfc_check_c_f_pointer (gfc_expr *cptr, gfc_expr *fptr, gfc_expr *shape)
5396 symbol_attribute attr;
5397 const char *msg;
5399 if (cptr->ts.type != BT_DERIVED
5400 || cptr->ts.u.derived->from_intmod != INTMOD_ISO_C_BINDING
5401 || cptr->ts.u.derived->intmod_sym_id != ISOCBINDING_PTR)
5403 gfc_error ("Argument CPTR at %L to C_F_POINTER shall have the "
5404 "type TYPE(C_PTR)", &cptr->where);
5405 return false;
5408 if (!scalar_check (cptr, 0))
5409 return false;
5411 attr = gfc_expr_attr (fptr);
5413 if (!attr.pointer)
5415 gfc_error ("Argument FPTR at %L to C_F_POINTER must be a pointer",
5416 &fptr->where);
5417 return false;
5420 if (fptr->ts.type == BT_CLASS)
5422 gfc_error ("FPTR argument at %L to C_F_POINTER shall not be polymorphic",
5423 &fptr->where);
5424 return false;
5427 if (gfc_is_coindexed (fptr))
5429 gfc_error ("Argument FPTR at %L to C_F_POINTER shall not be "
5430 "coindexed", &fptr->where);
5431 return false;
5434 if (fptr->rank == 0 && shape)
5436 gfc_error ("Unexpected SHAPE argument at %L to C_F_POINTER with scalar "
5437 "FPTR", &fptr->where);
5438 return false;
5440 else if (fptr->rank && !shape)
5442 gfc_error ("Expected SHAPE argument to C_F_POINTER with array "
5443 "FPTR at %L", &fptr->where);
5444 return false;
5447 if (shape && !rank_check (shape, 2, 1))
5448 return false;
5450 if (shape && !type_check (shape, 2, BT_INTEGER))
5451 return false;
5453 if (shape)
5455 mpz_t size;
5456 if (gfc_array_size (shape, &size))
5458 if (mpz_cmp_ui (size, fptr->rank) != 0)
5460 mpz_clear (size);
5461 gfc_error ("SHAPE argument at %L to C_F_POINTER must have the same "
5462 "size as the RANK of FPTR", &shape->where);
5463 return false;
5465 mpz_clear (size);
5469 if (fptr->ts.type == BT_CLASS)
5471 gfc_error ("Polymorphic FPTR at %L to C_F_POINTER", &fptr->where);
5472 return false;
5475 if (fptr->rank > 0 && !is_c_interoperable (fptr, &msg, false, true))
5476 return gfc_notify_std (GFC_STD_F2018, "Noninteroperable array FPTR "
5477 "at %L to C_F_POINTER: %s", &fptr->where, msg);
5479 return true;
5483 bool
5484 gfc_check_c_f_procpointer (gfc_expr *cptr, gfc_expr *fptr)
5486 symbol_attribute attr;
5488 if (cptr->ts.type != BT_DERIVED
5489 || cptr->ts.u.derived->from_intmod != INTMOD_ISO_C_BINDING
5490 || cptr->ts.u.derived->intmod_sym_id != ISOCBINDING_FUNPTR)
5492 gfc_error ("Argument CPTR at %L to C_F_PROCPOINTER shall have the "
5493 "type TYPE(C_FUNPTR)", &cptr->where);
5494 return false;
5497 if (!scalar_check (cptr, 0))
5498 return false;
5500 attr = gfc_expr_attr (fptr);
5502 if (!attr.proc_pointer)
5504 gfc_error ("Argument FPTR at %L to C_F_PROCPOINTER shall be a procedure "
5505 "pointer", &fptr->where);
5506 return false;
5509 if (gfc_is_coindexed (fptr))
5511 gfc_error ("Argument FPTR at %L to C_F_PROCPOINTER shall not be "
5512 "coindexed", &fptr->where);
5513 return false;
5516 if (!attr.is_bind_c)
5517 return gfc_notify_std (GFC_STD_F2018, "Noninteroperable procedure "
5518 "pointer at %L to C_F_PROCPOINTER", &fptr->where);
5520 return true;
5524 bool
5525 gfc_check_c_funloc (gfc_expr *x)
5527 symbol_attribute attr;
5529 if (gfc_is_coindexed (x))
5531 gfc_error ("Argument X at %L to C_FUNLOC shall not be "
5532 "coindexed", &x->where);
5533 return false;
5536 attr = gfc_expr_attr (x);
5538 if (attr.function && !attr.proc_pointer && x->expr_type == EXPR_VARIABLE
5539 && x->symtree->n.sym == x->symtree->n.sym->result)
5540 for (gfc_namespace *ns = gfc_current_ns; ns; ns = ns->parent)
5541 if (x->symtree->n.sym == ns->proc_name)
5543 gfc_error ("Function result %qs at %L is invalid as X argument "
5544 "to C_FUNLOC", x->symtree->n.sym->name, &x->where);
5545 return false;
5548 if (attr.flavor != FL_PROCEDURE)
5550 gfc_error ("Argument X at %L to C_FUNLOC shall be a procedure "
5551 "or a procedure pointer", &x->where);
5552 return false;
5555 if (!attr.is_bind_c)
5556 return gfc_notify_std (GFC_STD_F2018, "Noninteroperable procedure "
5557 "at %L to C_FUNLOC", &x->where);
5558 return true;
5562 bool
5563 gfc_check_c_loc (gfc_expr *x)
5565 symbol_attribute attr;
5566 const char *msg;
5568 if (gfc_is_coindexed (x))
5570 gfc_error ("Argument X at %L to C_LOC shall not be coindexed", &x->where);
5571 return false;
5574 if (x->ts.type == BT_CLASS)
5576 gfc_error ("X argument at %L to C_LOC shall not be polymorphic",
5577 &x->where);
5578 return false;
5581 attr = gfc_expr_attr (x);
5583 if (!attr.pointer
5584 && (x->expr_type != EXPR_VARIABLE || !attr.target
5585 || attr.flavor == FL_PARAMETER))
5587 gfc_error ("Argument X at %L to C_LOC shall have either "
5588 "the POINTER or the TARGET attribute", &x->where);
5589 return false;
5592 if (x->ts.type == BT_CHARACTER
5593 && gfc_var_strlen (x) == 0)
5595 gfc_error ("Argument X at %L to C_LOC shall be not be a zero-sized "
5596 "string", &x->where);
5597 return false;
5600 if (!is_c_interoperable (x, &msg, true, false))
5602 if (x->ts.type == BT_CLASS)
5604 gfc_error ("Argument at %L to C_LOC shall not be polymorphic",
5605 &x->where);
5606 return false;
5609 if (x->rank
5610 && !gfc_notify_std (GFC_STD_F2018,
5611 "Noninteroperable array at %L as"
5612 " argument to C_LOC: %s", &x->where, msg))
5613 return false;
5615 else if (x->rank > 0 && gfc_notification_std (GFC_STD_F2008))
5617 gfc_array_ref *ar = gfc_find_array_ref (x);
5619 if (ar->as->type != AS_EXPLICIT && ar->as->type != AS_ASSUMED_SIZE
5620 && !attr.allocatable
5621 && !gfc_notify_std (GFC_STD_F2008,
5622 "Array of interoperable type at %L "
5623 "to C_LOC which is nonallocatable and neither "
5624 "assumed size nor explicit size", &x->where))
5625 return false;
5626 else if (ar->type != AR_FULL
5627 && !gfc_notify_std (GFC_STD_F2008, "Array section at %L "
5628 "to C_LOC", &x->where))
5629 return false;
5632 return true;
5636 bool
5637 gfc_check_sleep_sub (gfc_expr *seconds)
5639 if (!type_check (seconds, 0, BT_INTEGER))
5640 return false;
5642 if (!scalar_check (seconds, 0))
5643 return false;
5645 return true;
5648 bool
5649 gfc_check_sngl (gfc_expr *a)
5651 if (!type_check (a, 0, BT_REAL))
5652 return false;
5654 if ((a->ts.kind != gfc_default_double_kind)
5655 && !gfc_notify_std (GFC_STD_GNU, "non double precision "
5656 "REAL argument to %s intrinsic at %L",
5657 gfc_current_intrinsic, &a->where))
5658 return false;
5660 return true;
5663 bool
5664 gfc_check_spread (gfc_expr *source, gfc_expr *dim, gfc_expr *ncopies)
5666 if (gfc_invalid_null_arg (source))
5667 return false;
5669 if (source->rank >= GFC_MAX_DIMENSIONS)
5671 gfc_error ("%qs argument of %qs intrinsic at %L must be less "
5672 "than rank %d", gfc_current_intrinsic_arg[0]->name,
5673 gfc_current_intrinsic, &source->where, GFC_MAX_DIMENSIONS);
5675 return false;
5678 if (dim == NULL)
5679 return false;
5681 if (!dim_check (dim, 1, false))
5682 return false;
5684 /* dim_rank_check() does not apply here. */
5685 if (dim
5686 && dim->expr_type == EXPR_CONSTANT
5687 && (mpz_cmp_ui (dim->value.integer, 1) < 0
5688 || mpz_cmp_ui (dim->value.integer, source->rank + 1) > 0))
5690 gfc_error ("%qs argument of %qs intrinsic at %L is not a valid "
5691 "dimension index", gfc_current_intrinsic_arg[1]->name,
5692 gfc_current_intrinsic, &dim->where);
5693 return false;
5696 if (!type_check (ncopies, 2, BT_INTEGER))
5697 return false;
5699 if (!scalar_check (ncopies, 2))
5700 return false;
5702 return true;
5706 /* Functions for checking FGETC, FPUTC, FGET and FPUT (subroutines and
5707 functions). */
5709 bool
5710 arg_strlen_is_zero (gfc_expr *c, int n)
5712 if (gfc_var_strlen (c) == 0)
5714 gfc_error ("%qs argument of %qs intrinsic at %L must have "
5715 "length at least 1", gfc_current_intrinsic_arg[n]->name,
5716 gfc_current_intrinsic, &c->where);
5717 return true;
5719 return false;
5722 bool
5723 gfc_check_fgetputc_sub (gfc_expr *unit, gfc_expr *c, gfc_expr *status)
5725 if (!type_check (unit, 0, BT_INTEGER))
5726 return false;
5728 if (!scalar_check (unit, 0))
5729 return false;
5731 if (!type_check (c, 1, BT_CHARACTER))
5732 return false;
5733 if (!kind_value_check (c, 1, gfc_default_character_kind))
5734 return false;
5735 if (strcmp (gfc_current_intrinsic, "fgetc") == 0
5736 && !variable_check (c, 1, false))
5737 return false;
5738 if (arg_strlen_is_zero (c, 1))
5739 return false;
5741 if (status == NULL)
5742 return true;
5744 if (!type_check (status, 2, BT_INTEGER)
5745 || !kind_value_check (status, 2, gfc_default_integer_kind)
5746 || !scalar_check (status, 2)
5747 || !variable_check (status, 2, false))
5748 return false;
5750 return true;
5754 bool
5755 gfc_check_fgetputc (gfc_expr *unit, gfc_expr *c)
5757 return gfc_check_fgetputc_sub (unit, c, NULL);
5761 bool
5762 gfc_check_fgetput_sub (gfc_expr *c, gfc_expr *status)
5764 if (!type_check (c, 0, BT_CHARACTER))
5765 return false;
5766 if (!kind_value_check (c, 0, gfc_default_character_kind))
5767 return false;
5768 if (strcmp (gfc_current_intrinsic, "fget") == 0
5769 && !variable_check (c, 0, false))
5770 return false;
5771 if (arg_strlen_is_zero (c, 0))
5772 return false;
5774 if (status == NULL)
5775 return true;
5777 if (!type_check (status, 1, BT_INTEGER)
5778 || !kind_value_check (status, 1, gfc_default_integer_kind)
5779 || !scalar_check (status, 1)
5780 || !variable_check (status, 1, false))
5781 return false;
5783 return true;
5787 bool
5788 gfc_check_fgetput (gfc_expr *c)
5790 return gfc_check_fgetput_sub (c, NULL);
5794 bool
5795 gfc_check_fseek_sub (gfc_expr *unit, gfc_expr *offset, gfc_expr *whence, gfc_expr *status)
5797 if (!type_check (unit, 0, BT_INTEGER))
5798 return false;
5800 if (!scalar_check (unit, 0))
5801 return false;
5803 if (!type_check (offset, 1, BT_INTEGER))
5804 return false;
5806 if (!scalar_check (offset, 1))
5807 return false;
5809 if (!type_check (whence, 2, BT_INTEGER))
5810 return false;
5812 if (!scalar_check (whence, 2))
5813 return false;
5815 if (status == NULL)
5816 return true;
5818 if (!type_check (status, 3, BT_INTEGER))
5819 return false;
5821 if (!kind_value_check (status, 3, 4))
5822 return false;
5824 if (!scalar_check (status, 3))
5825 return false;
5827 return true;
5832 bool
5833 gfc_check_fstat (gfc_expr *unit, gfc_expr *array)
5835 if (!type_check (unit, 0, BT_INTEGER))
5836 return false;
5838 if (!scalar_check (unit, 0))
5839 return false;
5841 if (!type_check (array, 1, BT_INTEGER)
5842 || !kind_value_check (unit, 0, gfc_default_integer_kind))
5843 return false;
5845 if (!array_check (array, 1))
5846 return false;
5848 return true;
5852 bool
5853 gfc_check_fstat_sub (gfc_expr *unit, gfc_expr *array, gfc_expr *status)
5855 if (!type_check (unit, 0, BT_INTEGER))
5856 return false;
5858 if (!scalar_check (unit, 0))
5859 return false;
5861 if (!type_check (array, 1, BT_INTEGER)
5862 || !kind_value_check (array, 1, gfc_default_integer_kind))
5863 return false;
5865 if (!array_check (array, 1))
5866 return false;
5868 if (status == NULL)
5869 return true;
5871 if (!type_check (status, 2, BT_INTEGER)
5872 || !kind_value_check (status, 2, gfc_default_integer_kind))
5873 return false;
5875 if (!scalar_check (status, 2))
5876 return false;
5878 return true;
5882 bool
5883 gfc_check_ftell (gfc_expr *unit)
5885 if (!type_check (unit, 0, BT_INTEGER))
5886 return false;
5888 if (!scalar_check (unit, 0))
5889 return false;
5891 return true;
5895 bool
5896 gfc_check_ftell_sub (gfc_expr *unit, gfc_expr *offset)
5898 if (!type_check (unit, 0, BT_INTEGER))
5899 return false;
5901 if (!scalar_check (unit, 0))
5902 return false;
5904 if (!type_check (offset, 1, BT_INTEGER))
5905 return false;
5907 if (!scalar_check (offset, 1))
5908 return false;
5910 return true;
5914 bool
5915 gfc_check_stat (gfc_expr *name, gfc_expr *array)
5917 if (!type_check (name, 0, BT_CHARACTER))
5918 return false;
5919 if (!kind_value_check (name, 0, gfc_default_character_kind))
5920 return false;
5922 if (!type_check (array, 1, BT_INTEGER)
5923 || !kind_value_check (array, 1, gfc_default_integer_kind))
5924 return false;
5926 if (!array_check (array, 1))
5927 return false;
5929 return true;
5933 bool
5934 gfc_check_stat_sub (gfc_expr *name, gfc_expr *array, gfc_expr *status)
5936 if (!type_check (name, 0, BT_CHARACTER))
5937 return false;
5938 if (!kind_value_check (name, 0, gfc_default_character_kind))
5939 return false;
5941 if (!type_check (array, 1, BT_INTEGER)
5942 || !kind_value_check (array, 1, gfc_default_integer_kind))
5943 return false;
5945 if (!array_check (array, 1))
5946 return false;
5948 if (status == NULL)
5949 return true;
5951 if (!type_check (status, 2, BT_INTEGER)
5952 || !kind_value_check (array, 1, gfc_default_integer_kind))
5953 return false;
5955 if (!scalar_check (status, 2))
5956 return false;
5958 return true;
5962 bool
5963 gfc_check_image_index (gfc_expr *coarray, gfc_expr *sub)
5965 mpz_t nelems;
5967 if (flag_coarray == GFC_FCOARRAY_NONE)
5969 gfc_fatal_error ("Coarrays disabled at %C, use %<-fcoarray=%> to enable");
5970 return false;
5973 if (!coarray_check (coarray, 0))
5974 return false;
5976 if (sub->rank != 1)
5978 gfc_error ("%s argument to IMAGE_INDEX must be a rank one array at %L",
5979 gfc_current_intrinsic_arg[1]->name, &sub->where);
5980 return false;
5983 if (sub->ts.type != BT_INTEGER)
5985 gfc_error ("Type of %s argument of IMAGE_INDEX at %L shall be INTEGER",
5986 gfc_current_intrinsic_arg[1]->name, &sub->where);
5987 return false;
5990 if (gfc_array_size (sub, &nelems))
5992 int corank = gfc_get_corank (coarray);
5994 if (mpz_cmp_ui (nelems, corank) != 0)
5996 gfc_error ("The number of array elements of the SUB argument to "
5997 "IMAGE_INDEX at %L shall be %d (corank) not %d",
5998 &sub->where, corank, (int) mpz_get_si (nelems));
5999 mpz_clear (nelems);
6000 return false;
6002 mpz_clear (nelems);
6005 return true;
6009 bool
6010 gfc_check_num_images (gfc_expr *distance, gfc_expr *failed)
6012 if (flag_coarray == GFC_FCOARRAY_NONE)
6014 gfc_fatal_error ("Coarrays disabled at %C, use %<-fcoarray=%> to enable");
6015 return false;
6018 if (distance)
6020 if (!type_check (distance, 0, BT_INTEGER))
6021 return false;
6023 if (!nonnegative_check ("DISTANCE", distance))
6024 return false;
6026 if (!scalar_check (distance, 0))
6027 return false;
6029 if (!gfc_notify_std (GFC_STD_F2018, "DISTANCE= argument to "
6030 "NUM_IMAGES at %L", &distance->where))
6031 return false;
6034 if (failed)
6036 if (!type_check (failed, 1, BT_LOGICAL))
6037 return false;
6039 if (!scalar_check (failed, 1))
6040 return false;
6042 if (!gfc_notify_std (GFC_STD_F2018, "FAILED= argument to "
6043 "NUM_IMAGES at %L", &failed->where))
6044 return false;
6047 return true;
6051 bool
6052 gfc_check_team_number (gfc_expr *team)
6054 if (flag_coarray == GFC_FCOARRAY_NONE)
6056 gfc_fatal_error ("Coarrays disabled at %C, use %<-fcoarray=%> to enable");
6057 return false;
6060 if (team)
6062 if (team->ts.type != BT_DERIVED
6063 || team->ts.u.derived->from_intmod != INTMOD_ISO_FORTRAN_ENV
6064 || team->ts.u.derived->intmod_sym_id != ISOFORTRAN_TEAM_TYPE)
6066 gfc_error ("TEAM argument at %L to the intrinsic TEAM_NUMBER "
6067 "shall be of type TEAM_TYPE", &team->where);
6068 return false;
6071 else
6072 return true;
6074 return true;
6078 bool
6079 gfc_check_this_image (gfc_expr *coarray, gfc_expr *dim, gfc_expr *distance)
6081 if (flag_coarray == GFC_FCOARRAY_NONE)
6083 gfc_fatal_error ("Coarrays disabled at %C, use %<-fcoarray=%> to enable");
6084 return false;
6087 if (coarray == NULL && dim == NULL && distance == NULL)
6088 return true;
6090 if (dim != NULL && coarray == NULL)
6092 gfc_error ("DIM argument without COARRAY argument not allowed for "
6093 "THIS_IMAGE intrinsic at %L", &dim->where);
6094 return false;
6097 if (distance && (coarray || dim))
6099 gfc_error ("The DISTANCE argument may not be specified together with the "
6100 "COARRAY or DIM argument in intrinsic at %L",
6101 &distance->where);
6102 return false;
6105 /* Assume that we have "this_image (distance)". */
6106 if (coarray && !gfc_is_coarray (coarray) && coarray->ts.type == BT_INTEGER)
6108 if (dim)
6110 gfc_error ("Unexpected DIM argument with noncoarray argument at %L",
6111 &coarray->where);
6112 return false;
6114 distance = coarray;
6117 if (distance)
6119 if (!type_check (distance, 2, BT_INTEGER))
6120 return false;
6122 if (!nonnegative_check ("DISTANCE", distance))
6123 return false;
6125 if (!scalar_check (distance, 2))
6126 return false;
6128 if (!gfc_notify_std (GFC_STD_F2018, "DISTANCE= argument to "
6129 "THIS_IMAGE at %L", &distance->where))
6130 return false;
6132 return true;
6135 if (!coarray_check (coarray, 0))
6136 return false;
6138 if (dim != NULL)
6140 if (!dim_check (dim, 1, false))
6141 return false;
6143 if (!dim_corank_check (dim, coarray))
6144 return false;
6147 return true;
6150 /* Calculate the sizes for transfer, used by gfc_check_transfer and also
6151 by gfc_simplify_transfer. Return false if we cannot do so. */
6153 bool
6154 gfc_calculate_transfer_sizes (gfc_expr *source, gfc_expr *mold, gfc_expr *size,
6155 size_t *source_size, size_t *result_size,
6156 size_t *result_length_p)
6158 size_t result_elt_size;
6160 if (source->expr_type == EXPR_FUNCTION)
6161 return false;
6163 if (size && size->expr_type != EXPR_CONSTANT)
6164 return false;
6166 /* Calculate the size of the source. */
6167 if (!gfc_target_expr_size (source, source_size))
6168 return false;
6170 /* Determine the size of the element. */
6171 if (!gfc_element_size (mold, &result_elt_size))
6172 return false;
6174 /* If the storage size of SOURCE is greater than zero and MOLD is an array,
6175 * a scalar with the type and type parameters of MOLD shall not have a
6176 * storage size equal to zero.
6177 * If MOLD is a scalar and SIZE is absent, the result is a scalar.
6178 * If MOLD is an array and SIZE is absent, the result is an array and of
6179 * rank one. Its size is as small as possible such that its physical
6180 * representation is not shorter than that of SOURCE.
6181 * If SIZE is present, the result is an array of rank one and size SIZE.
6183 if (result_elt_size == 0 && *source_size > 0
6184 && (mold->expr_type == EXPR_ARRAY || mold->rank))
6186 gfc_error ("%<MOLD%> argument of %<TRANSFER%> intrinsic at %L is an "
6187 "array and shall not have storage size 0 when %<SOURCE%> "
6188 "argument has size greater than 0", &mold->where);
6189 return false;
6192 if (result_elt_size == 0 && *source_size == 0 && !size)
6194 *result_size = 0;
6195 if (result_length_p)
6196 *result_length_p = 0;
6197 return true;
6200 if ((result_elt_size > 0 && (mold->expr_type == EXPR_ARRAY || mold->rank))
6201 || size)
6203 int result_length;
6205 if (size)
6206 result_length = (size_t)mpz_get_ui (size->value.integer);
6207 else
6209 result_length = *source_size / result_elt_size;
6210 if (result_length * result_elt_size < *source_size)
6211 result_length += 1;
6214 *result_size = result_length * result_elt_size;
6215 if (result_length_p)
6216 *result_length_p = result_length;
6218 else
6219 *result_size = result_elt_size;
6221 return true;
6225 bool
6226 gfc_check_transfer (gfc_expr *source, gfc_expr *mold, gfc_expr *size)
6228 size_t source_size;
6229 size_t result_size;
6231 if (gfc_invalid_null_arg (source))
6232 return false;
6234 /* SOURCE shall be a scalar or array of any type. */
6235 if (source->ts.type == BT_PROCEDURE
6236 && source->symtree->n.sym->attr.subroutine == 1)
6238 gfc_error ("%<SOURCE%> argument of %<TRANSFER%> intrinsic at %L "
6239 "must not be a %s", &source->where,
6240 gfc_basic_typename (source->ts.type));
6241 return false;
6244 if (source->ts.type == BT_BOZ && illegal_boz_arg (source))
6245 return false;
6247 if (mold->ts.type == BT_BOZ && illegal_boz_arg (mold))
6248 return false;
6250 if (gfc_invalid_null_arg (mold))
6251 return false;
6253 /* MOLD shall be a scalar or array of any type. */
6254 if (mold->ts.type == BT_PROCEDURE
6255 && mold->symtree->n.sym->attr.subroutine == 1)
6257 gfc_error ("%<MOLD%> argument of %<TRANSFER%> intrinsic at %L "
6258 "must not be a %s", &mold->where,
6259 gfc_basic_typename (mold->ts.type));
6260 return false;
6263 if (mold->ts.type == BT_HOLLERITH)
6265 gfc_error ("%<MOLD%> argument of %<TRANSFER%> intrinsic at %L must not be"
6266 " %s", &mold->where, gfc_basic_typename (BT_HOLLERITH));
6267 return false;
6270 /* SIZE (optional) shall be an integer scalar. The corresponding actual
6271 argument shall not be an optional dummy argument. */
6272 if (size != NULL)
6274 if (!type_check (size, 2, BT_INTEGER))
6276 if (size->ts.type == BT_BOZ)
6277 reset_boz (size);
6278 return false;
6281 if (!scalar_check (size, 2))
6282 return false;
6284 if (!nonoptional_check (size, 2))
6285 return false;
6288 if (!warn_surprising)
6289 return true;
6291 /* If we can't calculate the sizes, we cannot check any more.
6292 Return true for that case. */
6294 if (!gfc_calculate_transfer_sizes (source, mold, size, &source_size,
6295 &result_size, NULL))
6296 return true;
6298 if (source_size < result_size)
6299 gfc_warning (OPT_Wsurprising,
6300 "Intrinsic TRANSFER at %L has partly undefined result: "
6301 "source size %ld < result size %ld", &source->where,
6302 (long) source_size, (long) result_size);
6304 return true;
6308 bool
6309 gfc_check_transpose (gfc_expr *matrix)
6311 if (!rank_check (matrix, 0, 2))
6312 return false;
6314 return true;
6318 bool
6319 gfc_check_ubound (gfc_expr *array, gfc_expr *dim, gfc_expr *kind)
6321 if (!array_check (array, 0))
6322 return false;
6324 if (!dim_check (dim, 1, false))
6325 return false;
6327 if (!dim_rank_check (dim, array, 0))
6328 return false;
6330 if (!kind_check (kind, 2, BT_INTEGER))
6331 return false;
6332 if (kind && !gfc_notify_std (GFC_STD_F2003, "%qs intrinsic "
6333 "with KIND argument at %L",
6334 gfc_current_intrinsic, &kind->where))
6335 return false;
6337 return true;
6341 bool
6342 gfc_check_ucobound (gfc_expr *coarray, gfc_expr *dim, gfc_expr *kind)
6344 if (flag_coarray == GFC_FCOARRAY_NONE)
6346 gfc_fatal_error ("Coarrays disabled at %C, use %<-fcoarray=%> to enable");
6347 return false;
6350 if (!coarray_check (coarray, 0))
6351 return false;
6353 if (dim != NULL)
6355 if (!dim_check (dim, 1, false))
6356 return false;
6358 if (!dim_corank_check (dim, coarray))
6359 return false;
6362 if (!kind_check (kind, 2, BT_INTEGER))
6363 return false;
6365 return true;
6369 bool
6370 gfc_check_unpack (gfc_expr *vector, gfc_expr *mask, gfc_expr *field)
6372 mpz_t vector_size;
6374 if (!rank_check (vector, 0, 1))
6375 return false;
6377 if (!array_check (mask, 1))
6378 return false;
6380 if (!type_check (mask, 1, BT_LOGICAL))
6381 return false;
6383 if (!same_type_check (vector, 0, field, 2))
6384 return false;
6386 gfc_simplify_expr (mask, 0);
6388 if (mask->expr_type == EXPR_ARRAY
6389 && gfc_array_size (vector, &vector_size))
6391 int mask_true_count = 0;
6392 gfc_constructor *mask_ctor;
6393 mask_ctor = gfc_constructor_first (mask->value.constructor);
6394 while (mask_ctor)
6396 if (mask_ctor->expr->expr_type != EXPR_CONSTANT)
6398 mask_true_count = 0;
6399 break;
6402 if (mask_ctor->expr->value.logical)
6403 mask_true_count++;
6405 mask_ctor = gfc_constructor_next (mask_ctor);
6408 if (mpz_get_si (vector_size) < mask_true_count)
6410 gfc_error ("%qs argument of %qs intrinsic at %L must "
6411 "provide at least as many elements as there "
6412 "are .TRUE. values in %qs (%ld/%d)",
6413 gfc_current_intrinsic_arg[0]->name, gfc_current_intrinsic,
6414 &vector->where, gfc_current_intrinsic_arg[1]->name,
6415 mpz_get_si (vector_size), mask_true_count);
6416 return false;
6419 mpz_clear (vector_size);
6422 if (mask->rank != field->rank && field->rank != 0)
6424 gfc_error ("%qs argument of %qs intrinsic at %L must have "
6425 "the same rank as %qs or be a scalar",
6426 gfc_current_intrinsic_arg[2]->name, gfc_current_intrinsic,
6427 &field->where, gfc_current_intrinsic_arg[1]->name);
6428 return false;
6431 if (mask->rank == field->rank)
6433 int i;
6434 for (i = 0; i < field->rank; i++)
6435 if (! identical_dimen_shape (mask, i, field, i))
6437 gfc_error ("%qs and %qs arguments of %qs intrinsic at %L "
6438 "must have identical shape.",
6439 gfc_current_intrinsic_arg[2]->name,
6440 gfc_current_intrinsic_arg[1]->name, gfc_current_intrinsic,
6441 &field->where);
6445 return true;
6449 bool
6450 gfc_check_verify (gfc_expr *x, gfc_expr *y, gfc_expr *z, gfc_expr *kind)
6452 if (!type_check (x, 0, BT_CHARACTER))
6453 return false;
6455 if (!same_type_check (x, 0, y, 1))
6456 return false;
6458 if (z != NULL && !type_check (z, 2, BT_LOGICAL))
6459 return false;
6461 if (!kind_check (kind, 3, BT_INTEGER))
6462 return false;
6463 if (kind && !gfc_notify_std (GFC_STD_F2003, "%qs intrinsic "
6464 "with KIND argument at %L",
6465 gfc_current_intrinsic, &kind->where))
6466 return false;
6468 return true;
6472 bool
6473 gfc_check_trim (gfc_expr *x)
6475 if (!type_check (x, 0, BT_CHARACTER))
6476 return false;
6478 if (gfc_invalid_null_arg (x))
6479 return false;
6481 if (!scalar_check (x, 0))
6482 return false;
6484 return true;
6488 bool
6489 gfc_check_ttynam (gfc_expr *unit)
6491 if (!scalar_check (unit, 0))
6492 return false;
6494 if (!type_check (unit, 0, BT_INTEGER))
6495 return false;
6497 return true;
6501 /************* Check functions for intrinsic subroutines *************/
6503 bool
6504 gfc_check_cpu_time (gfc_expr *time)
6506 if (!scalar_check (time, 0))
6507 return false;
6509 if (!type_check (time, 0, BT_REAL))
6510 return false;
6512 if (!variable_check (time, 0, false))
6513 return false;
6515 return true;
6519 bool
6520 gfc_check_date_and_time (gfc_expr *date, gfc_expr *time,
6521 gfc_expr *zone, gfc_expr *values)
6523 if (date != NULL)
6525 if (!type_check (date, 0, BT_CHARACTER))
6526 return false;
6527 if (!kind_value_check (date, 0, gfc_default_character_kind))
6528 return false;
6529 if (!scalar_check (date, 0))
6530 return false;
6531 if (!variable_check (date, 0, false))
6532 return false;
6535 if (time != NULL)
6537 if (!type_check (time, 1, BT_CHARACTER))
6538 return false;
6539 if (!kind_value_check (time, 1, gfc_default_character_kind))
6540 return false;
6541 if (!scalar_check (time, 1))
6542 return false;
6543 if (!variable_check (time, 1, false))
6544 return false;
6547 if (zone != NULL)
6549 if (!type_check (zone, 2, BT_CHARACTER))
6550 return false;
6551 if (!kind_value_check (zone, 2, gfc_default_character_kind))
6552 return false;
6553 if (!scalar_check (zone, 2))
6554 return false;
6555 if (!variable_check (zone, 2, false))
6556 return false;
6559 if (values != NULL)
6561 if (!type_check (values, 3, BT_INTEGER))
6562 return false;
6563 if (!array_check (values, 3))
6564 return false;
6565 if (!rank_check (values, 3, 1))
6566 return false;
6567 if (!variable_check (values, 3, false))
6568 return false;
6569 if (!array_size_check (values, 3, 8))
6570 return false;
6572 if (values->ts.kind != gfc_default_integer_kind
6573 && !gfc_notify_std (GFC_STD_F2018, "VALUES argument of "
6574 "DATE_AND_TIME at %L has non-default kind",
6575 &values->where))
6576 return false;
6578 /* F2018:16.9.59 DATE_AND_TIME
6579 "VALUES shall be a rank-one array of type integer
6580 with a decimal exponent range of at least four."
6581 This is a hard limit also required by the implementation in
6582 libgfortran. */
6583 if (values->ts.kind < 2)
6585 gfc_error ("VALUES argument of DATE_AND_TIME at %L must have "
6586 "a decimal exponent range of at least four",
6587 &values->where);
6588 return false;
6592 return true;
6596 bool
6597 gfc_check_mvbits (gfc_expr *from, gfc_expr *frompos, gfc_expr *len,
6598 gfc_expr *to, gfc_expr *topos)
6600 if (!type_check (from, 0, BT_INTEGER))
6601 return false;
6603 if (!type_check (frompos, 1, BT_INTEGER))
6604 return false;
6606 if (!type_check (len, 2, BT_INTEGER))
6607 return false;
6609 if (!same_type_check (from, 0, to, 3))
6610 return false;
6612 if (!variable_check (to, 3, false))
6613 return false;
6615 if (!type_check (topos, 4, BT_INTEGER))
6616 return false;
6618 if (!nonnegative_check ("frompos", frompos))
6619 return false;
6621 if (!nonnegative_check ("topos", topos))
6622 return false;
6624 if (!nonnegative_check ("len", len))
6625 return false;
6627 if (!less_than_bitsize2 ("from", from, "frompos", frompos, "len", len))
6628 return false;
6630 if (!less_than_bitsize2 ("to", to, "topos", topos, "len", len))
6631 return false;
6633 return true;
6637 /* Check the arguments for RANDOM_INIT. */
6639 bool
6640 gfc_check_random_init (gfc_expr *repeatable, gfc_expr *image_distinct)
6642 if (!type_check (repeatable, 0, BT_LOGICAL))
6643 return false;
6645 if (!scalar_check (repeatable, 0))
6646 return false;
6648 if (!type_check (image_distinct, 1, BT_LOGICAL))
6649 return false;
6651 if (!scalar_check (image_distinct, 1))
6652 return false;
6654 return true;
6658 bool
6659 gfc_check_random_number (gfc_expr *harvest)
6661 if (!type_check (harvest, 0, BT_REAL))
6662 return false;
6664 if (!variable_check (harvest, 0, false))
6665 return false;
6667 return true;
6671 bool
6672 gfc_check_random_seed (gfc_expr *size, gfc_expr *put, gfc_expr *get)
6674 unsigned int nargs = 0, seed_size;
6675 locus *where = NULL;
6676 mpz_t put_size, get_size;
6678 /* Keep the number of bytes in sync with master_state in
6679 libgfortran/intrinsics/random.c. */
6680 seed_size = 32 / gfc_default_integer_kind;
6682 if (size != NULL)
6684 if (size->expr_type != EXPR_VARIABLE
6685 || !size->symtree->n.sym->attr.optional)
6686 nargs++;
6688 if (!scalar_check (size, 0))
6689 return false;
6691 if (!type_check (size, 0, BT_INTEGER))
6692 return false;
6694 if (!variable_check (size, 0, false))
6695 return false;
6697 if (!kind_value_check (size, 0, gfc_default_integer_kind))
6698 return false;
6701 if (put != NULL)
6703 if (put->expr_type != EXPR_VARIABLE
6704 || !put->symtree->n.sym->attr.optional)
6706 nargs++;
6707 where = &put->where;
6710 if (!array_check (put, 1))
6711 return false;
6713 if (!rank_check (put, 1, 1))
6714 return false;
6716 if (!type_check (put, 1, BT_INTEGER))
6717 return false;
6719 if (!kind_value_check (put, 1, gfc_default_integer_kind))
6720 return false;
6722 if (gfc_array_size (put, &put_size)
6723 && mpz_get_ui (put_size) < seed_size)
6724 gfc_error ("Size of %qs argument of %qs intrinsic at %L "
6725 "too small (%i/%i)",
6726 gfc_current_intrinsic_arg[1]->name, gfc_current_intrinsic,
6727 &put->where, (int) mpz_get_ui (put_size), seed_size);
6730 if (get != NULL)
6732 if (get->expr_type != EXPR_VARIABLE
6733 || !get->symtree->n.sym->attr.optional)
6735 nargs++;
6736 where = &get->where;
6739 if (!array_check (get, 2))
6740 return false;
6742 if (!rank_check (get, 2, 1))
6743 return false;
6745 if (!type_check (get, 2, BT_INTEGER))
6746 return false;
6748 if (!variable_check (get, 2, false))
6749 return false;
6751 if (!kind_value_check (get, 2, gfc_default_integer_kind))
6752 return false;
6754 if (gfc_array_size (get, &get_size)
6755 && mpz_get_ui (get_size) < seed_size)
6756 gfc_error ("Size of %qs argument of %qs intrinsic at %L "
6757 "too small (%i/%i)",
6758 gfc_current_intrinsic_arg[2]->name, gfc_current_intrinsic,
6759 &get->where, (int) mpz_get_ui (get_size), seed_size);
6762 /* RANDOM_SEED may not have more than one non-optional argument. */
6763 if (nargs > 1)
6764 gfc_error ("Too many arguments to %s at %L", gfc_current_intrinsic, where);
6766 return true;
6769 bool
6770 gfc_check_fe_runtime_error (gfc_actual_arglist *a)
6772 gfc_expr *e;
6773 size_t len, i;
6774 int num_percent, nargs;
6776 e = a->expr;
6777 if (e->expr_type != EXPR_CONSTANT)
6778 return true;
6780 len = e->value.character.length;
6781 if (e->value.character.string[len-1] != '\0')
6782 gfc_internal_error ("fe_runtime_error string must be null terminated");
6784 num_percent = 0;
6785 for (i=0; i<len-1; i++)
6786 if (e->value.character.string[i] == '%')
6787 num_percent ++;
6789 nargs = 0;
6790 for (; a; a = a->next)
6791 nargs ++;
6793 if (nargs -1 != num_percent)
6794 gfc_internal_error ("fe_runtime_error: Wrong number of arguments (%d instead of %d)",
6795 nargs, num_percent++);
6797 return true;
6800 bool
6801 gfc_check_second_sub (gfc_expr *time)
6803 if (!scalar_check (time, 0))
6804 return false;
6806 if (!type_check (time, 0, BT_REAL))
6807 return false;
6809 if (!kind_value_check (time, 0, 4))
6810 return false;
6812 return true;
6816 /* COUNT and COUNT_MAX of SYSTEM_CLOCK are scalar, default-kind integer
6817 variables in Fortran 95. In Fortran 2003 and later, they can be of any
6818 kind, and COUNT_RATE can be of type real. Note, count, count_rate, and
6819 count_max are all optional arguments */
6821 bool
6822 gfc_check_system_clock (gfc_expr *count, gfc_expr *count_rate,
6823 gfc_expr *count_max)
6825 int first_int_kind = -1;
6827 if (count != NULL)
6829 if (!scalar_check (count, 0))
6830 return false;
6832 if (!type_check (count, 0, BT_INTEGER))
6833 return false;
6835 if (count->ts.kind != gfc_default_integer_kind
6836 && !gfc_notify_std (GFC_STD_F2003, "COUNT argument to "
6837 "SYSTEM_CLOCK at %L has non-default kind",
6838 &count->where))
6839 return false;
6841 if (count->ts.kind < gfc_default_integer_kind
6842 && !gfc_notify_std (GFC_STD_F2023_DEL,
6843 "COUNT argument to SYSTEM_CLOCK at %L "
6844 "with kind smaller than default integer",
6845 &count->where))
6846 return false;
6848 if (!variable_check (count, 0, false))
6849 return false;
6851 first_int_kind = count->ts.kind;
6854 if (count_rate != NULL)
6856 if (!scalar_check (count_rate, 1))
6857 return false;
6859 if (!variable_check (count_rate, 1, false))
6860 return false;
6862 if (count_rate->ts.type == BT_REAL)
6864 if (!gfc_notify_std (GFC_STD_F2003, "Real COUNT_RATE argument to "
6865 "SYSTEM_CLOCK at %L", &count_rate->where))
6866 return false;
6868 else
6870 if (!type_check (count_rate, 1, BT_INTEGER))
6871 return false;
6873 if (count_rate->ts.kind != gfc_default_integer_kind
6874 && !gfc_notify_std (GFC_STD_F2003, "COUNT_RATE argument to "
6875 "SYSTEM_CLOCK at %L has non-default kind",
6876 &count_rate->where))
6877 return false;
6879 if (count_rate->ts.kind < gfc_default_integer_kind
6880 && !gfc_notify_std (GFC_STD_F2023_DEL,
6881 "COUNT_RATE argument to SYSTEM_CLOCK at %L "
6882 "with kind smaller than default integer",
6883 &count_rate->where))
6884 return false;
6886 if (first_int_kind < 0)
6887 first_int_kind = count_rate->ts.kind;
6892 if (count_max != NULL)
6894 if (!scalar_check (count_max, 2))
6895 return false;
6897 if (!type_check (count_max, 2, BT_INTEGER))
6898 return false;
6900 if (count_max->ts.kind != gfc_default_integer_kind
6901 && !gfc_notify_std (GFC_STD_F2003, "COUNT_MAX argument to "
6902 "SYSTEM_CLOCK at %L has non-default kind",
6903 &count_max->where))
6904 return false;
6906 if (!variable_check (count_max, 2, false))
6907 return false;
6909 if (count_max->ts.kind < gfc_default_integer_kind
6910 && !gfc_notify_std (GFC_STD_F2023_DEL,
6911 "COUNT_MAX argument to SYSTEM_CLOCK at %L "
6912 "with kind smaller than default integer",
6913 &count_max->where))
6914 return false;
6916 if (first_int_kind < 0)
6917 first_int_kind = count_max->ts.kind;
6920 if (first_int_kind > 0)
6922 if (count_rate
6923 && count_rate->ts.type == BT_INTEGER
6924 && count_rate->ts.kind != first_int_kind
6925 && !gfc_notify_std (GFC_STD_F2023_DEL,
6926 "integer arguments to SYSTEM_CLOCK at %L "
6927 "with different kind parameters",
6928 &count_rate->where))
6929 return false;
6931 if (count_max && count_max->ts.kind != first_int_kind
6932 && !gfc_notify_std (GFC_STD_F2023_DEL,
6933 "integer arguments to SYSTEM_CLOCK at %L "
6934 "with different kind parameters",
6935 &count_max->where))
6936 return false;
6939 return true;
6943 bool
6944 gfc_check_irand (gfc_expr *x)
6946 if (x == NULL)
6947 return true;
6949 if (!scalar_check (x, 0))
6950 return false;
6952 if (!type_check (x, 0, BT_INTEGER))
6953 return false;
6955 if (!kind_value_check (x, 0, 4))
6956 return false;
6958 return true;
6962 bool
6963 gfc_check_alarm_sub (gfc_expr *seconds, gfc_expr *handler, gfc_expr *status)
6965 if (!scalar_check (seconds, 0))
6966 return false;
6967 if (!type_check (seconds, 0, BT_INTEGER))
6968 return false;
6970 if (!int_or_proc_check (handler, 1))
6971 return false;
6972 if (handler->ts.type == BT_INTEGER && !scalar_check (handler, 1))
6973 return false;
6975 if (status == NULL)
6976 return true;
6978 if (!scalar_check (status, 2))
6979 return false;
6980 if (!type_check (status, 2, BT_INTEGER))
6981 return false;
6982 if (!kind_value_check (status, 2, gfc_default_integer_kind))
6983 return false;
6985 return true;
6989 bool
6990 gfc_check_rand (gfc_expr *x)
6992 if (x == NULL)
6993 return true;
6995 if (!scalar_check (x, 0))
6996 return false;
6998 if (!type_check (x, 0, BT_INTEGER))
6999 return false;
7001 if (!kind_value_check (x, 0, 4))
7002 return false;
7004 return true;
7008 bool
7009 gfc_check_srand (gfc_expr *x)
7011 if (!scalar_check (x, 0))
7012 return false;
7014 if (!type_check (x, 0, BT_INTEGER))
7015 return false;
7017 if (!kind_value_check (x, 0, 4))
7018 return false;
7020 return true;
7024 bool
7025 gfc_check_ctime_sub (gfc_expr *time, gfc_expr *result)
7027 if (!scalar_check (time, 0))
7028 return false;
7029 if (!type_check (time, 0, BT_INTEGER))
7030 return false;
7032 if (!type_check (result, 1, BT_CHARACTER))
7033 return false;
7034 if (!kind_value_check (result, 1, gfc_default_character_kind))
7035 return false;
7037 return true;
7041 bool
7042 gfc_check_dtime_etime (gfc_expr *x)
7044 if (!array_check (x, 0))
7045 return false;
7047 if (!rank_check (x, 0, 1))
7048 return false;
7050 if (!variable_check (x, 0, false))
7051 return false;
7053 if (!type_check (x, 0, BT_REAL))
7054 return false;
7056 if (!kind_value_check (x, 0, 4))
7057 return false;
7059 return true;
7063 bool
7064 gfc_check_dtime_etime_sub (gfc_expr *values, gfc_expr *time)
7066 if (!array_check (values, 0))
7067 return false;
7069 if (!rank_check (values, 0, 1))
7070 return false;
7072 if (!variable_check (values, 0, false))
7073 return false;
7075 if (!type_check (values, 0, BT_REAL))
7076 return false;
7078 if (!kind_value_check (values, 0, 4))
7079 return false;
7081 if (!scalar_check (time, 1))
7082 return false;
7084 if (!type_check (time, 1, BT_REAL))
7085 return false;
7087 if (!kind_value_check (time, 1, 4))
7088 return false;
7090 return true;
7094 bool
7095 gfc_check_fdate_sub (gfc_expr *date)
7097 if (!type_check (date, 0, BT_CHARACTER))
7098 return false;
7099 if (!kind_value_check (date, 0, gfc_default_character_kind))
7100 return false;
7102 return true;
7106 bool
7107 gfc_check_gerror (gfc_expr *msg)
7109 if (!type_check (msg, 0, BT_CHARACTER))
7110 return false;
7111 if (!kind_value_check (msg, 0, gfc_default_character_kind))
7112 return false;
7114 return true;
7118 bool
7119 gfc_check_getcwd_sub (gfc_expr *cwd, gfc_expr *status)
7121 if (!type_check (cwd, 0, BT_CHARACTER))
7122 return false;
7123 if (!kind_value_check (cwd, 0, gfc_default_character_kind))
7124 return false;
7126 if (status == NULL)
7127 return true;
7129 if (!scalar_check (status, 1))
7130 return false;
7132 if (!type_check (status, 1, BT_INTEGER))
7133 return false;
7135 return true;
7139 bool
7140 gfc_check_getarg (gfc_expr *pos, gfc_expr *value)
7142 if (!type_check (pos, 0, BT_INTEGER))
7143 return false;
7145 if (pos->ts.kind > gfc_default_integer_kind)
7147 gfc_error ("%qs argument of %qs intrinsic at %L must be of a kind "
7148 "not wider than the default kind (%d)",
7149 gfc_current_intrinsic_arg[0]->name, gfc_current_intrinsic,
7150 &pos->where, gfc_default_integer_kind);
7151 return false;
7154 if (!type_check (value, 1, BT_CHARACTER))
7155 return false;
7156 if (!kind_value_check (value, 1, gfc_default_character_kind))
7157 return false;
7159 return true;
7163 bool
7164 gfc_check_getlog (gfc_expr *msg)
7166 if (!type_check (msg, 0, BT_CHARACTER))
7167 return false;
7168 if (!kind_value_check (msg, 0, gfc_default_character_kind))
7169 return false;
7171 return true;
7175 bool
7176 gfc_check_exit (gfc_expr *status)
7178 if (status == NULL)
7179 return true;
7181 if (!type_check (status, 0, BT_INTEGER))
7182 return false;
7184 if (!scalar_check (status, 0))
7185 return false;
7187 return true;
7191 bool
7192 gfc_check_flush (gfc_expr *unit)
7194 if (unit == NULL)
7195 return true;
7197 if (!type_check (unit, 0, BT_INTEGER))
7198 return false;
7200 if (!scalar_check (unit, 0))
7201 return false;
7203 return true;
7207 bool
7208 gfc_check_free (gfc_expr *i)
7210 if (!type_check (i, 0, BT_INTEGER))
7211 return false;
7213 if (!scalar_check (i, 0))
7214 return false;
7216 return true;
7220 bool
7221 gfc_check_hostnm (gfc_expr *name)
7223 if (!type_check (name, 0, BT_CHARACTER))
7224 return false;
7225 if (!kind_value_check (name, 0, gfc_default_character_kind))
7226 return false;
7228 return true;
7232 bool
7233 gfc_check_hostnm_sub (gfc_expr *name, gfc_expr *status)
7235 if (!type_check (name, 0, BT_CHARACTER))
7236 return false;
7237 if (!kind_value_check (name, 0, gfc_default_character_kind))
7238 return false;
7240 if (status == NULL)
7241 return true;
7243 if (!scalar_check (status, 1))
7244 return false;
7246 if (!type_check (status, 1, BT_INTEGER))
7247 return false;
7249 return true;
7253 bool
7254 gfc_check_itime_idate (gfc_expr *values)
7256 if (!array_check (values, 0))
7257 return false;
7259 if (!rank_check (values, 0, 1))
7260 return false;
7262 if (!variable_check (values, 0, false))
7263 return false;
7265 if (!type_check (values, 0, BT_INTEGER))
7266 return false;
7268 if (!kind_value_check (values, 0, gfc_default_integer_kind))
7269 return false;
7271 return true;
7275 bool
7276 gfc_check_ltime_gmtime (gfc_expr *time, gfc_expr *values)
7278 if (!type_check (time, 0, BT_INTEGER))
7279 return false;
7281 if (!kind_value_check (time, 0, gfc_default_integer_kind))
7282 return false;
7284 if (!scalar_check (time, 0))
7285 return false;
7287 if (!array_check (values, 1))
7288 return false;
7290 if (!rank_check (values, 1, 1))
7291 return false;
7293 if (!variable_check (values, 1, false))
7294 return false;
7296 if (!type_check (values, 1, BT_INTEGER))
7297 return false;
7299 if (!kind_value_check (values, 1, gfc_default_integer_kind))
7300 return false;
7302 return true;
7306 bool
7307 gfc_check_ttynam_sub (gfc_expr *unit, gfc_expr *name)
7309 if (!scalar_check (unit, 0))
7310 return false;
7312 if (!type_check (unit, 0, BT_INTEGER))
7313 return false;
7315 if (!type_check (name, 1, BT_CHARACTER))
7316 return false;
7317 if (!kind_value_check (name, 1, gfc_default_character_kind))
7318 return false;
7320 return true;
7324 bool
7325 gfc_check_is_contiguous (gfc_expr *array)
7327 if (array->expr_type == EXPR_NULL)
7329 gfc_error ("Actual argument at %L of %qs intrinsic shall be an "
7330 "associated pointer", &array->where, gfc_current_intrinsic);
7331 return false;
7334 if (!array_check (array, 0))
7335 return false;
7337 return true;
7341 bool
7342 gfc_check_isatty (gfc_expr *unit)
7344 if (unit == NULL)
7345 return false;
7347 if (!type_check (unit, 0, BT_INTEGER))
7348 return false;
7350 if (!scalar_check (unit, 0))
7351 return false;
7353 return true;
7357 bool
7358 gfc_check_isnan (gfc_expr *x)
7360 if (!type_check (x, 0, BT_REAL))
7361 return false;
7363 return true;
7367 bool
7368 gfc_check_perror (gfc_expr *string)
7370 if (!type_check (string, 0, BT_CHARACTER))
7371 return false;
7372 if (!kind_value_check (string, 0, gfc_default_character_kind))
7373 return false;
7375 return true;
7379 bool
7380 gfc_check_umask (gfc_expr *mask)
7382 if (!type_check (mask, 0, BT_INTEGER))
7383 return false;
7385 if (!scalar_check (mask, 0))
7386 return false;
7388 return true;
7392 bool
7393 gfc_check_umask_sub (gfc_expr *mask, gfc_expr *old)
7395 if (!type_check (mask, 0, BT_INTEGER))
7396 return false;
7398 if (!scalar_check (mask, 0))
7399 return false;
7401 if (old == NULL)
7402 return true;
7404 if (!scalar_check (old, 1))
7405 return false;
7407 if (!type_check (old, 1, BT_INTEGER))
7408 return false;
7410 return true;
7414 bool
7415 gfc_check_unlink (gfc_expr *name)
7417 if (!type_check (name, 0, BT_CHARACTER))
7418 return false;
7419 if (!kind_value_check (name, 0, gfc_default_character_kind))
7420 return false;
7422 return true;
7426 bool
7427 gfc_check_unlink_sub (gfc_expr *name, gfc_expr *status)
7429 if (!type_check (name, 0, BT_CHARACTER))
7430 return false;
7431 if (!kind_value_check (name, 0, gfc_default_character_kind))
7432 return false;
7434 if (status == NULL)
7435 return true;
7437 if (!scalar_check (status, 1))
7438 return false;
7440 if (!type_check (status, 1, BT_INTEGER))
7441 return false;
7443 return true;
7447 bool
7448 gfc_check_signal (gfc_expr *number, gfc_expr *handler)
7450 if (!scalar_check (number, 0))
7451 return false;
7452 if (!type_check (number, 0, BT_INTEGER))
7453 return false;
7455 if (!int_or_proc_check (handler, 1))
7456 return false;
7457 if (handler->ts.type == BT_INTEGER && !scalar_check (handler, 1))
7458 return false;
7460 return true;
7464 bool
7465 gfc_check_signal_sub (gfc_expr *number, gfc_expr *handler, gfc_expr *status)
7467 if (!scalar_check (number, 0))
7468 return false;
7469 if (!type_check (number, 0, BT_INTEGER))
7470 return false;
7472 if (!int_or_proc_check (handler, 1))
7473 return false;
7474 if (handler->ts.type == BT_INTEGER && !scalar_check (handler, 1))
7475 return false;
7477 if (status == NULL)
7478 return true;
7480 if (!type_check (status, 2, BT_INTEGER))
7481 return false;
7482 if (!scalar_check (status, 2))
7483 return false;
7485 return true;
7489 bool
7490 gfc_check_system_sub (gfc_expr *cmd, gfc_expr *status)
7492 if (!type_check (cmd, 0, BT_CHARACTER))
7493 return false;
7494 if (!kind_value_check (cmd, 0, gfc_default_character_kind))
7495 return false;
7497 if (!scalar_check (status, 1))
7498 return false;
7500 if (!type_check (status, 1, BT_INTEGER))
7501 return false;
7503 if (!kind_value_check (status, 1, gfc_default_integer_kind))
7504 return false;
7506 return true;
7510 /* This is used for the GNU intrinsics AND, OR and XOR. */
7511 bool
7512 gfc_check_and (gfc_expr *i, gfc_expr *j)
7514 if (i->ts.type != BT_INTEGER
7515 && i->ts.type != BT_LOGICAL
7516 && i->ts.type != BT_BOZ)
7518 gfc_error ("%qs argument of %qs intrinsic at %L must be INTEGER, "
7519 "LOGICAL, or a BOZ literal constant",
7520 gfc_current_intrinsic_arg[0]->name,
7521 gfc_current_intrinsic, &i->where);
7522 return false;
7525 if (j->ts.type != BT_INTEGER
7526 && j->ts.type != BT_LOGICAL
7527 && j->ts.type != BT_BOZ)
7529 gfc_error ("%qs argument of %qs intrinsic at %L must be INTEGER, "
7530 "LOGICAL, or a BOZ literal constant",
7531 gfc_current_intrinsic_arg[1]->name,
7532 gfc_current_intrinsic, &j->where);
7533 return false;
7536 /* i and j cannot both be BOZ literal constants. */
7537 if (!boz_args_check (i, j))
7538 return false;
7540 /* If i is BOZ and j is integer, convert i to type of j. */
7541 if (i->ts.type == BT_BOZ)
7543 if (j->ts.type != BT_INTEGER)
7545 gfc_error ("%qs argument of %qs intrinsic at %L must be INTEGER",
7546 gfc_current_intrinsic_arg[1]->name,
7547 gfc_current_intrinsic, &j->where);
7548 reset_boz (i);
7549 return false;
7551 if (!gfc_boz2int (i, j->ts.kind))
7552 return false;
7555 /* If j is BOZ and i is integer, convert j to type of i. */
7556 if (j->ts.type == BT_BOZ)
7558 if (i->ts.type != BT_INTEGER)
7560 gfc_error ("%qs argument of %qs intrinsic at %L must be INTEGER",
7561 gfc_current_intrinsic_arg[0]->name,
7562 gfc_current_intrinsic, &j->where);
7563 reset_boz (j);
7564 return false;
7566 if (!gfc_boz2int (j, i->ts.kind))
7567 return false;
7570 if (!same_type_check (i, 0, j, 1, false))
7571 return false;
7573 if (!scalar_check (i, 0))
7574 return false;
7576 if (!scalar_check (j, 1))
7577 return false;
7579 return true;
7583 bool
7584 gfc_check_storage_size (gfc_expr *a, gfc_expr *kind)
7587 if (a->expr_type == EXPR_NULL)
7589 gfc_error ("Intrinsic function NULL at %L cannot be an actual "
7590 "argument to STORAGE_SIZE, because it returns a "
7591 "disassociated pointer", &a->where);
7592 return false;
7595 if (a->ts.type == BT_ASSUMED)
7597 gfc_error ("%qs argument of %qs intrinsic at %L shall not be TYPE(*)",
7598 gfc_current_intrinsic_arg[0]->name, gfc_current_intrinsic,
7599 &a->where);
7600 return false;
7603 if (a->ts.type == BT_PROCEDURE)
7605 gfc_error ("%qs argument of %qs intrinsic at %L shall not be a "
7606 "procedure", gfc_current_intrinsic_arg[0]->name,
7607 gfc_current_intrinsic, &a->where);
7608 return false;
7611 if (a->ts.type == BT_BOZ && illegal_boz_arg (a))
7612 return false;
7614 if (kind == NULL)
7615 return true;
7617 if (!type_check (kind, 1, BT_INTEGER))
7618 return false;
7620 if (!scalar_check (kind, 1))
7621 return false;
7623 if (kind->expr_type != EXPR_CONSTANT)
7625 gfc_error ("%qs argument of %qs intrinsic at %L must be a constant",
7626 gfc_current_intrinsic_arg[1]->name, gfc_current_intrinsic,
7627 &kind->where);
7628 return false;
7631 return true;