1 /* Simplify intrinsic functions at compile-time.
2 Copyright (C) 2000-2017 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
)
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
));
499 /* Transforms an ARRAY with operation OP, according to MASK, to an
500 array RESULT. E.g. called if
502 REAL, PARAMETER :: array(n, m) = ...
503 REAL, PARAMETER :: s(n) = PROD(array, DIM=1)
505 where OP == gfc_multiply().
506 The result might be post processed using post_op. */
509 simplify_transformation_to_array (gfc_expr
*result
, gfc_expr
*array
, gfc_expr
*dim
,
510 gfc_expr
*mask
, transformational_op op
,
511 transformational_op post_op
)
514 int done
, i
, n
, arraysize
, resultsize
, dim_index
, dim_extent
, dim_stride
;
515 gfc_expr
**arrayvec
, **resultvec
, **base
, **src
, **dest
;
516 gfc_constructor
*array_ctor
, *mask_ctor
, *result_ctor
;
518 int count
[GFC_MAX_DIMENSIONS
], extent
[GFC_MAX_DIMENSIONS
],
519 sstride
[GFC_MAX_DIMENSIONS
], dstride
[GFC_MAX_DIMENSIONS
],
520 tmpstride
[GFC_MAX_DIMENSIONS
];
522 /* Shortcut for constant .FALSE. MASK. */
524 && mask
->expr_type
== EXPR_CONSTANT
525 && !mask
->value
.logical
)
528 /* Build an indexed table for array element expressions to minimize
529 linked-list traversal. Masked elements are set to NULL. */
530 gfc_array_size (array
, &size
);
531 arraysize
= mpz_get_ui (size
);
534 arrayvec
= XCNEWVEC (gfc_expr
*, arraysize
);
536 array_ctor
= gfc_constructor_first (array
->value
.constructor
);
538 if (mask
&& mask
->expr_type
== EXPR_ARRAY
)
539 mask_ctor
= gfc_constructor_first (mask
->value
.constructor
);
541 for (i
= 0; i
< arraysize
; ++i
)
543 arrayvec
[i
] = array_ctor
->expr
;
544 array_ctor
= gfc_constructor_next (array_ctor
);
548 if (!mask_ctor
->expr
->value
.logical
)
551 mask_ctor
= gfc_constructor_next (mask_ctor
);
555 /* Same for the result expression. */
556 gfc_array_size (result
, &size
);
557 resultsize
= mpz_get_ui (size
);
560 resultvec
= XCNEWVEC (gfc_expr
*, resultsize
);
561 result_ctor
= gfc_constructor_first (result
->value
.constructor
);
562 for (i
= 0; i
< resultsize
; ++i
)
564 resultvec
[i
] = result_ctor
->expr
;
565 result_ctor
= gfc_constructor_next (result_ctor
);
568 gfc_extract_int (dim
, &dim_index
);
569 dim_index
-= 1; /* zero-base index */
573 for (i
= 0, n
= 0; i
< array
->rank
; ++i
)
576 tmpstride
[i
] = (i
== 0) ? 1 : tmpstride
[i
-1] * mpz_get_si (array
->shape
[i
-1]);
579 dim_extent
= mpz_get_si (array
->shape
[i
]);
580 dim_stride
= tmpstride
[i
];
584 extent
[n
] = mpz_get_si (array
->shape
[i
]);
585 sstride
[n
] = tmpstride
[i
];
586 dstride
[n
] = (n
== 0) ? 1 : dstride
[n
-1] * extent
[n
-1];
595 for (src
= base
, n
= 0; n
< dim_extent
; src
+= dim_stride
, ++n
)
597 *dest
= op (*dest
, gfc_copy_expr (*src
));
604 while (!done
&& count
[n
] == extent
[n
])
607 base
-= sstride
[n
] * extent
[n
];
608 dest
-= dstride
[n
] * extent
[n
];
611 if (n
< result
->rank
)
613 /* If the nested loop is unrolled GFC_MAX_DIMENSIONS
614 times, we'd warn for the last iteration, because the
615 array index will have already been incremented to the
616 array sizes, and we can't tell that this must make
617 the test against result->rank false, because ranks
618 must not exceed GFC_MAX_DIMENSIONS. */
619 GCC_DIAGNOSTIC_PUSH_IGNORED (-Warray
-bounds
)
630 /* Place updated expression in result constructor. */
631 result_ctor
= gfc_constructor_first (result
->value
.constructor
);
632 for (i
= 0; i
< resultsize
; ++i
)
635 result_ctor
->expr
= post_op (result_ctor
->expr
, resultvec
[i
]);
637 result_ctor
->expr
= resultvec
[i
];
638 result_ctor
= gfc_constructor_next (result_ctor
);
648 simplify_transformation (gfc_expr
*array
, gfc_expr
*dim
, gfc_expr
*mask
,
649 int init_val
, transformational_op op
)
653 if (!is_constant_array_expr (array
)
654 || !gfc_is_constant_expr (dim
))
658 && !is_constant_array_expr (mask
)
659 && mask
->expr_type
!= EXPR_CONSTANT
)
662 result
= transformational_result (array
, dim
, array
->ts
.type
,
663 array
->ts
.kind
, &array
->where
);
664 init_result_expr (result
, init_val
, NULL
);
666 return !dim
|| array
->rank
== 1 ?
667 simplify_transformation_to_scalar (result
, array
, mask
, op
) :
668 simplify_transformation_to_array (result
, array
, dim
, mask
, op
, NULL
);
672 /********************** Simplification functions *****************************/
675 gfc_simplify_abs (gfc_expr
*e
)
679 if (e
->expr_type
!= EXPR_CONSTANT
)
685 result
= gfc_get_constant_expr (BT_INTEGER
, e
->ts
.kind
, &e
->where
);
686 mpz_abs (result
->value
.integer
, e
->value
.integer
);
687 return range_check (result
, "IABS");
690 result
= gfc_get_constant_expr (BT_REAL
, e
->ts
.kind
, &e
->where
);
691 mpfr_abs (result
->value
.real
, e
->value
.real
, GFC_RND_MODE
);
692 return range_check (result
, "ABS");
695 gfc_set_model_kind (e
->ts
.kind
);
696 result
= gfc_get_constant_expr (BT_REAL
, e
->ts
.kind
, &e
->where
);
697 mpc_abs (result
->value
.real
, e
->value
.complex, GFC_RND_MODE
);
698 return range_check (result
, "CABS");
701 gfc_internal_error ("gfc_simplify_abs(): Bad type");
707 simplify_achar_char (gfc_expr
*e
, gfc_expr
*k
, const char *name
, bool ascii
)
711 bool too_large
= false;
713 if (e
->expr_type
!= EXPR_CONSTANT
)
716 kind
= get_kind (BT_CHARACTER
, k
, name
, gfc_default_character_kind
);
718 return &gfc_bad_expr
;
720 if (mpz_cmp_si (e
->value
.integer
, 0) < 0)
722 gfc_error ("Argument of %s function at %L is negative", name
,
724 return &gfc_bad_expr
;
727 if (ascii
&& warn_surprising
&& mpz_cmp_si (e
->value
.integer
, 127) > 0)
728 gfc_warning (OPT_Wsurprising
,
729 "Argument of %s function at %L outside of range [0,127]",
732 if (kind
== 1 && mpz_cmp_si (e
->value
.integer
, 255) > 0)
737 mpz_init_set_ui (t
, 2);
738 mpz_pow_ui (t
, t
, 32);
739 mpz_sub_ui (t
, t
, 1);
740 if (mpz_cmp (e
->value
.integer
, t
) > 0)
747 gfc_error ("Argument of %s function at %L is too large for the "
748 "collating sequence of kind %d", name
, &e
->where
, kind
);
749 return &gfc_bad_expr
;
752 result
= gfc_get_character_expr (kind
, &e
->where
, NULL
, 1);
753 result
->value
.character
.string
[0] = mpz_get_ui (e
->value
.integer
);
760 /* We use the processor's collating sequence, because all
761 systems that gfortran currently works on are ASCII. */
764 gfc_simplify_achar (gfc_expr
*e
, gfc_expr
*k
)
766 return simplify_achar_char (e
, k
, "ACHAR", true);
771 gfc_simplify_acos (gfc_expr
*x
)
775 if (x
->expr_type
!= EXPR_CONSTANT
)
781 if (mpfr_cmp_si (x
->value
.real
, 1) > 0
782 || mpfr_cmp_si (x
->value
.real
, -1) < 0)
784 gfc_error ("Argument of ACOS at %L must be between -1 and 1",
786 return &gfc_bad_expr
;
788 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
789 mpfr_acos (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
793 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
794 mpc_acos (result
->value
.complex, x
->value
.complex, GFC_MPC_RND_MODE
);
798 gfc_internal_error ("in gfc_simplify_acos(): Bad type");
801 return range_check (result
, "ACOS");
805 gfc_simplify_acosh (gfc_expr
*x
)
809 if (x
->expr_type
!= EXPR_CONSTANT
)
815 if (mpfr_cmp_si (x
->value
.real
, 1) < 0)
817 gfc_error ("Argument of ACOSH at %L must not be less than 1",
819 return &gfc_bad_expr
;
822 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
823 mpfr_acosh (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
827 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
828 mpc_acosh (result
->value
.complex, x
->value
.complex, GFC_MPC_RND_MODE
);
832 gfc_internal_error ("in gfc_simplify_acosh(): Bad type");
835 return range_check (result
, "ACOSH");
839 gfc_simplify_adjustl (gfc_expr
*e
)
845 if (e
->expr_type
!= EXPR_CONSTANT
)
848 len
= e
->value
.character
.length
;
850 for (count
= 0, i
= 0; i
< len
; ++i
)
852 ch
= e
->value
.character
.string
[i
];
858 result
= gfc_get_character_expr (e
->ts
.kind
, &e
->where
, NULL
, len
);
859 for (i
= 0; i
< len
- count
; ++i
)
860 result
->value
.character
.string
[i
] = e
->value
.character
.string
[count
+ i
];
867 gfc_simplify_adjustr (gfc_expr
*e
)
873 if (e
->expr_type
!= EXPR_CONSTANT
)
876 len
= e
->value
.character
.length
;
878 for (count
= 0, i
= len
- 1; i
>= 0; --i
)
880 ch
= e
->value
.character
.string
[i
];
886 result
= gfc_get_character_expr (e
->ts
.kind
, &e
->where
, NULL
, len
);
887 for (i
= 0; i
< count
; ++i
)
888 result
->value
.character
.string
[i
] = ' ';
890 for (i
= count
; i
< len
; ++i
)
891 result
->value
.character
.string
[i
] = e
->value
.character
.string
[i
- count
];
898 gfc_simplify_aimag (gfc_expr
*e
)
902 if (e
->expr_type
!= EXPR_CONSTANT
)
905 result
= gfc_get_constant_expr (BT_REAL
, e
->ts
.kind
, &e
->where
);
906 mpfr_set (result
->value
.real
, mpc_imagref (e
->value
.complex), GFC_RND_MODE
);
908 return range_check (result
, "AIMAG");
913 gfc_simplify_aint (gfc_expr
*e
, gfc_expr
*k
)
915 gfc_expr
*rtrunc
, *result
;
918 kind
= get_kind (BT_REAL
, k
, "AINT", e
->ts
.kind
);
920 return &gfc_bad_expr
;
922 if (e
->expr_type
!= EXPR_CONSTANT
)
925 rtrunc
= gfc_copy_expr (e
);
926 mpfr_trunc (rtrunc
->value
.real
, e
->value
.real
);
928 result
= gfc_real2real (rtrunc
, kind
);
930 gfc_free_expr (rtrunc
);
932 return range_check (result
, "AINT");
937 gfc_simplify_all (gfc_expr
*mask
, gfc_expr
*dim
)
939 return simplify_transformation (mask
, dim
, NULL
, true, gfc_and
);
944 gfc_simplify_dint (gfc_expr
*e
)
946 gfc_expr
*rtrunc
, *result
;
948 if (e
->expr_type
!= EXPR_CONSTANT
)
951 rtrunc
= gfc_copy_expr (e
);
952 mpfr_trunc (rtrunc
->value
.real
, e
->value
.real
);
954 result
= gfc_real2real (rtrunc
, gfc_default_double_kind
);
956 gfc_free_expr (rtrunc
);
958 return range_check (result
, "DINT");
963 gfc_simplify_dreal (gfc_expr
*e
)
965 gfc_expr
*result
= NULL
;
967 if (e
->expr_type
!= EXPR_CONSTANT
)
970 result
= gfc_get_constant_expr (BT_REAL
, e
->ts
.kind
, &e
->where
);
971 mpc_real (result
->value
.real
, e
->value
.complex, GFC_RND_MODE
);
973 return range_check (result
, "DREAL");
978 gfc_simplify_anint (gfc_expr
*e
, gfc_expr
*k
)
983 kind
= get_kind (BT_REAL
, k
, "ANINT", e
->ts
.kind
);
985 return &gfc_bad_expr
;
987 if (e
->expr_type
!= EXPR_CONSTANT
)
990 result
= gfc_get_constant_expr (e
->ts
.type
, kind
, &e
->where
);
991 mpfr_round (result
->value
.real
, e
->value
.real
);
993 return range_check (result
, "ANINT");
998 gfc_simplify_and (gfc_expr
*x
, gfc_expr
*y
)
1003 if (x
->expr_type
!= EXPR_CONSTANT
|| y
->expr_type
!= EXPR_CONSTANT
)
1006 kind
= x
->ts
.kind
> y
->ts
.kind
? x
->ts
.kind
: y
->ts
.kind
;
1011 result
= gfc_get_constant_expr (BT_INTEGER
, kind
, &x
->where
);
1012 mpz_and (result
->value
.integer
, x
->value
.integer
, y
->value
.integer
);
1013 return range_check (result
, "AND");
1016 return gfc_get_logical_expr (kind
, &x
->where
,
1017 x
->value
.logical
&& y
->value
.logical
);
1026 gfc_simplify_any (gfc_expr
*mask
, gfc_expr
*dim
)
1028 return simplify_transformation (mask
, dim
, NULL
, false, gfc_or
);
1033 gfc_simplify_dnint (gfc_expr
*e
)
1037 if (e
->expr_type
!= EXPR_CONSTANT
)
1040 result
= gfc_get_constant_expr (BT_REAL
, gfc_default_double_kind
, &e
->where
);
1041 mpfr_round (result
->value
.real
, e
->value
.real
);
1043 return range_check (result
, "DNINT");
1048 gfc_simplify_asin (gfc_expr
*x
)
1052 if (x
->expr_type
!= EXPR_CONSTANT
)
1058 if (mpfr_cmp_si (x
->value
.real
, 1) > 0
1059 || mpfr_cmp_si (x
->value
.real
, -1) < 0)
1061 gfc_error ("Argument of ASIN at %L must be between -1 and 1",
1063 return &gfc_bad_expr
;
1065 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1066 mpfr_asin (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
1070 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1071 mpc_asin (result
->value
.complex, x
->value
.complex, GFC_MPC_RND_MODE
);
1075 gfc_internal_error ("in gfc_simplify_asin(): Bad type");
1078 return range_check (result
, "ASIN");
1083 gfc_simplify_asinh (gfc_expr
*x
)
1087 if (x
->expr_type
!= EXPR_CONSTANT
)
1090 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1095 mpfr_asinh (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
1099 mpc_asinh (result
->value
.complex, x
->value
.complex, GFC_MPC_RND_MODE
);
1103 gfc_internal_error ("in gfc_simplify_asinh(): Bad type");
1106 return range_check (result
, "ASINH");
1111 gfc_simplify_atan (gfc_expr
*x
)
1115 if (x
->expr_type
!= EXPR_CONSTANT
)
1118 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1123 mpfr_atan (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
1127 mpc_atan (result
->value
.complex, x
->value
.complex, GFC_MPC_RND_MODE
);
1131 gfc_internal_error ("in gfc_simplify_atan(): Bad type");
1134 return range_check (result
, "ATAN");
1139 gfc_simplify_atanh (gfc_expr
*x
)
1143 if (x
->expr_type
!= EXPR_CONSTANT
)
1149 if (mpfr_cmp_si (x
->value
.real
, 1) >= 0
1150 || mpfr_cmp_si (x
->value
.real
, -1) <= 0)
1152 gfc_error ("Argument of ATANH at %L must be inside the range -1 "
1154 return &gfc_bad_expr
;
1156 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1157 mpfr_atanh (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
1161 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1162 mpc_atanh (result
->value
.complex, x
->value
.complex, GFC_MPC_RND_MODE
);
1166 gfc_internal_error ("in gfc_simplify_atanh(): Bad type");
1169 return range_check (result
, "ATANH");
1174 gfc_simplify_atan2 (gfc_expr
*y
, gfc_expr
*x
)
1178 if (x
->expr_type
!= EXPR_CONSTANT
|| y
->expr_type
!= EXPR_CONSTANT
)
1181 if (mpfr_zero_p (y
->value
.real
) && mpfr_zero_p (x
->value
.real
))
1183 gfc_error ("If first argument of ATAN2 %L is zero, then the "
1184 "second argument must not be zero", &x
->where
);
1185 return &gfc_bad_expr
;
1188 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1189 mpfr_atan2 (result
->value
.real
, y
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
1191 return range_check (result
, "ATAN2");
1196 gfc_simplify_bessel_j0 (gfc_expr
*x
)
1200 if (x
->expr_type
!= EXPR_CONSTANT
)
1203 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1204 mpfr_j0 (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
1206 return range_check (result
, "BESSEL_J0");
1211 gfc_simplify_bessel_j1 (gfc_expr
*x
)
1215 if (x
->expr_type
!= EXPR_CONSTANT
)
1218 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1219 mpfr_j1 (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
1221 return range_check (result
, "BESSEL_J1");
1226 gfc_simplify_bessel_jn (gfc_expr
*order
, gfc_expr
*x
)
1231 if (x
->expr_type
!= EXPR_CONSTANT
|| order
->expr_type
!= EXPR_CONSTANT
)
1234 n
= mpz_get_si (order
->value
.integer
);
1235 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1236 mpfr_jn (result
->value
.real
, n
, x
->value
.real
, GFC_RND_MODE
);
1238 return range_check (result
, "BESSEL_JN");
1242 /* Simplify transformational form of JN and YN. */
1245 gfc_simplify_bessel_n2 (gfc_expr
*order1
, gfc_expr
*order2
, gfc_expr
*x
,
1252 mpfr_t x2rev
, last1
, last2
;
1254 if (x
->expr_type
!= EXPR_CONSTANT
|| order1
->expr_type
!= EXPR_CONSTANT
1255 || order2
->expr_type
!= EXPR_CONSTANT
)
1258 n1
= mpz_get_si (order1
->value
.integer
);
1259 n2
= mpz_get_si (order2
->value
.integer
);
1260 result
= gfc_get_array_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1262 result
->shape
= gfc_get_shape (1);
1263 mpz_init_set_ui (result
->shape
[0], MAX (n2
-n1
+1, 0));
1268 /* Special case: x == 0; it is J0(0.0) == 1, JN(N > 0, 0.0) == 0; and
1269 YN(N, 0.0) = -Inf. */
1271 if (mpfr_cmp_ui (x
->value
.real
, 0.0) == 0)
1273 if (!jn
&& flag_range_check
)
1275 gfc_error ("Result of BESSEL_YN is -INF at %L", &result
->where
);
1276 gfc_free_expr (result
);
1277 return &gfc_bad_expr
;
1282 e
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1283 mpfr_set_ui (e
->value
.real
, 1, GFC_RND_MODE
);
1284 gfc_constructor_append_expr (&result
->value
.constructor
, e
,
1289 for (i
= n1
; i
<= n2
; i
++)
1291 e
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1293 mpfr_set_ui (e
->value
.real
, 0, GFC_RND_MODE
);
1295 mpfr_set_inf (e
->value
.real
, -1);
1296 gfc_constructor_append_expr (&result
->value
.constructor
, e
,
1303 /* Use the faster but more verbose recurrence algorithm. Bessel functions
1304 are stable for downward recursion and Neumann functions are stable
1305 for upward recursion. It is
1307 J(N-1, x) = x2rev * N * J(N, x) - J(N+1, x),
1308 Y(N+1, x) = x2rev * N * Y(N, x) - Y(N-1, x).
1309 Cf. http://dlmf.nist.gov/10.74#iv and http://dlmf.nist.gov/10.6#E1 */
1311 gfc_set_model_kind (x
->ts
.kind
);
1313 /* Get first recursion anchor. */
1317 mpfr_jn (last1
, n2
, x
->value
.real
, GFC_RND_MODE
);
1319 mpfr_yn (last1
, n1
, x
->value
.real
, GFC_RND_MODE
);
1321 e
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1322 mpfr_set (e
->value
.real
, last1
, GFC_RND_MODE
);
1323 if (range_check (e
, jn
? "BESSEL_JN" : "BESSEL_YN") == &gfc_bad_expr
)
1327 gfc_free_expr (result
);
1328 return &gfc_bad_expr
;
1330 gfc_constructor_append_expr (&result
->value
.constructor
, e
, &x
->where
);
1338 /* Get second recursion anchor. */
1342 mpfr_jn (last2
, n2
-1, x
->value
.real
, GFC_RND_MODE
);
1344 mpfr_yn (last2
, n1
+1, x
->value
.real
, GFC_RND_MODE
);
1346 e
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1347 mpfr_set (e
->value
.real
, last2
, GFC_RND_MODE
);
1348 if (range_check (e
, jn
? "BESSEL_JN" : "BESSEL_YN") == &gfc_bad_expr
)
1353 gfc_free_expr (result
);
1354 return &gfc_bad_expr
;
1357 gfc_constructor_insert_expr (&result
->value
.constructor
, e
, &x
->where
, -2);
1359 gfc_constructor_append_expr (&result
->value
.constructor
, e
, &x
->where
);
1368 /* Start actual recursion. */
1371 mpfr_ui_div (x2rev
, 2, x
->value
.real
, GFC_RND_MODE
);
1373 for (i
= 2; i
<= n2
-n1
; i
++)
1375 e
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1377 /* Special case: For YN, if the previous N gave -INF, set
1378 also N+1 to -INF. */
1379 if (!jn
&& !flag_range_check
&& mpfr_inf_p (last2
))
1381 mpfr_set_inf (e
->value
.real
, -1);
1382 gfc_constructor_append_expr (&result
->value
.constructor
, e
,
1387 mpfr_mul_si (e
->value
.real
, x2rev
, jn
? (n2
-i
+1) : (n1
+i
-1),
1389 mpfr_mul (e
->value
.real
, e
->value
.real
, last2
, GFC_RND_MODE
);
1390 mpfr_sub (e
->value
.real
, e
->value
.real
, last1
, GFC_RND_MODE
);
1392 if (range_check (e
, jn
? "BESSEL_JN" : "BESSEL_YN") == &gfc_bad_expr
)
1394 /* Range_check frees "e" in that case. */
1400 gfc_constructor_insert_expr (&result
->value
.constructor
, e
, &x
->where
,
1403 gfc_constructor_append_expr (&result
->value
.constructor
, e
, &x
->where
);
1405 mpfr_set (last1
, last2
, GFC_RND_MODE
);
1406 mpfr_set (last2
, e
->value
.real
, GFC_RND_MODE
);
1419 gfc_free_expr (result
);
1420 return &gfc_bad_expr
;
1425 gfc_simplify_bessel_jn2 (gfc_expr
*order1
, gfc_expr
*order2
, gfc_expr
*x
)
1427 return gfc_simplify_bessel_n2 (order1
, order2
, x
, true);
1432 gfc_simplify_bessel_y0 (gfc_expr
*x
)
1436 if (x
->expr_type
!= EXPR_CONSTANT
)
1439 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1440 mpfr_y0 (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
1442 return range_check (result
, "BESSEL_Y0");
1447 gfc_simplify_bessel_y1 (gfc_expr
*x
)
1451 if (x
->expr_type
!= EXPR_CONSTANT
)
1454 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1455 mpfr_y1 (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
1457 return range_check (result
, "BESSEL_Y1");
1462 gfc_simplify_bessel_yn (gfc_expr
*order
, gfc_expr
*x
)
1467 if (x
->expr_type
!= EXPR_CONSTANT
|| order
->expr_type
!= EXPR_CONSTANT
)
1470 n
= mpz_get_si (order
->value
.integer
);
1471 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1472 mpfr_yn (result
->value
.real
, n
, x
->value
.real
, GFC_RND_MODE
);
1474 return range_check (result
, "BESSEL_YN");
1479 gfc_simplify_bessel_yn2 (gfc_expr
*order1
, gfc_expr
*order2
, gfc_expr
*x
)
1481 return gfc_simplify_bessel_n2 (order1
, order2
, x
, false);
1486 gfc_simplify_bit_size (gfc_expr
*e
)
1488 int i
= gfc_validate_kind (e
->ts
.type
, e
->ts
.kind
, false);
1489 return gfc_get_int_expr (e
->ts
.kind
, &e
->where
,
1490 gfc_integer_kinds
[i
].bit_size
);
1495 gfc_simplify_btest (gfc_expr
*e
, gfc_expr
*bit
)
1499 if (e
->expr_type
!= EXPR_CONSTANT
|| bit
->expr_type
!= EXPR_CONSTANT
)
1502 if (gfc_extract_int (bit
, &b
) || b
< 0)
1503 return gfc_get_logical_expr (gfc_default_logical_kind
, &e
->where
, false);
1505 return gfc_get_logical_expr (gfc_default_logical_kind
, &e
->where
,
1506 mpz_tstbit (e
->value
.integer
, b
));
1511 compare_bitwise (gfc_expr
*i
, gfc_expr
*j
)
1516 gcc_assert (i
->ts
.type
== BT_INTEGER
);
1517 gcc_assert (j
->ts
.type
== BT_INTEGER
);
1519 mpz_init_set (x
, i
->value
.integer
);
1520 k
= gfc_validate_kind (i
->ts
.type
, i
->ts
.kind
, false);
1521 convert_mpz_to_unsigned (x
, gfc_integer_kinds
[k
].bit_size
);
1523 mpz_init_set (y
, j
->value
.integer
);
1524 k
= gfc_validate_kind (j
->ts
.type
, j
->ts
.kind
, false);
1525 convert_mpz_to_unsigned (y
, gfc_integer_kinds
[k
].bit_size
);
1527 res
= mpz_cmp (x
, y
);
1535 gfc_simplify_bge (gfc_expr
*i
, gfc_expr
*j
)
1537 if (i
->expr_type
!= EXPR_CONSTANT
|| j
->expr_type
!= EXPR_CONSTANT
)
1540 return gfc_get_logical_expr (gfc_default_logical_kind
, &i
->where
,
1541 compare_bitwise (i
, j
) >= 0);
1546 gfc_simplify_bgt (gfc_expr
*i
, gfc_expr
*j
)
1548 if (i
->expr_type
!= EXPR_CONSTANT
|| j
->expr_type
!= EXPR_CONSTANT
)
1551 return gfc_get_logical_expr (gfc_default_logical_kind
, &i
->where
,
1552 compare_bitwise (i
, j
) > 0);
1557 gfc_simplify_ble (gfc_expr
*i
, gfc_expr
*j
)
1559 if (i
->expr_type
!= EXPR_CONSTANT
|| j
->expr_type
!= EXPR_CONSTANT
)
1562 return gfc_get_logical_expr (gfc_default_logical_kind
, &i
->where
,
1563 compare_bitwise (i
, j
) <= 0);
1568 gfc_simplify_blt (gfc_expr
*i
, gfc_expr
*j
)
1570 if (i
->expr_type
!= EXPR_CONSTANT
|| j
->expr_type
!= EXPR_CONSTANT
)
1573 return gfc_get_logical_expr (gfc_default_logical_kind
, &i
->where
,
1574 compare_bitwise (i
, j
) < 0);
1579 gfc_simplify_ceiling (gfc_expr
*e
, gfc_expr
*k
)
1581 gfc_expr
*ceil
, *result
;
1584 kind
= get_kind (BT_INTEGER
, k
, "CEILING", gfc_default_integer_kind
);
1586 return &gfc_bad_expr
;
1588 if (e
->expr_type
!= EXPR_CONSTANT
)
1591 ceil
= gfc_copy_expr (e
);
1592 mpfr_ceil (ceil
->value
.real
, e
->value
.real
);
1594 result
= gfc_get_constant_expr (BT_INTEGER
, kind
, &e
->where
);
1595 gfc_mpfr_to_mpz (result
->value
.integer
, ceil
->value
.real
, &e
->where
);
1597 gfc_free_expr (ceil
);
1599 return range_check (result
, "CEILING");
1604 gfc_simplify_char (gfc_expr
*e
, gfc_expr
*k
)
1606 return simplify_achar_char (e
, k
, "CHAR", false);
1610 /* Common subroutine for simplifying CMPLX, COMPLEX and DCMPLX. */
1613 simplify_cmplx (const char *name
, gfc_expr
*x
, gfc_expr
*y
, int kind
)
1617 if (convert_boz (x
, kind
) == &gfc_bad_expr
)
1618 return &gfc_bad_expr
;
1620 if (convert_boz (y
, kind
) == &gfc_bad_expr
)
1621 return &gfc_bad_expr
;
1623 if (x
->expr_type
!= EXPR_CONSTANT
1624 || (y
!= NULL
&& y
->expr_type
!= EXPR_CONSTANT
))
1627 result
= gfc_get_constant_expr (BT_COMPLEX
, kind
, &x
->where
);
1632 mpc_set_z (result
->value
.complex, x
->value
.integer
, GFC_MPC_RND_MODE
);
1636 mpc_set_fr (result
->value
.complex, x
->value
.real
, GFC_RND_MODE
);
1640 mpc_set (result
->value
.complex, x
->value
.complex, GFC_MPC_RND_MODE
);
1644 gfc_internal_error ("gfc_simplify_dcmplx(): Bad type (x)");
1648 return range_check (result
, name
);
1653 mpfr_set_z (mpc_imagref (result
->value
.complex),
1654 y
->value
.integer
, GFC_RND_MODE
);
1658 mpfr_set (mpc_imagref (result
->value
.complex),
1659 y
->value
.real
, GFC_RND_MODE
);
1663 gfc_internal_error ("gfc_simplify_dcmplx(): Bad type (y)");
1666 return range_check (result
, name
);
1671 gfc_simplify_cmplx (gfc_expr
*x
, gfc_expr
*y
, gfc_expr
*k
)
1675 kind
= get_kind (BT_REAL
, k
, "CMPLX", gfc_default_complex_kind
);
1677 return &gfc_bad_expr
;
1679 return simplify_cmplx ("CMPLX", x
, y
, kind
);
1684 gfc_simplify_complex (gfc_expr
*x
, gfc_expr
*y
)
1688 if (x
->ts
.type
== BT_INTEGER
&& y
->ts
.type
== BT_INTEGER
)
1689 kind
= gfc_default_complex_kind
;
1690 else if (x
->ts
.type
== BT_REAL
|| y
->ts
.type
== BT_INTEGER
)
1692 else if (x
->ts
.type
== BT_INTEGER
|| y
->ts
.type
== BT_REAL
)
1694 else if (x
->ts
.type
== BT_REAL
&& y
->ts
.type
== BT_REAL
)
1695 kind
= (x
->ts
.kind
> y
->ts
.kind
) ? x
->ts
.kind
: y
->ts
.kind
;
1699 return simplify_cmplx ("COMPLEX", x
, y
, kind
);
1704 gfc_simplify_conjg (gfc_expr
*e
)
1708 if (e
->expr_type
!= EXPR_CONSTANT
)
1711 result
= gfc_copy_expr (e
);
1712 mpc_conj (result
->value
.complex, result
->value
.complex, GFC_MPC_RND_MODE
);
1714 return range_check (result
, "CONJG");
1717 /* Return the simplification of the constant expression in icall, or NULL
1718 if the expression is not constant. */
1721 simplify_trig_call (gfc_expr
*icall
)
1723 gfc_isym_id func
= icall
->value
.function
.isym
->id
;
1724 gfc_expr
*x
= icall
->value
.function
.actual
->expr
;
1726 /* The actual simplifiers will return NULL for non-constant x. */
1730 return gfc_simplify_acos (x
);
1732 return gfc_simplify_asin (x
);
1734 return gfc_simplify_atan (x
);
1736 return gfc_simplify_cos (x
);
1737 case GFC_ISYM_COTAN
:
1738 return gfc_simplify_cotan (x
);
1740 return gfc_simplify_sin (x
);
1742 return gfc_simplify_tan (x
);
1744 gfc_internal_error ("in simplify_trig_call(): Bad intrinsic");
1748 /* Convert a floating-point number from radians to degrees. */
1751 degrees_f (mpfr_t x
, mp_rnd_t rnd_mode
)
1756 /* Set x = x % 2pi to avoid offsets with large angles. */
1757 mpfr_const_pi (tmp
, rnd_mode
);
1758 mpfr_mul_ui (tmp
, tmp
, 2, rnd_mode
);
1759 mpfr_fmod (tmp
, x
, tmp
, rnd_mode
);
1761 /* Set x = x * 180. */
1762 mpfr_mul_ui (x
, x
, 180, rnd_mode
);
1764 /* Set x = x / pi. */
1765 mpfr_const_pi (tmp
, rnd_mode
);
1766 mpfr_div (x
, x
, tmp
, rnd_mode
);
1771 /* Convert a floating-point number from degrees to radians. */
1774 radians_f (mpfr_t x
, mp_rnd_t rnd_mode
)
1779 /* Set x = x % 360 to avoid offsets with large angles. */
1780 mpfr_set_ui (tmp
, 360, rnd_mode
);
1781 mpfr_fmod (tmp
, x
, tmp
, rnd_mode
);
1783 /* Set x = x * pi. */
1784 mpfr_const_pi (tmp
, rnd_mode
);
1785 mpfr_mul (x
, x
, tmp
, rnd_mode
);
1787 /* Set x = x / 180. */
1788 mpfr_div_ui (x
, x
, 180, rnd_mode
);
1794 /* Convert argument to radians before calling a trig function. */
1797 gfc_simplify_trigd (gfc_expr
*icall
)
1801 arg
= icall
->value
.function
.actual
->expr
;
1803 if (arg
->ts
.type
!= BT_REAL
)
1804 gfc_internal_error ("in gfc_simplify_trigd(): Bad type");
1806 if (arg
->expr_type
== EXPR_CONSTANT
)
1807 /* Convert constant to radians before passing off to simplifier. */
1808 radians_f (arg
->value
.real
, GFC_RND_MODE
);
1810 /* Let the usual simplifier take over - we just simplified the arg. */
1811 return simplify_trig_call (icall
);
1814 /* Convert result of an inverse trig function to degrees. */
1817 gfc_simplify_atrigd (gfc_expr
*icall
)
1821 if (icall
->value
.function
.actual
->expr
->ts
.type
!= BT_REAL
)
1822 gfc_internal_error ("in gfc_simplify_atrigd(): Bad type");
1824 /* See if another simplifier has work to do first. */
1825 result
= simplify_trig_call (icall
);
1827 if (result
&& result
->expr_type
== EXPR_CONSTANT
)
1829 /* Convert constant to degrees after passing off to actual simplifier. */
1830 degrees_f (result
->value
.real
, GFC_RND_MODE
);
1834 /* Let gfc_resolve_atrigd take care of the non-constant case. */
1838 /* Convert the result of atan2 to degrees. */
1841 gfc_simplify_atan2d (gfc_expr
*y
, gfc_expr
*x
)
1845 if (x
->ts
.type
!= BT_REAL
|| y
->ts
.type
!= BT_REAL
)
1846 gfc_internal_error ("in gfc_simplify_atan2d(): Bad type");
1848 if (x
->expr_type
== EXPR_CONSTANT
&& y
->expr_type
== EXPR_CONSTANT
)
1850 result
= gfc_simplify_atan2 (y
, x
);
1853 degrees_f (result
->value
.real
, GFC_RND_MODE
);
1858 /* Let gfc_resolve_atan2d take care of the non-constant case. */
1863 gfc_simplify_cos (gfc_expr
*x
)
1867 if (x
->expr_type
!= EXPR_CONSTANT
)
1870 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1875 mpfr_cos (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
1879 gfc_set_model_kind (x
->ts
.kind
);
1880 mpc_cos (result
->value
.complex, x
->value
.complex, GFC_MPC_RND_MODE
);
1884 gfc_internal_error ("in gfc_simplify_cos(): Bad type");
1887 return range_check (result
, "COS");
1892 gfc_simplify_cosh (gfc_expr
*x
)
1896 if (x
->expr_type
!= EXPR_CONSTANT
)
1899 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
1904 mpfr_cosh (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
1908 mpc_cosh (result
->value
.complex, x
->value
.complex, GFC_MPC_RND_MODE
);
1915 return range_check (result
, "COSH");
1920 gfc_simplify_count (gfc_expr
*mask
, gfc_expr
*dim
, gfc_expr
*kind
)
1924 if (!is_constant_array_expr (mask
)
1925 || !gfc_is_constant_expr (dim
)
1926 || !gfc_is_constant_expr (kind
))
1929 result
= transformational_result (mask
, dim
,
1931 get_kind (BT_INTEGER
, kind
, "COUNT",
1932 gfc_default_integer_kind
),
1935 init_result_expr (result
, 0, NULL
);
1937 /* Passing MASK twice, once as data array, once as mask.
1938 Whenever gfc_count is called, '1' is added to the result. */
1939 return !dim
|| mask
->rank
== 1 ?
1940 simplify_transformation_to_scalar (result
, mask
, mask
, gfc_count
) :
1941 simplify_transformation_to_array (result
, mask
, dim
, mask
, gfc_count
, NULL
);
1946 gfc_simplify_cshift (gfc_expr
*array
, gfc_expr
*shift
, gfc_expr
*dim
)
1948 gfc_expr
*a
, *result
;
1951 /* DIM is only useful for rank > 1, but deal with it here as one can
1952 set DIM = 1 for rank = 1. */
1955 if (!gfc_is_constant_expr (dim
))
1957 dm
= mpz_get_si (dim
->value
.integer
);
1962 /* Copy array into 'a', simplify it, and then test for a constant array. */
1963 a
= gfc_copy_expr (array
);
1964 gfc_simplify_expr (a
, 0);
1965 if (!is_constant_array_expr (a
))
1973 gfc_constructor
*ca
, *cr
;
1977 if (!gfc_is_constant_expr (shift
))
1983 shft
= mpz_get_si (shift
->value
.integer
);
1985 /* Case (i): If ARRAY has rank one, element i of the result is
1986 ARRAY (1 + MODULO (i + SHIFT - 1, SIZE (ARRAY))). */
1989 gfc_array_size (a
, &size
);
1990 sz
= mpz_get_si (size
);
1993 /* Adjust shft to deal with right or left shifts. */
1994 shft
= shft
< 0 ? 1 - shft
: shft
;
1996 /* Special case: Shift to the original order! */
1997 if (sz
== 0 || shft
% sz
== 0)
2000 result
= gfc_copy_expr (a
);
2001 cr
= gfc_constructor_first (result
->value
.constructor
);
2002 for (i
= 0; i
< sz
; i
++, cr
= gfc_constructor_next (cr
))
2004 j
= (i
+ shft
) % sz
;
2005 ca
= gfc_constructor_first (a
->value
.constructor
);
2007 ca
= gfc_constructor_next (ca
);
2008 cr
->expr
= gfc_copy_expr (ca
->expr
);
2016 /* FIXME: Deal with rank > 1 arrays. For now, don't leak memory. */
2018 /* GCC bootstrap is too stupid to realize that the above code for dm
2019 is correct. First, dim can be specified for a rank 1 array. It is
2020 not needed in this nor used here. Second, the code is simply waiting
2021 for someone to implement rank > 1 simplification. For now, add a
2022 pessimization to the code that has a zero valid reason to be here. */
2023 if (dm
> array
->rank
)
2034 gfc_simplify_dcmplx (gfc_expr
*x
, gfc_expr
*y
)
2036 return simplify_cmplx ("DCMPLX", x
, y
, gfc_default_double_kind
);
2041 gfc_simplify_dble (gfc_expr
*e
)
2043 gfc_expr
*result
= NULL
;
2045 if (e
->expr_type
!= EXPR_CONSTANT
)
2048 if (convert_boz (e
, gfc_default_double_kind
) == &gfc_bad_expr
)
2049 return &gfc_bad_expr
;
2051 result
= gfc_convert_constant (e
, BT_REAL
, gfc_default_double_kind
);
2052 if (result
== &gfc_bad_expr
)
2053 return &gfc_bad_expr
;
2055 return range_check (result
, "DBLE");
2060 gfc_simplify_digits (gfc_expr
*x
)
2064 i
= gfc_validate_kind (x
->ts
.type
, x
->ts
.kind
, false);
2069 digits
= gfc_integer_kinds
[i
].digits
;
2074 digits
= gfc_real_kinds
[i
].digits
;
2081 return gfc_get_int_expr (gfc_default_integer_kind
, NULL
, digits
);
2086 gfc_simplify_dim (gfc_expr
*x
, gfc_expr
*y
)
2091 if (x
->expr_type
!= EXPR_CONSTANT
|| y
->expr_type
!= EXPR_CONSTANT
)
2094 kind
= x
->ts
.kind
> y
->ts
.kind
? x
->ts
.kind
: y
->ts
.kind
;
2095 result
= gfc_get_constant_expr (x
->ts
.type
, kind
, &x
->where
);
2100 if (mpz_cmp (x
->value
.integer
, y
->value
.integer
) > 0)
2101 mpz_sub (result
->value
.integer
, x
->value
.integer
, y
->value
.integer
);
2103 mpz_set_ui (result
->value
.integer
, 0);
2108 if (mpfr_cmp (x
->value
.real
, y
->value
.real
) > 0)
2109 mpfr_sub (result
->value
.real
, x
->value
.real
, y
->value
.real
,
2112 mpfr_set_ui (result
->value
.real
, 0, GFC_RND_MODE
);
2117 gfc_internal_error ("gfc_simplify_dim(): Bad type");
2120 return range_check (result
, "DIM");
2125 gfc_simplify_dot_product (gfc_expr
*vector_a
, gfc_expr
*vector_b
)
2130 if (!is_constant_array_expr (vector_a
)
2131 || !is_constant_array_expr (vector_b
))
2134 gcc_assert (vector_a
->rank
== 1);
2135 gcc_assert (vector_b
->rank
== 1);
2137 temp
.expr_type
= EXPR_OP
;
2138 gfc_clear_ts (&temp
.ts
);
2139 temp
.value
.op
.op
= INTRINSIC_NONE
;
2140 temp
.value
.op
.op1
= vector_a
;
2141 temp
.value
.op
.op2
= vector_b
;
2142 gfc_type_convert_binary (&temp
, 1);
2144 return compute_dot_product (vector_a
, 1, 0, vector_b
, 1, 0, true);
2149 gfc_simplify_dprod (gfc_expr
*x
, gfc_expr
*y
)
2151 gfc_expr
*a1
, *a2
, *result
;
2153 if (x
->expr_type
!= EXPR_CONSTANT
|| y
->expr_type
!= EXPR_CONSTANT
)
2156 a1
= gfc_real2real (x
, gfc_default_double_kind
);
2157 a2
= gfc_real2real (y
, gfc_default_double_kind
);
2159 result
= gfc_get_constant_expr (BT_REAL
, gfc_default_double_kind
, &x
->where
);
2160 mpfr_mul (result
->value
.real
, a1
->value
.real
, a2
->value
.real
, GFC_RND_MODE
);
2165 return range_check (result
, "DPROD");
2170 simplify_dshift (gfc_expr
*arg1
, gfc_expr
*arg2
, gfc_expr
*shiftarg
,
2174 int i
, k
, size
, shift
;
2176 if (arg1
->expr_type
!= EXPR_CONSTANT
|| arg2
->expr_type
!= EXPR_CONSTANT
2177 || shiftarg
->expr_type
!= EXPR_CONSTANT
)
2180 k
= gfc_validate_kind (BT_INTEGER
, arg1
->ts
.kind
, false);
2181 size
= gfc_integer_kinds
[k
].bit_size
;
2183 gfc_extract_int (shiftarg
, &shift
);
2185 /* DSHIFTR(I,J,SHIFT) = DSHIFTL(I,J,SIZE-SHIFT). */
2187 shift
= size
- shift
;
2189 result
= gfc_get_constant_expr (BT_INTEGER
, arg1
->ts
.kind
, &arg1
->where
);
2190 mpz_set_ui (result
->value
.integer
, 0);
2192 for (i
= 0; i
< shift
; i
++)
2193 if (mpz_tstbit (arg2
->value
.integer
, size
- shift
+ i
))
2194 mpz_setbit (result
->value
.integer
, i
);
2196 for (i
= 0; i
< size
- shift
; i
++)
2197 if (mpz_tstbit (arg1
->value
.integer
, i
))
2198 mpz_setbit (result
->value
.integer
, shift
+ i
);
2200 /* Convert to a signed value. */
2201 gfc_convert_mpz_to_signed (result
->value
.integer
, size
);
2208 gfc_simplify_dshiftr (gfc_expr
*arg1
, gfc_expr
*arg2
, gfc_expr
*shiftarg
)
2210 return simplify_dshift (arg1
, arg2
, shiftarg
, true);
2215 gfc_simplify_dshiftl (gfc_expr
*arg1
, gfc_expr
*arg2
, gfc_expr
*shiftarg
)
2217 return simplify_dshift (arg1
, arg2
, shiftarg
, false);
2222 gfc_simplify_erf (gfc_expr
*x
)
2226 if (x
->expr_type
!= EXPR_CONSTANT
)
2229 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
2230 mpfr_erf (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
2232 return range_check (result
, "ERF");
2237 gfc_simplify_erfc (gfc_expr
*x
)
2241 if (x
->expr_type
!= EXPR_CONSTANT
)
2244 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
2245 mpfr_erfc (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
2247 return range_check (result
, "ERFC");
2251 /* Helper functions to simplify ERFC_SCALED(x) = ERFC(x) * EXP(X**2). */
2253 #define MAX_ITER 200
2254 #define ARG_LIMIT 12
2256 /* Calculate ERFC_SCALED directly by its definition:
2258 ERFC_SCALED(x) = ERFC(x) * EXP(X**2)
2260 using a large precision for intermediate results. This is used for all
2261 but large values of the argument. */
2263 fullprec_erfc_scaled (mpfr_t res
, mpfr_t arg
)
2268 prec
= mpfr_get_default_prec ();
2269 mpfr_set_default_prec (10 * prec
);
2274 mpfr_set (a
, arg
, GFC_RND_MODE
);
2275 mpfr_sqr (b
, a
, GFC_RND_MODE
);
2276 mpfr_exp (b
, b
, GFC_RND_MODE
);
2277 mpfr_erfc (a
, a
, GFC_RND_MODE
);
2278 mpfr_mul (a
, a
, b
, GFC_RND_MODE
);
2280 mpfr_set (res
, a
, GFC_RND_MODE
);
2281 mpfr_set_default_prec (prec
);
2287 /* Calculate ERFC_SCALED using a power series expansion in 1/arg:
2289 ERFC_SCALED(x) = 1 / (x * sqrt(pi))
2290 * (1 + Sum_n (-1)**n * (1 * 3 * 5 * ... * (2n-1))
2293 This is used for large values of the argument. Intermediate calculations
2294 are performed with twice the precision. We don't do a fixed number of
2295 iterations of the sum, but stop when it has converged to the required
2298 asympt_erfc_scaled (mpfr_t res
, mpfr_t arg
)
2300 mpfr_t sum
, x
, u
, v
, w
, oldsum
, sumtrunc
;
2305 prec
= mpfr_get_default_prec ();
2306 mpfr_set_default_prec (2 * prec
);
2316 mpfr_init (sumtrunc
);
2317 mpfr_set_prec (oldsum
, prec
);
2318 mpfr_set_prec (sumtrunc
, prec
);
2320 mpfr_set (x
, arg
, GFC_RND_MODE
);
2321 mpfr_set_ui (sum
, 1, GFC_RND_MODE
);
2322 mpz_set_ui (num
, 1);
2324 mpfr_set (u
, x
, GFC_RND_MODE
);
2325 mpfr_sqr (u
, u
, GFC_RND_MODE
);
2326 mpfr_mul_ui (u
, u
, 2, GFC_RND_MODE
);
2327 mpfr_pow_si (u
, u
, -1, GFC_RND_MODE
);
2329 for (i
= 1; i
< MAX_ITER
; i
++)
2331 mpfr_set (oldsum
, sum
, GFC_RND_MODE
);
2333 mpz_mul_ui (num
, num
, 2 * i
- 1);
2336 mpfr_set (w
, u
, GFC_RND_MODE
);
2337 mpfr_pow_ui (w
, w
, i
, GFC_RND_MODE
);
2339 mpfr_set_z (v
, num
, GFC_RND_MODE
);
2340 mpfr_mul (v
, v
, w
, GFC_RND_MODE
);
2342 mpfr_add (sum
, sum
, v
, GFC_RND_MODE
);
2344 mpfr_set (sumtrunc
, sum
, GFC_RND_MODE
);
2345 if (mpfr_cmp (sumtrunc
, oldsum
) == 0)
2349 /* We should have converged by now; otherwise, ARG_LIMIT is probably
2351 gcc_assert (i
< MAX_ITER
);
2353 /* Divide by x * sqrt(Pi). */
2354 mpfr_const_pi (u
, GFC_RND_MODE
);
2355 mpfr_sqrt (u
, u
, GFC_RND_MODE
);
2356 mpfr_mul (u
, u
, x
, GFC_RND_MODE
);
2357 mpfr_div (sum
, sum
, u
, GFC_RND_MODE
);
2359 mpfr_set (res
, sum
, GFC_RND_MODE
);
2360 mpfr_set_default_prec (prec
);
2362 mpfr_clears (sum
, x
, u
, v
, w
, oldsum
, sumtrunc
, NULL
);
2368 gfc_simplify_erfc_scaled (gfc_expr
*x
)
2372 if (x
->expr_type
!= EXPR_CONSTANT
)
2375 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
2376 if (mpfr_cmp_d (x
->value
.real
, ARG_LIMIT
) >= 0)
2377 asympt_erfc_scaled (result
->value
.real
, x
->value
.real
);
2379 fullprec_erfc_scaled (result
->value
.real
, x
->value
.real
);
2381 return range_check (result
, "ERFC_SCALED");
2389 gfc_simplify_epsilon (gfc_expr
*e
)
2394 i
= gfc_validate_kind (e
->ts
.type
, e
->ts
.kind
, false);
2396 result
= gfc_get_constant_expr (BT_REAL
, e
->ts
.kind
, &e
->where
);
2397 mpfr_set (result
->value
.real
, gfc_real_kinds
[i
].epsilon
, GFC_RND_MODE
);
2399 return range_check (result
, "EPSILON");
2404 gfc_simplify_exp (gfc_expr
*x
)
2408 if (x
->expr_type
!= EXPR_CONSTANT
)
2411 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
2416 mpfr_exp (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
2420 gfc_set_model_kind (x
->ts
.kind
);
2421 mpc_exp (result
->value
.complex, x
->value
.complex, GFC_MPC_RND_MODE
);
2425 gfc_internal_error ("in gfc_simplify_exp(): Bad type");
2428 return range_check (result
, "EXP");
2433 gfc_simplify_exponent (gfc_expr
*x
)
2438 if (x
->expr_type
!= EXPR_CONSTANT
)
2441 result
= gfc_get_constant_expr (BT_INTEGER
, gfc_default_integer_kind
,
2444 /* EXPONENT(inf) = EXPONENT(nan) = HUGE(0) */
2445 if (mpfr_inf_p (x
->value
.real
) || mpfr_nan_p (x
->value
.real
))
2447 int i
= gfc_validate_kind (BT_INTEGER
, gfc_default_integer_kind
, false);
2448 mpz_set (result
->value
.integer
, gfc_integer_kinds
[i
].huge
);
2452 /* EXPONENT(+/- 0.0) = 0 */
2453 if (mpfr_zero_p (x
->value
.real
))
2455 mpz_set_ui (result
->value
.integer
, 0);
2459 gfc_set_model (x
->value
.real
);
2461 val
= (long int) mpfr_get_exp (x
->value
.real
);
2462 mpz_set_si (result
->value
.integer
, val
);
2464 return range_check (result
, "EXPONENT");
2469 gfc_simplify_failed_or_stopped_images (gfc_expr
*team ATTRIBUTE_UNUSED
,
2472 if (flag_coarray
== GFC_FCOARRAY_NONE
)
2474 gfc_current_locus
= *gfc_current_intrinsic_where
;
2475 gfc_fatal_error ("Coarrays disabled at %C, use %<-fcoarray=%> to enable");
2476 return &gfc_bad_expr
;
2479 if (flag_coarray
== GFC_FCOARRAY_SINGLE
)
2484 gfc_extract_int (kind
, &actual_kind
);
2486 actual_kind
= gfc_default_integer_kind
;
2488 result
= gfc_get_array_expr (BT_INTEGER
, actual_kind
, &gfc_current_locus
);
2493 /* For fcoarray = lib no simplification is possible, because it is not known
2494 what images failed or are stopped at compile time. */
2500 gfc_simplify_float (gfc_expr
*a
)
2504 if (a
->expr_type
!= EXPR_CONSTANT
)
2509 if (convert_boz (a
, gfc_default_real_kind
) == &gfc_bad_expr
)
2510 return &gfc_bad_expr
;
2512 result
= gfc_copy_expr (a
);
2515 result
= gfc_int2real (a
, gfc_default_real_kind
);
2517 return range_check (result
, "FLOAT");
2522 is_last_ref_vtab (gfc_expr
*e
)
2525 gfc_component
*comp
= NULL
;
2527 if (e
->expr_type
!= EXPR_VARIABLE
)
2530 for (ref
= e
->ref
; ref
; ref
= ref
->next
)
2531 if (ref
->type
== REF_COMPONENT
)
2532 comp
= ref
->u
.c
.component
;
2534 if (!e
->ref
|| !comp
)
2535 return e
->symtree
->n
.sym
->attr
.vtab
;
2537 if (comp
->name
[0] == '_' && strcmp (comp
->name
, "_vptr") == 0)
2545 gfc_simplify_extends_type_of (gfc_expr
*a
, gfc_expr
*mold
)
2547 /* Avoid simplification of resolved symbols. */
2548 if (is_last_ref_vtab (a
) || is_last_ref_vtab (mold
))
2551 if (a
->ts
.type
== BT_DERIVED
&& mold
->ts
.type
== BT_DERIVED
)
2552 return gfc_get_logical_expr (gfc_default_logical_kind
, &a
->where
,
2553 gfc_type_is_extension_of (mold
->ts
.u
.derived
,
2556 if (UNLIMITED_POLY (a
) || UNLIMITED_POLY (mold
))
2559 /* Return .false. if the dynamic type can never be an extension. */
2560 if ((a
->ts
.type
== BT_CLASS
&& mold
->ts
.type
== BT_CLASS
2561 && !gfc_type_is_extension_of
2562 (mold
->ts
.u
.derived
->components
->ts
.u
.derived
,
2563 a
->ts
.u
.derived
->components
->ts
.u
.derived
)
2564 && !gfc_type_is_extension_of
2565 (a
->ts
.u
.derived
->components
->ts
.u
.derived
,
2566 mold
->ts
.u
.derived
->components
->ts
.u
.derived
))
2567 || (a
->ts
.type
== BT_DERIVED
&& mold
->ts
.type
== BT_CLASS
2568 && !gfc_type_is_extension_of
2569 (mold
->ts
.u
.derived
->components
->ts
.u
.derived
,
2571 || (a
->ts
.type
== BT_CLASS
&& mold
->ts
.type
== BT_DERIVED
2572 && !gfc_type_is_extension_of
2573 (mold
->ts
.u
.derived
,
2574 a
->ts
.u
.derived
->components
->ts
.u
.derived
)
2575 && !gfc_type_is_extension_of
2576 (a
->ts
.u
.derived
->components
->ts
.u
.derived
,
2577 mold
->ts
.u
.derived
)))
2578 return gfc_get_logical_expr (gfc_default_logical_kind
, &a
->where
, false);
2580 /* Return .true. if the dynamic type is guaranteed to be an extension. */
2581 if (a
->ts
.type
== BT_CLASS
&& mold
->ts
.type
== BT_DERIVED
2582 && gfc_type_is_extension_of (mold
->ts
.u
.derived
,
2583 a
->ts
.u
.derived
->components
->ts
.u
.derived
))
2584 return gfc_get_logical_expr (gfc_default_logical_kind
, &a
->where
, true);
2591 gfc_simplify_same_type_as (gfc_expr
*a
, gfc_expr
*b
)
2593 /* Avoid simplification of resolved symbols. */
2594 if (is_last_ref_vtab (a
) || is_last_ref_vtab (b
))
2597 /* Return .false. if the dynamic type can never be the
2599 if (((a
->ts
.type
== BT_CLASS
&& gfc_expr_attr (a
).class_ok
)
2600 || (b
->ts
.type
== BT_CLASS
&& gfc_expr_attr (b
).class_ok
))
2601 && !gfc_type_compatible (&a
->ts
, &b
->ts
)
2602 && !gfc_type_compatible (&b
->ts
, &a
->ts
))
2603 return gfc_get_logical_expr (gfc_default_logical_kind
, &a
->where
, false);
2605 if (a
->ts
.type
!= BT_DERIVED
|| b
->ts
.type
!= BT_DERIVED
)
2608 return gfc_get_logical_expr (gfc_default_logical_kind
, &a
->where
,
2609 gfc_compare_derived_types (a
->ts
.u
.derived
,
2615 gfc_simplify_floor (gfc_expr
*e
, gfc_expr
*k
)
2621 kind
= get_kind (BT_INTEGER
, k
, "FLOOR", gfc_default_integer_kind
);
2623 gfc_internal_error ("gfc_simplify_floor(): Bad kind");
2625 if (e
->expr_type
!= EXPR_CONSTANT
)
2628 mpfr_init2 (floor
, mpfr_get_prec (e
->value
.real
));
2629 mpfr_floor (floor
, e
->value
.real
);
2631 result
= gfc_get_constant_expr (BT_INTEGER
, kind
, &e
->where
);
2632 gfc_mpfr_to_mpz (result
->value
.integer
, floor
, &e
->where
);
2636 return range_check (result
, "FLOOR");
2641 gfc_simplify_fraction (gfc_expr
*x
)
2645 #if MPFR_VERSION < MPFR_VERSION_NUM(3,1,0)
2646 mpfr_t absv
, exp
, pow2
;
2651 if (x
->expr_type
!= EXPR_CONSTANT
)
2654 result
= gfc_get_constant_expr (BT_REAL
, x
->ts
.kind
, &x
->where
);
2656 /* FRACTION(inf) = NaN. */
2657 if (mpfr_inf_p (x
->value
.real
))
2659 mpfr_set_nan (result
->value
.real
);
2663 #if MPFR_VERSION < MPFR_VERSION_NUM(3,1,0)
2665 /* MPFR versions before 3.1.0 do not include mpfr_frexp.
2666 TODO: remove the kludge when MPFR 3.1.0 or newer will be required */
2668 if (mpfr_sgn (x
->value
.real
) == 0)
2670 mpfr_set (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
2674 gfc_set_model_kind (x
->ts
.kind
);
2679 mpfr_abs (absv
, x
->value
.real
, GFC_RND_MODE
);
2680 mpfr_log2 (exp
, absv
, GFC_RND_MODE
);
2682 mpfr_trunc (exp
, exp
);
2683 mpfr_add_ui (exp
, exp
, 1, GFC_RND_MODE
);
2685 mpfr_ui_pow (pow2
, 2, exp
, GFC_RND_MODE
);
2687 mpfr_div (result
->value
.real
, x
->value
.real
, pow2
, GFC_RND_MODE
);
2689 mpfr_clears (exp
, absv
, pow2
, NULL
);
2693 /* mpfr_frexp() correctly handles zeros and NaNs. */
2694 mpfr_frexp (&e
, result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
2698 return range_check (result
, "FRACTION");
2703 gfc_simplify_gamma (gfc_expr
*x
)
2707 if (x
->expr_type
!= EXPR_CONSTANT
)
2710 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
2711 mpfr_gamma (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
2713 return range_check (result
, "GAMMA");
2718 gfc_simplify_huge (gfc_expr
*e
)
2723 i
= gfc_validate_kind (e
->ts
.type
, e
->ts
.kind
, false);
2724 result
= gfc_get_constant_expr (e
->ts
.type
, e
->ts
.kind
, &e
->where
);
2729 mpz_set (result
->value
.integer
, gfc_integer_kinds
[i
].huge
);
2733 mpfr_set (result
->value
.real
, gfc_real_kinds
[i
].huge
, GFC_RND_MODE
);
2745 gfc_simplify_hypot (gfc_expr
*x
, gfc_expr
*y
)
2749 if (x
->expr_type
!= EXPR_CONSTANT
|| y
->expr_type
!= EXPR_CONSTANT
)
2752 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
2753 mpfr_hypot (result
->value
.real
, x
->value
.real
, y
->value
.real
, GFC_RND_MODE
);
2754 return range_check (result
, "HYPOT");
2758 /* We use the processor's collating sequence, because all
2759 systems that gfortran currently works on are ASCII. */
2762 gfc_simplify_iachar (gfc_expr
*e
, gfc_expr
*kind
)
2768 if (e
->expr_type
!= EXPR_CONSTANT
)
2771 if (e
->value
.character
.length
!= 1)
2773 gfc_error ("Argument of IACHAR at %L must be of length one", &e
->where
);
2774 return &gfc_bad_expr
;
2777 index
= e
->value
.character
.string
[0];
2779 if (warn_surprising
&& index
> 127)
2780 gfc_warning (OPT_Wsurprising
,
2781 "Argument of IACHAR function at %L outside of range 0..127",
2784 k
= get_kind (BT_INTEGER
, kind
, "IACHAR", gfc_default_integer_kind
);
2786 return &gfc_bad_expr
;
2788 result
= gfc_get_int_expr (k
, &e
->where
, index
);
2790 return range_check (result
, "IACHAR");
2795 do_bit_and (gfc_expr
*result
, gfc_expr
*e
)
2797 gcc_assert (e
->ts
.type
== BT_INTEGER
&& e
->expr_type
== EXPR_CONSTANT
);
2798 gcc_assert (result
->ts
.type
== BT_INTEGER
2799 && result
->expr_type
== EXPR_CONSTANT
);
2801 mpz_and (result
->value
.integer
, result
->value
.integer
, e
->value
.integer
);
2807 gfc_simplify_iall (gfc_expr
*array
, gfc_expr
*dim
, gfc_expr
*mask
)
2809 return simplify_transformation (array
, dim
, mask
, -1, do_bit_and
);
2814 do_bit_ior (gfc_expr
*result
, gfc_expr
*e
)
2816 gcc_assert (e
->ts
.type
== BT_INTEGER
&& e
->expr_type
== EXPR_CONSTANT
);
2817 gcc_assert (result
->ts
.type
== BT_INTEGER
2818 && result
->expr_type
== EXPR_CONSTANT
);
2820 mpz_ior (result
->value
.integer
, result
->value
.integer
, e
->value
.integer
);
2826 gfc_simplify_iany (gfc_expr
*array
, gfc_expr
*dim
, gfc_expr
*mask
)
2828 return simplify_transformation (array
, dim
, mask
, 0, do_bit_ior
);
2833 gfc_simplify_iand (gfc_expr
*x
, gfc_expr
*y
)
2837 if (x
->expr_type
!= EXPR_CONSTANT
|| y
->expr_type
!= EXPR_CONSTANT
)
2840 result
= gfc_get_constant_expr (BT_INTEGER
, x
->ts
.kind
, &x
->where
);
2841 mpz_and (result
->value
.integer
, x
->value
.integer
, y
->value
.integer
);
2843 return range_check (result
, "IAND");
2848 gfc_simplify_ibclr (gfc_expr
*x
, gfc_expr
*y
)
2853 if (x
->expr_type
!= EXPR_CONSTANT
|| y
->expr_type
!= EXPR_CONSTANT
)
2856 gfc_extract_int (y
, &pos
);
2858 k
= gfc_validate_kind (x
->ts
.type
, x
->ts
.kind
, false);
2860 result
= gfc_copy_expr (x
);
2862 convert_mpz_to_unsigned (result
->value
.integer
,
2863 gfc_integer_kinds
[k
].bit_size
);
2865 mpz_clrbit (result
->value
.integer
, pos
);
2867 gfc_convert_mpz_to_signed (result
->value
.integer
,
2868 gfc_integer_kinds
[k
].bit_size
);
2875 gfc_simplify_ibits (gfc_expr
*x
, gfc_expr
*y
, gfc_expr
*z
)
2882 if (x
->expr_type
!= EXPR_CONSTANT
2883 || y
->expr_type
!= EXPR_CONSTANT
2884 || z
->expr_type
!= EXPR_CONSTANT
)
2887 gfc_extract_int (y
, &pos
);
2888 gfc_extract_int (z
, &len
);
2890 k
= gfc_validate_kind (BT_INTEGER
, x
->ts
.kind
, false);
2892 bitsize
= gfc_integer_kinds
[k
].bit_size
;
2894 if (pos
+ len
> bitsize
)
2896 gfc_error ("Sum of second and third arguments of IBITS exceeds "
2897 "bit size at %L", &y
->where
);
2898 return &gfc_bad_expr
;
2901 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
2902 convert_mpz_to_unsigned (result
->value
.integer
,
2903 gfc_integer_kinds
[k
].bit_size
);
2905 bits
= XCNEWVEC (int, bitsize
);
2907 for (i
= 0; i
< bitsize
; i
++)
2910 for (i
= 0; i
< len
; i
++)
2911 bits
[i
] = mpz_tstbit (x
->value
.integer
, i
+ pos
);
2913 for (i
= 0; i
< bitsize
; i
++)
2916 mpz_clrbit (result
->value
.integer
, i
);
2917 else if (bits
[i
] == 1)
2918 mpz_setbit (result
->value
.integer
, i
);
2920 gfc_internal_error ("IBITS: Bad bit");
2925 gfc_convert_mpz_to_signed (result
->value
.integer
,
2926 gfc_integer_kinds
[k
].bit_size
);
2933 gfc_simplify_ibset (gfc_expr
*x
, gfc_expr
*y
)
2938 if (x
->expr_type
!= EXPR_CONSTANT
|| y
->expr_type
!= EXPR_CONSTANT
)
2941 gfc_extract_int (y
, &pos
);
2943 k
= gfc_validate_kind (x
->ts
.type
, x
->ts
.kind
, false);
2945 result
= gfc_copy_expr (x
);
2947 convert_mpz_to_unsigned (result
->value
.integer
,
2948 gfc_integer_kinds
[k
].bit_size
);
2950 mpz_setbit (result
->value
.integer
, pos
);
2952 gfc_convert_mpz_to_signed (result
->value
.integer
,
2953 gfc_integer_kinds
[k
].bit_size
);
2960 gfc_simplify_ichar (gfc_expr
*e
, gfc_expr
*kind
)
2966 if (e
->expr_type
!= EXPR_CONSTANT
)
2969 if (e
->value
.character
.length
!= 1)
2971 gfc_error ("Argument of ICHAR at %L must be of length one", &e
->where
);
2972 return &gfc_bad_expr
;
2975 index
= e
->value
.character
.string
[0];
2977 k
= get_kind (BT_INTEGER
, kind
, "ICHAR", gfc_default_integer_kind
);
2979 return &gfc_bad_expr
;
2981 result
= gfc_get_int_expr (k
, &e
->where
, index
);
2983 return range_check (result
, "ICHAR");
2988 gfc_simplify_ieor (gfc_expr
*x
, gfc_expr
*y
)
2992 if (x
->expr_type
!= EXPR_CONSTANT
|| y
->expr_type
!= EXPR_CONSTANT
)
2995 result
= gfc_get_constant_expr (BT_INTEGER
, x
->ts
.kind
, &x
->where
);
2996 mpz_xor (result
->value
.integer
, x
->value
.integer
, y
->value
.integer
);
2998 return range_check (result
, "IEOR");
3003 gfc_simplify_index (gfc_expr
*x
, gfc_expr
*y
, gfc_expr
*b
, gfc_expr
*kind
)
3006 int back
, len
, lensub
;
3007 int i
, j
, k
, count
, index
= 0, start
;
3009 if (x
->expr_type
!= EXPR_CONSTANT
|| y
->expr_type
!= EXPR_CONSTANT
3010 || ( b
!= NULL
&& b
->expr_type
!= EXPR_CONSTANT
))
3013 if (b
!= NULL
&& b
->value
.logical
!= 0)
3018 k
= get_kind (BT_INTEGER
, kind
, "INDEX", gfc_default_integer_kind
);
3020 return &gfc_bad_expr
;
3022 result
= gfc_get_constant_expr (BT_INTEGER
, k
, &x
->where
);
3024 len
= x
->value
.character
.length
;
3025 lensub
= y
->value
.character
.length
;
3029 mpz_set_si (result
->value
.integer
, 0);
3037 mpz_set_si (result
->value
.integer
, 1);
3040 else if (lensub
== 1)
3042 for (i
= 0; i
< len
; i
++)
3044 for (j
= 0; j
< lensub
; j
++)
3046 if (y
->value
.character
.string
[j
]
3047 == x
->value
.character
.string
[i
])
3057 for (i
= 0; i
< len
; i
++)
3059 for (j
= 0; j
< lensub
; j
++)
3061 if (y
->value
.character
.string
[j
]
3062 == x
->value
.character
.string
[i
])
3067 for (k
= 0; k
< lensub
; k
++)
3069 if (y
->value
.character
.string
[k
]
3070 == x
->value
.character
.string
[k
+ start
])
3074 if (count
== lensub
)
3089 mpz_set_si (result
->value
.integer
, len
+ 1);
3092 else if (lensub
== 1)
3094 for (i
= 0; i
< len
; i
++)
3096 for (j
= 0; j
< lensub
; j
++)
3098 if (y
->value
.character
.string
[j
]
3099 == x
->value
.character
.string
[len
- i
])
3101 index
= len
- i
+ 1;
3109 for (i
= 0; i
< len
; i
++)
3111 for (j
= 0; j
< lensub
; j
++)
3113 if (y
->value
.character
.string
[j
]
3114 == x
->value
.character
.string
[len
- i
])
3117 if (start
<= len
- lensub
)
3120 for (k
= 0; k
< lensub
; k
++)
3121 if (y
->value
.character
.string
[k
]
3122 == x
->value
.character
.string
[k
+ start
])
3125 if (count
== lensub
)
3142 mpz_set_si (result
->value
.integer
, index
);
3143 return range_check (result
, "INDEX");
3148 simplify_intconv (gfc_expr
*e
, int kind
, const char *name
)
3150 gfc_expr
*result
= NULL
;
3152 if (e
->expr_type
!= EXPR_CONSTANT
)
3155 result
= gfc_convert_constant (e
, BT_INTEGER
, kind
);
3156 if (result
== &gfc_bad_expr
)
3157 return &gfc_bad_expr
;
3159 return range_check (result
, name
);
3164 gfc_simplify_int (gfc_expr
*e
, gfc_expr
*k
)
3168 kind
= get_kind (BT_INTEGER
, k
, "INT", gfc_default_integer_kind
);
3170 return &gfc_bad_expr
;
3172 return simplify_intconv (e
, kind
, "INT");
3176 gfc_simplify_int2 (gfc_expr
*e
)
3178 return simplify_intconv (e
, 2, "INT2");
3183 gfc_simplify_int8 (gfc_expr
*e
)
3185 return simplify_intconv (e
, 8, "INT8");
3190 gfc_simplify_long (gfc_expr
*e
)
3192 return simplify_intconv (e
, 4, "LONG");
3197 gfc_simplify_ifix (gfc_expr
*e
)
3199 gfc_expr
*rtrunc
, *result
;
3201 if (e
->expr_type
!= EXPR_CONSTANT
)
3204 rtrunc
= gfc_copy_expr (e
);
3205 mpfr_trunc (rtrunc
->value
.real
, e
->value
.real
);
3207 result
= gfc_get_constant_expr (BT_INTEGER
, gfc_default_integer_kind
,
3209 gfc_mpfr_to_mpz (result
->value
.integer
, rtrunc
->value
.real
, &e
->where
);
3211 gfc_free_expr (rtrunc
);
3213 return range_check (result
, "IFIX");
3218 gfc_simplify_idint (gfc_expr
*e
)
3220 gfc_expr
*rtrunc
, *result
;
3222 if (e
->expr_type
!= EXPR_CONSTANT
)
3225 rtrunc
= gfc_copy_expr (e
);
3226 mpfr_trunc (rtrunc
->value
.real
, e
->value
.real
);
3228 result
= gfc_get_constant_expr (BT_INTEGER
, gfc_default_integer_kind
,
3230 gfc_mpfr_to_mpz (result
->value
.integer
, rtrunc
->value
.real
, &e
->where
);
3232 gfc_free_expr (rtrunc
);
3234 return range_check (result
, "IDINT");
3239 gfc_simplify_ior (gfc_expr
*x
, gfc_expr
*y
)
3243 if (x
->expr_type
!= EXPR_CONSTANT
|| y
->expr_type
!= EXPR_CONSTANT
)
3246 result
= gfc_get_constant_expr (BT_INTEGER
, x
->ts
.kind
, &x
->where
);
3247 mpz_ior (result
->value
.integer
, x
->value
.integer
, y
->value
.integer
);
3249 return range_check (result
, "IOR");
3254 do_bit_xor (gfc_expr
*result
, gfc_expr
*e
)
3256 gcc_assert (e
->ts
.type
== BT_INTEGER
&& e
->expr_type
== EXPR_CONSTANT
);
3257 gcc_assert (result
->ts
.type
== BT_INTEGER
3258 && result
->expr_type
== EXPR_CONSTANT
);
3260 mpz_xor (result
->value
.integer
, result
->value
.integer
, e
->value
.integer
);
3266 gfc_simplify_iparity (gfc_expr
*array
, gfc_expr
*dim
, gfc_expr
*mask
)
3268 return simplify_transformation (array
, dim
, mask
, 0, do_bit_xor
);
3273 gfc_simplify_is_iostat_end (gfc_expr
*x
)
3275 if (x
->expr_type
!= EXPR_CONSTANT
)
3278 return gfc_get_logical_expr (gfc_default_logical_kind
, &x
->where
,
3279 mpz_cmp_si (x
->value
.integer
,
3280 LIBERROR_END
) == 0);
3285 gfc_simplify_is_iostat_eor (gfc_expr
*x
)
3287 if (x
->expr_type
!= EXPR_CONSTANT
)
3290 return gfc_get_logical_expr (gfc_default_logical_kind
, &x
->where
,
3291 mpz_cmp_si (x
->value
.integer
,
3292 LIBERROR_EOR
) == 0);
3297 gfc_simplify_isnan (gfc_expr
*x
)
3299 if (x
->expr_type
!= EXPR_CONSTANT
)
3302 return gfc_get_logical_expr (gfc_default_logical_kind
, &x
->where
,
3303 mpfr_nan_p (x
->value
.real
));
3307 /* Performs a shift on its first argument. Depending on the last
3308 argument, the shift can be arithmetic, i.e. with filling from the
3309 left like in the SHIFTA intrinsic. */
3311 simplify_shift (gfc_expr
*e
, gfc_expr
*s
, const char *name
,
3312 bool arithmetic
, int direction
)
3315 int ashift
, *bits
, i
, k
, bitsize
, shift
;
3317 if (e
->expr_type
!= EXPR_CONSTANT
|| s
->expr_type
!= EXPR_CONSTANT
)
3320 gfc_extract_int (s
, &shift
);
3322 k
= gfc_validate_kind (BT_INTEGER
, e
->ts
.kind
, false);
3323 bitsize
= gfc_integer_kinds
[k
].bit_size
;
3325 result
= gfc_get_constant_expr (e
->ts
.type
, e
->ts
.kind
, &e
->where
);
3329 mpz_set (result
->value
.integer
, e
->value
.integer
);
3333 if (direction
> 0 && shift
< 0)
3335 /* Left shift, as in SHIFTL. */
3336 gfc_error ("Second argument of %s is negative at %L", name
, &e
->where
);
3337 return &gfc_bad_expr
;
3339 else if (direction
< 0)
3341 /* Right shift, as in SHIFTR or SHIFTA. */
3344 gfc_error ("Second argument of %s is negative at %L",
3346 return &gfc_bad_expr
;
3352 ashift
= (shift
>= 0 ? shift
: -shift
);
3354 if (ashift
> bitsize
)
3356 gfc_error ("Magnitude of second argument of %s exceeds bit size "
3357 "at %L", name
, &e
->where
);
3358 return &gfc_bad_expr
;
3361 bits
= XCNEWVEC (int, bitsize
);
3363 for (i
= 0; i
< bitsize
; i
++)
3364 bits
[i
] = mpz_tstbit (e
->value
.integer
, i
);
3369 for (i
= 0; i
< shift
; i
++)
3370 mpz_clrbit (result
->value
.integer
, i
);
3372 for (i
= 0; i
< bitsize
- shift
; i
++)
3375 mpz_clrbit (result
->value
.integer
, i
+ shift
);
3377 mpz_setbit (result
->value
.integer
, i
+ shift
);
3383 if (arithmetic
&& bits
[bitsize
- 1])
3384 for (i
= bitsize
- 1; i
>= bitsize
- ashift
; i
--)
3385 mpz_setbit (result
->value
.integer
, i
);
3387 for (i
= bitsize
- 1; i
>= bitsize
- ashift
; i
--)
3388 mpz_clrbit (result
->value
.integer
, i
);
3390 for (i
= bitsize
- 1; i
>= ashift
; i
--)
3393 mpz_clrbit (result
->value
.integer
, i
- ashift
);
3395 mpz_setbit (result
->value
.integer
, i
- ashift
);
3399 gfc_convert_mpz_to_signed (result
->value
.integer
, bitsize
);
3407 gfc_simplify_ishft (gfc_expr
*e
, gfc_expr
*s
)
3409 return simplify_shift (e
, s
, "ISHFT", false, 0);
3414 gfc_simplify_lshift (gfc_expr
*e
, gfc_expr
*s
)
3416 return simplify_shift (e
, s
, "LSHIFT", false, 1);
3421 gfc_simplify_rshift (gfc_expr
*e
, gfc_expr
*s
)
3423 return simplify_shift (e
, s
, "RSHIFT", true, -1);
3428 gfc_simplify_shifta (gfc_expr
*e
, gfc_expr
*s
)
3430 return simplify_shift (e
, s
, "SHIFTA", true, -1);
3435 gfc_simplify_shiftl (gfc_expr
*e
, gfc_expr
*s
)
3437 return simplify_shift (e
, s
, "SHIFTL", false, 1);
3442 gfc_simplify_shiftr (gfc_expr
*e
, gfc_expr
*s
)
3444 return simplify_shift (e
, s
, "SHIFTR", false, -1);
3449 gfc_simplify_ishftc (gfc_expr
*e
, gfc_expr
*s
, gfc_expr
*sz
)
3452 int shift
, ashift
, isize
, ssize
, delta
, k
;
3455 if (e
->expr_type
!= EXPR_CONSTANT
|| s
->expr_type
!= EXPR_CONSTANT
)
3458 gfc_extract_int (s
, &shift
);
3460 k
= gfc_validate_kind (e
->ts
.type
, e
->ts
.kind
, false);
3461 isize
= gfc_integer_kinds
[k
].bit_size
;
3465 if (sz
->expr_type
!= EXPR_CONSTANT
)
3468 gfc_extract_int (sz
, &ssize
);
3481 gfc_error ("Magnitude of second argument of ISHFTC exceeds "
3482 "BIT_SIZE of first argument at %C");
3484 gfc_error ("Absolute value of SHIFT shall be less than or equal "
3486 return &gfc_bad_expr
;
3489 result
= gfc_get_constant_expr (e
->ts
.type
, e
->ts
.kind
, &e
->where
);
3491 mpz_set (result
->value
.integer
, e
->value
.integer
);
3496 convert_mpz_to_unsigned (result
->value
.integer
, isize
);
3498 bits
= XCNEWVEC (int, ssize
);
3500 for (i
= 0; i
< ssize
; i
++)
3501 bits
[i
] = mpz_tstbit (e
->value
.integer
, i
);
3503 delta
= ssize
- ashift
;
3507 for (i
= 0; i
< delta
; i
++)
3510 mpz_clrbit (result
->value
.integer
, i
+ shift
);
3512 mpz_setbit (result
->value
.integer
, i
+ shift
);
3515 for (i
= delta
; i
< ssize
; i
++)
3518 mpz_clrbit (result
->value
.integer
, i
- delta
);
3520 mpz_setbit (result
->value
.integer
, i
- delta
);
3525 for (i
= 0; i
< ashift
; i
++)
3528 mpz_clrbit (result
->value
.integer
, i
+ delta
);
3530 mpz_setbit (result
->value
.integer
, i
+ delta
);
3533 for (i
= ashift
; i
< ssize
; i
++)
3536 mpz_clrbit (result
->value
.integer
, i
+ shift
);
3538 mpz_setbit (result
->value
.integer
, i
+ shift
);
3542 gfc_convert_mpz_to_signed (result
->value
.integer
, isize
);
3550 gfc_simplify_kind (gfc_expr
*e
)
3552 return gfc_get_int_expr (gfc_default_integer_kind
, NULL
, e
->ts
.kind
);
3557 simplify_bound_dim (gfc_expr
*array
, gfc_expr
*kind
, int d
, int upper
,
3558 gfc_array_spec
*as
, gfc_ref
*ref
, bool coarray
)
3560 gfc_expr
*l
, *u
, *result
;
3563 k
= get_kind (BT_INTEGER
, kind
, upper
? "UBOUND" : "LBOUND",
3564 gfc_default_integer_kind
);
3566 return &gfc_bad_expr
;
3568 result
= gfc_get_constant_expr (BT_INTEGER
, k
, &array
->where
);
3570 /* For non-variables, LBOUND(expr, DIM=n) = 1 and
3571 UBOUND(expr, DIM=n) = SIZE(expr, DIM=n). */
3572 if (!coarray
&& array
->expr_type
!= EXPR_VARIABLE
)
3576 gfc_expr
* dim
= result
;
3577 mpz_set_si (dim
->value
.integer
, d
);
3579 result
= simplify_size (array
, dim
, k
);
3580 gfc_free_expr (dim
);
3585 mpz_set_si (result
->value
.integer
, 1);
3590 /* Otherwise, we have a variable expression. */
3591 gcc_assert (array
->expr_type
== EXPR_VARIABLE
);
3594 if (!gfc_resolve_array_spec (as
, 0))
3597 /* The last dimension of an assumed-size array is special. */
3598 if ((!coarray
&& d
== as
->rank
&& as
->type
== AS_ASSUMED_SIZE
&& !upper
)
3599 || (coarray
&& d
== as
->rank
+ as
->corank
3600 && (!upper
|| flag_coarray
== GFC_FCOARRAY_SINGLE
)))
3602 if (as
->lower
[d
-1]->expr_type
== EXPR_CONSTANT
)
3604 gfc_free_expr (result
);
3605 return gfc_copy_expr (as
->lower
[d
-1]);
3611 result
= gfc_get_constant_expr (BT_INTEGER
, k
, &array
->where
);
3613 /* Then, we need to know the extent of the given dimension. */
3614 if (coarray
|| (ref
->u
.ar
.type
== AR_FULL
&& !ref
->next
))
3616 gfc_expr
*declared_bound
;
3618 bool constant_lbound
, constant_ubound
;
3623 gcc_assert (l
!= NULL
);
3625 constant_lbound
= l
->expr_type
== EXPR_CONSTANT
;
3626 constant_ubound
= u
&& u
->expr_type
== EXPR_CONSTANT
;
3628 empty_bound
= upper
? 0 : 1;
3629 declared_bound
= upper
? u
: l
;
3631 if ((!upper
&& !constant_lbound
)
3632 || (upper
&& !constant_ubound
))
3637 /* For {L,U}BOUND, the value depends on whether the array
3638 is empty. We can nevertheless simplify if the declared bound
3639 has the same value as that of an empty array, in which case
3640 the result isn't dependent on the array emptyness. */
3641 if (mpz_cmp_si (declared_bound
->value
.integer
, empty_bound
) == 0)
3642 mpz_set_si (result
->value
.integer
, empty_bound
);
3643 else if (!constant_lbound
|| !constant_ubound
)
3644 /* Array emptyness can't be determined, we can't simplify. */
3646 else if (mpz_cmp (l
->value
.integer
, u
->value
.integer
) > 0)
3647 mpz_set_si (result
->value
.integer
, empty_bound
);
3649 mpz_set (result
->value
.integer
, declared_bound
->value
.integer
);
3652 mpz_set (result
->value
.integer
, declared_bound
->value
.integer
);
3658 if (!gfc_ref_dimen_size (&ref
->u
.ar
, d
- 1, &result
->value
.integer
, NULL
))
3662 mpz_set_si (result
->value
.integer
, (long int) 1);
3666 return range_check (result
, upper
? "UBOUND" : "LBOUND");
3669 gfc_free_expr (result
);
3675 simplify_bound (gfc_expr
*array
, gfc_expr
*dim
, gfc_expr
*kind
, int upper
)
3681 if (array
->ts
.type
== BT_CLASS
)
3684 if (array
->expr_type
!= EXPR_VARIABLE
)
3691 /* Follow any component references. */
3692 as
= array
->symtree
->n
.sym
->as
;
3693 for (ref
= array
->ref
; ref
; ref
= ref
->next
)
3698 switch (ref
->u
.ar
.type
)
3705 /* We're done because 'as' has already been set in the
3706 previous iteration. */
3720 as
= ref
->u
.c
.component
->as
;
3732 if (as
&& (as
->type
== AS_DEFERRED
|| as
->type
== AS_ASSUMED_RANK
3733 || (as
->type
== AS_ASSUMED_SHAPE
&& upper
)))
3737 || (as
->type
!= AS_DEFERRED
3738 && array
->expr_type
== EXPR_VARIABLE
3739 && !gfc_expr_attr (array
).allocatable
3740 && !gfc_expr_attr (array
).pointer
));
3744 /* Multi-dimensional bounds. */
3745 gfc_expr
*bounds
[GFC_MAX_DIMENSIONS
];
3749 /* UBOUND(ARRAY) is not valid for an assumed-size array. */
3750 if (upper
&& as
&& as
->type
== AS_ASSUMED_SIZE
)
3752 /* An error message will be emitted in
3753 check_assumed_size_reference (resolve.c). */
3754 return &gfc_bad_expr
;
3757 /* Simplify the bounds for each dimension. */
3758 for (d
= 0; d
< array
->rank
; d
++)
3760 bounds
[d
] = simplify_bound_dim (array
, kind
, d
+ 1, upper
, as
, ref
,
3762 if (bounds
[d
] == NULL
|| bounds
[d
] == &gfc_bad_expr
)
3766 for (j
= 0; j
< d
; j
++)
3767 gfc_free_expr (bounds
[j
]);
3772 /* Allocate the result expression. */
3773 k
= get_kind (BT_INTEGER
, kind
, upper
? "UBOUND" : "LBOUND",
3774 gfc_default_integer_kind
);
3776 return &gfc_bad_expr
;
3778 e
= gfc_get_array_expr (BT_INTEGER
, k
, &array
->where
);
3780 /* The result is a rank 1 array; its size is the rank of the first
3781 argument to {L,U}BOUND. */
3783 e
->shape
= gfc_get_shape (1);
3784 mpz_init_set_ui (e
->shape
[0], array
->rank
);
3786 /* Create the constructor for this array. */
3787 for (d
= 0; d
< array
->rank
; d
++)
3788 gfc_constructor_append_expr (&e
->value
.constructor
,
3789 bounds
[d
], &e
->where
);
3795 /* A DIM argument is specified. */
3796 if (dim
->expr_type
!= EXPR_CONSTANT
)
3799 d
= mpz_get_si (dim
->value
.integer
);
3801 if ((d
< 1 || d
> array
->rank
)
3802 || (d
== array
->rank
&& as
&& as
->type
== AS_ASSUMED_SIZE
&& upper
))
3804 gfc_error ("DIM argument at %L is out of bounds", &dim
->where
);
3805 return &gfc_bad_expr
;
3808 if (as
&& as
->type
== AS_ASSUMED_RANK
)
3811 return simplify_bound_dim (array
, kind
, d
, upper
, as
, ref
, false);
3817 simplify_cobound (gfc_expr
*array
, gfc_expr
*dim
, gfc_expr
*kind
, int upper
)
3823 if (array
->expr_type
!= EXPR_VARIABLE
)
3826 /* Follow any component references. */
3827 as
= (array
->ts
.type
== BT_CLASS
&& array
->ts
.u
.derived
->components
)
3828 ? array
->ts
.u
.derived
->components
->as
3829 : array
->symtree
->n
.sym
->as
;
3830 for (ref
= array
->ref
; ref
; ref
= ref
->next
)
3835 switch (ref
->u
.ar
.type
)
3838 if (ref
->u
.ar
.as
->corank
> 0)
3840 gcc_assert (as
== ref
->u
.ar
.as
);
3847 /* We're done because 'as' has already been set in the
3848 previous iteration. */
3862 as
= ref
->u
.c
.component
->as
;
3875 if (as
->cotype
== AS_DEFERRED
|| as
->cotype
== AS_ASSUMED_SHAPE
)
3880 /* Multi-dimensional cobounds. */
3881 gfc_expr
*bounds
[GFC_MAX_DIMENSIONS
];
3885 /* Simplify the cobounds for each dimension. */
3886 for (d
= 0; d
< as
->corank
; d
++)
3888 bounds
[d
] = simplify_bound_dim (array
, kind
, d
+ 1 + as
->rank
,
3889 upper
, as
, ref
, true);
3890 if (bounds
[d
] == NULL
|| bounds
[d
] == &gfc_bad_expr
)
3894 for (j
= 0; j
< d
; j
++)
3895 gfc_free_expr (bounds
[j
]);
3900 /* Allocate the result expression. */
3901 e
= gfc_get_expr ();
3902 e
->where
= array
->where
;
3903 e
->expr_type
= EXPR_ARRAY
;
3904 e
->ts
.type
= BT_INTEGER
;
3905 k
= get_kind (BT_INTEGER
, kind
, upper
? "UCOBOUND" : "LCOBOUND",
3906 gfc_default_integer_kind
);
3910 return &gfc_bad_expr
;
3914 /* The result is a rank 1 array; its size is the rank of the first
3915 argument to {L,U}COBOUND. */
3917 e
->shape
= gfc_get_shape (1);
3918 mpz_init_set_ui (e
->shape
[0], as
->corank
);
3920 /* Create the constructor for this array. */
3921 for (d
= 0; d
< as
->corank
; d
++)
3922 gfc_constructor_append_expr (&e
->value
.constructor
,
3923 bounds
[d
], &e
->where
);
3928 /* A DIM argument is specified. */
3929 if (dim
->expr_type
!= EXPR_CONSTANT
)
3932 d
= mpz_get_si (dim
->value
.integer
);
3934 if (d
< 1 || d
> as
->corank
)
3936 gfc_error ("DIM argument at %L is out of bounds", &dim
->where
);
3937 return &gfc_bad_expr
;
3940 return simplify_bound_dim (array
, kind
, d
+as
->rank
, upper
, as
, ref
, true);
3946 gfc_simplify_lbound (gfc_expr
*array
, gfc_expr
*dim
, gfc_expr
*kind
)
3948 return simplify_bound (array
, dim
, kind
, 0);
3953 gfc_simplify_lcobound (gfc_expr
*array
, gfc_expr
*dim
, gfc_expr
*kind
)
3955 return simplify_cobound (array
, dim
, kind
, 0);
3959 gfc_simplify_leadz (gfc_expr
*e
)
3961 unsigned long lz
, bs
;
3964 if (e
->expr_type
!= EXPR_CONSTANT
)
3967 i
= gfc_validate_kind (e
->ts
.type
, e
->ts
.kind
, false);
3968 bs
= gfc_integer_kinds
[i
].bit_size
;
3969 if (mpz_cmp_si (e
->value
.integer
, 0) == 0)
3971 else if (mpz_cmp_si (e
->value
.integer
, 0) < 0)
3974 lz
= bs
- mpz_sizeinbase (e
->value
.integer
, 2);
3976 return gfc_get_int_expr (gfc_default_integer_kind
, &e
->where
, lz
);
3981 gfc_simplify_len (gfc_expr
*e
, gfc_expr
*kind
)
3984 int k
= get_kind (BT_INTEGER
, kind
, "LEN", gfc_default_integer_kind
);
3987 return &gfc_bad_expr
;
3989 if (e
->expr_type
== EXPR_CONSTANT
)
3991 result
= gfc_get_constant_expr (BT_INTEGER
, k
, &e
->where
);
3992 mpz_set_si (result
->value
.integer
, e
->value
.character
.length
);
3993 return range_check (result
, "LEN");
3995 else if (e
->ts
.u
.cl
!= NULL
&& e
->ts
.u
.cl
->length
!= NULL
3996 && e
->ts
.u
.cl
->length
->expr_type
== EXPR_CONSTANT
3997 && e
->ts
.u
.cl
->length
->ts
.type
== BT_INTEGER
)
3999 result
= gfc_get_constant_expr (BT_INTEGER
, k
, &e
->where
);
4000 mpz_set (result
->value
.integer
, e
->ts
.u
.cl
->length
->value
.integer
);
4001 return range_check (result
, "LEN");
4003 else if (e
->expr_type
== EXPR_VARIABLE
&& e
->ts
.type
== BT_CHARACTER
4004 && e
->symtree
->n
.sym
4005 && e
->symtree
->n
.sym
->ts
.type
!= BT_DERIVED
4006 && e
->symtree
->n
.sym
->assoc
&& e
->symtree
->n
.sym
->assoc
->target
4007 && e
->symtree
->n
.sym
->assoc
->target
->ts
.type
== BT_DERIVED
4008 && e
->symtree
->n
.sym
->assoc
->target
->symtree
->n
.sym
4009 && UNLIMITED_POLY (e
->symtree
->n
.sym
->assoc
->target
->symtree
->n
.sym
))
4011 /* The expression in assoc->target points to a ref to the _data component
4012 of the unlimited polymorphic entity. To get the _len component the last
4013 _data ref needs to be stripped and a ref to the _len component added. */
4014 return gfc_get_len_component (e
->symtree
->n
.sym
->assoc
->target
);
4021 gfc_simplify_len_trim (gfc_expr
*e
, gfc_expr
*kind
)
4025 int k
= get_kind (BT_INTEGER
, kind
, "LEN_TRIM", gfc_default_integer_kind
);
4028 return &gfc_bad_expr
;
4030 if (e
->expr_type
!= EXPR_CONSTANT
)
4033 len
= e
->value
.character
.length
;
4034 for (count
= 0, i
= 1; i
<= len
; i
++)
4035 if (e
->value
.character
.string
[len
- i
] == ' ')
4040 result
= gfc_get_int_expr (k
, &e
->where
, len
- count
);
4041 return range_check (result
, "LEN_TRIM");
4045 gfc_simplify_lgamma (gfc_expr
*x
)
4050 if (x
->expr_type
!= EXPR_CONSTANT
)
4053 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
4054 mpfr_lgamma (result
->value
.real
, &sg
, x
->value
.real
, GFC_RND_MODE
);
4056 return range_check (result
, "LGAMMA");
4061 gfc_simplify_lge (gfc_expr
*a
, gfc_expr
*b
)
4063 if (a
->expr_type
!= EXPR_CONSTANT
|| b
->expr_type
!= EXPR_CONSTANT
)
4066 return gfc_get_logical_expr (gfc_default_logical_kind
, &a
->where
,
4067 gfc_compare_string (a
, b
) >= 0);
4072 gfc_simplify_lgt (gfc_expr
*a
, gfc_expr
*b
)
4074 if (a
->expr_type
!= EXPR_CONSTANT
|| b
->expr_type
!= EXPR_CONSTANT
)
4077 return gfc_get_logical_expr (gfc_default_logical_kind
, &a
->where
,
4078 gfc_compare_string (a
, b
) > 0);
4083 gfc_simplify_lle (gfc_expr
*a
, gfc_expr
*b
)
4085 if (a
->expr_type
!= EXPR_CONSTANT
|| b
->expr_type
!= EXPR_CONSTANT
)
4088 return gfc_get_logical_expr (gfc_default_logical_kind
, &a
->where
,
4089 gfc_compare_string (a
, b
) <= 0);
4094 gfc_simplify_llt (gfc_expr
*a
, gfc_expr
*b
)
4096 if (a
->expr_type
!= EXPR_CONSTANT
|| b
->expr_type
!= EXPR_CONSTANT
)
4099 return gfc_get_logical_expr (gfc_default_logical_kind
, &a
->where
,
4100 gfc_compare_string (a
, b
) < 0);
4105 gfc_simplify_log (gfc_expr
*x
)
4109 if (x
->expr_type
!= EXPR_CONSTANT
)
4112 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
4117 if (mpfr_sgn (x
->value
.real
) <= 0)
4119 gfc_error ("Argument of LOG at %L cannot be less than or equal "
4120 "to zero", &x
->where
);
4121 gfc_free_expr (result
);
4122 return &gfc_bad_expr
;
4125 mpfr_log (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
4129 if (mpfr_zero_p (mpc_realref (x
->value
.complex))
4130 && mpfr_zero_p (mpc_imagref (x
->value
.complex)))
4132 gfc_error ("Complex argument of LOG at %L cannot be zero",
4134 gfc_free_expr (result
);
4135 return &gfc_bad_expr
;
4138 gfc_set_model_kind (x
->ts
.kind
);
4139 mpc_log (result
->value
.complex, x
->value
.complex, GFC_MPC_RND_MODE
);
4143 gfc_internal_error ("gfc_simplify_log: bad type");
4146 return range_check (result
, "LOG");
4151 gfc_simplify_log10 (gfc_expr
*x
)
4155 if (x
->expr_type
!= EXPR_CONSTANT
)
4158 if (mpfr_sgn (x
->value
.real
) <= 0)
4160 gfc_error ("Argument of LOG10 at %L cannot be less than or equal "
4161 "to zero", &x
->where
);
4162 return &gfc_bad_expr
;
4165 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
4166 mpfr_log10 (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
4168 return range_check (result
, "LOG10");
4173 gfc_simplify_logical (gfc_expr
*e
, gfc_expr
*k
)
4177 kind
= get_kind (BT_LOGICAL
, k
, "LOGICAL", gfc_default_logical_kind
);
4179 return &gfc_bad_expr
;
4181 if (e
->expr_type
!= EXPR_CONSTANT
)
4184 return gfc_get_logical_expr (kind
, &e
->where
, e
->value
.logical
);
4189 gfc_simplify_matmul (gfc_expr
*matrix_a
, gfc_expr
*matrix_b
)
4192 int row
, result_rows
, col
, result_columns
;
4193 int stride_a
, offset_a
, stride_b
, offset_b
;
4195 if (!is_constant_array_expr (matrix_a
)
4196 || !is_constant_array_expr (matrix_b
))
4199 gcc_assert (gfc_compare_types (&matrix_a
->ts
, &matrix_b
->ts
));
4200 result
= gfc_get_array_expr (matrix_a
->ts
.type
,
4204 if (matrix_a
->rank
== 1 && matrix_b
->rank
== 2)
4207 result_columns
= mpz_get_si (matrix_b
->shape
[1]);
4209 stride_b
= mpz_get_si (matrix_b
->shape
[0]);
4212 result
->shape
= gfc_get_shape (result
->rank
);
4213 mpz_init_set_si (result
->shape
[0], result_columns
);
4215 else if (matrix_a
->rank
== 2 && matrix_b
->rank
== 1)
4217 result_rows
= mpz_get_si (matrix_a
->shape
[0]);
4219 stride_a
= mpz_get_si (matrix_a
->shape
[0]);
4223 result
->shape
= gfc_get_shape (result
->rank
);
4224 mpz_init_set_si (result
->shape
[0], result_rows
);
4226 else if (matrix_a
->rank
== 2 && matrix_b
->rank
== 2)
4228 result_rows
= mpz_get_si (matrix_a
->shape
[0]);
4229 result_columns
= mpz_get_si (matrix_b
->shape
[1]);
4230 stride_a
= mpz_get_si (matrix_a
->shape
[0]);
4231 stride_b
= mpz_get_si (matrix_b
->shape
[0]);
4234 result
->shape
= gfc_get_shape (result
->rank
);
4235 mpz_init_set_si (result
->shape
[0], result_rows
);
4236 mpz_init_set_si (result
->shape
[1], result_columns
);
4241 offset_a
= offset_b
= 0;
4242 for (col
= 0; col
< result_columns
; ++col
)
4246 for (row
= 0; row
< result_rows
; ++row
)
4248 gfc_expr
*e
= compute_dot_product (matrix_a
, stride_a
, offset_a
,
4249 matrix_b
, 1, offset_b
, false);
4250 gfc_constructor_append_expr (&result
->value
.constructor
,
4256 offset_b
+= stride_b
;
4264 gfc_simplify_maskr (gfc_expr
*i
, gfc_expr
*kind_arg
)
4269 if (i
->expr_type
!= EXPR_CONSTANT
)
4272 kind
= get_kind (BT_INTEGER
, kind_arg
, "MASKR", gfc_default_integer_kind
);
4274 return &gfc_bad_expr
;
4275 k
= gfc_validate_kind (BT_INTEGER
, kind
, false);
4277 bool fail
= gfc_extract_int (i
, &arg
);
4280 result
= gfc_get_constant_expr (BT_INTEGER
, kind
, &i
->where
);
4282 /* MASKR(n) = 2^n - 1 */
4283 mpz_set_ui (result
->value
.integer
, 1);
4284 mpz_mul_2exp (result
->value
.integer
, result
->value
.integer
, arg
);
4285 mpz_sub_ui (result
->value
.integer
, result
->value
.integer
, 1);
4287 gfc_convert_mpz_to_signed (result
->value
.integer
, gfc_integer_kinds
[k
].bit_size
);
4294 gfc_simplify_maskl (gfc_expr
*i
, gfc_expr
*kind_arg
)
4300 if (i
->expr_type
!= EXPR_CONSTANT
)
4303 kind
= get_kind (BT_INTEGER
, kind_arg
, "MASKL", gfc_default_integer_kind
);
4305 return &gfc_bad_expr
;
4306 k
= gfc_validate_kind (BT_INTEGER
, kind
, false);
4308 bool fail
= gfc_extract_int (i
, &arg
);
4311 result
= gfc_get_constant_expr (BT_INTEGER
, kind
, &i
->where
);
4313 /* MASKL(n) = 2^bit_size - 2^(bit_size - n) */
4314 mpz_init_set_ui (z
, 1);
4315 mpz_mul_2exp (z
, z
, gfc_integer_kinds
[k
].bit_size
);
4316 mpz_set_ui (result
->value
.integer
, 1);
4317 mpz_mul_2exp (result
->value
.integer
, result
->value
.integer
,
4318 gfc_integer_kinds
[k
].bit_size
- arg
);
4319 mpz_sub (result
->value
.integer
, z
, result
->value
.integer
);
4322 gfc_convert_mpz_to_signed (result
->value
.integer
, gfc_integer_kinds
[k
].bit_size
);
4329 gfc_simplify_merge (gfc_expr
*tsource
, gfc_expr
*fsource
, gfc_expr
*mask
)
4332 gfc_constructor
*tsource_ctor
, *fsource_ctor
, *mask_ctor
;
4334 if (mask
->expr_type
== EXPR_CONSTANT
)
4335 return gfc_get_parentheses (gfc_copy_expr (mask
->value
.logical
4336 ? tsource
: fsource
));
4338 if (!mask
->rank
|| !is_constant_array_expr (mask
)
4339 || !is_constant_array_expr (tsource
) || !is_constant_array_expr (fsource
))
4342 result
= gfc_get_array_expr (tsource
->ts
.type
, tsource
->ts
.kind
,
4344 if (tsource
->ts
.type
== BT_DERIVED
)
4345 result
->ts
.u
.derived
= tsource
->ts
.u
.derived
;
4346 else if (tsource
->ts
.type
== BT_CHARACTER
)
4347 result
->ts
.u
.cl
= tsource
->ts
.u
.cl
;
4349 tsource_ctor
= gfc_constructor_first (tsource
->value
.constructor
);
4350 fsource_ctor
= gfc_constructor_first (fsource
->value
.constructor
);
4351 mask_ctor
= gfc_constructor_first (mask
->value
.constructor
);
4355 if (mask_ctor
->expr
->value
.logical
)
4356 gfc_constructor_append_expr (&result
->value
.constructor
,
4357 gfc_copy_expr (tsource_ctor
->expr
),
4360 gfc_constructor_append_expr (&result
->value
.constructor
,
4361 gfc_copy_expr (fsource_ctor
->expr
),
4363 tsource_ctor
= gfc_constructor_next (tsource_ctor
);
4364 fsource_ctor
= gfc_constructor_next (fsource_ctor
);
4365 mask_ctor
= gfc_constructor_next (mask_ctor
);
4368 result
->shape
= gfc_get_shape (1);
4369 gfc_array_size (result
, &result
->shape
[0]);
4376 gfc_simplify_merge_bits (gfc_expr
*i
, gfc_expr
*j
, gfc_expr
*mask_expr
)
4378 mpz_t arg1
, arg2
, mask
;
4381 if (i
->expr_type
!= EXPR_CONSTANT
|| j
->expr_type
!= EXPR_CONSTANT
4382 || mask_expr
->expr_type
!= EXPR_CONSTANT
)
4385 result
= gfc_get_constant_expr (BT_INTEGER
, i
->ts
.kind
, &i
->where
);
4387 /* Convert all argument to unsigned. */
4388 mpz_init_set (arg1
, i
->value
.integer
);
4389 mpz_init_set (arg2
, j
->value
.integer
);
4390 mpz_init_set (mask
, mask_expr
->value
.integer
);
4392 /* MERGE_BITS(I,J,MASK) = IOR (IAND (I, MASK), IAND (J, NOT (MASK))). */
4393 mpz_and (arg1
, arg1
, mask
);
4394 mpz_com (mask
, mask
);
4395 mpz_and (arg2
, arg2
, mask
);
4396 mpz_ior (result
->value
.integer
, arg1
, arg2
);
4406 /* Selects between current value and extremum for simplify_min_max
4407 and simplify_minval_maxval. */
4409 min_max_choose (gfc_expr
*arg
, gfc_expr
*extremum
, int sign
)
4411 switch (arg
->ts
.type
)
4414 if (mpz_cmp (arg
->value
.integer
,
4415 extremum
->value
.integer
) * sign
> 0)
4416 mpz_set (extremum
->value
.integer
, arg
->value
.integer
);
4420 /* We need to use mpfr_min and mpfr_max to treat NaN properly. */
4422 mpfr_max (extremum
->value
.real
, extremum
->value
.real
,
4423 arg
->value
.real
, GFC_RND_MODE
);
4425 mpfr_min (extremum
->value
.real
, extremum
->value
.real
,
4426 arg
->value
.real
, GFC_RND_MODE
);
4430 #define LENGTH(x) ((x)->value.character.length)
4431 #define STRING(x) ((x)->value.character.string)
4432 if (LENGTH (extremum
) < LENGTH(arg
))
4434 gfc_char_t
*tmp
= STRING(extremum
);
4436 STRING(extremum
) = gfc_get_wide_string (LENGTH(arg
) + 1);
4437 memcpy (STRING(extremum
), tmp
,
4438 LENGTH(extremum
) * sizeof (gfc_char_t
));
4439 gfc_wide_memset (&STRING(extremum
)[LENGTH(extremum
)], ' ',
4440 LENGTH(arg
) - LENGTH(extremum
));
4441 STRING(extremum
)[LENGTH(arg
)] = '\0'; /* For debugger */
4442 LENGTH(extremum
) = LENGTH(arg
);
4446 if (gfc_compare_string (arg
, extremum
) * sign
> 0)
4448 free (STRING(extremum
));
4449 STRING(extremum
) = gfc_get_wide_string (LENGTH(extremum
) + 1);
4450 memcpy (STRING(extremum
), STRING(arg
),
4451 LENGTH(arg
) * sizeof (gfc_char_t
));
4452 gfc_wide_memset (&STRING(extremum
)[LENGTH(arg
)], ' ',
4453 LENGTH(extremum
) - LENGTH(arg
));
4454 STRING(extremum
)[LENGTH(extremum
)] = '\0'; /* For debugger */
4461 gfc_internal_error ("simplify_min_max(): Bad type in arglist");
4466 /* This function is special since MAX() can take any number of
4467 arguments. The simplified expression is a rewritten version of the
4468 argument list containing at most one constant element. Other
4469 constant elements are deleted. Because the argument list has
4470 already been checked, this function always succeeds. sign is 1 for
4471 MAX(), -1 for MIN(). */
4474 simplify_min_max (gfc_expr
*expr
, int sign
)
4476 gfc_actual_arglist
*arg
, *last
, *extremum
;
4477 gfc_intrinsic_sym
* specific
;
4481 specific
= expr
->value
.function
.isym
;
4483 arg
= expr
->value
.function
.actual
;
4485 for (; arg
; last
= arg
, arg
= arg
->next
)
4487 if (arg
->expr
->expr_type
!= EXPR_CONSTANT
)
4490 if (extremum
== NULL
)
4496 min_max_choose (arg
->expr
, extremum
->expr
, sign
);
4498 /* Delete the extra constant argument. */
4499 last
->next
= arg
->next
;
4502 gfc_free_actual_arglist (arg
);
4506 /* If there is one value left, replace the function call with the
4508 if (expr
->value
.function
.actual
->next
!= NULL
)
4511 /* Convert to the correct type and kind. */
4512 if (expr
->ts
.type
!= BT_UNKNOWN
)
4513 return gfc_convert_constant (expr
->value
.function
.actual
->expr
,
4514 expr
->ts
.type
, expr
->ts
.kind
);
4516 if (specific
->ts
.type
!= BT_UNKNOWN
)
4517 return gfc_convert_constant (expr
->value
.function
.actual
->expr
,
4518 specific
->ts
.type
, specific
->ts
.kind
);
4520 return gfc_copy_expr (expr
->value
.function
.actual
->expr
);
4525 gfc_simplify_min (gfc_expr
*e
)
4527 return simplify_min_max (e
, -1);
4532 gfc_simplify_max (gfc_expr
*e
)
4534 return simplify_min_max (e
, 1);
4538 /* This is a simplified version of simplify_min_max to provide
4539 simplification of minval and maxval for a vector. */
4542 simplify_minval_maxval (gfc_expr
*expr
, int sign
)
4544 gfc_constructor
*c
, *extremum
;
4545 gfc_intrinsic_sym
* specific
;
4548 specific
= expr
->value
.function
.isym
;
4550 for (c
= gfc_constructor_first (expr
->value
.constructor
);
4551 c
; c
= gfc_constructor_next (c
))
4553 if (c
->expr
->expr_type
!= EXPR_CONSTANT
)
4556 if (extremum
== NULL
)
4562 min_max_choose (c
->expr
, extremum
->expr
, sign
);
4565 if (extremum
== NULL
)
4568 /* Convert to the correct type and kind. */
4569 if (expr
->ts
.type
!= BT_UNKNOWN
)
4570 return gfc_convert_constant (extremum
->expr
,
4571 expr
->ts
.type
, expr
->ts
.kind
);
4573 if (specific
->ts
.type
!= BT_UNKNOWN
)
4574 return gfc_convert_constant (extremum
->expr
,
4575 specific
->ts
.type
, specific
->ts
.kind
);
4577 return gfc_copy_expr (extremum
->expr
);
4582 gfc_simplify_minval (gfc_expr
*array
, gfc_expr
* dim
, gfc_expr
*mask
)
4584 if (array
->expr_type
!= EXPR_ARRAY
|| array
->rank
!= 1 || dim
|| mask
)
4587 return simplify_minval_maxval (array
, -1);
4592 gfc_simplify_maxval (gfc_expr
*array
, gfc_expr
* dim
, gfc_expr
*mask
)
4594 if (array
->expr_type
!= EXPR_ARRAY
|| array
->rank
!= 1 || dim
|| mask
)
4597 return simplify_minval_maxval (array
, 1);
4602 gfc_simplify_maxexponent (gfc_expr
*x
)
4604 int i
= gfc_validate_kind (BT_REAL
, x
->ts
.kind
, false);
4605 return gfc_get_int_expr (gfc_default_integer_kind
, &x
->where
,
4606 gfc_real_kinds
[i
].max_exponent
);
4611 gfc_simplify_minexponent (gfc_expr
*x
)
4613 int i
= gfc_validate_kind (BT_REAL
, x
->ts
.kind
, false);
4614 return gfc_get_int_expr (gfc_default_integer_kind
, &x
->where
,
4615 gfc_real_kinds
[i
].min_exponent
);
4620 gfc_simplify_mod (gfc_expr
*a
, gfc_expr
*p
)
4625 if (a
->expr_type
!= EXPR_CONSTANT
|| p
->expr_type
!= EXPR_CONSTANT
)
4628 kind
= a
->ts
.kind
> p
->ts
.kind
? a
->ts
.kind
: p
->ts
.kind
;
4629 result
= gfc_get_constant_expr (a
->ts
.type
, kind
, &a
->where
);
4634 if (mpz_cmp_ui (p
->value
.integer
, 0) == 0)
4636 /* Result is processor-dependent. */
4637 gfc_error ("Second argument MOD at %L is zero", &a
->where
);
4638 gfc_free_expr (result
);
4639 return &gfc_bad_expr
;
4641 mpz_tdiv_r (result
->value
.integer
, a
->value
.integer
, p
->value
.integer
);
4645 if (mpfr_cmp_ui (p
->value
.real
, 0) == 0)
4647 /* Result is processor-dependent. */
4648 gfc_error ("Second argument of MOD at %L is zero", &p
->where
);
4649 gfc_free_expr (result
);
4650 return &gfc_bad_expr
;
4653 gfc_set_model_kind (kind
);
4654 mpfr_fmod (result
->value
.real
, a
->value
.real
, p
->value
.real
,
4659 gfc_internal_error ("gfc_simplify_mod(): Bad arguments");
4662 return range_check (result
, "MOD");
4667 gfc_simplify_modulo (gfc_expr
*a
, gfc_expr
*p
)
4672 if (a
->expr_type
!= EXPR_CONSTANT
|| p
->expr_type
!= EXPR_CONSTANT
)
4675 kind
= a
->ts
.kind
> p
->ts
.kind
? a
->ts
.kind
: p
->ts
.kind
;
4676 result
= gfc_get_constant_expr (a
->ts
.type
, kind
, &a
->where
);
4681 if (mpz_cmp_ui (p
->value
.integer
, 0) == 0)
4683 /* Result is processor-dependent. This processor just opts
4684 to not handle it at all. */
4685 gfc_error ("Second argument of MODULO at %L is zero", &a
->where
);
4686 gfc_free_expr (result
);
4687 return &gfc_bad_expr
;
4689 mpz_fdiv_r (result
->value
.integer
, a
->value
.integer
, p
->value
.integer
);
4694 if (mpfr_cmp_ui (p
->value
.real
, 0) == 0)
4696 /* Result is processor-dependent. */
4697 gfc_error ("Second argument of MODULO at %L is zero", &p
->where
);
4698 gfc_free_expr (result
);
4699 return &gfc_bad_expr
;
4702 gfc_set_model_kind (kind
);
4703 mpfr_fmod (result
->value
.real
, a
->value
.real
, p
->value
.real
,
4705 if (mpfr_cmp_ui (result
->value
.real
, 0) != 0)
4707 if (mpfr_signbit (a
->value
.real
) != mpfr_signbit (p
->value
.real
))
4708 mpfr_add (result
->value
.real
, result
->value
.real
, p
->value
.real
,
4712 mpfr_copysign (result
->value
.real
, result
->value
.real
,
4713 p
->value
.real
, GFC_RND_MODE
);
4717 gfc_internal_error ("gfc_simplify_modulo(): Bad arguments");
4720 return range_check (result
, "MODULO");
4725 gfc_simplify_nearest (gfc_expr
*x
, gfc_expr
*s
)
4728 mp_exp_t emin
, emax
;
4731 if (x
->expr_type
!= EXPR_CONSTANT
|| s
->expr_type
!= EXPR_CONSTANT
)
4734 result
= gfc_copy_expr (x
);
4736 /* Save current values of emin and emax. */
4737 emin
= mpfr_get_emin ();
4738 emax
= mpfr_get_emax ();
4740 /* Set emin and emax for the current model number. */
4741 kind
= gfc_validate_kind (BT_REAL
, x
->ts
.kind
, 0);
4742 mpfr_set_emin ((mp_exp_t
) gfc_real_kinds
[kind
].min_exponent
-
4743 mpfr_get_prec(result
->value
.real
) + 1);
4744 mpfr_set_emax ((mp_exp_t
) gfc_real_kinds
[kind
].max_exponent
- 1);
4745 mpfr_check_range (result
->value
.real
, 0, GMP_RNDU
);
4747 if (mpfr_sgn (s
->value
.real
) > 0)
4749 mpfr_nextabove (result
->value
.real
);
4750 mpfr_subnormalize (result
->value
.real
, 0, GMP_RNDU
);
4754 mpfr_nextbelow (result
->value
.real
);
4755 mpfr_subnormalize (result
->value
.real
, 0, GMP_RNDD
);
4758 mpfr_set_emin (emin
);
4759 mpfr_set_emax (emax
);
4761 /* Only NaN can occur. Do not use range check as it gives an
4762 error for denormal numbers. */
4763 if (mpfr_nan_p (result
->value
.real
) && flag_range_check
)
4765 gfc_error ("Result of NEAREST is NaN at %L", &result
->where
);
4766 gfc_free_expr (result
);
4767 return &gfc_bad_expr
;
4775 simplify_nint (const char *name
, gfc_expr
*e
, gfc_expr
*k
)
4777 gfc_expr
*itrunc
, *result
;
4780 kind
= get_kind (BT_INTEGER
, k
, name
, gfc_default_integer_kind
);
4782 return &gfc_bad_expr
;
4784 if (e
->expr_type
!= EXPR_CONSTANT
)
4787 itrunc
= gfc_copy_expr (e
);
4788 mpfr_round (itrunc
->value
.real
, e
->value
.real
);
4790 result
= gfc_get_constant_expr (BT_INTEGER
, kind
, &e
->where
);
4791 gfc_mpfr_to_mpz (result
->value
.integer
, itrunc
->value
.real
, &e
->where
);
4793 gfc_free_expr (itrunc
);
4795 return range_check (result
, name
);
4800 gfc_simplify_new_line (gfc_expr
*e
)
4804 result
= gfc_get_character_expr (e
->ts
.kind
, &e
->where
, NULL
, 1);
4805 result
->value
.character
.string
[0] = '\n';
4812 gfc_simplify_nint (gfc_expr
*e
, gfc_expr
*k
)
4814 return simplify_nint ("NINT", e
, k
);
4819 gfc_simplify_idnint (gfc_expr
*e
)
4821 return simplify_nint ("IDNINT", e
, NULL
);
4826 add_squared (gfc_expr
*result
, gfc_expr
*e
)
4830 gcc_assert (e
->ts
.type
== BT_REAL
&& e
->expr_type
== EXPR_CONSTANT
);
4831 gcc_assert (result
->ts
.type
== BT_REAL
4832 && result
->expr_type
== EXPR_CONSTANT
);
4834 gfc_set_model_kind (result
->ts
.kind
);
4836 mpfr_pow_ui (tmp
, e
->value
.real
, 2, GFC_RND_MODE
);
4837 mpfr_add (result
->value
.real
, result
->value
.real
, tmp
,
4846 do_sqrt (gfc_expr
*result
, gfc_expr
*e
)
4848 gcc_assert (e
->ts
.type
== BT_REAL
&& e
->expr_type
== EXPR_CONSTANT
);
4849 gcc_assert (result
->ts
.type
== BT_REAL
4850 && result
->expr_type
== EXPR_CONSTANT
);
4852 mpfr_set (result
->value
.real
, e
->value
.real
, GFC_RND_MODE
);
4853 mpfr_sqrt (result
->value
.real
, result
->value
.real
, GFC_RND_MODE
);
4859 gfc_simplify_norm2 (gfc_expr
*e
, gfc_expr
*dim
)
4863 if (!is_constant_array_expr (e
)
4864 || (dim
!= NULL
&& !gfc_is_constant_expr (dim
)))
4867 result
= transformational_result (e
, dim
, e
->ts
.type
, e
->ts
.kind
, &e
->where
);
4868 init_result_expr (result
, 0, NULL
);
4870 if (!dim
|| e
->rank
== 1)
4872 result
= simplify_transformation_to_scalar (result
, e
, NULL
,
4874 mpfr_sqrt (result
->value
.real
, result
->value
.real
, GFC_RND_MODE
);
4877 result
= simplify_transformation_to_array (result
, e
, dim
, NULL
,
4878 add_squared
, &do_sqrt
);
4885 gfc_simplify_not (gfc_expr
*e
)
4889 if (e
->expr_type
!= EXPR_CONSTANT
)
4892 result
= gfc_get_constant_expr (e
->ts
.type
, e
->ts
.kind
, &e
->where
);
4893 mpz_com (result
->value
.integer
, e
->value
.integer
);
4895 return range_check (result
, "NOT");
4900 gfc_simplify_null (gfc_expr
*mold
)
4906 result
= gfc_copy_expr (mold
);
4907 result
->expr_type
= EXPR_NULL
;
4910 result
= gfc_get_null_expr (NULL
);
4917 gfc_simplify_num_images (gfc_expr
*distance ATTRIBUTE_UNUSED
, gfc_expr
*failed
)
4921 if (flag_coarray
== GFC_FCOARRAY_NONE
)
4923 gfc_fatal_error ("Coarrays disabled at %C, use %<-fcoarray=%> to enable");
4924 return &gfc_bad_expr
;
4927 if (flag_coarray
!= GFC_FCOARRAY_SINGLE
)
4930 if (failed
&& failed
->expr_type
!= EXPR_CONSTANT
)
4933 /* FIXME: gfc_current_locus is wrong. */
4934 result
= gfc_get_constant_expr (BT_INTEGER
, gfc_default_integer_kind
,
4935 &gfc_current_locus
);
4937 if (failed
&& failed
->value
.logical
!= 0)
4938 mpz_set_si (result
->value
.integer
, 0);
4940 mpz_set_si (result
->value
.integer
, 1);
4947 gfc_simplify_or (gfc_expr
*x
, gfc_expr
*y
)
4952 if (x
->expr_type
!= EXPR_CONSTANT
|| y
->expr_type
!= EXPR_CONSTANT
)
4955 kind
= x
->ts
.kind
> y
->ts
.kind
? x
->ts
.kind
: y
->ts
.kind
;
4960 result
= gfc_get_constant_expr (BT_INTEGER
, kind
, &x
->where
);
4961 mpz_ior (result
->value
.integer
, x
->value
.integer
, y
->value
.integer
);
4962 return range_check (result
, "OR");
4965 return gfc_get_logical_expr (kind
, &x
->where
,
4966 x
->value
.logical
|| y
->value
.logical
);
4974 gfc_simplify_pack (gfc_expr
*array
, gfc_expr
*mask
, gfc_expr
*vector
)
4977 gfc_constructor
*array_ctor
, *mask_ctor
, *vector_ctor
;
4979 if (!is_constant_array_expr (array
)
4980 || !is_constant_array_expr (vector
)
4981 || (!gfc_is_constant_expr (mask
)
4982 && !is_constant_array_expr (mask
)))
4985 result
= gfc_get_array_expr (array
->ts
.type
, array
->ts
.kind
, &array
->where
);
4986 if (array
->ts
.type
== BT_DERIVED
)
4987 result
->ts
.u
.derived
= array
->ts
.u
.derived
;
4989 array_ctor
= gfc_constructor_first (array
->value
.constructor
);
4990 vector_ctor
= vector
4991 ? gfc_constructor_first (vector
->value
.constructor
)
4994 if (mask
->expr_type
== EXPR_CONSTANT
4995 && mask
->value
.logical
)
4997 /* Copy all elements of ARRAY to RESULT. */
5000 gfc_constructor_append_expr (&result
->value
.constructor
,
5001 gfc_copy_expr (array_ctor
->expr
),
5004 array_ctor
= gfc_constructor_next (array_ctor
);
5005 vector_ctor
= gfc_constructor_next (vector_ctor
);
5008 else if (mask
->expr_type
== EXPR_ARRAY
)
5010 /* Copy only those elements of ARRAY to RESULT whose
5011 MASK equals .TRUE.. */
5012 mask_ctor
= gfc_constructor_first (mask
->value
.constructor
);
5015 if (mask_ctor
->expr
->value
.logical
)
5017 gfc_constructor_append_expr (&result
->value
.constructor
,
5018 gfc_copy_expr (array_ctor
->expr
),
5020 vector_ctor
= gfc_constructor_next (vector_ctor
);
5023 array_ctor
= gfc_constructor_next (array_ctor
);
5024 mask_ctor
= gfc_constructor_next (mask_ctor
);
5028 /* Append any left-over elements from VECTOR to RESULT. */
5031 gfc_constructor_append_expr (&result
->value
.constructor
,
5032 gfc_copy_expr (vector_ctor
->expr
),
5034 vector_ctor
= gfc_constructor_next (vector_ctor
);
5037 result
->shape
= gfc_get_shape (1);
5038 gfc_array_size (result
, &result
->shape
[0]);
5040 if (array
->ts
.type
== BT_CHARACTER
)
5041 result
->ts
.u
.cl
= array
->ts
.u
.cl
;
5048 do_xor (gfc_expr
*result
, gfc_expr
*e
)
5050 gcc_assert (e
->ts
.type
== BT_LOGICAL
&& e
->expr_type
== EXPR_CONSTANT
);
5051 gcc_assert (result
->ts
.type
== BT_LOGICAL
5052 && result
->expr_type
== EXPR_CONSTANT
);
5054 result
->value
.logical
= result
->value
.logical
!= e
->value
.logical
;
5061 gfc_simplify_parity (gfc_expr
*e
, gfc_expr
*dim
)
5063 return simplify_transformation (e
, dim
, NULL
, 0, do_xor
);
5068 gfc_simplify_popcnt (gfc_expr
*e
)
5073 if (e
->expr_type
!= EXPR_CONSTANT
)
5076 k
= gfc_validate_kind (e
->ts
.type
, e
->ts
.kind
, false);
5078 /* Convert argument to unsigned, then count the '1' bits. */
5079 mpz_init_set (x
, e
->value
.integer
);
5080 convert_mpz_to_unsigned (x
, gfc_integer_kinds
[k
].bit_size
);
5081 res
= mpz_popcount (x
);
5084 return gfc_get_int_expr (gfc_default_integer_kind
, &e
->where
, res
);
5089 gfc_simplify_poppar (gfc_expr
*e
)
5094 if (e
->expr_type
!= EXPR_CONSTANT
)
5097 popcnt
= gfc_simplify_popcnt (e
);
5098 gcc_assert (popcnt
);
5100 bool fail
= gfc_extract_int (popcnt
, &i
);
5103 return gfc_get_int_expr (gfc_default_integer_kind
, &e
->where
, i
% 2);
5108 gfc_simplify_precision (gfc_expr
*e
)
5110 int i
= gfc_validate_kind (e
->ts
.type
, e
->ts
.kind
, false);
5111 return gfc_get_int_expr (gfc_default_integer_kind
, &e
->where
,
5112 gfc_real_kinds
[i
].precision
);
5117 gfc_simplify_product (gfc_expr
*array
, gfc_expr
*dim
, gfc_expr
*mask
)
5119 return simplify_transformation (array
, dim
, mask
, 1, gfc_multiply
);
5124 gfc_simplify_radix (gfc_expr
*e
)
5127 i
= gfc_validate_kind (e
->ts
.type
, e
->ts
.kind
, false);
5132 i
= gfc_integer_kinds
[i
].radix
;
5136 i
= gfc_real_kinds
[i
].radix
;
5143 return gfc_get_int_expr (gfc_default_integer_kind
, &e
->where
, i
);
5148 gfc_simplify_range (gfc_expr
*e
)
5151 i
= gfc_validate_kind (e
->ts
.type
, e
->ts
.kind
, false);
5156 i
= gfc_integer_kinds
[i
].range
;
5161 i
= gfc_real_kinds
[i
].range
;
5168 return gfc_get_int_expr (gfc_default_integer_kind
, &e
->where
, i
);
5173 gfc_simplify_rank (gfc_expr
*e
)
5179 return gfc_get_int_expr (gfc_default_integer_kind
, &e
->where
, e
->rank
);
5184 gfc_simplify_real (gfc_expr
*e
, gfc_expr
*k
)
5186 gfc_expr
*result
= NULL
;
5189 if (e
->ts
.type
== BT_COMPLEX
)
5190 kind
= get_kind (BT_REAL
, k
, "REAL", e
->ts
.kind
);
5192 kind
= get_kind (BT_REAL
, k
, "REAL", gfc_default_real_kind
);
5195 return &gfc_bad_expr
;
5197 if (e
->expr_type
!= EXPR_CONSTANT
)
5200 if (convert_boz (e
, kind
) == &gfc_bad_expr
)
5201 return &gfc_bad_expr
;
5203 result
= gfc_convert_constant (e
, BT_REAL
, kind
);
5204 if (result
== &gfc_bad_expr
)
5205 return &gfc_bad_expr
;
5207 return range_check (result
, "REAL");
5212 gfc_simplify_realpart (gfc_expr
*e
)
5216 if (e
->expr_type
!= EXPR_CONSTANT
)
5219 result
= gfc_get_constant_expr (BT_REAL
, e
->ts
.kind
, &e
->where
);
5220 mpc_real (result
->value
.real
, e
->value
.complex, GFC_RND_MODE
);
5222 return range_check (result
, "REALPART");
5226 gfc_simplify_repeat (gfc_expr
*e
, gfc_expr
*n
)
5229 int i
, j
, len
, ncop
, nlen
;
5231 bool have_length
= false;
5233 /* If NCOPIES isn't a constant, there's nothing we can do. */
5234 if (n
->expr_type
!= EXPR_CONSTANT
)
5237 /* If NCOPIES is negative, it's an error. */
5238 if (mpz_sgn (n
->value
.integer
) < 0)
5240 gfc_error ("Argument NCOPIES of REPEAT intrinsic is negative at %L",
5242 return &gfc_bad_expr
;
5245 /* If we don't know the character length, we can do no more. */
5246 if (e
->ts
.u
.cl
&& e
->ts
.u
.cl
->length
5247 && e
->ts
.u
.cl
->length
->expr_type
== EXPR_CONSTANT
)
5249 len
= mpz_get_si (e
->ts
.u
.cl
->length
->value
.integer
);
5252 else if (e
->expr_type
== EXPR_CONSTANT
5253 && (e
->ts
.u
.cl
== NULL
|| e
->ts
.u
.cl
->length
== NULL
))
5255 len
= e
->value
.character
.length
;
5260 /* If the source length is 0, any value of NCOPIES is valid
5261 and everything behaves as if NCOPIES == 0. */
5264 mpz_set_ui (ncopies
, 0);
5266 mpz_set (ncopies
, n
->value
.integer
);
5268 /* Check that NCOPIES isn't too large. */
5274 /* Compute the maximum value allowed for NCOPIES: huge(cl) / len. */
5276 i
= gfc_validate_kind (BT_INTEGER
, gfc_charlen_int_kind
, false);
5280 mpz_tdiv_q (max
, gfc_integer_kinds
[i
].huge
,
5281 e
->ts
.u
.cl
->length
->value
.integer
);
5285 mpz_init_set_si (mlen
, len
);
5286 mpz_tdiv_q (max
, gfc_integer_kinds
[i
].huge
, mlen
);
5290 /* The check itself. */
5291 if (mpz_cmp (ncopies
, max
) > 0)
5294 mpz_clear (ncopies
);
5295 gfc_error ("Argument NCOPIES of REPEAT intrinsic is too large at %L",
5297 return &gfc_bad_expr
;
5302 mpz_clear (ncopies
);
5304 /* For further simplification, we need the character string to be
5306 if (e
->expr_type
!= EXPR_CONSTANT
)
5310 (e
->ts
.u
.cl
->length
&&
5311 mpz_sgn (e
->ts
.u
.cl
->length
->value
.integer
) != 0))
5313 bool fail
= gfc_extract_int (n
, &ncop
);
5320 return gfc_get_character_expr (e
->ts
.kind
, &e
->where
, NULL
, 0);
5322 len
= e
->value
.character
.length
;
5325 result
= gfc_get_character_expr (e
->ts
.kind
, &e
->where
, NULL
, nlen
);
5326 for (i
= 0; i
< ncop
; i
++)
5327 for (j
= 0; j
< len
; j
++)
5328 result
->value
.character
.string
[j
+i
*len
]= e
->value
.character
.string
[j
];
5330 result
->value
.character
.string
[nlen
] = '\0'; /* For debugger */
5335 /* This one is a bear, but mainly has to do with shuffling elements. */
5338 gfc_simplify_reshape (gfc_expr
*source
, gfc_expr
*shape_exp
,
5339 gfc_expr
*pad
, gfc_expr
*order_exp
)
5341 int order
[GFC_MAX_DIMENSIONS
], shape
[GFC_MAX_DIMENSIONS
];
5342 int i
, rank
, npad
, x
[GFC_MAX_DIMENSIONS
];
5346 gfc_expr
*e
, *result
;
5348 /* Check that argument expression types are OK. */
5349 if (!is_constant_array_expr (source
)
5350 || !is_constant_array_expr (shape_exp
)
5351 || !is_constant_array_expr (pad
)
5352 || !is_constant_array_expr (order_exp
))
5355 if (source
->shape
== NULL
)
5358 /* Proceed with simplification, unpacking the array. */
5365 e
= gfc_constructor_lookup_expr (shape_exp
->value
.constructor
, rank
);
5369 gfc_extract_int (e
, &shape
[rank
]);
5371 gcc_assert (rank
>= 0 && rank
< GFC_MAX_DIMENSIONS
);
5372 gcc_assert (shape
[rank
] >= 0);
5377 gcc_assert (rank
> 0);
5379 /* Now unpack the order array if present. */
5380 if (order_exp
== NULL
)
5382 for (i
= 0; i
< rank
; i
++)
5387 for (i
= 0; i
< rank
; i
++)
5390 for (i
= 0; i
< rank
; i
++)
5392 e
= gfc_constructor_lookup_expr (order_exp
->value
.constructor
, i
);
5395 gfc_extract_int (e
, &order
[i
]);
5397 gcc_assert (order
[i
] >= 1 && order
[i
] <= rank
);
5399 gcc_assert (x
[order
[i
]] == 0);
5404 /* Count the elements in the source and padding arrays. */
5409 gfc_array_size (pad
, &size
);
5410 npad
= mpz_get_ui (size
);
5414 gfc_array_size (source
, &size
);
5415 nsource
= mpz_get_ui (size
);
5418 /* If it weren't for that pesky permutation we could just loop
5419 through the source and round out any shortage with pad elements.
5420 But no, someone just had to have the compiler do something the
5421 user should be doing. */
5423 for (i
= 0; i
< rank
; i
++)
5426 result
= gfc_get_array_expr (source
->ts
.type
, source
->ts
.kind
,
5428 if (source
->ts
.type
== BT_DERIVED
)
5429 result
->ts
.u
.derived
= source
->ts
.u
.derived
;
5430 result
->rank
= rank
;
5431 result
->shape
= gfc_get_shape (rank
);
5432 for (i
= 0; i
< rank
; i
++)
5433 mpz_init_set_ui (result
->shape
[i
], shape
[i
]);
5435 while (nsource
> 0 || npad
> 0)
5437 /* Figure out which element to extract. */
5438 mpz_set_ui (index
, 0);
5440 for (i
= rank
- 1; i
>= 0; i
--)
5442 mpz_add_ui (index
, index
, x
[order
[i
]]);
5444 mpz_mul_ui (index
, index
, shape
[order
[i
- 1]]);
5447 if (mpz_cmp_ui (index
, INT_MAX
) > 0)
5448 gfc_internal_error ("Reshaped array too large at %C");
5450 j
= mpz_get_ui (index
);
5453 e
= gfc_constructor_lookup_expr (source
->value
.constructor
, j
);
5463 e
= gfc_constructor_lookup_expr (pad
->value
.constructor
, j
);
5467 gfc_constructor_append_expr (&result
->value
.constructor
,
5468 gfc_copy_expr (e
), &e
->where
);
5470 /* Calculate the next element. */
5474 if (++x
[i
] < shape
[i
])
5490 gfc_simplify_rrspacing (gfc_expr
*x
)
5496 if (x
->expr_type
!= EXPR_CONSTANT
)
5499 i
= gfc_validate_kind (x
->ts
.type
, x
->ts
.kind
, false);
5501 result
= gfc_get_constant_expr (BT_REAL
, x
->ts
.kind
, &x
->where
);
5503 /* RRSPACING(+/- 0.0) = 0.0 */
5504 if (mpfr_zero_p (x
->value
.real
))
5506 mpfr_set_ui (result
->value
.real
, 0, GFC_RND_MODE
);
5510 /* RRSPACING(inf) = NaN */
5511 if (mpfr_inf_p (x
->value
.real
))
5513 mpfr_set_nan (result
->value
.real
);
5517 /* RRSPACING(NaN) = same NaN */
5518 if (mpfr_nan_p (x
->value
.real
))
5520 mpfr_set (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
5524 /* | x * 2**(-e) | * 2**p. */
5525 mpfr_abs (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
5526 e
= - (long int) mpfr_get_exp (x
->value
.real
);
5527 mpfr_mul_2si (result
->value
.real
, result
->value
.real
, e
, GFC_RND_MODE
);
5529 p
= (long int) gfc_real_kinds
[i
].digits
;
5530 mpfr_mul_2si (result
->value
.real
, result
->value
.real
, p
, GFC_RND_MODE
);
5532 return range_check (result
, "RRSPACING");
5537 gfc_simplify_scale (gfc_expr
*x
, gfc_expr
*i
)
5539 int k
, neg_flag
, power
, exp_range
;
5540 mpfr_t scale
, radix
;
5543 if (x
->expr_type
!= EXPR_CONSTANT
|| i
->expr_type
!= EXPR_CONSTANT
)
5546 result
= gfc_get_constant_expr (BT_REAL
, x
->ts
.kind
, &x
->where
);
5548 if (mpfr_zero_p (x
->value
.real
))
5550 mpfr_set_ui (result
->value
.real
, 0, GFC_RND_MODE
);
5554 k
= gfc_validate_kind (BT_REAL
, x
->ts
.kind
, false);
5556 exp_range
= gfc_real_kinds
[k
].max_exponent
- gfc_real_kinds
[k
].min_exponent
;
5558 /* This check filters out values of i that would overflow an int. */
5559 if (mpz_cmp_si (i
->value
.integer
, exp_range
+ 2) > 0
5560 || mpz_cmp_si (i
->value
.integer
, -exp_range
- 2) < 0)
5562 gfc_error ("Result of SCALE overflows its kind at %L", &result
->where
);
5563 gfc_free_expr (result
);
5564 return &gfc_bad_expr
;
5567 /* Compute scale = radix ** power. */
5568 power
= mpz_get_si (i
->value
.integer
);
5578 gfc_set_model_kind (x
->ts
.kind
);
5581 mpfr_set_ui (radix
, gfc_real_kinds
[k
].radix
, GFC_RND_MODE
);
5582 mpfr_pow_ui (scale
, radix
, power
, GFC_RND_MODE
);
5585 mpfr_div (result
->value
.real
, x
->value
.real
, scale
, GFC_RND_MODE
);
5587 mpfr_mul (result
->value
.real
, x
->value
.real
, scale
, GFC_RND_MODE
);
5589 mpfr_clears (scale
, radix
, NULL
);
5591 return range_check (result
, "SCALE");
5595 /* Variants of strspn and strcspn that operate on wide characters. */
5598 wide_strspn (const gfc_char_t
*s1
, const gfc_char_t
*s2
)
5601 const gfc_char_t
*c
;
5605 for (c
= s2
; *c
; c
++)
5619 wide_strcspn (const gfc_char_t
*s1
, const gfc_char_t
*s2
)
5622 const gfc_char_t
*c
;
5626 for (c
= s2
; *c
; c
++)
5641 gfc_simplify_scan (gfc_expr
*e
, gfc_expr
*c
, gfc_expr
*b
, gfc_expr
*kind
)
5646 size_t indx
, len
, lenc
;
5647 int k
= get_kind (BT_INTEGER
, kind
, "SCAN", gfc_default_integer_kind
);
5650 return &gfc_bad_expr
;
5652 if (e
->expr_type
!= EXPR_CONSTANT
|| c
->expr_type
!= EXPR_CONSTANT
5653 || ( b
!= NULL
&& b
->expr_type
!= EXPR_CONSTANT
))
5656 if (b
!= NULL
&& b
->value
.logical
!= 0)
5661 len
= e
->value
.character
.length
;
5662 lenc
= c
->value
.character
.length
;
5664 if (len
== 0 || lenc
== 0)
5672 indx
= wide_strcspn (e
->value
.character
.string
,
5673 c
->value
.character
.string
) + 1;
5680 for (indx
= len
; indx
> 0; indx
--)
5682 for (i
= 0; i
< lenc
; i
++)
5684 if (c
->value
.character
.string
[i
]
5685 == e
->value
.character
.string
[indx
- 1])
5694 result
= gfc_get_int_expr (k
, &e
->where
, indx
);
5695 return range_check (result
, "SCAN");
5700 gfc_simplify_selected_char_kind (gfc_expr
*e
)
5704 if (e
->expr_type
!= EXPR_CONSTANT
)
5707 if (gfc_compare_with_Cstring (e
, "ascii", false) == 0
5708 || gfc_compare_with_Cstring (e
, "default", false) == 0)
5710 else if (gfc_compare_with_Cstring (e
, "iso_10646", false) == 0)
5715 return gfc_get_int_expr (gfc_default_integer_kind
, &e
->where
, kind
);
5720 gfc_simplify_selected_int_kind (gfc_expr
*e
)
5724 if (e
->expr_type
!= EXPR_CONSTANT
|| gfc_extract_int (e
, &range
))
5729 for (i
= 0; gfc_integer_kinds
[i
].kind
!= 0; i
++)
5730 if (gfc_integer_kinds
[i
].range
>= range
5731 && gfc_integer_kinds
[i
].kind
< kind
)
5732 kind
= gfc_integer_kinds
[i
].kind
;
5734 if (kind
== INT_MAX
)
5737 return gfc_get_int_expr (gfc_default_integer_kind
, &e
->where
, kind
);
5742 gfc_simplify_selected_real_kind (gfc_expr
*p
, gfc_expr
*q
, gfc_expr
*rdx
)
5744 int range
, precision
, radix
, i
, kind
, found_precision
, found_range
,
5746 locus
*loc
= &gfc_current_locus
;
5752 if (p
->expr_type
!= EXPR_CONSTANT
5753 || gfc_extract_int (p
, &precision
))
5762 if (q
->expr_type
!= EXPR_CONSTANT
5763 || gfc_extract_int (q
, &range
))
5774 if (rdx
->expr_type
!= EXPR_CONSTANT
5775 || gfc_extract_int (rdx
, &radix
))
5783 found_precision
= 0;
5787 for (i
= 0; gfc_real_kinds
[i
].kind
!= 0; i
++)
5789 if (gfc_real_kinds
[i
].precision
>= precision
)
5790 found_precision
= 1;
5792 if (gfc_real_kinds
[i
].range
>= range
)
5795 if (radix
== 0 || gfc_real_kinds
[i
].radix
== radix
)
5798 if (gfc_real_kinds
[i
].precision
>= precision
5799 && gfc_real_kinds
[i
].range
>= range
5800 && (radix
== 0 || gfc_real_kinds
[i
].radix
== radix
)
5801 && gfc_real_kinds
[i
].kind
< kind
)
5802 kind
= gfc_real_kinds
[i
].kind
;
5805 if (kind
== INT_MAX
)
5807 if (found_radix
&& found_range
&& !found_precision
)
5809 else if (found_radix
&& found_precision
&& !found_range
)
5811 else if (found_radix
&& !found_precision
&& !found_range
)
5813 else if (found_radix
)
5819 return gfc_get_int_expr (gfc_default_integer_kind
, loc
, kind
);
5824 gfc_simplify_set_exponent (gfc_expr
*x
, gfc_expr
*i
)
5827 mpfr_t exp
, absv
, log2
, pow2
, frac
;
5830 if (x
->expr_type
!= EXPR_CONSTANT
|| i
->expr_type
!= EXPR_CONSTANT
)
5833 result
= gfc_get_constant_expr (BT_REAL
, x
->ts
.kind
, &x
->where
);
5835 /* SET_EXPONENT (+/-0.0, I) = +/- 0.0
5836 SET_EXPONENT (NaN) = same NaN */
5837 if (mpfr_zero_p (x
->value
.real
) || mpfr_nan_p (x
->value
.real
))
5839 mpfr_set (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
5843 /* SET_EXPONENT (inf) = NaN */
5844 if (mpfr_inf_p (x
->value
.real
))
5846 mpfr_set_nan (result
->value
.real
);
5850 gfc_set_model_kind (x
->ts
.kind
);
5857 mpfr_abs (absv
, x
->value
.real
, GFC_RND_MODE
);
5858 mpfr_log2 (log2
, absv
, GFC_RND_MODE
);
5860 mpfr_trunc (log2
, log2
);
5861 mpfr_add_ui (exp
, log2
, 1, GFC_RND_MODE
);
5863 /* Old exponent value, and fraction. */
5864 mpfr_ui_pow (pow2
, 2, exp
, GFC_RND_MODE
);
5866 mpfr_div (frac
, absv
, pow2
, GFC_RND_MODE
);
5869 exp2
= (unsigned long) mpz_get_d (i
->value
.integer
);
5870 mpfr_mul_2exp (result
->value
.real
, frac
, exp2
, GFC_RND_MODE
);
5872 mpfr_clears (absv
, log2
, pow2
, frac
, NULL
);
5874 return range_check (result
, "SET_EXPONENT");
5879 gfc_simplify_shape (gfc_expr
*source
, gfc_expr
*kind
)
5881 mpz_t shape
[GFC_MAX_DIMENSIONS
];
5882 gfc_expr
*result
, *e
, *f
;
5886 int k
= get_kind (BT_INTEGER
, kind
, "SHAPE", gfc_default_integer_kind
);
5888 if (source
->rank
== -1)
5891 result
= gfc_get_array_expr (BT_INTEGER
, k
, &source
->where
);
5893 if (source
->rank
== 0)
5896 if (source
->expr_type
== EXPR_VARIABLE
)
5898 ar
= gfc_find_array_ref (source
);
5899 t
= gfc_array_ref_shape (ar
, shape
);
5901 else if (source
->shape
)
5904 for (n
= 0; n
< source
->rank
; n
++)
5906 mpz_init (shape
[n
]);
5907 mpz_set (shape
[n
], source
->shape
[n
]);
5913 for (n
= 0; n
< source
->rank
; n
++)
5915 e
= gfc_get_constant_expr (BT_INTEGER
, k
, &source
->where
);
5918 mpz_set (e
->value
.integer
, shape
[n
]);
5921 mpz_set_ui (e
->value
.integer
, n
+ 1);
5923 f
= simplify_size (source
, e
, k
);
5927 gfc_free_expr (result
);
5934 if (e
== &gfc_bad_expr
|| range_check (e
, "SHAPE") == &gfc_bad_expr
)
5936 gfc_free_expr (result
);
5938 gfc_clear_shape (shape
, source
->rank
);
5939 return &gfc_bad_expr
;
5942 gfc_constructor_append_expr (&result
->value
.constructor
, e
, NULL
);
5946 gfc_clear_shape (shape
, source
->rank
);
5953 simplify_size (gfc_expr
*array
, gfc_expr
*dim
, int k
)
5956 gfc_expr
*return_value
;
5959 /* For unary operations, the size of the result is given by the size
5960 of the operand. For binary ones, it's the size of the first operand
5961 unless it is scalar, then it is the size of the second. */
5962 if (array
->expr_type
== EXPR_OP
&& !array
->value
.op
.uop
)
5964 gfc_expr
* replacement
;
5965 gfc_expr
* simplified
;
5967 switch (array
->value
.op
.op
)
5969 /* Unary operations. */
5971 case INTRINSIC_UPLUS
:
5972 case INTRINSIC_UMINUS
:
5973 case INTRINSIC_PARENTHESES
:
5974 replacement
= array
->value
.op
.op1
;
5977 /* Binary operations. If any one of the operands is scalar, take
5978 the other one's size. If both of them are arrays, it does not
5979 matter -- try to find one with known shape, if possible. */
5981 if (array
->value
.op
.op1
->rank
== 0)
5982 replacement
= array
->value
.op
.op2
;
5983 else if (array
->value
.op
.op2
->rank
== 0)
5984 replacement
= array
->value
.op
.op1
;
5987 simplified
= simplify_size (array
->value
.op
.op1
, dim
, k
);
5991 replacement
= array
->value
.op
.op2
;
5996 /* Try to reduce it directly if possible. */
5997 simplified
= simplify_size (replacement
, dim
, k
);
5999 /* Otherwise, we build a new SIZE call. This is hopefully at least
6000 simpler than the original one. */
6003 gfc_expr
*kind
= gfc_get_int_expr (gfc_default_integer_kind
, NULL
, k
);
6004 simplified
= gfc_build_intrinsic_call (gfc_current_ns
,
6005 GFC_ISYM_SIZE
, "size",
6007 gfc_copy_expr (replacement
),
6008 gfc_copy_expr (dim
),
6016 if (!gfc_array_size (array
, &size
))
6021 if (dim
->expr_type
!= EXPR_CONSTANT
)
6024 d
= mpz_get_ui (dim
->value
.integer
) - 1;
6025 if (!gfc_array_dimen_size (array
, d
, &size
))
6029 return_value
= gfc_get_constant_expr (BT_INTEGER
, k
, &array
->where
);
6030 mpz_set (return_value
->value
.integer
, size
);
6033 return return_value
;
6038 gfc_simplify_size (gfc_expr
*array
, gfc_expr
*dim
, gfc_expr
*kind
)
6041 int k
= get_kind (BT_INTEGER
, kind
, "SIZE", gfc_default_integer_kind
);
6044 return &gfc_bad_expr
;
6046 result
= simplify_size (array
, dim
, k
);
6047 if (result
== NULL
|| result
== &gfc_bad_expr
)
6050 return range_check (result
, "SIZE");
6054 /* SIZEOF and C_SIZEOF return the size in bytes of an array element
6055 multiplied by the array size. */
6058 gfc_simplify_sizeof (gfc_expr
*x
)
6060 gfc_expr
*result
= NULL
;
6063 if (x
->ts
.type
== BT_CLASS
|| x
->ts
.deferred
)
6066 if (x
->ts
.type
== BT_CHARACTER
6067 && (!x
->ts
.u
.cl
|| !x
->ts
.u
.cl
->length
6068 || x
->ts
.u
.cl
->length
->expr_type
!= EXPR_CONSTANT
))
6071 if (x
->rank
&& x
->expr_type
!= EXPR_ARRAY
6072 && !gfc_array_size (x
, &array_size
))
6075 result
= gfc_get_constant_expr (BT_INTEGER
, gfc_index_integer_kind
,
6077 mpz_set_si (result
->value
.integer
, gfc_target_expr_size (x
));
6083 /* STORAGE_SIZE returns the size in bits of a single array element. */
6086 gfc_simplify_storage_size (gfc_expr
*x
,
6089 gfc_expr
*result
= NULL
;
6092 if (x
->ts
.type
== BT_CLASS
|| x
->ts
.deferred
)
6095 if (x
->ts
.type
== BT_CHARACTER
&& x
->expr_type
!= EXPR_CONSTANT
6096 && (!x
->ts
.u
.cl
|| !x
->ts
.u
.cl
->length
6097 || x
->ts
.u
.cl
->length
->expr_type
!= EXPR_CONSTANT
))
6100 k
= get_kind (BT_INTEGER
, kind
, "STORAGE_SIZE", gfc_default_integer_kind
);
6102 return &gfc_bad_expr
;
6104 result
= gfc_get_constant_expr (BT_INTEGER
, k
, &x
->where
);
6106 mpz_set_si (result
->value
.integer
, gfc_element_size (x
));
6107 mpz_mul_ui (result
->value
.integer
, result
->value
.integer
, BITS_PER_UNIT
);
6109 return range_check (result
, "STORAGE_SIZE");
6114 gfc_simplify_sign (gfc_expr
*x
, gfc_expr
*y
)
6118 if (x
->expr_type
!= EXPR_CONSTANT
|| y
->expr_type
!= EXPR_CONSTANT
)
6121 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
6126 mpz_abs (result
->value
.integer
, x
->value
.integer
);
6127 if (mpz_sgn (y
->value
.integer
) < 0)
6128 mpz_neg (result
->value
.integer
, result
->value
.integer
);
6133 mpfr_copysign (result
->value
.real
, x
->value
.real
, y
->value
.real
,
6136 mpfr_setsign (result
->value
.real
, x
->value
.real
,
6137 mpfr_sgn (y
->value
.real
) < 0 ? 1 : 0, GFC_RND_MODE
);
6141 gfc_internal_error ("Bad type in gfc_simplify_sign");
6149 gfc_simplify_sin (gfc_expr
*x
)
6153 if (x
->expr_type
!= EXPR_CONSTANT
)
6156 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
6161 mpfr_sin (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
6165 gfc_set_model (x
->value
.real
);
6166 mpc_sin (result
->value
.complex, x
->value
.complex, GFC_MPC_RND_MODE
);
6170 gfc_internal_error ("in gfc_simplify_sin(): Bad type");
6173 return range_check (result
, "SIN");
6178 gfc_simplify_sinh (gfc_expr
*x
)
6182 if (x
->expr_type
!= EXPR_CONSTANT
)
6185 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
6190 mpfr_sinh (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
6194 mpc_sinh (result
->value
.complex, x
->value
.complex, GFC_MPC_RND_MODE
);
6201 return range_check (result
, "SINH");
6205 /* The argument is always a double precision real that is converted to
6206 single precision. TODO: Rounding! */
6209 gfc_simplify_sngl (gfc_expr
*a
)
6213 if (a
->expr_type
!= EXPR_CONSTANT
)
6216 result
= gfc_real2real (a
, gfc_default_real_kind
);
6217 return range_check (result
, "SNGL");
6222 gfc_simplify_spacing (gfc_expr
*x
)
6228 if (x
->expr_type
!= EXPR_CONSTANT
)
6231 i
= gfc_validate_kind (x
->ts
.type
, x
->ts
.kind
, false);
6232 result
= gfc_get_constant_expr (BT_REAL
, x
->ts
.kind
, &x
->where
);
6234 /* SPACING(+/- 0.0) = SPACING(TINY(0.0)) = TINY(0.0) */
6235 if (mpfr_zero_p (x
->value
.real
))
6237 mpfr_set (result
->value
.real
, gfc_real_kinds
[i
].tiny
, GFC_RND_MODE
);
6241 /* SPACING(inf) = NaN */
6242 if (mpfr_inf_p (x
->value
.real
))
6244 mpfr_set_nan (result
->value
.real
);
6248 /* SPACING(NaN) = same NaN */
6249 if (mpfr_nan_p (x
->value
.real
))
6251 mpfr_set (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
6255 /* In the Fortran 95 standard, the result is b**(e - p) where b, e, and p
6256 are the radix, exponent of x, and precision. This excludes the
6257 possibility of subnormal numbers. Fortran 2003 states the result is
6258 b**max(e - p, emin - 1). */
6260 ep
= (long int) mpfr_get_exp (x
->value
.real
) - gfc_real_kinds
[i
].digits
;
6261 en
= (long int) gfc_real_kinds
[i
].min_exponent
- 1;
6262 en
= en
> ep
? en
: ep
;
6264 mpfr_set_ui (result
->value
.real
, 1, GFC_RND_MODE
);
6265 mpfr_mul_2si (result
->value
.real
, result
->value
.real
, en
, GFC_RND_MODE
);
6267 return range_check (result
, "SPACING");
6272 gfc_simplify_spread (gfc_expr
*source
, gfc_expr
*dim_expr
, gfc_expr
*ncopies_expr
)
6274 gfc_expr
*result
= NULL
;
6275 int nelem
, i
, j
, dim
, ncopies
;
6278 if ((!gfc_is_constant_expr (source
)
6279 && !is_constant_array_expr (source
))
6280 || !gfc_is_constant_expr (dim_expr
)
6281 || !gfc_is_constant_expr (ncopies_expr
))
6284 gcc_assert (dim_expr
->ts
.type
== BT_INTEGER
);
6285 gfc_extract_int (dim_expr
, &dim
);
6286 dim
-= 1; /* zero-base DIM */
6288 gcc_assert (ncopies_expr
->ts
.type
== BT_INTEGER
);
6289 gfc_extract_int (ncopies_expr
, &ncopies
);
6290 ncopies
= MAX (ncopies
, 0);
6292 /* Do not allow the array size to exceed the limit for an array
6294 if (source
->expr_type
== EXPR_ARRAY
)
6296 if (!gfc_array_size (source
, &size
))
6297 gfc_internal_error ("Failure getting length of a constant array.");
6300 mpz_init_set_ui (size
, 1);
6302 nelem
= mpz_get_si (size
) * ncopies
;
6303 if (nelem
> flag_max_array_constructor
)
6305 if (gfc_current_ns
->sym_root
->n
.sym
->attr
.flavor
== FL_PARAMETER
)
6307 gfc_error ("The number of elements (%d) in the array constructor "
6308 "at %L requires an increase of the allowed %d upper "
6309 "limit. See %<-fmax-array-constructor%> option.",
6310 nelem
, &source
->where
, flag_max_array_constructor
);
6311 return &gfc_bad_expr
;
6317 if (source
->expr_type
== EXPR_CONSTANT
)
6319 gcc_assert (dim
== 0);
6321 result
= gfc_get_array_expr (source
->ts
.type
, source
->ts
.kind
,
6323 if (source
->ts
.type
== BT_DERIVED
)
6324 result
->ts
.u
.derived
= source
->ts
.u
.derived
;
6326 result
->shape
= gfc_get_shape (result
->rank
);
6327 mpz_init_set_si (result
->shape
[0], ncopies
);
6329 for (i
= 0; i
< ncopies
; ++i
)
6330 gfc_constructor_append_expr (&result
->value
.constructor
,
6331 gfc_copy_expr (source
), NULL
);
6333 else if (source
->expr_type
== EXPR_ARRAY
)
6335 int offset
, rstride
[GFC_MAX_DIMENSIONS
], extent
[GFC_MAX_DIMENSIONS
];
6336 gfc_constructor
*source_ctor
;
6338 gcc_assert (source
->rank
< GFC_MAX_DIMENSIONS
);
6339 gcc_assert (dim
>= 0 && dim
<= source
->rank
);
6341 result
= gfc_get_array_expr (source
->ts
.type
, source
->ts
.kind
,
6343 if (source
->ts
.type
== BT_DERIVED
)
6344 result
->ts
.u
.derived
= source
->ts
.u
.derived
;
6345 result
->rank
= source
->rank
+ 1;
6346 result
->shape
= gfc_get_shape (result
->rank
);
6348 for (i
= 0, j
= 0; i
< result
->rank
; ++i
)
6351 mpz_init_set (result
->shape
[i
], source
->shape
[j
++]);
6353 mpz_init_set_si (result
->shape
[i
], ncopies
);
6355 extent
[i
] = mpz_get_si (result
->shape
[i
]);
6356 rstride
[i
] = (i
== 0) ? 1 : rstride
[i
-1] * extent
[i
-1];
6360 for (source_ctor
= gfc_constructor_first (source
->value
.constructor
);
6361 source_ctor
; source_ctor
= gfc_constructor_next (source_ctor
))
6363 for (i
= 0; i
< ncopies
; ++i
)
6364 gfc_constructor_insert_expr (&result
->value
.constructor
,
6365 gfc_copy_expr (source_ctor
->expr
),
6366 NULL
, offset
+ i
* rstride
[dim
]);
6368 offset
+= (dim
== 0 ? ncopies
: 1);
6373 gfc_error ("Simplification of SPREAD at %C not yet implemented");
6374 return &gfc_bad_expr
;
6377 if (source
->ts
.type
== BT_CHARACTER
)
6378 result
->ts
.u
.cl
= source
->ts
.u
.cl
;
6385 gfc_simplify_sqrt (gfc_expr
*e
)
6387 gfc_expr
*result
= NULL
;
6389 if (e
->expr_type
!= EXPR_CONSTANT
)
6395 if (mpfr_cmp_si (e
->value
.real
, 0) < 0)
6397 gfc_error ("Argument of SQRT at %L has a negative value",
6399 return &gfc_bad_expr
;
6401 result
= gfc_get_constant_expr (e
->ts
.type
, e
->ts
.kind
, &e
->where
);
6402 mpfr_sqrt (result
->value
.real
, e
->value
.real
, GFC_RND_MODE
);
6406 gfc_set_model (e
->value
.real
);
6408 result
= gfc_get_constant_expr (e
->ts
.type
, e
->ts
.kind
, &e
->where
);
6409 mpc_sqrt (result
->value
.complex, e
->value
.complex, GFC_MPC_RND_MODE
);
6413 gfc_internal_error ("invalid argument of SQRT at %L", &e
->where
);
6416 return range_check (result
, "SQRT");
6421 gfc_simplify_sum (gfc_expr
*array
, gfc_expr
*dim
, gfc_expr
*mask
)
6423 return simplify_transformation (array
, dim
, mask
, 0, gfc_add
);
6428 gfc_simplify_cotan (gfc_expr
*x
)
6433 if (x
->expr_type
!= EXPR_CONSTANT
)
6436 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
6441 mpfr_cot (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
6445 /* There is no builtin mpc_cot, so compute cot = cos / sin. */
6446 val
= &result
->value
.complex;
6447 mpc_init2 (swp
, mpfr_get_default_prec ());
6448 mpc_cos (swp
, x
->value
.complex, GFC_MPC_RND_MODE
);
6449 mpc_sin (*val
, x
->value
.complex, GFC_MPC_RND_MODE
);
6450 mpc_div (*val
, swp
, *val
, GFC_MPC_RND_MODE
);
6458 return range_check (result
, "COTAN");
6463 gfc_simplify_tan (gfc_expr
*x
)
6467 if (x
->expr_type
!= EXPR_CONSTANT
)
6470 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
6475 mpfr_tan (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
6479 mpc_tan (result
->value
.complex, x
->value
.complex, GFC_MPC_RND_MODE
);
6486 return range_check (result
, "TAN");
6491 gfc_simplify_tanh (gfc_expr
*x
)
6495 if (x
->expr_type
!= EXPR_CONSTANT
)
6498 result
= gfc_get_constant_expr (x
->ts
.type
, x
->ts
.kind
, &x
->where
);
6503 mpfr_tanh (result
->value
.real
, x
->value
.real
, GFC_RND_MODE
);
6507 mpc_tanh (result
->value
.complex, x
->value
.complex, GFC_MPC_RND_MODE
);
6514 return range_check (result
, "TANH");
6519 gfc_simplify_tiny (gfc_expr
*e
)
6524 i
= gfc_validate_kind (BT_REAL
, e
->ts
.kind
, false);
6526 result
= gfc_get_constant_expr (BT_REAL
, e
->ts
.kind
, &e
->where
);
6527 mpfr_set (result
->value
.real
, gfc_real_kinds
[i
].tiny
, GFC_RND_MODE
);
6534 gfc_simplify_trailz (gfc_expr
*e
)
6536 unsigned long tz
, bs
;
6539 if (e
->expr_type
!= EXPR_CONSTANT
)
6542 i
= gfc_validate_kind (e
->ts
.type
, e
->ts
.kind
, false);
6543 bs
= gfc_integer_kinds
[i
].bit_size
;
6544 tz
= mpz_scan1 (e
->value
.integer
, 0);
6546 return gfc_get_int_expr (gfc_default_integer_kind
,
6547 &e
->where
, MIN (tz
, bs
));
6552 gfc_simplify_transfer (gfc_expr
*source
, gfc_expr
*mold
, gfc_expr
*size
)
6555 gfc_expr
*mold_element
;
6560 unsigned char *buffer
;
6561 size_t result_length
;
6564 if (!gfc_is_constant_expr (source
)
6565 || (gfc_init_expr_flag
&& !gfc_is_constant_expr (mold
))
6566 || !gfc_is_constant_expr (size
))
6569 if (!gfc_calculate_transfer_sizes (source
, mold
, size
, &source_size
,
6570 &result_size
, &result_length
))
6573 /* Calculate the size of the source. */
6574 if (source
->expr_type
== EXPR_ARRAY
6575 && !gfc_array_size (source
, &tmp
))
6576 gfc_internal_error ("Failure getting length of a constant array.");
6578 /* Create an empty new expression with the appropriate characteristics. */
6579 result
= gfc_get_constant_expr (mold
->ts
.type
, mold
->ts
.kind
,
6581 result
->ts
= mold
->ts
;
6583 mold_element
= mold
->expr_type
== EXPR_ARRAY
6584 ? gfc_constructor_first (mold
->value
.constructor
)->expr
6587 /* Set result character length, if needed. Note that this needs to be
6588 set even for array expressions, in order to pass this information into
6589 gfc_target_interpret_expr. */
6590 if (result
->ts
.type
== BT_CHARACTER
&& gfc_is_constant_expr (mold_element
))
6591 result
->value
.character
.length
= mold_element
->value
.character
.length
;
6593 /* Set the number of elements in the result, and determine its size. */
6595 if (mold
->expr_type
== EXPR_ARRAY
|| mold
->rank
|| size
)
6597 result
->expr_type
= EXPR_ARRAY
;
6599 result
->shape
= gfc_get_shape (1);
6600 mpz_init_set_ui (result
->shape
[0], result_length
);
6605 /* Allocate the buffer to store the binary version of the source. */
6606 buffer_size
= MAX (source_size
, result_size
);
6607 buffer
= (unsigned char*)alloca (buffer_size
);
6608 memset (buffer
, 0, buffer_size
);
6610 /* Now write source to the buffer. */
6611 gfc_target_encode_expr (source
, buffer
, buffer_size
);
6613 /* And read the buffer back into the new expression. */
6614 gfc_target_interpret_expr (buffer
, buffer_size
, result
, false);
6621 gfc_simplify_transpose (gfc_expr
*matrix
)
6623 int row
, matrix_rows
, col
, matrix_cols
;
6626 if (!is_constant_array_expr (matrix
))
6629 gcc_assert (matrix
->rank
== 2);
6631 result
= gfc_get_array_expr (matrix
->ts
.type
, matrix
->ts
.kind
,
6634 result
->shape
= gfc_get_shape (result
->rank
);
6635 mpz_set (result
->shape
[0], matrix
->shape
[1]);
6636 mpz_set (result
->shape
[1], matrix
->shape
[0]);
6638 if (matrix
->ts
.type
== BT_CHARACTER
)
6639 result
->ts
.u
.cl
= matrix
->ts
.u
.cl
;
6640 else if (matrix
->ts
.type
== BT_DERIVED
)
6641 result
->ts
.u
.derived
= matrix
->ts
.u
.derived
;
6643 matrix_rows
= mpz_get_si (matrix
->shape
[0]);
6644 matrix_cols
= mpz_get_si (matrix
->shape
[1]);
6645 for (row
= 0; row
< matrix_rows
; ++row
)
6646 for (col
= 0; col
< matrix_cols
; ++col
)
6648 gfc_expr
*e
= gfc_constructor_lookup_expr (matrix
->value
.constructor
,
6649 col
* matrix_rows
+ row
);
6650 gfc_constructor_insert_expr (&result
->value
.constructor
,
6651 gfc_copy_expr (e
), &matrix
->where
,
6652 row
* matrix_cols
+ col
);
6660 gfc_simplify_trim (gfc_expr
*e
)
6663 int count
, i
, len
, lentrim
;
6665 if (e
->expr_type
!= EXPR_CONSTANT
)
6668 len
= e
->value
.character
.length
;
6669 for (count
= 0, i
= 1; i
<= len
; ++i
)
6671 if (e
->value
.character
.string
[len
- i
] == ' ')
6677 lentrim
= len
- count
;
6679 result
= gfc_get_character_expr (e
->ts
.kind
, &e
->where
, NULL
, lentrim
);
6680 for (i
= 0; i
< lentrim
; i
++)
6681 result
->value
.character
.string
[i
] = e
->value
.character
.string
[i
];
6688 gfc_simplify_image_index (gfc_expr
*coarray
, gfc_expr
*sub
)
6693 gfc_constructor
*sub_cons
;
6697 if (!is_constant_array_expr (sub
))
6700 /* Follow any component references. */
6701 as
= coarray
->symtree
->n
.sym
->as
;
6702 for (ref
= coarray
->ref
; ref
; ref
= ref
->next
)
6703 if (ref
->type
== REF_COMPONENT
)
6706 if (as
->type
== AS_DEFERRED
)
6709 /* "valid sequence of cosubscripts" are required; thus, return 0 unless
6710 the cosubscript addresses the first image. */
6712 sub_cons
= gfc_constructor_first (sub
->value
.constructor
);
6715 for (d
= 1; d
<= as
->corank
; d
++)
6720 gcc_assert (sub_cons
!= NULL
);
6722 ca_bound
= simplify_bound_dim (coarray
, NULL
, d
+ as
->rank
, 0, as
,
6724 if (ca_bound
== NULL
)
6727 if (ca_bound
== &gfc_bad_expr
)
6730 cmp
= mpz_cmp (ca_bound
->value
.integer
, sub_cons
->expr
->value
.integer
);
6734 gfc_free_expr (ca_bound
);
6735 sub_cons
= gfc_constructor_next (sub_cons
);
6739 first_image
= false;
6743 gfc_error ("Out of bounds in IMAGE_INDEX at %L for dimension %d, "
6744 "SUB has %ld and COARRAY lower bound is %ld)",
6746 mpz_get_si (sub_cons
->expr
->value
.integer
),
6747 mpz_get_si (ca_bound
->value
.integer
));
6748 gfc_free_expr (ca_bound
);
6749 return &gfc_bad_expr
;
6752 gfc_free_expr (ca_bound
);
6754 /* Check whether upperbound is valid for the multi-images case. */
6757 ca_bound
= simplify_bound_dim (coarray
, NULL
, d
+ as
->rank
, 1, as
,
6759 if (ca_bound
== &gfc_bad_expr
)
6762 if (ca_bound
&& ca_bound
->expr_type
== EXPR_CONSTANT
6763 && mpz_cmp (ca_bound
->value
.integer
,
6764 sub_cons
->expr
->value
.integer
) < 0)
6766 gfc_error ("Out of bounds in IMAGE_INDEX at %L for dimension %d, "
6767 "SUB has %ld and COARRAY upper bound is %ld)",
6769 mpz_get_si (sub_cons
->expr
->value
.integer
),
6770 mpz_get_si (ca_bound
->value
.integer
));
6771 gfc_free_expr (ca_bound
);
6772 return &gfc_bad_expr
;
6776 gfc_free_expr (ca_bound
);
6779 sub_cons
= gfc_constructor_next (sub_cons
);
6782 gcc_assert (sub_cons
== NULL
);
6784 if (flag_coarray
!= GFC_FCOARRAY_SINGLE
&& !first_image
)
6787 result
= gfc_get_constant_expr (BT_INTEGER
, gfc_default_integer_kind
,
6788 &gfc_current_locus
);
6790 mpz_set_si (result
->value
.integer
, 1);
6792 mpz_set_si (result
->value
.integer
, 0);
6798 gfc_simplify_image_status (gfc_expr
*image
, gfc_expr
*team ATTRIBUTE_UNUSED
)
6800 if (flag_coarray
== GFC_FCOARRAY_NONE
)
6802 gfc_current_locus
= *gfc_current_intrinsic_where
;
6803 gfc_fatal_error ("Coarrays disabled at %C, use %<-fcoarray=%> to enable");
6804 return &gfc_bad_expr
;
6807 /* Simplification is possible for fcoarray = single only. For all other modes
6808 the result depends on runtime conditions. */
6809 if (flag_coarray
!= GFC_FCOARRAY_SINGLE
)
6812 if (gfc_is_constant_expr (image
))
6815 result
= gfc_get_constant_expr (BT_INTEGER
, gfc_default_integer_kind
,
6817 if (mpz_get_si (image
->value
.integer
) == 1)
6818 mpz_set_si (result
->value
.integer
, 0);
6820 mpz_set_si (result
->value
.integer
, GFC_STAT_STOPPED_IMAGE
);
6829 gfc_simplify_this_image (gfc_expr
*coarray
, gfc_expr
*dim
,
6830 gfc_expr
*distance ATTRIBUTE_UNUSED
)
6832 if (flag_coarray
!= GFC_FCOARRAY_SINGLE
)
6835 /* If no coarray argument has been passed or when the first argument
6836 is actually a distance argment. */
6837 if (coarray
== NULL
|| !gfc_is_coarray (coarray
))
6840 /* FIXME: gfc_current_locus is wrong. */
6841 result
= gfc_get_constant_expr (BT_INTEGER
, gfc_default_integer_kind
,
6842 &gfc_current_locus
);
6843 mpz_set_si (result
->value
.integer
, 1);
6847 /* For -fcoarray=single, this_image(A) is the same as lcobound(A). */
6848 return simplify_cobound (coarray
, dim
, NULL
, 0);
6853 gfc_simplify_ubound (gfc_expr
*array
, gfc_expr
*dim
, gfc_expr
*kind
)
6855 return simplify_bound (array
, dim
, kind
, 1);
6859 gfc_simplify_ucobound (gfc_expr
*array
, gfc_expr
*dim
, gfc_expr
*kind
)
6861 return simplify_cobound (array
, dim
, kind
, 1);
6866 gfc_simplify_unpack (gfc_expr
*vector
, gfc_expr
*mask
, gfc_expr
*field
)
6868 gfc_expr
*result
, *e
;
6869 gfc_constructor
*vector_ctor
, *mask_ctor
, *field_ctor
;
6871 if (!is_constant_array_expr (vector
)
6872 || !is_constant_array_expr (mask
)
6873 || (!gfc_is_constant_expr (field
)
6874 && !is_constant_array_expr (field
)))
6877 result
= gfc_get_array_expr (vector
->ts
.type
, vector
->ts
.kind
,
6879 if (vector
->ts
.type
== BT_DERIVED
)
6880 result
->ts
.u
.derived
= vector
->ts
.u
.derived
;
6881 result
->rank
= mask
->rank
;
6882 result
->shape
= gfc_copy_shape (mask
->shape
, mask
->rank
);
6884 if (vector
->ts
.type
== BT_CHARACTER
)
6885 result
->ts
.u
.cl
= vector
->ts
.u
.cl
;
6887 vector_ctor
= gfc_constructor_first (vector
->value
.constructor
);
6888 mask_ctor
= gfc_constructor_first (mask
->value
.constructor
);
6890 = field
->expr_type
== EXPR_ARRAY
6891 ? gfc_constructor_first (field
->value
.constructor
)
6896 if (mask_ctor
->expr
->value
.logical
)
6898 gcc_assert (vector_ctor
);
6899 e
= gfc_copy_expr (vector_ctor
->expr
);
6900 vector_ctor
= gfc_constructor_next (vector_ctor
);
6902 else if (field
->expr_type
== EXPR_ARRAY
)
6903 e
= gfc_copy_expr (field_ctor
->expr
);
6905 e
= gfc_copy_expr (field
);
6907 gfc_constructor_append_expr (&result
->value
.constructor
, e
, NULL
);
6909 mask_ctor
= gfc_constructor_next (mask_ctor
);
6910 field_ctor
= gfc_constructor_next (field_ctor
);
6918 gfc_simplify_verify (gfc_expr
*s
, gfc_expr
*set
, gfc_expr
*b
, gfc_expr
*kind
)
6922 size_t index
, len
, lenset
;
6924 int k
= get_kind (BT_INTEGER
, kind
, "VERIFY", gfc_default_integer_kind
);
6927 return &gfc_bad_expr
;
6929 if (s
->expr_type
!= EXPR_CONSTANT
|| set
->expr_type
!= EXPR_CONSTANT
6930 || ( b
!= NULL
&& b
->expr_type
!= EXPR_CONSTANT
))
6933 if (b
!= NULL
&& b
->value
.logical
!= 0)
6938 result
= gfc_get_constant_expr (BT_INTEGER
, k
, &s
->where
);
6940 len
= s
->value
.character
.length
;
6941 lenset
= set
->value
.character
.length
;
6945 mpz_set_ui (result
->value
.integer
, 0);
6953 mpz_set_ui (result
->value
.integer
, 1);
6957 index
= wide_strspn (s
->value
.character
.string
,
6958 set
->value
.character
.string
) + 1;
6967 mpz_set_ui (result
->value
.integer
, len
);
6970 for (index
= len
; index
> 0; index
--)
6972 for (i
= 0; i
< lenset
; i
++)
6974 if (s
->value
.character
.string
[index
- 1]
6975 == set
->value
.character
.string
[i
])
6983 mpz_set_ui (result
->value
.integer
, index
);
6989 gfc_simplify_xor (gfc_expr
*x
, gfc_expr
*y
)
6994 if (x
->expr_type
!= EXPR_CONSTANT
|| y
->expr_type
!= EXPR_CONSTANT
)
6997 kind
= x
->ts
.kind
> y
->ts
.kind
? x
->ts
.kind
: y
->ts
.kind
;
7002 result
= gfc_get_constant_expr (BT_INTEGER
, kind
, &x
->where
);
7003 mpz_xor (result
->value
.integer
, x
->value
.integer
, y
->value
.integer
);
7004 return range_check (result
, "XOR");
7007 return gfc_get_logical_expr (kind
, &x
->where
,
7008 (x
->value
.logical
&& !y
->value
.logical
)
7009 || (!x
->value
.logical
&& y
->value
.logical
));
7017 /****************** Constant simplification *****************/
7019 /* Master function to convert one constant to another. While this is
7020 used as a simplification function, it requires the destination type
7021 and kind information which is supplied by a special case in
7025 gfc_convert_constant (gfc_expr
*e
, bt type
, int kind
)
7027 gfc_expr
*g
, *result
, *(*f
) (gfc_expr
*, int);
7042 f
= gfc_int2complex
;
7062 f
= gfc_real2complex
;
7073 f
= gfc_complex2int
;
7076 f
= gfc_complex2real
;
7079 f
= gfc_complex2complex
;
7105 f
= gfc_hollerith2int
;
7109 f
= gfc_hollerith2real
;
7113 f
= gfc_hollerith2complex
;
7117 f
= gfc_hollerith2character
;
7121 f
= gfc_hollerith2logical
;
7131 gfc_internal_error ("gfc_convert_constant(): Unexpected type");
7136 switch (e
->expr_type
)
7139 result
= f (e
, kind
);
7141 return &gfc_bad_expr
;
7145 if (!gfc_is_constant_expr (e
))
7148 result
= gfc_get_array_expr (type
, kind
, &e
->where
);
7149 result
->shape
= gfc_copy_shape (e
->shape
, e
->rank
);
7150 result
->rank
= e
->rank
;
7152 for (c
= gfc_constructor_first (e
->value
.constructor
);
7153 c
; c
= gfc_constructor_next (c
))
7156 if (c
->iterator
== NULL
)
7157 tmp
= f (c
->expr
, kind
);
7160 g
= gfc_convert_constant (c
->expr
, type
, kind
);
7161 if (g
== &gfc_bad_expr
)
7163 gfc_free_expr (result
);
7171 gfc_free_expr (result
);
7175 gfc_constructor_append_expr (&result
->value
.constructor
,
7189 /* Function for converting character constants. */
7191 gfc_convert_char_constant (gfc_expr
*e
, bt type ATTRIBUTE_UNUSED
, int kind
)
7196 if (!gfc_is_constant_expr (e
))
7199 if (e
->expr_type
== EXPR_CONSTANT
)
7201 /* Simple case of a scalar. */
7202 result
= gfc_get_constant_expr (BT_CHARACTER
, kind
, &e
->where
);
7204 return &gfc_bad_expr
;
7206 result
->value
.character
.length
= e
->value
.character
.length
;
7207 result
->value
.character
.string
7208 = gfc_get_wide_string (e
->value
.character
.length
+ 1);
7209 memcpy (result
->value
.character
.string
, e
->value
.character
.string
,
7210 (e
->value
.character
.length
+ 1) * sizeof (gfc_char_t
));
7212 /* Check we only have values representable in the destination kind. */
7213 for (i
= 0; i
< result
->value
.character
.length
; i
++)
7214 if (!gfc_check_character_range (result
->value
.character
.string
[i
],
7217 gfc_error ("Character %qs in string at %L cannot be converted "
7218 "into character kind %d",
7219 gfc_print_wide_char (result
->value
.character
.string
[i
]),
7221 gfc_free_expr (result
);
7222 return &gfc_bad_expr
;
7227 else if (e
->expr_type
== EXPR_ARRAY
)
7229 /* For an array constructor, we convert each constructor element. */
7232 result
= gfc_get_array_expr (type
, kind
, &e
->where
);
7233 result
->shape
= gfc_copy_shape (e
->shape
, e
->rank
);
7234 result
->rank
= e
->rank
;
7235 result
->ts
.u
.cl
= e
->ts
.u
.cl
;
7237 for (c
= gfc_constructor_first (e
->value
.constructor
);
7238 c
; c
= gfc_constructor_next (c
))
7240 gfc_expr
*tmp
= gfc_convert_char_constant (c
->expr
, type
, kind
);
7241 if (tmp
== &gfc_bad_expr
)
7243 gfc_free_expr (result
);
7244 return &gfc_bad_expr
;
7249 gfc_free_expr (result
);
7253 gfc_constructor_append_expr (&result
->value
.constructor
,
7265 gfc_simplify_compiler_options (void)
7270 str
= gfc_get_option_string ();
7271 result
= gfc_get_character_expr (gfc_default_character_kind
,
7272 &gfc_current_locus
, str
, strlen (str
));
7279 gfc_simplify_compiler_version (void)
7284 len
= strlen ("GCC version ") + strlen (version_string
);
7285 buffer
= XALLOCAVEC (char, len
+ 1);
7286 snprintf (buffer
, len
+ 1, "GCC version %s", version_string
);
7287 return gfc_get_character_expr (gfc_default_character_kind
,
7288 &gfc_current_locus
, buffer
, len
);
7291 /* Simplification routines for intrinsics of IEEE modules. */
7294 simplify_ieee_selected_real_kind (gfc_expr
*expr
)
7296 gfc_actual_arglist
*arg
;
7297 gfc_expr
*p
= NULL
, *q
= NULL
, *rdx
= NULL
;
7299 arg
= expr
->value
.function
.actual
;
7303 q
= arg
->next
->expr
;
7304 if (arg
->next
->next
)
7305 rdx
= arg
->next
->next
->expr
;
7308 /* Currently, if IEEE is supported and this module is built, it means
7309 all our floating-point types conform to IEEE. Hence, we simply handle
7310 IEEE_SELECTED_REAL_KIND like SELECTED_REAL_KIND. */
7311 return gfc_simplify_selected_real_kind (p
, q
, rdx
);
7315 simplify_ieee_support (gfc_expr
*expr
)
7317 /* We consider that if the IEEE modules are loaded, we have full support
7318 for flags, halting and rounding, which are the three functions
7319 (IEEE_SUPPORT_{FLAG,HALTING,ROUNDING}) allowed in constant
7320 expressions. One day, we will need libgfortran to detect support and
7321 communicate it back to us, allowing for partial support. */
7323 return gfc_get_logical_expr (gfc_default_logical_kind
, &expr
->where
,
7328 matches_ieee_function_name (gfc_symbol
*sym
, const char *name
)
7330 int n
= strlen(name
);
7332 if (!strncmp(sym
->name
, name
, n
))
7335 /* If a generic was used and renamed, we need more work to find out.
7336 Compare the specific name. */
7337 if (sym
->generic
&& !strncmp(sym
->generic
->sym
->name
, name
, n
))
7344 gfc_simplify_ieee_functions (gfc_expr
*expr
)
7346 gfc_symbol
* sym
= expr
->symtree
->n
.sym
;
7348 if (matches_ieee_function_name(sym
, "ieee_selected_real_kind"))
7349 return simplify_ieee_selected_real_kind (expr
);
7350 else if (matches_ieee_function_name(sym
, "ieee_support_flag")
7351 || matches_ieee_function_name(sym
, "ieee_support_halting")
7352 || matches_ieee_function_name(sym
, "ieee_support_rounding"))
7353 return simplify_ieee_support (expr
);