1 /* Simplify intrinsic functions at compile-time.
2 Copyright (C) 2000-2015 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
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
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/>. */
23 #include "coretypes.h"
24 #include "tm.h" /* For BITS_PER_UNIT. */
27 #include "intrinsic.h"
28 #include "target-memory.h"
29 #include "constructor.h"
30 #include "version.h" /* For version_string. */
33 gfc_expr gfc_bad_expr
;
35 static gfc_expr
*simplify_size (gfc_expr
*, gfc_expr
*, int);
38 /* Note that 'simplification' is not just transforming expressions.
39 For functions that are not simplified at compile time, range
40 checking is done if possible.
42 The return convention is that each simplification function returns:
44 A new expression node corresponding to the simplified arguments.
45 The original arguments are destroyed by the caller, and must not
46 be a part of the new expression.
48 NULL pointer indicating that no simplification was possible and
49 the original expression should remain intact.
51 An expression pointer to gfc_bad_expr (a static placeholder)
52 indicating that some error has prevented simplification. The
53 error is generated within the function and should be propagated
56 By the time a simplification function gets control, it has been
57 decided that the function call is really supposed to be the
58 intrinsic. No type checking is strictly necessary, since only
59 valid types will be passed on. On the other hand, a simplification
60 subroutine may have to look at the type of an argument as part of
63 Array arguments are only passed to these subroutines that implement
64 the simplification of transformational intrinsics.
66 The functions in this file don't have much comment with them, but
67 everything is reasonably straight-forward. The Standard, chapter 13
68 is the best comment you'll find for this file anyway. */
70 /* Range checks an expression node. If all goes well, returns the
71 node, otherwise returns &gfc_bad_expr and frees the node. */
74 range_check (gfc_expr
*result
, const char *name
)
79 if (result
->expr_type
!= EXPR_CONSTANT
)
82 switch (gfc_range_check (result
))
88 gfc_error ("Result of %s overflows its kind at %L", name
,
93 gfc_error ("Result of %s underflows its kind at %L", name
,
98 gfc_error ("Result of %s is NaN at %L", name
, &result
->where
);
102 gfc_error ("Result of %s gives range error for its kind at %L", name
,
107 gfc_free_expr (result
);
108 return &gfc_bad_expr
;
112 /* A helper function that gets an optional and possibly missing
113 kind parameter. Returns the kind, -1 if something went wrong. */
116 get_kind (bt type
, gfc_expr
*k
, const char *name
, int default_kind
)
123 if (k
->expr_type
!= EXPR_CONSTANT
)
125 gfc_error ("KIND parameter of %s at %L must be an initialization "
126 "expression", name
, &k
->where
);
130 if (gfc_extract_int (k
, &kind
) != NULL
131 || gfc_validate_kind (type
, kind
, true) < 0)
133 gfc_error ("Invalid KIND parameter of %s at %L", name
, &k
->where
);
141 /* Converts an mpz_t signed variable into an unsigned one, assuming
142 two's complement representations and a binary width of bitsize.
143 The conversion is a no-op unless x is negative; otherwise, it can
144 be accomplished by masking out the high bits. */
147 convert_mpz_to_unsigned (mpz_t x
, int bitsize
)
153 /* Confirm that no bits above the signed range are unset if we
154 are doing range checking. */
155 if (flag_range_check
!= 0)
156 gcc_assert (mpz_scan0 (x
, bitsize
-1) == ULONG_MAX
);
158 mpz_init_set_ui (mask
, 1);
159 mpz_mul_2exp (mask
, mask
, bitsize
);
160 mpz_sub_ui (mask
, mask
, 1);
162 mpz_and (x
, x
, mask
);
168 /* Confirm that no bits above the signed range are set. */
169 gcc_assert (mpz_scan1 (x
, bitsize
-1) == ULONG_MAX
);
174 /* Converts an mpz_t unsigned variable into a signed one, assuming
175 two's complement representations and a binary width of bitsize.
176 If the bitsize-1 bit is set, this is taken as a sign bit and
177 the number is converted to the corresponding negative number. */
180 gfc_convert_mpz_to_signed (mpz_t x
, int bitsize
)
184 /* Confirm that no bits above the unsigned range are set if we are
185 doing range checking. */
186 if (flag_range_check
!= 0)
187 gcc_assert (mpz_scan1 (x
, bitsize
) == ULONG_MAX
);
189 if (mpz_tstbit (x
, bitsize
- 1) == 1)
191 mpz_init_set_ui (mask
, 1);
192 mpz_mul_2exp (mask
, mask
, bitsize
);
193 mpz_sub_ui (mask
, mask
, 1);
195 /* We negate the number by hand, zeroing the high bits, that is
196 make it the corresponding positive number, and then have it
197 negated by GMP, giving the correct representation of the
200 mpz_add_ui (x
, x
, 1);
201 mpz_and (x
, x
, mask
);
210 /* In-place convert BOZ to REAL of the specified kind. */
213 convert_boz (gfc_expr
*x
, int kind
)
215 if (x
&& x
->ts
.type
== BT_INTEGER
&& x
->is_boz
)
222 if (!gfc_convert_boz (x
, &ts
))
223 return &gfc_bad_expr
;
230 /* Test that the expression is an constant array. */
233 is_constant_array_expr (gfc_expr
*e
)
240 if (e
->expr_type
!= EXPR_ARRAY
|| !gfc_is_constant_expr (e
))
243 for (c
= gfc_constructor_first (e
->value
.constructor
);
244 c
; c
= gfc_constructor_next (c
))
245 if (c
->expr
->expr_type
!= EXPR_CONSTANT
246 && c
->expr
->expr_type
!= EXPR_STRUCTURE
)
253 /* Initialize a transformational result expression with a given value. */
256 init_result_expr (gfc_expr
*e
, int init
, gfc_expr
*array
)
258 if (e
&& e
->expr_type
== EXPR_ARRAY
)
260 gfc_constructor
*ctor
= gfc_constructor_first (e
->value
.constructor
);
263 init_result_expr (ctor
->expr
, init
, array
);
264 ctor
= gfc_constructor_next (ctor
);
267 else if (e
&& e
->expr_type
== EXPR_CONSTANT
)
269 int i
= gfc_validate_kind (e
->ts
.type
, e
->ts
.kind
, false);
276 e
->value
.logical
= (init
? 1 : 0);
281 mpz_set (e
->value
.integer
, gfc_integer_kinds
[i
].min_int
);
282 else if (init
== INT_MAX
)
283 mpz_set (e
->value
.integer
, gfc_integer_kinds
[i
].huge
);
285 mpz_set_si (e
->value
.integer
, init
);
291 mpfr_set (e
->value
.real
, gfc_real_kinds
[i
].huge
, GFC_RND_MODE
);
292 mpfr_neg (e
->value
.real
, e
->value
.real
, GFC_RND_MODE
);
294 else if (init
== INT_MAX
)
295 mpfr_set (e
->value
.real
, gfc_real_kinds
[i
].huge
, GFC_RND_MODE
);
297 mpfr_set_si (e
->value
.real
, init
, GFC_RND_MODE
);
301 mpc_set_si (e
->value
.complex, init
, GFC_MPC_RND_MODE
);
307 gfc_expr
*len
= gfc_simplify_len (array
, NULL
);
308 gfc_extract_int (len
, &length
);
309 string
= gfc_get_wide_string (length
+ 1);
310 gfc_wide_memset (string
, 0, length
);
312 else if (init
== INT_MAX
)
314 gfc_expr
*len
= gfc_simplify_len (array
, NULL
);
315 gfc_extract_int (len
, &length
);
316 string
= gfc_get_wide_string (length
+ 1);
317 gfc_wide_memset (string
, 255, length
);
322 string
= gfc_get_wide_string (1);
325 string
[length
] = '\0';
326 e
->value
.character
.length
= length
;
327 e
->value
.character
.string
= string
;
339 /* Helper function for gfc_simplify_dot_product() and gfc_simplify_matmul;
340 if conj_a is true, the matrix_a is complex conjugated. */
343 compute_dot_product (gfc_expr
*matrix_a
, int stride_a
, int offset_a
,
344 gfc_expr
*matrix_b
, int stride_b
, int offset_b
,
347 gfc_expr
*result
, *a
, *b
, *c
;
349 result
= gfc_get_constant_expr (matrix_a
->ts
.type
, matrix_a
->ts
.kind
,
351 init_result_expr (result
, 0, NULL
);
353 a
= gfc_constructor_lookup_expr (matrix_a
->value
.constructor
, offset_a
);
354 b
= gfc_constructor_lookup_expr (matrix_b
->value
.constructor
, offset_b
);
357 /* Copying of expressions is required as operands are free'd
358 by the gfc_arith routines. */
359 switch (result
->ts
.type
)
362 result
= gfc_or (result
,
363 gfc_and (gfc_copy_expr (a
),
370 if (conj_a
&& a
->ts
.type
== BT_COMPLEX
)
371 c
= gfc_simplify_conjg (a
);
373 c
= gfc_copy_expr (a
);
374 result
= gfc_add (result
, gfc_multiply (c
, gfc_copy_expr (b
)));
381 offset_a
+= stride_a
;
382 a
= gfc_constructor_lookup_expr (matrix_a
->value
.constructor
, offset_a
);
384 offset_b
+= stride_b
;
385 b
= gfc_constructor_lookup_expr (matrix_b
->value
.constructor
, offset_b
);
392 /* Build a result expression for transformational intrinsics,
396 transformational_result (gfc_expr
*array
, gfc_expr
*dim
, bt type
,
397 int kind
, locus
* where
)
402 if (!dim
|| array
->rank
== 1)
403 return gfc_get_constant_expr (type
, kind
, where
);
405 result
= gfc_get_array_expr (type
, kind
, where
);
406 result
->shape
= gfc_copy_shape_excluding (array
->shape
, array
->rank
, dim
);
407 result
->rank
= array
->rank
- 1;
409 /* gfc_array_size() would count the number of elements in the constructor,
410 we have not built those yet. */
412 for (i
= 0; i
< result
->rank
; ++i
)
413 nelem
*= mpz_get_ui (result
->shape
[i
]);
415 for (i
= 0; i
< nelem
; ++i
)
417 gfc_constructor_append_expr (&result
->value
.constructor
,
418 gfc_get_constant_expr (type
, kind
, where
),
426 typedef gfc_expr
* (*transformational_op
)(gfc_expr
*, gfc_expr
*);
428 /* Wrapper function, implements 'op1 += 1'. Only called if MASK
429 of COUNT intrinsic is .TRUE..
431 Interface and implementation mimics arith functions as
432 gfc_add, gfc_multiply, etc. */
434 static gfc_expr
* gfc_count (gfc_expr
*op1
, gfc_expr
*op2
)
438 gcc_assert (op1
->ts
.type
== BT_INTEGER
);
439 gcc_assert (op2
->ts
.type
== BT_LOGICAL
);
440 gcc_assert (op2
->value
.logical
);
442 result
= gfc_copy_expr (op1
);
443 mpz_add_ui (result
->value
.integer
, result
->value
.integer
, 1);
451 /* Transforms an ARRAY with operation OP, according to MASK, to a
452 scalar RESULT. E.g. called if
454 REAL, PARAMETER :: array(n, m) = ...
455 REAL, PARAMETER :: s = SUM(array)
457 where OP == gfc_add(). */
460 simplify_transformation_to_scalar (gfc_expr
*result
, gfc_expr
*array
, gfc_expr
*mask
,
461 transformational_op op
)
464 gfc_constructor
*array_ctor
, *mask_ctor
;
466 /* Shortcut for constant .FALSE. MASK. */
468 && mask
->expr_type
== EXPR_CONSTANT
469 && !mask
->value
.logical
)
472 array_ctor
= gfc_constructor_first (array
->value
.constructor
);
474 if (mask
&& mask
->expr_type
== EXPR_ARRAY
)
475 mask_ctor
= gfc_constructor_first (mask
->value
.constructor
);
479 a
= array_ctor
->expr
;
480 array_ctor
= gfc_constructor_next (array_ctor
);
482 /* A constant MASK equals .TRUE. here and can be ignored. */
486 mask_ctor
= gfc_constructor_next (mask_ctor
);
487 if (!m
->value
.logical
)
491 result
= op (result
, gfc_copy_expr (a
));
497 /* Transforms an ARRAY with operation OP, according to MASK, to an
498 array RESULT. E.g. called if
500 REAL, PARAMETER :: array(n, m) = ...
501 REAL, PARAMETER :: s(n) = PROD(array, DIM=1)
503 where OP == gfc_multiply().
504 The result might be post processed using post_op. */
507 simplify_transformation_to_array (gfc_expr
*result
, gfc_expr
*array
, gfc_expr
*dim
,
508 gfc_expr
*mask
, transformational_op op
,
509 transformational_op post_op
)
512 int done
, i
, n
, arraysize
, resultsize
, dim_index
, dim_extent
, dim_stride
;
513 gfc_expr
**arrayvec
, **resultvec
, **base
, **src
, **dest
;
514 gfc_constructor
*array_ctor
, *mask_ctor
, *result_ctor
;
516 int count
[GFC_MAX_DIMENSIONS
], extent
[GFC_MAX_DIMENSIONS
],
517 sstride
[GFC_MAX_DIMENSIONS
], dstride
[GFC_MAX_DIMENSIONS
],
518 tmpstride
[GFC_MAX_DIMENSIONS
];
520 /* Shortcut for constant .FALSE. MASK. */
522 && mask
->expr_type
== EXPR_CONSTANT
523 && !mask
->value
.logical
)
526 /* Build an indexed table for array element expressions to minimize
527 linked-list traversal. Masked elements are set to NULL. */
528 gfc_array_size (array
, &size
);
529 arraysize
= mpz_get_ui (size
);
532 arrayvec
= XCNEWVEC (gfc_expr
*, arraysize
);
534 array_ctor
= gfc_constructor_first (array
->value
.constructor
);
536 if (mask
&& mask
->expr_type
== EXPR_ARRAY
)
537 mask_ctor
= gfc_constructor_first (mask
->value
.constructor
);
539 for (i
= 0; i
< arraysize
; ++i
)
541 arrayvec
[i
] = array_ctor
->expr
;
542 array_ctor
= gfc_constructor_next (array_ctor
);
546 if (!mask_ctor
->expr
->value
.logical
)
549 mask_ctor
= gfc_constructor_next (mask_ctor
);
553 /* Same for the result expression. */
554 gfc_array_size (result
, &size
);
555 resultsize
= mpz_get_ui (size
);
558 resultvec
= XCNEWVEC (gfc_expr
*, resultsize
);
559 result_ctor
= gfc_constructor_first (result
->value
.constructor
);
560 for (i
= 0; i
< resultsize
; ++i
)
562 resultvec
[i
] = result_ctor
->expr
;
563 result_ctor
= gfc_constructor_next (result_ctor
);
566 gfc_extract_int (dim
, &dim_index
);
567 dim_index
-= 1; /* zero-base index */
571 for (i
= 0, n
= 0; i
< array
->rank
; ++i
)
574 tmpstride
[i
] = (i
== 0) ? 1 : tmpstride
[i
-1] * mpz_get_si (array
->shape
[i
-1]);
577 dim_extent
= mpz_get_si (array
->shape
[i
]);
578 dim_stride
= tmpstride
[i
];
582 extent
[n
] = mpz_get_si (array
->shape
[i
]);
583 sstride
[n
] = tmpstride
[i
];
584 dstride
[n
] = (n
== 0) ? 1 : dstride
[n
-1] * extent
[n
-1];
593 for (src
= base
, n
= 0; n
< dim_extent
; src
+= dim_stride
, ++n
)
595 *dest
= op (*dest
, gfc_copy_expr (*src
));
602 while (!done
&& count
[n
] == extent
[n
])
605 base
-= sstride
[n
] * extent
[n
];
606 dest
-= dstride
[n
] * extent
[n
];
609 if (n
< result
->rank
)
620 /* Place updated expression in result constructor. */
621 result_ctor
= gfc_constructor_first (result
->value
.constructor
);
622 for (i
= 0; i
< resultsize
; ++i
)
625 result_ctor
->expr
= post_op (result_ctor
->expr
, resultvec
[i
]);
627 result_ctor
->expr
= resultvec
[i
];
628 result_ctor
= gfc_constructor_next (result_ctor
);
638 simplify_transformation (gfc_expr
*array
, gfc_expr
*dim
, gfc_expr
*mask
,
639 int init_val
, transformational_op op
)
643 if (!is_constant_array_expr (array
)
644 || !gfc_is_constant_expr (dim
))
648 && !is_constant_array_expr (mask
)
649 && mask
->expr_type
!= EXPR_CONSTANT
)
652 result
= transformational_result (array
, dim
, array
->ts
.type
,
653 array
->ts
.kind
, &array
->where
);
654 init_result_expr (result
, init_val
, NULL
);
656 return !dim
|| array
->rank
== 1 ?
657 simplify_transformation_to_scalar (result
, array
, mask
, op
) :
658 simplify_transformation_to_array (result
, array
, dim
, mask
, op
, NULL
);
662 /********************** Simplification functions *****************************/
665 gfc_simplify_abs (gfc_expr
*e
)
669 if (e
->expr_type
!= EXPR_CONSTANT
)
675 result
= gfc_get_constant_expr (BT_INTEGER
, e
->ts
.kind
, &e
->where
);
676 mpz_abs (result
->value
.integer
, e
->value
.integer
);
677 return range_check (result
, "IABS");
680 result
= gfc_get_constant_expr (BT_REAL
, e
->ts
.kind
, &e
->where
);
681 mpfr_abs (result
->value
.real
, e
->value
.real
, GFC_RND_MODE
);
682 return range_check (result
, "ABS");
685 gfc_set_model_kind (e
->ts
.kind
);
686 result
= gfc_get_constant_expr (BT_REAL
, e
->ts
.kind
, &e
->where
);
687 mpc_abs (result
->value
.real
, e
->value
.complex, GFC_RND_MODE
);
688 return range_check (result
, "CABS");
691 gfc_internal_error ("gfc_simplify_abs(): Bad type");
697 simplify_achar_char (gfc_expr
*e
, gfc_expr
*k
, const char *name
, bool ascii
)
701 bool too_large
= false;
703 if (e
->expr_type
!= EXPR_CONSTANT
)
706 kind
= get_kind (BT_CHARACTER
, k
, name
, gfc_default_character_kind
);
708 return &gfc_bad_expr
;
710 if (mpz_cmp_si (e
->value
.integer
, 0) < 0)
712 gfc_error ("Argument of %s function at %L is negative", name
,
714 return &gfc_bad_expr
;
717 if (ascii
&& warn_surprising
&& mpz_cmp_si (e
->value
.integer
, 127) > 0)
718 gfc_warning (OPT_Wsurprising
,
719 "Argument of %s function at %L outside of range [0,127]",
722 if (kind
== 1 && mpz_cmp_si (e
->value
.integer
, 255) > 0)
727 mpz_init_set_ui (t
, 2);
728 mpz_pow_ui (t
, t
, 32);
729 mpz_sub_ui (t
, t
, 1);
730 if (mpz_cmp (e
->value
.integer
, t
) > 0)
737 gfc_error ("Argument of %s function at %L is too large for the "
738 "collating sequence of kind %d", name
, &e
->where
, kind
);
739 return &gfc_bad_expr
;
742 result
= gfc_get_character_expr (kind
, &e
->where
, NULL
, 1);
743 result
->value
.character
.string
[0] = mpz_get_ui (e
->value
.integer
);
750 /* We use the processor's collating sequence, because all
751 systems that gfortran currently works on are ASCII. */
754 gfc_simplify_achar (gfc_expr
*e
, gfc_expr
*k
)
756 return simplify_achar_char (e
, k
, "ACHAR", true);
761 gfc_simplify_acos (gfc_expr
*x
)
765 if (x
->expr_type
!= EXPR_CONSTANT
)
771 if (mpfr_cmp_si (x
->value
.real
, 1) > 0
772 || mpfr_cmp_si (x
->value
.real
, -1) < 0)
774 gfc_error ("Argument of ACOS at %L must be between -1 and 1",
776 return &gfc_bad_expr
;
778 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
779 mpfr_acos (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
783 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
784 mpc_acos (result
->value
.complex, x
->value
.complex, GFC_MPC_RND_MODE
);
788 gfc_internal_error ("in gfc_simplify_acos(): Bad type");
791 return range_check (result
, "ACOS");
795 gfc_simplify_acosh (gfc_expr
*x
)
799 if (x
->expr_type
!= EXPR_CONSTANT
)
805 if (mpfr_cmp_si (x
->value
.real
, 1) < 0)
807 gfc_error ("Argument of ACOSH at %L must not be less than 1",
809 return &gfc_bad_expr
;
812 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
813 mpfr_acosh (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
817 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
818 mpc_acosh (result
->value
.complex, x
->value
.complex, GFC_MPC_RND_MODE
);
822 gfc_internal_error ("in gfc_simplify_acosh(): Bad type");
825 return range_check (result
, "ACOSH");
829 gfc_simplify_adjustl (gfc_expr
*e
)
835 if (e
->expr_type
!= EXPR_CONSTANT
)
838 len
= e
->value
.character
.length
;
840 for (count
= 0, i
= 0; i
< len
; ++i
)
842 ch
= e
->value
.character
.string
[i
];
848 result
= gfc_get_character_expr (e
->ts
.kind
, &e
->where
, NULL
, len
);
849 for (i
= 0; i
< len
- count
; ++i
)
850 result
->value
.character
.string
[i
] = e
->value
.character
.string
[count
+ i
];
857 gfc_simplify_adjustr (gfc_expr
*e
)
863 if (e
->expr_type
!= EXPR_CONSTANT
)
866 len
= e
->value
.character
.length
;
868 for (count
= 0, i
= len
- 1; i
>= 0; --i
)
870 ch
= e
->value
.character
.string
[i
];
876 result
= gfc_get_character_expr (e
->ts
.kind
, &e
->where
, NULL
, len
);
877 for (i
= 0; i
< count
; ++i
)
878 result
->value
.character
.string
[i
] = ' ';
880 for (i
= count
; i
< len
; ++i
)
881 result
->value
.character
.string
[i
] = e
->value
.character
.string
[i
- count
];
888 gfc_simplify_aimag (gfc_expr
*e
)
892 if (e
->expr_type
!= EXPR_CONSTANT
)
895 result
= gfc_get_constant_expr (BT_REAL
, e
->ts
.kind
, &e
->where
);
896 mpfr_set (result
->value
.real
, mpc_imagref (e
->value
.complex), GFC_RND_MODE
);
898 return range_check (result
, "AIMAG");
903 gfc_simplify_aint (gfc_expr
*e
, gfc_expr
*k
)
905 gfc_expr
*rtrunc
, *result
;
908 kind
= get_kind (BT_REAL
, k
, "AINT", e
->ts
.kind
);
910 return &gfc_bad_expr
;
912 if (e
->expr_type
!= EXPR_CONSTANT
)
915 rtrunc
= gfc_copy_expr (e
);
916 mpfr_trunc (rtrunc
->value
.real
, e
->value
.real
);
918 result
= gfc_real2real (rtrunc
, kind
);
920 gfc_free_expr (rtrunc
);
922 return range_check (result
, "AINT");
927 gfc_simplify_all (gfc_expr
*mask
, gfc_expr
*dim
)
929 return simplify_transformation (mask
, dim
, NULL
, true, gfc_and
);
934 gfc_simplify_dint (gfc_expr
*e
)
936 gfc_expr
*rtrunc
, *result
;
938 if (e
->expr_type
!= EXPR_CONSTANT
)
941 rtrunc
= gfc_copy_expr (e
);
942 mpfr_trunc (rtrunc
->value
.real
, e
->value
.real
);
944 result
= gfc_real2real (rtrunc
, gfc_default_double_kind
);
946 gfc_free_expr (rtrunc
);
948 return range_check (result
, "DINT");
953 gfc_simplify_dreal (gfc_expr
*e
)
955 gfc_expr
*result
= NULL
;
957 if (e
->expr_type
!= EXPR_CONSTANT
)
960 result
= gfc_get_constant_expr (BT_REAL
, e
->ts
.kind
, &e
->where
);
961 mpc_real (result
->value
.real
, e
->value
.complex, GFC_RND_MODE
);
963 return range_check (result
, "DREAL");
968 gfc_simplify_anint (gfc_expr
*e
, gfc_expr
*k
)
973 kind
= get_kind (BT_REAL
, k
, "ANINT", e
->ts
.kind
);
975 return &gfc_bad_expr
;
977 if (e
->expr_type
!= EXPR_CONSTANT
)
980 result
= gfc_get_constant_expr (e
->ts
.type
, kind
, &e
->where
);
981 mpfr_round (result
->value
.real
, e
->value
.real
);
983 return range_check (result
, "ANINT");
988 gfc_simplify_and (gfc_expr
*x
, gfc_expr
*y
)
993 if (x
->expr_type
!= EXPR_CONSTANT
|| y
->expr_type
!= EXPR_CONSTANT
)
996 kind
= x
->ts
.kind
> y
->ts
.kind
? x
->ts
.kind
: y
->ts
.kind
;
1001 result
= gfc_get_constant_expr (BT_INTEGER
, kind
, &x
->where
);
1002 mpz_and (result
->value
.integer
, x
->value
.integer
, y
->value
.integer
);
1003 return range_check (result
, "AND");
1006 return gfc_get_logical_expr (kind
, &x
->where
,
1007 x
->value
.logical
&& y
->value
.logical
);
1016 gfc_simplify_any (gfc_expr
*mask
, gfc_expr
*dim
)
1018 return simplify_transformation (mask
, dim
, NULL
, false, gfc_or
);
1023 gfc_simplify_dnint (gfc_expr
*e
)
1027 if (e
->expr_type
!= EXPR_CONSTANT
)
1030 result
= gfc_get_constant_expr (BT_REAL
, gfc_default_double_kind
, &e
->where
);
1031 mpfr_round (result
->value
.real
, e
->value
.real
);
1033 return range_check (result
, "DNINT");
1038 gfc_simplify_asin (gfc_expr
*x
)
1042 if (x
->expr_type
!= EXPR_CONSTANT
)
1048 if (mpfr_cmp_si (x
->value
.real
, 1) > 0
1049 || mpfr_cmp_si (x
->value
.real
, -1) < 0)
1051 gfc_error ("Argument of ASIN at %L must be between -1 and 1",
1053 return &gfc_bad_expr
;
1055 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1056 mpfr_asin (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
1060 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1061 mpc_asin (result
->value
.complex, x
->value
.complex, GFC_MPC_RND_MODE
);
1065 gfc_internal_error ("in gfc_simplify_asin(): Bad type");
1068 return range_check (result
, "ASIN");
1073 gfc_simplify_asinh (gfc_expr
*x
)
1077 if (x
->expr_type
!= EXPR_CONSTANT
)
1080 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1085 mpfr_asinh (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
1089 mpc_asinh (result
->value
.complex, x
->value
.complex, GFC_MPC_RND_MODE
);
1093 gfc_internal_error ("in gfc_simplify_asinh(): Bad type");
1096 return range_check (result
, "ASINH");
1101 gfc_simplify_atan (gfc_expr
*x
)
1105 if (x
->expr_type
!= EXPR_CONSTANT
)
1108 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1113 mpfr_atan (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
1117 mpc_atan (result
->value
.complex, x
->value
.complex, GFC_MPC_RND_MODE
);
1121 gfc_internal_error ("in gfc_simplify_atan(): Bad type");
1124 return range_check (result
, "ATAN");
1129 gfc_simplify_atanh (gfc_expr
*x
)
1133 if (x
->expr_type
!= EXPR_CONSTANT
)
1139 if (mpfr_cmp_si (x
->value
.real
, 1) >= 0
1140 || mpfr_cmp_si (x
->value
.real
, -1) <= 0)
1142 gfc_error ("Argument of ATANH at %L must be inside the range -1 "
1144 return &gfc_bad_expr
;
1146 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1147 mpfr_atanh (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
1151 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1152 mpc_atanh (result
->value
.complex, x
->value
.complex, GFC_MPC_RND_MODE
);
1156 gfc_internal_error ("in gfc_simplify_atanh(): Bad type");
1159 return range_check (result
, "ATANH");
1164 gfc_simplify_atan2 (gfc_expr
*y
, gfc_expr
*x
)
1168 if (x
->expr_type
!= EXPR_CONSTANT
|| y
->expr_type
!= EXPR_CONSTANT
)
1171 if (mpfr_zero_p (y
->value
.real
) && mpfr_zero_p (x
->value
.real
))
1173 gfc_error ("If first argument of ATAN2 %L is zero, then the "
1174 "second argument must not be zero", &x
->where
);
1175 return &gfc_bad_expr
;
1178 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1179 mpfr_atan2 (result
->value
.real
, y
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
1181 return range_check (result
, "ATAN2");
1186 gfc_simplify_bessel_j0 (gfc_expr
*x
)
1190 if (x
->expr_type
!= EXPR_CONSTANT
)
1193 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1194 mpfr_j0 (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
1196 return range_check (result
, "BESSEL_J0");
1201 gfc_simplify_bessel_j1 (gfc_expr
*x
)
1205 if (x
->expr_type
!= EXPR_CONSTANT
)
1208 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1209 mpfr_j1 (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
1211 return range_check (result
, "BESSEL_J1");
1216 gfc_simplify_bessel_jn (gfc_expr
*order
, gfc_expr
*x
)
1221 if (x
->expr_type
!= EXPR_CONSTANT
|| order
->expr_type
!= EXPR_CONSTANT
)
1224 n
= mpz_get_si (order
->value
.integer
);
1225 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1226 mpfr_jn (result
->value
.real
, n
, x
->value
.real
, GFC_RND_MODE
);
1228 return range_check (result
, "BESSEL_JN");
1232 /* Simplify transformational form of JN and YN. */
1235 gfc_simplify_bessel_n2 (gfc_expr
*order1
, gfc_expr
*order2
, gfc_expr
*x
,
1242 mpfr_t x2rev
, last1
, last2
;
1244 if (x
->expr_type
!= EXPR_CONSTANT
|| order1
->expr_type
!= EXPR_CONSTANT
1245 || order2
->expr_type
!= EXPR_CONSTANT
)
1248 n1
= mpz_get_si (order1
->value
.integer
);
1249 n2
= mpz_get_si (order2
->value
.integer
);
1250 result
= gfc_get_array_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1252 result
->shape
= gfc_get_shape (1);
1253 mpz_init_set_ui (result
->shape
[0], MAX (n2
-n1
+1, 0));
1258 /* Special case: x == 0; it is J0(0.0) == 1, JN(N > 0, 0.0) == 0; and
1259 YN(N, 0.0) = -Inf. */
1261 if (mpfr_cmp_ui (x
->value
.real
, 0.0) == 0)
1263 if (!jn
&& flag_range_check
)
1265 gfc_error ("Result of BESSEL_YN is -INF at %L", &result
->where
);
1266 gfc_free_expr (result
);
1267 return &gfc_bad_expr
;
1272 e
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1273 mpfr_set_ui (e
->value
.real
, 1, GFC_RND_MODE
);
1274 gfc_constructor_append_expr (&result
->value
.constructor
, e
,
1279 for (i
= n1
; i
<= n2
; i
++)
1281 e
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1283 mpfr_set_ui (e
->value
.real
, 0, GFC_RND_MODE
);
1285 mpfr_set_inf (e
->value
.real
, -1);
1286 gfc_constructor_append_expr (&result
->value
.constructor
, e
,
1293 /* Use the faster but more verbose recurrence algorithm. Bessel functions
1294 are stable for downward recursion and Neumann functions are stable
1295 for upward recursion. It is
1297 J(N-1, x) = x2rev * N * J(N, x) - J(N+1, x),
1298 Y(N+1, x) = x2rev * N * Y(N, x) - Y(N-1, x).
1299 Cf. http://dlmf.nist.gov/10.74#iv and http://dlmf.nist.gov/10.6#E1 */
1301 gfc_set_model_kind (x
->ts
.kind
);
1303 /* Get first recursion anchor. */
1307 mpfr_jn (last1
, n2
, x
->value
.real
, GFC_RND_MODE
);
1309 mpfr_yn (last1
, n1
, x
->value
.real
, GFC_RND_MODE
);
1311 e
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1312 mpfr_set (e
->value
.real
, last1
, GFC_RND_MODE
);
1313 if (range_check (e
, jn
? "BESSEL_JN" : "BESSEL_YN") == &gfc_bad_expr
)
1317 gfc_free_expr (result
);
1318 return &gfc_bad_expr
;
1320 gfc_constructor_append_expr (&result
->value
.constructor
, e
, &x
->where
);
1328 /* Get second recursion anchor. */
1332 mpfr_jn (last2
, n2
-1, x
->value
.real
, GFC_RND_MODE
);
1334 mpfr_yn (last2
, n1
+1, x
->value
.real
, GFC_RND_MODE
);
1336 e
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1337 mpfr_set (e
->value
.real
, last2
, GFC_RND_MODE
);
1338 if (range_check (e
, jn
? "BESSEL_JN" : "BESSEL_YN") == &gfc_bad_expr
)
1343 gfc_free_expr (result
);
1344 return &gfc_bad_expr
;
1347 gfc_constructor_insert_expr (&result
->value
.constructor
, e
, &x
->where
, -2);
1349 gfc_constructor_append_expr (&result
->value
.constructor
, e
, &x
->where
);
1358 /* Start actual recursion. */
1361 mpfr_ui_div (x2rev
, 2, x
->value
.real
, GFC_RND_MODE
);
1363 for (i
= 2; i
<= n2
-n1
; i
++)
1365 e
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1367 /* Special case: For YN, if the previous N gave -INF, set
1368 also N+1 to -INF. */
1369 if (!jn
&& !flag_range_check
&& mpfr_inf_p (last2
))
1371 mpfr_set_inf (e
->value
.real
, -1);
1372 gfc_constructor_append_expr (&result
->value
.constructor
, e
,
1377 mpfr_mul_si (e
->value
.real
, x2rev
, jn
? (n2
-i
+1) : (n1
+i
-1),
1379 mpfr_mul (e
->value
.real
, e
->value
.real
, last2
, GFC_RND_MODE
);
1380 mpfr_sub (e
->value
.real
, e
->value
.real
, last1
, GFC_RND_MODE
);
1382 if (range_check (e
, jn
? "BESSEL_JN" : "BESSEL_YN") == &gfc_bad_expr
)
1384 /* Range_check frees "e" in that case. */
1390 gfc_constructor_insert_expr (&result
->value
.constructor
, e
, &x
->where
,
1393 gfc_constructor_append_expr (&result
->value
.constructor
, e
, &x
->where
);
1395 mpfr_set (last1
, last2
, GFC_RND_MODE
);
1396 mpfr_set (last2
, e
->value
.real
, GFC_RND_MODE
);
1409 gfc_free_expr (result
);
1410 return &gfc_bad_expr
;
1415 gfc_simplify_bessel_jn2 (gfc_expr
*order1
, gfc_expr
*order2
, gfc_expr
*x
)
1417 return gfc_simplify_bessel_n2 (order1
, order2
, x
, true);
1422 gfc_simplify_bessel_y0 (gfc_expr
*x
)
1426 if (x
->expr_type
!= EXPR_CONSTANT
)
1429 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1430 mpfr_y0 (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
1432 return range_check (result
, "BESSEL_Y0");
1437 gfc_simplify_bessel_y1 (gfc_expr
*x
)
1441 if (x
->expr_type
!= EXPR_CONSTANT
)
1444 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1445 mpfr_y1 (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
1447 return range_check (result
, "BESSEL_Y1");
1452 gfc_simplify_bessel_yn (gfc_expr
*order
, gfc_expr
*x
)
1457 if (x
->expr_type
!= EXPR_CONSTANT
|| order
->expr_type
!= EXPR_CONSTANT
)
1460 n
= mpz_get_si (order
->value
.integer
);
1461 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1462 mpfr_yn (result
->value
.real
, n
, x
->value
.real
, GFC_RND_MODE
);
1464 return range_check (result
, "BESSEL_YN");
1469 gfc_simplify_bessel_yn2 (gfc_expr
*order1
, gfc_expr
*order2
, gfc_expr
*x
)
1471 return gfc_simplify_bessel_n2 (order1
, order2
, x
, false);
1476 gfc_simplify_bit_size (gfc_expr
*e
)
1478 int i
= gfc_validate_kind (e
->ts
.type
, e
->ts
.kind
, false);
1479 return gfc_get_int_expr (e
->ts
.kind
, &e
->where
,
1480 gfc_integer_kinds
[i
].bit_size
);
1485 gfc_simplify_btest (gfc_expr
*e
, gfc_expr
*bit
)
1489 if (e
->expr_type
!= EXPR_CONSTANT
|| bit
->expr_type
!= EXPR_CONSTANT
)
1492 if (gfc_extract_int (bit
, &b
) != NULL
|| b
< 0)
1493 return gfc_get_logical_expr (gfc_default_logical_kind
, &e
->where
, false);
1495 return gfc_get_logical_expr (gfc_default_logical_kind
, &e
->where
,
1496 mpz_tstbit (e
->value
.integer
, b
));
1501 compare_bitwise (gfc_expr
*i
, gfc_expr
*j
)
1506 gcc_assert (i
->ts
.type
== BT_INTEGER
);
1507 gcc_assert (j
->ts
.type
== BT_INTEGER
);
1509 mpz_init_set (x
, i
->value
.integer
);
1510 k
= gfc_validate_kind (i
->ts
.type
, i
->ts
.kind
, false);
1511 convert_mpz_to_unsigned (x
, gfc_integer_kinds
[k
].bit_size
);
1513 mpz_init_set (y
, j
->value
.integer
);
1514 k
= gfc_validate_kind (j
->ts
.type
, j
->ts
.kind
, false);
1515 convert_mpz_to_unsigned (y
, gfc_integer_kinds
[k
].bit_size
);
1517 res
= mpz_cmp (x
, y
);
1525 gfc_simplify_bge (gfc_expr
*i
, gfc_expr
*j
)
1527 if (i
->expr_type
!= EXPR_CONSTANT
|| j
->expr_type
!= EXPR_CONSTANT
)
1530 return gfc_get_logical_expr (gfc_default_logical_kind
, &i
->where
,
1531 compare_bitwise (i
, j
) >= 0);
1536 gfc_simplify_bgt (gfc_expr
*i
, gfc_expr
*j
)
1538 if (i
->expr_type
!= EXPR_CONSTANT
|| j
->expr_type
!= EXPR_CONSTANT
)
1541 return gfc_get_logical_expr (gfc_default_logical_kind
, &i
->where
,
1542 compare_bitwise (i
, j
) > 0);
1547 gfc_simplify_ble (gfc_expr
*i
, gfc_expr
*j
)
1549 if (i
->expr_type
!= EXPR_CONSTANT
|| j
->expr_type
!= EXPR_CONSTANT
)
1552 return gfc_get_logical_expr (gfc_default_logical_kind
, &i
->where
,
1553 compare_bitwise (i
, j
) <= 0);
1558 gfc_simplify_blt (gfc_expr
*i
, gfc_expr
*j
)
1560 if (i
->expr_type
!= EXPR_CONSTANT
|| j
->expr_type
!= EXPR_CONSTANT
)
1563 return gfc_get_logical_expr (gfc_default_logical_kind
, &i
->where
,
1564 compare_bitwise (i
, j
) < 0);
1569 gfc_simplify_ceiling (gfc_expr
*e
, gfc_expr
*k
)
1571 gfc_expr
*ceil
, *result
;
1574 kind
= get_kind (BT_INTEGER
, k
, "CEILING", gfc_default_integer_kind
);
1576 return &gfc_bad_expr
;
1578 if (e
->expr_type
!= EXPR_CONSTANT
)
1581 ceil
= gfc_copy_expr (e
);
1582 mpfr_ceil (ceil
->value
.real
, e
->value
.real
);
1584 result
= gfc_get_constant_expr (BT_INTEGER
, kind
, &e
->where
);
1585 gfc_mpfr_to_mpz (result
->value
.integer
, ceil
->value
.real
, &e
->where
);
1587 gfc_free_expr (ceil
);
1589 return range_check (result
, "CEILING");
1594 gfc_simplify_char (gfc_expr
*e
, gfc_expr
*k
)
1596 return simplify_achar_char (e
, k
, "CHAR", false);
1600 /* Common subroutine for simplifying CMPLX, COMPLEX and DCMPLX. */
1603 simplify_cmplx (const char *name
, gfc_expr
*x
, gfc_expr
*y
, int kind
)
1607 if (convert_boz (x
, kind
) == &gfc_bad_expr
)
1608 return &gfc_bad_expr
;
1610 if (convert_boz (y
, kind
) == &gfc_bad_expr
)
1611 return &gfc_bad_expr
;
1613 if (x
->expr_type
!= EXPR_CONSTANT
1614 || (y
!= NULL
&& y
->expr_type
!= EXPR_CONSTANT
))
1617 result
= gfc_get_constant_expr (BT_COMPLEX
, kind
, &x
->where
);
1622 mpc_set_z (result
->value
.complex, x
->value
.integer
, GFC_MPC_RND_MODE
);
1626 mpc_set_fr (result
->value
.complex, x
->value
.real
, GFC_RND_MODE
);
1630 mpc_set (result
->value
.complex, x
->value
.complex, GFC_MPC_RND_MODE
);
1634 gfc_internal_error ("gfc_simplify_dcmplx(): Bad type (x)");
1638 return range_check (result
, name
);
1643 mpfr_set_z (mpc_imagref (result
->value
.complex),
1644 y
->value
.integer
, GFC_RND_MODE
);
1648 mpfr_set (mpc_imagref (result
->value
.complex),
1649 y
->value
.real
, GFC_RND_MODE
);
1653 gfc_internal_error ("gfc_simplify_dcmplx(): Bad type (y)");
1656 return range_check (result
, name
);
1661 gfc_simplify_cmplx (gfc_expr
*x
, gfc_expr
*y
, gfc_expr
*k
)
1665 kind
= get_kind (BT_REAL
, k
, "CMPLX", gfc_default_complex_kind
);
1667 return &gfc_bad_expr
;
1669 return simplify_cmplx ("CMPLX", x
, y
, kind
);
1674 gfc_simplify_complex (gfc_expr
*x
, gfc_expr
*y
)
1678 if (x
->ts
.type
== BT_INTEGER
&& y
->ts
.type
== BT_INTEGER
)
1679 kind
= gfc_default_complex_kind
;
1680 else if (x
->ts
.type
== BT_REAL
|| y
->ts
.type
== BT_INTEGER
)
1682 else if (x
->ts
.type
== BT_INTEGER
|| y
->ts
.type
== BT_REAL
)
1684 else if (x
->ts
.type
== BT_REAL
&& y
->ts
.type
== BT_REAL
)
1685 kind
= (x
->ts
.kind
> y
->ts
.kind
) ? x
->ts
.kind
: y
->ts
.kind
;
1689 return simplify_cmplx ("COMPLEX", x
, y
, kind
);
1694 gfc_simplify_conjg (gfc_expr
*e
)
1698 if (e
->expr_type
!= EXPR_CONSTANT
)
1701 result
= gfc_copy_expr (e
);
1702 mpc_conj (result
->value
.complex, result
->value
.complex, GFC_MPC_RND_MODE
);
1704 return range_check (result
, "CONJG");
1709 gfc_simplify_cos (gfc_expr
*x
)
1713 if (x
->expr_type
!= EXPR_CONSTANT
)
1716 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1721 mpfr_cos (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
1725 gfc_set_model_kind (x
->ts
.kind
);
1726 mpc_cos (result
->value
.complex, x
->value
.complex, GFC_MPC_RND_MODE
);
1730 gfc_internal_error ("in gfc_simplify_cos(): Bad type");
1733 return range_check (result
, "COS");
1738 gfc_simplify_cosh (gfc_expr
*x
)
1742 if (x
->expr_type
!= EXPR_CONSTANT
)
1745 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1750 mpfr_cosh (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
1754 mpc_cosh (result
->value
.complex, x
->value
.complex, GFC_MPC_RND_MODE
);
1761 return range_check (result
, "COSH");
1766 gfc_simplify_count (gfc_expr
*mask
, gfc_expr
*dim
, gfc_expr
*kind
)
1770 if (!is_constant_array_expr (mask
)
1771 || !gfc_is_constant_expr (dim
)
1772 || !gfc_is_constant_expr (kind
))
1775 result
= transformational_result (mask
, dim
,
1777 get_kind (BT_INTEGER
, kind
, "COUNT",
1778 gfc_default_integer_kind
),
1781 init_result_expr (result
, 0, NULL
);
1783 /* Passing MASK twice, once as data array, once as mask.
1784 Whenever gfc_count is called, '1' is added to the result. */
1785 return !dim
|| mask
->rank
== 1 ?
1786 simplify_transformation_to_scalar (result
, mask
, mask
, gfc_count
) :
1787 simplify_transformation_to_array (result
, mask
, dim
, mask
, gfc_count
, NULL
);
1792 gfc_simplify_cshift (gfc_expr
*array
, gfc_expr
*shift
, gfc_expr
*dim
)
1794 gfc_expr
*a
, *result
;
1797 /* DIM is only useful for rank > 1, but deal with it here as one can
1798 set DIM = 1 for rank = 1. */
1801 if (!gfc_is_constant_expr (dim
))
1803 dm
= mpz_get_si (dim
->value
.integer
);
1808 /* Copy array into 'a', simplify it, and then test for a constant array.
1809 An unexpected expr_type causes an ICE. */
1810 switch (array
->expr_type
)
1815 a
= gfc_copy_expr (array
);
1816 gfc_simplify_expr (a
, 0);
1817 if (!is_constant_array_expr (a
))
1829 gfc_constructor
*ca
, *cr
;
1833 if (!gfc_is_constant_expr (shift
))
1839 shft
= mpz_get_si (shift
->value
.integer
);
1841 /* Case (i): If ARRAY has rank one, element i of the result is
1842 ARRAY (1 + MODULO (i + SHIFT - 1, SIZE (ARRAY))). */
1845 gfc_array_size (a
, &size
);
1846 sz
= mpz_get_si (size
);
1849 /* Adjust shft to deal with right or left shifts. */
1850 shft
= shft
< 0 ? 1 - shft
: shft
;
1852 /* Special case: Shift to the original order! */
1856 result
= gfc_copy_expr (a
);
1857 cr
= gfc_constructor_first (result
->value
.constructor
);
1858 for (i
= 0; i
< sz
; i
++, cr
= gfc_constructor_next (cr
))
1860 j
= (i
+ shft
) % sz
;
1861 ca
= gfc_constructor_first (a
->value
.constructor
);
1863 ca
= gfc_constructor_next (ca
);
1864 cr
->expr
= gfc_copy_expr (ca
->expr
);
1872 /* FIXME: Deal with rank > 1 arrays. For now, don't leak memory. */
1874 /* GCC bootstrap is too stupid to realize that the above code for dm
1875 is correct. First, dim can be specified for a rank 1 array. It is
1876 not needed in this nor used here. Second, the code is simply waiting
1877 for someone to implement rank > 1 simplification. For now, add a
1878 pessimization to the code that has a zero valid reason to be here. */
1879 if (dm
> array
->rank
)
1890 gfc_simplify_dcmplx (gfc_expr
*x
, gfc_expr
*y
)
1892 return simplify_cmplx ("DCMPLX", x
, y
, gfc_default_double_kind
);
1897 gfc_simplify_dble (gfc_expr
*e
)
1899 gfc_expr
*result
= NULL
;
1901 if (e
->expr_type
!= EXPR_CONSTANT
)
1904 if (convert_boz (e
, gfc_default_double_kind
) == &gfc_bad_expr
)
1905 return &gfc_bad_expr
;
1907 result
= gfc_convert_constant (e
, BT_REAL
, gfc_default_double_kind
);
1908 if (result
== &gfc_bad_expr
)
1909 return &gfc_bad_expr
;
1911 return range_check (result
, "DBLE");
1916 gfc_simplify_digits (gfc_expr
*x
)
1920 i
= gfc_validate_kind (x
->ts
.type
, x
->ts
.kind
, false);
1925 digits
= gfc_integer_kinds
[i
].digits
;
1930 digits
= gfc_real_kinds
[i
].digits
;
1937 return gfc_get_int_expr (gfc_default_integer_kind
, NULL
, digits
);
1942 gfc_simplify_dim (gfc_expr
*x
, gfc_expr
*y
)
1947 if (x
->expr_type
!= EXPR_CONSTANT
|| y
->expr_type
!= EXPR_CONSTANT
)
1950 kind
= x
->ts
.kind
> y
->ts
.kind
? x
->ts
.kind
: y
->ts
.kind
;
1951 result
= gfc_get_constant_expr (x
->ts
.type
, kind
, &x
->where
);
1956 if (mpz_cmp (x
->value
.integer
, y
->value
.integer
) > 0)
1957 mpz_sub (result
->value
.integer
, x
->value
.integer
, y
->value
.integer
);
1959 mpz_set_ui (result
->value
.integer
, 0);
1964 if (mpfr_cmp (x
->value
.real
, y
->value
.real
) > 0)
1965 mpfr_sub (result
->value
.real
, x
->value
.real
, y
->value
.real
,
1968 mpfr_set_ui (result
->value
.real
, 0, GFC_RND_MODE
);
1973 gfc_internal_error ("gfc_simplify_dim(): Bad type");
1976 return range_check (result
, "DIM");
1981 gfc_simplify_dot_product (gfc_expr
*vector_a
, gfc_expr
*vector_b
)
1986 if (!is_constant_array_expr (vector_a
)
1987 || !is_constant_array_expr (vector_b
))
1990 gcc_assert (vector_a
->rank
== 1);
1991 gcc_assert (vector_b
->rank
== 1);
1993 temp
.expr_type
= EXPR_OP
;
1994 gfc_clear_ts (&temp
.ts
);
1995 temp
.value
.op
.op
= INTRINSIC_NONE
;
1996 temp
.value
.op
.op1
= vector_a
;
1997 temp
.value
.op
.op2
= vector_b
;
1998 gfc_type_convert_binary (&temp
, 1);
2000 return compute_dot_product (vector_a
, 1, 0, vector_b
, 1, 0, true);
2005 gfc_simplify_dprod (gfc_expr
*x
, gfc_expr
*y
)
2007 gfc_expr
*a1
, *a2
, *result
;
2009 if (x
->expr_type
!= EXPR_CONSTANT
|| y
->expr_type
!= EXPR_CONSTANT
)
2012 a1
= gfc_real2real (x
, gfc_default_double_kind
);
2013 a2
= gfc_real2real (y
, gfc_default_double_kind
);
2015 result
= gfc_get_constant_expr (BT_REAL
, gfc_default_double_kind
, &x
->where
);
2016 mpfr_mul (result
->value
.real
, a1
->value
.real
, a2
->value
.real
, GFC_RND_MODE
);
2021 return range_check (result
, "DPROD");
2026 simplify_dshift (gfc_expr
*arg1
, gfc_expr
*arg2
, gfc_expr
*shiftarg
,
2030 int i
, k
, size
, shift
;
2032 if (arg1
->expr_type
!= EXPR_CONSTANT
|| arg2
->expr_type
!= EXPR_CONSTANT
2033 || shiftarg
->expr_type
!= EXPR_CONSTANT
)
2036 k
= gfc_validate_kind (BT_INTEGER
, arg1
->ts
.kind
, false);
2037 size
= gfc_integer_kinds
[k
].bit_size
;
2039 gfc_extract_int (shiftarg
, &shift
);
2041 /* DSHIFTR(I,J,SHIFT) = DSHIFTL(I,J,SIZE-SHIFT). */
2043 shift
= size
- shift
;
2045 result
= gfc_get_constant_expr (BT_INTEGER
, arg1
->ts
.kind
, &arg1
->where
);
2046 mpz_set_ui (result
->value
.integer
, 0);
2048 for (i
= 0; i
< shift
; i
++)
2049 if (mpz_tstbit (arg2
->value
.integer
, size
- shift
+ i
))
2050 mpz_setbit (result
->value
.integer
, i
);
2052 for (i
= 0; i
< size
- shift
; i
++)
2053 if (mpz_tstbit (arg1
->value
.integer
, i
))
2054 mpz_setbit (result
->value
.integer
, shift
+ i
);
2056 /* Convert to a signed value. */
2057 gfc_convert_mpz_to_signed (result
->value
.integer
, size
);
2064 gfc_simplify_dshiftr (gfc_expr
*arg1
, gfc_expr
*arg2
, gfc_expr
*shiftarg
)
2066 return simplify_dshift (arg1
, arg2
, shiftarg
, true);
2071 gfc_simplify_dshiftl (gfc_expr
*arg1
, gfc_expr
*arg2
, gfc_expr
*shiftarg
)
2073 return simplify_dshift (arg1
, arg2
, shiftarg
, false);
2078 gfc_simplify_erf (gfc_expr
*x
)
2082 if (x
->expr_type
!= EXPR_CONSTANT
)
2085 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
2086 mpfr_erf (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
2088 return range_check (result
, "ERF");
2093 gfc_simplify_erfc (gfc_expr
*x
)
2097 if (x
->expr_type
!= EXPR_CONSTANT
)
2100 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
2101 mpfr_erfc (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
2103 return range_check (result
, "ERFC");
2107 /* Helper functions to simplify ERFC_SCALED(x) = ERFC(x) * EXP(X**2). */
2109 #define MAX_ITER 200
2110 #define ARG_LIMIT 12
2112 /* Calculate ERFC_SCALED directly by its definition:
2114 ERFC_SCALED(x) = ERFC(x) * EXP(X**2)
2116 using a large precision for intermediate results. This is used for all
2117 but large values of the argument. */
2119 fullprec_erfc_scaled (mpfr_t res
, mpfr_t arg
)
2124 prec
= mpfr_get_default_prec ();
2125 mpfr_set_default_prec (10 * prec
);
2130 mpfr_set (a
, arg
, GFC_RND_MODE
);
2131 mpfr_sqr (b
, a
, GFC_RND_MODE
);
2132 mpfr_exp (b
, b
, GFC_RND_MODE
);
2133 mpfr_erfc (a
, a
, GFC_RND_MODE
);
2134 mpfr_mul (a
, a
, b
, GFC_RND_MODE
);
2136 mpfr_set (res
, a
, GFC_RND_MODE
);
2137 mpfr_set_default_prec (prec
);
2143 /* Calculate ERFC_SCALED using a power series expansion in 1/arg:
2145 ERFC_SCALED(x) = 1 / (x * sqrt(pi))
2146 * (1 + Sum_n (-1)**n * (1 * 3 * 5 * ... * (2n-1))
2149 This is used for large values of the argument. Intermediate calculations
2150 are performed with twice the precision. We don't do a fixed number of
2151 iterations of the sum, but stop when it has converged to the required
2154 asympt_erfc_scaled (mpfr_t res
, mpfr_t arg
)
2156 mpfr_t sum
, x
, u
, v
, w
, oldsum
, sumtrunc
;
2161 prec
= mpfr_get_default_prec ();
2162 mpfr_set_default_prec (2 * prec
);
2172 mpfr_init (sumtrunc
);
2173 mpfr_set_prec (oldsum
, prec
);
2174 mpfr_set_prec (sumtrunc
, prec
);
2176 mpfr_set (x
, arg
, GFC_RND_MODE
);
2177 mpfr_set_ui (sum
, 1, GFC_RND_MODE
);
2178 mpz_set_ui (num
, 1);
2180 mpfr_set (u
, x
, GFC_RND_MODE
);
2181 mpfr_sqr (u
, u
, GFC_RND_MODE
);
2182 mpfr_mul_ui (u
, u
, 2, GFC_RND_MODE
);
2183 mpfr_pow_si (u
, u
, -1, GFC_RND_MODE
);
2185 for (i
= 1; i
< MAX_ITER
; i
++)
2187 mpfr_set (oldsum
, sum
, GFC_RND_MODE
);
2189 mpz_mul_ui (num
, num
, 2 * i
- 1);
2192 mpfr_set (w
, u
, GFC_RND_MODE
);
2193 mpfr_pow_ui (w
, w
, i
, GFC_RND_MODE
);
2195 mpfr_set_z (v
, num
, GFC_RND_MODE
);
2196 mpfr_mul (v
, v
, w
, GFC_RND_MODE
);
2198 mpfr_add (sum
, sum
, v
, GFC_RND_MODE
);
2200 mpfr_set (sumtrunc
, sum
, GFC_RND_MODE
);
2201 if (mpfr_cmp (sumtrunc
, oldsum
) == 0)
2205 /* We should have converged by now; otherwise, ARG_LIMIT is probably
2207 gcc_assert (i
< MAX_ITER
);
2209 /* Divide by x * sqrt(Pi). */
2210 mpfr_const_pi (u
, GFC_RND_MODE
);
2211 mpfr_sqrt (u
, u
, GFC_RND_MODE
);
2212 mpfr_mul (u
, u
, x
, GFC_RND_MODE
);
2213 mpfr_div (sum
, sum
, u
, GFC_RND_MODE
);
2215 mpfr_set (res
, sum
, GFC_RND_MODE
);
2216 mpfr_set_default_prec (prec
);
2218 mpfr_clears (sum
, x
, u
, v
, w
, oldsum
, sumtrunc
, NULL
);
2224 gfc_simplify_erfc_scaled (gfc_expr
*x
)
2228 if (x
->expr_type
!= EXPR_CONSTANT
)
2231 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
2232 if (mpfr_cmp_d (x
->value
.real
, ARG_LIMIT
) >= 0)
2233 asympt_erfc_scaled (result
->value
.real
, x
->value
.real
);
2235 fullprec_erfc_scaled (result
->value
.real
, x
->value
.real
);
2237 return range_check (result
, "ERFC_SCALED");
2245 gfc_simplify_epsilon (gfc_expr
*e
)
2250 i
= gfc_validate_kind (e
->ts
.type
, e
->ts
.kind
, false);
2252 result
= gfc_get_constant_expr (BT_REAL
, e
->ts
.kind
, &e
->where
);
2253 mpfr_set (result
->value
.real
, gfc_real_kinds
[i
].epsilon
, GFC_RND_MODE
);
2255 return range_check (result
, "EPSILON");
2260 gfc_simplify_exp (gfc_expr
*x
)
2264 if (x
->expr_type
!= EXPR_CONSTANT
)
2267 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
2272 mpfr_exp (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
2276 gfc_set_model_kind (x
->ts
.kind
);
2277 mpc_exp (result
->value
.complex, x
->value
.complex, GFC_MPC_RND_MODE
);
2281 gfc_internal_error ("in gfc_simplify_exp(): Bad type");
2284 return range_check (result
, "EXP");
2289 gfc_simplify_exponent (gfc_expr
*x
)
2294 if (x
->expr_type
!= EXPR_CONSTANT
)
2297 result
= gfc_get_constant_expr (BT_INTEGER
, gfc_default_integer_kind
,
2300 /* EXPONENT(inf) = EXPONENT(nan) = HUGE(0) */
2301 if (mpfr_inf_p (x
->value
.real
) || mpfr_nan_p (x
->value
.real
))
2303 int i
= gfc_validate_kind (BT_INTEGER
, gfc_default_integer_kind
, false);
2304 mpz_set (result
->value
.integer
, gfc_integer_kinds
[i
].huge
);
2308 /* EXPONENT(+/- 0.0) = 0 */
2309 if (mpfr_zero_p (x
->value
.real
))
2311 mpz_set_ui (result
->value
.integer
, 0);
2315 gfc_set_model (x
->value
.real
);
2317 val
= (long int) mpfr_get_exp (x
->value
.real
);
2318 mpz_set_si (result
->value
.integer
, val
);
2320 return range_check (result
, "EXPONENT");
2325 gfc_simplify_float (gfc_expr
*a
)
2329 if (a
->expr_type
!= EXPR_CONSTANT
)
2334 if (convert_boz (a
, gfc_default_real_kind
) == &gfc_bad_expr
)
2335 return &gfc_bad_expr
;
2337 result
= gfc_copy_expr (a
);
2340 result
= gfc_int2real (a
, gfc_default_real_kind
);
2342 return range_check (result
, "FLOAT");
2347 is_last_ref_vtab (gfc_expr
*e
)
2350 gfc_component
*comp
= NULL
;
2352 if (e
->expr_type
!= EXPR_VARIABLE
)
2355 for (ref
= e
->ref
; ref
; ref
= ref
->next
)
2356 if (ref
->type
== REF_COMPONENT
)
2357 comp
= ref
->u
.c
.component
;
2359 if (!e
->ref
|| !comp
)
2360 return e
->symtree
->n
.sym
->attr
.vtab
;
2362 if (comp
->name
[0] == '_' && strcmp (comp
->name
, "_vptr") == 0)
2370 gfc_simplify_extends_type_of (gfc_expr
*a
, gfc_expr
*mold
)
2372 /* Avoid simplification of resolved symbols. */
2373 if (is_last_ref_vtab (a
) || is_last_ref_vtab (mold
))
2376 if (a
->ts
.type
== BT_DERIVED
&& mold
->ts
.type
== BT_DERIVED
)
2377 return gfc_get_logical_expr (gfc_default_logical_kind
, &a
->where
,
2378 gfc_type_is_extension_of (mold
->ts
.u
.derived
,
2381 if (UNLIMITED_POLY (a
) || UNLIMITED_POLY (mold
))
2384 /* Return .false. if the dynamic type can never be the same. */
2385 if ((a
->ts
.type
== BT_CLASS
&& mold
->ts
.type
== BT_CLASS
2386 && !gfc_type_is_extension_of
2387 (mold
->ts
.u
.derived
->components
->ts
.u
.derived
,
2388 a
->ts
.u
.derived
->components
->ts
.u
.derived
)
2389 && !gfc_type_is_extension_of
2390 (a
->ts
.u
.derived
->components
->ts
.u
.derived
,
2391 mold
->ts
.u
.derived
->components
->ts
.u
.derived
))
2392 || (a
->ts
.type
== BT_DERIVED
&& mold
->ts
.type
== BT_CLASS
2393 && !gfc_type_is_extension_of
2395 mold
->ts
.u
.derived
->components
->ts
.u
.derived
)
2396 && !gfc_type_is_extension_of
2397 (mold
->ts
.u
.derived
->components
->ts
.u
.derived
,
2399 || (a
->ts
.type
== BT_CLASS
&& mold
->ts
.type
== BT_DERIVED
2400 && !gfc_type_is_extension_of
2401 (mold
->ts
.u
.derived
,
2402 a
->ts
.u
.derived
->components
->ts
.u
.derived
)))
2403 return gfc_get_logical_expr (gfc_default_logical_kind
, &a
->where
, false);
2405 if (mold
->ts
.type
== BT_DERIVED
2406 && gfc_type_is_extension_of (mold
->ts
.u
.derived
,
2407 a
->ts
.u
.derived
->components
->ts
.u
.derived
))
2408 return gfc_get_logical_expr (gfc_default_logical_kind
, &a
->where
, true);
2415 gfc_simplify_same_type_as (gfc_expr
*a
, gfc_expr
*b
)
2417 /* Avoid simplification of resolved symbols. */
2418 if (is_last_ref_vtab (a
) || is_last_ref_vtab (b
))
2421 /* Return .false. if the dynamic type can never be the
2423 if (((a
->ts
.type
== BT_CLASS
&& gfc_expr_attr (a
).class_ok
)
2424 || (b
->ts
.type
== BT_CLASS
&& gfc_expr_attr (b
).class_ok
))
2425 && !gfc_type_compatible (&a
->ts
, &b
->ts
)
2426 && !gfc_type_compatible (&b
->ts
, &a
->ts
))
2427 return gfc_get_logical_expr (gfc_default_logical_kind
, &a
->where
, false);
2429 if (a
->ts
.type
!= BT_DERIVED
|| b
->ts
.type
!= BT_DERIVED
)
2432 return gfc_get_logical_expr (gfc_default_logical_kind
, &a
->where
,
2433 gfc_compare_derived_types (a
->ts
.u
.derived
,
2439 gfc_simplify_floor (gfc_expr
*e
, gfc_expr
*k
)
2445 kind
= get_kind (BT_INTEGER
, k
, "FLOOR", gfc_default_integer_kind
);
2447 gfc_internal_error ("gfc_simplify_floor(): Bad kind");
2449 if (e
->expr_type
!= EXPR_CONSTANT
)
2452 mpfr_init2 (floor
, mpfr_get_prec (e
->value
.real
));
2453 mpfr_floor (floor
, e
->value
.real
);
2455 result
= gfc_get_constant_expr (BT_INTEGER
, kind
, &e
->where
);
2456 gfc_mpfr_to_mpz (result
->value
.integer
, floor
, &e
->where
);
2460 return range_check (result
, "FLOOR");
2465 gfc_simplify_fraction (gfc_expr
*x
)
2469 #if MPFR_VERSION < MPFR_VERSION_NUM(3,1,0)
2470 mpfr_t absv
, exp
, pow2
;
2475 if (x
->expr_type
!= EXPR_CONSTANT
)
2478 result
= gfc_get_constant_expr (BT_REAL
, x
->ts
.kind
, &x
->where
);
2480 /* FRACTION(inf) = NaN. */
2481 if (mpfr_inf_p (x
->value
.real
))
2483 mpfr_set_nan (result
->value
.real
);
2487 #if MPFR_VERSION < MPFR_VERSION_NUM(3,1,0)
2489 /* MPFR versions before 3.1.0 do not include mpfr_frexp.
2490 TODO: remove the kludge when MPFR 3.1.0 or newer will be required */
2492 if (mpfr_sgn (x
->value
.real
) == 0)
2494 mpfr_set (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
2498 gfc_set_model_kind (x
->ts
.kind
);
2503 mpfr_abs (absv
, x
->value
.real
, GFC_RND_MODE
);
2504 mpfr_log2 (exp
, absv
, GFC_RND_MODE
);
2506 mpfr_trunc (exp
, exp
);
2507 mpfr_add_ui (exp
, exp
, 1, GFC_RND_MODE
);
2509 mpfr_ui_pow (pow2
, 2, exp
, GFC_RND_MODE
);
2511 mpfr_div (result
->value
.real
, x
->value
.real
, pow2
, GFC_RND_MODE
);
2513 mpfr_clears (exp
, absv
, pow2
, NULL
);
2517 /* mpfr_frexp() correctly handles zeros and NaNs. */
2518 mpfr_frexp (&e
, result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
2522 return range_check (result
, "FRACTION");
2527 gfc_simplify_gamma (gfc_expr
*x
)
2531 if (x
->expr_type
!= EXPR_CONSTANT
)
2534 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
2535 mpfr_gamma (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
2537 return range_check (result
, "GAMMA");
2542 gfc_simplify_huge (gfc_expr
*e
)
2547 i
= gfc_validate_kind (e
->ts
.type
, e
->ts
.kind
, false);
2548 result
= gfc_get_constant_expr (e
->ts
.type
, e
->ts
.kind
, &e
->where
);
2553 mpz_set (result
->value
.integer
, gfc_integer_kinds
[i
].huge
);
2557 mpfr_set (result
->value
.real
, gfc_real_kinds
[i
].huge
, GFC_RND_MODE
);
2569 gfc_simplify_hypot (gfc_expr
*x
, gfc_expr
*y
)
2573 if (x
->expr_type
!= EXPR_CONSTANT
|| y
->expr_type
!= EXPR_CONSTANT
)
2576 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
2577 mpfr_hypot (result
->value
.real
, x
->value
.real
, y
->value
.real
, GFC_RND_MODE
);
2578 return range_check (result
, "HYPOT");
2582 /* We use the processor's collating sequence, because all
2583 systems that gfortran currently works on are ASCII. */
2586 gfc_simplify_iachar (gfc_expr
*e
, gfc_expr
*kind
)
2592 if (e
->expr_type
!= EXPR_CONSTANT
)
2595 if (e
->value
.character
.length
!= 1)
2597 gfc_error ("Argument of IACHAR at %L must be of length one", &e
->where
);
2598 return &gfc_bad_expr
;
2601 index
= e
->value
.character
.string
[0];
2603 if (warn_surprising
&& index
> 127)
2604 gfc_warning (OPT_Wsurprising
,
2605 "Argument of IACHAR function at %L outside of range 0..127",
2608 k
= get_kind (BT_INTEGER
, kind
, "IACHAR", gfc_default_integer_kind
);
2610 return &gfc_bad_expr
;
2612 result
= gfc_get_int_expr (k
, &e
->where
, index
);
2614 return range_check (result
, "IACHAR");
2619 do_bit_and (gfc_expr
*result
, gfc_expr
*e
)
2621 gcc_assert (e
->ts
.type
== BT_INTEGER
&& e
->expr_type
== EXPR_CONSTANT
);
2622 gcc_assert (result
->ts
.type
== BT_INTEGER
2623 && result
->expr_type
== EXPR_CONSTANT
);
2625 mpz_and (result
->value
.integer
, result
->value
.integer
, e
->value
.integer
);
2631 gfc_simplify_iall (gfc_expr
*array
, gfc_expr
*dim
, gfc_expr
*mask
)
2633 return simplify_transformation (array
, dim
, mask
, -1, do_bit_and
);
2638 do_bit_ior (gfc_expr
*result
, gfc_expr
*e
)
2640 gcc_assert (e
->ts
.type
== BT_INTEGER
&& e
->expr_type
== EXPR_CONSTANT
);
2641 gcc_assert (result
->ts
.type
== BT_INTEGER
2642 && result
->expr_type
== EXPR_CONSTANT
);
2644 mpz_ior (result
->value
.integer
, result
->value
.integer
, e
->value
.integer
);
2650 gfc_simplify_iany (gfc_expr
*array
, gfc_expr
*dim
, gfc_expr
*mask
)
2652 return simplify_transformation (array
, dim
, mask
, 0, do_bit_ior
);
2657 gfc_simplify_iand (gfc_expr
*x
, gfc_expr
*y
)
2661 if (x
->expr_type
!= EXPR_CONSTANT
|| y
->expr_type
!= EXPR_CONSTANT
)
2664 result
= gfc_get_constant_expr (BT_INTEGER
, x
->ts
.kind
, &x
->where
);
2665 mpz_and (result
->value
.integer
, x
->value
.integer
, y
->value
.integer
);
2667 return range_check (result
, "IAND");
2672 gfc_simplify_ibclr (gfc_expr
*x
, gfc_expr
*y
)
2677 if (x
->expr_type
!= EXPR_CONSTANT
|| y
->expr_type
!= EXPR_CONSTANT
)
2680 gfc_extract_int (y
, &pos
);
2682 k
= gfc_validate_kind (x
->ts
.type
, x
->ts
.kind
, false);
2684 result
= gfc_copy_expr (x
);
2686 convert_mpz_to_unsigned (result
->value
.integer
,
2687 gfc_integer_kinds
[k
].bit_size
);
2689 mpz_clrbit (result
->value
.integer
, pos
);
2691 gfc_convert_mpz_to_signed (result
->value
.integer
,
2692 gfc_integer_kinds
[k
].bit_size
);
2699 gfc_simplify_ibits (gfc_expr
*x
, gfc_expr
*y
, gfc_expr
*z
)
2706 if (x
->expr_type
!= EXPR_CONSTANT
2707 || y
->expr_type
!= EXPR_CONSTANT
2708 || z
->expr_type
!= EXPR_CONSTANT
)
2711 gfc_extract_int (y
, &pos
);
2712 gfc_extract_int (z
, &len
);
2714 k
= gfc_validate_kind (BT_INTEGER
, x
->ts
.kind
, false);
2716 bitsize
= gfc_integer_kinds
[k
].bit_size
;
2718 if (pos
+ len
> bitsize
)
2720 gfc_error ("Sum of second and third arguments of IBITS exceeds "
2721 "bit size at %L", &y
->where
);
2722 return &gfc_bad_expr
;
2725 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
2726 convert_mpz_to_unsigned (result
->value
.integer
,
2727 gfc_integer_kinds
[k
].bit_size
);
2729 bits
= XCNEWVEC (int, bitsize
);
2731 for (i
= 0; i
< bitsize
; i
++)
2734 for (i
= 0; i
< len
; i
++)
2735 bits
[i
] = mpz_tstbit (x
->value
.integer
, i
+ pos
);
2737 for (i
= 0; i
< bitsize
; i
++)
2740 mpz_clrbit (result
->value
.integer
, i
);
2741 else if (bits
[i
] == 1)
2742 mpz_setbit (result
->value
.integer
, i
);
2744 gfc_internal_error ("IBITS: Bad bit");
2749 gfc_convert_mpz_to_signed (result
->value
.integer
,
2750 gfc_integer_kinds
[k
].bit_size
);
2757 gfc_simplify_ibset (gfc_expr
*x
, gfc_expr
*y
)
2762 if (x
->expr_type
!= EXPR_CONSTANT
|| y
->expr_type
!= EXPR_CONSTANT
)
2765 gfc_extract_int (y
, &pos
);
2767 k
= gfc_validate_kind (x
->ts
.type
, x
->ts
.kind
, false);
2769 result
= gfc_copy_expr (x
);
2771 convert_mpz_to_unsigned (result
->value
.integer
,
2772 gfc_integer_kinds
[k
].bit_size
);
2774 mpz_setbit (result
->value
.integer
, pos
);
2776 gfc_convert_mpz_to_signed (result
->value
.integer
,
2777 gfc_integer_kinds
[k
].bit_size
);
2784 gfc_simplify_ichar (gfc_expr
*e
, gfc_expr
*kind
)
2790 if (e
->expr_type
!= EXPR_CONSTANT
)
2793 if (e
->value
.character
.length
!= 1)
2795 gfc_error ("Argument of ICHAR at %L must be of length one", &e
->where
);
2796 return &gfc_bad_expr
;
2799 index
= e
->value
.character
.string
[0];
2801 k
= get_kind (BT_INTEGER
, kind
, "ICHAR", gfc_default_integer_kind
);
2803 return &gfc_bad_expr
;
2805 result
= gfc_get_int_expr (k
, &e
->where
, index
);
2807 return range_check (result
, "ICHAR");
2812 gfc_simplify_ieor (gfc_expr
*x
, gfc_expr
*y
)
2816 if (x
->expr_type
!= EXPR_CONSTANT
|| y
->expr_type
!= EXPR_CONSTANT
)
2819 result
= gfc_get_constant_expr (BT_INTEGER
, x
->ts
.kind
, &x
->where
);
2820 mpz_xor (result
->value
.integer
, x
->value
.integer
, y
->value
.integer
);
2822 return range_check (result
, "IEOR");
2827 gfc_simplify_index (gfc_expr
*x
, gfc_expr
*y
, gfc_expr
*b
, gfc_expr
*kind
)
2830 int back
, len
, lensub
;
2831 int i
, j
, k
, count
, index
= 0, start
;
2833 if (x
->expr_type
!= EXPR_CONSTANT
|| y
->expr_type
!= EXPR_CONSTANT
2834 || ( b
!= NULL
&& b
->expr_type
!= EXPR_CONSTANT
))
2837 if (b
!= NULL
&& b
->value
.logical
!= 0)
2842 k
= get_kind (BT_INTEGER
, kind
, "INDEX", gfc_default_integer_kind
);
2844 return &gfc_bad_expr
;
2846 result
= gfc_get_constant_expr (BT_INTEGER
, k
, &x
->where
);
2848 len
= x
->value
.character
.length
;
2849 lensub
= y
->value
.character
.length
;
2853 mpz_set_si (result
->value
.integer
, 0);
2861 mpz_set_si (result
->value
.integer
, 1);
2864 else if (lensub
== 1)
2866 for (i
= 0; i
< len
; i
++)
2868 for (j
= 0; j
< lensub
; j
++)
2870 if (y
->value
.character
.string
[j
]
2871 == x
->value
.character
.string
[i
])
2881 for (i
= 0; i
< len
; i
++)
2883 for (j
= 0; j
< lensub
; j
++)
2885 if (y
->value
.character
.string
[j
]
2886 == x
->value
.character
.string
[i
])
2891 for (k
= 0; k
< lensub
; k
++)
2893 if (y
->value
.character
.string
[k
]
2894 == x
->value
.character
.string
[k
+ start
])
2898 if (count
== lensub
)
2913 mpz_set_si (result
->value
.integer
, len
+ 1);
2916 else if (lensub
== 1)
2918 for (i
= 0; i
< len
; i
++)
2920 for (j
= 0; j
< lensub
; j
++)
2922 if (y
->value
.character
.string
[j
]
2923 == x
->value
.character
.string
[len
- i
])
2925 index
= len
- i
+ 1;
2933 for (i
= 0; i
< len
; i
++)
2935 for (j
= 0; j
< lensub
; j
++)
2937 if (y
->value
.character
.string
[j
]
2938 == x
->value
.character
.string
[len
- i
])
2941 if (start
<= len
- lensub
)
2944 for (k
= 0; k
< lensub
; k
++)
2945 if (y
->value
.character
.string
[k
]
2946 == x
->value
.character
.string
[k
+ start
])
2949 if (count
== lensub
)
2966 mpz_set_si (result
->value
.integer
, index
);
2967 return range_check (result
, "INDEX");
2972 simplify_intconv (gfc_expr
*e
, int kind
, const char *name
)
2974 gfc_expr
*result
= NULL
;
2976 if (e
->expr_type
!= EXPR_CONSTANT
)
2979 result
= gfc_convert_constant (e
, BT_INTEGER
, kind
);
2980 if (result
== &gfc_bad_expr
)
2981 return &gfc_bad_expr
;
2983 return range_check (result
, name
);
2988 gfc_simplify_int (gfc_expr
*e
, gfc_expr
*k
)
2992 kind
= get_kind (BT_INTEGER
, k
, "INT", gfc_default_integer_kind
);
2994 return &gfc_bad_expr
;
2996 return simplify_intconv (e
, kind
, "INT");
3000 gfc_simplify_int2 (gfc_expr
*e
)
3002 return simplify_intconv (e
, 2, "INT2");
3007 gfc_simplify_int8 (gfc_expr
*e
)
3009 return simplify_intconv (e
, 8, "INT8");
3014 gfc_simplify_long (gfc_expr
*e
)
3016 return simplify_intconv (e
, 4, "LONG");
3021 gfc_simplify_ifix (gfc_expr
*e
)
3023 gfc_expr
*rtrunc
, *result
;
3025 if (e
->expr_type
!= EXPR_CONSTANT
)
3028 rtrunc
= gfc_copy_expr (e
);
3029 mpfr_trunc (rtrunc
->value
.real
, e
->value
.real
);
3031 result
= gfc_get_constant_expr (BT_INTEGER
, gfc_default_integer_kind
,
3033 gfc_mpfr_to_mpz (result
->value
.integer
, rtrunc
->value
.real
, &e
->where
);
3035 gfc_free_expr (rtrunc
);
3037 return range_check (result
, "IFIX");
3042 gfc_simplify_idint (gfc_expr
*e
)
3044 gfc_expr
*rtrunc
, *result
;
3046 if (e
->expr_type
!= EXPR_CONSTANT
)
3049 rtrunc
= gfc_copy_expr (e
);
3050 mpfr_trunc (rtrunc
->value
.real
, e
->value
.real
);
3052 result
= gfc_get_constant_expr (BT_INTEGER
, gfc_default_integer_kind
,
3054 gfc_mpfr_to_mpz (result
->value
.integer
, rtrunc
->value
.real
, &e
->where
);
3056 gfc_free_expr (rtrunc
);
3058 return range_check (result
, "IDINT");
3063 gfc_simplify_ior (gfc_expr
*x
, gfc_expr
*y
)
3067 if (x
->expr_type
!= EXPR_CONSTANT
|| y
->expr_type
!= EXPR_CONSTANT
)
3070 result
= gfc_get_constant_expr (BT_INTEGER
, x
->ts
.kind
, &x
->where
);
3071 mpz_ior (result
->value
.integer
, x
->value
.integer
, y
->value
.integer
);
3073 return range_check (result
, "IOR");
3078 do_bit_xor (gfc_expr
*result
, gfc_expr
*e
)
3080 gcc_assert (e
->ts
.type
== BT_INTEGER
&& e
->expr_type
== EXPR_CONSTANT
);
3081 gcc_assert (result
->ts
.type
== BT_INTEGER
3082 && result
->expr_type
== EXPR_CONSTANT
);
3084 mpz_xor (result
->value
.integer
, result
->value
.integer
, e
->value
.integer
);
3090 gfc_simplify_iparity (gfc_expr
*array
, gfc_expr
*dim
, gfc_expr
*mask
)
3092 return simplify_transformation (array
, dim
, mask
, 0, do_bit_xor
);
3097 gfc_simplify_is_iostat_end (gfc_expr
*x
)
3099 if (x
->expr_type
!= EXPR_CONSTANT
)
3102 return gfc_get_logical_expr (gfc_default_logical_kind
, &x
->where
,
3103 mpz_cmp_si (x
->value
.integer
,
3104 LIBERROR_END
) == 0);
3109 gfc_simplify_is_iostat_eor (gfc_expr
*x
)
3111 if (x
->expr_type
!= EXPR_CONSTANT
)
3114 return gfc_get_logical_expr (gfc_default_logical_kind
, &x
->where
,
3115 mpz_cmp_si (x
->value
.integer
,
3116 LIBERROR_EOR
) == 0);
3121 gfc_simplify_isnan (gfc_expr
*x
)
3123 if (x
->expr_type
!= EXPR_CONSTANT
)
3126 return gfc_get_logical_expr (gfc_default_logical_kind
, &x
->where
,
3127 mpfr_nan_p (x
->value
.real
));
3131 /* Performs a shift on its first argument. Depending on the last
3132 argument, the shift can be arithmetic, i.e. with filling from the
3133 left like in the SHIFTA intrinsic. */
3135 simplify_shift (gfc_expr
*e
, gfc_expr
*s
, const char *name
,
3136 bool arithmetic
, int direction
)
3139 int ashift
, *bits
, i
, k
, bitsize
, shift
;
3141 if (e
->expr_type
!= EXPR_CONSTANT
|| s
->expr_type
!= EXPR_CONSTANT
)
3144 gfc_extract_int (s
, &shift
);
3146 k
= gfc_validate_kind (BT_INTEGER
, e
->ts
.kind
, false);
3147 bitsize
= gfc_integer_kinds
[k
].bit_size
;
3149 result
= gfc_get_constant_expr (e
->ts
.type
, e
->ts
.kind
, &e
->where
);
3153 mpz_set (result
->value
.integer
, e
->value
.integer
);
3157 if (direction
> 0 && shift
< 0)
3159 /* Left shift, as in SHIFTL. */
3160 gfc_error ("Second argument of %s is negative at %L", name
, &e
->where
);
3161 return &gfc_bad_expr
;
3163 else if (direction
< 0)
3165 /* Right shift, as in SHIFTR or SHIFTA. */
3168 gfc_error ("Second argument of %s is negative at %L",
3170 return &gfc_bad_expr
;
3176 ashift
= (shift
>= 0 ? shift
: -shift
);
3178 if (ashift
> bitsize
)
3180 gfc_error ("Magnitude of second argument of %s exceeds bit size "
3181 "at %L", name
, &e
->where
);
3182 return &gfc_bad_expr
;
3185 bits
= XCNEWVEC (int, bitsize
);
3187 for (i
= 0; i
< bitsize
; i
++)
3188 bits
[i
] = mpz_tstbit (e
->value
.integer
, i
);
3193 for (i
= 0; i
< shift
; i
++)
3194 mpz_clrbit (result
->value
.integer
, i
);
3196 for (i
= 0; i
< bitsize
- shift
; i
++)
3199 mpz_clrbit (result
->value
.integer
, i
+ shift
);
3201 mpz_setbit (result
->value
.integer
, i
+ shift
);
3207 if (arithmetic
&& bits
[bitsize
- 1])
3208 for (i
= bitsize
- 1; i
>= bitsize
- ashift
; i
--)
3209 mpz_setbit (result
->value
.integer
, i
);
3211 for (i
= bitsize
- 1; i
>= bitsize
- ashift
; i
--)
3212 mpz_clrbit (result
->value
.integer
, i
);
3214 for (i
= bitsize
- 1; i
>= ashift
; i
--)
3217 mpz_clrbit (result
->value
.integer
, i
- ashift
);
3219 mpz_setbit (result
->value
.integer
, i
- ashift
);
3223 gfc_convert_mpz_to_signed (result
->value
.integer
, bitsize
);
3231 gfc_simplify_ishft (gfc_expr
*e
, gfc_expr
*s
)
3233 return simplify_shift (e
, s
, "ISHFT", false, 0);
3238 gfc_simplify_lshift (gfc_expr
*e
, gfc_expr
*s
)
3240 return simplify_shift (e
, s
, "LSHIFT", false, 1);
3245 gfc_simplify_rshift (gfc_expr
*e
, gfc_expr
*s
)
3247 return simplify_shift (e
, s
, "RSHIFT", true, -1);
3252 gfc_simplify_shifta (gfc_expr
*e
, gfc_expr
*s
)
3254 return simplify_shift (e
, s
, "SHIFTA", true, -1);
3259 gfc_simplify_shiftl (gfc_expr
*e
, gfc_expr
*s
)
3261 return simplify_shift (e
, s
, "SHIFTL", false, 1);
3266 gfc_simplify_shiftr (gfc_expr
*e
, gfc_expr
*s
)
3268 return simplify_shift (e
, s
, "SHIFTR", false, -1);
3273 gfc_simplify_ishftc (gfc_expr
*e
, gfc_expr
*s
, gfc_expr
*sz
)
3276 int shift
, ashift
, isize
, ssize
, delta
, k
;
3279 if (e
->expr_type
!= EXPR_CONSTANT
|| s
->expr_type
!= EXPR_CONSTANT
)
3282 gfc_extract_int (s
, &shift
);
3284 k
= gfc_validate_kind (e
->ts
.type
, e
->ts
.kind
, false);
3285 isize
= gfc_integer_kinds
[k
].bit_size
;
3289 if (sz
->expr_type
!= EXPR_CONSTANT
)
3292 gfc_extract_int (sz
, &ssize
);
3306 gfc_error ("Magnitude of second argument of ISHFTC exceeds "
3307 "BIT_SIZE of first argument at %L", &s
->where
);
3308 return &gfc_bad_expr
;
3311 result
= gfc_get_constant_expr (e
->ts
.type
, e
->ts
.kind
, &e
->where
);
3313 mpz_set (result
->value
.integer
, e
->value
.integer
);
3318 convert_mpz_to_unsigned (result
->value
.integer
, isize
);
3320 bits
= XCNEWVEC (int, ssize
);
3322 for (i
= 0; i
< ssize
; i
++)
3323 bits
[i
] = mpz_tstbit (e
->value
.integer
, i
);
3325 delta
= ssize
- ashift
;
3329 for (i
= 0; i
< delta
; i
++)
3332 mpz_clrbit (result
->value
.integer
, i
+ shift
);
3334 mpz_setbit (result
->value
.integer
, i
+ shift
);
3337 for (i
= delta
; i
< ssize
; i
++)
3340 mpz_clrbit (result
->value
.integer
, i
- delta
);
3342 mpz_setbit (result
->value
.integer
, i
- delta
);
3347 for (i
= 0; i
< ashift
; i
++)
3350 mpz_clrbit (result
->value
.integer
, i
+ delta
);
3352 mpz_setbit (result
->value
.integer
, i
+ delta
);
3355 for (i
= ashift
; i
< ssize
; i
++)
3358 mpz_clrbit (result
->value
.integer
, i
+ shift
);
3360 mpz_setbit (result
->value
.integer
, i
+ shift
);
3364 gfc_convert_mpz_to_signed (result
->value
.integer
, isize
);
3372 gfc_simplify_kind (gfc_expr
*e
)
3374 return gfc_get_int_expr (gfc_default_integer_kind
, NULL
, e
->ts
.kind
);
3379 simplify_bound_dim (gfc_expr
*array
, gfc_expr
*kind
, int d
, int upper
,
3380 gfc_array_spec
*as
, gfc_ref
*ref
, bool coarray
)
3382 gfc_expr
*l
, *u
, *result
;
3385 k
= get_kind (BT_INTEGER
, kind
, upper
? "UBOUND" : "LBOUND",
3386 gfc_default_integer_kind
);
3388 return &gfc_bad_expr
;
3390 result
= gfc_get_constant_expr (BT_INTEGER
, k
, &array
->where
);
3392 /* For non-variables, LBOUND(expr, DIM=n) = 1 and
3393 UBOUND(expr, DIM=n) = SIZE(expr, DIM=n). */
3394 if (!coarray
&& array
->expr_type
!= EXPR_VARIABLE
)
3398 gfc_expr
* dim
= result
;
3399 mpz_set_si (dim
->value
.integer
, d
);
3401 result
= simplify_size (array
, dim
, k
);
3402 gfc_free_expr (dim
);
3407 mpz_set_si (result
->value
.integer
, 1);
3412 /* Otherwise, we have a variable expression. */
3413 gcc_assert (array
->expr_type
== EXPR_VARIABLE
);
3416 if (!gfc_resolve_array_spec (as
, 0))
3419 /* The last dimension of an assumed-size array is special. */
3420 if ((!coarray
&& d
== as
->rank
&& as
->type
== AS_ASSUMED_SIZE
&& !upper
)
3421 || (coarray
&& d
== as
->rank
+ as
->corank
3422 && (!upper
|| flag_coarray
== GFC_FCOARRAY_SINGLE
)))
3424 if (as
->lower
[d
-1]->expr_type
== EXPR_CONSTANT
)
3426 gfc_free_expr (result
);
3427 return gfc_copy_expr (as
->lower
[d
-1]);
3433 result
= gfc_get_constant_expr (BT_INTEGER
, k
, &array
->where
);
3435 /* Then, we need to know the extent of the given dimension. */
3436 if (coarray
|| (ref
->u
.ar
.type
== AR_FULL
&& !ref
->next
))
3438 gfc_expr
*declared_bound
;
3440 bool constant_lbound
, constant_ubound
;
3445 gcc_assert (l
!= NULL
);
3447 constant_lbound
= l
->expr_type
== EXPR_CONSTANT
;
3448 constant_ubound
= u
&& u
->expr_type
== EXPR_CONSTANT
;
3450 empty_bound
= upper
? 0 : 1;
3451 declared_bound
= upper
? u
: l
;
3453 if ((!upper
&& !constant_lbound
)
3454 || (upper
&& !constant_ubound
))
3459 /* For {L,U}BOUND, the value depends on whether the array
3460 is empty. We can nevertheless simplify if the declared bound
3461 has the same value as that of an empty array, in which case
3462 the result isn't dependent on the array emptyness. */
3463 if (mpz_cmp_si (declared_bound
->value
.integer
, empty_bound
) == 0)
3464 mpz_set_si (result
->value
.integer
, empty_bound
);
3465 else if (!constant_lbound
|| !constant_ubound
)
3466 /* Array emptyness can't be determined, we can't simplify. */
3468 else if (mpz_cmp (l
->value
.integer
, u
->value
.integer
) > 0)
3469 mpz_set_si (result
->value
.integer
, empty_bound
);
3471 mpz_set (result
->value
.integer
, declared_bound
->value
.integer
);
3474 mpz_set (result
->value
.integer
, declared_bound
->value
.integer
);
3480 if (!gfc_ref_dimen_size (&ref
->u
.ar
, d
- 1, &result
->value
.integer
, NULL
))
3484 mpz_set_si (result
->value
.integer
, (long int) 1);
3488 return range_check (result
, upper
? "UBOUND" : "LBOUND");
3491 gfc_free_expr (result
);
3497 simplify_bound (gfc_expr
*array
, gfc_expr
*dim
, gfc_expr
*kind
, int upper
)
3503 if (array
->ts
.type
== BT_CLASS
)
3506 if (array
->expr_type
!= EXPR_VARIABLE
)
3513 /* Follow any component references. */
3514 as
= array
->symtree
->n
.sym
->as
;
3515 for (ref
= array
->ref
; ref
; ref
= ref
->next
)
3520 switch (ref
->u
.ar
.type
)
3527 /* We're done because 'as' has already been set in the
3528 previous iteration. */
3542 as
= ref
->u
.c
.component
->as
;
3554 if (as
&& (as
->type
== AS_DEFERRED
|| as
->type
== AS_ASSUMED_RANK
3555 || (as
->type
== AS_ASSUMED_SHAPE
&& upper
)))
3559 || (as
->type
!= AS_DEFERRED
3560 && array
->expr_type
== EXPR_VARIABLE
3561 && !gfc_expr_attr (array
).allocatable
3562 && !gfc_expr_attr (array
).pointer
));
3566 /* Multi-dimensional bounds. */
3567 gfc_expr
*bounds
[GFC_MAX_DIMENSIONS
];
3571 /* UBOUND(ARRAY) is not valid for an assumed-size array. */
3572 if (upper
&& as
&& as
->type
== AS_ASSUMED_SIZE
)
3574 /* An error message will be emitted in
3575 check_assumed_size_reference (resolve.c). */
3576 return &gfc_bad_expr
;
3579 /* Simplify the bounds for each dimension. */
3580 for (d
= 0; d
< array
->rank
; d
++)
3582 bounds
[d
] = simplify_bound_dim (array
, kind
, d
+ 1, upper
, as
, ref
,
3584 if (bounds
[d
] == NULL
|| bounds
[d
] == &gfc_bad_expr
)
3588 for (j
= 0; j
< d
; j
++)
3589 gfc_free_expr (bounds
[j
]);
3594 /* Allocate the result expression. */
3595 k
= get_kind (BT_INTEGER
, kind
, upper
? "UBOUND" : "LBOUND",
3596 gfc_default_integer_kind
);
3598 return &gfc_bad_expr
;
3600 e
= gfc_get_array_expr (BT_INTEGER
, k
, &array
->where
);
3602 /* The result is a rank 1 array; its size is the rank of the first
3603 argument to {L,U}BOUND. */
3605 e
->shape
= gfc_get_shape (1);
3606 mpz_init_set_ui (e
->shape
[0], array
->rank
);
3608 /* Create the constructor for this array. */
3609 for (d
= 0; d
< array
->rank
; d
++)
3610 gfc_constructor_append_expr (&e
->value
.constructor
,
3611 bounds
[d
], &e
->where
);
3617 /* A DIM argument is specified. */
3618 if (dim
->expr_type
!= EXPR_CONSTANT
)
3621 d
= mpz_get_si (dim
->value
.integer
);
3623 if ((d
< 1 || d
> array
->rank
)
3624 || (d
== array
->rank
&& as
&& as
->type
== AS_ASSUMED_SIZE
&& upper
))
3626 gfc_error ("DIM argument at %L is out of bounds", &dim
->where
);
3627 return &gfc_bad_expr
;
3630 if (as
&& as
->type
== AS_ASSUMED_RANK
)
3633 return simplify_bound_dim (array
, kind
, d
, upper
, as
, ref
, false);
3639 simplify_cobound (gfc_expr
*array
, gfc_expr
*dim
, gfc_expr
*kind
, int upper
)
3645 if (array
->expr_type
!= EXPR_VARIABLE
)
3648 /* Follow any component references. */
3649 as
= (array
->ts
.type
== BT_CLASS
&& array
->ts
.u
.derived
->components
)
3650 ? array
->ts
.u
.derived
->components
->as
3651 : array
->symtree
->n
.sym
->as
;
3652 for (ref
= array
->ref
; ref
; ref
= ref
->next
)
3657 switch (ref
->u
.ar
.type
)
3660 if (ref
->u
.ar
.as
->corank
> 0)
3662 gcc_assert (as
== ref
->u
.ar
.as
);
3669 /* We're done because 'as' has already been set in the
3670 previous iteration. */
3684 as
= ref
->u
.c
.component
->as
;
3697 if (as
->cotype
== AS_DEFERRED
|| as
->cotype
== AS_ASSUMED_SHAPE
)
3702 /* Multi-dimensional cobounds. */
3703 gfc_expr
*bounds
[GFC_MAX_DIMENSIONS
];
3707 /* Simplify the cobounds for each dimension. */
3708 for (d
= 0; d
< as
->corank
; d
++)
3710 bounds
[d
] = simplify_bound_dim (array
, kind
, d
+ 1 + as
->rank
,
3711 upper
, as
, ref
, true);
3712 if (bounds
[d
] == NULL
|| bounds
[d
] == &gfc_bad_expr
)
3716 for (j
= 0; j
< d
; j
++)
3717 gfc_free_expr (bounds
[j
]);
3722 /* Allocate the result expression. */
3723 e
= gfc_get_expr ();
3724 e
->where
= array
->where
;
3725 e
->expr_type
= EXPR_ARRAY
;
3726 e
->ts
.type
= BT_INTEGER
;
3727 k
= get_kind (BT_INTEGER
, kind
, upper
? "UCOBOUND" : "LCOBOUND",
3728 gfc_default_integer_kind
);
3732 return &gfc_bad_expr
;
3736 /* The result is a rank 1 array; its size is the rank of the first
3737 argument to {L,U}COBOUND. */
3739 e
->shape
= gfc_get_shape (1);
3740 mpz_init_set_ui (e
->shape
[0], as
->corank
);
3742 /* Create the constructor for this array. */
3743 for (d
= 0; d
< as
->corank
; d
++)
3744 gfc_constructor_append_expr (&e
->value
.constructor
,
3745 bounds
[d
], &e
->where
);
3750 /* A DIM argument is specified. */
3751 if (dim
->expr_type
!= EXPR_CONSTANT
)
3754 d
= mpz_get_si (dim
->value
.integer
);
3756 if (d
< 1 || d
> as
->corank
)
3758 gfc_error ("DIM argument at %L is out of bounds", &dim
->where
);
3759 return &gfc_bad_expr
;
3762 return simplify_bound_dim (array
, kind
, d
+as
->rank
, upper
, as
, ref
, true);
3768 gfc_simplify_lbound (gfc_expr
*array
, gfc_expr
*dim
, gfc_expr
*kind
)
3770 return simplify_bound (array
, dim
, kind
, 0);
3775 gfc_simplify_lcobound (gfc_expr
*array
, gfc_expr
*dim
, gfc_expr
*kind
)
3777 return simplify_cobound (array
, dim
, kind
, 0);
3781 gfc_simplify_leadz (gfc_expr
*e
)
3783 unsigned long lz
, bs
;
3786 if (e
->expr_type
!= EXPR_CONSTANT
)
3789 i
= gfc_validate_kind (e
->ts
.type
, e
->ts
.kind
, false);
3790 bs
= gfc_integer_kinds
[i
].bit_size
;
3791 if (mpz_cmp_si (e
->value
.integer
, 0) == 0)
3793 else if (mpz_cmp_si (e
->value
.integer
, 0) < 0)
3796 lz
= bs
- mpz_sizeinbase (e
->value
.integer
, 2);
3798 return gfc_get_int_expr (gfc_default_integer_kind
, &e
->where
, lz
);
3803 gfc_simplify_len (gfc_expr
*e
, gfc_expr
*kind
)
3806 int k
= get_kind (BT_INTEGER
, kind
, "LEN", gfc_default_integer_kind
);
3809 return &gfc_bad_expr
;
3811 if (e
->expr_type
== EXPR_CONSTANT
)
3813 result
= gfc_get_constant_expr (BT_INTEGER
, k
, &e
->where
);
3814 mpz_set_si (result
->value
.integer
, e
->value
.character
.length
);
3815 return range_check (result
, "LEN");
3817 else if (e
->ts
.u
.cl
!= NULL
&& e
->ts
.u
.cl
->length
!= NULL
3818 && e
->ts
.u
.cl
->length
->expr_type
== EXPR_CONSTANT
3819 && e
->ts
.u
.cl
->length
->ts
.type
== BT_INTEGER
)
3821 result
= gfc_get_constant_expr (BT_INTEGER
, k
, &e
->where
);
3822 mpz_set (result
->value
.integer
, e
->ts
.u
.cl
->length
->value
.integer
);
3823 return range_check (result
, "LEN");
3825 else if (e
->expr_type
== EXPR_VARIABLE
&& e
->ts
.type
== BT_CHARACTER
3826 && e
->symtree
->n
.sym
3827 && e
->symtree
->n
.sym
->assoc
&& e
->symtree
->n
.sym
->assoc
->target
3828 && e
->symtree
->n
.sym
->assoc
->target
->ts
.type
== BT_DERIVED
)
3829 /* The expression in assoc->target points to a ref to the _data component
3830 of the unlimited polymorphic entity. To get the _len component the last
3831 _data ref needs to be stripped and a ref to the _len component added. */
3832 return gfc_get_len_component (e
->symtree
->n
.sym
->assoc
->target
);
3839 gfc_simplify_len_trim (gfc_expr
*e
, gfc_expr
*kind
)
3843 int k
= get_kind (BT_INTEGER
, kind
, "LEN_TRIM", gfc_default_integer_kind
);
3846 return &gfc_bad_expr
;
3848 if (e
->expr_type
!= EXPR_CONSTANT
)
3851 len
= e
->value
.character
.length
;
3852 for (count
= 0, i
= 1; i
<= len
; i
++)
3853 if (e
->value
.character
.string
[len
- i
] == ' ')
3858 result
= gfc_get_int_expr (k
, &e
->where
, len
- count
);
3859 return range_check (result
, "LEN_TRIM");
3863 gfc_simplify_lgamma (gfc_expr
*x
)
3868 if (x
->expr_type
!= EXPR_CONSTANT
)
3871 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
3872 mpfr_lgamma (result
->value
.real
, &sg
, x
->value
.real
, GFC_RND_MODE
);
3874 return range_check (result
, "LGAMMA");
3879 gfc_simplify_lge (gfc_expr
*a
, gfc_expr
*b
)
3881 if (a
->expr_type
!= EXPR_CONSTANT
|| b
->expr_type
!= EXPR_CONSTANT
)
3884 return gfc_get_logical_expr (gfc_default_logical_kind
, &a
->where
,
3885 gfc_compare_string (a
, b
) >= 0);
3890 gfc_simplify_lgt (gfc_expr
*a
, gfc_expr
*b
)
3892 if (a
->expr_type
!= EXPR_CONSTANT
|| b
->expr_type
!= EXPR_CONSTANT
)
3895 return gfc_get_logical_expr (gfc_default_logical_kind
, &a
->where
,
3896 gfc_compare_string (a
, b
) > 0);
3901 gfc_simplify_lle (gfc_expr
*a
, gfc_expr
*b
)
3903 if (a
->expr_type
!= EXPR_CONSTANT
|| b
->expr_type
!= EXPR_CONSTANT
)
3906 return gfc_get_logical_expr (gfc_default_logical_kind
, &a
->where
,
3907 gfc_compare_string (a
, b
) <= 0);
3912 gfc_simplify_llt (gfc_expr
*a
, gfc_expr
*b
)
3914 if (a
->expr_type
!= EXPR_CONSTANT
|| b
->expr_type
!= EXPR_CONSTANT
)
3917 return gfc_get_logical_expr (gfc_default_logical_kind
, &a
->where
,
3918 gfc_compare_string (a
, b
) < 0);
3923 gfc_simplify_log (gfc_expr
*x
)
3927 if (x
->expr_type
!= EXPR_CONSTANT
)
3930 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
3935 if (mpfr_sgn (x
->value
.real
) <= 0)
3937 gfc_error ("Argument of LOG at %L cannot be less than or equal "
3938 "to zero", &x
->where
);
3939 gfc_free_expr (result
);
3940 return &gfc_bad_expr
;
3943 mpfr_log (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
3947 if (mpfr_zero_p (mpc_realref (x
->value
.complex))
3948 && mpfr_zero_p (mpc_imagref (x
->value
.complex)))
3950 gfc_error ("Complex argument of LOG at %L cannot be zero",
3952 gfc_free_expr (result
);
3953 return &gfc_bad_expr
;
3956 gfc_set_model_kind (x
->ts
.kind
);
3957 mpc_log (result
->value
.complex, x
->value
.complex, GFC_MPC_RND_MODE
);
3961 gfc_internal_error ("gfc_simplify_log: bad type");
3964 return range_check (result
, "LOG");
3969 gfc_simplify_log10 (gfc_expr
*x
)
3973 if (x
->expr_type
!= EXPR_CONSTANT
)
3976 if (mpfr_sgn (x
->value
.real
) <= 0)
3978 gfc_error ("Argument of LOG10 at %L cannot be less than or equal "
3979 "to zero", &x
->where
);
3980 return &gfc_bad_expr
;
3983 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
3984 mpfr_log10 (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
3986 return range_check (result
, "LOG10");
3991 gfc_simplify_logical (gfc_expr
*e
, gfc_expr
*k
)
3995 kind
= get_kind (BT_LOGICAL
, k
, "LOGICAL", gfc_default_logical_kind
);
3997 return &gfc_bad_expr
;
3999 if (e
->expr_type
!= EXPR_CONSTANT
)
4002 return gfc_get_logical_expr (kind
, &e
->where
, e
->value
.logical
);
4007 gfc_simplify_matmul (gfc_expr
*matrix_a
, gfc_expr
*matrix_b
)
4010 int row
, result_rows
, col
, result_columns
;
4011 int stride_a
, offset_a
, stride_b
, offset_b
;
4013 if (!is_constant_array_expr (matrix_a
)
4014 || !is_constant_array_expr (matrix_b
))
4017 gcc_assert (gfc_compare_types (&matrix_a
->ts
, &matrix_b
->ts
));
4018 result
= gfc_get_array_expr (matrix_a
->ts
.type
,
4022 if (matrix_a
->rank
== 1 && matrix_b
->rank
== 2)
4025 result_columns
= mpz_get_si (matrix_b
->shape
[1]);
4027 stride_b
= mpz_get_si (matrix_b
->shape
[0]);
4030 result
->shape
= gfc_get_shape (result
->rank
);
4031 mpz_init_set_si (result
->shape
[0], result_columns
);
4033 else if (matrix_a
->rank
== 2 && matrix_b
->rank
== 1)
4035 result_rows
= mpz_get_si (matrix_a
->shape
[0]);
4037 stride_a
= mpz_get_si (matrix_a
->shape
[0]);
4041 result
->shape
= gfc_get_shape (result
->rank
);
4042 mpz_init_set_si (result
->shape
[0], result_rows
);
4044 else if (matrix_a
->rank
== 2 && matrix_b
->rank
== 2)
4046 result_rows
= mpz_get_si (matrix_a
->shape
[0]);
4047 result_columns
= mpz_get_si (matrix_b
->shape
[1]);
4048 stride_a
= mpz_get_si (matrix_a
->shape
[0]);
4049 stride_b
= mpz_get_si (matrix_b
->shape
[0]);
4052 result
->shape
= gfc_get_shape (result
->rank
);
4053 mpz_init_set_si (result
->shape
[0], result_rows
);
4054 mpz_init_set_si (result
->shape
[1], result_columns
);
4059 offset_a
= offset_b
= 0;
4060 for (col
= 0; col
< result_columns
; ++col
)
4064 for (row
= 0; row
< result_rows
; ++row
)
4066 gfc_expr
*e
= compute_dot_product (matrix_a
, stride_a
, offset_a
,
4067 matrix_b
, 1, offset_b
, false);
4068 gfc_constructor_append_expr (&result
->value
.constructor
,
4074 offset_b
+= stride_b
;
4082 gfc_simplify_maskr (gfc_expr
*i
, gfc_expr
*kind_arg
)
4088 if (i
->expr_type
!= EXPR_CONSTANT
)
4091 kind
= get_kind (BT_INTEGER
, kind_arg
, "MASKR", gfc_default_integer_kind
);
4093 return &gfc_bad_expr
;
4094 k
= gfc_validate_kind (BT_INTEGER
, kind
, false);
4096 s
= gfc_extract_int (i
, &arg
);
4099 result
= gfc_get_constant_expr (BT_INTEGER
, kind
, &i
->where
);
4101 /* MASKR(n) = 2^n - 1 */
4102 mpz_set_ui (result
->value
.integer
, 1);
4103 mpz_mul_2exp (result
->value
.integer
, result
->value
.integer
, arg
);
4104 mpz_sub_ui (result
->value
.integer
, result
->value
.integer
, 1);
4106 gfc_convert_mpz_to_signed (result
->value
.integer
, gfc_integer_kinds
[k
].bit_size
);
4113 gfc_simplify_maskl (gfc_expr
*i
, gfc_expr
*kind_arg
)
4120 if (i
->expr_type
!= EXPR_CONSTANT
)
4123 kind
= get_kind (BT_INTEGER
, kind_arg
, "MASKL", gfc_default_integer_kind
);
4125 return &gfc_bad_expr
;
4126 k
= gfc_validate_kind (BT_INTEGER
, kind
, false);
4128 s
= gfc_extract_int (i
, &arg
);
4131 result
= gfc_get_constant_expr (BT_INTEGER
, kind
, &i
->where
);
4133 /* MASKL(n) = 2^bit_size - 2^(bit_size - n) */
4134 mpz_init_set_ui (z
, 1);
4135 mpz_mul_2exp (z
, z
, gfc_integer_kinds
[k
].bit_size
);
4136 mpz_set_ui (result
->value
.integer
, 1);
4137 mpz_mul_2exp (result
->value
.integer
, result
->value
.integer
,
4138 gfc_integer_kinds
[k
].bit_size
- arg
);
4139 mpz_sub (result
->value
.integer
, z
, result
->value
.integer
);
4142 gfc_convert_mpz_to_signed (result
->value
.integer
, gfc_integer_kinds
[k
].bit_size
);
4149 gfc_simplify_merge (gfc_expr
*tsource
, gfc_expr
*fsource
, gfc_expr
*mask
)
4152 gfc_constructor
*tsource_ctor
, *fsource_ctor
, *mask_ctor
;
4154 if (mask
->expr_type
== EXPR_CONSTANT
)
4155 return gfc_get_parentheses (gfc_copy_expr (mask
->value
.logical
4156 ? tsource
: fsource
));
4158 if (!mask
->rank
|| !is_constant_array_expr (mask
)
4159 || !is_constant_array_expr (tsource
) || !is_constant_array_expr (fsource
))
4162 result
= gfc_get_array_expr (tsource
->ts
.type
, tsource
->ts
.kind
,
4164 if (tsource
->ts
.type
== BT_DERIVED
)
4165 result
->ts
.u
.derived
= tsource
->ts
.u
.derived
;
4166 else if (tsource
->ts
.type
== BT_CHARACTER
)
4167 result
->ts
.u
.cl
= tsource
->ts
.u
.cl
;
4169 tsource_ctor
= gfc_constructor_first (tsource
->value
.constructor
);
4170 fsource_ctor
= gfc_constructor_first (fsource
->value
.constructor
);
4171 mask_ctor
= gfc_constructor_first (mask
->value
.constructor
);
4175 if (mask_ctor
->expr
->value
.logical
)
4176 gfc_constructor_append_expr (&result
->value
.constructor
,
4177 gfc_copy_expr (tsource_ctor
->expr
),
4180 gfc_constructor_append_expr (&result
->value
.constructor
,
4181 gfc_copy_expr (fsource_ctor
->expr
),
4183 tsource_ctor
= gfc_constructor_next (tsource_ctor
);
4184 fsource_ctor
= gfc_constructor_next (fsource_ctor
);
4185 mask_ctor
= gfc_constructor_next (mask_ctor
);
4188 result
->shape
= gfc_get_shape (1);
4189 gfc_array_size (result
, &result
->shape
[0]);
4196 gfc_simplify_merge_bits (gfc_expr
*i
, gfc_expr
*j
, gfc_expr
*mask_expr
)
4198 mpz_t arg1
, arg2
, mask
;
4201 if (i
->expr_type
!= EXPR_CONSTANT
|| j
->expr_type
!= EXPR_CONSTANT
4202 || mask_expr
->expr_type
!= EXPR_CONSTANT
)
4205 result
= gfc_get_constant_expr (BT_INTEGER
, i
->ts
.kind
, &i
->where
);
4207 /* Convert all argument to unsigned. */
4208 mpz_init_set (arg1
, i
->value
.integer
);
4209 mpz_init_set (arg2
, j
->value
.integer
);
4210 mpz_init_set (mask
, mask_expr
->value
.integer
);
4212 /* MERGE_BITS(I,J,MASK) = IOR (IAND (I, MASK), IAND (J, NOT (MASK))). */
4213 mpz_and (arg1
, arg1
, mask
);
4214 mpz_com (mask
, mask
);
4215 mpz_and (arg2
, arg2
, mask
);
4216 mpz_ior (result
->value
.integer
, arg1
, arg2
);
4226 /* Selects between current value and extremum for simplify_min_max
4227 and simplify_minval_maxval. */
4229 min_max_choose (gfc_expr
*arg
, gfc_expr
*extremum
, int sign
)
4231 switch (arg
->ts
.type
)
4234 if (mpz_cmp (arg
->value
.integer
,
4235 extremum
->value
.integer
) * sign
> 0)
4236 mpz_set (extremum
->value
.integer
, arg
->value
.integer
);
4240 /* We need to use mpfr_min and mpfr_max to treat NaN properly. */
4242 mpfr_max (extremum
->value
.real
, extremum
->value
.real
,
4243 arg
->value
.real
, GFC_RND_MODE
);
4245 mpfr_min (extremum
->value
.real
, extremum
->value
.real
,
4246 arg
->value
.real
, GFC_RND_MODE
);
4250 #define LENGTH(x) ((x)->value.character.length)
4251 #define STRING(x) ((x)->value.character.string)
4252 if (LENGTH (extremum
) < LENGTH(arg
))
4254 gfc_char_t
*tmp
= STRING(extremum
);
4256 STRING(extremum
) = gfc_get_wide_string (LENGTH(arg
) + 1);
4257 memcpy (STRING(extremum
), tmp
,
4258 LENGTH(extremum
) * sizeof (gfc_char_t
));
4259 gfc_wide_memset (&STRING(extremum
)[LENGTH(extremum
)], ' ',
4260 LENGTH(arg
) - LENGTH(extremum
));
4261 STRING(extremum
)[LENGTH(arg
)] = '\0'; /* For debugger */
4262 LENGTH(extremum
) = LENGTH(arg
);
4266 if (gfc_compare_string (arg
, extremum
) * sign
> 0)
4268 free (STRING(extremum
));
4269 STRING(extremum
) = gfc_get_wide_string (LENGTH(extremum
) + 1);
4270 memcpy (STRING(extremum
), STRING(arg
),
4271 LENGTH(arg
) * sizeof (gfc_char_t
));
4272 gfc_wide_memset (&STRING(extremum
)[LENGTH(arg
)], ' ',
4273 LENGTH(extremum
) - LENGTH(arg
));
4274 STRING(extremum
)[LENGTH(extremum
)] = '\0'; /* For debugger */
4281 gfc_internal_error ("simplify_min_max(): Bad type in arglist");
4286 /* This function is special since MAX() can take any number of
4287 arguments. The simplified expression is a rewritten version of the
4288 argument list containing at most one constant element. Other
4289 constant elements are deleted. Because the argument list has
4290 already been checked, this function always succeeds. sign is 1 for
4291 MAX(), -1 for MIN(). */
4294 simplify_min_max (gfc_expr
*expr
, int sign
)
4296 gfc_actual_arglist
*arg
, *last
, *extremum
;
4297 gfc_intrinsic_sym
* specific
;
4301 specific
= expr
->value
.function
.isym
;
4303 arg
= expr
->value
.function
.actual
;
4305 for (; arg
; last
= arg
, arg
= arg
->next
)
4307 if (arg
->expr
->expr_type
!= EXPR_CONSTANT
)
4310 if (extremum
== NULL
)
4316 min_max_choose (arg
->expr
, extremum
->expr
, sign
);
4318 /* Delete the extra constant argument. */
4319 last
->next
= arg
->next
;
4322 gfc_free_actual_arglist (arg
);
4326 /* If there is one value left, replace the function call with the
4328 if (expr
->value
.function
.actual
->next
!= NULL
)
4331 /* Convert to the correct type and kind. */
4332 if (expr
->ts
.type
!= BT_UNKNOWN
)
4333 return gfc_convert_constant (expr
->value
.function
.actual
->expr
,
4334 expr
->ts
.type
, expr
->ts
.kind
);
4336 if (specific
->ts
.type
!= BT_UNKNOWN
)
4337 return gfc_convert_constant (expr
->value
.function
.actual
->expr
,
4338 specific
->ts
.type
, specific
->ts
.kind
);
4340 return gfc_copy_expr (expr
->value
.function
.actual
->expr
);
4345 gfc_simplify_min (gfc_expr
*e
)
4347 return simplify_min_max (e
, -1);
4352 gfc_simplify_max (gfc_expr
*e
)
4354 return simplify_min_max (e
, 1);
4358 /* This is a simplified version of simplify_min_max to provide
4359 simplification of minval and maxval for a vector. */
4362 simplify_minval_maxval (gfc_expr
*expr
, int sign
)
4364 gfc_constructor
*c
, *extremum
;
4365 gfc_intrinsic_sym
* specific
;
4368 specific
= expr
->value
.function
.isym
;
4370 for (c
= gfc_constructor_first (expr
->value
.constructor
);
4371 c
; c
= gfc_constructor_next (c
))
4373 if (c
->expr
->expr_type
!= EXPR_CONSTANT
)
4376 if (extremum
== NULL
)
4382 min_max_choose (c
->expr
, extremum
->expr
, sign
);
4385 if (extremum
== NULL
)
4388 /* Convert to the correct type and kind. */
4389 if (expr
->ts
.type
!= BT_UNKNOWN
)
4390 return gfc_convert_constant (extremum
->expr
,
4391 expr
->ts
.type
, expr
->ts
.kind
);
4393 if (specific
->ts
.type
!= BT_UNKNOWN
)
4394 return gfc_convert_constant (extremum
->expr
,
4395 specific
->ts
.type
, specific
->ts
.kind
);
4397 return gfc_copy_expr (extremum
->expr
);
4402 gfc_simplify_minval (gfc_expr
*array
, gfc_expr
* dim
, gfc_expr
*mask
)
4404 if (array
->expr_type
!= EXPR_ARRAY
|| array
->rank
!= 1 || dim
|| mask
)
4407 return simplify_minval_maxval (array
, -1);
4412 gfc_simplify_maxval (gfc_expr
*array
, gfc_expr
* dim
, gfc_expr
*mask
)
4414 if (array
->expr_type
!= EXPR_ARRAY
|| array
->rank
!= 1 || dim
|| mask
)
4417 return simplify_minval_maxval (array
, 1);
4422 gfc_simplify_maxexponent (gfc_expr
*x
)
4424 int i
= gfc_validate_kind (BT_REAL
, x
->ts
.kind
, false);
4425 return gfc_get_int_expr (gfc_default_integer_kind
, &x
->where
,
4426 gfc_real_kinds
[i
].max_exponent
);
4431 gfc_simplify_minexponent (gfc_expr
*x
)
4433 int i
= gfc_validate_kind (BT_REAL
, x
->ts
.kind
, false);
4434 return gfc_get_int_expr (gfc_default_integer_kind
, &x
->where
,
4435 gfc_real_kinds
[i
].min_exponent
);
4440 gfc_simplify_mod (gfc_expr
*a
, gfc_expr
*p
)
4445 if (a
->expr_type
!= EXPR_CONSTANT
|| p
->expr_type
!= EXPR_CONSTANT
)
4448 kind
= a
->ts
.kind
> p
->ts
.kind
? a
->ts
.kind
: p
->ts
.kind
;
4449 result
= gfc_get_constant_expr (a
->ts
.type
, kind
, &a
->where
);
4454 if (mpz_cmp_ui (p
->value
.integer
, 0) == 0)
4456 /* Result is processor-dependent. */
4457 gfc_error ("Second argument MOD at %L is zero", &a
->where
);
4458 gfc_free_expr (result
);
4459 return &gfc_bad_expr
;
4461 mpz_tdiv_r (result
->value
.integer
, a
->value
.integer
, p
->value
.integer
);
4465 if (mpfr_cmp_ui (p
->value
.real
, 0) == 0)
4467 /* Result is processor-dependent. */
4468 gfc_error ("Second argument of MOD at %L is zero", &p
->where
);
4469 gfc_free_expr (result
);
4470 return &gfc_bad_expr
;
4473 gfc_set_model_kind (kind
);
4474 mpfr_fmod (result
->value
.real
, a
->value
.real
, p
->value
.real
,
4479 gfc_internal_error ("gfc_simplify_mod(): Bad arguments");
4482 return range_check (result
, "MOD");
4487 gfc_simplify_modulo (gfc_expr
*a
, gfc_expr
*p
)
4492 if (a
->expr_type
!= EXPR_CONSTANT
|| p
->expr_type
!= EXPR_CONSTANT
)
4495 kind
= a
->ts
.kind
> p
->ts
.kind
? a
->ts
.kind
: p
->ts
.kind
;
4496 result
= gfc_get_constant_expr (a
->ts
.type
, kind
, &a
->where
);
4501 if (mpz_cmp_ui (p
->value
.integer
, 0) == 0)
4503 /* Result is processor-dependent. This processor just opts
4504 to not handle it at all. */
4505 gfc_error ("Second argument of MODULO at %L is zero", &a
->where
);
4506 gfc_free_expr (result
);
4507 return &gfc_bad_expr
;
4509 mpz_fdiv_r (result
->value
.integer
, a
->value
.integer
, p
->value
.integer
);
4514 if (mpfr_cmp_ui (p
->value
.real
, 0) == 0)
4516 /* Result is processor-dependent. */
4517 gfc_error ("Second argument of MODULO at %L is zero", &p
->where
);
4518 gfc_free_expr (result
);
4519 return &gfc_bad_expr
;
4522 gfc_set_model_kind (kind
);
4523 mpfr_fmod (result
->value
.real
, a
->value
.real
, p
->value
.real
,
4525 if (mpfr_cmp_ui (result
->value
.real
, 0) != 0)
4527 if (mpfr_signbit (a
->value
.real
) != mpfr_signbit (p
->value
.real
))
4528 mpfr_add (result
->value
.real
, result
->value
.real
, p
->value
.real
,
4532 mpfr_copysign (result
->value
.real
, result
->value
.real
,
4533 p
->value
.real
, GFC_RND_MODE
);
4537 gfc_internal_error ("gfc_simplify_modulo(): Bad arguments");
4540 return range_check (result
, "MODULO");
4545 gfc_simplify_nearest (gfc_expr
*x
, gfc_expr
*s
)
4548 mp_exp_t emin
, emax
;
4551 if (x
->expr_type
!= EXPR_CONSTANT
|| s
->expr_type
!= EXPR_CONSTANT
)
4554 result
= gfc_copy_expr (x
);
4556 /* Save current values of emin and emax. */
4557 emin
= mpfr_get_emin ();
4558 emax
= mpfr_get_emax ();
4560 /* Set emin and emax for the current model number. */
4561 kind
= gfc_validate_kind (BT_REAL
, x
->ts
.kind
, 0);
4562 mpfr_set_emin ((mp_exp_t
) gfc_real_kinds
[kind
].min_exponent
-
4563 mpfr_get_prec(result
->value
.real
) + 1);
4564 mpfr_set_emax ((mp_exp_t
) gfc_real_kinds
[kind
].max_exponent
- 1);
4565 mpfr_check_range (result
->value
.real
, 0, GMP_RNDU
);
4567 if (mpfr_sgn (s
->value
.real
) > 0)
4569 mpfr_nextabove (result
->value
.real
);
4570 mpfr_subnormalize (result
->value
.real
, 0, GMP_RNDU
);
4574 mpfr_nextbelow (result
->value
.real
);
4575 mpfr_subnormalize (result
->value
.real
, 0, GMP_RNDD
);
4578 mpfr_set_emin (emin
);
4579 mpfr_set_emax (emax
);
4581 /* Only NaN can occur. Do not use range check as it gives an
4582 error for denormal numbers. */
4583 if (mpfr_nan_p (result
->value
.real
) && flag_range_check
)
4585 gfc_error ("Result of NEAREST is NaN at %L", &result
->where
);
4586 gfc_free_expr (result
);
4587 return &gfc_bad_expr
;
4595 simplify_nint (const char *name
, gfc_expr
*e
, gfc_expr
*k
)
4597 gfc_expr
*itrunc
, *result
;
4600 kind
= get_kind (BT_INTEGER
, k
, name
, gfc_default_integer_kind
);
4602 return &gfc_bad_expr
;
4604 if (e
->expr_type
!= EXPR_CONSTANT
)
4607 itrunc
= gfc_copy_expr (e
);
4608 mpfr_round (itrunc
->value
.real
, e
->value
.real
);
4610 result
= gfc_get_constant_expr (BT_INTEGER
, kind
, &e
->where
);
4611 gfc_mpfr_to_mpz (result
->value
.integer
, itrunc
->value
.real
, &e
->where
);
4613 gfc_free_expr (itrunc
);
4615 return range_check (result
, name
);
4620 gfc_simplify_new_line (gfc_expr
*e
)
4624 result
= gfc_get_character_expr (e
->ts
.kind
, &e
->where
, NULL
, 1);
4625 result
->value
.character
.string
[0] = '\n';
4632 gfc_simplify_nint (gfc_expr
*e
, gfc_expr
*k
)
4634 return simplify_nint ("NINT", e
, k
);
4639 gfc_simplify_idnint (gfc_expr
*e
)
4641 return simplify_nint ("IDNINT", e
, NULL
);
4646 add_squared (gfc_expr
*result
, gfc_expr
*e
)
4650 gcc_assert (e
->ts
.type
== BT_REAL
&& e
->expr_type
== EXPR_CONSTANT
);
4651 gcc_assert (result
->ts
.type
== BT_REAL
4652 && result
->expr_type
== EXPR_CONSTANT
);
4654 gfc_set_model_kind (result
->ts
.kind
);
4656 mpfr_pow_ui (tmp
, e
->value
.real
, 2, GFC_RND_MODE
);
4657 mpfr_add (result
->value
.real
, result
->value
.real
, tmp
,
4666 do_sqrt (gfc_expr
*result
, gfc_expr
*e
)
4668 gcc_assert (e
->ts
.type
== BT_REAL
&& e
->expr_type
== EXPR_CONSTANT
);
4669 gcc_assert (result
->ts
.type
== BT_REAL
4670 && result
->expr_type
== EXPR_CONSTANT
);
4672 mpfr_set (result
->value
.real
, e
->value
.real
, GFC_RND_MODE
);
4673 mpfr_sqrt (result
->value
.real
, result
->value
.real
, GFC_RND_MODE
);
4679 gfc_simplify_norm2 (gfc_expr
*e
, gfc_expr
*dim
)
4683 if (!is_constant_array_expr (e
)
4684 || (dim
!= NULL
&& !gfc_is_constant_expr (dim
)))
4687 result
= transformational_result (e
, dim
, e
->ts
.type
, e
->ts
.kind
, &e
->where
);
4688 init_result_expr (result
, 0, NULL
);
4690 if (!dim
|| e
->rank
== 1)
4692 result
= simplify_transformation_to_scalar (result
, e
, NULL
,
4694 mpfr_sqrt (result
->value
.real
, result
->value
.real
, GFC_RND_MODE
);
4697 result
= simplify_transformation_to_array (result
, e
, dim
, NULL
,
4698 add_squared
, &do_sqrt
);
4705 gfc_simplify_not (gfc_expr
*e
)
4709 if (e
->expr_type
!= EXPR_CONSTANT
)
4712 result
= gfc_get_constant_expr (e
->ts
.type
, e
->ts
.kind
, &e
->where
);
4713 mpz_com (result
->value
.integer
, e
->value
.integer
);
4715 return range_check (result
, "NOT");
4720 gfc_simplify_null (gfc_expr
*mold
)
4726 result
= gfc_copy_expr (mold
);
4727 result
->expr_type
= EXPR_NULL
;
4730 result
= gfc_get_null_expr (NULL
);
4737 gfc_simplify_num_images (gfc_expr
*distance ATTRIBUTE_UNUSED
, gfc_expr
*failed
)
4741 if (flag_coarray
== GFC_FCOARRAY_NONE
)
4743 gfc_fatal_error ("Coarrays disabled at %C, use %<-fcoarray=%> to enable");
4744 return &gfc_bad_expr
;
4747 if (flag_coarray
!= GFC_FCOARRAY_SINGLE
)
4750 if (failed
&& failed
->expr_type
!= EXPR_CONSTANT
)
4753 /* FIXME: gfc_current_locus is wrong. */
4754 result
= gfc_get_constant_expr (BT_INTEGER
, gfc_default_integer_kind
,
4755 &gfc_current_locus
);
4757 if (failed
&& failed
->value
.logical
!= 0)
4758 mpz_set_si (result
->value
.integer
, 0);
4760 mpz_set_si (result
->value
.integer
, 1);
4767 gfc_simplify_or (gfc_expr
*x
, gfc_expr
*y
)
4772 if (x
->expr_type
!= EXPR_CONSTANT
|| y
->expr_type
!= EXPR_CONSTANT
)
4775 kind
= x
->ts
.kind
> y
->ts
.kind
? x
->ts
.kind
: y
->ts
.kind
;
4780 result
= gfc_get_constant_expr (BT_INTEGER
, kind
, &x
->where
);
4781 mpz_ior (result
->value
.integer
, x
->value
.integer
, y
->value
.integer
);
4782 return range_check (result
, "OR");
4785 return gfc_get_logical_expr (kind
, &x
->where
,
4786 x
->value
.logical
|| y
->value
.logical
);
4794 gfc_simplify_pack (gfc_expr
*array
, gfc_expr
*mask
, gfc_expr
*vector
)
4797 gfc_constructor
*array_ctor
, *mask_ctor
, *vector_ctor
;
4799 if (!is_constant_array_expr (array
)
4800 || !is_constant_array_expr (vector
)
4801 || (!gfc_is_constant_expr (mask
)
4802 && !is_constant_array_expr (mask
)))
4805 result
= gfc_get_array_expr (array
->ts
.type
, array
->ts
.kind
, &array
->where
);
4806 if (array
->ts
.type
== BT_DERIVED
)
4807 result
->ts
.u
.derived
= array
->ts
.u
.derived
;
4809 array_ctor
= gfc_constructor_first (array
->value
.constructor
);
4810 vector_ctor
= vector
4811 ? gfc_constructor_first (vector
->value
.constructor
)
4814 if (mask
->expr_type
== EXPR_CONSTANT
4815 && mask
->value
.logical
)
4817 /* Copy all elements of ARRAY to RESULT. */
4820 gfc_constructor_append_expr (&result
->value
.constructor
,
4821 gfc_copy_expr (array_ctor
->expr
),
4824 array_ctor
= gfc_constructor_next (array_ctor
);
4825 vector_ctor
= gfc_constructor_next (vector_ctor
);
4828 else if (mask
->expr_type
== EXPR_ARRAY
)
4830 /* Copy only those elements of ARRAY to RESULT whose
4831 MASK equals .TRUE.. */
4832 mask_ctor
= gfc_constructor_first (mask
->value
.constructor
);
4835 if (mask_ctor
->expr
->value
.logical
)
4837 gfc_constructor_append_expr (&result
->value
.constructor
,
4838 gfc_copy_expr (array_ctor
->expr
),
4840 vector_ctor
= gfc_constructor_next (vector_ctor
);
4843 array_ctor
= gfc_constructor_next (array_ctor
);
4844 mask_ctor
= gfc_constructor_next (mask_ctor
);
4848 /* Append any left-over elements from VECTOR to RESULT. */
4851 gfc_constructor_append_expr (&result
->value
.constructor
,
4852 gfc_copy_expr (vector_ctor
->expr
),
4854 vector_ctor
= gfc_constructor_next (vector_ctor
);
4857 result
->shape
= gfc_get_shape (1);
4858 gfc_array_size (result
, &result
->shape
[0]);
4860 if (array
->ts
.type
== BT_CHARACTER
)
4861 result
->ts
.u
.cl
= array
->ts
.u
.cl
;
4868 do_xor (gfc_expr
*result
, gfc_expr
*e
)
4870 gcc_assert (e
->ts
.type
== BT_LOGICAL
&& e
->expr_type
== EXPR_CONSTANT
);
4871 gcc_assert (result
->ts
.type
== BT_LOGICAL
4872 && result
->expr_type
== EXPR_CONSTANT
);
4874 result
->value
.logical
= result
->value
.logical
!= e
->value
.logical
;
4881 gfc_simplify_parity (gfc_expr
*e
, gfc_expr
*dim
)
4883 return simplify_transformation (e
, dim
, NULL
, 0, do_xor
);
4888 gfc_simplify_popcnt (gfc_expr
*e
)
4893 if (e
->expr_type
!= EXPR_CONSTANT
)
4896 k
= gfc_validate_kind (e
->ts
.type
, e
->ts
.kind
, false);
4898 /* Convert argument to unsigned, then count the '1' bits. */
4899 mpz_init_set (x
, e
->value
.integer
);
4900 convert_mpz_to_unsigned (x
, gfc_integer_kinds
[k
].bit_size
);
4901 res
= mpz_popcount (x
);
4904 return gfc_get_int_expr (gfc_default_integer_kind
, &e
->where
, res
);
4909 gfc_simplify_poppar (gfc_expr
*e
)
4915 if (e
->expr_type
!= EXPR_CONSTANT
)
4918 popcnt
= gfc_simplify_popcnt (e
);
4919 gcc_assert (popcnt
);
4921 s
= gfc_extract_int (popcnt
, &i
);
4924 return gfc_get_int_expr (gfc_default_integer_kind
, &e
->where
, i
% 2);
4929 gfc_simplify_precision (gfc_expr
*e
)
4931 int i
= gfc_validate_kind (e
->ts
.type
, e
->ts
.kind
, false);
4932 return gfc_get_int_expr (gfc_default_integer_kind
, &e
->where
,
4933 gfc_real_kinds
[i
].precision
);
4938 gfc_simplify_product (gfc_expr
*array
, gfc_expr
*dim
, gfc_expr
*mask
)
4940 return simplify_transformation (array
, dim
, mask
, 1, gfc_multiply
);
4945 gfc_simplify_radix (gfc_expr
*e
)
4948 i
= gfc_validate_kind (e
->ts
.type
, e
->ts
.kind
, false);
4953 i
= gfc_integer_kinds
[i
].radix
;
4957 i
= gfc_real_kinds
[i
].radix
;
4964 return gfc_get_int_expr (gfc_default_integer_kind
, &e
->where
, i
);
4969 gfc_simplify_range (gfc_expr
*e
)
4972 i
= gfc_validate_kind (e
->ts
.type
, e
->ts
.kind
, false);
4977 i
= gfc_integer_kinds
[i
].range
;
4982 i
= gfc_real_kinds
[i
].range
;
4989 return gfc_get_int_expr (gfc_default_integer_kind
, &e
->where
, i
);
4994 gfc_simplify_rank (gfc_expr
*e
)
5000 return gfc_get_int_expr (gfc_default_integer_kind
, &e
->where
, e
->rank
);
5005 gfc_simplify_real (gfc_expr
*e
, gfc_expr
*k
)
5007 gfc_expr
*result
= NULL
;
5010 if (e
->ts
.type
== BT_COMPLEX
)
5011 kind
= get_kind (BT_REAL
, k
, "REAL", e
->ts
.kind
);
5013 kind
= get_kind (BT_REAL
, k
, "REAL", gfc_default_real_kind
);
5016 return &gfc_bad_expr
;
5018 if (e
->expr_type
!= EXPR_CONSTANT
)
5021 if (convert_boz (e
, kind
) == &gfc_bad_expr
)
5022 return &gfc_bad_expr
;
5024 result
= gfc_convert_constant (e
, BT_REAL
, kind
);
5025 if (result
== &gfc_bad_expr
)
5026 return &gfc_bad_expr
;
5028 return range_check (result
, "REAL");
5033 gfc_simplify_realpart (gfc_expr
*e
)
5037 if (e
->expr_type
!= EXPR_CONSTANT
)
5040 result
= gfc_get_constant_expr (BT_REAL
, e
->ts
.kind
, &e
->where
);
5041 mpc_real (result
->value
.real
, e
->value
.complex, GFC_RND_MODE
);
5043 return range_check (result
, "REALPART");
5047 gfc_simplify_repeat (gfc_expr
*e
, gfc_expr
*n
)
5050 int i
, j
, len
, ncop
, nlen
;
5052 bool have_length
= false;
5054 /* If NCOPIES isn't a constant, there's nothing we can do. */
5055 if (n
->expr_type
!= EXPR_CONSTANT
)
5058 /* If NCOPIES is negative, it's an error. */
5059 if (mpz_sgn (n
->value
.integer
) < 0)
5061 gfc_error ("Argument NCOPIES of REPEAT intrinsic is negative at %L",
5063 return &gfc_bad_expr
;
5066 /* If we don't know the character length, we can do no more. */
5067 if (e
->ts
.u
.cl
&& e
->ts
.u
.cl
->length
5068 && e
->ts
.u
.cl
->length
->expr_type
== EXPR_CONSTANT
)
5070 len
= mpz_get_si (e
->ts
.u
.cl
->length
->value
.integer
);
5073 else if (e
->expr_type
== EXPR_CONSTANT
5074 && (e
->ts
.u
.cl
== NULL
|| e
->ts
.u
.cl
->length
== NULL
))
5076 len
= e
->value
.character
.length
;
5081 /* If the source length is 0, any value of NCOPIES is valid
5082 and everything behaves as if NCOPIES == 0. */
5085 mpz_set_ui (ncopies
, 0);
5087 mpz_set (ncopies
, n
->value
.integer
);
5089 /* Check that NCOPIES isn't too large. */
5095 /* Compute the maximum value allowed for NCOPIES: huge(cl) / len. */
5097 i
= gfc_validate_kind (BT_INTEGER
, gfc_charlen_int_kind
, false);
5101 mpz_tdiv_q (max
, gfc_integer_kinds
[i
].huge
,
5102 e
->ts
.u
.cl
->length
->value
.integer
);
5106 mpz_init_set_si (mlen
, len
);
5107 mpz_tdiv_q (max
, gfc_integer_kinds
[i
].huge
, mlen
);
5111 /* The check itself. */
5112 if (mpz_cmp (ncopies
, max
) > 0)
5115 mpz_clear (ncopies
);
5116 gfc_error ("Argument NCOPIES of REPEAT intrinsic is too large at %L",
5118 return &gfc_bad_expr
;
5123 mpz_clear (ncopies
);
5125 /* For further simplification, we need the character string to be
5127 if (e
->expr_type
!= EXPR_CONSTANT
)
5131 (e
->ts
.u
.cl
->length
&&
5132 mpz_sgn (e
->ts
.u
.cl
->length
->value
.integer
)) != 0)
5134 const char *res
= gfc_extract_int (n
, &ncop
);
5135 gcc_assert (res
== NULL
);
5141 return gfc_get_character_expr (e
->ts
.kind
, &e
->where
, NULL
, 0);
5143 len
= e
->value
.character
.length
;
5146 result
= gfc_get_character_expr (e
->ts
.kind
, &e
->where
, NULL
, nlen
);
5147 for (i
= 0; i
< ncop
; i
++)
5148 for (j
= 0; j
< len
; j
++)
5149 result
->value
.character
.string
[j
+i
*len
]= e
->value
.character
.string
[j
];
5151 result
->value
.character
.string
[nlen
] = '\0'; /* For debugger */
5156 /* This one is a bear, but mainly has to do with shuffling elements. */
5159 gfc_simplify_reshape (gfc_expr
*source
, gfc_expr
*shape_exp
,
5160 gfc_expr
*pad
, gfc_expr
*order_exp
)
5162 int order
[GFC_MAX_DIMENSIONS
], shape
[GFC_MAX_DIMENSIONS
];
5163 int i
, rank
, npad
, x
[GFC_MAX_DIMENSIONS
];
5167 gfc_expr
*e
, *result
;
5169 /* Check that argument expression types are OK. */
5170 if (!is_constant_array_expr (source
)
5171 || !is_constant_array_expr (shape_exp
)
5172 || !is_constant_array_expr (pad
)
5173 || !is_constant_array_expr (order_exp
))
5176 /* Proceed with simplification, unpacking the array. */
5183 e
= gfc_constructor_lookup_expr (shape_exp
->value
.constructor
, rank
);
5187 gfc_extract_int (e
, &shape
[rank
]);
5189 gcc_assert (rank
>= 0 && rank
< GFC_MAX_DIMENSIONS
);
5190 gcc_assert (shape
[rank
] >= 0);
5195 gcc_assert (rank
> 0);
5197 /* Now unpack the order array if present. */
5198 if (order_exp
== NULL
)
5200 for (i
= 0; i
< rank
; i
++)
5205 for (i
= 0; i
< rank
; i
++)
5208 for (i
= 0; i
< rank
; i
++)
5210 e
= gfc_constructor_lookup_expr (order_exp
->value
.constructor
, i
);
5213 gfc_extract_int (e
, &order
[i
]);
5215 gcc_assert (order
[i
] >= 1 && order
[i
] <= rank
);
5217 gcc_assert (x
[order
[i
]] == 0);
5222 /* Count the elements in the source and padding arrays. */
5227 gfc_array_size (pad
, &size
);
5228 npad
= mpz_get_ui (size
);
5232 gfc_array_size (source
, &size
);
5233 nsource
= mpz_get_ui (size
);
5236 /* If it weren't for that pesky permutation we could just loop
5237 through the source and round out any shortage with pad elements.
5238 But no, someone just had to have the compiler do something the
5239 user should be doing. */
5241 for (i
= 0; i
< rank
; i
++)
5244 result
= gfc_get_array_expr (source
->ts
.type
, source
->ts
.kind
,
5246 if (source
->ts
.type
== BT_DERIVED
)
5247 result
->ts
.u
.derived
= source
->ts
.u
.derived
;
5248 result
->rank
= rank
;
5249 result
->shape
= gfc_get_shape (rank
);
5250 for (i
= 0; i
< rank
; i
++)
5251 mpz_init_set_ui (result
->shape
[i
], shape
[i
]);
5253 while (nsource
> 0 || npad
> 0)
5255 /* Figure out which element to extract. */
5256 mpz_set_ui (index
, 0);
5258 for (i
= rank
- 1; i
>= 0; i
--)
5260 mpz_add_ui (index
, index
, x
[order
[i
]]);
5262 mpz_mul_ui (index
, index
, shape
[order
[i
- 1]]);
5265 if (mpz_cmp_ui (index
, INT_MAX
) > 0)
5266 gfc_internal_error ("Reshaped array too large at %C");
5268 j
= mpz_get_ui (index
);
5271 e
= gfc_constructor_lookup_expr (source
->value
.constructor
, j
);
5281 e
= gfc_constructor_lookup_expr (pad
->value
.constructor
, j
);
5285 gfc_constructor_append_expr (&result
->value
.constructor
,
5286 gfc_copy_expr (e
), &e
->where
);
5288 /* Calculate the next element. */
5292 if (++x
[i
] < shape
[i
])
5308 gfc_simplify_rrspacing (gfc_expr
*x
)
5314 if (x
->expr_type
!= EXPR_CONSTANT
)
5317 i
= gfc_validate_kind (x
->ts
.type
, x
->ts
.kind
, false);
5319 result
= gfc_get_constant_expr (BT_REAL
, x
->ts
.kind
, &x
->where
);
5321 /* RRSPACING(+/- 0.0) = 0.0 */
5322 if (mpfr_zero_p (x
->value
.real
))
5324 mpfr_set_ui (result
->value
.real
, 0, GFC_RND_MODE
);
5328 /* RRSPACING(inf) = NaN */
5329 if (mpfr_inf_p (x
->value
.real
))
5331 mpfr_set_nan (result
->value
.real
);
5335 /* RRSPACING(NaN) = same NaN */
5336 if (mpfr_nan_p (x
->value
.real
))
5338 mpfr_set (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
5342 /* | x * 2**(-e) | * 2**p. */
5343 mpfr_abs (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
5344 e
= - (long int) mpfr_get_exp (x
->value
.real
);
5345 mpfr_mul_2si (result
->value
.real
, result
->value
.real
, e
, GFC_RND_MODE
);
5347 p
= (long int) gfc_real_kinds
[i
].digits
;
5348 mpfr_mul_2si (result
->value
.real
, result
->value
.real
, p
, GFC_RND_MODE
);
5350 return range_check (result
, "RRSPACING");
5355 gfc_simplify_scale (gfc_expr
*x
, gfc_expr
*i
)
5357 int k
, neg_flag
, power
, exp_range
;
5358 mpfr_t scale
, radix
;
5361 if (x
->expr_type
!= EXPR_CONSTANT
|| i
->expr_type
!= EXPR_CONSTANT
)
5364 result
= gfc_get_constant_expr (BT_REAL
, x
->ts
.kind
, &x
->where
);
5366 if (mpfr_zero_p (x
->value
.real
))
5368 mpfr_set_ui (result
->value
.real
, 0, GFC_RND_MODE
);
5372 k
= gfc_validate_kind (BT_REAL
, x
->ts
.kind
, false);
5374 exp_range
= gfc_real_kinds
[k
].max_exponent
- gfc_real_kinds
[k
].min_exponent
;
5376 /* This check filters out values of i that would overflow an int. */
5377 if (mpz_cmp_si (i
->value
.integer
, exp_range
+ 2) > 0
5378 || mpz_cmp_si (i
->value
.integer
, -exp_range
- 2) < 0)
5380 gfc_error ("Result of SCALE overflows its kind at %L", &result
->where
);
5381 gfc_free_expr (result
);
5382 return &gfc_bad_expr
;
5385 /* Compute scale = radix ** power. */
5386 power
= mpz_get_si (i
->value
.integer
);
5396 gfc_set_model_kind (x
->ts
.kind
);
5399 mpfr_set_ui (radix
, gfc_real_kinds
[k
].radix
, GFC_RND_MODE
);
5400 mpfr_pow_ui (scale
, radix
, power
, GFC_RND_MODE
);
5403 mpfr_div (result
->value
.real
, x
->value
.real
, scale
, GFC_RND_MODE
);
5405 mpfr_mul (result
->value
.real
, x
->value
.real
, scale
, GFC_RND_MODE
);
5407 mpfr_clears (scale
, radix
, NULL
);
5409 return range_check (result
, "SCALE");
5413 /* Variants of strspn and strcspn that operate on wide characters. */
5416 wide_strspn (const gfc_char_t
*s1
, const gfc_char_t
*s2
)
5419 const gfc_char_t
*c
;
5423 for (c
= s2
; *c
; c
++)
5437 wide_strcspn (const gfc_char_t
*s1
, const gfc_char_t
*s2
)
5440 const gfc_char_t
*c
;
5444 for (c
= s2
; *c
; c
++)
5459 gfc_simplify_scan (gfc_expr
*e
, gfc_expr
*c
, gfc_expr
*b
, gfc_expr
*kind
)
5464 size_t indx
, len
, lenc
;
5465 int k
= get_kind (BT_INTEGER
, kind
, "SCAN", gfc_default_integer_kind
);
5468 return &gfc_bad_expr
;
5470 if (e
->expr_type
!= EXPR_CONSTANT
|| c
->expr_type
!= EXPR_CONSTANT
5471 || ( b
!= NULL
&& b
->expr_type
!= EXPR_CONSTANT
))
5474 if (b
!= NULL
&& b
->value
.logical
!= 0)
5479 len
= e
->value
.character
.length
;
5480 lenc
= c
->value
.character
.length
;
5482 if (len
== 0 || lenc
== 0)
5490 indx
= wide_strcspn (e
->value
.character
.string
,
5491 c
->value
.character
.string
) + 1;
5498 for (indx
= len
; indx
> 0; indx
--)
5500 for (i
= 0; i
< lenc
; i
++)
5502 if (c
->value
.character
.string
[i
]
5503 == e
->value
.character
.string
[indx
- 1])
5512 result
= gfc_get_int_expr (k
, &e
->where
, indx
);
5513 return range_check (result
, "SCAN");
5518 gfc_simplify_selected_char_kind (gfc_expr
*e
)
5522 if (e
->expr_type
!= EXPR_CONSTANT
)
5525 if (gfc_compare_with_Cstring (e
, "ascii", false) == 0
5526 || gfc_compare_with_Cstring (e
, "default", false) == 0)
5528 else if (gfc_compare_with_Cstring (e
, "iso_10646", false) == 0)
5533 return gfc_get_int_expr (gfc_default_integer_kind
, &e
->where
, kind
);
5538 gfc_simplify_selected_int_kind (gfc_expr
*e
)
5542 if (e
->expr_type
!= EXPR_CONSTANT
|| gfc_extract_int (e
, &range
) != NULL
)
5547 for (i
= 0; gfc_integer_kinds
[i
].kind
!= 0; i
++)
5548 if (gfc_integer_kinds
[i
].range
>= range
5549 && gfc_integer_kinds
[i
].kind
< kind
)
5550 kind
= gfc_integer_kinds
[i
].kind
;
5552 if (kind
== INT_MAX
)
5555 return gfc_get_int_expr (gfc_default_integer_kind
, &e
->where
, kind
);
5560 gfc_simplify_selected_real_kind (gfc_expr
*p
, gfc_expr
*q
, gfc_expr
*rdx
)
5562 int range
, precision
, radix
, i
, kind
, found_precision
, found_range
,
5564 locus
*loc
= &gfc_current_locus
;
5570 if (p
->expr_type
!= EXPR_CONSTANT
5571 || gfc_extract_int (p
, &precision
) != NULL
)
5580 if (q
->expr_type
!= EXPR_CONSTANT
5581 || gfc_extract_int (q
, &range
) != NULL
)
5592 if (rdx
->expr_type
!= EXPR_CONSTANT
5593 || gfc_extract_int (rdx
, &radix
) != NULL
)
5601 found_precision
= 0;
5605 for (i
= 0; gfc_real_kinds
[i
].kind
!= 0; i
++)
5607 if (gfc_real_kinds
[i
].precision
>= precision
)
5608 found_precision
= 1;
5610 if (gfc_real_kinds
[i
].range
>= range
)
5613 if (radix
== 0 || gfc_real_kinds
[i
].radix
== radix
)
5616 if (gfc_real_kinds
[i
].precision
>= precision
5617 && gfc_real_kinds
[i
].range
>= range
5618 && (radix
== 0 || gfc_real_kinds
[i
].radix
== radix
)
5619 && gfc_real_kinds
[i
].kind
< kind
)
5620 kind
= gfc_real_kinds
[i
].kind
;
5623 if (kind
== INT_MAX
)
5625 if (found_radix
&& found_range
&& !found_precision
)
5627 else if (found_radix
&& found_precision
&& !found_range
)
5629 else if (found_radix
&& !found_precision
&& !found_range
)
5631 else if (found_radix
)
5637 return gfc_get_int_expr (gfc_default_integer_kind
, loc
, kind
);
5642 gfc_simplify_set_exponent (gfc_expr
*x
, gfc_expr
*i
)
5645 mpfr_t exp
, absv
, log2
, pow2
, frac
;
5648 if (x
->expr_type
!= EXPR_CONSTANT
|| i
->expr_type
!= EXPR_CONSTANT
)
5651 result
= gfc_get_constant_expr (BT_REAL
, x
->ts
.kind
, &x
->where
);
5653 /* SET_EXPONENT (+/-0.0, I) = +/- 0.0
5654 SET_EXPONENT (NaN) = same NaN */
5655 if (mpfr_zero_p (x
->value
.real
) || mpfr_nan_p (x
->value
.real
))
5657 mpfr_set (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
5661 /* SET_EXPONENT (inf) = NaN */
5662 if (mpfr_inf_p (x
->value
.real
))
5664 mpfr_set_nan (result
->value
.real
);
5668 gfc_set_model_kind (x
->ts
.kind
);
5675 mpfr_abs (absv
, x
->value
.real
, GFC_RND_MODE
);
5676 mpfr_log2 (log2
, absv
, GFC_RND_MODE
);
5678 mpfr_trunc (log2
, log2
);
5679 mpfr_add_ui (exp
, log2
, 1, GFC_RND_MODE
);
5681 /* Old exponent value, and fraction. */
5682 mpfr_ui_pow (pow2
, 2, exp
, GFC_RND_MODE
);
5684 mpfr_div (frac
, absv
, pow2
, GFC_RND_MODE
);
5687 exp2
= (unsigned long) mpz_get_d (i
->value
.integer
);
5688 mpfr_mul_2exp (result
->value
.real
, frac
, exp2
, GFC_RND_MODE
);
5690 mpfr_clears (absv
, log2
, pow2
, frac
, NULL
);
5692 return range_check (result
, "SET_EXPONENT");
5697 gfc_simplify_shape (gfc_expr
*source
, gfc_expr
*kind
)
5699 mpz_t shape
[GFC_MAX_DIMENSIONS
];
5700 gfc_expr
*result
, *e
, *f
;
5704 int k
= get_kind (BT_INTEGER
, kind
, "SHAPE", gfc_default_integer_kind
);
5706 if (source
->rank
== -1)
5709 result
= gfc_get_array_expr (BT_INTEGER
, k
, &source
->where
);
5711 if (source
->rank
== 0)
5714 if (source
->expr_type
== EXPR_VARIABLE
)
5716 ar
= gfc_find_array_ref (source
);
5717 t
= gfc_array_ref_shape (ar
, shape
);
5719 else if (source
->shape
)
5722 for (n
= 0; n
< source
->rank
; n
++)
5724 mpz_init (shape
[n
]);
5725 mpz_set (shape
[n
], source
->shape
[n
]);
5731 for (n
= 0; n
< source
->rank
; n
++)
5733 e
= gfc_get_constant_expr (BT_INTEGER
, k
, &source
->where
);
5736 mpz_set (e
->value
.integer
, shape
[n
]);
5739 mpz_set_ui (e
->value
.integer
, n
+ 1);
5741 f
= simplify_size (source
, e
, k
);
5745 gfc_free_expr (result
);
5752 if (e
== &gfc_bad_expr
|| range_check (e
, "SHAPE") == &gfc_bad_expr
)
5754 gfc_free_expr (result
);
5756 gfc_clear_shape (shape
, source
->rank
);
5757 return &gfc_bad_expr
;
5760 gfc_constructor_append_expr (&result
->value
.constructor
, e
, NULL
);
5764 gfc_clear_shape (shape
, source
->rank
);
5771 simplify_size (gfc_expr
*array
, gfc_expr
*dim
, int k
)
5774 gfc_expr
*return_value
;
5777 /* For unary operations, the size of the result is given by the size
5778 of the operand. For binary ones, it's the size of the first operand
5779 unless it is scalar, then it is the size of the second. */
5780 if (array
->expr_type
== EXPR_OP
&& !array
->value
.op
.uop
)
5782 gfc_expr
* replacement
;
5783 gfc_expr
* simplified
;
5785 switch (array
->value
.op
.op
)
5787 /* Unary operations. */
5789 case INTRINSIC_UPLUS
:
5790 case INTRINSIC_UMINUS
:
5791 case INTRINSIC_PARENTHESES
:
5792 replacement
= array
->value
.op
.op1
;
5795 /* Binary operations. If any one of the operands is scalar, take
5796 the other one's size. If both of them are arrays, it does not
5797 matter -- try to find one with known shape, if possible. */
5799 if (array
->value
.op
.op1
->rank
== 0)
5800 replacement
= array
->value
.op
.op2
;
5801 else if (array
->value
.op
.op2
->rank
== 0)
5802 replacement
= array
->value
.op
.op1
;
5805 simplified
= simplify_size (array
->value
.op
.op1
, dim
, k
);
5809 replacement
= array
->value
.op
.op2
;
5814 /* Try to reduce it directly if possible. */
5815 simplified
= simplify_size (replacement
, dim
, k
);
5817 /* Otherwise, we build a new SIZE call. This is hopefully at least
5818 simpler than the original one. */
5821 gfc_expr
*kind
= gfc_get_int_expr (gfc_default_integer_kind
, NULL
, k
);
5822 simplified
= gfc_build_intrinsic_call (gfc_current_ns
,
5823 GFC_ISYM_SIZE
, "size",
5825 gfc_copy_expr (replacement
),
5826 gfc_copy_expr (dim
),
5834 if (!gfc_array_size (array
, &size
))
5839 if (dim
->expr_type
!= EXPR_CONSTANT
)
5842 d
= mpz_get_ui (dim
->value
.integer
) - 1;
5843 if (!gfc_array_dimen_size (array
, d
, &size
))
5847 return_value
= gfc_get_constant_expr (BT_INTEGER
, k
, &array
->where
);
5848 mpz_set (return_value
->value
.integer
, size
);
5851 return return_value
;
5856 gfc_simplify_size (gfc_expr
*array
, gfc_expr
*dim
, gfc_expr
*kind
)
5859 int k
= get_kind (BT_INTEGER
, kind
, "SIZE", gfc_default_integer_kind
);
5862 return &gfc_bad_expr
;
5864 result
= simplify_size (array
, dim
, k
);
5865 if (result
== NULL
|| result
== &gfc_bad_expr
)
5868 return range_check (result
, "SIZE");
5872 /* SIZEOF and C_SIZEOF return the size in bytes of an array element
5873 multiplied by the array size. */
5876 gfc_simplify_sizeof (gfc_expr
*x
)
5878 gfc_expr
*result
= NULL
;
5881 if (x
->ts
.type
== BT_CLASS
|| x
->ts
.deferred
)
5884 if (x
->ts
.type
== BT_CHARACTER
5885 && (!x
->ts
.u
.cl
|| !x
->ts
.u
.cl
->length
5886 || x
->ts
.u
.cl
->length
->expr_type
!= EXPR_CONSTANT
))
5889 if (x
->rank
&& x
->expr_type
!= EXPR_ARRAY
5890 && !gfc_array_size (x
, &array_size
))
5893 result
= gfc_get_constant_expr (BT_INTEGER
, gfc_index_integer_kind
,
5895 mpz_set_si (result
->value
.integer
, gfc_target_expr_size (x
));
5901 /* STORAGE_SIZE returns the size in bits of a single array element. */
5904 gfc_simplify_storage_size (gfc_expr
*x
,
5907 gfc_expr
*result
= NULL
;
5910 if (x
->ts
.type
== BT_CLASS
|| x
->ts
.deferred
)
5913 if (x
->ts
.type
== BT_CHARACTER
&& x
->expr_type
!= EXPR_CONSTANT
5914 && (!x
->ts
.u
.cl
|| !x
->ts
.u
.cl
->length
5915 || x
->ts
.u
.cl
->length
->expr_type
!= EXPR_CONSTANT
))
5918 k
= get_kind (BT_INTEGER
, kind
, "STORAGE_SIZE", gfc_default_integer_kind
);
5920 return &gfc_bad_expr
;
5922 result
= gfc_get_constant_expr (BT_INTEGER
, k
, &x
->where
);
5924 mpz_set_si (result
->value
.integer
, gfc_element_size (x
));
5925 mpz_mul_ui (result
->value
.integer
, result
->value
.integer
, BITS_PER_UNIT
);
5927 return range_check (result
, "STORAGE_SIZE");
5932 gfc_simplify_sign (gfc_expr
*x
, gfc_expr
*y
)
5936 if (x
->expr_type
!= EXPR_CONSTANT
|| y
->expr_type
!= EXPR_CONSTANT
)
5939 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
5944 mpz_abs (result
->value
.integer
, x
->value
.integer
);
5945 if (mpz_sgn (y
->value
.integer
) < 0)
5946 mpz_neg (result
->value
.integer
, result
->value
.integer
);
5951 mpfr_copysign (result
->value
.real
, x
->value
.real
, y
->value
.real
,
5954 mpfr_setsign (result
->value
.real
, x
->value
.real
,
5955 mpfr_sgn (y
->value
.real
) < 0 ? 1 : 0, GFC_RND_MODE
);
5959 gfc_internal_error ("Bad type in gfc_simplify_sign");
5967 gfc_simplify_sin (gfc_expr
*x
)
5971 if (x
->expr_type
!= EXPR_CONSTANT
)
5974 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
5979 mpfr_sin (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
5983 gfc_set_model (x
->value
.real
);
5984 mpc_sin (result
->value
.complex, x
->value
.complex, GFC_MPC_RND_MODE
);
5988 gfc_internal_error ("in gfc_simplify_sin(): Bad type");
5991 return range_check (result
, "SIN");
5996 gfc_simplify_sinh (gfc_expr
*x
)
6000 if (x
->expr_type
!= EXPR_CONSTANT
)
6003 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
6008 mpfr_sinh (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
6012 mpc_sinh (result
->value
.complex, x
->value
.complex, GFC_MPC_RND_MODE
);
6019 return range_check (result
, "SINH");
6023 /* The argument is always a double precision real that is converted to
6024 single precision. TODO: Rounding! */
6027 gfc_simplify_sngl (gfc_expr
*a
)
6031 if (a
->expr_type
!= EXPR_CONSTANT
)
6034 result
= gfc_real2real (a
, gfc_default_real_kind
);
6035 return range_check (result
, "SNGL");
6040 gfc_simplify_spacing (gfc_expr
*x
)
6046 if (x
->expr_type
!= EXPR_CONSTANT
)
6049 i
= gfc_validate_kind (x
->ts
.type
, x
->ts
.kind
, false);
6050 result
= gfc_get_constant_expr (BT_REAL
, x
->ts
.kind
, &x
->where
);
6052 /* SPACING(+/- 0.0) = SPACING(TINY(0.0)) = TINY(0.0) */
6053 if (mpfr_zero_p (x
->value
.real
))
6055 mpfr_set (result
->value
.real
, gfc_real_kinds
[i
].tiny
, GFC_RND_MODE
);
6059 /* SPACING(inf) = NaN */
6060 if (mpfr_inf_p (x
->value
.real
))
6062 mpfr_set_nan (result
->value
.real
);
6066 /* SPACING(NaN) = same NaN */
6067 if (mpfr_nan_p (x
->value
.real
))
6069 mpfr_set (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
6073 /* In the Fortran 95 standard, the result is b**(e - p) where b, e, and p
6074 are the radix, exponent of x, and precision. This excludes the
6075 possibility of subnormal numbers. Fortran 2003 states the result is
6076 b**max(e - p, emin - 1). */
6078 ep
= (long int) mpfr_get_exp (x
->value
.real
) - gfc_real_kinds
[i
].digits
;
6079 en
= (long int) gfc_real_kinds
[i
].min_exponent
- 1;
6080 en
= en
> ep
? en
: ep
;
6082 mpfr_set_ui (result
->value
.real
, 1, GFC_RND_MODE
);
6083 mpfr_mul_2si (result
->value
.real
, result
->value
.real
, en
, GFC_RND_MODE
);
6085 return range_check (result
, "SPACING");
6090 gfc_simplify_spread (gfc_expr
*source
, gfc_expr
*dim_expr
, gfc_expr
*ncopies_expr
)
6092 gfc_expr
*result
= NULL
;
6093 int nelem
, i
, j
, dim
, ncopies
;
6096 if ((!gfc_is_constant_expr (source
)
6097 && !is_constant_array_expr (source
))
6098 || !gfc_is_constant_expr (dim_expr
)
6099 || !gfc_is_constant_expr (ncopies_expr
))
6102 gcc_assert (dim_expr
->ts
.type
== BT_INTEGER
);
6103 gfc_extract_int (dim_expr
, &dim
);
6104 dim
-= 1; /* zero-base DIM */
6106 gcc_assert (ncopies_expr
->ts
.type
== BT_INTEGER
);
6107 gfc_extract_int (ncopies_expr
, &ncopies
);
6108 ncopies
= MAX (ncopies
, 0);
6110 /* Do not allow the array size to exceed the limit for an array
6112 if (source
->expr_type
== EXPR_ARRAY
)
6114 if (!gfc_array_size (source
, &size
))
6115 gfc_internal_error ("Failure getting length of a constant array.");
6118 mpz_init_set_ui (size
, 1);
6120 nelem
= mpz_get_si (size
) * ncopies
;
6121 if (nelem
> flag_max_array_constructor
)
6123 if (gfc_current_ns
->sym_root
->n
.sym
->attr
.flavor
== FL_PARAMETER
)
6125 gfc_error ("The number of elements (%d) in the array constructor "
6126 "at %L requires an increase of the allowed %d upper "
6127 "limit. See %<-fmax-array-constructor%> option.",
6128 nelem
, &source
->where
, flag_max_array_constructor
);
6129 return &gfc_bad_expr
;
6135 if (source
->expr_type
== EXPR_CONSTANT
)
6137 gcc_assert (dim
== 0);
6139 result
= gfc_get_array_expr (source
->ts
.type
, source
->ts
.kind
,
6141 if (source
->ts
.type
== BT_DERIVED
)
6142 result
->ts
.u
.derived
= source
->ts
.u
.derived
;
6144 result
->shape
= gfc_get_shape (result
->rank
);
6145 mpz_init_set_si (result
->shape
[0], ncopies
);
6147 for (i
= 0; i
< ncopies
; ++i
)
6148 gfc_constructor_append_expr (&result
->value
.constructor
,
6149 gfc_copy_expr (source
), NULL
);
6151 else if (source
->expr_type
== EXPR_ARRAY
)
6153 int offset
, rstride
[GFC_MAX_DIMENSIONS
], extent
[GFC_MAX_DIMENSIONS
];
6154 gfc_constructor
*source_ctor
;
6156 gcc_assert (source
->rank
< GFC_MAX_DIMENSIONS
);
6157 gcc_assert (dim
>= 0 && dim
<= source
->rank
);
6159 result
= gfc_get_array_expr (source
->ts
.type
, source
->ts
.kind
,
6161 if (source
->ts
.type
== BT_DERIVED
)
6162 result
->ts
.u
.derived
= source
->ts
.u
.derived
;
6163 result
->rank
= source
->rank
+ 1;
6164 result
->shape
= gfc_get_shape (result
->rank
);
6166 for (i
= 0, j
= 0; i
< result
->rank
; ++i
)
6169 mpz_init_set (result
->shape
[i
], source
->shape
[j
++]);
6171 mpz_init_set_si (result
->shape
[i
], ncopies
);
6173 extent
[i
] = mpz_get_si (result
->shape
[i
]);
6174 rstride
[i
] = (i
== 0) ? 1 : rstride
[i
-1] * extent
[i
-1];
6178 for (source_ctor
= gfc_constructor_first (source
->value
.constructor
);
6179 source_ctor
; source_ctor
= gfc_constructor_next (source_ctor
))
6181 for (i
= 0; i
< ncopies
; ++i
)
6182 gfc_constructor_insert_expr (&result
->value
.constructor
,
6183 gfc_copy_expr (source_ctor
->expr
),
6184 NULL
, offset
+ i
* rstride
[dim
]);
6186 offset
+= (dim
== 0 ? ncopies
: 1);
6191 gfc_error ("Simplification of SPREAD at %L not yet implemented",
6193 return &gfc_bad_expr
;
6196 if (source
->ts
.type
== BT_CHARACTER
)
6197 result
->ts
.u
.cl
= source
->ts
.u
.cl
;
6204 gfc_simplify_sqrt (gfc_expr
*e
)
6206 gfc_expr
*result
= NULL
;
6208 if (e
->expr_type
!= EXPR_CONSTANT
)
6214 if (mpfr_cmp_si (e
->value
.real
, 0) < 0)
6216 gfc_error ("Argument of SQRT at %L has a negative value",
6218 return &gfc_bad_expr
;
6220 result
= gfc_get_constant_expr (e
->ts
.type
, e
->ts
.kind
, &e
->where
);
6221 mpfr_sqrt (result
->value
.real
, e
->value
.real
, GFC_RND_MODE
);
6225 gfc_set_model (e
->value
.real
);
6227 result
= gfc_get_constant_expr (e
->ts
.type
, e
->ts
.kind
, &e
->where
);
6228 mpc_sqrt (result
->value
.complex, e
->value
.complex, GFC_MPC_RND_MODE
);
6232 gfc_internal_error ("invalid argument of SQRT at %L", &e
->where
);
6235 return range_check (result
, "SQRT");
6240 gfc_simplify_sum (gfc_expr
*array
, gfc_expr
*dim
, gfc_expr
*mask
)
6242 return simplify_transformation (array
, dim
, mask
, 0, gfc_add
);
6247 gfc_simplify_tan (gfc_expr
*x
)
6251 if (x
->expr_type
!= EXPR_CONSTANT
)
6254 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
6259 mpfr_tan (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
6263 mpc_tan (result
->value
.complex, x
->value
.complex, GFC_MPC_RND_MODE
);
6270 return range_check (result
, "TAN");
6275 gfc_simplify_tanh (gfc_expr
*x
)
6279 if (x
->expr_type
!= EXPR_CONSTANT
)
6282 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
6287 mpfr_tanh (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
6291 mpc_tanh (result
->value
.complex, x
->value
.complex, GFC_MPC_RND_MODE
);
6298 return range_check (result
, "TANH");
6303 gfc_simplify_tiny (gfc_expr
*e
)
6308 i
= gfc_validate_kind (BT_REAL
, e
->ts
.kind
, false);
6310 result
= gfc_get_constant_expr (BT_REAL
, e
->ts
.kind
, &e
->where
);
6311 mpfr_set (result
->value
.real
, gfc_real_kinds
[i
].tiny
, GFC_RND_MODE
);
6318 gfc_simplify_trailz (gfc_expr
*e
)
6320 unsigned long tz
, bs
;
6323 if (e
->expr_type
!= EXPR_CONSTANT
)
6326 i
= gfc_validate_kind (e
->ts
.type
, e
->ts
.kind
, false);
6327 bs
= gfc_integer_kinds
[i
].bit_size
;
6328 tz
= mpz_scan1 (e
->value
.integer
, 0);
6330 return gfc_get_int_expr (gfc_default_integer_kind
,
6331 &e
->where
, MIN (tz
, bs
));
6336 gfc_simplify_transfer (gfc_expr
*source
, gfc_expr
*mold
, gfc_expr
*size
)
6339 gfc_expr
*mold_element
;
6344 unsigned char *buffer
;
6345 size_t result_length
;
6348 if (!gfc_is_constant_expr (source
)
6349 || (gfc_init_expr_flag
&& !gfc_is_constant_expr (mold
))
6350 || !gfc_is_constant_expr (size
))
6353 if (!gfc_calculate_transfer_sizes (source
, mold
, size
, &source_size
,
6354 &result_size
, &result_length
))
6357 /* Calculate the size of the source. */
6358 if (source
->expr_type
== EXPR_ARRAY
6359 && !gfc_array_size (source
, &tmp
))
6360 gfc_internal_error ("Failure getting length of a constant array.");
6362 /* Create an empty new expression with the appropriate characteristics. */
6363 result
= gfc_get_constant_expr (mold
->ts
.type
, mold
->ts
.kind
,
6365 result
->ts
= mold
->ts
;
6367 mold_element
= mold
->expr_type
== EXPR_ARRAY
6368 ? gfc_constructor_first (mold
->value
.constructor
)->expr
6371 /* Set result character length, if needed. Note that this needs to be
6372 set even for array expressions, in order to pass this information into
6373 gfc_target_interpret_expr. */
6374 if (result
->ts
.type
== BT_CHARACTER
&& gfc_is_constant_expr (mold_element
))
6375 result
->value
.character
.length
= mold_element
->value
.character
.length
;
6377 /* Set the number of elements in the result, and determine its size. */
6379 if (mold
->expr_type
== EXPR_ARRAY
|| mold
->rank
|| size
)
6381 result
->expr_type
= EXPR_ARRAY
;
6383 result
->shape
= gfc_get_shape (1);
6384 mpz_init_set_ui (result
->shape
[0], result_length
);
6389 /* Allocate the buffer to store the binary version of the source. */
6390 buffer_size
= MAX (source_size
, result_size
);
6391 buffer
= (unsigned char*)alloca (buffer_size
);
6392 memset (buffer
, 0, buffer_size
);
6394 /* Now write source to the buffer. */
6395 gfc_target_encode_expr (source
, buffer
, buffer_size
);
6397 /* And read the buffer back into the new expression. */
6398 gfc_target_interpret_expr (buffer
, buffer_size
, result
, false);
6405 gfc_simplify_transpose (gfc_expr
*matrix
)
6407 int row
, matrix_rows
, col
, matrix_cols
;
6410 if (!is_constant_array_expr (matrix
))
6413 gcc_assert (matrix
->rank
== 2);
6415 result
= gfc_get_array_expr (matrix
->ts
.type
, matrix
->ts
.kind
,
6418 result
->shape
= gfc_get_shape (result
->rank
);
6419 mpz_set (result
->shape
[0], matrix
->shape
[1]);
6420 mpz_set (result
->shape
[1], matrix
->shape
[0]);
6422 if (matrix
->ts
.type
== BT_CHARACTER
)
6423 result
->ts
.u
.cl
= matrix
->ts
.u
.cl
;
6424 else if (matrix
->ts
.type
== BT_DERIVED
)
6425 result
->ts
.u
.derived
= matrix
->ts
.u
.derived
;
6427 matrix_rows
= mpz_get_si (matrix
->shape
[0]);
6428 matrix_cols
= mpz_get_si (matrix
->shape
[1]);
6429 for (row
= 0; row
< matrix_rows
; ++row
)
6430 for (col
= 0; col
< matrix_cols
; ++col
)
6432 gfc_expr
*e
= gfc_constructor_lookup_expr (matrix
->value
.constructor
,
6433 col
* matrix_rows
+ row
);
6434 gfc_constructor_insert_expr (&result
->value
.constructor
,
6435 gfc_copy_expr (e
), &matrix
->where
,
6436 row
* matrix_cols
+ col
);
6444 gfc_simplify_trim (gfc_expr
*e
)
6447 int count
, i
, len
, lentrim
;
6449 if (e
->expr_type
!= EXPR_CONSTANT
)
6452 len
= e
->value
.character
.length
;
6453 for (count
= 0, i
= 1; i
<= len
; ++i
)
6455 if (e
->value
.character
.string
[len
- i
] == ' ')
6461 lentrim
= len
- count
;
6463 result
= gfc_get_character_expr (e
->ts
.kind
, &e
->where
, NULL
, lentrim
);
6464 for (i
= 0; i
< lentrim
; i
++)
6465 result
->value
.character
.string
[i
] = e
->value
.character
.string
[i
];
6472 gfc_simplify_image_index (gfc_expr
*coarray
, gfc_expr
*sub
)
6477 gfc_constructor
*sub_cons
;
6481 if (!is_constant_array_expr (sub
))
6484 /* Follow any component references. */
6485 as
= coarray
->symtree
->n
.sym
->as
;
6486 for (ref
= coarray
->ref
; ref
; ref
= ref
->next
)
6487 if (ref
->type
== REF_COMPONENT
)
6490 if (as
->type
== AS_DEFERRED
)
6493 /* "valid sequence of cosubscripts" are required; thus, return 0 unless
6494 the cosubscript addresses the first image. */
6496 sub_cons
= gfc_constructor_first (sub
->value
.constructor
);
6499 for (d
= 1; d
<= as
->corank
; d
++)
6504 gcc_assert (sub_cons
!= NULL
);
6506 ca_bound
= simplify_bound_dim (coarray
, NULL
, d
+ as
->rank
, 0, as
,
6508 if (ca_bound
== NULL
)
6511 if (ca_bound
== &gfc_bad_expr
)
6514 cmp
= mpz_cmp (ca_bound
->value
.integer
, sub_cons
->expr
->value
.integer
);
6518 gfc_free_expr (ca_bound
);
6519 sub_cons
= gfc_constructor_next (sub_cons
);
6523 first_image
= false;
6527 gfc_error ("Out of bounds in IMAGE_INDEX at %L for dimension %d, "
6528 "SUB has %ld and COARRAY lower bound is %ld)",
6530 mpz_get_si (sub_cons
->expr
->value
.integer
),
6531 mpz_get_si (ca_bound
->value
.integer
));
6532 gfc_free_expr (ca_bound
);
6533 return &gfc_bad_expr
;
6536 gfc_free_expr (ca_bound
);
6538 /* Check whether upperbound is valid for the multi-images case. */
6541 ca_bound
= simplify_bound_dim (coarray
, NULL
, d
+ as
->rank
, 1, as
,
6543 if (ca_bound
== &gfc_bad_expr
)
6546 if (ca_bound
&& ca_bound
->expr_type
== EXPR_CONSTANT
6547 && mpz_cmp (ca_bound
->value
.integer
,
6548 sub_cons
->expr
->value
.integer
) < 0)
6550 gfc_error ("Out of bounds in IMAGE_INDEX at %L for dimension %d, "
6551 "SUB has %ld and COARRAY upper bound is %ld)",
6553 mpz_get_si (sub_cons
->expr
->value
.integer
),
6554 mpz_get_si (ca_bound
->value
.integer
));
6555 gfc_free_expr (ca_bound
);
6556 return &gfc_bad_expr
;
6560 gfc_free_expr (ca_bound
);
6563 sub_cons
= gfc_constructor_next (sub_cons
);
6566 gcc_assert (sub_cons
== NULL
);
6568 if (flag_coarray
!= GFC_FCOARRAY_SINGLE
&& !first_image
)
6571 result
= gfc_get_constant_expr (BT_INTEGER
, gfc_default_integer_kind
,
6572 &gfc_current_locus
);
6574 mpz_set_si (result
->value
.integer
, 1);
6576 mpz_set_si (result
->value
.integer
, 0);
6583 gfc_simplify_this_image (gfc_expr
*coarray
, gfc_expr
*dim
,
6584 gfc_expr
*distance ATTRIBUTE_UNUSED
)
6586 if (flag_coarray
!= GFC_FCOARRAY_SINGLE
)
6589 /* If no coarray argument has been passed or when the first argument
6590 is actually a distance argment. */
6591 if (coarray
== NULL
|| !gfc_is_coarray (coarray
))
6594 /* FIXME: gfc_current_locus is wrong. */
6595 result
= gfc_get_constant_expr (BT_INTEGER
, gfc_default_integer_kind
,
6596 &gfc_current_locus
);
6597 mpz_set_si (result
->value
.integer
, 1);
6601 /* For -fcoarray=single, this_image(A) is the same as lcobound(A). */
6602 return simplify_cobound (coarray
, dim
, NULL
, 0);
6607 gfc_simplify_ubound (gfc_expr
*array
, gfc_expr
*dim
, gfc_expr
*kind
)
6609 return simplify_bound (array
, dim
, kind
, 1);
6613 gfc_simplify_ucobound (gfc_expr
*array
, gfc_expr
*dim
, gfc_expr
*kind
)
6615 return simplify_cobound (array
, dim
, kind
, 1);
6620 gfc_simplify_unpack (gfc_expr
*vector
, gfc_expr
*mask
, gfc_expr
*field
)
6622 gfc_expr
*result
, *e
;
6623 gfc_constructor
*vector_ctor
, *mask_ctor
, *field_ctor
;
6625 if (!is_constant_array_expr (vector
)
6626 || !is_constant_array_expr (mask
)
6627 || (!gfc_is_constant_expr (field
)
6628 && !is_constant_array_expr (field
)))
6631 result
= gfc_get_array_expr (vector
->ts
.type
, vector
->ts
.kind
,
6633 if (vector
->ts
.type
== BT_DERIVED
)
6634 result
->ts
.u
.derived
= vector
->ts
.u
.derived
;
6635 result
->rank
= mask
->rank
;
6636 result
->shape
= gfc_copy_shape (mask
->shape
, mask
->rank
);
6638 if (vector
->ts
.type
== BT_CHARACTER
)
6639 result
->ts
.u
.cl
= vector
->ts
.u
.cl
;
6641 vector_ctor
= gfc_constructor_first (vector
->value
.constructor
);
6642 mask_ctor
= gfc_constructor_first (mask
->value
.constructor
);
6644 = field
->expr_type
== EXPR_ARRAY
6645 ? gfc_constructor_first (field
->value
.constructor
)
6650 if (mask_ctor
->expr
->value
.logical
)
6652 gcc_assert (vector_ctor
);
6653 e
= gfc_copy_expr (vector_ctor
->expr
);
6654 vector_ctor
= gfc_constructor_next (vector_ctor
);
6656 else if (field
->expr_type
== EXPR_ARRAY
)
6657 e
= gfc_copy_expr (field_ctor
->expr
);
6659 e
= gfc_copy_expr (field
);
6661 gfc_constructor_append_expr (&result
->value
.constructor
, e
, NULL
);
6663 mask_ctor
= gfc_constructor_next (mask_ctor
);
6664 field_ctor
= gfc_constructor_next (field_ctor
);
6672 gfc_simplify_verify (gfc_expr
*s
, gfc_expr
*set
, gfc_expr
*b
, gfc_expr
*kind
)
6676 size_t index
, len
, lenset
;
6678 int k
= get_kind (BT_INTEGER
, kind
, "VERIFY", gfc_default_integer_kind
);
6681 return &gfc_bad_expr
;
6683 if (s
->expr_type
!= EXPR_CONSTANT
|| set
->expr_type
!= EXPR_CONSTANT
6684 || ( b
!= NULL
&& b
->expr_type
!= EXPR_CONSTANT
))
6687 if (b
!= NULL
&& b
->value
.logical
!= 0)
6692 result
= gfc_get_constant_expr (BT_INTEGER
, k
, &s
->where
);
6694 len
= s
->value
.character
.length
;
6695 lenset
= set
->value
.character
.length
;
6699 mpz_set_ui (result
->value
.integer
, 0);
6707 mpz_set_ui (result
->value
.integer
, 1);
6711 index
= wide_strspn (s
->value
.character
.string
,
6712 set
->value
.character
.string
) + 1;
6721 mpz_set_ui (result
->value
.integer
, len
);
6724 for (index
= len
; index
> 0; index
--)
6726 for (i
= 0; i
< lenset
; i
++)
6728 if (s
->value
.character
.string
[index
- 1]
6729 == set
->value
.character
.string
[i
])
6737 mpz_set_ui (result
->value
.integer
, index
);
6743 gfc_simplify_xor (gfc_expr
*x
, gfc_expr
*y
)
6748 if (x
->expr_type
!= EXPR_CONSTANT
|| y
->expr_type
!= EXPR_CONSTANT
)
6751 kind
= x
->ts
.kind
> y
->ts
.kind
? x
->ts
.kind
: y
->ts
.kind
;
6756 result
= gfc_get_constant_expr (BT_INTEGER
, kind
, &x
->where
);
6757 mpz_xor (result
->value
.integer
, x
->value
.integer
, y
->value
.integer
);
6758 return range_check (result
, "XOR");
6761 return gfc_get_logical_expr (kind
, &x
->where
,
6762 (x
->value
.logical
&& !y
->value
.logical
)
6763 || (!x
->value
.logical
&& y
->value
.logical
));
6771 /****************** Constant simplification *****************/
6773 /* Master function to convert one constant to another. While this is
6774 used as a simplification function, it requires the destination type
6775 and kind information which is supplied by a special case in
6779 gfc_convert_constant (gfc_expr
*e
, bt type
, int kind
)
6781 gfc_expr
*g
, *result
, *(*f
) (gfc_expr
*, int);
6796 f
= gfc_int2complex
;
6816 f
= gfc_real2complex
;
6827 f
= gfc_complex2int
;
6830 f
= gfc_complex2real
;
6833 f
= gfc_complex2complex
;
6859 f
= gfc_hollerith2int
;
6863 f
= gfc_hollerith2real
;
6867 f
= gfc_hollerith2complex
;
6871 f
= gfc_hollerith2character
;
6875 f
= gfc_hollerith2logical
;
6885 gfc_internal_error ("gfc_convert_constant(): Unexpected type");
6890 switch (e
->expr_type
)
6893 result
= f (e
, kind
);
6895 return &gfc_bad_expr
;
6899 if (!gfc_is_constant_expr (e
))
6902 result
= gfc_get_array_expr (type
, kind
, &e
->where
);
6903 result
->shape
= gfc_copy_shape (e
->shape
, e
->rank
);
6904 result
->rank
= e
->rank
;
6906 for (c
= gfc_constructor_first (e
->value
.constructor
);
6907 c
; c
= gfc_constructor_next (c
))
6910 if (c
->iterator
== NULL
)
6911 tmp
= f (c
->expr
, kind
);
6914 g
= gfc_convert_constant (c
->expr
, type
, kind
);
6915 if (g
== &gfc_bad_expr
)
6917 gfc_free_expr (result
);
6925 gfc_free_expr (result
);
6929 gfc_constructor_append_expr (&result
->value
.constructor
,
6943 /* Function for converting character constants. */
6945 gfc_convert_char_constant (gfc_expr
*e
, bt type ATTRIBUTE_UNUSED
, int kind
)
6950 if (!gfc_is_constant_expr (e
))
6953 if (e
->expr_type
== EXPR_CONSTANT
)
6955 /* Simple case of a scalar. */
6956 result
= gfc_get_constant_expr (BT_CHARACTER
, kind
, &e
->where
);
6958 return &gfc_bad_expr
;
6960 result
->value
.character
.length
= e
->value
.character
.length
;
6961 result
->value
.character
.string
6962 = gfc_get_wide_string (e
->value
.character
.length
+ 1);
6963 memcpy (result
->value
.character
.string
, e
->value
.character
.string
,
6964 (e
->value
.character
.length
+ 1) * sizeof (gfc_char_t
));
6966 /* Check we only have values representable in the destination kind. */
6967 for (i
= 0; i
< result
->value
.character
.length
; i
++)
6968 if (!gfc_check_character_range (result
->value
.character
.string
[i
],
6971 gfc_error ("Character %qs in string at %L cannot be converted "
6972 "into character kind %d",
6973 gfc_print_wide_char (result
->value
.character
.string
[i
]),
6975 return &gfc_bad_expr
;
6980 else if (e
->expr_type
== EXPR_ARRAY
)
6982 /* For an array constructor, we convert each constructor element. */
6985 result
= gfc_get_array_expr (type
, kind
, &e
->where
);
6986 result
->shape
= gfc_copy_shape (e
->shape
, e
->rank
);
6987 result
->rank
= e
->rank
;
6988 result
->ts
.u
.cl
= e
->ts
.u
.cl
;
6990 for (c
= gfc_constructor_first (e
->value
.constructor
);
6991 c
; c
= gfc_constructor_next (c
))
6993 gfc_expr
*tmp
= gfc_convert_char_constant (c
->expr
, type
, kind
);
6994 if (tmp
== &gfc_bad_expr
)
6996 gfc_free_expr (result
);
6997 return &gfc_bad_expr
;
7002 gfc_free_expr (result
);
7006 gfc_constructor_append_expr (&result
->value
.constructor
,
7018 gfc_simplify_compiler_options (void)
7023 str
= gfc_get_option_string ();
7024 result
= gfc_get_character_expr (gfc_default_character_kind
,
7025 &gfc_current_locus
, str
, strlen (str
));
7032 gfc_simplify_compiler_version (void)
7037 len
= strlen ("GCC version ") + strlen (version_string
);
7038 buffer
= XALLOCAVEC (char, len
+ 1);
7039 snprintf (buffer
, len
+ 1, "GCC version %s", version_string
);
7040 return gfc_get_character_expr (gfc_default_character_kind
,
7041 &gfc_current_locus
, buffer
, len
);
7044 /* Simplification routines for intrinsics of IEEE modules. */
7047 simplify_ieee_selected_real_kind (gfc_expr
*expr
)
7049 gfc_actual_arglist
*arg
= expr
->value
.function
.actual
;
7050 gfc_expr
*p
= arg
->expr
, *q
= arg
->next
->expr
,
7051 *rdx
= arg
->next
->next
->expr
;
7053 /* Currently, if IEEE is supported and this module is built, it means
7054 all our floating-point types conform to IEEE. Hence, we simply handle
7055 IEEE_SELECTED_REAL_KIND like SELECTED_REAL_KIND. */
7056 return gfc_simplify_selected_real_kind (p
, q
, rdx
);
7060 simplify_ieee_support (gfc_expr
*expr
)
7062 /* We consider that if the IEEE modules are loaded, we have full support
7063 for flags, halting and rounding, which are the three functions
7064 (IEEE_SUPPORT_{FLAG,HALTING,ROUNDING}) allowed in constant
7065 expressions. One day, we will need libgfortran to detect support and
7066 communicate it back to us, allowing for partial support. */
7068 return gfc_get_logical_expr (gfc_default_logical_kind
, &expr
->where
,
7073 matches_ieee_function_name (gfc_symbol
*sym
, const char *name
)
7075 int n
= strlen(name
);
7077 if (!strncmp(sym
->name
, name
, n
))
7080 /* If a generic was used and renamed, we need more work to find out.
7081 Compare the specific name. */
7082 if (sym
->generic
&& !strncmp(sym
->generic
->sym
->name
, name
, n
))
7089 gfc_simplify_ieee_functions (gfc_expr
*expr
)
7091 gfc_symbol
* sym
= expr
->symtree
->n
.sym
;
7093 if (matches_ieee_function_name(sym
, "ieee_selected_real_kind"))
7094 return simplify_ieee_selected_real_kind (expr
);
7095 else if (matches_ieee_function_name(sym
, "ieee_support_flag")
7096 || matches_ieee_function_name(sym
, "ieee_support_halting")
7097 || matches_ieee_function_name(sym
, "ieee_support_rounding"))
7098 return simplify_ieee_support (expr
);