Branch data Line data Source code
1 : : /* Simplify intrinsic functions at compile-time.
2 : : Copyright (C) 2000-2024 Free Software Foundation, Inc.
3 : : Contributed by Andy Vaught & Katherine Holcomb
4 : :
5 : : This file is part of GCC.
6 : :
7 : : GCC is free software; you can redistribute it and/or modify it under
8 : : the terms of the GNU General Public License as published by the Free
9 : : Software Foundation; either version 3, or (at your option) any later
10 : : version.
11 : :
12 : : GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 : : WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 : : FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 : : for more details.
16 : :
17 : : You should have received a copy of the GNU General Public License
18 : : along with GCC; see the file COPYING3. If not see
19 : : <http://www.gnu.org/licenses/>. */
20 : :
21 : : #include "config.h"
22 : : #include "system.h"
23 : : #include "coretypes.h"
24 : : #include "tm.h" /* For BITS_PER_UNIT. */
25 : : #include "gfortran.h"
26 : : #include "arith.h"
27 : : #include "intrinsic.h"
28 : : #include "match.h"
29 : : #include "target-memory.h"
30 : : #include "constructor.h"
31 : : #include "version.h" /* For version_string. */
32 : :
33 : : /* Prototypes. */
34 : :
35 : : static int min_max_choose (gfc_expr *, gfc_expr *, int, bool back_val = false);
36 : :
37 : : gfc_expr gfc_bad_expr;
38 : :
39 : : static gfc_expr *simplify_size (gfc_expr *, gfc_expr *, int);
40 : :
41 : :
42 : : /* Note that 'simplification' is not just transforming expressions.
43 : : For functions that are not simplified at compile time, range
44 : : checking is done if possible.
45 : :
46 : : The return convention is that each simplification function returns:
47 : :
48 : : A new expression node corresponding to the simplified arguments.
49 : : The original arguments are destroyed by the caller, and must not
50 : : be a part of the new expression.
51 : :
52 : : NULL pointer indicating that no simplification was possible and
53 : : the original expression should remain intact.
54 : :
55 : : An expression pointer to gfc_bad_expr (a static placeholder)
56 : : indicating that some error has prevented simplification. The
57 : : error is generated within the function and should be propagated
58 : : upwards
59 : :
60 : : By the time a simplification function gets control, it has been
61 : : decided that the function call is really supposed to be the
62 : : intrinsic. No type checking is strictly necessary, since only
63 : : valid types will be passed on. On the other hand, a simplification
64 : : subroutine may have to look at the type of an argument as part of
65 : : its processing.
66 : :
67 : : Array arguments are only passed to these subroutines that implement
68 : : the simplification of transformational intrinsics.
69 : :
70 : : The functions in this file don't have much comment with them, but
71 : : everything is reasonably straight-forward. The Standard, chapter 13
72 : : is the best comment you'll find for this file anyway. */
73 : :
74 : : /* Range checks an expression node. If all goes well, returns the
75 : : node, otherwise returns &gfc_bad_expr and frees the node. */
76 : :
77 : : static gfc_expr *
78 : 337623 : range_check (gfc_expr *result, const char *name)
79 : : {
80 : 337623 : if (result == NULL)
81 : : return &gfc_bad_expr;
82 : :
83 : 337623 : if (result->expr_type != EXPR_CONSTANT)
84 : : return result;
85 : :
86 : 337603 : switch (gfc_range_check (result))
87 : : {
88 : : case ARITH_OK:
89 : : return result;
90 : :
91 : 5 : case ARITH_OVERFLOW:
92 : 5 : gfc_error ("Result of %s overflows its kind at %L", name,
93 : : &result->where);
94 : 5 : break;
95 : :
96 : 0 : case ARITH_UNDERFLOW:
97 : 0 : gfc_error ("Result of %s underflows its kind at %L", name,
98 : : &result->where);
99 : 0 : break;
100 : :
101 : 0 : case ARITH_NAN:
102 : 0 : gfc_error ("Result of %s is NaN at %L", name, &result->where);
103 : 0 : break;
104 : :
105 : 0 : default:
106 : 0 : gfc_error ("Result of %s gives range error for its kind at %L", name,
107 : : &result->where);
108 : 0 : break;
109 : : }
110 : :
111 : 5 : gfc_free_expr (result);
112 : 5 : return &gfc_bad_expr;
113 : : }
114 : :
115 : :
116 : : /* A helper function that gets an optional and possibly missing
117 : : kind parameter. Returns the kind, -1 if something went wrong. */
118 : :
119 : : static int
120 : 146636 : get_kind (bt type, gfc_expr *k, const char *name, int default_kind)
121 : : {
122 : 146636 : int kind;
123 : :
124 : 146636 : if (k == NULL)
125 : : return default_kind;
126 : :
127 : 30803 : if (k->expr_type != EXPR_CONSTANT)
128 : : {
129 : 0 : gfc_error ("KIND parameter of %s at %L must be an initialization "
130 : : "expression", name, &k->where);
131 : 0 : return -1;
132 : : }
133 : :
134 : 30803 : if (gfc_extract_int (k, &kind)
135 : 30803 : || gfc_validate_kind (type, kind, true) < 0)
136 : : {
137 : 0 : gfc_error ("Invalid KIND parameter of %s at %L", name, &k->where);
138 : 0 : return -1;
139 : : }
140 : :
141 : 30803 : return kind;
142 : : }
143 : :
144 : :
145 : : /* Converts an mpz_t signed variable into an unsigned one, assuming
146 : : two's complement representations and a binary width of bitsize.
147 : : The conversion is a no-op unless x is negative; otherwise, it can
148 : : be accomplished by masking out the high bits. */
149 : :
150 : : void
151 : 13371 : gfc_convert_mpz_to_unsigned (mpz_t x, int bitsize, bool sign)
152 : : {
153 : 13371 : mpz_t mask;
154 : :
155 : 13371 : if (mpz_sgn (x) < 0)
156 : : {
157 : : /* Confirm that no bits above the signed range are unset if we
158 : : are doing range checking. */
159 : 720 : if (sign && flag_range_check != 0)
160 : 720 : gcc_assert (mpz_scan0 (x, bitsize-1) == ULONG_MAX);
161 : :
162 : 720 : mpz_init_set_ui (mask, 1);
163 : 720 : mpz_mul_2exp (mask, mask, bitsize);
164 : 720 : mpz_sub_ui (mask, mask, 1);
165 : :
166 : 720 : mpz_and (x, x, mask);
167 : :
168 : 720 : mpz_clear (mask);
169 : : }
170 : : else
171 : : {
172 : : /* Confirm that no bits above the signed range are set if we
173 : : are doing range checking. */
174 : 12651 : if (sign && flag_range_check != 0)
175 : 2794 : gcc_assert (mpz_scan1 (x, bitsize-1) == ULONG_MAX);
176 : : }
177 : 13371 : }
178 : :
179 : :
180 : : /* Converts an mpz_t unsigned variable into a signed one, assuming
181 : : two's complement representations and a binary width of bitsize.
182 : : If the bitsize-1 bit is set, this is taken as a sign bit and
183 : : the number is converted to the corresponding negative number. */
184 : :
185 : : void
186 : 8952 : gfc_convert_mpz_to_signed (mpz_t x, int bitsize)
187 : : {
188 : 8952 : mpz_t mask;
189 : :
190 : : /* Confirm that no bits above the unsigned range are set if we are
191 : : doing range checking. */
192 : 8952 : if (flag_range_check != 0)
193 : 8810 : gcc_assert (mpz_scan1 (x, bitsize) == ULONG_MAX);
194 : :
195 : 8952 : if (mpz_tstbit (x, bitsize - 1) == 1)
196 : : {
197 : 1793 : mpz_init_set_ui (mask, 1);
198 : 1793 : mpz_mul_2exp (mask, mask, bitsize);
199 : 1793 : mpz_sub_ui (mask, mask, 1);
200 : :
201 : : /* We negate the number by hand, zeroing the high bits, that is
202 : : make it the corresponding positive number, and then have it
203 : : negated by GMP, giving the correct representation of the
204 : : negative number. */
205 : 1793 : mpz_com (x, x);
206 : 1793 : mpz_add_ui (x, x, 1);
207 : 1793 : mpz_and (x, x, mask);
208 : :
209 : 1793 : mpz_neg (x, x);
210 : :
211 : 1793 : mpz_clear (mask);
212 : : }
213 : 8952 : }
214 : :
215 : :
216 : : /* Test that the expression is a constant array, simplifying if
217 : : we are dealing with a parameter array. */
218 : :
219 : : static bool
220 : 116925 : is_constant_array_expr (gfc_expr *e)
221 : : {
222 : 116925 : gfc_constructor *c;
223 : 116925 : bool array_OK = true;
224 : 116925 : mpz_t size;
225 : :
226 : 116925 : if (e == NULL)
227 : : return true;
228 : :
229 : 105366 : if (e->expr_type == EXPR_VARIABLE && e->rank > 0
230 : 37338 : && e->symtree->n.sym->attr.flavor == FL_PARAMETER)
231 : 3309 : gfc_simplify_expr (e, 1);
232 : :
233 : 105366 : if (e->expr_type != EXPR_ARRAY || !gfc_is_constant_expr (e))
234 : 78967 : return false;
235 : :
236 : : /* A non-zero-sized constant array shall have a non-empty constructor. */
237 : 26399 : if (e->rank > 0 && e->shape != NULL && e->value.constructor == NULL)
238 : : {
239 : 1219 : mpz_init_set_ui (size, 1);
240 : 2648 : for (int j = 0; j < e->rank; j++)
241 : 1429 : mpz_mul (size, size, e->shape[j]);
242 : 1219 : bool not_size0 = (mpz_cmp_si (size, 0) != 0);
243 : 1219 : mpz_clear (size);
244 : 1219 : if (not_size0)
245 : : return false;
246 : : }
247 : :
248 : 26396 : for (c = gfc_constructor_first (e->value.constructor);
249 : 466407 : c; c = gfc_constructor_next (c))
250 : 440118 : if (c->expr->expr_type != EXPR_CONSTANT
251 : 949 : && c->expr->expr_type != EXPR_STRUCTURE)
252 : : {
253 : : array_OK = false;
254 : : break;
255 : : }
256 : :
257 : : /* Check and expand the constructor. We do this when either
258 : : gfc_init_expr_flag is set or for not too large array constructors. */
259 : 26396 : bool expand;
260 : 52792 : expand = (e->rank == 1
261 : 25472 : && e->shape
262 : 51861 : && (mpz_cmp_ui (e->shape[0], flag_max_array_constructor) < 0));
263 : :
264 : 26396 : if (!array_OK && (gfc_init_expr_flag || expand) && e->rank == 1)
265 : : {
266 : 101 : bool saved_init_expr_flag = gfc_init_expr_flag;
267 : 101 : array_OK = gfc_reduce_init_expr (e);
268 : : /* gfc_reduce_init_expr resets the flag. */
269 : 101 : gfc_init_expr_flag = saved_init_expr_flag;
270 : : }
271 : : else
272 : : return array_OK;
273 : :
274 : : /* Recheck to make sure that any EXPR_ARRAYs have gone. */
275 : 101 : for (c = gfc_constructor_first (e->value.constructor);
276 : 1446 : c; c = gfc_constructor_next (c))
277 : 1349 : if (c->expr->expr_type != EXPR_CONSTANT
278 : 4 : && c->expr->expr_type != EXPR_STRUCTURE)
279 : : return false;
280 : :
281 : : /* Make sure that the array has a valid shape. */
282 : 97 : if (e->shape == NULL && e->rank == 1)
283 : : {
284 : 0 : if (!gfc_array_size(e, &size))
285 : : return false;
286 : 0 : e->shape = gfc_get_shape (1);
287 : 0 : mpz_init_set (e->shape[0], size);
288 : 0 : mpz_clear (size);
289 : : }
290 : :
291 : : return array_OK;
292 : : }
293 : :
294 : : bool
295 : 10687 : gfc_is_constant_array_expr (gfc_expr *e)
296 : : {
297 : 10687 : return is_constant_array_expr (e);
298 : : }
299 : :
300 : :
301 : : /* Test for a size zero array. */
302 : : bool
303 : 157189 : gfc_is_size_zero_array (gfc_expr *array)
304 : : {
305 : :
306 : 157189 : if (array->rank == 0)
307 : : return false;
308 : :
309 : 153496 : if (array->expr_type == EXPR_VARIABLE && array->rank > 0
310 : 21617 : && array->symtree->n.sym->attr.flavor == FL_PARAMETER
311 : 10683 : && array->shape != NULL)
312 : : {
313 : 21922 : for (int i = 0; i < array->rank; i++)
314 : 12400 : if (mpz_cmp_si (array->shape[i], 0) <= 0)
315 : : return true;
316 : :
317 : : return false;
318 : : }
319 : :
320 : 143067 : if (array->expr_type == EXPR_ARRAY)
321 : 92053 : return array->value.constructor == NULL;
322 : :
323 : : return false;
324 : : }
325 : :
326 : :
327 : : /* Initialize a transformational result expression with a given value. */
328 : :
329 : : static void
330 : 3878 : init_result_expr (gfc_expr *e, int init, gfc_expr *array)
331 : : {
332 : 3878 : if (e && e->expr_type == EXPR_ARRAY)
333 : : {
334 : 225 : gfc_constructor *ctor = gfc_constructor_first (e->value.constructor);
335 : 1049 : while (ctor)
336 : : {
337 : 599 : init_result_expr (ctor->expr, init, array);
338 : 599 : ctor = gfc_constructor_next (ctor);
339 : : }
340 : : }
341 : 3653 : else if (e && e->expr_type == EXPR_CONSTANT)
342 : : {
343 : 3653 : int i = gfc_validate_kind (e->ts.type, e->ts.kind, false);
344 : 3653 : HOST_WIDE_INT length;
345 : 3653 : gfc_char_t *string;
346 : :
347 : 3653 : switch (e->ts.type)
348 : : {
349 : 2084 : case BT_LOGICAL:
350 : 2084 : e->value.logical = (init ? 1 : 0);
351 : 2084 : break;
352 : :
353 : 1011 : case BT_INTEGER:
354 : 1011 : if (init == INT_MIN)
355 : 144 : mpz_set (e->value.integer, gfc_integer_kinds[i].min_int);
356 : 867 : else if (init == INT_MAX)
357 : 158 : mpz_set (e->value.integer, gfc_integer_kinds[i].huge);
358 : : else
359 : 709 : mpz_set_si (e->value.integer, init);
360 : : break;
361 : :
362 : 186 : case BT_UNSIGNED:
363 : 186 : if (init == INT_MIN)
364 : 48 : mpz_set_ui (e->value.integer, 0);
365 : 138 : else if (init == INT_MAX)
366 : 48 : mpz_set (e->value.integer, gfc_unsigned_kinds[i].huge);
367 : : else
368 : 90 : mpz_set_ui (e->value.integer, init);
369 : : break;
370 : :
371 : 280 : case BT_REAL:
372 : 280 : if (init == INT_MIN)
373 : : {
374 : 26 : mpfr_set (e->value.real, gfc_real_kinds[i].huge, GFC_RND_MODE);
375 : 26 : mpfr_neg (e->value.real, e->value.real, GFC_RND_MODE);
376 : : }
377 : 254 : else if (init == INT_MAX)
378 : 27 : mpfr_set (e->value.real, gfc_real_kinds[i].huge, GFC_RND_MODE);
379 : : else
380 : 227 : mpfr_set_si (e->value.real, init, GFC_RND_MODE);
381 : : break;
382 : :
383 : 48 : case BT_COMPLEX:
384 : 48 : mpc_set_si (e->value.complex, init, GFC_MPC_RND_MODE);
385 : 48 : break;
386 : :
387 : 44 : case BT_CHARACTER:
388 : 44 : if (init == INT_MIN)
389 : : {
390 : 22 : gfc_expr *len = gfc_simplify_len (array, NULL);
391 : 22 : gfc_extract_hwi (len, &length);
392 : 22 : string = gfc_get_wide_string (length + 1);
393 : 22 : gfc_wide_memset (string, 0, length);
394 : : }
395 : 22 : else if (init == INT_MAX)
396 : : {
397 : 22 : gfc_expr *len = gfc_simplify_len (array, NULL);
398 : 22 : gfc_extract_hwi (len, &length);
399 : 22 : string = gfc_get_wide_string (length + 1);
400 : 22 : gfc_wide_memset (string, 255, length);
401 : : }
402 : : else
403 : : {
404 : 0 : length = 0;
405 : 0 : string = gfc_get_wide_string (1);
406 : : }
407 : :
408 : 44 : string[length] = '\0';
409 : 44 : e->value.character.length = length;
410 : 44 : e->value.character.string = string;
411 : 44 : break;
412 : :
413 : 0 : default:
414 : 0 : gcc_unreachable();
415 : : }
416 : 3653 : }
417 : : else
418 : 0 : gcc_unreachable();
419 : 3878 : }
420 : :
421 : :
422 : : /* Helper function for gfc_simplify_dot_product() and gfc_simplify_matmul;
423 : : if conj_a is true, the matrix_a is complex conjugated. */
424 : :
425 : : static gfc_expr *
426 : 458 : compute_dot_product (gfc_expr *matrix_a, int stride_a, int offset_a,
427 : : gfc_expr *matrix_b, int stride_b, int offset_b,
428 : : bool conj_a)
429 : : {
430 : 458 : gfc_expr *result, *a, *b, *c;
431 : :
432 : : /* Set result to an UNSIGNED of correct kind for unsigned,
433 : : INTEGER(1) 0 for other numeric types, and .false. for
434 : : LOGICAL. Mixed-mode math in the loop will promote result to the
435 : : correct type and kind. */
436 : 458 : if (matrix_a->ts.type == BT_LOGICAL)
437 : 0 : result = gfc_get_logical_expr (gfc_default_logical_kind, NULL, false);
438 : 458 : else if (matrix_a->ts.type == BT_UNSIGNED)
439 : : {
440 : 60 : int kind = MAX (matrix_a->ts.kind, matrix_b->ts.kind);
441 : 60 : result = gfc_get_unsigned_expr (kind, NULL, 0);
442 : : }
443 : : else
444 : 398 : result = gfc_get_int_expr (1, NULL, 0);
445 : :
446 : 458 : result->where = matrix_a->where;
447 : :
448 : 458 : a = gfc_constructor_lookup_expr (matrix_a->value.constructor, offset_a);
449 : 458 : b = gfc_constructor_lookup_expr (matrix_b->value.constructor, offset_b);
450 : 2050 : while (a && b)
451 : : {
452 : : /* Copying of expressions is required as operands are free'd
453 : : by the gfc_arith routines. */
454 : 1134 : switch (result->ts.type)
455 : : {
456 : 0 : case BT_LOGICAL:
457 : 0 : result = gfc_or (result,
458 : : gfc_and (gfc_copy_expr (a),
459 : : gfc_copy_expr (b)));
460 : 0 : break;
461 : :
462 : 1134 : case BT_INTEGER:
463 : 1134 : case BT_REAL:
464 : 1134 : case BT_COMPLEX:
465 : 1134 : case BT_UNSIGNED:
466 : 1134 : if (conj_a && a->ts.type == BT_COMPLEX)
467 : 2 : c = gfc_simplify_conjg (a);
468 : : else
469 : 1132 : c = gfc_copy_expr (a);
470 : 1134 : result = gfc_add (result, gfc_multiply (c, gfc_copy_expr (b)));
471 : 1134 : break;
472 : :
473 : 0 : default:
474 : 0 : gcc_unreachable();
475 : : }
476 : :
477 : 1134 : offset_a += stride_a;
478 : 1134 : a = gfc_constructor_lookup_expr (matrix_a->value.constructor, offset_a);
479 : :
480 : 1134 : offset_b += stride_b;
481 : 1134 : b = gfc_constructor_lookup_expr (matrix_b->value.constructor, offset_b);
482 : : }
483 : :
484 : 458 : return result;
485 : : }
486 : :
487 : :
488 : : /* Build a result expression for transformational intrinsics,
489 : : depending on DIM. */
490 : :
491 : : static gfc_expr *
492 : 3080 : transformational_result (gfc_expr *array, gfc_expr *dim, bt type,
493 : : int kind, locus* where)
494 : : {
495 : 3080 : gfc_expr *result;
496 : 3080 : int i, nelem;
497 : :
498 : 3080 : if (!dim || array->rank == 1)
499 : 2855 : return gfc_get_constant_expr (type, kind, where);
500 : :
501 : 225 : result = gfc_get_array_expr (type, kind, where);
502 : 225 : result->shape = gfc_copy_shape_excluding (array->shape, array->rank, dim);
503 : 225 : result->rank = array->rank - 1;
504 : :
505 : : /* gfc_array_size() would count the number of elements in the constructor,
506 : : we have not built those yet. */
507 : 225 : nelem = 1;
508 : 450 : for (i = 0; i < result->rank; ++i)
509 : 230 : nelem *= mpz_get_ui (result->shape[i]);
510 : :
511 : 824 : for (i = 0; i < nelem; ++i)
512 : : {
513 : 599 : gfc_constructor_append_expr (&result->value.constructor,
514 : : gfc_get_constant_expr (type, kind, where),
515 : : NULL);
516 : : }
517 : :
518 : : return result;
519 : : }
520 : :
521 : :
522 : : typedef gfc_expr* (*transformational_op)(gfc_expr*, gfc_expr*);
523 : :
524 : : /* Wrapper function, implements 'op1 += 1'. Only called if MASK
525 : : of COUNT intrinsic is .TRUE..
526 : :
527 : : Interface and implementation mimics arith functions as
528 : : gfc_add, gfc_multiply, etc. */
529 : :
530 : : static gfc_expr *
531 : 108 : gfc_count (gfc_expr *op1, gfc_expr *op2)
532 : : {
533 : 108 : gfc_expr *result;
534 : :
535 : 108 : gcc_assert (op1->ts.type == BT_INTEGER);
536 : 108 : gcc_assert (op2->ts.type == BT_LOGICAL);
537 : 108 : gcc_assert (op2->value.logical);
538 : :
539 : 108 : result = gfc_copy_expr (op1);
540 : 108 : mpz_add_ui (result->value.integer, result->value.integer, 1);
541 : :
542 : 108 : gfc_free_expr (op1);
543 : 108 : gfc_free_expr (op2);
544 : 108 : return result;
545 : : }
546 : :
547 : :
548 : : /* Transforms an ARRAY with operation OP, according to MASK, to a
549 : : scalar RESULT. E.g. called if
550 : :
551 : : REAL, PARAMETER :: array(n, m) = ...
552 : : REAL, PARAMETER :: s = SUM(array)
553 : :
554 : : where OP == gfc_add(). */
555 : :
556 : : static gfc_expr *
557 : 2439 : simplify_transformation_to_scalar (gfc_expr *result, gfc_expr *array, gfc_expr *mask,
558 : : transformational_op op)
559 : : {
560 : 2439 : gfc_expr *a, *m;
561 : 2439 : gfc_constructor *array_ctor, *mask_ctor;
562 : :
563 : : /* Shortcut for constant .FALSE. MASK. */
564 : 2439 : if (mask
565 : 98 : && mask->expr_type == EXPR_CONSTANT
566 : 24 : && !mask->value.logical)
567 : : return result;
568 : :
569 : 2415 : array_ctor = gfc_constructor_first (array->value.constructor);
570 : 2415 : mask_ctor = NULL;
571 : 2415 : if (mask && mask->expr_type == EXPR_ARRAY)
572 : 74 : mask_ctor = gfc_constructor_first (mask->value.constructor);
573 : :
574 : 70553 : while (array_ctor)
575 : : {
576 : 68138 : a = array_ctor->expr;
577 : 68138 : array_ctor = gfc_constructor_next (array_ctor);
578 : :
579 : : /* A constant MASK equals .TRUE. here and can be ignored. */
580 : 68138 : if (mask_ctor)
581 : : {
582 : 430 : m = mask_ctor->expr;
583 : 430 : mask_ctor = gfc_constructor_next (mask_ctor);
584 : 430 : if (!m->value.logical)
585 : 304 : continue;
586 : : }
587 : :
588 : 67834 : result = op (result, gfc_copy_expr (a));
589 : 67834 : if (!result)
590 : : return result;
591 : : }
592 : :
593 : : return result;
594 : : }
595 : :
596 : : /* Transforms an ARRAY with operation OP, according to MASK, to an
597 : : array RESULT. E.g. called if
598 : :
599 : : REAL, PARAMETER :: array(n, m) = ...
600 : : REAL, PARAMETER :: s(n) = PROD(array, DIM=1)
601 : :
602 : : where OP == gfc_multiply().
603 : : The result might be post processed using post_op. */
604 : :
605 : : static gfc_expr *
606 : 150 : simplify_transformation_to_array (gfc_expr *result, gfc_expr *array, gfc_expr *dim,
607 : : gfc_expr *mask, transformational_op op,
608 : : transformational_op post_op)
609 : : {
610 : 150 : mpz_t size;
611 : 150 : int done, i, n, arraysize, resultsize, dim_index, dim_extent, dim_stride;
612 : 150 : gfc_expr **arrayvec, **resultvec, **base, **src, **dest;
613 : 150 : gfc_constructor *array_ctor, *mask_ctor, *result_ctor;
614 : :
615 : 150 : int count[GFC_MAX_DIMENSIONS], extent[GFC_MAX_DIMENSIONS],
616 : : sstride[GFC_MAX_DIMENSIONS], dstride[GFC_MAX_DIMENSIONS],
617 : : tmpstride[GFC_MAX_DIMENSIONS];
618 : :
619 : : /* Shortcut for constant .FALSE. MASK. */
620 : 150 : if (mask
621 : 16 : && mask->expr_type == EXPR_CONSTANT
622 : 0 : && !mask->value.logical)
623 : : return result;
624 : :
625 : : /* Build an indexed table for array element expressions to minimize
626 : : linked-list traversal. Masked elements are set to NULL. */
627 : 150 : gfc_array_size (array, &size);
628 : 150 : arraysize = mpz_get_ui (size);
629 : 150 : mpz_clear (size);
630 : :
631 : 150 : arrayvec = XCNEWVEC (gfc_expr*, arraysize);
632 : :
633 : 150 : array_ctor = gfc_constructor_first (array->value.constructor);
634 : 150 : mask_ctor = NULL;
635 : 150 : if (mask && mask->expr_type == EXPR_ARRAY)
636 : 16 : mask_ctor = gfc_constructor_first (mask->value.constructor);
637 : :
638 : 1174 : for (i = 0; i < arraysize; ++i)
639 : : {
640 : 1024 : arrayvec[i] = array_ctor->expr;
641 : 1024 : array_ctor = gfc_constructor_next (array_ctor);
642 : :
643 : 1024 : if (mask_ctor)
644 : : {
645 : 156 : if (!mask_ctor->expr->value.logical)
646 : 83 : arrayvec[i] = NULL;
647 : :
648 : 156 : mask_ctor = gfc_constructor_next (mask_ctor);
649 : : }
650 : : }
651 : :
652 : : /* Same for the result expression. */
653 : 150 : gfc_array_size (result, &size);
654 : 150 : resultsize = mpz_get_ui (size);
655 : 150 : mpz_clear (size);
656 : :
657 : 150 : resultvec = XCNEWVEC (gfc_expr*, resultsize);
658 : 150 : result_ctor = gfc_constructor_first (result->value.constructor);
659 : 696 : for (i = 0; i < resultsize; ++i)
660 : : {
661 : 396 : resultvec[i] = result_ctor->expr;
662 : 396 : result_ctor = gfc_constructor_next (result_ctor);
663 : : }
664 : :
665 : 150 : gfc_extract_int (dim, &dim_index);
666 : 150 : dim_index -= 1; /* zero-base index */
667 : 150 : dim_extent = 0;
668 : 150 : dim_stride = 0;
669 : :
670 : 450 : for (i = 0, n = 0; i < array->rank; ++i)
671 : : {
672 : 300 : count[i] = 0;
673 : 300 : tmpstride[i] = (i == 0) ? 1 : tmpstride[i-1] * mpz_get_si (array->shape[i-1]);
674 : 300 : if (i == dim_index)
675 : : {
676 : 150 : dim_extent = mpz_get_si (array->shape[i]);
677 : 150 : dim_stride = tmpstride[i];
678 : 150 : continue;
679 : : }
680 : :
681 : 150 : extent[n] = mpz_get_si (array->shape[i]);
682 : 150 : sstride[n] = tmpstride[i];
683 : 150 : dstride[n] = (n == 0) ? 1 : dstride[n-1] * extent[n-1];
684 : 150 : n += 1;
685 : : }
686 : :
687 : 150 : done = resultsize <= 0;
688 : 150 : base = arrayvec;
689 : 150 : dest = resultvec;
690 : 696 : while (!done)
691 : : {
692 : 1420 : for (src = base, n = 0; n < dim_extent; src += dim_stride, ++n)
693 : 1024 : if (*src)
694 : 941 : *dest = op (*dest, gfc_copy_expr (*src));
695 : :
696 : 396 : if (post_op)
697 : 2 : *dest = post_op (*dest, *dest);
698 : :
699 : 396 : count[0]++;
700 : 396 : base += sstride[0];
701 : 396 : dest += dstride[0];
702 : :
703 : 396 : n = 0;
704 : 396 : while (!done && count[n] == extent[n])
705 : : {
706 : 150 : count[n] = 0;
707 : 150 : base -= sstride[n] * extent[n];
708 : 150 : dest -= dstride[n] * extent[n];
709 : :
710 : 150 : n++;
711 : 150 : if (n < result->rank)
712 : : {
713 : : /* If the nested loop is unrolled GFC_MAX_DIMENSIONS
714 : : times, we'd warn for the last iteration, because the
715 : : array index will have already been incremented to the
716 : : array sizes, and we can't tell that this must make
717 : : the test against result->rank false, because ranks
718 : : must not exceed GFC_MAX_DIMENSIONS. */
719 : 0 : GCC_DIAGNOSTIC_PUSH_IGNORED (-Warray-bounds)
720 : 0 : count[n]++;
721 : 0 : base += sstride[n];
722 : 0 : dest += dstride[n];
723 : 0 : GCC_DIAGNOSTIC_POP
724 : : }
725 : : else
726 : : done = true;
727 : : }
728 : : }
729 : :
730 : : /* Place updated expression in result constructor. */
731 : 150 : result_ctor = gfc_constructor_first (result->value.constructor);
732 : 696 : for (i = 0; i < resultsize; ++i)
733 : : {
734 : 396 : result_ctor->expr = resultvec[i];
735 : 396 : result_ctor = gfc_constructor_next (result_ctor);
736 : : }
737 : :
738 : 150 : free (arrayvec);
739 : 150 : free (resultvec);
740 : 150 : return result;
741 : : }
742 : :
743 : :
744 : : static gfc_expr *
745 : 53577 : simplify_transformation (gfc_expr *array, gfc_expr *dim, gfc_expr *mask,
746 : : int init_val, transformational_op op)
747 : : {
748 : 53577 : gfc_expr *result;
749 : 53577 : bool size_zero;
750 : :
751 : 53577 : size_zero = gfc_is_size_zero_array (array);
752 : :
753 : 104225 : if (!(is_constant_array_expr (array) || size_zero)
754 : 2929 : || array->shape == NULL
755 : 56503 : || !gfc_is_constant_expr (dim))
756 : 50651 : return NULL;
757 : :
758 : 2926 : if (mask
759 : 242 : && !is_constant_array_expr (mask)
760 : 3108 : && mask->expr_type != EXPR_CONSTANT)
761 : : return NULL;
762 : :
763 : 2768 : result = transformational_result (array, dim, array->ts.type,
764 : : array->ts.kind, &array->where);
765 : 2768 : init_result_expr (result, init_val, array);
766 : :
767 : 2768 : if (size_zero)
768 : : return result;
769 : :
770 : 2521 : return !dim || array->rank == 1 ?
771 : 2378 : simplify_transformation_to_scalar (result, array, mask, op) :
772 : 143 : simplify_transformation_to_array (result, array, dim, mask, op, NULL);
773 : : }
774 : :
775 : :
776 : : /********************** Simplification functions *****************************/
777 : :
778 : : gfc_expr *
779 : 24728 : gfc_simplify_abs (gfc_expr *e)
780 : : {
781 : 24728 : gfc_expr *result;
782 : :
783 : 24728 : if (e->expr_type != EXPR_CONSTANT)
784 : : return NULL;
785 : :
786 : 980 : switch (e->ts.type)
787 : : {
788 : 36 : case BT_INTEGER:
789 : 36 : result = gfc_get_constant_expr (BT_INTEGER, e->ts.kind, &e->where);
790 : 36 : mpz_abs (result->value.integer, e->value.integer);
791 : 36 : return range_check (result, "IABS");
792 : :
793 : 782 : case BT_REAL:
794 : 782 : result = gfc_get_constant_expr (BT_REAL, e->ts.kind, &e->where);
795 : 782 : mpfr_abs (result->value.real, e->value.real, GFC_RND_MODE);
796 : 782 : return range_check (result, "ABS");
797 : :
798 : 162 : case BT_COMPLEX:
799 : 162 : gfc_set_model_kind (e->ts.kind);
800 : 162 : result = gfc_get_constant_expr (BT_REAL, e->ts.kind, &e->where);
801 : 162 : mpc_abs (result->value.real, e->value.complex, GFC_RND_MODE);
802 : 162 : return range_check (result, "CABS");
803 : :
804 : 0 : default:
805 : 0 : gfc_internal_error ("gfc_simplify_abs(): Bad type");
806 : : }
807 : : }
808 : :
809 : :
810 : : static gfc_expr *
811 : 21700 : simplify_achar_char (gfc_expr *e, gfc_expr *k, const char *name, bool ascii)
812 : : {
813 : 21700 : gfc_expr *result;
814 : 21700 : int kind;
815 : 21700 : bool too_large = false;
816 : :
817 : 21700 : if (e->expr_type != EXPR_CONSTANT)
818 : : return NULL;
819 : :
820 : 14354 : kind = get_kind (BT_CHARACTER, k, name, gfc_default_character_kind);
821 : 14354 : if (kind == -1)
822 : : return &gfc_bad_expr;
823 : :
824 : 14354 : if (mpz_cmp_si (e->value.integer, 0) < 0)
825 : : {
826 : 8 : gfc_error ("Argument of %s function at %L is negative", name,
827 : : &e->where);
828 : 8 : return &gfc_bad_expr;
829 : : }
830 : :
831 : 14346 : if (ascii && warn_surprising && mpz_cmp_si (e->value.integer, 127) > 0)
832 : 1 : gfc_warning (OPT_Wsurprising,
833 : : "Argument of %s function at %L outside of range [0,127]",
834 : : name, &e->where);
835 : :
836 : 14346 : if (kind == 1 && mpz_cmp_si (e->value.integer, 255) > 0)
837 : : too_large = true;
838 : 14337 : else if (kind == 4)
839 : : {
840 : 1408 : mpz_t t;
841 : 1408 : mpz_init_set_ui (t, 2);
842 : 1408 : mpz_pow_ui (t, t, 32);
843 : 1408 : mpz_sub_ui (t, t, 1);
844 : 1408 : if (mpz_cmp (e->value.integer, t) > 0)
845 : 2 : too_large = true;
846 : 1408 : mpz_clear (t);
847 : : }
848 : :
849 : 1408 : if (too_large)
850 : : {
851 : 11 : gfc_error ("Argument of %s function at %L is too large for the "
852 : : "collating sequence of kind %d", name, &e->where, kind);
853 : 11 : return &gfc_bad_expr;
854 : : }
855 : :
856 : 14335 : result = gfc_get_character_expr (kind, &e->where, NULL, 1);
857 : 14335 : result->value.character.string[0] = mpz_get_ui (e->value.integer);
858 : :
859 : 14335 : return result;
860 : : }
861 : :
862 : :
863 : :
864 : : /* We use the processor's collating sequence, because all
865 : : systems that gfortran currently works on are ASCII. */
866 : :
867 : : gfc_expr *
868 : 13058 : gfc_simplify_achar (gfc_expr *e, gfc_expr *k)
869 : : {
870 : 13058 : return simplify_achar_char (e, k, "ACHAR", true);
871 : : }
872 : :
873 : :
874 : : gfc_expr *
875 : 546 : gfc_simplify_acos (gfc_expr *x)
876 : : {
877 : 546 : gfc_expr *result;
878 : :
879 : 546 : if (x->expr_type != EXPR_CONSTANT)
880 : : return NULL;
881 : :
882 : 82 : switch (x->ts.type)
883 : : {
884 : 78 : case BT_REAL:
885 : 78 : if (mpfr_cmp_si (x->value.real, 1) > 0
886 : 78 : || mpfr_cmp_si (x->value.real, -1) < 0)
887 : : {
888 : 0 : gfc_error ("Argument of ACOS at %L must be between -1 and 1",
889 : : &x->where);
890 : 0 : return &gfc_bad_expr;
891 : : }
892 : 78 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
893 : 78 : mpfr_acos (result->value.real, x->value.real, GFC_RND_MODE);
894 : 78 : break;
895 : :
896 : 4 : case BT_COMPLEX:
897 : 4 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
898 : 4 : mpc_acos (result->value.complex, x->value.complex, GFC_MPC_RND_MODE);
899 : 4 : break;
900 : :
901 : 0 : default:
902 : 0 : gfc_internal_error ("in gfc_simplify_acos(): Bad type");
903 : : }
904 : :
905 : 82 : return range_check (result, "ACOS");
906 : : }
907 : :
908 : : gfc_expr *
909 : 266 : gfc_simplify_acosh (gfc_expr *x)
910 : : {
911 : 266 : gfc_expr *result;
912 : :
913 : 266 : if (x->expr_type != EXPR_CONSTANT)
914 : : return NULL;
915 : :
916 : 34 : switch (x->ts.type)
917 : : {
918 : 30 : case BT_REAL:
919 : 30 : if (mpfr_cmp_si (x->value.real, 1) < 0)
920 : : {
921 : 0 : gfc_error ("Argument of ACOSH at %L must not be less than 1",
922 : : &x->where);
923 : 0 : return &gfc_bad_expr;
924 : : }
925 : :
926 : 30 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
927 : 30 : mpfr_acosh (result->value.real, x->value.real, GFC_RND_MODE);
928 : 30 : break;
929 : :
930 : 4 : case BT_COMPLEX:
931 : 4 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
932 : 4 : mpc_acosh (result->value.complex, x->value.complex, GFC_MPC_RND_MODE);
933 : 4 : break;
934 : :
935 : 0 : default:
936 : 0 : gfc_internal_error ("in gfc_simplify_acosh(): Bad type");
937 : : }
938 : :
939 : 34 : return range_check (result, "ACOSH");
940 : : }
941 : :
942 : : gfc_expr *
943 : 1164 : gfc_simplify_adjustl (gfc_expr *e)
944 : : {
945 : 1164 : gfc_expr *result;
946 : 1164 : int count, i, len;
947 : 1164 : gfc_char_t ch;
948 : :
949 : 1164 : if (e->expr_type != EXPR_CONSTANT)
950 : : return NULL;
951 : :
952 : 31 : len = e->value.character.length;
953 : :
954 : 89 : for (count = 0, i = 0; i < len; ++i)
955 : : {
956 : 89 : ch = e->value.character.string[i];
957 : 89 : if (ch != ' ')
958 : : break;
959 : 58 : ++count;
960 : : }
961 : :
962 : 31 : result = gfc_get_character_expr (e->ts.kind, &e->where, NULL, len);
963 : 476 : for (i = 0; i < len - count; ++i)
964 : 414 : result->value.character.string[i] = e->value.character.string[count + i];
965 : :
966 : : return result;
967 : : }
968 : :
969 : :
970 : : gfc_expr *
971 : 347 : gfc_simplify_adjustr (gfc_expr *e)
972 : : {
973 : 347 : gfc_expr *result;
974 : 347 : int count, i, len;
975 : 347 : gfc_char_t ch;
976 : :
977 : 347 : if (e->expr_type != EXPR_CONSTANT)
978 : : return NULL;
979 : :
980 : 23 : len = e->value.character.length;
981 : :
982 : 173 : for (count = 0, i = len - 1; i >= 0; --i)
983 : : {
984 : 173 : ch = e->value.character.string[i];
985 : 173 : if (ch != ' ')
986 : : break;
987 : 150 : ++count;
988 : : }
989 : :
990 : 23 : result = gfc_get_character_expr (e->ts.kind, &e->where, NULL, len);
991 : 196 : for (i = 0; i < count; ++i)
992 : 150 : result->value.character.string[i] = ' ';
993 : :
994 : 260 : for (i = count; i < len; ++i)
995 : 237 : result->value.character.string[i] = e->value.character.string[i - count];
996 : :
997 : : return result;
998 : : }
999 : :
1000 : :
1001 : : gfc_expr *
1002 : 1732 : gfc_simplify_aimag (gfc_expr *e)
1003 : : {
1004 : 1732 : gfc_expr *result;
1005 : :
1006 : 1732 : if (e->expr_type != EXPR_CONSTANT)
1007 : : return NULL;
1008 : :
1009 : 144 : result = gfc_get_constant_expr (BT_REAL, e->ts.kind, &e->where);
1010 : 144 : mpfr_set (result->value.real, mpc_imagref (e->value.complex), GFC_RND_MODE);
1011 : :
1012 : 144 : return range_check (result, "AIMAG");
1013 : : }
1014 : :
1015 : :
1016 : : gfc_expr *
1017 : 594 : gfc_simplify_aint (gfc_expr *e, gfc_expr *k)
1018 : : {
1019 : 594 : gfc_expr *rtrunc, *result;
1020 : 594 : int kind;
1021 : :
1022 : 594 : kind = get_kind (BT_REAL, k, "AINT", e->ts.kind);
1023 : 594 : if (kind == -1)
1024 : : return &gfc_bad_expr;
1025 : :
1026 : 594 : if (e->expr_type != EXPR_CONSTANT)
1027 : : return NULL;
1028 : :
1029 : 31 : rtrunc = gfc_copy_expr (e);
1030 : 31 : mpfr_trunc (rtrunc->value.real, e->value.real);
1031 : :
1032 : 31 : result = gfc_real2real (rtrunc, kind);
1033 : :
1034 : 31 : gfc_free_expr (rtrunc);
1035 : :
1036 : 31 : return range_check (result, "AINT");
1037 : : }
1038 : :
1039 : :
1040 : : gfc_expr *
1041 : 1325 : gfc_simplify_all (gfc_expr *mask, gfc_expr *dim)
1042 : : {
1043 : 1325 : return simplify_transformation (mask, dim, NULL, true, gfc_and);
1044 : : }
1045 : :
1046 : :
1047 : : gfc_expr *
1048 : 63 : gfc_simplify_dint (gfc_expr *e)
1049 : : {
1050 : 63 : gfc_expr *rtrunc, *result;
1051 : :
1052 : 63 : if (e->expr_type != EXPR_CONSTANT)
1053 : : return NULL;
1054 : :
1055 : 16 : rtrunc = gfc_copy_expr (e);
1056 : 16 : mpfr_trunc (rtrunc->value.real, e->value.real);
1057 : :
1058 : 16 : result = gfc_real2real (rtrunc, gfc_default_double_kind);
1059 : :
1060 : 16 : gfc_free_expr (rtrunc);
1061 : :
1062 : 16 : return range_check (result, "DINT");
1063 : : }
1064 : :
1065 : :
1066 : : gfc_expr *
1067 : 3 : gfc_simplify_dreal (gfc_expr *e)
1068 : : {
1069 : 3 : gfc_expr *result = NULL;
1070 : :
1071 : 3 : if (e->expr_type != EXPR_CONSTANT)
1072 : : return NULL;
1073 : :
1074 : 1 : result = gfc_get_constant_expr (BT_REAL, e->ts.kind, &e->where);
1075 : 1 : mpc_real (result->value.real, e->value.complex, GFC_RND_MODE);
1076 : :
1077 : 1 : return range_check (result, "DREAL");
1078 : : }
1079 : :
1080 : :
1081 : : gfc_expr *
1082 : 162 : gfc_simplify_anint (gfc_expr *e, gfc_expr *k)
1083 : : {
1084 : 162 : gfc_expr *result;
1085 : 162 : int kind;
1086 : :
1087 : 162 : kind = get_kind (BT_REAL, k, "ANINT", e->ts.kind);
1088 : 162 : if (kind == -1)
1089 : : return &gfc_bad_expr;
1090 : :
1091 : 162 : if (e->expr_type != EXPR_CONSTANT)
1092 : : return NULL;
1093 : :
1094 : 55 : result = gfc_get_constant_expr (e->ts.type, kind, &e->where);
1095 : 55 : mpfr_round (result->value.real, e->value.real);
1096 : :
1097 : 55 : return range_check (result, "ANINT");
1098 : : }
1099 : :
1100 : :
1101 : : gfc_expr *
1102 : 334 : gfc_simplify_and (gfc_expr *x, gfc_expr *y)
1103 : : {
1104 : 334 : gfc_expr *result;
1105 : 334 : int kind;
1106 : :
1107 : 334 : if (x->expr_type != EXPR_CONSTANT || y->expr_type != EXPR_CONSTANT)
1108 : : return NULL;
1109 : :
1110 : 7 : kind = x->ts.kind > y->ts.kind ? x->ts.kind : y->ts.kind;
1111 : :
1112 : 7 : switch (x->ts.type)
1113 : : {
1114 : 1 : case BT_INTEGER:
1115 : 1 : result = gfc_get_constant_expr (BT_INTEGER, kind, &x->where);
1116 : 1 : mpz_and (result->value.integer, x->value.integer, y->value.integer);
1117 : 1 : return range_check (result, "AND");
1118 : :
1119 : 6 : case BT_LOGICAL:
1120 : 6 : return gfc_get_logical_expr (kind, &x->where,
1121 : 12 : x->value.logical && y->value.logical);
1122 : :
1123 : 0 : default:
1124 : 0 : gcc_unreachable ();
1125 : : }
1126 : : }
1127 : :
1128 : :
1129 : : gfc_expr *
1130 : 39159 : gfc_simplify_any (gfc_expr *mask, gfc_expr *dim)
1131 : : {
1132 : 39159 : return simplify_transformation (mask, dim, NULL, false, gfc_or);
1133 : : }
1134 : :
1135 : :
1136 : : gfc_expr *
1137 : 105 : gfc_simplify_dnint (gfc_expr *e)
1138 : : {
1139 : 105 : gfc_expr *result;
1140 : :
1141 : 105 : if (e->expr_type != EXPR_CONSTANT)
1142 : : return NULL;
1143 : :
1144 : 46 : result = gfc_get_constant_expr (BT_REAL, gfc_default_double_kind, &e->where);
1145 : 46 : mpfr_round (result->value.real, e->value.real);
1146 : :
1147 : 46 : return range_check (result, "DNINT");
1148 : : }
1149 : :
1150 : :
1151 : : gfc_expr *
1152 : 556 : gfc_simplify_asin (gfc_expr *x)
1153 : : {
1154 : 556 : gfc_expr *result;
1155 : :
1156 : 556 : if (x->expr_type != EXPR_CONSTANT)
1157 : : return NULL;
1158 : :
1159 : 59 : switch (x->ts.type)
1160 : : {
1161 : 55 : case BT_REAL:
1162 : 55 : if (mpfr_cmp_si (x->value.real, 1) > 0
1163 : 55 : || mpfr_cmp_si (x->value.real, -1) < 0)
1164 : : {
1165 : 0 : gfc_error ("Argument of ASIN at %L must be between -1 and 1",
1166 : : &x->where);
1167 : 0 : return &gfc_bad_expr;
1168 : : }
1169 : 55 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
1170 : 55 : mpfr_asin (result->value.real, x->value.real, GFC_RND_MODE);
1171 : 55 : break;
1172 : :
1173 : 4 : case BT_COMPLEX:
1174 : 4 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
1175 : 4 : mpc_asin (result->value.complex, x->value.complex, GFC_MPC_RND_MODE);
1176 : 4 : break;
1177 : :
1178 : 0 : default:
1179 : 0 : gfc_internal_error ("in gfc_simplify_asin(): Bad type");
1180 : : }
1181 : :
1182 : 59 : return range_check (result, "ASIN");
1183 : : }
1184 : :
1185 : :
1186 : : /* Convert radians to degrees, i.e., x * 180 / pi. */
1187 : :
1188 : : static void
1189 : 96 : rad2deg (mpfr_t x)
1190 : : {
1191 : 96 : mpfr_t tmp;
1192 : :
1193 : 96 : mpfr_init (tmp);
1194 : 96 : mpfr_const_pi (tmp, GFC_RND_MODE);
1195 : 96 : mpfr_mul_ui (x, x, 180, GFC_RND_MODE);
1196 : 96 : mpfr_div (x, x, tmp, GFC_RND_MODE);
1197 : 96 : mpfr_clear (tmp);
1198 : 96 : }
1199 : :
1200 : :
1201 : : /* Simplify ACOSD(X) where the returned value has units of degree. */
1202 : :
1203 : : gfc_expr *
1204 : 168 : gfc_simplify_acosd (gfc_expr *x)
1205 : : {
1206 : 168 : gfc_expr *result;
1207 : :
1208 : 168 : if (x->expr_type != EXPR_CONSTANT)
1209 : : return NULL;
1210 : :
1211 : 24 : if (mpfr_cmp_si (x->value.real, 1) > 0
1212 : 24 : || mpfr_cmp_si (x->value.real, -1) < 0)
1213 : : {
1214 : 0 : gfc_error ("Argument of ACOSD at %L must be between -1 and 1",
1215 : : &x->where);
1216 : 0 : return &gfc_bad_expr;
1217 : : }
1218 : :
1219 : 24 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
1220 : 24 : mpfr_acos (result->value.real, x->value.real, GFC_RND_MODE);
1221 : 24 : rad2deg (result->value.real);
1222 : :
1223 : 24 : return range_check (result, "ACOSD");
1224 : : }
1225 : :
1226 : :
1227 : : /* Simplify asind (x) where the returned value has units of degree. */
1228 : :
1229 : : gfc_expr *
1230 : 169 : gfc_simplify_asind (gfc_expr *x)
1231 : : {
1232 : 169 : gfc_expr *result;
1233 : :
1234 : 169 : if (x->expr_type != EXPR_CONSTANT)
1235 : : return NULL;
1236 : :
1237 : 25 : if (mpfr_cmp_si (x->value.real, 1) > 0
1238 : 25 : || mpfr_cmp_si (x->value.real, -1) < 0)
1239 : : {
1240 : 1 : gfc_error ("Argument of ASIND at %L must be between -1 and 1",
1241 : : &x->where);
1242 : 1 : return &gfc_bad_expr;
1243 : : }
1244 : :
1245 : 24 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
1246 : 24 : mpfr_asin (result->value.real, x->value.real, GFC_RND_MODE);
1247 : 24 : rad2deg (result->value.real);
1248 : :
1249 : 24 : return range_check (result, "ASIND");
1250 : : }
1251 : :
1252 : :
1253 : : /* Simplify atand (x) where the returned value has units of degree. */
1254 : :
1255 : : gfc_expr *
1256 : 168 : gfc_simplify_atand (gfc_expr *x)
1257 : : {
1258 : 168 : gfc_expr *result;
1259 : :
1260 : 168 : if (x->expr_type != EXPR_CONSTANT)
1261 : : return NULL;
1262 : :
1263 : 24 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
1264 : 24 : mpfr_atan (result->value.real, x->value.real, GFC_RND_MODE);
1265 : 24 : rad2deg (result->value.real);
1266 : :
1267 : 24 : return range_check (result, "ATAND");
1268 : : }
1269 : :
1270 : :
1271 : : gfc_expr *
1272 : 269 : gfc_simplify_asinh (gfc_expr *x)
1273 : : {
1274 : 269 : gfc_expr *result;
1275 : :
1276 : 269 : if (x->expr_type != EXPR_CONSTANT)
1277 : : return NULL;
1278 : :
1279 : 37 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
1280 : :
1281 : 37 : switch (x->ts.type)
1282 : : {
1283 : 33 : case BT_REAL:
1284 : 33 : mpfr_asinh (result->value.real, x->value.real, GFC_RND_MODE);
1285 : 33 : break;
1286 : :
1287 : 4 : case BT_COMPLEX:
1288 : 4 : mpc_asinh (result->value.complex, x->value.complex, GFC_MPC_RND_MODE);
1289 : 4 : break;
1290 : :
1291 : 0 : default:
1292 : 0 : gfc_internal_error ("in gfc_simplify_asinh(): Bad type");
1293 : : }
1294 : :
1295 : 37 : return range_check (result, "ASINH");
1296 : : }
1297 : :
1298 : :
1299 : : gfc_expr *
1300 : 621 : gfc_simplify_atan (gfc_expr *x)
1301 : : {
1302 : 621 : gfc_expr *result;
1303 : :
1304 : 621 : if (x->expr_type != EXPR_CONSTANT)
1305 : : return NULL;
1306 : :
1307 : 109 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
1308 : :
1309 : 109 : switch (x->ts.type)
1310 : : {
1311 : 105 : case BT_REAL:
1312 : 105 : mpfr_atan (result->value.real, x->value.real, GFC_RND_MODE);
1313 : 105 : break;
1314 : :
1315 : 4 : case BT_COMPLEX:
1316 : 4 : mpc_atan (result->value.complex, x->value.complex, GFC_MPC_RND_MODE);
1317 : 4 : break;
1318 : :
1319 : 0 : default:
1320 : 0 : gfc_internal_error ("in gfc_simplify_atan(): Bad type");
1321 : : }
1322 : :
1323 : 109 : return range_check (result, "ATAN");
1324 : : }
1325 : :
1326 : :
1327 : : gfc_expr *
1328 : 266 : gfc_simplify_atanh (gfc_expr *x)
1329 : : {
1330 : 266 : gfc_expr *result;
1331 : :
1332 : 266 : if (x->expr_type != EXPR_CONSTANT)
1333 : : return NULL;
1334 : :
1335 : 34 : switch (x->ts.type)
1336 : : {
1337 : 30 : case BT_REAL:
1338 : 30 : if (mpfr_cmp_si (x->value.real, 1) >= 0
1339 : 30 : || mpfr_cmp_si (x->value.real, -1) <= 0)
1340 : : {
1341 : 0 : gfc_error ("Argument of ATANH at %L must be inside the range -1 "
1342 : : "to 1", &x->where);
1343 : 0 : return &gfc_bad_expr;
1344 : : }
1345 : 30 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
1346 : 30 : mpfr_atanh (result->value.real, x->value.real, GFC_RND_MODE);
1347 : 30 : break;
1348 : :
1349 : 4 : case BT_COMPLEX:
1350 : 4 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
1351 : 4 : mpc_atanh (result->value.complex, x->value.complex, GFC_MPC_RND_MODE);
1352 : 4 : break;
1353 : :
1354 : 0 : default:
1355 : 0 : gfc_internal_error ("in gfc_simplify_atanh(): Bad type");
1356 : : }
1357 : :
1358 : 34 : return range_check (result, "ATANH");
1359 : : }
1360 : :
1361 : :
1362 : : gfc_expr *
1363 : 743 : gfc_simplify_atan2 (gfc_expr *y, gfc_expr *x)
1364 : : {
1365 : 743 : gfc_expr *result;
1366 : :
1367 : 743 : if (x->expr_type != EXPR_CONSTANT || y->expr_type != EXPR_CONSTANT)
1368 : : return NULL;
1369 : :
1370 : 324 : if (mpfr_zero_p (y->value.real) && mpfr_zero_p (x->value.real))
1371 : : {
1372 : 0 : gfc_error ("If first argument of ATAN2 at %L is zero, then the "
1373 : : "second argument must not be zero", &y->where);
1374 : 0 : return &gfc_bad_expr;
1375 : : }
1376 : :
1377 : 324 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
1378 : 324 : mpfr_atan2 (result->value.real, y->value.real, x->value.real, GFC_RND_MODE);
1379 : :
1380 : 324 : return range_check (result, "ATAN2");
1381 : : }
1382 : :
1383 : :
1384 : : gfc_expr *
1385 : 82 : gfc_simplify_bessel_j0 (gfc_expr *x)
1386 : : {
1387 : 82 : gfc_expr *result;
1388 : :
1389 : 82 : if (x->expr_type != EXPR_CONSTANT)
1390 : : return NULL;
1391 : :
1392 : 14 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
1393 : 14 : mpfr_j0 (result->value.real, x->value.real, GFC_RND_MODE);
1394 : :
1395 : 14 : return range_check (result, "BESSEL_J0");
1396 : : }
1397 : :
1398 : :
1399 : : gfc_expr *
1400 : 80 : gfc_simplify_bessel_j1 (gfc_expr *x)
1401 : : {
1402 : 80 : gfc_expr *result;
1403 : :
1404 : 80 : if (x->expr_type != EXPR_CONSTANT)
1405 : : return NULL;
1406 : :
1407 : 12 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
1408 : 12 : mpfr_j1 (result->value.real, x->value.real, GFC_RND_MODE);
1409 : :
1410 : 12 : return range_check (result, "BESSEL_J1");
1411 : : }
1412 : :
1413 : :
1414 : : gfc_expr *
1415 : 1287 : gfc_simplify_bessel_jn (gfc_expr *order, gfc_expr *x)
1416 : : {
1417 : 1287 : gfc_expr *result;
1418 : 1287 : long n;
1419 : :
1420 : 1287 : if (x->expr_type != EXPR_CONSTANT || order->expr_type != EXPR_CONSTANT)
1421 : : return NULL;
1422 : :
1423 : 1054 : n = mpz_get_si (order->value.integer);
1424 : 1054 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
1425 : 1054 : mpfr_jn (result->value.real, n, x->value.real, GFC_RND_MODE);
1426 : :
1427 : 1054 : return range_check (result, "BESSEL_JN");
1428 : : }
1429 : :
1430 : :
1431 : : /* Simplify transformational form of JN and YN. */
1432 : :
1433 : : static gfc_expr *
1434 : 71 : gfc_simplify_bessel_n2 (gfc_expr *order1, gfc_expr *order2, gfc_expr *x,
1435 : : bool jn)
1436 : : {
1437 : 71 : gfc_expr *result;
1438 : 71 : gfc_expr *e;
1439 : 71 : long n1, n2;
1440 : 71 : int i;
1441 : 71 : mpfr_t x2rev, last1, last2;
1442 : :
1443 : 71 : if (x->expr_type != EXPR_CONSTANT || order1->expr_type != EXPR_CONSTANT
1444 : 57 : || order2->expr_type != EXPR_CONSTANT)
1445 : : return NULL;
1446 : :
1447 : 57 : n1 = mpz_get_si (order1->value.integer);
1448 : 57 : n2 = mpz_get_si (order2->value.integer);
1449 : 57 : result = gfc_get_array_expr (x->ts.type, x->ts.kind, &x->where);
1450 : 57 : result->rank = 1;
1451 : 57 : result->shape = gfc_get_shape (1);
1452 : 57 : mpz_init_set_ui (result->shape[0], MAX (n2-n1+1, 0));
1453 : :
1454 : 57 : if (n2 < n1)
1455 : : return result;
1456 : :
1457 : : /* Special case: x == 0; it is J0(0.0) == 1, JN(N > 0, 0.0) == 0; and
1458 : : YN(N, 0.0) = -Inf. */
1459 : :
1460 : 57 : if (mpfr_cmp_ui (x->value.real, 0.0) == 0)
1461 : : {
1462 : 14 : if (!jn && flag_range_check)
1463 : : {
1464 : 1 : gfc_error ("Result of BESSEL_YN is -INF at %L", &result->where);
1465 : 1 : gfc_free_expr (result);
1466 : 1 : return &gfc_bad_expr;
1467 : : }
1468 : :
1469 : 13 : if (jn && n1 == 0)
1470 : : {
1471 : 7 : e = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
1472 : 7 : mpfr_set_ui (e->value.real, 1, GFC_RND_MODE);
1473 : 7 : gfc_constructor_append_expr (&result->value.constructor, e,
1474 : : &x->where);
1475 : 7 : n1++;
1476 : : }
1477 : :
1478 : 149 : for (i = n1; i <= n2; i++)
1479 : : {
1480 : 136 : e = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
1481 : 136 : if (jn)
1482 : 70 : mpfr_set_ui (e->value.real, 0, GFC_RND_MODE);
1483 : : else
1484 : 66 : mpfr_set_inf (e->value.real, -1);
1485 : 136 : gfc_constructor_append_expr (&result->value.constructor, e,
1486 : : &x->where);
1487 : : }
1488 : :
1489 : : return result;
1490 : : }
1491 : :
1492 : : /* Use the faster but more verbose recurrence algorithm. Bessel functions
1493 : : are stable for downward recursion and Neumann functions are stable
1494 : : for upward recursion. It is
1495 : : x2rev = 2.0/x,
1496 : : J(N-1, x) = x2rev * N * J(N, x) - J(N+1, x),
1497 : : Y(N+1, x) = x2rev * N * Y(N, x) - Y(N-1, x).
1498 : : Cf. http://dlmf.nist.gov/10.74#iv and http://dlmf.nist.gov/10.6#E1 */
1499 : :
1500 : 43 : gfc_set_model_kind (x->ts.kind);
1501 : :
1502 : : /* Get first recursion anchor. */
1503 : :
1504 : 43 : mpfr_init (last1);
1505 : 43 : if (jn)
1506 : 22 : mpfr_jn (last1, n2, x->value.real, GFC_RND_MODE);
1507 : : else
1508 : 21 : mpfr_yn (last1, n1, x->value.real, GFC_RND_MODE);
1509 : :
1510 : 43 : e = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
1511 : 43 : mpfr_set (e->value.real, last1, GFC_RND_MODE);
1512 : 64 : if (range_check (e, jn ? "BESSEL_JN" : "BESSEL_YN") == &gfc_bad_expr)
1513 : : {
1514 : 0 : mpfr_clear (last1);
1515 : 0 : gfc_free_expr (e);
1516 : 0 : gfc_free_expr (result);
1517 : 0 : return &gfc_bad_expr;
1518 : : }
1519 : 43 : gfc_constructor_append_expr (&result->value.constructor, e, &x->where);
1520 : :
1521 : 43 : if (n1 == n2)
1522 : : {
1523 : 0 : mpfr_clear (last1);
1524 : 0 : return result;
1525 : : }
1526 : :
1527 : : /* Get second recursion anchor. */
1528 : :
1529 : 43 : mpfr_init (last2);
1530 : 43 : if (jn)
1531 : 22 : mpfr_jn (last2, n2-1, x->value.real, GFC_RND_MODE);
1532 : : else
1533 : 21 : mpfr_yn (last2, n1+1, x->value.real, GFC_RND_MODE);
1534 : :
1535 : 43 : e = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
1536 : 43 : mpfr_set (e->value.real, last2, GFC_RND_MODE);
1537 : 43 : if (range_check (e, jn ? "BESSEL_JN" : "BESSEL_YN") == &gfc_bad_expr)
1538 : : {
1539 : 0 : mpfr_clear (last1);
1540 : 0 : mpfr_clear (last2);
1541 : 0 : gfc_free_expr (e);
1542 : 0 : gfc_free_expr (result);
1543 : 0 : return &gfc_bad_expr;
1544 : : }
1545 : 43 : if (jn)
1546 : 22 : gfc_constructor_insert_expr (&result->value.constructor, e, &x->where, -2);
1547 : : else
1548 : 21 : gfc_constructor_append_expr (&result->value.constructor, e, &x->where);
1549 : :
1550 : 43 : if (n1 + 1 == n2)
1551 : : {
1552 : 1 : mpfr_clear (last1);
1553 : 1 : mpfr_clear (last2);
1554 : 1 : return result;
1555 : : }
1556 : :
1557 : : /* Start actual recursion. */
1558 : :
1559 : 42 : mpfr_init (x2rev);
1560 : 42 : mpfr_ui_div (x2rev, 2, x->value.real, GFC_RND_MODE);
1561 : :
1562 : 322 : for (i = 2; i <= n2-n1; i++)
1563 : : {
1564 : 280 : e = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
1565 : :
1566 : : /* Special case: For YN, if the previous N gave -INF, set
1567 : : also N+1 to -INF. */
1568 : 280 : if (!jn && !flag_range_check && mpfr_inf_p (last2))
1569 : : {
1570 : 0 : mpfr_set_inf (e->value.real, -1);
1571 : 0 : gfc_constructor_append_expr (&result->value.constructor, e,
1572 : : &x->where);
1573 : 0 : continue;
1574 : : }
1575 : :
1576 : 280 : mpfr_mul_si (e->value.real, x2rev, jn ? (n2-i+1) : (n1+i-1),
1577 : : GFC_RND_MODE);
1578 : 280 : mpfr_mul (e->value.real, e->value.real, last2, GFC_RND_MODE);
1579 : 280 : mpfr_sub (e->value.real, e->value.real, last1, GFC_RND_MODE);
1580 : :
1581 : 280 : if (range_check (e, jn ? "BESSEL_JN" : "BESSEL_YN") == &gfc_bad_expr)
1582 : : {
1583 : : /* Range_check frees "e" in that case. */
1584 : 0 : e = NULL;
1585 : 0 : goto error;
1586 : : }
1587 : :
1588 : 280 : if (jn)
1589 : 140 : gfc_constructor_insert_expr (&result->value.constructor, e, &x->where,
1590 : : -i-1);
1591 : : else
1592 : 140 : gfc_constructor_append_expr (&result->value.constructor, e, &x->where);
1593 : :
1594 : 280 : mpfr_set (last1, last2, GFC_RND_MODE);
1595 : 280 : mpfr_set (last2, e->value.real, GFC_RND_MODE);
1596 : : }
1597 : :
1598 : 42 : mpfr_clear (last1);
1599 : 42 : mpfr_clear (last2);
1600 : 42 : mpfr_clear (x2rev);
1601 : 42 : return result;
1602 : :
1603 : 0 : error:
1604 : 0 : mpfr_clear (last1);
1605 : 0 : mpfr_clear (last2);
1606 : 0 : mpfr_clear (x2rev);
1607 : 0 : gfc_free_expr (e);
1608 : 0 : gfc_free_expr (result);
1609 : 0 : return &gfc_bad_expr;
1610 : : }
1611 : :
1612 : :
1613 : : gfc_expr *
1614 : 31 : gfc_simplify_bessel_jn2 (gfc_expr *order1, gfc_expr *order2, gfc_expr *x)
1615 : : {
1616 : 31 : return gfc_simplify_bessel_n2 (order1, order2, x, true);
1617 : : }
1618 : :
1619 : :
1620 : : gfc_expr *
1621 : 80 : gfc_simplify_bessel_y0 (gfc_expr *x)
1622 : : {
1623 : 80 : gfc_expr *result;
1624 : :
1625 : 80 : if (x->expr_type != EXPR_CONSTANT)
1626 : : return NULL;
1627 : :
1628 : 12 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
1629 : 12 : mpfr_y0 (result->value.real, x->value.real, GFC_RND_MODE);
1630 : :
1631 : 12 : return range_check (result, "BESSEL_Y0");
1632 : : }
1633 : :
1634 : :
1635 : : gfc_expr *
1636 : 80 : gfc_simplify_bessel_y1 (gfc_expr *x)
1637 : : {
1638 : 80 : gfc_expr *result;
1639 : :
1640 : 80 : if (x->expr_type != EXPR_CONSTANT)
1641 : : return NULL;
1642 : :
1643 : 12 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
1644 : 12 : mpfr_y1 (result->value.real, x->value.real, GFC_RND_MODE);
1645 : :
1646 : 12 : return range_check (result, "BESSEL_Y1");
1647 : : }
1648 : :
1649 : :
1650 : : gfc_expr *
1651 : 1868 : gfc_simplify_bessel_yn (gfc_expr *order, gfc_expr *x)
1652 : : {
1653 : 1868 : gfc_expr *result;
1654 : 1868 : long n;
1655 : :
1656 : 1868 : if (x->expr_type != EXPR_CONSTANT || order->expr_type != EXPR_CONSTANT)
1657 : : return NULL;
1658 : :
1659 : 1010 : n = mpz_get_si (order->value.integer);
1660 : 1010 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
1661 : 1010 : mpfr_yn (result->value.real, n, x->value.real, GFC_RND_MODE);
1662 : :
1663 : 1010 : return range_check (result, "BESSEL_YN");
1664 : : }
1665 : :
1666 : :
1667 : : gfc_expr *
1668 : 40 : gfc_simplify_bessel_yn2 (gfc_expr *order1, gfc_expr *order2, gfc_expr *x)
1669 : : {
1670 : 40 : return gfc_simplify_bessel_n2 (order1, order2, x, false);
1671 : : }
1672 : :
1673 : :
1674 : : gfc_expr *
1675 : 3655 : gfc_simplify_bit_size (gfc_expr *e)
1676 : : {
1677 : 3655 : int i = gfc_validate_kind (e->ts.type, e->ts.kind, false);
1678 : 3655 : int bit_size;
1679 : :
1680 : 3655 : if (flag_unsigned && e->ts.type == BT_UNSIGNED)
1681 : 24 : bit_size = gfc_unsigned_kinds[i].bit_size;
1682 : : else
1683 : 3631 : bit_size = gfc_integer_kinds[i].bit_size;
1684 : :
1685 : 3655 : return gfc_get_int_expr (e->ts.kind, &e->where, bit_size);
1686 : : }
1687 : :
1688 : :
1689 : : gfc_expr *
1690 : 342 : gfc_simplify_btest (gfc_expr *e, gfc_expr *bit)
1691 : : {
1692 : 342 : int b;
1693 : :
1694 : 342 : if (e->expr_type != EXPR_CONSTANT || bit->expr_type != EXPR_CONSTANT)
1695 : : return NULL;
1696 : :
1697 : 31 : if (!gfc_check_bitfcn (e, bit))
1698 : : return &gfc_bad_expr;
1699 : :
1700 : 23 : if (gfc_extract_int (bit, &b) || b < 0)
1701 : 0 : return gfc_get_logical_expr (gfc_default_logical_kind, &e->where, false);
1702 : :
1703 : 23 : return gfc_get_logical_expr (gfc_default_logical_kind, &e->where,
1704 : 23 : mpz_tstbit (e->value.integer, b));
1705 : : }
1706 : :
1707 : :
1708 : : static int
1709 : 1230 : compare_bitwise (gfc_expr *i, gfc_expr *j)
1710 : : {
1711 : 1230 : mpz_t x, y;
1712 : 1230 : int k, res;
1713 : :
1714 : 1230 : gcc_assert (i->ts.type == BT_INTEGER);
1715 : 1230 : gcc_assert (j->ts.type == BT_INTEGER);
1716 : :
1717 : 1230 : mpz_init_set (x, i->value.integer);
1718 : 1230 : k = gfc_validate_kind (i->ts.type, i->ts.kind, false);
1719 : 1230 : gfc_convert_mpz_to_unsigned (x, gfc_integer_kinds[k].bit_size);
1720 : :
1721 : 1230 : mpz_init_set (y, j->value.integer);
1722 : 1230 : k = gfc_validate_kind (j->ts.type, j->ts.kind, false);
1723 : 1230 : gfc_convert_mpz_to_unsigned (y, gfc_integer_kinds[k].bit_size);
1724 : :
1725 : 1230 : res = mpz_cmp (x, y);
1726 : 1230 : mpz_clear (x);
1727 : 1230 : mpz_clear (y);
1728 : 1230 : return res;
1729 : : }
1730 : :
1731 : :
1732 : : gfc_expr *
1733 : 504 : gfc_simplify_bge (gfc_expr *i, gfc_expr *j)
1734 : : {
1735 : 504 : bool result;
1736 : :
1737 : 504 : if (i->expr_type != EXPR_CONSTANT || j->expr_type != EXPR_CONSTANT)
1738 : : return NULL;
1739 : :
1740 : 384 : if (flag_unsigned && i->ts.type == BT_UNSIGNED)
1741 : 54 : result = mpz_cmp (i->value.integer, j->value.integer) >= 0;
1742 : : else
1743 : 330 : result = compare_bitwise (i, j) >= 0;
1744 : :
1745 : 384 : return gfc_get_logical_expr (gfc_default_logical_kind, &i->where,
1746 : 384 : result);
1747 : : }
1748 : :
1749 : :
1750 : : gfc_expr *
1751 : 474 : gfc_simplify_bgt (gfc_expr *i, gfc_expr *j)
1752 : : {
1753 : 474 : bool result;
1754 : :
1755 : 474 : if (i->expr_type != EXPR_CONSTANT || j->expr_type != EXPR_CONSTANT)
1756 : : return NULL;
1757 : :
1758 : 354 : if (flag_unsigned && i->ts.type == BT_UNSIGNED)
1759 : 54 : result = mpz_cmp (i->value.integer, j->value.integer) > 0;
1760 : : else
1761 : 300 : result = compare_bitwise (i, j) > 0;
1762 : :
1763 : 354 : return gfc_get_logical_expr (gfc_default_logical_kind, &i->where,
1764 : 354 : result);
1765 : : }
1766 : :
1767 : :
1768 : : gfc_expr *
1769 : 474 : gfc_simplify_ble (gfc_expr *i, gfc_expr *j)
1770 : : {
1771 : 474 : bool result;
1772 : :
1773 : 474 : if (i->expr_type != EXPR_CONSTANT || j->expr_type != EXPR_CONSTANT)
1774 : : return NULL;
1775 : :
1776 : 354 : if (flag_unsigned && i->ts.type == BT_UNSIGNED)
1777 : 54 : result = mpz_cmp (i->value.integer, j->value.integer) <= 0;
1778 : : else
1779 : 300 : result = compare_bitwise (i, j) <= 0;
1780 : :
1781 : 354 : return gfc_get_logical_expr (gfc_default_logical_kind, &i->where,
1782 : 354 : result);
1783 : : }
1784 : :
1785 : :
1786 : : gfc_expr *
1787 : 474 : gfc_simplify_blt (gfc_expr *i, gfc_expr *j)
1788 : : {
1789 : 474 : bool result;
1790 : :
1791 : 474 : if (i->expr_type != EXPR_CONSTANT || j->expr_type != EXPR_CONSTANT)
1792 : : return NULL;
1793 : :
1794 : 354 : if (flag_unsigned && i->ts.type == BT_UNSIGNED)
1795 : 54 : result = mpz_cmp (i->value.integer, j->value.integer) < 0;
1796 : : else
1797 : 300 : result = compare_bitwise (i, j) < 0;
1798 : :
1799 : 354 : return gfc_get_logical_expr (gfc_default_logical_kind, &i->where,
1800 : 354 : result);
1801 : : }
1802 : :
1803 : : gfc_expr *
1804 : 90 : gfc_simplify_ceiling (gfc_expr *e, gfc_expr *k)
1805 : : {
1806 : 90 : gfc_expr *ceil, *result;
1807 : 90 : int kind;
1808 : :
1809 : 90 : kind = get_kind (BT_INTEGER, k, "CEILING", gfc_default_integer_kind);
1810 : 90 : if (kind == -1)
1811 : : return &gfc_bad_expr;
1812 : :
1813 : 90 : if (e->expr_type != EXPR_CONSTANT)
1814 : : return NULL;
1815 : :
1816 : 13 : ceil = gfc_copy_expr (e);
1817 : 13 : mpfr_ceil (ceil->value.real, e->value.real);
1818 : :
1819 : 13 : result = gfc_get_constant_expr (BT_INTEGER, kind, &e->where);
1820 : 13 : gfc_mpfr_to_mpz (result->value.integer, ceil->value.real, &e->where);
1821 : :
1822 : 13 : gfc_free_expr (ceil);
1823 : :
1824 : 13 : return range_check (result, "CEILING");
1825 : : }
1826 : :
1827 : :
1828 : : gfc_expr *
1829 : 8642 : gfc_simplify_char (gfc_expr *e, gfc_expr *k)
1830 : : {
1831 : 8642 : return simplify_achar_char (e, k, "CHAR", false);
1832 : : }
1833 : :
1834 : :
1835 : : /* Common subroutine for simplifying CMPLX, COMPLEX and DCMPLX. */
1836 : :
1837 : : static gfc_expr *
1838 : 6947 : simplify_cmplx (const char *name, gfc_expr *x, gfc_expr *y, int kind)
1839 : : {
1840 : 6947 : gfc_expr *result;
1841 : :
1842 : 6947 : if (x->expr_type != EXPR_CONSTANT
1843 : 5379 : || (y != NULL && y->expr_type != EXPR_CONSTANT))
1844 : : return NULL;
1845 : :
1846 : 5173 : result = gfc_get_constant_expr (BT_COMPLEX, kind, &x->where);
1847 : :
1848 : 5173 : switch (x->ts.type)
1849 : : {
1850 : 3634 : case BT_INTEGER:
1851 : 3634 : case BT_UNSIGNED:
1852 : 3634 : mpc_set_z (result->value.complex, x->value.integer, GFC_MPC_RND_MODE);
1853 : 3634 : break;
1854 : :
1855 : 1539 : case BT_REAL:
1856 : 1539 : mpc_set_fr (result->value.complex, x->value.real, GFC_RND_MODE);
1857 : 1539 : break;
1858 : :
1859 : 0 : case BT_COMPLEX:
1860 : 0 : mpc_set (result->value.complex, x->value.complex, GFC_MPC_RND_MODE);
1861 : 0 : break;
1862 : :
1863 : 0 : default:
1864 : 0 : gfc_internal_error ("gfc_simplify_dcmplx(): Bad type (x)");
1865 : : }
1866 : :
1867 : 5173 : if (!y)
1868 : 224 : return range_check (result, name);
1869 : :
1870 : 4949 : switch (y->ts.type)
1871 : : {
1872 : 3522 : case BT_INTEGER:
1873 : 3522 : case BT_UNSIGNED:
1874 : 3522 : mpfr_set_z (mpc_imagref (result->value.complex),
1875 : 3522 : y->value.integer, GFC_RND_MODE);
1876 : 3522 : break;
1877 : :
1878 : 1427 : case BT_REAL:
1879 : 1427 : mpfr_set (mpc_imagref (result->value.complex),
1880 : : y->value.real, GFC_RND_MODE);
1881 : 1427 : break;
1882 : :
1883 : 0 : default:
1884 : 0 : gfc_internal_error ("gfc_simplify_dcmplx(): Bad type (y)");
1885 : : }
1886 : :
1887 : 4949 : return range_check (result, name);
1888 : : }
1889 : :
1890 : :
1891 : : gfc_expr *
1892 : 6593 : gfc_simplify_cmplx (gfc_expr *x, gfc_expr *y, gfc_expr *k)
1893 : : {
1894 : 6593 : int kind;
1895 : :
1896 : 6593 : kind = get_kind (BT_REAL, k, "CMPLX", gfc_default_complex_kind);
1897 : 6593 : if (kind == -1)
1898 : : return &gfc_bad_expr;
1899 : :
1900 : 6593 : return simplify_cmplx ("CMPLX", x, y, kind);
1901 : : }
1902 : :
1903 : :
1904 : : gfc_expr *
1905 : 55 : gfc_simplify_complex (gfc_expr *x, gfc_expr *y)
1906 : : {
1907 : 55 : int kind;
1908 : :
1909 : 55 : if (x->ts.type == BT_INTEGER && y->ts.type == BT_INTEGER)
1910 : 15 : kind = gfc_default_complex_kind;
1911 : 40 : else if (x->ts.type == BT_REAL || y->ts.type == BT_INTEGER)
1912 : 34 : kind = x->ts.kind;
1913 : 6 : else if (x->ts.type == BT_INTEGER || y->ts.type == BT_REAL)
1914 : 6 : kind = y->ts.kind;
1915 : 0 : else if (x->ts.type == BT_REAL && y->ts.type == BT_REAL)
1916 : : kind = (x->ts.kind > y->ts.kind) ? x->ts.kind : y->ts.kind;
1917 : : else
1918 : 0 : gcc_unreachable ();
1919 : :
1920 : 55 : return simplify_cmplx ("COMPLEX", x, y, kind);
1921 : : }
1922 : :
1923 : :
1924 : : gfc_expr *
1925 : 720 : gfc_simplify_conjg (gfc_expr *e)
1926 : : {
1927 : 720 : gfc_expr *result;
1928 : :
1929 : 720 : if (e->expr_type != EXPR_CONSTANT)
1930 : : return NULL;
1931 : :
1932 : 47 : result = gfc_copy_expr (e);
1933 : 47 : mpc_conj (result->value.complex, result->value.complex, GFC_MPC_RND_MODE);
1934 : :
1935 : 47 : return range_check (result, "CONJG");
1936 : : }
1937 : :
1938 : :
1939 : : /* Simplify atan2d (x) where the unit is degree. */
1940 : :
1941 : : gfc_expr *
1942 : 168 : gfc_simplify_atan2d (gfc_expr *y, gfc_expr *x)
1943 : : {
1944 : 168 : gfc_expr *result;
1945 : :
1946 : 168 : if (x->expr_type != EXPR_CONSTANT || y->expr_type != EXPR_CONSTANT)
1947 : : return NULL;
1948 : :
1949 : 24 : if (mpfr_zero_p (y->value.real) && mpfr_zero_p (x->value.real))
1950 : : {
1951 : 0 : gfc_error ("If first argument of ATAN2D at %L is zero, then the "
1952 : : "second argument must not be zero", &y->where);
1953 : 0 : return &gfc_bad_expr;
1954 : : }
1955 : :
1956 : 24 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
1957 : 24 : mpfr_atan2 (result->value.real, y->value.real, x->value.real, GFC_RND_MODE);
1958 : 24 : rad2deg (result->value.real);
1959 : :
1960 : 24 : return range_check (result, "ATAN2D");
1961 : : }
1962 : :
1963 : :
1964 : : gfc_expr *
1965 : 926 : gfc_simplify_cos (gfc_expr *x)
1966 : : {
1967 : 926 : gfc_expr *result;
1968 : :
1969 : 926 : if (x->expr_type != EXPR_CONSTANT)
1970 : : return NULL;
1971 : :
1972 : 162 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
1973 : :
1974 : 162 : switch (x->ts.type)
1975 : : {
1976 : 105 : case BT_REAL:
1977 : 105 : mpfr_cos (result->value.real, x->value.real, GFC_RND_MODE);
1978 : 105 : break;
1979 : :
1980 : 57 : case BT_COMPLEX:
1981 : 57 : gfc_set_model_kind (x->ts.kind);
1982 : 57 : mpc_cos (result->value.complex, x->value.complex, GFC_MPC_RND_MODE);
1983 : 57 : break;
1984 : :
1985 : 0 : default:
1986 : 0 : gfc_internal_error ("in gfc_simplify_cos(): Bad type");
1987 : : }
1988 : :
1989 : 162 : return range_check (result, "COS");
1990 : : }
1991 : :
1992 : :
1993 : : static void
1994 : 48 : deg2rad (mpfr_t x)
1995 : : {
1996 : 48 : mpfr_t d2r;
1997 : :
1998 : 48 : mpfr_init (d2r);
1999 : 48 : mpfr_const_pi (d2r, GFC_RND_MODE);
2000 : 48 : mpfr_div_ui (d2r, d2r, 180, GFC_RND_MODE);
2001 : 48 : mpfr_mul (x, x, d2r, GFC_RND_MODE);
2002 : 48 : mpfr_clear (d2r);
2003 : 48 : }
2004 : :
2005 : :
2006 : : /* Simplification routines for SIND, COSD, TAND. */
2007 : : #include "trigd_fe.inc"
2008 : :
2009 : :
2010 : : /* Simplify COSD(X) where X has the unit of degree. */
2011 : :
2012 : : gfc_expr *
2013 : 181 : gfc_simplify_cosd (gfc_expr *x)
2014 : : {
2015 : 181 : gfc_expr *result;
2016 : :
2017 : 181 : if (x->expr_type != EXPR_CONSTANT)
2018 : : return NULL;
2019 : :
2020 : 25 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
2021 : 25 : mpfr_set (result->value.real, x->value.real, GFC_RND_MODE);
2022 : 25 : simplify_cosd (result->value.real);
2023 : :
2024 : 25 : return range_check (result, "COSD");
2025 : : }
2026 : :
2027 : :
2028 : : /* Simplify SIND(X) where X has the unit of degree. */
2029 : :
2030 : : gfc_expr *
2031 : 181 : gfc_simplify_sind (gfc_expr *x)
2032 : : {
2033 : 181 : gfc_expr *result;
2034 : :
2035 : 181 : if (x->expr_type != EXPR_CONSTANT)
2036 : : return NULL;
2037 : :
2038 : 25 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
2039 : 25 : mpfr_set (result->value.real, x->value.real, GFC_RND_MODE);
2040 : 25 : simplify_sind (result->value.real);
2041 : :
2042 : 25 : return range_check (result, "SIND");
2043 : : }
2044 : :
2045 : :
2046 : : /* Simplify TAND(X) where X has the unit of degree. */
2047 : :
2048 : : gfc_expr *
2049 : 265 : gfc_simplify_tand (gfc_expr *x)
2050 : : {
2051 : 265 : gfc_expr *result;
2052 : :
2053 : 265 : if (x->expr_type != EXPR_CONSTANT)
2054 : : return NULL;
2055 : :
2056 : 25 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
2057 : 25 : mpfr_set (result->value.real, x->value.real, GFC_RND_MODE);
2058 : 25 : simplify_tand (result->value.real);
2059 : :
2060 : 25 : return range_check (result, "TAND");
2061 : : }
2062 : :
2063 : :
2064 : : /* Simplify COTAND(X) where X has the unit of degree. */
2065 : :
2066 : : gfc_expr *
2067 : 241 : gfc_simplify_cotand (gfc_expr *x)
2068 : : {
2069 : 241 : gfc_expr *result;
2070 : :
2071 : 241 : if (x->expr_type != EXPR_CONSTANT)
2072 : : return NULL;
2073 : :
2074 : : /* Implement COTAND = -TAND(x+90).
2075 : : TAND offers correct exact values for multiples of 30 degrees.
2076 : : This implementation is also compatible with the behavior of some legacy
2077 : : compilers. Keep this consistent with gfc_conv_intrinsic_cotand. */
2078 : 25 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
2079 : 25 : mpfr_set (result->value.real, x->value.real, GFC_RND_MODE);
2080 : 25 : mpfr_add_ui (result->value.real, result->value.real, 90, GFC_RND_MODE);
2081 : 25 : simplify_tand (result->value.real);
2082 : 25 : mpfr_neg (result->value.real, result->value.real, GFC_RND_MODE);
2083 : :
2084 : 25 : return range_check (result, "COTAND");
2085 : : }
2086 : :
2087 : :
2088 : : gfc_expr *
2089 : 317 : gfc_simplify_cosh (gfc_expr *x)
2090 : : {
2091 : 317 : gfc_expr *result;
2092 : :
2093 : 317 : if (x->expr_type != EXPR_CONSTANT)
2094 : : return NULL;
2095 : :
2096 : 47 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
2097 : :
2098 : 47 : switch (x->ts.type)
2099 : : {
2100 : 43 : case BT_REAL:
2101 : 43 : mpfr_cosh (result->value.real, x->value.real, GFC_RND_MODE);
2102 : 43 : break;
2103 : :
2104 : 4 : case BT_COMPLEX:
2105 : 4 : mpc_cosh (result->value.complex, x->value.complex, GFC_MPC_RND_MODE);
2106 : 4 : break;
2107 : :
2108 : 0 : default:
2109 : 0 : gcc_unreachable ();
2110 : : }
2111 : :
2112 : 47 : return range_check (result, "COSH");
2113 : : }
2114 : :
2115 : :
2116 : : gfc_expr *
2117 : 440 : gfc_simplify_count (gfc_expr *mask, gfc_expr *dim, gfc_expr *kind)
2118 : : {
2119 : 440 : gfc_expr *result;
2120 : 440 : bool size_zero;
2121 : :
2122 : 440 : size_zero = gfc_is_size_zero_array (mask);
2123 : :
2124 : 825 : if (!(is_constant_array_expr (mask) || size_zero)
2125 : 55 : || !gfc_is_constant_expr (dim)
2126 : 495 : || !gfc_is_constant_expr (kind))
2127 : 385 : return NULL;
2128 : :
2129 : 55 : result = transformational_result (mask, dim,
2130 : : BT_INTEGER,
2131 : : get_kind (BT_INTEGER, kind, "COUNT",
2132 : : gfc_default_integer_kind),
2133 : : &mask->where);
2134 : :
2135 : 55 : init_result_expr (result, 0, NULL);
2136 : :
2137 : 55 : if (size_zero)
2138 : : return result;
2139 : :
2140 : : /* Passing MASK twice, once as data array, once as mask.
2141 : : Whenever gfc_count is called, '1' is added to the result. */
2142 : 30 : return !dim || mask->rank == 1 ?
2143 : 24 : simplify_transformation_to_scalar (result, mask, mask, gfc_count) :
2144 : 6 : simplify_transformation_to_array (result, mask, dim, mask, gfc_count, NULL);
2145 : : }
2146 : :
2147 : : /* Simplification routine for cshift. This works by copying the array
2148 : : expressions into a one-dimensional array, shuffling the values into another
2149 : : one-dimensional array and creating the new array expression from this. The
2150 : : shuffling part is basically taken from the library routine. */
2151 : :
2152 : : gfc_expr *
2153 : 957 : gfc_simplify_cshift (gfc_expr *array, gfc_expr *shift, gfc_expr *dim)
2154 : : {
2155 : 957 : gfc_expr *result;
2156 : 957 : int which;
2157 : 957 : gfc_expr **arrayvec, **resultvec;
2158 : 957 : gfc_expr **rptr, **sptr;
2159 : 957 : mpz_t size;
2160 : 957 : size_t arraysize, shiftsize, i;
2161 : 957 : gfc_constructor *array_ctor, *shift_ctor;
2162 : 957 : ssize_t *shiftvec, *hptr;
2163 : 957 : ssize_t shift_val, len;
2164 : 957 : ssize_t count[GFC_MAX_DIMENSIONS], extent[GFC_MAX_DIMENSIONS],
2165 : : hs_ex[GFC_MAX_DIMENSIONS + 1],
2166 : : hstride[GFC_MAX_DIMENSIONS], sstride[GFC_MAX_DIMENSIONS],
2167 : : a_extent[GFC_MAX_DIMENSIONS], a_stride[GFC_MAX_DIMENSIONS],
2168 : : h_extent[GFC_MAX_DIMENSIONS],
2169 : : ss_ex[GFC_MAX_DIMENSIONS + 1];
2170 : 957 : ssize_t rsoffset;
2171 : 957 : int d, n;
2172 : 957 : bool continue_loop;
2173 : 957 : gfc_expr **src, **dest;
2174 : :
2175 : 957 : if (!is_constant_array_expr (array))
2176 : : return NULL;
2177 : :
2178 : 80 : if (shift->rank > 0)
2179 : 9 : gfc_simplify_expr (shift, 1);
2180 : :
2181 : 80 : if (!gfc_is_constant_expr (shift))
2182 : : return NULL;
2183 : :
2184 : : /* Make dim zero-based. */
2185 : 80 : if (dim)
2186 : : {
2187 : 25 : if (!gfc_is_constant_expr (dim))
2188 : : return NULL;
2189 : 13 : which = mpz_get_si (dim->value.integer) - 1;
2190 : : }
2191 : : else
2192 : : which = 0;
2193 : :
2194 : 68 : if (array->shape == NULL)
2195 : : return NULL;
2196 : :
2197 : 68 : gfc_array_size (array, &size);
2198 : 68 : arraysize = mpz_get_ui (size);
2199 : 68 : mpz_clear (size);
2200 : :
2201 : 68 : result = gfc_get_array_expr (array->ts.type, array->ts.kind, &array->where);
2202 : 68 : result->shape = gfc_copy_shape (array->shape, array->rank);
2203 : 68 : result->rank = array->rank;
2204 : 68 : result->ts.u.derived = array->ts.u.derived;
2205 : :
2206 : 68 : if (arraysize == 0)
2207 : : return result;
2208 : :
2209 : 67 : arrayvec = XCNEWVEC (gfc_expr *, arraysize);
2210 : 67 : array_ctor = gfc_constructor_first (array->value.constructor);
2211 : 985 : for (i = 0; i < arraysize; i++)
2212 : : {
2213 : 851 : arrayvec[i] = array_ctor->expr;
2214 : 851 : array_ctor = gfc_constructor_next (array_ctor);
2215 : : }
2216 : :
2217 : 67 : resultvec = XCNEWVEC (gfc_expr *, arraysize);
2218 : :
2219 : 67 : sstride[0] = 0;
2220 : 67 : extent[0] = 1;
2221 : 67 : count[0] = 0;
2222 : :
2223 : 161 : for (d=0; d < array->rank; d++)
2224 : : {
2225 : 94 : a_extent[d] = mpz_get_si (array->shape[d]);
2226 : 94 : a_stride[d] = d == 0 ? 1 : a_stride[d-1] * a_extent[d-1];
2227 : : }
2228 : :
2229 : 67 : if (shift->rank > 0)
2230 : : {
2231 : 9 : gfc_array_size (shift, &size);
2232 : 9 : shiftsize = mpz_get_ui (size);
2233 : 9 : mpz_clear (size);
2234 : 9 : shiftvec = XCNEWVEC (ssize_t, shiftsize);
2235 : 9 : shift_ctor = gfc_constructor_first (shift->value.constructor);
2236 : 30 : for (d = 0; d < shift->rank; d++)
2237 : : {
2238 : 12 : h_extent[d] = mpz_get_si (shift->shape[d]);
2239 : 12 : hstride[d] = d == 0 ? 1 : hstride[d-1] * h_extent[d-1];
2240 : : }
2241 : : }
2242 : : else
2243 : : shiftvec = NULL;
2244 : :
2245 : : /* Shut up compiler */
2246 : 67 : len = 1;
2247 : 67 : rsoffset = 1;
2248 : :
2249 : 67 : n = 0;
2250 : 161 : for (d=0; d < array->rank; d++)
2251 : : {
2252 : 94 : if (d == which)
2253 : : {
2254 : 67 : rsoffset = a_stride[d];
2255 : 67 : len = a_extent[d];
2256 : : }
2257 : : else
2258 : : {
2259 : 27 : count[n] = 0;
2260 : 27 : extent[n] = a_extent[d];
2261 : 27 : sstride[n] = a_stride[d];
2262 : 27 : ss_ex[n] = sstride[n] * extent[n];
2263 : 27 : if (shiftvec)
2264 : 12 : hs_ex[n] = hstride[n] * extent[n];
2265 : 27 : n++;
2266 : : }
2267 : : }
2268 : 67 : ss_ex[n] = 0;
2269 : 67 : hs_ex[n] = 0;
2270 : :
2271 : 67 : if (shiftvec)
2272 : : {
2273 : 74 : for (i = 0; i < shiftsize; i++)
2274 : : {
2275 : 65 : ssize_t val;
2276 : 65 : val = mpz_get_si (shift_ctor->expr->value.integer);
2277 : 65 : val = val % len;
2278 : 65 : if (val < 0)
2279 : 18 : val += len;
2280 : 65 : shiftvec[i] = val;
2281 : 65 : shift_ctor = gfc_constructor_next (shift_ctor);
2282 : : }
2283 : : shift_val = 0;
2284 : : }
2285 : : else
2286 : : {
2287 : 58 : shift_val = mpz_get_si (shift->value.integer);
2288 : 58 : shift_val = shift_val % len;
2289 : 58 : if (shift_val < 0)
2290 : 6 : shift_val += len;
2291 : : }
2292 : :
2293 : 67 : continue_loop = true;
2294 : 67 : d = array->rank;
2295 : 67 : rptr = resultvec;
2296 : 67 : sptr = arrayvec;
2297 : 67 : hptr = shiftvec;
2298 : :
2299 : 359 : while (continue_loop)
2300 : : {
2301 : 225 : ssize_t sh;
2302 : 225 : if (shiftvec)
2303 : 65 : sh = *hptr;
2304 : : else
2305 : : sh = shift_val;
2306 : :
2307 : 225 : src = &sptr[sh * rsoffset];
2308 : 225 : dest = rptr;
2309 : 807 : for (n = 0; n < len - sh; n++)
2310 : : {
2311 : 582 : *dest = *src;
2312 : 582 : dest += rsoffset;
2313 : 582 : src += rsoffset;
2314 : : }
2315 : : src = sptr;
2316 : 494 : for ( n = 0; n < sh; n++)
2317 : : {
2318 : 269 : *dest = *src;
2319 : 269 : dest += rsoffset;
2320 : 269 : src += rsoffset;
2321 : : }
2322 : 225 : rptr += sstride[0];
2323 : 225 : sptr += sstride[0];
2324 : 225 : if (shiftvec)
2325 : 65 : hptr += hstride[0];
2326 : 225 : count[0]++;
2327 : 225 : n = 0;
2328 : 268 : while (count[n] == extent[n])
2329 : : {
2330 : 110 : count[n] = 0;
2331 : 110 : rptr -= ss_ex[n];
2332 : 110 : sptr -= ss_ex[n];
2333 : 110 : if (shiftvec)
2334 : 23 : hptr -= hs_ex[n];
2335 : 110 : n++;
2336 : 110 : if (n >= d - 1)
2337 : : {
2338 : : continue_loop = false;
2339 : : break;
2340 : : }
2341 : : else
2342 : : {
2343 : 43 : count[n]++;
2344 : 43 : rptr += sstride[n];
2345 : 43 : sptr += sstride[n];
2346 : 43 : if (shiftvec)
2347 : 14 : hptr += hstride[n];
2348 : : }
2349 : : }
2350 : : }
2351 : :
2352 : 918 : for (i = 0; i < arraysize; i++)
2353 : : {
2354 : 851 : gfc_constructor_append_expr (&result->value.constructor,
2355 : 851 : gfc_copy_expr (resultvec[i]),
2356 : : NULL);
2357 : : }
2358 : : return result;
2359 : : }
2360 : :
2361 : :
2362 : : gfc_expr *
2363 : 299 : gfc_simplify_dcmplx (gfc_expr *x, gfc_expr *y)
2364 : : {
2365 : 299 : return simplify_cmplx ("DCMPLX", x, y, gfc_default_double_kind);
2366 : : }
2367 : :
2368 : :
2369 : : gfc_expr *
2370 : 620 : gfc_simplify_dble (gfc_expr *e)
2371 : : {
2372 : 620 : gfc_expr *result = NULL;
2373 : 620 : int tmp1, tmp2;
2374 : :
2375 : 620 : if (e->expr_type != EXPR_CONSTANT)
2376 : : return NULL;
2377 : :
2378 : : /* For explicit conversion, turn off -Wconversion and -Wconversion-extra
2379 : : warnings. */
2380 : 119 : tmp1 = warn_conversion;
2381 : 119 : tmp2 = warn_conversion_extra;
2382 : 119 : warn_conversion = warn_conversion_extra = 0;
2383 : :
2384 : 119 : result = gfc_convert_constant (e, BT_REAL, gfc_default_double_kind);
2385 : :
2386 : 119 : warn_conversion = tmp1;
2387 : 119 : warn_conversion_extra = tmp2;
2388 : :
2389 : 119 : if (result == &gfc_bad_expr)
2390 : : return &gfc_bad_expr;
2391 : :
2392 : 119 : return range_check (result, "DBLE");
2393 : : }
2394 : :
2395 : :
2396 : : gfc_expr *
2397 : 40 : gfc_simplify_digits (gfc_expr *x)
2398 : : {
2399 : 40 : int i, digits;
2400 : :
2401 : 40 : i = gfc_validate_kind (x->ts.type, x->ts.kind, false);
2402 : :
2403 : 40 : switch (x->ts.type)
2404 : : {
2405 : 1 : case BT_INTEGER:
2406 : 1 : digits = gfc_integer_kinds[i].digits;
2407 : 1 : break;
2408 : :
2409 : 6 : case BT_UNSIGNED:
2410 : 6 : digits = gfc_unsigned_kinds[i].digits;
2411 : 6 : break;
2412 : :
2413 : 33 : case BT_REAL:
2414 : 33 : case BT_COMPLEX:
2415 : 33 : digits = gfc_real_kinds[i].digits;
2416 : 33 : break;
2417 : :
2418 : 0 : default:
2419 : 0 : gcc_unreachable ();
2420 : : }
2421 : :
2422 : 40 : return gfc_get_int_expr (gfc_default_integer_kind, NULL, digits);
2423 : : }
2424 : :
2425 : :
2426 : : gfc_expr *
2427 : 324 : gfc_simplify_dim (gfc_expr *x, gfc_expr *y)
2428 : : {
2429 : 324 : gfc_expr *result;
2430 : 324 : int kind;
2431 : :
2432 : 324 : if (x->expr_type != EXPR_CONSTANT || y->expr_type != EXPR_CONSTANT)
2433 : : return NULL;
2434 : :
2435 : 78 : kind = x->ts.kind > y->ts.kind ? x->ts.kind : y->ts.kind;
2436 : 78 : result = gfc_get_constant_expr (x->ts.type, kind, &x->where);
2437 : :
2438 : 78 : switch (x->ts.type)
2439 : : {
2440 : 36 : case BT_INTEGER:
2441 : 36 : if (mpz_cmp (x->value.integer, y->value.integer) > 0)
2442 : 15 : mpz_sub (result->value.integer, x->value.integer, y->value.integer);
2443 : : else
2444 : 21 : mpz_set_ui (result->value.integer, 0);
2445 : :
2446 : : break;
2447 : :
2448 : 42 : case BT_REAL:
2449 : 42 : if (mpfr_cmp (x->value.real, y->value.real) > 0)
2450 : 30 : mpfr_sub (result->value.real, x->value.real, y->value.real,
2451 : : GFC_RND_MODE);
2452 : : else
2453 : 12 : mpfr_set_ui (result->value.real, 0, GFC_RND_MODE);
2454 : :
2455 : : break;
2456 : :
2457 : 0 : default:
2458 : 0 : gfc_internal_error ("gfc_simplify_dim(): Bad type");
2459 : : }
2460 : :
2461 : 78 : return range_check (result, "DIM");
2462 : : }
2463 : :
2464 : :
2465 : : gfc_expr*
2466 : 246 : gfc_simplify_dot_product (gfc_expr *vector_a, gfc_expr *vector_b)
2467 : : {
2468 : : /* If vector_a is a zero-sized array, the result is 0 for INTEGER,
2469 : : REAL, and COMPLEX types and .false. for LOGICAL. */
2470 : 246 : if (vector_a->shape && mpz_get_si (vector_a->shape[0]) == 0)
2471 : : {
2472 : 30 : if (vector_a->ts.type == BT_LOGICAL)
2473 : 6 : return gfc_get_logical_expr (gfc_default_logical_kind, NULL, false);
2474 : : else
2475 : 24 : return gfc_get_int_expr (gfc_default_integer_kind, NULL, 0);
2476 : : }
2477 : :
2478 : 216 : if (!is_constant_array_expr (vector_a)
2479 : 216 : || !is_constant_array_expr (vector_b))
2480 : 176 : return NULL;
2481 : :
2482 : 40 : return compute_dot_product (vector_a, 1, 0, vector_b, 1, 0, true);
2483 : : }
2484 : :
2485 : :
2486 : : gfc_expr *
2487 : 34 : gfc_simplify_dprod (gfc_expr *x, gfc_expr *y)
2488 : : {
2489 : 34 : gfc_expr *a1, *a2, *result;
2490 : :
2491 : 34 : if (x->expr_type != EXPR_CONSTANT || y->expr_type != EXPR_CONSTANT)
2492 : : return NULL;
2493 : :
2494 : 6 : a1 = gfc_real2real (x, gfc_default_double_kind);
2495 : 6 : a2 = gfc_real2real (y, gfc_default_double_kind);
2496 : :
2497 : 6 : result = gfc_get_constant_expr (BT_REAL, gfc_default_double_kind, &x->where);
2498 : 6 : mpfr_mul (result->value.real, a1->value.real, a2->value.real, GFC_RND_MODE);
2499 : :
2500 : 6 : gfc_free_expr (a2);
2501 : 6 : gfc_free_expr (a1);
2502 : :
2503 : 6 : return range_check (result, "DPROD");
2504 : : }
2505 : :
2506 : :
2507 : : static gfc_expr *
2508 : 1876 : simplify_dshift (gfc_expr *arg1, gfc_expr *arg2, gfc_expr *shiftarg,
2509 : : bool right)
2510 : : {
2511 : 1876 : gfc_expr *result;
2512 : 1876 : int i, k, size, shift;
2513 : 1876 : bt type = BT_INTEGER;
2514 : :
2515 : 1876 : if (arg1->expr_type != EXPR_CONSTANT || arg2->expr_type != EXPR_CONSTANT
2516 : 1572 : || shiftarg->expr_type != EXPR_CONSTANT)
2517 : : return NULL;
2518 : :
2519 : 1488 : if (flag_unsigned && arg1->ts.type == BT_UNSIGNED)
2520 : : {
2521 : 12 : k = gfc_validate_kind (BT_UNSIGNED, arg1->ts.kind, false);
2522 : 12 : size = gfc_unsigned_kinds[k].bit_size;
2523 : 12 : type = BT_UNSIGNED;
2524 : : }
2525 : : else
2526 : : {
2527 : 1476 : k = gfc_validate_kind (BT_INTEGER, arg1->ts.kind, false);
2528 : 1476 : size = gfc_integer_kinds[k].bit_size;
2529 : : }
2530 : :
2531 : 1488 : gfc_extract_int (shiftarg, &shift);
2532 : :
2533 : : /* DSHIFTR(I,J,SHIFT) = DSHIFTL(I,J,SIZE-SHIFT). */
2534 : 1488 : if (right)
2535 : 744 : shift = size - shift;
2536 : :
2537 : 1488 : result = gfc_get_constant_expr (type, arg1->ts.kind, &arg1->where);
2538 : 1488 : mpz_set_ui (result->value.integer, 0);
2539 : :
2540 : 39456 : for (i = 0; i < shift; i++)
2541 : 36480 : if (mpz_tstbit (arg2->value.integer, size - shift + i))
2542 : 15006 : mpz_setbit (result->value.integer, i);
2543 : :
2544 : 37968 : for (i = 0; i < size - shift; i++)
2545 : 36480 : if (mpz_tstbit (arg1->value.integer, i))
2546 : 14424 : mpz_setbit (result->value.integer, shift + i);
2547 : :
2548 : : /* Convert to a signed value if needed. */
2549 : 1488 : if (type == BT_INTEGER)
2550 : 1476 : gfc_convert_mpz_to_signed (result->value.integer, size);
2551 : : else
2552 : 12 : gfc_reduce_unsigned (result);
2553 : :
2554 : : return result;
2555 : : }
2556 : :
2557 : :
2558 : : gfc_expr *
2559 : 938 : gfc_simplify_dshiftr (gfc_expr *arg1, gfc_expr *arg2, gfc_expr *shiftarg)
2560 : : {
2561 : 938 : return simplify_dshift (arg1, arg2, shiftarg, true);
2562 : : }
2563 : :
2564 : :
2565 : : gfc_expr *
2566 : 938 : gfc_simplify_dshiftl (gfc_expr *arg1, gfc_expr *arg2, gfc_expr *shiftarg)
2567 : : {
2568 : 938 : return simplify_dshift (arg1, arg2, shiftarg, false);
2569 : : }
2570 : :
2571 : :
2572 : : gfc_expr *
2573 : 1568 : gfc_simplify_eoshift (gfc_expr *array, gfc_expr *shift, gfc_expr *boundary,
2574 : : gfc_expr *dim)
2575 : : {
2576 : 1568 : bool temp_boundary;
2577 : 1568 : gfc_expr *bnd;
2578 : 1568 : gfc_expr *result;
2579 : 1568 : int which;
2580 : 1568 : gfc_expr **arrayvec, **resultvec;
2581 : 1568 : gfc_expr **rptr, **sptr;
2582 : 1568 : mpz_t size;
2583 : 1568 : size_t arraysize, i;
2584 : 1568 : gfc_constructor *array_ctor, *shift_ctor, *bnd_ctor;
2585 : 1568 : ssize_t shift_val, len;
2586 : 1568 : ssize_t count[GFC_MAX_DIMENSIONS], extent[GFC_MAX_DIMENSIONS],
2587 : : sstride[GFC_MAX_DIMENSIONS], a_extent[GFC_MAX_DIMENSIONS],
2588 : : a_stride[GFC_MAX_DIMENSIONS], ss_ex[GFC_MAX_DIMENSIONS + 1];
2589 : 1568 : ssize_t rsoffset;
2590 : 1568 : int d, n;
2591 : 1568 : bool continue_loop;
2592 : 1568 : gfc_expr **src, **dest;
2593 : 1568 : size_t s_len;
2594 : :
2595 : 1568 : if (!is_constant_array_expr (array))
2596 : : return NULL;
2597 : :
2598 : 60 : if (shift->rank > 0)
2599 : 13 : gfc_simplify_expr (shift, 1);
2600 : :
2601 : 60 : if (!gfc_is_constant_expr (shift))
2602 : : return NULL;
2603 : :
2604 : 60 : if (boundary)
2605 : : {
2606 : 29 : if (boundary->rank > 0)
2607 : 6 : gfc_simplify_expr (boundary, 1);
2608 : :
2609 : 29 : if (!gfc_is_constant_expr (boundary))
2610 : : return NULL;
2611 : : }
2612 : :
2613 : 48 : if (dim)
2614 : : {
2615 : 25 : if (!gfc_is_constant_expr (dim))
2616 : : return NULL;
2617 : 19 : which = mpz_get_si (dim->value.integer) - 1;
2618 : : }
2619 : : else
2620 : : which = 0;
2621 : :
2622 : 42 : s_len = 0;
2623 : 42 : if (boundary == NULL)
2624 : : {
2625 : 29 : temp_boundary = true;
2626 : 29 : switch (array->ts.type)
2627 : : {
2628 : :
2629 : 17 : case BT_INTEGER:
2630 : 17 : bnd = gfc_get_int_expr (array->ts.kind, NULL, 0);
2631 : 17 : break;
2632 : :
2633 : 6 : case BT_UNSIGNED:
2634 : 6 : bnd = gfc_get_unsigned_expr (array->ts.kind, NULL, 0);
2635 : 6 : break;
2636 : :
2637 : 0 : case BT_LOGICAL:
2638 : 0 : bnd = gfc_get_logical_expr (array->ts.kind, NULL, 0);
2639 : 0 : break;
2640 : :
2641 : 2 : case BT_REAL:
2642 : 2 : bnd = gfc_get_constant_expr (array->ts.type, array->ts.kind, &gfc_current_locus);
2643 : 2 : mpfr_set_ui (bnd->value.real, 0, GFC_RND_MODE);
2644 : 2 : break;
2645 : :
2646 : 1 : case BT_COMPLEX:
2647 : 1 : bnd = gfc_get_constant_expr (array->ts.type, array->ts.kind, &gfc_current_locus);
2648 : 1 : mpc_set_ui (bnd->value.complex, 0, GFC_RND_MODE);
2649 : 1 : break;
2650 : :
2651 : 3 : case BT_CHARACTER:
2652 : 3 : s_len = mpz_get_ui (array->ts.u.cl->length->value.integer);
2653 : 3 : bnd = gfc_get_character_expr (array->ts.kind, &gfc_current_locus, NULL, s_len);
2654 : 3 : break;
2655 : :
2656 : 0 : default:
2657 : 0 : gcc_unreachable();
2658 : :
2659 : : }
2660 : : }
2661 : : else
2662 : : {
2663 : : temp_boundary = false;
2664 : : bnd = boundary;
2665 : : }
2666 : :
2667 : 42 : gfc_array_size (array, &size);
2668 : 42 : arraysize = mpz_get_ui (size);
2669 : 42 : mpz_clear (size);
2670 : :
2671 : 42 : result = gfc_get_array_expr (array->ts.type, array->ts.kind, &array->where);
2672 : 42 : result->shape = gfc_copy_shape (array->shape, array->rank);
2673 : 42 : result->rank = array->rank;
2674 : 42 : result->ts = array->ts;
2675 : :
2676 : 42 : if (arraysize == 0)
2677 : 1 : goto final;
2678 : :
2679 : 41 : if (array->shape == NULL)
2680 : 1 : goto final;
2681 : :
2682 : 40 : arrayvec = XCNEWVEC (gfc_expr *, arraysize);
2683 : 40 : array_ctor = gfc_constructor_first (array->value.constructor);
2684 : 536 : for (i = 0; i < arraysize; i++)
2685 : : {
2686 : 456 : arrayvec[i] = array_ctor->expr;
2687 : 456 : array_ctor = gfc_constructor_next (array_ctor);
2688 : : }
2689 : :
2690 : 40 : resultvec = XCNEWVEC (gfc_expr *, arraysize);
2691 : :
2692 : 40 : extent[0] = 1;
2693 : 40 : count[0] = 0;
2694 : :
2695 : 110 : for (d=0; d < array->rank; d++)
2696 : : {
2697 : 70 : a_extent[d] = mpz_get_si (array->shape[d]);
2698 : 70 : a_stride[d] = d == 0 ? 1 : a_stride[d-1] * a_extent[d-1];
2699 : : }
2700 : :
2701 : 40 : if (shift->rank > 0)
2702 : : {
2703 : 13 : shift_ctor = gfc_constructor_first (shift->value.constructor);
2704 : 13 : shift_val = 0;
2705 : : }
2706 : : else
2707 : : {
2708 : 27 : shift_ctor = NULL;
2709 : 27 : shift_val = mpz_get_si (shift->value.integer);
2710 : : }
2711 : :
2712 : 40 : if (bnd->rank > 0)
2713 : 4 : bnd_ctor = gfc_constructor_first (bnd->value.constructor);
2714 : : else
2715 : : bnd_ctor = NULL;
2716 : :
2717 : : /* Shut up compiler */
2718 : 40 : len = 1;
2719 : 40 : rsoffset = 1;
2720 : :
2721 : 40 : n = 0;
2722 : 110 : for (d=0; d < array->rank; d++)
2723 : : {
2724 : 70 : if (d == which)
2725 : : {
2726 : 40 : rsoffset = a_stride[d];
2727 : 40 : len = a_extent[d];
2728 : : }
2729 : : else
2730 : : {
2731 : 30 : count[n] = 0;
2732 : 30 : extent[n] = a_extent[d];
2733 : 30 : sstride[n] = a_stride[d];
2734 : 30 : ss_ex[n] = sstride[n] * extent[n];
2735 : 30 : n++;
2736 : : }
2737 : : }
2738 : 40 : ss_ex[n] = 0;
2739 : :
2740 : 40 : continue_loop = true;
2741 : 40 : d = array->rank;
2742 : 40 : rptr = resultvec;
2743 : 40 : sptr = arrayvec;
2744 : :
2745 : 172 : while (continue_loop)
2746 : : {
2747 : 132 : ssize_t sh, delta;
2748 : :
2749 : 132 : if (shift_ctor)
2750 : 60 : sh = mpz_get_si (shift_ctor->expr->value.integer);
2751 : : else
2752 : : sh = shift_val;
2753 : :
2754 : 132 : if (( sh >= 0 ? sh : -sh ) > len)
2755 : : {
2756 : : delta = len;
2757 : : sh = len;
2758 : : }
2759 : : else
2760 : 118 : delta = (sh >= 0) ? sh: -sh;
2761 : :
2762 : 132 : if (sh > 0)
2763 : : {
2764 : 81 : src = &sptr[delta * rsoffset];
2765 : 81 : dest = rptr;
2766 : : }
2767 : : else
2768 : : {
2769 : 51 : src = sptr;
2770 : 51 : dest = &rptr[delta * rsoffset];
2771 : : }
2772 : :
2773 : 387 : for (n = 0; n < len - delta; n++)
2774 : : {
2775 : 255 : *dest = *src;
2776 : 255 : dest += rsoffset;
2777 : 255 : src += rsoffset;
2778 : : }
2779 : :
2780 : 132 : if (sh < 0)
2781 : 45 : dest = rptr;
2782 : :
2783 : 132 : n = delta;
2784 : :
2785 : 132 : if (bnd_ctor)
2786 : : {
2787 : 73 : while (n--)
2788 : : {
2789 : 47 : *dest = gfc_copy_expr (bnd_ctor->expr);
2790 : 47 : dest += rsoffset;
2791 : : }
2792 : : }
2793 : : else
2794 : : {
2795 : 260 : while (n--)
2796 : : {
2797 : 154 : *dest = gfc_copy_expr (bnd);
2798 : 154 : dest += rsoffset;
2799 : : }
2800 : : }
2801 : 132 : rptr += sstride[0];
2802 : 132 : sptr += sstride[0];
2803 : 132 : if (shift_ctor)
2804 : 60 : shift_ctor = gfc_constructor_next (shift_ctor);
2805 : :
2806 : 132 : if (bnd_ctor)
2807 : 26 : bnd_ctor = gfc_constructor_next (bnd_ctor);
2808 : :
2809 : 132 : count[0]++;
2810 : 132 : n = 0;
2811 : 155 : while (count[n] == extent[n])
2812 : : {
2813 : 63 : count[n] = 0;
2814 : 63 : rptr -= ss_ex[n];
2815 : 63 : sptr -= ss_ex[n];
2816 : 63 : n++;
2817 : 63 : if (n >= d - 1)
2818 : : {
2819 : : continue_loop = false;
2820 : : break;
2821 : : }
2822 : : else
2823 : : {
2824 : 23 : count[n]++;
2825 : 23 : rptr += sstride[n];
2826 : 23 : sptr += sstride[n];
2827 : : }
2828 : : }
2829 : : }
2830 : :
2831 : 496 : for (i = 0; i < arraysize; i++)
2832 : : {
2833 : 456 : gfc_constructor_append_expr (&result->value.constructor,
2834 : 456 : gfc_copy_expr (resultvec[i]),
2835 : : NULL);
2836 : : }
2837 : :
2838 : 40 : final:
2839 : 42 : if (temp_boundary)
2840 : 29 : gfc_free_expr (bnd);
2841 : :
2842 : : return result;
2843 : : }
2844 : :
2845 : : gfc_expr *
2846 : 169 : gfc_simplify_erf (gfc_expr *x)
2847 : : {
2848 : 169 : gfc_expr *result;
2849 : :
2850 : 169 : if (x->expr_type != EXPR_CONSTANT)
2851 : : return NULL;
2852 : :
2853 : 35 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
2854 : 35 : mpfr_erf (result->value.real, x->value.real, GFC_RND_MODE);
2855 : :
2856 : 35 : return range_check (result, "ERF");
2857 : : }
2858 : :
2859 : :
2860 : : gfc_expr *
2861 : 242 : gfc_simplify_erfc (gfc_expr *x)
2862 : : {
2863 : 242 : gfc_expr *result;
2864 : :
2865 : 242 : if (x->expr_type != EXPR_CONSTANT)
2866 : : return NULL;
2867 : :
2868 : 36 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
2869 : 36 : mpfr_erfc (result->value.real, x->value.real, GFC_RND_MODE);
2870 : :
2871 : 36 : return range_check (result, "ERFC");
2872 : : }
2873 : :
2874 : :
2875 : : /* Helper functions to simplify ERFC_SCALED(x) = ERFC(x) * EXP(X**2). */
2876 : :
2877 : : #define MAX_ITER 200
2878 : : #define ARG_LIMIT 12
2879 : :
2880 : : /* Calculate ERFC_SCALED directly by its definition:
2881 : :
2882 : : ERFC_SCALED(x) = ERFC(x) * EXP(X**2)
2883 : :
2884 : : using a large precision for intermediate results. This is used for all
2885 : : but large values of the argument. */
2886 : : static void
2887 : 39 : fullprec_erfc_scaled (mpfr_t res, mpfr_t arg)
2888 : : {
2889 : 39 : mpfr_prec_t prec;
2890 : 39 : mpfr_t a, b;
2891 : :
2892 : 39 : prec = mpfr_get_default_prec ();
2893 : 39 : mpfr_set_default_prec (10 * prec);
2894 : :
2895 : 39 : mpfr_init (a);
2896 : 39 : mpfr_init (b);
2897 : :
2898 : 39 : mpfr_set (a, arg, GFC_RND_MODE);
2899 : 39 : mpfr_sqr (b, a, GFC_RND_MODE);
2900 : 39 : mpfr_exp (b, b, GFC_RND_MODE);
2901 : 39 : mpfr_erfc (a, a, GFC_RND_MODE);
2902 : 39 : mpfr_mul (a, a, b, GFC_RND_MODE);
2903 : :
2904 : 39 : mpfr_set (res, a, GFC_RND_MODE);
2905 : 39 : mpfr_set_default_prec (prec);
2906 : :
2907 : 39 : mpfr_clear (a);
2908 : 39 : mpfr_clear (b);
2909 : 39 : }
2910 : :
2911 : : /* Calculate ERFC_SCALED using a power series expansion in 1/arg:
2912 : :
2913 : : ERFC_SCALED(x) = 1 / (x * sqrt(pi))
2914 : : * (1 + Sum_n (-1)**n * (1 * 3 * 5 * ... * (2n-1))
2915 : : / (2 * x**2)**n)
2916 : :
2917 : : This is used for large values of the argument. Intermediate calculations
2918 : : are performed with twice the precision. We don't do a fixed number of
2919 : : iterations of the sum, but stop when it has converged to the required
2920 : : precision. */
2921 : : static void
2922 : 10 : asympt_erfc_scaled (mpfr_t res, mpfr_t arg)
2923 : : {
2924 : 10 : mpfr_t sum, x, u, v, w, oldsum, sumtrunc;
2925 : 10 : mpz_t num;
2926 : 10 : mpfr_prec_t prec;
2927 : 10 : unsigned i;
2928 : :
2929 : 10 : prec = mpfr_get_default_prec ();
2930 : 10 : mpfr_set_default_prec (2 * prec);
2931 : :
2932 : 10 : mpfr_init (sum);
2933 : 10 : mpfr_init (x);
2934 : 10 : mpfr_init (u);
2935 : 10 : mpfr_init (v);
2936 : 10 : mpfr_init (w);
2937 : 10 : mpz_init (num);
2938 : :
2939 : 10 : mpfr_init (oldsum);
2940 : 10 : mpfr_init (sumtrunc);
2941 : 10 : mpfr_set_prec (oldsum, prec);
2942 : 10 : mpfr_set_prec (sumtrunc, prec);
2943 : :
2944 : 10 : mpfr_set (x, arg, GFC_RND_MODE);
2945 : 10 : mpfr_set_ui (sum, 1, GFC_RND_MODE);
2946 : 10 : mpz_set_ui (num, 1);
2947 : :
2948 : 10 : mpfr_set (u, x, GFC_RND_MODE);
2949 : 10 : mpfr_sqr (u, u, GFC_RND_MODE);
2950 : 10 : mpfr_mul_ui (u, u, 2, GFC_RND_MODE);
2951 : 10 : mpfr_pow_si (u, u, -1, GFC_RND_MODE);
2952 : :
2953 : 132 : for (i = 1; i < MAX_ITER; i++)
2954 : : {
2955 : 132 : mpfr_set (oldsum, sum, GFC_RND_MODE);
2956 : :
2957 : 132 : mpz_mul_ui (num, num, 2 * i - 1);
2958 : 132 : mpz_neg (num, num);
2959 : :
2960 : 132 : mpfr_set (w, u, GFC_RND_MODE);
2961 : 132 : mpfr_pow_ui (w, w, i, GFC_RND_MODE);
2962 : :
2963 : 132 : mpfr_set_z (v, num, GFC_RND_MODE);
2964 : 132 : mpfr_mul (v, v, w, GFC_RND_MODE);
2965 : :
2966 : 132 : mpfr_add (sum, sum, v, GFC_RND_MODE);
2967 : :
2968 : 132 : mpfr_set (sumtrunc, sum, GFC_RND_MODE);
2969 : 132 : if (mpfr_cmp (sumtrunc, oldsum) == 0)
2970 : : break;
2971 : : }
2972 : :
2973 : : /* We should have converged by now; otherwise, ARG_LIMIT is probably
2974 : : set too low. */
2975 : 10 : gcc_assert (i < MAX_ITER);
2976 : :
2977 : : /* Divide by x * sqrt(Pi). */
2978 : 10 : mpfr_const_pi (u, GFC_RND_MODE);
2979 : 10 : mpfr_sqrt (u, u, GFC_RND_MODE);
2980 : 10 : mpfr_mul (u, u, x, GFC_RND_MODE);
2981 : 10 : mpfr_div (sum, sum, u, GFC_RND_MODE);
2982 : :
2983 : 10 : mpfr_set (res, sum, GFC_RND_MODE);
2984 : 10 : mpfr_set_default_prec (prec);
2985 : :
2986 : 10 : mpfr_clears (sum, x, u, v, w, oldsum, sumtrunc, NULL);
2987 : 10 : mpz_clear (num);
2988 : 10 : }
2989 : :
2990 : :
2991 : : gfc_expr *
2992 : 143 : gfc_simplify_erfc_scaled (gfc_expr *x)
2993 : : {
2994 : 143 : gfc_expr *result;
2995 : :
2996 : 143 : if (x->expr_type != EXPR_CONSTANT)
2997 : : return NULL;
2998 : :
2999 : 49 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
3000 : 49 : if (mpfr_cmp_d (x->value.real, ARG_LIMIT) >= 0)
3001 : 10 : asympt_erfc_scaled (result->value.real, x->value.real);
3002 : : else
3003 : 39 : fullprec_erfc_scaled (result->value.real, x->value.real);
3004 : :
3005 : 49 : return range_check (result, "ERFC_SCALED");
3006 : : }
3007 : :
3008 : : #undef MAX_ITER
3009 : : #undef ARG_LIMIT
3010 : :
3011 : :
3012 : : gfc_expr *
3013 : 3629 : gfc_simplify_epsilon (gfc_expr *e)
3014 : : {
3015 : 3629 : gfc_expr *result;
3016 : 3629 : int i;
3017 : :
3018 : 3629 : i = gfc_validate_kind (e->ts.type, e->ts.kind, false);
3019 : :
3020 : 3629 : result = gfc_get_constant_expr (BT_REAL, e->ts.kind, &e->where);
3021 : 3629 : mpfr_set (result->value.real, gfc_real_kinds[i].epsilon, GFC_RND_MODE);
3022 : :
3023 : 3629 : return range_check (result, "EPSILON");
3024 : : }
3025 : :
3026 : :
3027 : : gfc_expr *
3028 : 1212 : gfc_simplify_exp (gfc_expr *x)
3029 : : {
3030 : 1212 : gfc_expr *result;
3031 : :
3032 : 1212 : if (x->expr_type != EXPR_CONSTANT)
3033 : : return NULL;
3034 : :
3035 : 145 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
3036 : :
3037 : 145 : switch (x->ts.type)
3038 : : {
3039 : 82 : case BT_REAL:
3040 : 82 : mpfr_exp (result->value.real, x->value.real, GFC_RND_MODE);
3041 : 82 : break;
3042 : :
3043 : 63 : case BT_COMPLEX:
3044 : 63 : gfc_set_model_kind (x->ts.kind);
3045 : 63 : mpc_exp (result->value.complex, x->value.complex, GFC_MPC_RND_MODE);
3046 : 63 : break;
3047 : :
3048 : 0 : default:
3049 : 0 : gfc_internal_error ("in gfc_simplify_exp(): Bad type");
3050 : : }
3051 : :
3052 : 145 : return range_check (result, "EXP");
3053 : : }
3054 : :
3055 : :
3056 : : gfc_expr *
3057 : 1020 : gfc_simplify_exponent (gfc_expr *x)
3058 : : {
3059 : 1020 : long int val;
3060 : 1020 : gfc_expr *result;
3061 : :
3062 : 1020 : if (x->expr_type != EXPR_CONSTANT)
3063 : : return NULL;
3064 : :
3065 : 150 : result = gfc_get_constant_expr (BT_INTEGER, gfc_default_integer_kind,
3066 : : &x->where);
3067 : :
3068 : : /* EXPONENT(inf) = EXPONENT(nan) = HUGE(0) */
3069 : 150 : if (mpfr_inf_p (x->value.real) || mpfr_nan_p (x->value.real))
3070 : : {
3071 : 18 : int i = gfc_validate_kind (BT_INTEGER, gfc_default_integer_kind, false);
3072 : 18 : mpz_set (result->value.integer, gfc_integer_kinds[i].huge);
3073 : 18 : return result;
3074 : : }
3075 : :
3076 : : /* EXPONENT(+/- 0.0) = 0 */
3077 : 132 : if (mpfr_zero_p (x->value.real))
3078 : : {
3079 : 12 : mpz_set_ui (result->value.integer, 0);
3080 : 12 : return result;
3081 : : }
3082 : :
3083 : 120 : gfc_set_model (x->value.real);
3084 : :
3085 : 120 : val = (long int) mpfr_get_exp (x->value.real);
3086 : 120 : mpz_set_si (result->value.integer, val);
3087 : :
3088 : 120 : return range_check (result, "EXPONENT");
3089 : : }
3090 : :
3091 : :
3092 : : gfc_expr *
3093 : 60 : gfc_simplify_failed_or_stopped_images (gfc_expr *team ATTRIBUTE_UNUSED,
3094 : : gfc_expr *kind)
3095 : : {
3096 : 60 : if (flag_coarray == GFC_FCOARRAY_NONE)
3097 : : {
3098 : 0 : gfc_current_locus = *gfc_current_intrinsic_where;
3099 : 0 : gfc_fatal_error ("Coarrays disabled at %C, use %<-fcoarray=%> to enable");
3100 : : return &gfc_bad_expr;
3101 : : }
3102 : :
3103 : 60 : if (flag_coarray == GFC_FCOARRAY_SINGLE)
3104 : : {
3105 : 12 : gfc_expr *result;
3106 : 12 : int actual_kind;
3107 : 12 : if (kind)
3108 : 8 : gfc_extract_int (kind, &actual_kind);
3109 : : else
3110 : 4 : actual_kind = gfc_default_integer_kind;
3111 : :
3112 : 12 : result = gfc_get_array_expr (BT_INTEGER, actual_kind, &gfc_current_locus);
3113 : 12 : result->rank = 1;
3114 : 12 : return result;
3115 : : }
3116 : :
3117 : : /* For fcoarray = lib no simplification is possible, because it is not known
3118 : : what images failed or are stopped at compile time. */
3119 : : return NULL;
3120 : : }
3121 : :
3122 : :
3123 : : gfc_expr *
3124 : 0 : gfc_simplify_get_team (gfc_expr *level ATTRIBUTE_UNUSED)
3125 : : {
3126 : 0 : if (flag_coarray == GFC_FCOARRAY_NONE)
3127 : : {
3128 : 0 : gfc_current_locus = *gfc_current_intrinsic_where;
3129 : 0 : gfc_fatal_error ("Coarrays disabled at %C, use %<-fcoarray=%> to enable");
3130 : : return &gfc_bad_expr;
3131 : : }
3132 : :
3133 : 0 : if (flag_coarray == GFC_FCOARRAY_SINGLE)
3134 : : {
3135 : 0 : gfc_expr *result;
3136 : 0 : result = gfc_get_array_expr (BT_INTEGER, gfc_default_integer_kind, &gfc_current_locus);
3137 : 0 : result->rank = 0;
3138 : 0 : return result;
3139 : : }
3140 : :
3141 : : /* For fcoarray = lib no simplification is possible, because it is not known
3142 : : what images failed or are stopped at compile time. */
3143 : : return NULL;
3144 : : }
3145 : :
3146 : :
3147 : : gfc_expr *
3148 : 865 : gfc_simplify_float (gfc_expr *a)
3149 : : {
3150 : 865 : gfc_expr *result;
3151 : :
3152 : 865 : if (a->expr_type != EXPR_CONSTANT)
3153 : : return NULL;
3154 : :
3155 : 493 : result = gfc_int2real (a, gfc_default_real_kind);
3156 : :
3157 : 493 : return range_check (result, "FLOAT");
3158 : : }
3159 : :
3160 : :
3161 : : static bool
3162 : 2384 : is_last_ref_vtab (gfc_expr *e)
3163 : : {
3164 : 2384 : gfc_ref *ref;
3165 : 2384 : gfc_component *comp = NULL;
3166 : :
3167 : 2384 : if (e->expr_type != EXPR_VARIABLE)
3168 : : return false;
3169 : :
3170 : 3424 : for (ref = e->ref; ref; ref = ref->next)
3171 : 1058 : if (ref->type == REF_COMPONENT)
3172 : 444 : comp = ref->u.c.component;
3173 : :
3174 : 2366 : if (!e->ref || !comp)
3175 : 1946 : return e->symtree->n.sym->attr.vtab;
3176 : :
3177 : 420 : if (comp->name[0] == '_' && strcmp (comp->name, "_vptr") == 0)
3178 : 147 : return true;
3179 : :
3180 : : return false;
3181 : : }
3182 : :
3183 : :
3184 : : gfc_expr *
3185 : 542 : gfc_simplify_extends_type_of (gfc_expr *a, gfc_expr *mold)
3186 : : {
3187 : : /* Avoid simplification of resolved symbols. */
3188 : 542 : if (is_last_ref_vtab (a) || is_last_ref_vtab (mold))
3189 : : return NULL;
3190 : :
3191 : 324 : if (a->ts.type == BT_DERIVED && mold->ts.type == BT_DERIVED)
3192 : 27 : return gfc_get_logical_expr (gfc_default_logical_kind, &a->where,
3193 : 27 : gfc_type_is_extension_of (mold->ts.u.derived,
3194 : 27 : a->ts.u.derived));
3195 : :
3196 : 297 : if (UNLIMITED_POLY (a) || UNLIMITED_POLY (mold))
3197 : : return NULL;
3198 : :
3199 : 105 : if ((a->ts.type == BT_CLASS && !gfc_expr_attr (a).class_ok)
3200 : 239 : || (mold->ts.type == BT_CLASS && !gfc_expr_attr (mold).class_ok))
3201 : 4 : return NULL;
3202 : :
3203 : : /* Return .false. if the dynamic type can never be an extension. */
3204 : 104 : if ((a->ts.type == BT_CLASS && mold->ts.type == BT_CLASS
3205 : 40 : && !gfc_type_is_extension_of
3206 : 40 : (CLASS_DATA (mold)->ts.u.derived,
3207 : 40 : CLASS_DATA (a)->ts.u.derived)
3208 : 5 : && !gfc_type_is_extension_of
3209 : 5 : (CLASS_DATA (a)->ts.u.derived,
3210 : 5 : CLASS_DATA (mold)->ts.u.derived))
3211 : 127 : || (a->ts.type == BT_DERIVED && mold->ts.type == BT_CLASS
3212 : 27 : && !gfc_type_is_extension_of
3213 : 27 : (CLASS_DATA (mold)->ts.u.derived,
3214 : : a->ts.u.derived))
3215 : 253 : || (a->ts.type == BT_CLASS && mold->ts.type == BT_DERIVED
3216 : 64 : && !gfc_type_is_extension_of
3217 : 64 : (mold->ts.u.derived,
3218 : 64 : CLASS_DATA (a)->ts.u.derived)
3219 : 19 : && !gfc_type_is_extension_of
3220 : 19 : (CLASS_DATA (a)->ts.u.derived,
3221 : : mold->ts.u.derived)))
3222 : 13 : return gfc_get_logical_expr (gfc_default_logical_kind, &a->where, false);
3223 : :
3224 : : /* Return .true. if the dynamic type is guaranteed to be an extension. */
3225 : 96 : if (a->ts.type == BT_CLASS && mold->ts.type == BT_DERIVED
3226 : 178 : && gfc_type_is_extension_of (mold->ts.u.derived,
3227 : 60 : CLASS_DATA (a)->ts.u.derived))
3228 : 45 : return gfc_get_logical_expr (gfc_default_logical_kind, &a->where, true);
3229 : :
3230 : : return NULL;
3231 : : }
3232 : :
3233 : :
3234 : : gfc_expr *
3235 : 759 : gfc_simplify_same_type_as (gfc_expr *a, gfc_expr *b)
3236 : : {
3237 : : /* Avoid simplification of resolved symbols. */
3238 : 759 : if (is_last_ref_vtab (a) || is_last_ref_vtab (b))
3239 : : return NULL;
3240 : :
3241 : : /* Return .false. if the dynamic type can never be the
3242 : : same. */
3243 : 657 : if (((a->ts.type == BT_CLASS && gfc_expr_attr (a).class_ok)
3244 : 103 : || (b->ts.type == BT_CLASS && gfc_expr_attr (b).class_ok))
3245 : 740 : && !gfc_type_compatible (&a->ts, &b->ts)
3246 : 801 : && !gfc_type_compatible (&b->ts, &a->ts))
3247 : 6 : return gfc_get_logical_expr (gfc_default_logical_kind, &a->where, false);
3248 : :
3249 : 753 : if (a->ts.type != BT_DERIVED || b->ts.type != BT_DERIVED)
3250 : : return NULL;
3251 : :
3252 : 18 : return gfc_get_logical_expr (gfc_default_logical_kind, &a->where,
3253 : 18 : gfc_compare_derived_types (a->ts.u.derived,
3254 : 18 : b->ts.u.derived));
3255 : : }
3256 : :
3257 : :
3258 : : gfc_expr *
3259 : 414 : gfc_simplify_floor (gfc_expr *e, gfc_expr *k)
3260 : : {
3261 : 414 : gfc_expr *result;
3262 : 414 : mpfr_t floor;
3263 : 414 : int kind;
3264 : :
3265 : 414 : kind = get_kind (BT_INTEGER, k, "FLOOR", gfc_default_integer_kind);
3266 : 414 : if (kind == -1)
3267 : 0 : gfc_internal_error ("gfc_simplify_floor(): Bad kind");
3268 : :
3269 : 414 : if (e->expr_type != EXPR_CONSTANT)
3270 : : return NULL;
3271 : :
3272 : 28 : mpfr_init2 (floor, mpfr_get_prec (e->value.real));
3273 : 28 : mpfr_floor (floor, e->value.real);
3274 : :
3275 : 28 : result = gfc_get_constant_expr (BT_INTEGER, kind, &e->where);
3276 : 28 : gfc_mpfr_to_mpz (result->value.integer, floor, &e->where);
3277 : :
3278 : 28 : mpfr_clear (floor);
3279 : :
3280 : 28 : return range_check (result, "FLOOR");
3281 : : }
3282 : :
3283 : :
3284 : : gfc_expr *
3285 : 264 : gfc_simplify_fraction (gfc_expr *x)
3286 : : {
3287 : 264 : gfc_expr *result;
3288 : 264 : mpfr_exp_t e;
3289 : :
3290 : 264 : if (x->expr_type != EXPR_CONSTANT)
3291 : : return NULL;
3292 : :
3293 : 84 : result = gfc_get_constant_expr (BT_REAL, x->ts.kind, &x->where);
3294 : :
3295 : : /* FRACTION(inf) = NaN. */
3296 : 84 : if (mpfr_inf_p (x->value.real))
3297 : : {
3298 : 12 : mpfr_set_nan (result->value.real);
3299 : 12 : return result;
3300 : : }
3301 : :
3302 : : /* mpfr_frexp() correctly handles zeros and NaNs. */
3303 : 72 : mpfr_frexp (&e, result->value.real, x->value.real, GFC_RND_MODE);
3304 : :
3305 : 72 : return range_check (result, "FRACTION");
3306 : : }
3307 : :
3308 : :
3309 : : gfc_expr *
3310 : 204 : gfc_simplify_gamma (gfc_expr *x)
3311 : : {
3312 : 204 : gfc_expr *result;
3313 : :
3314 : 204 : if (x->expr_type != EXPR_CONSTANT)
3315 : : return NULL;
3316 : :
3317 : 54 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
3318 : 54 : mpfr_gamma (result->value.real, x->value.real, GFC_RND_MODE);
3319 : :
3320 : 54 : return range_check (result, "GAMMA");
3321 : : }
3322 : :
3323 : :
3324 : : gfc_expr *
3325 : 5659 : gfc_simplify_huge (gfc_expr *e)
3326 : : {
3327 : 5659 : gfc_expr *result;
3328 : 5659 : int i;
3329 : :
3330 : 5659 : i = gfc_validate_kind (e->ts.type, e->ts.kind, false);
3331 : 5659 : result = gfc_get_constant_expr (e->ts.type, e->ts.kind, &e->where);
3332 : :
3333 : 5659 : switch (e->ts.type)
3334 : : {
3335 : 4279 : case BT_INTEGER:
3336 : 4279 : mpz_set (result->value.integer, gfc_integer_kinds[i].huge);
3337 : 4279 : break;
3338 : :
3339 : 84 : case BT_UNSIGNED:
3340 : 84 : mpz_set (result->value.integer, gfc_unsigned_kinds[i].huge);
3341 : 84 : break;
3342 : :
3343 : 1296 : case BT_REAL:
3344 : 1296 : mpfr_set (result->value.real, gfc_real_kinds[i].huge, GFC_RND_MODE);
3345 : 1296 : break;
3346 : :
3347 : 0 : default:
3348 : 0 : gcc_unreachable ();
3349 : : }
3350 : :
3351 : 5659 : return result;
3352 : : }
3353 : :
3354 : :
3355 : : gfc_expr *
3356 : 36 : gfc_simplify_hypot (gfc_expr *x, gfc_expr *y)
3357 : : {
3358 : 36 : gfc_expr *result;
3359 : :
3360 : 36 : if (x->expr_type != EXPR_CONSTANT || y->expr_type != EXPR_CONSTANT)
3361 : : return NULL;
3362 : :
3363 : 12 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
3364 : 12 : mpfr_hypot (result->value.real, x->value.real, y->value.real, GFC_RND_MODE);
3365 : 12 : return range_check (result, "HYPOT");
3366 : : }
3367 : :
3368 : :
3369 : : /* We use the processor's collating sequence, because all
3370 : : systems that gfortran currently works on are ASCII. */
3371 : :
3372 : : gfc_expr *
3373 : 9875 : gfc_simplify_iachar (gfc_expr *e, gfc_expr *kind)
3374 : : {
3375 : 9875 : gfc_expr *result;
3376 : 9875 : gfc_char_t index;
3377 : 9875 : int k;
3378 : :
3379 : 9875 : if (e->expr_type != EXPR_CONSTANT)
3380 : : return NULL;
3381 : :
3382 : 4962 : if (e->value.character.length != 1)
3383 : : {
3384 : 0 : gfc_error ("Argument of IACHAR at %L must be of length one", &e->where);
3385 : 0 : return &gfc_bad_expr;
3386 : : }
3387 : :
3388 : 4962 : index = e->value.character.string[0];
3389 : :
3390 : 4962 : if (warn_surprising && index > 127)
3391 : 1 : gfc_warning (OPT_Wsurprising,
3392 : : "Argument of IACHAR function at %L outside of range 0..127",
3393 : : &e->where);
3394 : :
3395 : 4962 : k = get_kind (BT_INTEGER, kind, "IACHAR", gfc_default_integer_kind);
3396 : 4962 : if (k == -1)
3397 : : return &gfc_bad_expr;
3398 : :
3399 : 4962 : result = gfc_get_int_expr (k, &e->where, index);
3400 : :
3401 : 4962 : return range_check (result, "IACHAR");
3402 : : }
3403 : :
3404 : :
3405 : : static gfc_expr *
3406 : 96 : do_bit_and (gfc_expr *result, gfc_expr *e)
3407 : : {
3408 : 96 : if (flag_unsigned)
3409 : : {
3410 : 72 : gcc_assert ((e->ts.type == BT_INTEGER || e->ts.type == BT_UNSIGNED)
3411 : : && e->expr_type == EXPR_CONSTANT);
3412 : 72 : gcc_assert ((result->ts.type == BT_INTEGER
3413 : : || result->ts.type == BT_UNSIGNED)
3414 : : && result->expr_type == EXPR_CONSTANT);
3415 : : }
3416 : : else
3417 : : {
3418 : 24 : gcc_assert (e->ts.type == BT_INTEGER && e->expr_type == EXPR_CONSTANT);
3419 : 24 : gcc_assert (result->ts.type == BT_INTEGER
3420 : : && result->expr_type == EXPR_CONSTANT);
3421 : : }
3422 : :
3423 : 96 : mpz_and (result->value.integer, result->value.integer, e->value.integer);
3424 : 96 : return result;
3425 : : }
3426 : :
3427 : :
3428 : : gfc_expr *
3429 : 217 : gfc_simplify_iall (gfc_expr *array, gfc_expr *dim, gfc_expr *mask)
3430 : : {
3431 : 217 : return simplify_transformation (array, dim, mask, -1, do_bit_and);
3432 : : }
3433 : :
3434 : :
3435 : : static gfc_expr *
3436 : 96 : do_bit_ior (gfc_expr *result, gfc_expr *e)
3437 : : {
3438 : 96 : if (flag_unsigned)
3439 : : {
3440 : 72 : gcc_assert ((e->ts.type == BT_INTEGER || e->ts.type == BT_UNSIGNED)
3441 : : && e->expr_type == EXPR_CONSTANT);
3442 : 72 : gcc_assert ((result->ts.type == BT_INTEGER
3443 : : || result->ts.type == BT_UNSIGNED)
3444 : : && result->expr_type == EXPR_CONSTANT);
3445 : : }
3446 : : else
3447 : : {
3448 : 24 : gcc_assert (e->ts.type == BT_INTEGER && e->expr_type == EXPR_CONSTANT);
3449 : 24 : gcc_assert (result->ts.type == BT_INTEGER
3450 : : && result->expr_type == EXPR_CONSTANT);
3451 : : }
3452 : :
3453 : 96 : mpz_ior (result->value.integer, result->value.integer, e->value.integer);
3454 : 96 : return result;
3455 : : }
3456 : :
3457 : :
3458 : : gfc_expr *
3459 : 169 : gfc_simplify_iany (gfc_expr *array, gfc_expr *dim, gfc_expr *mask)
3460 : : {
3461 : 169 : return simplify_transformation (array, dim, mask, 0, do_bit_ior);
3462 : : }
3463 : :
3464 : :
3465 : : gfc_expr *
3466 : 1859 : gfc_simplify_iand (gfc_expr *x, gfc_expr *y)
3467 : : {
3468 : 1859 : gfc_expr *result;
3469 : 1859 : bt type;
3470 : :
3471 : 1859 : if (x->expr_type != EXPR_CONSTANT || y->expr_type != EXPR_CONSTANT)
3472 : : return NULL;
3473 : :
3474 : 269 : type = x->ts.type == BT_UNSIGNED ? BT_UNSIGNED : BT_INTEGER;
3475 : 269 : result = gfc_get_constant_expr (type, x->ts.kind, &x->where);
3476 : 269 : mpz_and (result->value.integer, x->value.integer, y->value.integer);
3477 : :
3478 : 269 : return range_check (result, "IAND");
3479 : : }
3480 : :
3481 : :
3482 : : gfc_expr *
3483 : 448 : gfc_simplify_ibclr (gfc_expr *x, gfc_expr *y)
3484 : : {
3485 : 448 : gfc_expr *result;
3486 : 448 : int k, pos;
3487 : :
3488 : 448 : if (x->expr_type != EXPR_CONSTANT || y->expr_type != EXPR_CONSTANT)
3489 : : return NULL;
3490 : :
3491 : 66 : if (!gfc_check_bitfcn (x, y))
3492 : : return &gfc_bad_expr;
3493 : :
3494 : 58 : gfc_extract_int (y, &pos);
3495 : :
3496 : 58 : k = gfc_validate_kind (x->ts.type, x->ts.kind, false);
3497 : :
3498 : 58 : result = gfc_copy_expr (x);
3499 : : /* Drop any separate memory representation of x to avoid potential
3500 : : inconsistencies in result. */
3501 : 58 : if (result->representation.string)
3502 : : {
3503 : 12 : free (result->representation.string);
3504 : 12 : result->representation.string = NULL;
3505 : : }
3506 : :
3507 : 58 : if (x->ts.type == BT_INTEGER)
3508 : : {
3509 : 52 : gfc_convert_mpz_to_unsigned (result->value.integer,
3510 : : gfc_integer_kinds[k].bit_size);
3511 : :
3512 : 52 : mpz_clrbit (result->value.integer, pos);
3513 : :
3514 : 52 : gfc_convert_mpz_to_signed (result->value.integer,
3515 : : gfc_integer_kinds[k].bit_size);
3516 : : }
3517 : : else
3518 : 6 : mpz_clrbit (result->value.integer, pos);
3519 : :
3520 : : return result;
3521 : : }
3522 : :
3523 : :
3524 : : gfc_expr *
3525 : 106 : gfc_simplify_ibits (gfc_expr *x, gfc_expr *y, gfc_expr *z)
3526 : : {
3527 : 106 : gfc_expr *result;
3528 : 106 : int pos, len;
3529 : 106 : int i, k, bitsize;
3530 : 106 : int *bits;
3531 : :
3532 : 106 : if (x->expr_type != EXPR_CONSTANT
3533 : 43 : || y->expr_type != EXPR_CONSTANT
3534 : 33 : || z->expr_type != EXPR_CONSTANT)
3535 : : return NULL;
3536 : :
3537 : 28 : if (!gfc_check_ibits (x, y, z))
3538 : : return &gfc_bad_expr;
3539 : :
3540 : 16 : gfc_extract_int (y, &pos);
3541 : 16 : gfc_extract_int (z, &len);
3542 : :
3543 : 16 : k = gfc_validate_kind (x->ts.type, x->ts.kind, false);
3544 : :
3545 : 16 : if (x->ts.type == BT_INTEGER)
3546 : 10 : bitsize = gfc_integer_kinds[k].bit_size;
3547 : : else
3548 : 6 : bitsize = gfc_unsigned_kinds[k].bit_size;
3549 : :
3550 : :
3551 : 16 : if (pos + len > bitsize)
3552 : : {
3553 : 0 : gfc_error ("Sum of second and third arguments of IBITS exceeds "
3554 : : "bit size at %L", &y->where);
3555 : 0 : return &gfc_bad_expr;
3556 : : }
3557 : :
3558 : 16 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
3559 : :
3560 : 16 : if (x->ts.type == BT_INTEGER)
3561 : 10 : gfc_convert_mpz_to_unsigned (result->value.integer,
3562 : : gfc_integer_kinds[k].bit_size);
3563 : :
3564 : 16 : bits = XCNEWVEC (int, bitsize);
3565 : :
3566 : 576 : for (i = 0; i < bitsize; i++)
3567 : 544 : bits[i] = 0;
3568 : :
3569 : 60 : for (i = 0; i < len; i++)
3570 : 44 : bits[i] = mpz_tstbit (x->value.integer, i + pos);
3571 : :
3572 : 560 : for (i = 0; i < bitsize; i++)
3573 : : {
3574 : 544 : if (bits[i] == 0)
3575 : 544 : mpz_clrbit (result->value.integer, i);
3576 : 0 : else if (bits[i] == 1)
3577 : 0 : mpz_setbit (result->value.integer, i);
3578 : : else
3579 : 0 : gfc_internal_error ("IBITS: Bad bit");
3580 : : }
3581 : :
3582 : 16 : free (bits);
3583 : :
3584 : 16 : if (x->ts.type == BT_INTEGER)
3585 : 10 : gfc_convert_mpz_to_signed (result->value.integer,
3586 : : gfc_integer_kinds[k].bit_size);
3587 : :
3588 : : return result;
3589 : : }
3590 : :
3591 : :
3592 : : gfc_expr *
3593 : 394 : gfc_simplify_ibset (gfc_expr *x, gfc_expr *y)
3594 : : {
3595 : 394 : gfc_expr *result;
3596 : 394 : int k, pos;
3597 : :
3598 : 394 : if (x->expr_type != EXPR_CONSTANT || y->expr_type != EXPR_CONSTANT)
3599 : : return NULL;
3600 : :
3601 : 72 : if (!gfc_check_bitfcn (x, y))
3602 : : return &gfc_bad_expr;
3603 : :
3604 : 64 : gfc_extract_int (y, &pos);
3605 : :
3606 : 64 : k = gfc_validate_kind (x->ts.type, x->ts.kind, false);
3607 : :
3608 : 64 : result = gfc_copy_expr (x);
3609 : : /* Drop any separate memory representation of x to avoid potential
3610 : : inconsistencies in result. */
3611 : 64 : if (result->representation.string)
3612 : : {
3613 : 12 : free (result->representation.string);
3614 : 12 : result->representation.string = NULL;
3615 : : }
3616 : :
3617 : 64 : if (x->ts.type == BT_INTEGER)
3618 : : {
3619 : 58 : gfc_convert_mpz_to_unsigned (result->value.integer,
3620 : : gfc_integer_kinds[k].bit_size);
3621 : :
3622 : 58 : mpz_setbit (result->value.integer, pos);
3623 : :
3624 : 58 : gfc_convert_mpz_to_signed (result->value.integer,
3625 : : gfc_integer_kinds[k].bit_size);
3626 : : }
3627 : : else
3628 : 6 : mpz_setbit (result->value.integer, pos);
3629 : :
3630 : : return result;
3631 : : }
3632 : :
3633 : :
3634 : : gfc_expr *
3635 : 3666 : gfc_simplify_ichar (gfc_expr *e, gfc_expr *kind)
3636 : : {
3637 : 3666 : gfc_expr *result;
3638 : 3666 : gfc_char_t index;
3639 : 3666 : int k;
3640 : :
3641 : 3666 : if (e->expr_type != EXPR_CONSTANT)
3642 : : return NULL;
3643 : :
3644 : 1956 : if (e->value.character.length != 1)
3645 : : {
3646 : 2 : gfc_error ("Argument of ICHAR at %L must be of length one", &e->where);
3647 : 2 : return &gfc_bad_expr;
3648 : : }
3649 : :
3650 : 1954 : index = e->value.character.string[0];
3651 : :
3652 : 1954 : k = get_kind (BT_INTEGER, kind, "ICHAR", gfc_default_integer_kind);
3653 : 1954 : if (k == -1)
3654 : : return &gfc_bad_expr;
3655 : :
3656 : 1954 : result = gfc_get_int_expr (k, &e->where, index);
3657 : :
3658 : 1954 : return range_check (result, "ICHAR");
3659 : : }
3660 : :
3661 : :
3662 : : gfc_expr *
3663 : 1922 : gfc_simplify_ieor (gfc_expr *x, gfc_expr *y)
3664 : : {
3665 : 1922 : gfc_expr *result;
3666 : 1922 : bt type;
3667 : :
3668 : 1922 : if (x->expr_type != EXPR_CONSTANT || y->expr_type != EXPR_CONSTANT)
3669 : : return NULL;
3670 : :
3671 : 155 : type = x->ts.type == BT_UNSIGNED ? BT_UNSIGNED : BT_INTEGER;
3672 : 155 : result = gfc_get_constant_expr (type, x->ts.kind, &x->where);
3673 : 155 : mpz_xor (result->value.integer, x->value.integer, y->value.integer);
3674 : :
3675 : 155 : return range_check (result, "IEOR");
3676 : : }
3677 : :
3678 : :
3679 : : gfc_expr *
3680 : 1352 : gfc_simplify_index (gfc_expr *x, gfc_expr *y, gfc_expr *b, gfc_expr *kind)
3681 : : {
3682 : 1352 : gfc_expr *result;
3683 : 1352 : bool back;
3684 : 1352 : HOST_WIDE_INT len, lensub, start, last, i, index = 0;
3685 : 1352 : int k, delta;
3686 : :
3687 : 1352 : if (x->expr_type != EXPR_CONSTANT || y->expr_type != EXPR_CONSTANT
3688 : 362 : || ( b != NULL && b->expr_type != EXPR_CONSTANT))
3689 : : return NULL;
3690 : :
3691 : 206 : back = (b != NULL && b->value.logical != 0);
3692 : :
3693 : 304 : k = get_kind (BT_INTEGER, kind, "INDEX", gfc_default_integer_kind);
3694 : 304 : if (k == -1)
3695 : : return &gfc_bad_expr;
3696 : :
3697 : 304 : result = gfc_get_constant_expr (BT_INTEGER, k, &x->where);
3698 : :
3699 : 304 : len = x->value.character.length;
3700 : 304 : lensub = y->value.character.length;
3701 : :
3702 : 304 : if (len < lensub)
3703 : : {
3704 : 12 : mpz_set_si (result->value.integer, 0);
3705 : 12 : return result;
3706 : : }
3707 : :
3708 : 292 : if (lensub == 0)
3709 : : {
3710 : 24 : if (back)
3711 : 12 : index = len + 1;
3712 : : else
3713 : : index = 1;
3714 : 24 : goto done;
3715 : : }
3716 : :
3717 : 268 : if (!back)
3718 : : {
3719 : 156 : last = len + 1 - lensub;
3720 : 156 : start = 0;
3721 : 156 : delta = 1;
3722 : : }
3723 : : else
3724 : : {
3725 : 112 : last = -1;
3726 : 112 : start = len - lensub;
3727 : 112 : delta = -1;
3728 : : }
3729 : :
3730 : 1335 : for (; start != last; start += delta)
3731 : : {
3732 : 2215 : for (i = 0; i < lensub; i++)
3733 : : {
3734 : 1977 : if (x->value.character.string[start + i]
3735 : 1977 : != y->value.character.string[i])
3736 : : break;
3737 : : }
3738 : 1305 : if (i == lensub)
3739 : : {
3740 : 238 : index = start + 1;
3741 : 238 : goto done;
3742 : : }
3743 : : }
3744 : :
3745 : 30 : done:
3746 : 292 : mpz_set_si (result->value.integer, index);
3747 : 292 : return range_check (result, "INDEX");
3748 : : }
3749 : :
3750 : : static gfc_expr *
3751 : 7162 : simplify_intconv (gfc_expr *e, int kind, const char *name)
3752 : : {
3753 : 7162 : gfc_expr *result = NULL;
3754 : 7162 : int tmp1, tmp2;
3755 : :
3756 : : /* Convert BOZ to integer, and return without range checking. */
3757 : 7162 : if (e->ts.type == BT_BOZ)
3758 : : {
3759 : 1582 : if (!gfc_boz2int (e, kind))
3760 : : return NULL;
3761 : 1582 : result = gfc_copy_expr (e);
3762 : 1582 : return result;
3763 : : }
3764 : :
3765 : 5580 : if (e->expr_type != EXPR_CONSTANT)
3766 : : return NULL;
3767 : :
3768 : : /* For explicit conversion, turn off -Wconversion and -Wconversion-extra
3769 : : warnings. */
3770 : 1359 : tmp1 = warn_conversion;
3771 : 1359 : tmp2 = warn_conversion_extra;
3772 : 1359 : warn_conversion = warn_conversion_extra = 0;
3773 : :
3774 : 1359 : result = gfc_convert_constant (e, BT_INTEGER, kind);
3775 : :
3776 : 1359 : warn_conversion = tmp1;
3777 : 1359 : warn_conversion_extra = tmp2;
3778 : :
3779 : 1359 : if (result == &gfc_bad_expr)
3780 : : return &gfc_bad_expr;
3781 : :
3782 : 1359 : return range_check (result, name);
3783 : : }
3784 : :
3785 : :
3786 : : gfc_expr *
3787 : 7059 : gfc_simplify_int (gfc_expr *e, gfc_expr *k)
3788 : : {
3789 : 7059 : int kind;
3790 : :
3791 : 7059 : kind = get_kind (BT_INTEGER, k, "INT", gfc_default_integer_kind);
3792 : 7059 : if (kind == -1)
3793 : : return &gfc_bad_expr;
3794 : :
3795 : 7059 : return simplify_intconv (e, kind, "INT");
3796 : : }
3797 : :
3798 : : gfc_expr *
3799 : 58 : gfc_simplify_int2 (gfc_expr *e)
3800 : : {
3801 : 58 : return simplify_intconv (e, 2, "INT2");
3802 : : }
3803 : :
3804 : :
3805 : : gfc_expr *
3806 : 45 : gfc_simplify_int8 (gfc_expr *e)
3807 : : {
3808 : 45 : return simplify_intconv (e, 8, "INT8");
3809 : : }
3810 : :
3811 : :
3812 : : gfc_expr *
3813 : 0 : gfc_simplify_long (gfc_expr *e)
3814 : : {
3815 : 0 : return simplify_intconv (e, 4, "LONG");
3816 : : }
3817 : :
3818 : :
3819 : : gfc_expr *
3820 : 1562 : gfc_simplify_ifix (gfc_expr *e)
3821 : : {
3822 : 1562 : gfc_expr *rtrunc, *result;
3823 : :
3824 : 1562 : if (e->expr_type != EXPR_CONSTANT)
3825 : : return NULL;
3826 : :
3827 : 127 : rtrunc = gfc_copy_expr (e);
3828 : 127 : mpfr_trunc (rtrunc->value.real, e->value.real);
3829 : :
3830 : 127 : result = gfc_get_constant_expr (BT_INTEGER, gfc_default_integer_kind,
3831 : : &e->where);
3832 : 127 : gfc_mpfr_to_mpz (result->value.integer, rtrunc->value.real, &e->where);
3833 : :
3834 : 127 : gfc_free_expr (rtrunc);
3835 : :
3836 : 127 : return range_check (result, "IFIX");
3837 : : }
3838 : :
3839 : :
3840 : : gfc_expr *
3841 : 711 : gfc_simplify_idint (gfc_expr *e)
3842 : : {
3843 : 711 : gfc_expr *rtrunc, *result;
3844 : :
3845 : 711 : if (e->expr_type != EXPR_CONSTANT)
3846 : : return NULL;
3847 : :
3848 : 50 : rtrunc = gfc_copy_expr (e);
3849 : 50 : mpfr_trunc (rtrunc->value.real, e->value.real);
3850 : :
3851 : 50 : result = gfc_get_constant_expr (BT_INTEGER, gfc_default_integer_kind,
3852 : : &e->where);
3853 : 50 : gfc_mpfr_to_mpz (result->value.integer, rtrunc->value.real, &e->where);
3854 : :
3855 : 50 : gfc_free_expr (rtrunc);
3856 : :
3857 : 50 : return range_check (result, "IDINT");
3858 : : }
3859 : :
3860 : : gfc_expr *
3861 : 456 : gfc_simplify_uint (gfc_expr *e, gfc_expr *k)
3862 : : {
3863 : 456 : gfc_expr *result = NULL;
3864 : 456 : int kind;
3865 : :
3866 : : /* KIND is always an integer. */
3867 : :
3868 : 456 : kind = get_kind (BT_INTEGER, k, "INT", gfc_default_integer_kind);
3869 : 456 : if (kind == -1)
3870 : : return &gfc_bad_expr;
3871 : :
3872 : : /* Convert BOZ to integer, and return without range checking. */
3873 : 456 : if (e->ts.type == BT_BOZ)
3874 : : {
3875 : 6 : if (!gfc_boz2uint (e, kind))
3876 : : return NULL;
3877 : 6 : result = gfc_copy_expr (e);
3878 : 6 : return result;
3879 : : }
3880 : :
3881 : 450 : if (e->expr_type != EXPR_CONSTANT)
3882 : : return NULL;
3883 : :
3884 : 162 : result = gfc_convert_constant (e, BT_UNSIGNED, kind);
3885 : :
3886 : 162 : if (result == &gfc_bad_expr)
3887 : : return &gfc_bad_expr;
3888 : :
3889 : 162 : return range_check (result, "UINT");
3890 : : }
3891 : :
3892 : :
3893 : : gfc_expr *
3894 : 4354 : gfc_simplify_ior (gfc_expr *x, gfc_expr *y)
3895 : : {
3896 : 4354 : gfc_expr *result;
3897 : 4354 : bt type;
3898 : :
3899 : 4354 : if (x->expr_type != EXPR_CONSTANT || y->expr_type != EXPR_CONSTANT)
3900 : : return NULL;
3901 : :
3902 : 3055 : type = x->ts.type == BT_UNSIGNED ? BT_UNSIGNED : BT_INTEGER;
3903 : 3055 : result = gfc_get_constant_expr (type, x->ts.kind, &x->where);
3904 : 3055 : mpz_ior (result->value.integer, x->value.integer, y->value.integer);
3905 : :
3906 : 3055 : return range_check (result, "IOR");
3907 : : }
3908 : :
3909 : :
3910 : : static gfc_expr *
3911 : 96 : do_bit_xor (gfc_expr *result, gfc_expr *e)
3912 : : {
3913 : 96 : if (flag_unsigned)
3914 : : {
3915 : 72 : gcc_assert ((e->ts.type == BT_INTEGER || e->ts.type == BT_UNSIGNED)
3916 : : && e->expr_type == EXPR_CONSTANT);
3917 : 72 : gcc_assert ((result->ts.type == BT_INTEGER
3918 : : || result->ts.type == BT_UNSIGNED)
3919 : : && result->expr_type == EXPR_CONSTANT);
3920 : : }
3921 : : else
3922 : : {
3923 : 24 : gcc_assert (e->ts.type == BT_INTEGER && e->expr_type == EXPR_CONSTANT);
3924 : 24 : gcc_assert (result->ts.type == BT_INTEGER
3925 : : && result->expr_type == EXPR_CONSTANT);
3926 : : }
3927 : :
3928 : 96 : mpz_xor (result->value.integer, result->value.integer, e->value.integer);
3929 : 96 : return result;
3930 : : }
3931 : :
3932 : :
3933 : : gfc_expr *
3934 : 259 : gfc_simplify_iparity (gfc_expr *array, gfc_expr *dim, gfc_expr *mask)
3935 : : {
3936 : 259 : return simplify_transformation (array, dim, mask, 0, do_bit_xor);
3937 : : }
3938 : :
3939 : :
3940 : : gfc_expr *
3941 : 46 : gfc_simplify_is_iostat_end (gfc_expr *x)
3942 : : {
3943 : 46 : if (x->expr_type != EXPR_CONSTANT)
3944 : : return NULL;
3945 : :
3946 : 28 : return gfc_get_logical_expr (gfc_default_logical_kind, &x->where,
3947 : 28 : mpz_cmp_si (x->value.integer,
3948 : 28 : LIBERROR_END) == 0);
3949 : : }
3950 : :
3951 : :
3952 : : gfc_expr *
3953 : 70 : gfc_simplify_is_iostat_eor (gfc_expr *x)
3954 : : {
3955 : 70 : if (x->expr_type != EXPR_CONSTANT)
3956 : : return NULL;
3957 : :
3958 : 16 : return gfc_get_logical_expr (gfc_default_logical_kind, &x->where,
3959 : 16 : mpz_cmp_si (x->value.integer,
3960 : 16 : LIBERROR_EOR) == 0);
3961 : : }
3962 : :
3963 : :
3964 : : gfc_expr *
3965 : 1568 : gfc_simplify_isnan (gfc_expr *x)
3966 : : {
3967 : 1568 : if (x->expr_type != EXPR_CONSTANT)
3968 : : return NULL;
3969 : :
3970 : 194 : return gfc_get_logical_expr (gfc_default_logical_kind, &x->where,
3971 : 194 : mpfr_nan_p (x->value.real));
3972 : : }
3973 : :
3974 : :
3975 : : /* Performs a shift on its first argument. Depending on the last
3976 : : argument, the shift can be arithmetic, i.e. with filling from the
3977 : : left like in the SHIFTA intrinsic. */
3978 : : static gfc_expr *
3979 : 9677 : simplify_shift (gfc_expr *e, gfc_expr *s, const char *name,
3980 : : bool arithmetic, int direction)
3981 : : {
3982 : 9677 : gfc_expr *result;
3983 : 9677 : int ashift, *bits, i, k, bitsize, shift;
3984 : :
3985 : 9677 : if (e->expr_type != EXPR_CONSTANT || s->expr_type != EXPR_CONSTANT)
3986 : : return NULL;
3987 : :
3988 : 7734 : gfc_extract_int (s, &shift);
3989 : :
3990 : 7734 : k = gfc_validate_kind (e->ts.type, e->ts.kind, false);
3991 : 7734 : if (e->ts.type == BT_INTEGER)
3992 : 7632 : bitsize = gfc_integer_kinds[k].bit_size;
3993 : : else
3994 : 102 : bitsize = gfc_unsigned_kinds[k].bit_size;
3995 : :
3996 : 7734 : result = gfc_get_constant_expr (e->ts.type, e->ts.kind, &e->where);
3997 : :
3998 : 7734 : if (shift == 0)
3999 : : {
4000 : 1194 : mpz_set (result->value.integer, e->value.integer);
4001 : 1194 : return result;
4002 : : }
4003 : :
4004 : 6540 : if (direction > 0 && shift < 0)
4005 : : {
4006 : : /* Left shift, as in SHIFTL. */
4007 : 0 : gfc_error ("Second argument of %s is negative at %L", name, &e->where);
4008 : 0 : return &gfc_bad_expr;
4009 : : }
4010 : 6540 : else if (direction < 0)
4011 : : {
4012 : : /* Right shift, as in SHIFTR or SHIFTA. */
4013 : 2832 : if (shift < 0)
4014 : : {
4015 : 0 : gfc_error ("Second argument of %s is negative at %L",
4016 : : name, &e->where);
4017 : 0 : return &gfc_bad_expr;
4018 : : }
4019 : :
4020 : 2832 : shift = -shift;
4021 : : }
4022 : :
4023 : 6540 : ashift = (shift >= 0 ? shift : -shift);
4024 : :
4025 : 6540 : if (ashift > bitsize)
4026 : : {
4027 : 0 : gfc_error ("Magnitude of second argument of %s exceeds bit size "
4028 : : "at %L", name, &e->where);
4029 : 0 : return &gfc_bad_expr;
4030 : : }
4031 : :
4032 : 6540 : bits = XCNEWVEC (int, bitsize);
4033 : :
4034 : 325688 : for (i = 0; i < bitsize; i++)
4035 : 312608 : bits[i] = mpz_tstbit (e->value.integer, i);
4036 : :
4037 : 6540 : if (shift > 0)
4038 : : {
4039 : : /* Left shift. */
4040 : 86191 : for (i = 0; i < shift; i++)
4041 : 82627 : mpz_clrbit (result->value.integer, i);
4042 : :
4043 : 85465 : for (i = 0; i < bitsize - shift; i++)
4044 : : {
4045 : 81901 : if (bits[i] == 0)
4046 : 53221 : mpz_clrbit (result->value.integer, i + shift);
4047 : : else
4048 : 28680 : mpz_setbit (result->value.integer, i + shift);
4049 : : }
4050 : : }
4051 : : else
4052 : : {
4053 : : /* Right shift. */
4054 : 2976 : if (arithmetic && bits[bitsize - 1])
4055 : 504 : for (i = bitsize - 1; i >= bitsize - ashift; i--)
4056 : 438 : mpz_setbit (result->value.integer, i);
4057 : : else
4058 : 75186 : for (i = bitsize - 1; i >= bitsize - ashift; i--)
4059 : 72276 : mpz_clrbit (result->value.integer, i);
4060 : :
4061 : 78342 : for (i = bitsize - 1; i >= ashift; i--)
4062 : : {
4063 : 75366 : if (bits[i] == 0)
4064 : 46920 : mpz_clrbit (result->value.integer, i - ashift);
4065 : : else
4066 : 28446 : mpz_setbit (result->value.integer, i - ashift);
4067 : : }
4068 : : }
4069 : :
4070 : 6540 : if (result->ts.type == BT_INTEGER)
4071 : 6438 : gfc_convert_mpz_to_signed (result->value.integer, bitsize);
4072 : : else
4073 : 102 : gfc_reduce_unsigned(result);
4074 : :
4075 : 6540 : free (bits);
4076 : :
4077 : 6540 : return result;
4078 : : }
4079 : :
4080 : :
4081 : : gfc_expr *
4082 : 2108 : gfc_simplify_ishft (gfc_expr *e, gfc_expr *s)
4083 : : {
4084 : 2108 : return simplify_shift (e, s, "ISHFT", false, 0);
4085 : : }
4086 : :
4087 : :
4088 : : gfc_expr *
4089 : 192 : gfc_simplify_lshift (gfc_expr *e, gfc_expr *s)
4090 : : {
4091 : 192 : return simplify_shift (e, s, "LSHIFT", false, 1);
4092 : : }
4093 : :
4094 : :
4095 : : gfc_expr *
4096 : 66 : gfc_simplify_rshift (gfc_expr *e, gfc_expr *s)
4097 : : {
4098 : 66 : return simplify_shift (e, s, "RSHIFT", true, -1);
4099 : : }
4100 : :
4101 : :
4102 : : gfc_expr *
4103 : 438 : gfc_simplify_shifta (gfc_expr *e, gfc_expr *s)
4104 : : {
4105 : 438 : return simplify_shift (e, s, "SHIFTA", true, -1);
4106 : : }
4107 : :
4108 : :
4109 : : gfc_expr *
4110 : 3597 : gfc_simplify_shiftl (gfc_expr *e, gfc_expr *s)
4111 : : {
4112 : 3597 : return simplify_shift (e, s, "SHIFTL", false, 1);
4113 : : }
4114 : :
4115 : :
4116 : : gfc_expr *
4117 : 3276 : gfc_simplify_shiftr (gfc_expr *e, gfc_expr *s)
4118 : : {
4119 : 3276 : return simplify_shift (e, s, "SHIFTR", false, -1);
4120 : : }
4121 : :
4122 : :
4123 : : gfc_expr *
4124 : 1929 : gfc_simplify_ishftc (gfc_expr *e, gfc_expr *s, gfc_expr *sz)
4125 : : {
4126 : 1929 : gfc_expr *result;
4127 : 1929 : int shift, ashift, isize, ssize, delta, k;
4128 : 1929 : int i, *bits;
4129 : :
4130 : 1929 : if (e->expr_type != EXPR_CONSTANT || s->expr_type != EXPR_CONSTANT)
4131 : : return NULL;
4132 : :
4133 : 411 : gfc_extract_int (s, &shift);
4134 : :
4135 : 411 : k = gfc_validate_kind (e->ts.type, e->ts.kind, false);
4136 : 411 : isize = gfc_integer_kinds[k].bit_size;
4137 : :
4138 : 411 : if (sz != NULL)
4139 : : {
4140 : 213 : if (sz->expr_type != EXPR_CONSTANT)
4141 : : return NULL;
4142 : :
4143 : 213 : gfc_extract_int (sz, &ssize);
4144 : :
4145 : 213 : if (ssize > isize || ssize <= 0)
4146 : : return &gfc_bad_expr;
4147 : : }
4148 : : else
4149 : 198 : ssize = isize;
4150 : :
4151 : 411 : if (shift >= 0)
4152 : : ashift = shift;
4153 : : else
4154 : : ashift = -shift;
4155 : :
4156 : 411 : if (ashift > ssize)
4157 : : {
4158 : 11 : if (sz == NULL)
4159 : 4 : gfc_error ("Magnitude of second argument of ISHFTC exceeds "
4160 : : "BIT_SIZE of first argument at %C");
4161 : : else
4162 : 7 : gfc_error ("Absolute value of SHIFT shall be less than or equal "
4163 : : "to SIZE at %C");
4164 : 11 : return &gfc_bad_expr;
4165 : : }
4166 : :
4167 : 400 : result = gfc_get_constant_expr (e->ts.type, e->ts.kind, &e->where);
4168 : :
4169 : 400 : mpz_set (result->value.integer, e->value.integer);
4170 : :
4171 : 400 : if (shift == 0)
4172 : : return result;
4173 : :
4174 : 364 : if (result->ts.type == BT_INTEGER)
4175 : 352 : gfc_convert_mpz_to_unsigned (result->value.integer, isize);
4176 : :
4177 : 364 : bits = XCNEWVEC (int, ssize);
4178 : :
4179 : 6877 : for (i = 0; i < ssize; i++)
4180 : 6149 : bits[i] = mpz_tstbit (e->value.integer, i);
4181 : :
4182 : 364 : delta = ssize - ashift;
4183 : :
4184 : 364 : if (shift > 0)
4185 : : {
4186 : 3975 : for (i = 0; i < delta; i++)
4187 : : {
4188 : 3707 : if (bits[i] == 0)
4189 : 2226 : mpz_clrbit (result->value.integer, i + shift);
4190 : : else
4191 : 1481 : mpz_setbit (result->value.integer, i + shift);
4192 : : }
4193 : :
4194 : 1030 : for (i = delta; i < ssize; i++)
4195 : : {
4196 : 762 : if (bits[i] == 0)
4197 : 612 : mpz_clrbit (result->value.integer, i - delta);
4198 : : else
4199 : 150 : mpz_setbit (result->value.integer, i - delta);
4200 : : }
4201 : : }
4202 : : else
4203 : : {
4204 : 288 : for (i = 0; i < ashift; i++)
4205 : : {
4206 : 192 : if (bits[i] == 0)
4207 : 90 : mpz_clrbit (result->value.integer, i + delta);
4208 : : else
4209 : 102 : mpz_setbit (result->value.integer, i + delta);
4210 : : }
4211 : :
4212 : 1584 : for (i = ashift; i < ssize; i++)
4213 : : {
4214 : 1488 : if (bits[i] == 0)
4215 : 624 : mpz_clrbit (result->value.integer, i + shift);
4216 : : else
4217 : 864 : mpz_setbit (result->value.integer, i + shift);
4218 : : }
4219 : : }
4220 : :
4221 : 364 : if (result->ts.type == BT_INTEGER)
4222 : 352 : gfc_convert_mpz_to_signed (result->value.integer, isize);
4223 : :
4224 : 364 : free (bits);
4225 : 364 : return result;
4226 : : }
4227 : :
4228 : :
4229 : : gfc_expr *
4230 : 4479 : gfc_simplify_kind (gfc_expr *e)
4231 : : {
4232 : 4479 : return gfc_get_int_expr (gfc_default_integer_kind, NULL, e->ts.kind);
4233 : : }
4234 : :
4235 : :
4236 : : static gfc_expr *
4237 : 13240 : simplify_bound_dim (gfc_expr *array, gfc_expr *kind, int d, int upper,
4238 : : gfc_array_spec *as, gfc_ref *ref, bool coarray)
4239 : : {
4240 : 13240 : gfc_expr *l, *u, *result;
4241 : 13240 : int k;
4242 : :
4243 : 22346 : k = get_kind (BT_INTEGER, kind, upper ? "UBOUND" : "LBOUND",
4244 : : gfc_default_integer_kind);
4245 : 13240 : if (k == -1)
4246 : : return &gfc_bad_expr;
4247 : :
4248 : 13240 : result = gfc_get_constant_expr (BT_INTEGER, k, &array->where);
4249 : :
4250 : : /* For non-variables, LBOUND(expr, DIM=n) = 1 and
4251 : : UBOUND(expr, DIM=n) = SIZE(expr, DIM=n). */
4252 : 13240 : if (!coarray && array->expr_type != EXPR_VARIABLE)
4253 : : {
4254 : 1414 : if (upper)
4255 : : {
4256 : 782 : gfc_expr* dim = result;
4257 : 782 : mpz_set_si (dim->value.integer, d);
4258 : :
4259 : 782 : result = simplify_size (array, dim, k);
4260 : 782 : gfc_free_expr (dim);
4261 : 782 : if (!result)
4262 : 375 : goto returnNull;
4263 : : }
4264 : : else
4265 : 632 : mpz_set_si (result->value.integer, 1);
4266 : :
4267 : 1039 : goto done;
4268 : : }
4269 : :
4270 : : /* Otherwise, we have a variable expression. */
4271 : 11826 : gcc_assert (array->expr_type == EXPR_VARIABLE);
4272 : 11826 : gcc_assert (as);
4273 : :
4274 : 11826 : if (!gfc_resolve_array_spec (as, 0))
4275 : : return NULL;
4276 : :
4277 : : /* The last dimension of an assumed-size array is special. */
4278 : 11823 : if ((!coarray && d == as->rank && as->type == AS_ASSUMED_SIZE && !upper)
4279 : 1203 : || (coarray && d == as->rank + as->corank
4280 : 440 : && (!upper || flag_coarray == GFC_FCOARRAY_SINGLE)))
4281 : : {
4282 : 592 : if (as->lower[d-1] && as->lower[d-1]->expr_type == EXPR_CONSTANT)
4283 : : {
4284 : 367 : gfc_free_expr (result);
4285 : 367 : return gfc_copy_expr (as->lower[d-1]);
4286 : : }
4287 : :
4288 : 225 : goto returnNull;
4289 : : }
4290 : :
4291 : : /* Then, we need to know the extent of the given dimension. */
4292 : 10424 : if (coarray || (ref->u.ar.type == AR_FULL && !ref->next))
4293 : : {
4294 : 10728 : gfc_expr *declared_bound;
4295 : 10728 : int empty_bound;
4296 : 10728 : bool constant_lbound, constant_ubound;
4297 : :
4298 : 10728 : l = as->lower[d-1];
4299 : 10728 : u = as->upper[d-1];
4300 : :
4301 : 10728 : gcc_assert (l != NULL);
4302 : :
4303 : 10728 : constant_lbound = l->expr_type == EXPR_CONSTANT;
4304 : 10728 : constant_ubound = u && u->expr_type == EXPR_CONSTANT;
4305 : :
4306 : 10728 : empty_bound = upper ? 0 : 1;
4307 : 10728 : declared_bound = upper ? u : l;
4308 : :
4309 : 10728 : if ((!upper && !constant_lbound)
4310 : 9809 : || (upper && !constant_ubound))
4311 : 2266 : goto returnNull;
4312 : :
4313 : 8462 : if (!coarray)
4314 : : {
4315 : : /* For {L,U}BOUND, the value depends on whether the array
4316 : : is empty. We can nevertheless simplify if the declared bound
4317 : : has the same value as that of an empty array, in which case
4318 : : the result isn't dependent on the array emptiness. */
4319 : 7895 : if (mpz_cmp_si (declared_bound->value.integer, empty_bound) == 0)
4320 : 3849 : mpz_set_si (result->value.integer, empty_bound);
4321 : 4046 : else if (!constant_lbound || !constant_ubound)
4322 : : /* Array emptiness can't be determined, we can't simplify. */
4323 : 1815 : goto returnNull;
4324 : 2231 : else if (mpz_cmp (l->value.integer, u->value.integer) > 0)
4325 : 97 : mpz_set_si (result->value.integer, empty_bound);
4326 : : else
4327 : 2134 : mpz_set (result->value.integer, declared_bound->value.integer);
4328 : : }
4329 : : else
4330 : 567 : mpz_set (result->value.integer, declared_bound->value.integer);
4331 : : }
4332 : : else
4333 : : {
4334 : 503 : if (upper)
4335 : : {
4336 : : int d2 = 0, cnt = 0;
4337 : 523 : for (int idx = 0; idx < ref->u.ar.dimen; ++idx)
4338 : : {
4339 : 523 : if (ref->u.ar.dimen_type[idx] == DIMEN_ELEMENT)
4340 : 120 : d2++;
4341 : 403 : else if (cnt < d - 1)
4342 : 102 : cnt++;
4343 : : else
4344 : : break;
4345 : : }
4346 : 301 : if (!gfc_ref_dimen_size (&ref->u.ar, d2 + d - 1, &result->value.integer, NULL))
4347 : 73 : goto returnNull;
4348 : : }
4349 : : else
4350 : 202 : mpz_set_si (result->value.integer, (long int) 1);
4351 : : }
4352 : :
4353 : 8116 : done:
4354 : 8116 : return range_check (result, upper ? "UBOUND" : "LBOUND");
4355 : :
4356 : 4754 : returnNull:
4357 : 4754 : gfc_free_expr (result);
4358 : 4754 : return NULL;
4359 : : }
4360 : :
4361 : :
4362 : : static gfc_expr *
4363 : 35081 : simplify_bound (gfc_expr *array, gfc_expr *dim, gfc_expr *kind, int upper)
4364 : : {
4365 : 35081 : gfc_ref *ref;
4366 : 35081 : gfc_array_spec *as;
4367 : 35081 : ar_type type = AR_UNKNOWN;
4368 : 35081 : int d;
4369 : :
4370 : 35081 : if (array->ts.type == BT_CLASS)
4371 : : return NULL;
4372 : :
4373 : 33707 : if (array->expr_type != EXPR_VARIABLE)
4374 : : {
4375 : 1242 : as = NULL;
4376 : 1242 : ref = NULL;
4377 : 1242 : goto done;
4378 : : }
4379 : :
4380 : : /* Do not attempt to resolve if error has already been issued. */
4381 : 32465 : if (array->symtree->n.sym->error)
4382 : : return NULL;
4383 : :
4384 : : /* Follow any component references. */
4385 : 32464 : as = array->symtree->n.sym->as;
4386 : 33294 : for (ref = array->ref; ref; ref = ref->next)
4387 : : {
4388 : 33294 : switch (ref->type)
4389 : : {
4390 : 32598 : case REF_ARRAY:
4391 : 32598 : type = ref->u.ar.type;
4392 : 32598 : switch (ref->u.ar.type)
4393 : : {
4394 : 134 : case AR_ELEMENT:
4395 : 134 : as = NULL;
4396 : 134 : continue;
4397 : :
4398 : 31601 : case AR_FULL:
4399 : : /* We're done because 'as' has already been set in the
4400 : : previous iteration. */
4401 : 31601 : goto done;
4402 : :
4403 : : case AR_UNKNOWN:
4404 : : return NULL;
4405 : :
4406 : 863 : case AR_SECTION:
4407 : 863 : as = ref->u.ar.as;
4408 : 863 : goto done;
4409 : : }
4410 : :
4411 : 0 : gcc_unreachable ();
4412 : :
4413 : 696 : case REF_COMPONENT:
4414 : 696 : as = ref->u.c.component->as;
4415 : 696 : continue;
4416 : :
4417 : 0 : case REF_SUBSTRING:
4418 : 0 : case REF_INQUIRY:
4419 : 0 : continue;
4420 : : }
4421 : : }
4422 : :
4423 : 0 : gcc_unreachable ();
4424 : :
4425 : 33706 : done:
4426 : :
4427 : 33706 : if (as && (as->type == AS_DEFERRED || as->type == AS_ASSUMED_RANK
4428 : 11626 : || (as->type == AS_ASSUMED_SHAPE && upper)))
4429 : : return NULL;
4430 : :
4431 : : /* 'array' shall not be an unallocated allocatable variable or a pointer that
4432 : : is not associated. */
4433 : 10740 : if (array->expr_type == EXPR_VARIABLE
4434 : 10740 : && (gfc_expr_attr (array).allocatable || gfc_expr_attr (array).pointer))
4435 : 6 : return NULL;
4436 : :
4437 : 10734 : gcc_assert (!as
4438 : : || (as->type != AS_DEFERRED
4439 : : && array->expr_type == EXPR_VARIABLE
4440 : : && !gfc_expr_attr (array).allocatable
4441 : : && !gfc_expr_attr (array).pointer));
4442 : :
4443 : 10734 : if (dim == NULL)
4444 : : {
4445 : : /* Multi-dimensional bounds. */
4446 : 1579 : gfc_expr *bounds[GFC_MAX_DIMENSIONS];
4447 : 1579 : gfc_expr *e;
4448 : 1579 : int k;
4449 : :
4450 : : /* UBOUND(ARRAY) is not valid for an assumed-size array. */
4451 : 1579 : if (upper && type == AR_FULL && as && as->type == AS_ASSUMED_SIZE)
4452 : : {
4453 : : /* An error message will be emitted in
4454 : : check_assumed_size_reference (resolve.cc). */
4455 : : return &gfc_bad_expr;
4456 : : }
4457 : :
4458 : : /* Simplify the bounds for each dimension. */
4459 : 4094 : for (d = 0; d < array->rank; d++)
4460 : : {
4461 : 2880 : bounds[d] = simplify_bound_dim (array, kind, d + 1, upper, as, ref,
4462 : : false);
4463 : 2880 : if (bounds[d] == NULL || bounds[d] == &gfc_bad_expr)
4464 : : {
4465 : : int j;
4466 : :
4467 : 400 : for (j = 0; j < d; j++)
4468 : 36 : gfc_free_expr (bounds[j]);
4469 : :
4470 : 364 : if (gfc_seen_div0)
4471 : : return &gfc_bad_expr;
4472 : : else
4473 : : return bounds[d];
4474 : : }
4475 : : }
4476 : :
4477 : : /* Allocate the result expression. */
4478 : 1897 : k = get_kind (BT_INTEGER, kind, upper ? "UBOUND" : "LBOUND",
4479 : : gfc_default_integer_kind);
4480 : 1214 : if (k == -1)
4481 : : return &gfc_bad_expr;
4482 : :
4483 : 1214 : e = gfc_get_array_expr (BT_INTEGER, k, &array->where);
4484 : :
4485 : : /* The result is a rank 1 array; its size is the rank of the first
4486 : : argument to {L,U}BOUND. */
4487 : 1214 : e->rank = 1;
4488 : 1214 : e->shape = gfc_get_shape (1);
4489 : 1214 : mpz_init_set_ui (e->shape[0], array->rank);
4490 : :
4491 : : /* Create the constructor for this array. */
4492 : 4908 : for (d = 0; d < array->rank; d++)
4493 : 2480 : gfc_constructor_append_expr (&e->value.constructor,
4494 : : bounds[d], &e->where);
4495 : :
4496 : : return e;
4497 : : }
4498 : : else
4499 : : {
4500 : : /* A DIM argument is specified. */
4501 : 9155 : if (dim->expr_type != EXPR_CONSTANT)
4502 : : return NULL;
4503 : :
4504 : 9155 : d = mpz_get_si (dim->value.integer);
4505 : :
4506 : 9155 : if ((d < 1 || d > array->rank)
4507 : 9155 : || (d == array->rank && as && as->type == AS_ASSUMED_SIZE && upper))
4508 : : {
4509 : 0 : gfc_error ("DIM argument at %L is out of bounds", &dim->where);
4510 : 0 : return &gfc_bad_expr;
4511 : : }
4512 : :
4513 : 8738 : if (as && as->type == AS_ASSUMED_RANK)
4514 : : return NULL;
4515 : :
4516 : 9155 : return simplify_bound_dim (array, kind, d, upper, as, ref, false);
4517 : : }
4518 : : }
4519 : :
4520 : :
4521 : : static gfc_expr *
4522 : 1455 : simplify_cobound (gfc_expr *array, gfc_expr *dim, gfc_expr *kind, int upper)
4523 : : {
4524 : 1455 : gfc_ref *ref;
4525 : 1455 : gfc_array_spec *as;
4526 : 1455 : int d;
4527 : :
4528 : 1455 : if (array->expr_type != EXPR_VARIABLE)
4529 : : return NULL;
4530 : :
4531 : : /* Follow any component references. */
4532 : 157 : as = (array->ts.type == BT_CLASS && CLASS_DATA (array))
4533 : 1611 : ? CLASS_DATA (array)->as
4534 : 1299 : : array->symtree->n.sym->as;
4535 : 1671 : for (ref = array->ref; ref; ref = ref->next)
4536 : : {
4537 : 1670 : switch (ref->type)
4538 : : {
4539 : 1454 : case REF_ARRAY:
4540 : 1454 : switch (ref->u.ar.type)
4541 : : {
4542 : 333 : case AR_ELEMENT:
4543 : 333 : if (ref->u.ar.as->corank > 0)
4544 : : {
4545 : 333 : gcc_assert (as == ref->u.ar.as);
4546 : 333 : goto done;
4547 : : }
4548 : 0 : as = NULL;
4549 : 0 : continue;
4550 : :
4551 : 1121 : case AR_FULL:
4552 : : /* We're done because 'as' has already been set in the
4553 : : previous iteration. */
4554 : 1121 : goto done;
4555 : :
4556 : : case AR_UNKNOWN:
4557 : : return NULL;
4558 : :
4559 : 0 : case AR_SECTION:
4560 : 0 : as = ref->u.ar.as;
4561 : 0 : goto done;
4562 : : }
4563 : :
4564 : 0 : gcc_unreachable ();
4565 : :
4566 : 216 : case REF_COMPONENT:
4567 : 216 : as = ref->u.c.component->as;
4568 : 216 : continue;
4569 : :
4570 : 0 : case REF_SUBSTRING:
4571 : 0 : case REF_INQUIRY:
4572 : 0 : continue;
4573 : : }
4574 : : }
4575 : :
4576 : 1 : if (!as)
4577 : 0 : gcc_unreachable ();
4578 : :
4579 : 1 : done:
4580 : :
4581 : 1455 : if (as->cotype == AS_DEFERRED || as->cotype == AS_ASSUMED_SHAPE)
4582 : : return NULL;
4583 : :
4584 : 755 : if (dim == NULL)
4585 : : {
4586 : : /* Multi-dimensional cobounds. */
4587 : : gfc_expr *bounds[GFC_MAX_DIMENSIONS];
4588 : : gfc_expr *e;
4589 : : int k;
4590 : :
4591 : : /* Simplify the cobounds for each dimension. */
4592 : 703 : for (d = 0; d < as->corank; d++)
4593 : : {
4594 : 608 : bounds[d] = simplify_bound_dim (array, kind, d + 1 + as->rank,
4595 : : upper, as, ref, true);
4596 : 608 : if (bounds[d] == NULL || bounds[d] == &gfc_bad_expr)
4597 : : {
4598 : : int j;
4599 : :
4600 : 270 : for (j = 0; j < d; j++)
4601 : 120 : gfc_free_expr (bounds[j]);
4602 : : return bounds[d];
4603 : : }
4604 : : }
4605 : :
4606 : : /* Allocate the result expression. */
4607 : 95 : e = gfc_get_expr ();
4608 : 95 : e->where = array->where;
4609 : 95 : e->expr_type = EXPR_ARRAY;
4610 : 95 : e->ts.type = BT_INTEGER;
4611 : 167 : k = get_kind (BT_INTEGER, kind, upper ? "UCOBOUND" : "LCOBOUND",
4612 : : gfc_default_integer_kind);
4613 : 95 : if (k == -1)
4614 : : {
4615 : 0 : gfc_free_expr (e);
4616 : 0 : return &gfc_bad_expr;
4617 : : }
4618 : 95 : e->ts.kind = k;
4619 : :
4620 : : /* The result is a rank 1 array; its size is the rank of the first
4621 : : argument to {L,U}COBOUND. */
4622 : 95 : e->rank = 1;
4623 : 95 : e->shape = gfc_get_shape (1);
4624 : 95 : mpz_init_set_ui (e->shape[0], as->corank);
4625 : :
4626 : : /* Create the constructor for this array. */
4627 : 528 : for (d = 0; d < as->corank; d++)
4628 : 338 : gfc_constructor_append_expr (&e->value.constructor,
4629 : : bounds[d], &e->where);
4630 : : return e;
4631 : : }
4632 : : else
4633 : : {
4634 : : /* A DIM argument is specified. */
4635 : 510 : if (dim->expr_type != EXPR_CONSTANT)
4636 : : return NULL;
4637 : :
4638 : 370 : d = mpz_get_si (dim->value.integer);
4639 : :
4640 : 370 : if (d < 1 || d > as->corank)
4641 : : {
4642 : 0 : gfc_error ("DIM argument at %L is out of bounds", &dim->where);
4643 : 0 : return &gfc_bad_expr;
4644 : : }
4645 : :
4646 : 370 : return simplify_bound_dim (array, kind, d+as->rank, upper, as, ref, true);
4647 : : }
4648 : : }
4649 : :
4650 : :
4651 : : gfc_expr *
4652 : 20247 : gfc_simplify_lbound (gfc_expr *array, gfc_expr *dim, gfc_expr *kind)
4653 : : {
4654 : 20247 : return simplify_bound (array, dim, kind, 0);
4655 : : }
4656 : :
4657 : :
4658 : : gfc_expr *
4659 : 509 : gfc_simplify_lcobound (gfc_expr *array, gfc_expr *dim, gfc_expr *kind)
4660 : : {
4661 : 509 : return simplify_cobound (array, dim, kind, 0);
4662 : : }
4663 : :
4664 : : gfc_expr *
4665 : 1068 : gfc_simplify_leadz (gfc_expr *e)
4666 : : {
4667 : 1068 : unsigned long lz, bs;
4668 : 1068 : int i;
4669 : :
4670 : 1068 : if (e->expr_type != EXPR_CONSTANT)
4671 : : return NULL;
4672 : :
4673 : 258 : i = gfc_validate_kind (e->ts.type, e->ts.kind, false);
4674 : 258 : bs = gfc_integer_kinds[i].bit_size;
4675 : 258 : if (mpz_cmp_si (e->value.integer, 0) == 0)
4676 : : lz = bs;
4677 : 222 : else if (mpz_cmp_si (e->value.integer, 0) < 0)
4678 : : lz = 0;
4679 : : else
4680 : 132 : lz = bs - mpz_sizeinbase (e->value.integer, 2);
4681 : :
4682 : 258 : return gfc_get_int_expr (gfc_default_integer_kind, &e->where, lz);
4683 : : }
4684 : :
4685 : :
4686 : : /* Check for constant length of a substring. */
4687 : :
4688 : : static bool
4689 : 16329 : substring_has_constant_len (gfc_expr *e)
4690 : : {
4691 : 16329 : gfc_ref *ref;
4692 : 16329 : HOST_WIDE_INT istart, iend, length;
4693 : 16329 : bool equal_length = false;
4694 : :
4695 : 16329 : if (e->ts.type != BT_CHARACTER)
4696 : : return false;
4697 : :
4698 : 23291 : for (ref = e->ref; ref; ref = ref->next)
4699 : 7481 : if (ref->type != REF_COMPONENT && ref->type != REF_ARRAY)
4700 : : break;
4701 : :
4702 : 16329 : if (!ref
4703 : 519 : || ref->type != REF_SUBSTRING
4704 : 519 : || !ref->u.ss.start
4705 : 519 : || ref->u.ss.start->expr_type != EXPR_CONSTANT
4706 : 206 : || !ref->u.ss.end
4707 : 206 : || ref->u.ss.end->expr_type != EXPR_CONSTANT)
4708 : : return false;
4709 : :
4710 : : /* Basic checks on substring starting and ending indices. */
4711 : 206 : if (!gfc_resolve_substring (ref, &equal_length))
4712 : : return false;
4713 : :
4714 : 206 : istart = gfc_mpz_get_hwi (ref->u.ss.start->value.integer);
4715 : 206 : iend = gfc_mpz_get_hwi (ref->u.ss.end->value.integer);
4716 : :
4717 : 206 : if (istart <= iend)
4718 : 198 : length = iend - istart + 1;
4719 : : else
4720 : : length = 0;
4721 : :
4722 : : /* Fix substring length. */
4723 : 206 : e->value.character.length = length;
4724 : :
4725 : 206 : return true;
4726 : : }
4727 : :
4728 : :
4729 : : gfc_expr *
4730 : 16851 : gfc_simplify_len (gfc_expr *e, gfc_expr *kind)
4731 : : {
4732 : 16851 : gfc_expr *result;
4733 : 16851 : int k = get_kind (BT_INTEGER, kind, "LEN", gfc_default_integer_kind);
4734 : :
4735 : 16851 : if (k == -1)
4736 : : return &gfc_bad_expr;
4737 : :
4738 : 16851 : if (e->expr_type == EXPR_CONSTANT
4739 : 16851 : || substring_has_constant_len (e))
4740 : : {
4741 : 728 : result = gfc_get_constant_expr (BT_INTEGER, k, &e->where);
4742 : 728 : mpz_set_si (result->value.integer, e->value.character.length);
4743 : 728 : return range_check (result, "LEN");
4744 : : }
4745 : 16123 : else if (e->ts.u.cl != NULL && e->ts.u.cl->length != NULL
4746 : 5335 : && e->ts.u.cl->length->expr_type == EXPR_CONSTANT
4747 : 2804 : && e->ts.u.cl->length->ts.type == BT_INTEGER)
4748 : : {
4749 : 2804 : result = gfc_get_constant_expr (BT_INTEGER, k, &e->where);
4750 : 2804 : mpz_set (result->value.integer, e->ts.u.cl->length->value.integer);
4751 : 2804 : return range_check (result, "LEN");
4752 : : }
4753 : 13319 : else if (e->expr_type == EXPR_VARIABLE && e->ts.type == BT_CHARACTER
4754 : 11563 : && e->symtree->n.sym)
4755 : : {
4756 : 11563 : if (e->symtree->n.sym->ts.type != BT_DERIVED
4757 : 11169 : && e->symtree->n.sym->assoc && e->symtree->n.sym->assoc->target
4758 : 965 : && e->symtree->n.sym->assoc->target->ts.type == BT_DERIVED
4759 : 367 : && e->symtree->n.sym->assoc->target->symtree->n.sym
4760 : 367 : && UNLIMITED_POLY (e->symtree->n.sym->assoc->target->symtree->n.sym))
4761 : : /* The expression in assoc->target points to a ref to the _data
4762 : : component of the unlimited polymorphic entity. To get the _len
4763 : : component the last _data ref needs to be stripped and a ref to the
4764 : : _len component added. */
4765 : 367 : return gfc_get_len_component (e->symtree->n.sym->assoc->target, k);
4766 : 11196 : else if (e->symtree->n.sym->ts.type == BT_DERIVED
4767 : 394 : && e->ref && e->ref->type == REF_COMPONENT
4768 : 394 : && e->ref->u.c.component->attr.pdt_string
4769 : 36 : && e->ref->u.c.component->ts.type == BT_CHARACTER
4770 : 36 : && e->ref->u.c.component->ts.u.cl->length)
4771 : : {
4772 : 36 : if (gfc_init_expr_flag)
4773 : : {
4774 : 6 : gfc_expr* tmp;
4775 : 12 : tmp = gfc_pdt_find_component_copy_initializer (e->symtree->n.sym,
4776 : : e->ref->u.c
4777 : : .component->ts.u.cl
4778 : 6 : ->length->symtree
4779 : : ->name);
4780 : 6 : if (tmp)
4781 : : return tmp;
4782 : : }
4783 : : else
4784 : : {
4785 : 30 : gfc_expr *len_expr = gfc_copy_expr (e);
4786 : 30 : gfc_free_ref_list (len_expr->ref);
4787 : 30 : len_expr->ref = NULL;
4788 : 30 : gfc_find_component (len_expr->symtree->n.sym->ts.u.derived, e->ref
4789 : 30 : ->u.c.component->ts.u.cl->length->symtree
4790 : : ->name,
4791 : : false, true, &len_expr->ref);
4792 : 30 : len_expr->ts = len_expr->ref->u.c.component->ts;
4793 : 30 : return len_expr;
4794 : : }
4795 : : }
4796 : : }
4797 : : return NULL;
4798 : : }
4799 : :
4800 : :
4801 : : gfc_expr *
4802 : 4050 : gfc_simplify_len_trim (gfc_expr *e, gfc_expr *kind)
4803 : : {
4804 : 4050 : gfc_expr *result;
4805 : 4050 : size_t count, len, i;
4806 : 4050 : int k = get_kind (BT_INTEGER, kind, "LEN_TRIM", gfc_default_integer_kind);
4807 : :
4808 : 4050 : if (k == -1)
4809 : : return &gfc_bad_expr;
4810 : :
4811 : : /* If the expression is either an array element or section, an array
4812 : : parameter must be built so that the reference can be applied. Constant
4813 : : references should have already been simplified away. All other cases
4814 : : can proceed to translation, where kind conversion will occur silently. */
4815 : 4050 : if (e->expr_type == EXPR_VARIABLE
4816 : 3188 : && e->ts.type == BT_CHARACTER
4817 : 3188 : && e->symtree->n.sym->attr.flavor == FL_PARAMETER
4818 : 129 : && e->ref && e->ref->type == REF_ARRAY
4819 : 129 : && e->ref->u.ar.type != AR_FULL
4820 : 82 : && e->symtree->n.sym->value)
4821 : : {
4822 : 82 : char name[2*GFC_MAX_SYMBOL_LEN + 12];
4823 : 82 : gfc_namespace *ns = e->symtree->n.sym->ns;
4824 : 82 : gfc_symtree *st;
4825 : 82 : gfc_expr *expr;
4826 : 82 : gfc_expr *p;
4827 : 82 : gfc_constructor *c;
4828 : 82 : int cnt = 0;
4829 : :
4830 : 82 : sprintf (name, "_len_trim_%s_%s", e->symtree->n.sym->name,
4831 : 82 : ns->proc_name->name);
4832 : 82 : st = gfc_find_symtree (ns->sym_root, name);
4833 : 82 : if (st)
4834 : 44 : goto already_built;
4835 : :
4836 : : /* Recursively call this fcn to simplify the constructor elements. */
4837 : 38 : expr = gfc_copy_expr (e->symtree->n.sym->value);
4838 : 38 : expr->ts.type = BT_INTEGER;
4839 : 38 : expr->ts.kind = k;
4840 : 38 : expr->ts.u.cl = NULL;
4841 : 38 : c = gfc_constructor_first (expr->value.constructor);
4842 : 237 : for (; c; c = gfc_constructor_next (c))
4843 : : {
4844 : 161 : if (c->iterator)
4845 : 0 : continue;
4846 : :
4847 : 161 : if (c->expr && c->expr->ts.type == BT_CHARACTER)
4848 : : {
4849 : 161 : p = gfc_simplify_len_trim (c->expr, kind);
4850 : 161 : if (p == NULL)
4851 : 0 : goto clean_up;
4852 : 161 : gfc_replace_expr (c->expr, p);
4853 : 161 : cnt++;
4854 : : }
4855 : : }
4856 : :
4857 : 38 : if (cnt)
4858 : : {
4859 : : /* Build a new parameter to take the result. */
4860 : 38 : st = gfc_new_symtree (&ns->sym_root, name);
4861 : 38 : st->n.sym = gfc_new_symbol (st->name, ns);
4862 : 38 : st->n.sym->value = expr;
4863 : 38 : st->n.sym->ts = expr->ts;
4864 : 38 : st->n.sym->attr.dimension = 1;
4865 : 38 : st->n.sym->attr.save = SAVE_IMPLICIT;
4866 : 38 : st->n.sym->attr.flavor = FL_PARAMETER;
4867 : 38 : st->n.sym->as = gfc_copy_array_spec (e->symtree->n.sym->as);
4868 : 38 : gfc_set_sym_referenced (st->n.sym);
4869 : 38 : st->n.sym->refs++;
4870 : 38 : gfc_commit_symbol (st->n.sym);
4871 : :
4872 : 82 : already_built:
4873 : : /* Build a return expression. */
4874 : 82 : expr = gfc_copy_expr (e);
4875 : 82 : expr->ts = st->n.sym->ts;
4876 : 82 : expr->symtree = st;
4877 : 82 : gfc_expression_rank (expr);
4878 : 82 : return expr;
4879 : : }
4880 : :
4881 : 0 : clean_up:
4882 : 0 : gfc_free_expr (expr);
4883 : 0 : return NULL;
4884 : : }
4885 : :
4886 : 3968 : if (e->expr_type != EXPR_CONSTANT)
4887 : : return NULL;
4888 : :
4889 : 393 : len = e->value.character.length;
4890 : 1220 : for (count = 0, i = 1; i <= len; i++)
4891 : 1208 : if (e->value.character.string[len - i] == ' ')
4892 : 827 : count++;
4893 : : else
4894 : : break;
4895 : :
4896 : 393 : result = gfc_get_int_expr (k, &e->where, len - count);
4897 : 393 : return range_check (result, "LEN_TRIM");
4898 : : }
4899 : :
4900 : : gfc_expr *
4901 : 50 : gfc_simplify_lgamma (gfc_expr *x)
4902 : : {
4903 : 50 : gfc_expr *result;
4904 : 50 : int sg;
4905 : :
4906 : 50 : if (x->expr_type != EXPR_CONSTANT)
4907 : : return NULL;
4908 : :
4909 : 42 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
4910 : 42 : mpfr_lgamma (result->value.real, &sg, x->value.real, GFC_RND_MODE);
4911 : :
4912 : 42 : return range_check (result, "LGAMMA");
4913 : : }
4914 : :
4915 : :
4916 : : gfc_expr *
4917 : 70 : gfc_simplify_lge (gfc_expr *a, gfc_expr *b)
4918 : : {
4919 : 70 : if (a->expr_type != EXPR_CONSTANT || b->expr_type != EXPR_CONSTANT)
4920 : : return NULL;
4921 : :
4922 : 1 : return gfc_get_logical_expr (gfc_default_logical_kind, &a->where,
4923 : 2 : gfc_compare_string (a, b) >= 0);
4924 : : }
4925 : :
4926 : :
4927 : : gfc_expr *
4928 : 91 : gfc_simplify_lgt (gfc_expr *a, gfc_expr *b)
4929 : : {
4930 : 91 : if (a->expr_type != EXPR_CONSTANT || b->expr_type != EXPR_CONSTANT)
4931 : : return NULL;
4932 : :
4933 : 1 : return gfc_get_logical_expr (gfc_default_logical_kind, &a->where,
4934 : 2 : gfc_compare_string (a, b) > 0);
4935 : : }
4936 : :
4937 : :
4938 : : gfc_expr *
4939 : 79 : gfc_simplify_lle (gfc_expr *a, gfc_expr *b)
4940 : : {
4941 : 79 : if (a->expr_type != EXPR_CONSTANT || b->expr_type != EXPR_CONSTANT)
4942 : : return NULL;
4943 : :
4944 : 1 : return gfc_get_logical_expr (gfc_default_logical_kind, &a->where,
4945 : 2 : gfc_compare_string (a, b) <= 0);
4946 : : }
4947 : :
4948 : :
4949 : : gfc_expr *
4950 : 82 : gfc_simplify_llt (gfc_expr *a, gfc_expr *b)
4951 : : {
4952 : 82 : if (a->expr_type != EXPR_CONSTANT || b->expr_type != EXPR_CONSTANT)
4953 : : return NULL;
4954 : :
4955 : 1 : return gfc_get_logical_expr (gfc_default_logical_kind, &a->where,
4956 : 2 : gfc_compare_string (a, b) < 0);
4957 : : }
4958 : :
4959 : :
4960 : : gfc_expr *
4961 : 544 : gfc_simplify_log (gfc_expr *x)
4962 : : {
4963 : 544 : gfc_expr *result;
4964 : :
4965 : 544 : if (x->expr_type != EXPR_CONSTANT)
4966 : : return NULL;
4967 : :
4968 : 239 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
4969 : :
4970 : 239 : switch (x->ts.type)
4971 : : {
4972 : 116 : case BT_REAL:
4973 : 116 : if (mpfr_sgn (x->value.real) <= 0)
4974 : : {
4975 : 0 : gfc_error ("Argument of LOG at %L cannot be less than or equal "
4976 : : "to zero", &x->where);
4977 : 0 : gfc_free_expr (result);
4978 : 0 : return &gfc_bad_expr;
4979 : : }
4980 : :
4981 : 116 : mpfr_log (result->value.real, x->value.real, GFC_RND_MODE);
4982 : 116 : break;
4983 : :
4984 : 123 : case BT_COMPLEX:
4985 : 123 : if (mpfr_zero_p (mpc_realref (x->value.complex))
4986 : 0 : && mpfr_zero_p (mpc_imagref (x->value.complex)))
4987 : : {
4988 : 0 : gfc_error ("Complex argument of LOG at %L cannot be zero",
4989 : : &x->where);
4990 : 0 : gfc_free_expr (result);
4991 : 0 : return &gfc_bad_expr;
4992 : : }
4993 : :
4994 : 123 : gfc_set_model_kind (x->ts.kind);
4995 : 123 : mpc_log (result->value.complex, x->value.complex, GFC_MPC_RND_MODE);
4996 : 123 : break;
4997 : :
4998 : 0 : default:
4999 : 0 : gfc_internal_error ("gfc_simplify_log: bad type");
5000 : : }
5001 : :
5002 : 239 : return range_check (result, "LOG");
5003 : : }
5004 : :
5005 : :
5006 : : gfc_expr *
5007 : 408 : gfc_simplify_log10 (gfc_expr *x)
5008 : : {
5009 : 408 : gfc_expr *result;
5010 : :
5011 : 408 : if (x->expr_type != EXPR_CONSTANT)
5012 : : return NULL;
5013 : :
5014 : 97 : if (mpfr_sgn (x->value.real) <= 0)
5015 : : {
5016 : 0 : gfc_error ("Argument of LOG10 at %L cannot be less than or equal "
5017 : : "to zero", &x->where);
5018 : 0 : return &gfc_bad_expr;
5019 : : }
5020 : :
5021 : 97 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
5022 : 97 : mpfr_log10 (result->value.real, x->value.real, GFC_RND_MODE);
5023 : :
5024 : 97 : return range_check (result, "LOG10");
5025 : : }
5026 : :
5027 : :
5028 : : gfc_expr *
5029 : 52 : gfc_simplify_logical (gfc_expr *e, gfc_expr *k)
5030 : : {
5031 : 52 : int kind;
5032 : :
5033 : 52 : kind = get_kind (BT_LOGICAL, k, "LOGICAL", gfc_default_logical_kind);
5034 : 52 : if (kind < 0)
5035 : : return &gfc_bad_expr;
5036 : :
5037 : 52 : if (e->expr_type != EXPR_CONSTANT)
5038 : : return NULL;
5039 : :
5040 : 4 : return gfc_get_logical_expr (kind, &e->where, e->value.logical);
5041 : : }
5042 : :
5043 : :
5044 : : gfc_expr*
5045 : 1227 : gfc_simplify_matmul (gfc_expr *matrix_a, gfc_expr *matrix_b)
5046 : : {
5047 : 1227 : gfc_expr *result;
5048 : 1227 : int row, result_rows, col, result_columns;
5049 : 1227 : int stride_a, offset_a, stride_b, offset_b;
5050 : :
5051 : 1227 : if (!is_constant_array_expr (matrix_a)
5052 : 1227 : || !is_constant_array_expr (matrix_b))
5053 : 1164 : return NULL;
5054 : :
5055 : : /* MATMUL should do mixed-mode arithmetic. Set the result type. */
5056 : 63 : if (matrix_a->ts.type != matrix_b->ts.type)
5057 : : {
5058 : 12 : gfc_expr e;
5059 : 12 : e.expr_type = EXPR_OP;
5060 : 12 : gfc_clear_ts (&e.ts);
5061 : 12 : e.value.op.op = INTRINSIC_NONE;
5062 : 12 : e.value.op.op1 = matrix_a;
5063 : 12 : e.value.op.op2 = matrix_b;
5064 : 12 : gfc_type_convert_binary (&e, 1);
5065 : 12 : result = gfc_get_array_expr (e.ts.type, e.ts.kind, &matrix_a->where);
5066 : : }
5067 : : else
5068 : : {
5069 : 51 : result = gfc_get_array_expr (matrix_a->ts.type, matrix_a->ts.kind,
5070 : : &matrix_a->where);
5071 : : }
5072 : :
5073 : 63 : if (matrix_a->rank == 1 && matrix_b->rank == 2)
5074 : : {
5075 : 7 : result_rows = 1;
5076 : 7 : result_columns = mpz_get_si (matrix_b->shape[1]);
5077 : 7 : stride_a = 1;
5078 : 7 : stride_b = mpz_get_si (matrix_b->shape[0]);
5079 : :
5080 : 7 : result->rank = 1;
5081 : 7 : result->shape = gfc_get_shape (result->rank);
5082 : 7 : mpz_init_set_si (result->shape[0], result_columns);
5083 : : }
5084 : 56 : else if (matrix_a->rank == 2 && matrix_b->rank == 1)
5085 : : {
5086 : 6 : result_rows = mpz_get_si (matrix_a->shape[0]);
5087 : 6 : result_columns = 1;
5088 : 6 : stride_a = mpz_get_si (matrix_a->shape[0]);
5089 : 6 : stride_b = 1;
5090 : :
5091 : 6 : result->rank = 1;
5092 : 6 : result->shape = gfc_get_shape (result->rank);
5093 : 6 : mpz_init_set_si (result->shape[0], result_rows);
5094 : : }
5095 : 50 : else if (matrix_a->rank == 2 && matrix_b->rank == 2)
5096 : : {
5097 : 50 : result_rows = mpz_get_si (matrix_a->shape[0]);
5098 : 50 : result_columns = mpz_get_si (matrix_b->shape[1]);
5099 : 50 : stride_a = mpz_get_si (matrix_a->shape[0]);
5100 : 50 : stride_b = mpz_get_si (matrix_b->shape[0]);
5101 : :
5102 : 50 : result->rank = 2;
5103 : 50 : result->shape = gfc_get_shape (result->rank);
5104 : 50 : mpz_init_set_si (result->shape[0], result_rows);
5105 : 50 : mpz_init_set_si (result->shape[1], result_columns);
5106 : : }
5107 : : else
5108 : 0 : gcc_unreachable();
5109 : :
5110 : 63 : offset_b = 0;
5111 : 223 : for (col = 0; col < result_columns; ++col)
5112 : : {
5113 : : offset_a = 0;
5114 : :
5115 : 578 : for (row = 0; row < result_rows; ++row)
5116 : : {
5117 : 418 : gfc_expr *e = compute_dot_product (matrix_a, stride_a, offset_a,
5118 : : matrix_b, 1, offset_b, false);
5119 : 418 : gfc_constructor_append_expr (&result->value.constructor,
5120 : : e, NULL);
5121 : :
5122 : 418 : offset_a += 1;
5123 : : }
5124 : :
5125 : 160 : offset_b += stride_b;
5126 : : }
5127 : :
5128 : : return result;
5129 : : }
5130 : :
5131 : :
5132 : : gfc_expr *
5133 : 285 : gfc_simplify_maskr (gfc_expr *i, gfc_expr *kind_arg)
5134 : : {
5135 : 285 : gfc_expr *result;
5136 : 285 : int kind, arg, k;
5137 : :
5138 : 285 : if (i->expr_type != EXPR_CONSTANT)
5139 : : return NULL;
5140 : :
5141 : 213 : kind = get_kind (BT_INTEGER, kind_arg, "MASKR", gfc_default_integer_kind);
5142 : 213 : if (kind == -1)
5143 : : return &gfc_bad_expr;
5144 : 213 : k = gfc_validate_kind (BT_INTEGER, kind, false);
5145 : :
5146 : 213 : bool fail = gfc_extract_int (i, &arg);
5147 : 213 : gcc_assert (!fail);
5148 : :
5149 : 213 : if (!gfc_check_mask (i, kind_arg))
5150 : : return &gfc_bad_expr;
5151 : :
5152 : 211 : result = gfc_get_constant_expr (BT_INTEGER, kind, &i->where);
5153 : :
5154 : : /* MASKR(n) = 2^n - 1 */
5155 : 211 : mpz_set_ui (result->value.integer, 1);
5156 : 211 : mpz_mul_2exp (result->value.integer, result->value.integer, arg);
5157 : 211 : mpz_sub_ui (result->value.integer, result->value.integer, 1);
5158 : :
5159 : 211 : gfc_convert_mpz_to_signed (result->value.integer, gfc_integer_kinds[k].bit_size);
5160 : :
5161 : 211 : return result;
5162 : : }
5163 : :
5164 : :
5165 : : gfc_expr *
5166 : 297 : gfc_simplify_maskl (gfc_expr *i, gfc_expr *kind_arg)
5167 : : {
5168 : 297 : gfc_expr *result;
5169 : 297 : int kind, arg, k;
5170 : 297 : mpz_t z;
5171 : :
5172 : 297 : if (i->expr_type != EXPR_CONSTANT)
5173 : : return NULL;
5174 : :
5175 : 217 : kind = get_kind (BT_INTEGER, kind_arg, "MASKL", gfc_default_integer_kind);
5176 : 217 : if (kind == -1)
5177 : : return &gfc_bad_expr;
5178 : 217 : k = gfc_validate_kind (BT_INTEGER, kind, false);
5179 : :
5180 : 217 : bool fail = gfc_extract_int (i, &arg);
5181 : 217 : gcc_assert (!fail);
5182 : :
5183 : 217 : if (!gfc_check_mask (i, kind_arg))
5184 : : return &gfc_bad_expr;
5185 : :
5186 : 213 : result = gfc_get_constant_expr (BT_INTEGER, kind, &i->where);
5187 : :
5188 : : /* MASKL(n) = 2^bit_size - 2^(bit_size - n) */
5189 : 213 : mpz_init_set_ui (z, 1);
5190 : 213 : mpz_mul_2exp (z, z, gfc_integer_kinds[k].bit_size);
5191 : 213 : mpz_set_ui (result->value.integer, 1);
5192 : 213 : mpz_mul_2exp (result->value.integer, result->value.integer,
5193 : 213 : gfc_integer_kinds[k].bit_size - arg);
5194 : 213 : mpz_sub (result->value.integer, z, result->value.integer);
5195 : 213 : mpz_clear (z);
5196 : :
5197 : 213 : gfc_convert_mpz_to_signed (result->value.integer, gfc_integer_kinds[k].bit_size);
5198 : :
5199 : 213 : return result;
5200 : : }
5201 : :
5202 : : /* Similar to gfc_simplify_maskr, but code paths are different enough to make
5203 : : this into a separate function. */
5204 : :
5205 : : gfc_expr *
5206 : 24 : gfc_simplify_umaskr (gfc_expr *i, gfc_expr *kind_arg)
5207 : : {
5208 : 24 : gfc_expr *result;
5209 : 24 : int kind, arg, k;
5210 : :
5211 : 24 : if (i->expr_type != EXPR_CONSTANT)
5212 : : return NULL;
5213 : :
5214 : 24 : kind = get_kind (BT_UNSIGNED, kind_arg, "UMASKR", gfc_default_unsigned_kind);
5215 : 24 : if (kind == -1)
5216 : : return &gfc_bad_expr;
5217 : 24 : k = gfc_validate_kind (BT_UNSIGNED, kind, false);
5218 : :
5219 : 24 : bool fail = gfc_extract_int (i, &arg);
5220 : 24 : gcc_assert (!fail);
5221 : :
5222 : 24 : if (!gfc_check_mask (i, kind_arg))
5223 : : return &gfc_bad_expr;
5224 : :
5225 : 24 : result = gfc_get_constant_expr (BT_UNSIGNED, kind, &i->where);
5226 : :
5227 : : /* MASKR(n) = 2^n - 1 */
5228 : 24 : mpz_set_ui (result->value.integer, 1);
5229 : 24 : mpz_mul_2exp (result->value.integer, result->value.integer, arg);
5230 : 24 : mpz_sub_ui (result->value.integer, result->value.integer, 1);
5231 : :
5232 : 24 : gfc_convert_mpz_to_unsigned (result->value.integer,
5233 : : gfc_unsigned_kinds[k].bit_size,
5234 : : false);
5235 : :
5236 : 24 : return result;
5237 : : }
5238 : :
5239 : : /* Likewise, similar to gfc_simplify_maskl. */
5240 : :
5241 : : gfc_expr *
5242 : 24 : gfc_simplify_umaskl (gfc_expr *i, gfc_expr *kind_arg)
5243 : : {
5244 : 24 : gfc_expr *result;
5245 : 24 : int kind, arg, k;
5246 : 24 : mpz_t z;
5247 : :
5248 : 24 : if (i->expr_type != EXPR_CONSTANT)
5249 : : return NULL;
5250 : :
5251 : 24 : kind = get_kind (BT_UNSIGNED, kind_arg, "UMASKL", gfc_default_integer_kind);
5252 : 24 : if (kind == -1)
5253 : : return &gfc_bad_expr;
5254 : 24 : k = gfc_validate_kind (BT_UNSIGNED, kind, false);
5255 : :
5256 : 24 : bool fail = gfc_extract_int (i, &arg);
5257 : 24 : gcc_assert (!fail);
5258 : :
5259 : 24 : if (!gfc_check_mask (i, kind_arg))
5260 : : return &gfc_bad_expr;
5261 : :
5262 : 24 : result = gfc_get_constant_expr (BT_UNSIGNED, kind, &i->where);
5263 : :
5264 : : /* MASKL(n) = 2^bit_size - 2^(bit_size - n) */
5265 : 24 : mpz_init_set_ui (z, 1);
5266 : 24 : mpz_mul_2exp (z, z, gfc_unsigned_kinds[k].bit_size);
5267 : 24 : mpz_set_ui (result->value.integer, 1);
5268 : 24 : mpz_mul_2exp (result->value.integer, result->value.integer,
5269 : 24 : gfc_integer_kinds[k].bit_size - arg);
5270 : 24 : mpz_sub (result->value.integer, z, result->value.integer);
5271 : 24 : mpz_clear (z);
5272 : :
5273 : 24 : gfc_convert_mpz_to_unsigned (result->value.integer,
5274 : : gfc_unsigned_kinds[k].bit_size,
5275 : : false);
5276 : :
5277 : 24 : return result;
5278 : : }
5279 : :
5280 : :
5281 : : gfc_expr *
5282 : 4073 : gfc_simplify_merge (gfc_expr *tsource, gfc_expr *fsource, gfc_expr *mask)
5283 : : {
5284 : 4073 : gfc_expr * result;
5285 : 4073 : gfc_constructor *tsource_ctor, *fsource_ctor, *mask_ctor;
5286 : :
5287 : 4073 : if (mask->expr_type == EXPR_CONSTANT)
5288 : : {
5289 : : /* The standard requires evaluation of all function arguments.
5290 : : Simplify only when the other dropped argument (FSOURCE or TSOURCE)
5291 : : is a constant expression. */
5292 : 699 : if (mask->value.logical)
5293 : : {
5294 : 482 : if (!gfc_is_constant_expr (fsource))
5295 : : return NULL;
5296 : 168 : result = gfc_copy_expr (tsource);
5297 : : }
5298 : : else
5299 : : {
5300 : 217 : if (!gfc_is_constant_expr (tsource))
5301 : : return NULL;
5302 : 67 : result = gfc_copy_expr (fsource);
5303 : : }
5304 : :
5305 : : /* Parenthesis is needed to get lower bounds of 1. */
5306 : 235 : result = gfc_get_parentheses (result);
5307 : 235 : gfc_simplify_expr (result, 1);
5308 : 235 : return result;
5309 : : }
5310 : :
5311 : 771 : if (!mask->rank || !is_constant_array_expr (mask)
5312 : 3421 : || !is_constant_array_expr (tsource) || !is_constant_array_expr (fsource))
5313 : 3355 : return NULL;
5314 : :
5315 : 19 : result = gfc_get_array_expr (tsource->ts.type, tsource->ts.kind,
5316 : : &tsource->where);
5317 : 19 : if (tsource->ts.type == BT_DERIVED)
5318 : 1 : result->ts.u.derived = tsource->ts.u.derived;
5319 : 18 : else if (tsource->ts.type == BT_CHARACTER)
5320 : 6 : result->ts.u.cl = tsource->ts.u.cl;
5321 : :
5322 : 19 : tsource_ctor = gfc_constructor_first (tsource->value.constructor);
5323 : 19 : fsource_ctor = gfc_constructor_first (fsource->value.constructor);
5324 : 19 : mask_ctor = gfc_constructor_first (mask->value.constructor);
5325 : :
5326 : 87 : while (mask_ctor)
5327 : : {
5328 : 49 : if (mask_ctor->expr->value.logical)
5329 : 31 : gfc_constructor_append_expr (&result->value.constructor,
5330 : : gfc_copy_expr (tsource_ctor->expr),
5331 : : NULL);
5332 : : else
5333 : 18 : gfc_constructor_append_expr (&result->value.constructor,
5334 : : gfc_copy_expr (fsource_ctor->expr),
5335 : : NULL);
5336 : 49 : tsource_ctor = gfc_constructor_next (tsource_ctor);
5337 : 49 : fsource_ctor = gfc_constructor_next (fsource_ctor);
5338 : 49 : mask_ctor = gfc_constructor_next (mask_ctor);
5339 : : }
5340 : :
5341 : 19 : result->shape = gfc_get_shape (1);
5342 : 19 : gfc_array_size (result, &result->shape[0]);
5343 : :
5344 : 19 : return result;
5345 : : }
5346 : :
5347 : :
5348 : : gfc_expr *
5349 : 390 : gfc_simplify_merge_bits (gfc_expr *i, gfc_expr *j, gfc_expr *mask_expr)
5350 : : {
5351 : 390 : mpz_t arg1, arg2, mask;
5352 : 390 : gfc_expr *result;
5353 : :
5354 : 390 : if (i->expr_type != EXPR_CONSTANT || j->expr_type != EXPR_CONSTANT
5355 : 294 : || mask_expr->expr_type != EXPR_CONSTANT)
5356 : : return NULL;
5357 : :
5358 : 294 : result = gfc_get_constant_expr (i->ts.type, i->ts.kind, &i->where);
5359 : :
5360 : : /* Convert all argument to unsigned. */
5361 : 294 : mpz_init_set (arg1, i->value.integer);
5362 : 294 : mpz_init_set (arg2, j->value.integer);
5363 : 294 : mpz_init_set (mask, mask_expr->value.integer);
5364 : :
5365 : : /* MERGE_BITS(I,J,MASK) = IOR (IAND (I, MASK), IAND (J, NOT (MASK))). */
5366 : 294 : mpz_and (arg1, arg1, mask);
5367 : 294 : mpz_com (mask, mask);
5368 : 294 : mpz_and (arg2, arg2, mask);
5369 : 294 : mpz_ior (result->value.integer, arg1, arg2);
5370 : :
5371 : 294 : mpz_clear (arg1);
5372 : 294 : mpz_clear (arg2);
5373 : 294 : mpz_clear (mask);
5374 : :
5375 : 294 : return result;
5376 : : }
5377 : :
5378 : :
5379 : : /* Selects between current value and extremum for simplify_min_max
5380 : : and simplify_minval_maxval. */
5381 : : static int
5382 : 3224 : min_max_choose (gfc_expr *arg, gfc_expr *extremum, int sign, bool back_val)
5383 : : {
5384 : 3224 : int ret;
5385 : :
5386 : 3224 : switch (arg->ts.type)
5387 : : {
5388 : 2119 : case BT_INTEGER:
5389 : 2119 : case BT_UNSIGNED:
5390 : 2119 : if (extremum->ts.kind < arg->ts.kind)
5391 : 6 : extremum->ts.kind = arg->ts.kind;
5392 : 2119 : ret = mpz_cmp (arg->value.integer,
5393 : 2119 : extremum->value.integer) * sign;
5394 : 2119 : if (ret > 0)
5395 : 1287 : mpz_set (extremum->value.integer, arg->value.integer);
5396 : : break;
5397 : :
5398 : 608 : case BT_REAL:
5399 : 608 : if (extremum->ts.kind < arg->ts.kind)
5400 : 30 : extremum->ts.kind = arg->ts.kind;
5401 : 608 : if (mpfr_nan_p (extremum->value.real))
5402 : : {
5403 : 192 : ret = 1;
5404 : 192 : mpfr_set (extremum->value.real, arg->value.real, GFC_RND_MODE);
5405 : : }
5406 : 416 : else if (mpfr_nan_p (arg->value.real))
5407 : : ret = -1;
5408 : : else
5409 : : {
5410 : 296 : ret = mpfr_cmp (arg->value.real, extremum->value.real) * sign;
5411 : 296 : if (ret > 0)
5412 : 145 : mpfr_set (extremum->value.real, arg->value.real, GFC_RND_MODE);
5413 : : }
5414 : : break;
5415 : :
5416 : 497 : case BT_CHARACTER:
5417 : : #define LENGTH(x) ((x)->value.character.length)
5418 : : #define STRING(x) ((x)->value.character.string)
5419 : 497 : if (LENGTH (extremum) < LENGTH(arg))
5420 : : {
5421 : 12 : gfc_char_t *tmp = STRING(extremum);
5422 : :
5423 : 12 : STRING(extremum) = gfc_get_wide_string (LENGTH(arg) + 1);
5424 : 12 : memcpy (STRING(extremum), tmp,
5425 : 12 : LENGTH(extremum) * sizeof (gfc_char_t));
5426 : 12 : gfc_wide_memset (&STRING(extremum)[LENGTH(extremum)], ' ',
5427 : 12 : LENGTH(arg) - LENGTH(extremum));
5428 : 12 : STRING(extremum)[LENGTH(arg)] = '\0'; /* For debugger */
5429 : 12 : LENGTH(extremum) = LENGTH(arg);
5430 : 12 : free (tmp);
5431 : : }
5432 : 497 : ret = gfc_compare_string (arg, extremum) * sign;
5433 : 497 : if (ret > 0)
5434 : : {
5435 : 187 : free (STRING(extremum));
5436 : 187 : STRING(extremum) = gfc_get_wide_string (LENGTH(extremum) + 1);
5437 : 187 : memcpy (STRING(extremum), STRING(arg),
5438 : 187 : LENGTH(arg) * sizeof (gfc_char_t));
5439 : 187 : gfc_wide_memset (&STRING(extremum)[LENGTH(arg)], ' ',
5440 : 187 : LENGTH(extremum) - LENGTH(arg));
5441 : 187 : STRING(extremum)[LENGTH(extremum)] = '\0'; /* For debugger */
5442 : : }
5443 : : #undef LENGTH
5444 : : #undef STRING
5445 : : break;
5446 : :
5447 : 0 : default:
5448 : 0 : gfc_internal_error ("simplify_min_max(): Bad type in arglist");
5449 : : }
5450 : 3224 : if (back_val && ret == 0)
5451 : 59 : ret = 1;
5452 : :
5453 : 3224 : return ret;
5454 : : }
5455 : :
5456 : :
5457 : : /* This function is special since MAX() can take any number of
5458 : : arguments. The simplified expression is a rewritten version of the
5459 : : argument list containing at most one constant element. Other
5460 : : constant elements are deleted. Because the argument list has
5461 : : already been checked, this function always succeeds. sign is 1 for
5462 : : MAX(), -1 for MIN(). */
5463 : :
5464 : : static gfc_expr *
5465 : 6026 : simplify_min_max (gfc_expr *expr, int sign)
5466 : : {
5467 : 6026 : int tmp1, tmp2;
5468 : 6026 : gfc_actual_arglist *arg, *last, *extremum;
5469 : 6026 : gfc_expr *tmp, *ret;
5470 : 6026 : const char *fname;
5471 : :
5472 : 6026 : last = NULL;
5473 : 6026 : extremum = NULL;
5474 : :
5475 : 6026 : arg = expr->value.function.actual;
5476 : :
5477 : 19364 : for (; arg; last = arg, arg = arg->next)
5478 : : {
5479 : 13338 : if (arg->expr->expr_type != EXPR_CONSTANT)
5480 : 7755 : continue;
5481 : :
5482 : 5583 : if (extremum == NULL)
5483 : : {
5484 : 3490 : extremum = arg;
5485 : 3490 : continue;
5486 : : }
5487 : :
5488 : 2093 : min_max_choose (arg->expr, extremum->expr, sign);
5489 : :
5490 : : /* Delete the extra constant argument. */
5491 : 2093 : last->next = arg->next;
5492 : :
5493 : 2093 : arg->next = NULL;
5494 : 2093 : gfc_free_actual_arglist (arg);
5495 : 2093 : arg = last;
5496 : : }
5497 : :
5498 : : /* If there is one value left, replace the function call with the
5499 : : expression. */
5500 : 6026 : if (expr->value.function.actual->next != NULL)
5501 : : return NULL;
5502 : :
5503 : : /* Handle special cases of specific functions (min|max)1 and
5504 : : a(min|max)0. */
5505 : :
5506 : 1712 : tmp = expr->value.function.actual->expr;
5507 : 1712 : fname = expr->value.function.isym->name;
5508 : :
5509 : 1712 : if ((tmp->ts.type != BT_INTEGER || tmp->ts.kind != gfc_integer_4_kind)
5510 : 602 : && (strcmp (fname, "min1") == 0 || strcmp (fname, "max1") == 0))
5511 : : {
5512 : : /* Explicit conversion, turn off -Wconversion and -Wconversion-extra
5513 : : warnings. */
5514 : 15 : tmp1 = warn_conversion;
5515 : 15 : tmp2 = warn_conversion_extra;
5516 : 15 : warn_conversion = warn_conversion_extra = 0;
5517 : :
5518 : 15 : ret = gfc_convert_constant (tmp, BT_INTEGER, gfc_integer_4_kind);
5519 : :
5520 : 15 : warn_conversion = tmp1;
5521 : 15 : warn_conversion_extra = tmp2;
5522 : : }
5523 : 1697 : else if ((tmp->ts.type != BT_REAL || tmp->ts.kind != gfc_real_4_kind)
5524 : 1480 : && (strcmp (fname, "amin0") == 0 || strcmp (fname, "amax0") == 0))
5525 : : {
5526 : 15 : ret = gfc_convert_constant (tmp, BT_REAL, gfc_real_4_kind);
5527 : : }
5528 : : else
5529 : 1682 : ret = gfc_copy_expr (tmp);
5530 : :
5531 : : return ret;
5532 : :
5533 : : }
5534 : :
5535 : :
5536 : : gfc_expr *
5537 : 1927 : gfc_simplify_min (gfc_expr *e)
5538 : : {
5539 : 1927 : return simplify_min_max (e, -1);
5540 : : }
5541 : :
5542 : :
5543 : : gfc_expr *
5544 : 4099 : gfc_simplify_max (gfc_expr *e)
5545 : : {
5546 : 4099 : return simplify_min_max (e, 1);
5547 : : }
5548 : :
5549 : : /* Helper function for gfc_simplify_minval. */
5550 : :
5551 : : static gfc_expr *
5552 : 295 : gfc_min (gfc_expr *op1, gfc_expr *op2)
5553 : : {
5554 : 295 : min_max_choose (op1, op2, -1);
5555 : 295 : gfc_free_expr (op1);
5556 : 295 : return op2;
5557 : : }
5558 : :
5559 : : /* Simplify minval for constant arrays. */
5560 : :
5561 : : gfc_expr *
5562 : 3981 : gfc_simplify_minval (gfc_expr *array, gfc_expr* dim, gfc_expr *mask)
5563 : : {
5564 : 3981 : return simplify_transformation (array, dim, mask, INT_MAX, gfc_min);
5565 : : }
5566 : :
5567 : : /* Helper function for gfc_simplify_maxval. */
5568 : :
5569 : : static gfc_expr *
5570 : 271 : gfc_max (gfc_expr *op1, gfc_expr *op2)
5571 : : {
5572 : 271 : min_max_choose (op1, op2, 1);
5573 : 271 : gfc_free_expr (op1);
5574 : 271 : return op2;
5575 : : }
5576 : :
5577 : :
5578 : : /* Simplify maxval for constant arrays. */
5579 : :
5580 : : gfc_expr *
5581 : 2920 : gfc_simplify_maxval (gfc_expr *array, gfc_expr* dim, gfc_expr *mask)
5582 : : {
5583 : 2920 : return simplify_transformation (array, dim, mask, INT_MIN, gfc_max);
5584 : : }
5585 : :
5586 : :
5587 : : /* Transform minloc or maxloc of an array, according to MASK,
5588 : : to the scalar result. This code is mostly identical to
5589 : : simplify_transformation_to_scalar. */
5590 : :
5591 : : static gfc_expr *
5592 : 82 : simplify_minmaxloc_to_scalar (gfc_expr *result, gfc_expr *array, gfc_expr *mask,
5593 : : gfc_expr *extremum, int sign, bool back_val)
5594 : : {
5595 : 82 : gfc_expr *a, *m;
5596 : 82 : gfc_constructor *array_ctor, *mask_ctor;
5597 : 82 : mpz_t count;
5598 : :
5599 : 82 : mpz_set_si (result->value.integer, 0);
5600 : :
5601 : :
5602 : : /* Shortcut for constant .FALSE. MASK. */
5603 : 82 : if (mask
5604 : 42 : && mask->expr_type == EXPR_CONSTANT
5605 : 36 : && !mask->value.logical)
5606 : : return result;
5607 : :
5608 : 46 : array_ctor = gfc_constructor_first (array->value.constructor);
5609 : 46 : if (mask && mask->expr_type == EXPR_ARRAY)
5610 : 6 : mask_ctor = gfc_constructor_first (mask->value.constructor);
5611 : : else
5612 : : mask_ctor = NULL;
5613 : :
5614 : 46 : mpz_init_set_si (count, 0);
5615 : 216 : while (array_ctor)
5616 : : {
5617 : 124 : mpz_add_ui (count, count, 1);
5618 : 124 : a = array_ctor->expr;
5619 : 124 : array_ctor = gfc_constructor_next (array_ctor);
5620 : : /* A constant MASK equals .TRUE. here and can be ignored. */
5621 : 124 : if (mask_ctor)
5622 : : {
5623 : 28 : m = mask_ctor->expr;
5624 : 28 : mask_ctor = gfc_constructor_next (mask_ctor);
5625 : 28 : if (!m->value.logical)
5626 : 12 : continue;
5627 : : }
5628 : 112 : if (min_max_choose (a, extremum, sign, back_val) > 0)
5629 : 60 : mpz_set (result->value.integer, count);
5630 : : }
5631 : 46 : mpz_clear (count);
5632 : 46 : gfc_free_expr (extremum);
5633 : 46 : return result;
5634 : : }
5635 : :
5636 : : /* Simplify minloc / maxloc in the absence of a dim argument. */
5637 : :
5638 : : static gfc_expr *
5639 : 69 : simplify_minmaxloc_nodim (gfc_expr *result, gfc_expr *extremum,
5640 : : gfc_expr *array, gfc_expr *mask, int sign,
5641 : : bool back_val)
5642 : : {
5643 : 69 : ssize_t res[GFC_MAX_DIMENSIONS];
5644 : 69 : int i, n;
5645 : 69 : gfc_constructor *result_ctor, *array_ctor, *mask_ctor;
5646 : 69 : ssize_t count[GFC_MAX_DIMENSIONS], extent[GFC_MAX_DIMENSIONS],
5647 : : sstride[GFC_MAX_DIMENSIONS];
5648 : 69 : gfc_expr *a, *m;
5649 : 69 : bool continue_loop;
5650 : 69 : bool ma;
5651 : :
5652 : 154 : for (i = 0; i<array->rank; i++)
5653 : 85 : res[i] = -1;
5654 : :
5655 : : /* Shortcut for constant .FALSE. MASK. */
5656 : 69 : if (mask
5657 : 56 : && mask->expr_type == EXPR_CONSTANT
5658 : 40 : && !mask->value.logical)
5659 : 38 : goto finish;
5660 : :
5661 : 31 : if (array->shape == NULL)
5662 : 1 : goto finish;
5663 : :
5664 : 66 : for (i = 0; i < array->rank; i++)
5665 : : {
5666 : 44 : count[i] = 0;
5667 : 44 : sstride[i] = (i == 0) ? 1 : sstride[i-1] * mpz_get_si (array->shape[i-1]);
5668 : 44 : extent[i] = mpz_get_si (array->shape[i]);
5669 : 44 : if (extent[i] <= 0)
5670 : 8 : goto finish;
5671 : : }
5672 : :
5673 : 22 : continue_loop = true;
5674 : 22 : array_ctor = gfc_constructor_first (array->value.constructor);
5675 : 22 : if (mask && mask->rank > 0)
5676 : 12 : mask_ctor = gfc_constructor_first (mask->value.constructor);
5677 : : else
5678 : : mask_ctor = NULL;
5679 : :
5680 : : /* Loop over the array elements (and mask), keeping track of
5681 : : the indices to return. */
5682 : 66 : while (continue_loop)
5683 : : {
5684 : 120 : do
5685 : : {
5686 : 120 : a = array_ctor->expr;
5687 : 120 : if (mask_ctor)
5688 : : {
5689 : 46 : m = mask_ctor->expr;
5690 : 46 : ma = m->value.logical;
5691 : 46 : mask_ctor = gfc_constructor_next (mask_ctor);
5692 : : }
5693 : : else
5694 : : ma = true;
5695 : :
5696 : 120 : if (ma && min_max_choose (a, extremum, sign, back_val) > 0)
5697 : : {
5698 : 130 : for (i = 0; i<array->rank; i++)
5699 : 86 : res[i] = count[i];
5700 : : }
5701 : 120 : array_ctor = gfc_constructor_next (array_ctor);
5702 : 120 : count[0] ++;
5703 : 120 : } while (count[0] != extent[0]);
5704 : : n = 0;
5705 : 58 : do
5706 : : {
5707 : : /* When we get to the end of a dimension, reset it and increment
5708 : : the next dimension. */
5709 : 58 : count[n] = 0;
5710 : 58 : n++;
5711 : 58 : if (n >= array->rank)
5712 : : {
5713 : : continue_loop = false;
5714 : : break;
5715 : : }
5716 : : else
5717 : 36 : count[n] ++;
5718 : 36 : } while (count[n] == extent[n]);
5719 : : }
5720 : :
5721 : 22 : finish:
5722 : 69 : gfc_free_expr (extremum);
5723 : 69 : result_ctor = gfc_constructor_first (result->value.constructor);
5724 : 154 : for (i = 0; i<array->rank; i++)
5725 : : {
5726 : 85 : gfc_expr *r_expr;
5727 : 85 : r_expr = result_ctor->expr;
5728 : 85 : mpz_set_si (r_expr->value.integer, res[i] + 1);
5729 : 85 : result_ctor = gfc_constructor_next (result_ctor);
5730 : : }
5731 : 69 : return result;
5732 : : }
5733 : :
5734 : : /* Helper function for gfc_simplify_minmaxloc - build an array
5735 : : expression with n elements. */
5736 : :
5737 : : static gfc_expr *
5738 : 116 : new_array (bt type, int kind, int n, locus *where)
5739 : : {
5740 : 116 : gfc_expr *result;
5741 : 116 : int i;
5742 : :
5743 : 116 : result = gfc_get_array_expr (type, kind, where);
5744 : 116 : result->rank = 1;
5745 : 116 : result->shape = gfc_get_shape(1);
5746 : 116 : mpz_init_set_si (result->shape[0], n);
5747 : 401 : for (i = 0; i < n; i++)
5748 : : {
5749 : 169 : gfc_constructor_append_expr (&result->value.constructor,
5750 : : gfc_get_constant_expr (type, kind, where),
5751 : : NULL);
5752 : : }
5753 : :
5754 : 116 : return result;
5755 : : }
5756 : :
5757 : : /* Simplify minloc and maxloc. This code is mostly identical to
5758 : : simplify_transformation_to_array. */
5759 : :
5760 : : static gfc_expr *
5761 : 48 : simplify_minmaxloc_to_array (gfc_expr *result, gfc_expr *array,
5762 : : gfc_expr *dim, gfc_expr *mask,
5763 : : gfc_expr *extremum, int sign, bool back_val)
5764 : : {
5765 : 48 : mpz_t size;
5766 : 48 : int done, i, n, arraysize, resultsize, dim_index, dim_extent, dim_stride;
5767 : 48 : gfc_expr **arrayvec, **resultvec, **base, **src, **dest;
5768 : 48 : gfc_constructor *array_ctor, *mask_ctor, *result_ctor;
5769 : :
5770 : 48 : int count[GFC_MAX_DIMENSIONS], extent[GFC_MAX_DIMENSIONS],
5771 : : sstride[GFC_MAX_DIMENSIONS], dstride[GFC_MAX_DIMENSIONS],
5772 : : tmpstride[GFC_MAX_DIMENSIONS];
5773 : :
5774 : : /* Shortcut for constant .FALSE. MASK. */
5775 : 48 : if (mask
5776 : 10 : && mask->expr_type == EXPR_CONSTANT
5777 : 0 : && !mask->value.logical)
5778 : : return result;
5779 : :
5780 : : /* Build an indexed table for array element expressions to minimize
5781 : : linked-list traversal. Masked elements are set to NULL. */
5782 : 48 : gfc_array_size (array, &size);
5783 : 48 : arraysize = mpz_get_ui (size);
5784 : 48 : mpz_clear (size);
5785 : :
5786 : 48 : arrayvec = XCNEWVEC (gfc_expr*, arraysize);
5787 : :
5788 : 48 : array_ctor = gfc_constructor_first (array->value.constructor);
5789 : 48 : mask_ctor = NULL;
5790 : 48 : if (mask && mask->expr_type == EXPR_ARRAY)
5791 : 10 : mask_ctor = gfc_constructor_first (mask->value.constructor);
5792 : :
5793 : 474 : for (i = 0; i < arraysize; ++i)
5794 : : {
5795 : 426 : arrayvec[i] = array_ctor->expr;
5796 : 426 : array_ctor = gfc_constructor_next (array_ctor);
5797 : :
5798 : 426 : if (mask_ctor)
5799 : : {
5800 : 106 : if (!mask_ctor->expr->value.logical)
5801 : 65 : arrayvec[i] = NULL;
5802 : :
5803 : 106 : mask_ctor = gfc_constructor_next (mask_ctor);
5804 : : }
5805 : : }
5806 : :
5807 : : /* Same for the result expression. */
5808 : 48 : gfc_array_size (result, &size);
5809 : 48 : resultsize = mpz_get_ui (size);
5810 : 48 : mpz_clear (size);
5811 : :
5812 : 48 : resultvec = XCNEWVEC (gfc_expr*, resultsize);
5813 : 48 : result_ctor = gfc_constructor_first (result->value.constructor);
5814 : 234 : for (i = 0; i < resultsize; ++i)
5815 : : {
5816 : 138 : resultvec[i] = result_ctor->expr;
5817 : 138 : result_ctor = gfc_constructor_next (result_ctor);
5818 : : }
5819 : :
5820 : 48 : gfc_extract_int (dim, &dim_index);
5821 : 48 : dim_index -= 1; /* zero-base index */
5822 : 48 : dim_extent = 0;
5823 : 48 : dim_stride = 0;
5824 : :
5825 : 144 : for (i = 0, n = 0; i < array->rank; ++i)
5826 : : {
5827 : 96 : count[i] = 0;
5828 : 96 : tmpstride[i] = (i == 0) ? 1 : tmpstride[i-1] * mpz_get_si (array->shape[i-1]);
5829 : 96 : if (i == dim_index)
5830 : : {
5831 : 48 : dim_extent = mpz_get_si (array->shape[i]);
5832 : 48 : dim_stride = tmpstride[i];
5833 : 48 : continue;
5834 : : }
5835 : :
5836 : 48 : extent[n] = mpz_get_si (array->shape[i]);
5837 : 48 : sstride[n] = tmpstride[i];
5838 : 48 : dstride[n] = (n == 0) ? 1 : dstride[n-1] * extent[n-1];
5839 : 48 : n += 1;
5840 : : }
5841 : :
5842 : 48 : done = resultsize <= 0;
5843 : 48 : base = arrayvec;
5844 : 48 : dest = resultvec;
5845 : 234 : while (!done)
5846 : : {
5847 : 138 : gfc_expr *ex;
5848 : 138 : ex = gfc_copy_expr (extremum);
5849 : 702 : for (src = base, n = 0; n < dim_extent; src += dim_stride, ++n)
5850 : : {
5851 : 426 : if (*src && min_max_choose (*src, ex, sign, back_val) > 0)
5852 : 215 : mpz_set_si ((*dest)->value.integer, n + 1);
5853 : : }
5854 : :
5855 : 138 : count[0]++;
5856 : 138 : base += sstride[0];
5857 : 138 : dest += dstride[0];
5858 : 138 : gfc_free_expr (ex);
5859 : :
5860 : 138 : n = 0;
5861 : 276 : while (!done && count[n] == extent[n])
5862 : : {
5863 : 46 : count[n] = 0;
5864 : 46 : base -= sstride[n] * extent[n];
5865 : 46 : dest -= dstride[n] * extent[n];
5866 : :
5867 : 46 : n++;
5868 : 46 : if (n < result->rank)
5869 : : {
5870 : : /* If the nested loop is unrolled GFC_MAX_DIMENSIONS
5871 : : times, we'd warn for the last iteration, because the
5872 : : array index will have already been incremented to the
5873 : : array sizes, and we can't tell that this must make
5874 : : the test against result->rank false, because ranks
5875 : : must not exceed GFC_MAX_DIMENSIONS. */
5876 : 0 : GCC_DIAGNOSTIC_PUSH_IGNORED (-Warray-bounds)
5877 : 0 : count[n]++;
5878 : 0 : base += sstride[n];
5879 : 0 : dest += dstride[n];
5880 : 0 : GCC_DIAGNOSTIC_POP
5881 : : }
5882 : : else
5883 : : done = true;
5884 : : }
5885 : : }
5886 : :
5887 : : /* Place updated expression in result constructor. */
5888 : 48 : result_ctor = gfc_constructor_first (result->value.constructor);
5889 : 234 : for (i = 0; i < resultsize; ++i)
5890 : : {
5891 : 138 : result_ctor->expr = resultvec[i];
5892 : 138 : result_ctor = gfc_constructor_next (result_ctor);
5893 : : }
5894 : :
5895 : 48 : free (arrayvec);
5896 : 48 : free (resultvec);
5897 : 48 : free (extremum);
5898 : 48 : return result;
5899 : : }
5900 : :
5901 : : /* Simplify minloc and maxloc for constant arrays. */
5902 : :
5903 : : static gfc_expr *
5904 : 12973 : gfc_simplify_minmaxloc (gfc_expr *array, gfc_expr *dim, gfc_expr *mask,
5905 : : gfc_expr *kind, gfc_expr *back, int sign)
5906 : : {
5907 : 12973 : gfc_expr *result;
5908 : 12973 : gfc_expr *extremum;
5909 : 12973 : int ikind;
5910 : 12973 : int init_val;
5911 : 12973 : bool back_val = false;
5912 : :
5913 : 12973 : if (!is_constant_array_expr (array)
5914 : 12973 : || !gfc_is_constant_expr (dim))
5915 : 12666 : return NULL;
5916 : :
5917 : 307 : if (mask
5918 : 216 : && !is_constant_array_expr (mask)
5919 : 491 : && mask->expr_type != EXPR_CONSTANT)
5920 : : return NULL;
5921 : :
5922 : 199 : if (kind)
5923 : : {
5924 : 0 : if (gfc_extract_int (kind, &ikind, -1))
5925 : : return NULL;
5926 : : }
5927 : : else
5928 : 199 : ikind = gfc_default_integer_kind;
5929 : :
5930 : 199 : if (back)
5931 : : {
5932 : 199 : if (back->expr_type != EXPR_CONSTANT)
5933 : : return NULL;
5934 : :
5935 : 199 : back_val = back->value.logical;
5936 : : }
5937 : :
5938 : 199 : if (sign < 0)
5939 : : init_val = INT_MAX;
5940 : 101 : else if (sign > 0)
5941 : : init_val = INT_MIN;
5942 : : else
5943 : 0 : gcc_unreachable();
5944 : :
5945 : 199 : extremum = gfc_get_constant_expr (array->ts.type, array->ts.kind, &array->where);
5946 : 199 : init_result_expr (extremum, init_val, array);
5947 : :
5948 : 199 : if (dim)
5949 : : {
5950 : 130 : result = transformational_result (array, dim, BT_INTEGER,
5951 : : ikind, &array->where);
5952 : 130 : init_result_expr (result, 0, array);
5953 : :
5954 : 130 : if (array->rank == 1)
5955 : 82 : return simplify_minmaxloc_to_scalar (result, array, mask, extremum,
5956 : 82 : sign, back_val);
5957 : : else
5958 : 48 : return simplify_minmaxloc_to_array (result, array, dim, mask, extremum,
5959 : 48 : sign, back_val);
5960 : : }
5961 : : else
5962 : : {
5963 : 69 : result = new_array (BT_INTEGER, ikind, array->rank, &array->where);
5964 : 69 : return simplify_minmaxloc_nodim (result, extremum, array, mask,
5965 : 69 : sign, back_val);
5966 : : }
5967 : : }
5968 : :
5969 : : gfc_expr *
5970 : 7328 : gfc_simplify_minloc (gfc_expr *array, gfc_expr *dim, gfc_expr *mask, gfc_expr *kind,
5971 : : gfc_expr *back)
5972 : : {
5973 : 7328 : return gfc_simplify_minmaxloc (array, dim, mask, kind, back, -1);
5974 : : }
5975 : :
5976 : : gfc_expr *
5977 : 5645 : gfc_simplify_maxloc (gfc_expr *array, gfc_expr *dim, gfc_expr *mask, gfc_expr *kind,
5978 : : gfc_expr *back)
5979 : : {
5980 : 5645 : return gfc_simplify_minmaxloc (array, dim, mask, kind, back, 1);
5981 : : }
5982 : :
5983 : : /* Simplify findloc to scalar. Similar to
5984 : : simplify_minmaxloc_to_scalar. */
5985 : :
5986 : : static gfc_expr *
5987 : 50 : simplify_findloc_to_scalar (gfc_expr *result, gfc_expr *array, gfc_expr *value,
5988 : : gfc_expr *mask, int back_val)
5989 : : {
5990 : 50 : gfc_expr *a, *m;
5991 : 50 : gfc_constructor *array_ctor, *mask_ctor;
5992 : 50 : mpz_t count;
5993 : :
5994 : 50 : mpz_set_si (result->value.integer, 0);
5995 : :
5996 : : /* Shortcut for constant .FALSE. MASK. */
5997 : 50 : if (mask
5998 : 14 : && mask->expr_type == EXPR_CONSTANT
5999 : 0 : && !mask->value.logical)
6000 : : return result;
6001 : :
6002 : 50 : array_ctor = gfc_constructor_first (array->value.constructor);
6003 : 50 : if (mask && mask->expr_type == EXPR_ARRAY)
6004 : 14 : mask_ctor = gfc_constructor_first (mask->value.constructor);
6005 : : else
6006 : : mask_ctor = NULL;
6007 : :
6008 : 50 : mpz_init_set_si (count, 0);
6009 : 227 : while (array_ctor)
6010 : : {
6011 : 156 : mpz_add_ui (count, count, 1);
6012 : 156 : a = array_ctor->expr;
6013 : 156 : array_ctor = gfc_constructor_next (array_ctor);
6014 : : /* A constant MASK equals .TRUE. here and can be ignored. */
6015 : 156 : if (mask_ctor)
6016 : : {
6017 : 56 : m = mask_ctor->expr;
6018 : 56 : mask_ctor = gfc_constructor_next (mask_ctor);
6019 : 56 : if (!m->value.logical)
6020 : 14 : continue;
6021 : : }
6022 : 142 : if (gfc_compare_expr (a, value, INTRINSIC_EQ) == 0)
6023 : : {
6024 : : /* We have a match. If BACK is true, continue so we find
6025 : : the last one. */
6026 : 50 : mpz_set (result->value.integer, count);
6027 : 50 : if (!back_val)
6028 : : break;
6029 : : }
6030 : : }
6031 : 50 : mpz_clear (count);
6032 : 50 : return result;
6033 : : }
6034 : :
6035 : : /* Simplify findloc in the absence of a dim argument. Similar to
6036 : : simplify_minmaxloc_nodim. */
6037 : :
6038 : : static gfc_expr *
6039 : 47 : simplify_findloc_nodim (gfc_expr *result, gfc_expr *value, gfc_expr *array,
6040 : : gfc_expr *mask, bool back_val)
6041 : : {
6042 : 47 : ssize_t res[GFC_MAX_DIMENSIONS];
6043 : 47 : int i, n;
6044 : 47 : gfc_constructor *result_ctor, *array_ctor, *mask_ctor;
6045 : 47 : ssize_t count[GFC_MAX_DIMENSIONS], extent[GFC_MAX_DIMENSIONS],
6046 : : sstride[GFC_MAX_DIMENSIONS];
6047 : 47 : gfc_expr *a, *m;
6048 : 47 : bool continue_loop;
6049 : 47 : bool ma;
6050 : :
6051 : 131 : for (i = 0; i < array->rank; i++)
6052 : 84 : res[i] = -1;
6053 : :
6054 : : /* Shortcut for constant .FALSE. MASK. */
6055 : 47 : if (mask
6056 : 7 : && mask->expr_type == EXPR_CONSTANT
6057 : 0 : && !mask->value.logical)
6058 : 0 : goto finish;
6059 : :
6060 : 125 : for (i = 0; i < array->rank; i++)
6061 : : {
6062 : 84 : count[i] = 0;
6063 : 84 : sstride[i] = (i == 0) ? 1 : sstride[i-1] * mpz_get_si (array->shape[i-1]);
6064 : 84 : extent[i] = mpz_get_si (array->shape[i]);
6065 : 84 : if (extent[i] <= 0)
6066 : 6 : goto finish;
6067 : : }
6068 : :
6069 : 41 : continue_loop = true;
6070 : 41 : array_ctor = gfc_constructor_first (array->value.constructor);
6071 : 41 : if (mask && mask->rank > 0)
6072 : 7 : mask_ctor = gfc_constructor_first (mask->value.constructor);
6073 : : else
6074 : : mask_ctor = NULL;
6075 : :
6076 : : /* Loop over the array elements (and mask), keeping track of
6077 : : the indices to return. */
6078 : 93 : while (continue_loop)
6079 : : {
6080 : 138 : do
6081 : : {
6082 : 138 : a = array_ctor->expr;
6083 : 138 : if (mask_ctor)
6084 : : {
6085 : 28 : m = mask_ctor->expr;
6086 : 28 : ma = m->value.logical;
6087 : 28 : mask_ctor = gfc_constructor_next (mask_ctor);
6088 : : }
6089 : : else
6090 : : ma = true;
6091 : :
6092 : 138 : if (ma && gfc_compare_expr (a, value, INTRINSIC_EQ) == 0)
6093 : : {
6094 : 73 : for (i = 0; i < array->rank; i++)
6095 : 48 : res[i] = count[i];
6096 : 25 : if (!back_val)
6097 : 17 : goto finish;
6098 : : }
6099 : 121 : array_ctor = gfc_constructor_next (array_ctor);
6100 : 121 : count[0] ++;
6101 : 121 : } while (count[0] != extent[0]);
6102 : : n = 0;
6103 : 73 : do
6104 : : {
6105 : : /* When we get to the end of a dimension, reset it and increment
6106 : : the next dimension. */
6107 : 73 : count[n] = 0;
6108 : 73 : n++;
6109 : 73 : if (n >= array->rank)
6110 : : {
6111 : : continue_loop = false;
6112 : : break;
6113 : : }
6114 : : else
6115 : 49 : count[n] ++;
6116 : 49 : } while (count[n] == extent[n]);
6117 : : }
6118 : :
6119 : 24 : finish:
6120 : 47 : result_ctor = gfc_constructor_first (result->value.constructor);
6121 : 131 : for (i = 0; i < array->rank; i++)
6122 : : {
6123 : 84 : gfc_expr *r_expr;
6124 : 84 : r_expr = result_ctor->expr;
6125 : 84 : mpz_set_si (r_expr->value.integer, res[i] + 1);
6126 : 84 : result_ctor = gfc_constructor_next (result_ctor);
6127 : : }
6128 : 47 : return result;
6129 : : }
6130 : :
6131 : :
6132 : : /* Simplify findloc to an array. Similar to
6133 : : simplify_minmaxloc_to_array. */
6134 : :
6135 : : static gfc_expr *
6136 : 14 : simplify_findloc_to_array (gfc_expr *result, gfc_expr *array, gfc_expr *value,
6137 : : gfc_expr *dim, gfc_expr *mask, bool back_val)
6138 : : {
6139 : 14 : mpz_t size;
6140 : 14 : int done, i, n, arraysize, resultsize, dim_index, dim_extent, dim_stride;
6141 : 14 : gfc_expr **arrayvec, **resultvec, **base, **src, **dest;
6142 : 14 : gfc_constructor *array_ctor, *mask_ctor, *result_ctor;
6143 : :
6144 : 14 : int count[GFC_MAX_DIMENSIONS], extent[GFC_MAX_DIMENSIONS],
6145 : : sstride[GFC_MAX_DIMENSIONS], dstride[GFC_MAX_DIMENSIONS],
6146 : : tmpstride[GFC_MAX_DIMENSIONS];
6147 : :
6148 : : /* Shortcut for constant .FALSE. MASK. */
6149 : 14 : if (mask
6150 : 0 : && mask->expr_type == EXPR_CONSTANT
6151 : 0 : && !mask->value.logical)
6152 : : return result;
6153 : :
6154 : : /* Build an indexed table for array element expressions to minimize
6155 : : linked-list traversal. Masked elements are set to NULL. */
6156 : 14 : gfc_array_size (array, &size);
6157 : 14 : arraysize = mpz_get_ui (size);
6158 : 14 : mpz_clear (size);
6159 : :
6160 : 14 : arrayvec = XCNEWVEC (gfc_expr*, arraysize);
6161 : :
6162 : 14 : array_ctor = gfc_constructor_first (array->value.constructor);
6163 : 14 : mask_ctor = NULL;
6164 : 14 : if (mask && mask->expr_type == EXPR_ARRAY)
6165 : 0 : mask_ctor = gfc_constructor_first (mask->value.constructor);
6166 : :
6167 : 98 : for (i = 0; i < arraysize; ++i)
6168 : : {
6169 : 84 : arrayvec[i] = array_ctor->expr;
6170 : 84 : array_ctor = gfc_constructor_next (array_ctor);
6171 : :
6172 : 84 : if (mask_ctor)
6173 : : {
6174 : 0 : if (!mask_ctor->expr->value.logical)
6175 : 0 : arrayvec[i] = NULL;
6176 : :
6177 : 0 : mask_ctor = gfc_constructor_next (mask_ctor);
6178 : : }
6179 : : }
6180 : :
6181 : : /* Same for the result expression. */
6182 : 14 : gfc_array_size (result, &size);
6183 : 14 : resultsize = mpz_get_ui (size);
6184 : 14 : mpz_clear (size);
6185 : :
6186 : 14 : resultvec = XCNEWVEC (gfc_expr*, resultsize);
6187 : 14 : result_ctor = gfc_constructor_first (result->value.constructor);
6188 : 63 : for (i = 0; i < resultsize; ++i)
6189 : : {
6190 : 35 : resultvec[i] = result_ctor->expr;
6191 : 35 : result_ctor = gfc_constructor_next (result_ctor);
6192 : : }
6193 : :
6194 : 14 : gfc_extract_int (dim, &dim_index);
6195 : :
6196 : 14 : dim_index -= 1; /* Zero-base index. */
6197 : 14 : dim_extent = 0;
6198 : 14 : dim_stride = 0;
6199 : :
6200 : 42 : for (i = 0, n = 0; i < array->rank; ++i)
6201 : : {
6202 : 28 : count[i] = 0;
6203 : 28 : tmpstride[i] = (i == 0) ? 1 : tmpstride[i-1] * mpz_get_si (array->shape[i-1]);
6204 : 28 : if (i == dim_index)
6205 : : {
6206 : 14 : dim_extent = mpz_get_si (array->shape[i]);
6207 : 14 : dim_stride = tmpstride[i];
6208 : 14 : continue;
6209 : : }
6210 : :
6211 : 14 : extent[n] = mpz_get_si (array->shape[i]);
6212 : 14 : sstride[n] = tmpstride[i];
6213 : 14 : dstride[n] = (n == 0) ? 1 : dstride[n-1] * extent[n-1];
6214 : 14 : n += 1;
6215 : : }
6216 : :
6217 : 14 : done = resultsize <= 0;
6218 : 14 : base = arrayvec;
6219 : 14 : dest = resultvec;
6220 : 63 : while (!done)
6221 : : {
6222 : 63 : for (src = base, n = 0; n < dim_extent; src += dim_stride, ++n)
6223 : : {
6224 : 56 : if (*src && gfc_compare_expr (*src, value, INTRINSIC_EQ) == 0)
6225 : : {
6226 : 28 : mpz_set_si ((*dest)->value.integer, n + 1);
6227 : 28 : if (!back_val)
6228 : : break;
6229 : : }
6230 : : }
6231 : :
6232 : 35 : count[0]++;
6233 : 35 : base += sstride[0];
6234 : 35 : dest += dstride[0];
6235 : :
6236 : 35 : n = 0;
6237 : 35 : while (!done && count[n] == extent[n])
6238 : : {
6239 : 14 : count[n] = 0;
6240 : 14 : base -= sstride[n] * extent[n];
6241 : 14 : dest -= dstride[n] * extent[n];
6242 : :
6243 : 14 : n++;
6244 : 14 : if (n < result->rank)
6245 : : {
6246 : : /* If the nested loop is unrolled GFC_MAX_DIMENSIONS
6247 : : times, we'd warn for the last iteration, because the
6248 : : array index will have already been incremented to the
6249 : : array sizes, and we can't tell that this must make
6250 : : the test against result->rank false, because ranks
6251 : : must not exceed GFC_MAX_DIMENSIONS. */
6252 : 0 : GCC_DIAGNOSTIC_PUSH_IGNORED (-Warray-bounds)
6253 : 0 : count[n]++;
6254 : 0 : base += sstride[n];
6255 : 0 : dest += dstride[n];
6256 : 0 : GCC_DIAGNOSTIC_POP
6257 : : }
6258 : : else
6259 : : done = true;
6260 : : }
6261 : : }
6262 : :
6263 : : /* Place updated expression in result constructor. */
6264 : 14 : result_ctor = gfc_constructor_first (result->value.constructor);
6265 : 63 : for (i = 0; i < resultsize; ++i)
6266 : : {
6267 : 35 : result_ctor->expr = resultvec[i];
6268 : 35 : result_ctor = gfc_constructor_next (result_ctor);
6269 : : }
6270 : :
6271 : 14 : free (arrayvec);
6272 : 14 : free (resultvec);
6273 : 14 : return result;
6274 : : }
6275 : :
6276 : : /* Simplify findloc. */
6277 : :
6278 : : gfc_expr *
6279 : 1308 : gfc_simplify_findloc (gfc_expr *array, gfc_expr *value, gfc_expr *dim,
6280 : : gfc_expr *mask, gfc_expr *kind, gfc_expr *back)
6281 : : {
6282 : 1308 : gfc_expr *result;
6283 : 1308 : int ikind;
6284 : 1308 : bool back_val = false;
6285 : :
6286 : 1308 : if (!is_constant_array_expr (array)
6287 : 114 : || array->shape == NULL
6288 : 1421 : || !gfc_is_constant_expr (dim))
6289 : 1195 : return NULL;
6290 : :
6291 : 113 : if (! gfc_is_constant_expr (value))
6292 : : return 0;
6293 : :
6294 : 113 : if (mask
6295 : 21 : && !is_constant_array_expr (mask)
6296 : 113 : && mask->expr_type != EXPR_CONSTANT)
6297 : : return NULL;
6298 : :
6299 : 113 : if (kind)
6300 : : {
6301 : 0 : if (gfc_extract_int (kind, &ikind, -1))
6302 : : return NULL;
6303 : : }
6304 : : else
6305 : 113 : ikind = gfc_default_integer_kind;
6306 : :
6307 : 113 : if (back)
6308 : : {
6309 : 113 : if (back->expr_type != EXPR_CONSTANT)
6310 : : return NULL;
6311 : :
6312 : 111 : back_val = back->value.logical;
6313 : : }
6314 : :
6315 : 111 : if (dim)
6316 : : {
6317 : 64 : result = transformational_result (array, dim, BT_INTEGER,
6318 : : ikind, &array->where);
6319 : 64 : init_result_expr (result, 0, array);
6320 : :
6321 : 64 : if (array->rank == 1)
6322 : 50 : return simplify_findloc_to_scalar (result, array, value, mask,
6323 : 50 : back_val);
6324 : : else
6325 : 14 : return simplify_findloc_to_array (result, array, value, dim, mask,
6326 : 14 : back_val);
6327 : : }
6328 : : else
6329 : : {
6330 : 47 : result = new_array (BT_INTEGER, ikind, array->rank, &array->where);
6331 : 47 : return simplify_findloc_nodim (result, value, array, mask, back_val);
6332 : : }
6333 : : return NULL;
6334 : : }
6335 : :
6336 : : gfc_expr *
6337 : 1 : gfc_simplify_maxexponent (gfc_expr *x)
6338 : : {
6339 : 1 : int i = gfc_validate_kind (BT_REAL, x->ts.kind, false);
6340 : 1 : return gfc_get_int_expr (gfc_default_integer_kind, &x->where,
6341 : 1 : gfc_real_kinds[i].max_exponent);
6342 : : }
6343 : :
6344 : :
6345 : : gfc_expr *
6346 : 25 : gfc_simplify_minexponent (gfc_expr *x)
6347 : : {
6348 : 25 : int i = gfc_validate_kind (BT_REAL, x->ts.kind, false);
6349 : 25 : return gfc_get_int_expr (gfc_default_integer_kind, &x->where,
6350 : 25 : gfc_real_kinds[i].min_exponent);
6351 : : }
6352 : :
6353 : :
6354 : : gfc_expr *
6355 : 266656 : gfc_simplify_mod (gfc_expr *a, gfc_expr *p)
6356 : : {
6357 : 266656 : gfc_expr *result;
6358 : 266656 : int kind;
6359 : :
6360 : : /* First check p. */
6361 : 266656 : if (p->expr_type != EXPR_CONSTANT)
6362 : : return NULL;
6363 : :
6364 : : /* p shall not be 0. */
6365 : 265917 : switch (p->ts.type)
6366 : : {
6367 : 265809 : case BT_INTEGER:
6368 : 265809 : case BT_UNSIGNED:
6369 : 265809 : if (mpz_cmp_ui (p->value.integer, 0) == 0)
6370 : : {
6371 : 4 : gfc_error ("Argument %qs of MOD at %L shall not be zero",
6372 : : "P", &p->where);
6373 : 4 : return &gfc_bad_expr;
6374 : : }
6375 : : break;
6376 : 108 : case BT_REAL:
6377 : 108 : if (mpfr_cmp_ui (p->value.real, 0) == 0)
6378 : : {
6379 : 0 : gfc_error ("Argument %qs of MOD at %L shall not be zero",
6380 : : "P", &p->where);
6381 : 0 : return &gfc_bad_expr;
6382 : : }
6383 : : break;
6384 : 0 : default:
6385 : 0 : gfc_internal_error ("gfc_simplify_mod(): Bad arguments");
6386 : : }
6387 : :
6388 : 265913 : if (a->expr_type != EXPR_CONSTANT)
6389 : : return NULL;
6390 : :
6391 : 262798 : kind = a->ts.kind > p->ts.kind ? a->ts.kind : p->ts.kind;
6392 : 262798 : result = gfc_get_constant_expr (a->ts.type, kind, &a->where);
6393 : :
6394 : 262798 : if (a->ts.type == BT_INTEGER || a->ts.type == BT_UNSIGNED)
6395 : 262690 : mpz_tdiv_r (result->value.integer, a->value.integer, p->value.integer);
6396 : : else
6397 : : {
6398 : 108 : gfc_set_model_kind (kind);
6399 : 108 : mpfr_fmod (result->value.real, a->value.real, p->value.real,
6400 : : GFC_RND_MODE);
6401 : : }
6402 : :
6403 : 262798 : return range_check (result, "MOD");
6404 : : }
6405 : :
6406 : :
6407 : : gfc_expr *
6408 : 2056 : gfc_simplify_modulo (gfc_expr *a, gfc_expr *p)
6409 : : {
6410 : 2056 : gfc_expr *result;
6411 : 2056 : int kind;
6412 : :
6413 : : /* First check p. */
6414 : 2056 : if (p->expr_type != EXPR_CONSTANT)
6415 : : return NULL;
6416 : :
6417 : : /* p shall not be 0. */
6418 : 1883 : switch (p->ts.type)
6419 : : {
6420 : 1847 : case BT_INTEGER:
6421 : 1847 : case BT_UNSIGNED:
6422 : 1847 : if (mpz_cmp_ui (p->value.integer, 0) == 0)
6423 : : {
6424 : 4 : gfc_error ("Argument %qs of MODULO at %L shall not be zero",
6425 : : "P", &p->where);
6426 : 4 : return &gfc_bad_expr;
6427 : : }
6428 : : break;
6429 : 36 : case BT_REAL:
6430 : 36 : if (mpfr_cmp_ui (p->value.real, 0) == 0)
6431 : : {
6432 : 0 : gfc_error ("Argument %qs of MODULO at %L shall not be zero",
6433 : : "P", &p->where);
6434 : 0 : return &gfc_bad_expr;
6435 : : }
6436 : : break;
6437 : 0 : default:
6438 : 0 : gfc_internal_error ("gfc_simplify_modulo(): Bad arguments");
6439 : : }
6440 : :
6441 : 1879 : if (a->expr_type != EXPR_CONSTANT)
6442 : : return NULL;
6443 : :
6444 : 252 : kind = a->ts.kind > p->ts.kind ? a->ts.kind : p->ts.kind;
6445 : 252 : result = gfc_get_constant_expr (a->ts.type, kind, &a->where);
6446 : :
6447 : 252 : if (a->ts.type == BT_INTEGER || a->ts.type == BT_UNSIGNED)
6448 : 216 : mpz_fdiv_r (result->value.integer, a->value.integer, p->value.integer);
6449 : : else
6450 : : {
6451 : 36 : gfc_set_model_kind (kind);
6452 : 36 : mpfr_fmod (result->value.real, a->value.real, p->value.real,
6453 : : GFC_RND_MODE);
6454 : 36 : if (mpfr_cmp_ui (result->value.real, 0) != 0)
6455 : : {
6456 : 12 : if (mpfr_signbit (a->value.real) != mpfr_signbit (p->value.real))
6457 : 6 : mpfr_add (result->value.real, result->value.real, p->value.real,
6458 : : GFC_RND_MODE);
6459 : : }
6460 : : else
6461 : 24 : mpfr_copysign (result->value.real, result->value.real,
6462 : : p->value.real, GFC_RND_MODE);
6463 : : }
6464 : :
6465 : 252 : return range_check (result, "MODULO");
6466 : : }
6467 : :
6468 : :
6469 : : gfc_expr *
6470 : 6320 : gfc_simplify_nearest (gfc_expr *x, gfc_expr *s)
6471 : : {
6472 : 6320 : gfc_expr *result;
6473 : 6320 : mpfr_exp_t emin, emax;
6474 : 6320 : int kind;
6475 : :
6476 : 6320 : if (x->expr_type != EXPR_CONSTANT || s->expr_type != EXPR_CONSTANT)
6477 : : return NULL;
6478 : :
6479 : 826 : result = gfc_copy_expr (x);
6480 : :
6481 : : /* Save current values of emin and emax. */
6482 : 826 : emin = mpfr_get_emin ();
6483 : 826 : emax = mpfr_get_emax ();
6484 : :
6485 : : /* Set emin and emax for the current model number. */
6486 : 826 : kind = gfc_validate_kind (BT_REAL, x->ts.kind, 0);
6487 : 826 : mpfr_set_emin ((mpfr_exp_t) gfc_real_kinds[kind].min_exponent -
6488 : 826 : mpfr_get_prec(result->value.real) + 1);
6489 : 826 : mpfr_set_emax ((mpfr_exp_t) gfc_real_kinds[kind].max_exponent);
6490 : 826 : mpfr_check_range (result->value.real, 0, MPFR_RNDU);
6491 : :
6492 : 826 : if (mpfr_sgn (s->value.real) > 0)
6493 : : {
6494 : 404 : mpfr_nextabove (result->value.real);
6495 : 404 : mpfr_subnormalize (result->value.real, 0, MPFR_RNDU);
6496 : : }
6497 : : else
6498 : : {
6499 : 422 : mpfr_nextbelow (result->value.real);
6500 : 422 : mpfr_subnormalize (result->value.real, 0, MPFR_RNDD);
6501 : : }
6502 : :
6503 : 826 : mpfr_set_emin (emin);
6504 : 826 : mpfr_set_emax (emax);
6505 : :
6506 : : /* Only NaN can occur. Do not use range check as it gives an
6507 : : error for denormal numbers. */
6508 : 826 : if (mpfr_nan_p (result->value.real) && flag_range_check)
6509 : : {
6510 : 0 : gfc_error ("Result of NEAREST is NaN at %L", &result->where);
6511 : 0 : gfc_free_expr (result);
6512 : 0 : return &gfc_bad_expr;
6513 : : }
6514 : :
6515 : : return result;
6516 : : }
6517 : :
6518 : :
6519 : : static gfc_expr *
6520 : 538 : simplify_nint (const char *name, gfc_expr *e, gfc_expr *k)
6521 : : {
6522 : 538 : gfc_expr *itrunc, *result;
6523 : 538 : int kind;
6524 : :
6525 : 538 : kind = get_kind (BT_INTEGER, k, name, gfc_default_integer_kind);
6526 : 538 : if (kind == -1)
6527 : : return &gfc_bad_expr;
6528 : :
6529 : 538 : if (e->expr_type != EXPR_CONSTANT)
6530 : : return NULL;
6531 : :
6532 : 156 : itrunc = gfc_copy_expr (e);
6533 : 156 : mpfr_round (itrunc->value.real, e->value.real);
6534 : :
6535 : 156 : result = gfc_get_constant_expr (BT_INTEGER, kind, &e->where);
6536 : 156 : gfc_mpfr_to_mpz (result->value.integer, itrunc->value.real, &e->where);
6537 : :
6538 : 156 : gfc_free_expr (itrunc);
6539 : :
6540 : 156 : return range_check (result, name);
6541 : : }
6542 : :
6543 : :
6544 : : gfc_expr *
6545 : 331 : gfc_simplify_new_line (gfc_expr *e)
6546 : : {
6547 : 331 : gfc_expr *result;
6548 : :
6549 : 331 : result = gfc_get_character_expr (e->ts.kind, &e->where, NULL, 1);
6550 : 331 : result->value.character.string[0] = '\n';
6551 : :
6552 : 331 : return result;
6553 : : }
6554 : :
6555 : :
6556 : : gfc_expr *
6557 : 406 : gfc_simplify_nint (gfc_expr *e, gfc_expr *k)
6558 : : {
6559 : 406 : return simplify_nint ("NINT", e, k);
6560 : : }
6561 : :
6562 : :
6563 : : gfc_expr *
6564 : 132 : gfc_simplify_idnint (gfc_expr *e)
6565 : : {
6566 : 132 : return simplify_nint ("IDNINT", e, NULL);
6567 : : }
6568 : :
6569 : : static int norm2_scale;
6570 : :
6571 : : static gfc_expr *
6572 : 124 : norm2_add_squared (gfc_expr *result, gfc_expr *e)
6573 : : {
6574 : 124 : mpfr_t tmp;
6575 : :
6576 : 124 : gcc_assert (e->ts.type == BT_REAL && e->expr_type == EXPR_CONSTANT);
6577 : 124 : gcc_assert (result->ts.type == BT_REAL
6578 : : && result->expr_type == EXPR_CONSTANT);
6579 : :
6580 : 124 : gfc_set_model_kind (result->ts.kind);
6581 : 124 : int index = gfc_validate_kind (BT_REAL, result->ts.kind, false);
6582 : 124 : mpfr_exp_t exp;
6583 : 124 : if (mpfr_regular_p (result->value.real))
6584 : : {
6585 : 61 : exp = mpfr_get_exp (result->value.real);
6586 : : /* If result is getting close to overflowing, scale down. */
6587 : 61 : if (exp >= gfc_real_kinds[index].max_exponent - 4
6588 : 0 : && norm2_scale <= gfc_real_kinds[index].max_exponent - 2)
6589 : : {
6590 : 0 : norm2_scale += 2;
6591 : 0 : mpfr_div_ui (result->value.real, result->value.real, 16,
6592 : : GFC_RND_MODE);
6593 : : }
6594 : : }
6595 : :
6596 : 124 : mpfr_init (tmp);
6597 : 124 : if (mpfr_regular_p (e->value.real))
6598 : : {
6599 : 88 : exp = mpfr_get_exp (e->value.real);
6600 : : /* If e**2 would overflow or close to overflowing, scale down. */
6601 : 88 : if (exp - norm2_scale >= gfc_real_kinds[index].max_exponent / 2 - 2)
6602 : : {
6603 : 12 : int new_scale = gfc_real_kinds[index].max_exponent / 2 + 4;
6604 : 12 : mpfr_set_ui (tmp, 1, GFC_RND_MODE);
6605 : 12 : mpfr_set_exp (tmp, new_scale - norm2_scale);
6606 : 12 : mpfr_div (result->value.real, result->value.real, tmp, GFC_RND_MODE);
6607 : 12 : mpfr_div (result->value.real, result->value.real, tmp, GFC_RND_MODE);
6608 : 12 : norm2_scale = new_scale;
6609 : : }
6610 : : }
6611 : 124 : if (norm2_scale)
6612 : : {
6613 : 12 : mpfr_set_ui (tmp, 1, GFC_RND_MODE);
6614 : 12 : mpfr_set_exp (tmp, norm2_scale);
6615 : 12 : mpfr_div (tmp, e->value.real, tmp, GFC_RND_MODE);
6616 : : }
6617 : : else
6618 : 112 : mpfr_set (tmp, e->value.real, GFC_RND_MODE);
6619 : 124 : mpfr_pow_ui (tmp, tmp, 2, GFC_RND_MODE);
6620 : 124 : mpfr_add (result->value.real, result->value.real, tmp,
6621 : : GFC_RND_MODE);
6622 : 124 : mpfr_clear (tmp);
6623 : :
6624 : 124 : return result;
6625 : : }
6626 : :
6627 : :
6628 : : static gfc_expr *
6629 : 2 : norm2_do_sqrt (gfc_expr *result, gfc_expr *e)
6630 : : {
6631 : 2 : gcc_assert (e->ts.type == BT_REAL && e->expr_type == EXPR_CONSTANT);
6632 : 2 : gcc_assert (result->ts.type == BT_REAL
6633 : : && result->expr_type == EXPR_CONSTANT);
6634 : :
6635 : 2 : if (result != e)
6636 : 0 : mpfr_set (result->value.real, e->value.real, GFC_RND_MODE);
6637 : 2 : mpfr_sqrt (result->value.real, result->value.real, GFC_RND_MODE);
6638 : 2 : if (norm2_scale && mpfr_regular_p (result->value.real))
6639 : : {
6640 : 0 : mpfr_t tmp;
6641 : 0 : mpfr_init (tmp);
6642 : 0 : mpfr_set_ui (tmp, 1, GFC_RND_MODE);
6643 : 0 : mpfr_set_exp (tmp, norm2_scale);
6644 : 0 : mpfr_mul (result->value.real, result->value.real, tmp, GFC_RND_MODE);
6645 : 0 : mpfr_clear (tmp);
6646 : : }
6647 : 2 : norm2_scale = 0;
6648 : :
6649 : 2 : return result;
6650 : : }
6651 : :
6652 : :
6653 : : gfc_expr *
6654 : 449 : gfc_simplify_norm2 (gfc_expr *e, gfc_expr *dim)
6655 : : {
6656 : 449 : gfc_expr *result;
6657 : 449 : bool size_zero;
6658 : :
6659 : 449 : size_zero = gfc_is_size_zero_array (e);
6660 : :
6661 : 835 : if (!(is_constant_array_expr (e) || size_zero)
6662 : 449 : || (dim != NULL && !gfc_is_constant_expr (dim)))
6663 : 386 : return NULL;
6664 : :
6665 : 63 : result = transformational_result (e, dim, e->ts.type, e->ts.kind, &e->where);
6666 : 63 : init_result_expr (result, 0, NULL);
6667 : :
6668 : 63 : if (size_zero)
6669 : : return result;
6670 : :
6671 : 38 : norm2_scale = 0;
6672 : 38 : if (!dim || e->rank == 1)
6673 : : {
6674 : 37 : result = simplify_transformation_to_scalar (result, e, NULL,
6675 : : norm2_add_squared);
6676 : 37 : mpfr_sqrt (result->value.real, result->value.real, GFC_RND_MODE);
6677 : 37 : if (norm2_scale && mpfr_regular_p (result->value.real))
6678 : : {
6679 : 12 : mpfr_t tmp;
6680 : 12 : mpfr_init (tmp);
6681 : 12 : mpfr_set_ui (tmp, 1, GFC_RND_MODE);
6682 : 12 : mpfr_set_exp (tmp, norm2_scale);
6683 : 12 : mpfr_mul (result->value.real, result->value.real, tmp, GFC_RND_MODE);
6684 : 12 : mpfr_clear (tmp);
6685 : : }
6686 : 37 : norm2_scale = 0;
6687 : 37 : }
6688 : : else
6689 : 1 : result = simplify_transformation_to_array (result, e, dim, NULL,
6690 : : norm2_add_squared,
6691 : : norm2_do_sqrt);
6692 : :
6693 : : return result;
6694 : : }
6695 : :
6696 : :
6697 : : gfc_expr *
6698 : 596 : gfc_simplify_not (gfc_expr *e)
6699 : : {
6700 : 596 : gfc_expr *result;
6701 : :
6702 : 596 : if (e->expr_type != EXPR_CONSTANT)
6703 : : return NULL;
6704 : :
6705 : 210 : result = gfc_get_constant_expr (e->ts.type, e->ts.kind, &e->where);
6706 : 210 : mpz_com (result->value.integer, e->value.integer);
6707 : :
6708 : 210 : return range_check (result, "NOT");
6709 : : }
6710 : :
6711 : :
6712 : : gfc_expr *
6713 : 1868 : gfc_simplify_null (gfc_expr *mold)
6714 : : {
6715 : 1868 : gfc_expr *result;
6716 : :
6717 : 1868 : if (mold)
6718 : : {
6719 : 562 : result = gfc_copy_expr (mold);
6720 : 562 : result->expr_type = EXPR_NULL;
6721 : : }
6722 : : else
6723 : 1306 : result = gfc_get_null_expr (NULL);
6724 : :
6725 : 1868 : return result;
6726 : : }
6727 : :
6728 : :
6729 : : gfc_expr *
6730 : 1166 : gfc_simplify_num_images (gfc_expr *distance ATTRIBUTE_UNUSED, gfc_expr *failed)
6731 : : {
6732 : 1166 : gfc_expr *result;
6733 : :
6734 : 1166 : if (flag_coarray == GFC_FCOARRAY_NONE)
6735 : : {
6736 : 0 : gfc_fatal_error ("Coarrays disabled at %C, use %<-fcoarray=%> to enable");
6737 : : return &gfc_bad_expr;
6738 : : }
6739 : :
6740 : 1166 : if (flag_coarray != GFC_FCOARRAY_SINGLE)
6741 : : return NULL;
6742 : :
6743 : 379 : if (failed && failed->expr_type != EXPR_CONSTANT)
6744 : : return NULL;
6745 : :
6746 : : /* FIXME: gfc_current_locus is wrong. */
6747 : 379 : result = gfc_get_constant_expr (BT_INTEGER, gfc_default_integer_kind,
6748 : : &gfc_current_locus);
6749 : :
6750 : 379 : if (failed && failed->value.logical != 0)
6751 : 1 : mpz_set_si (result->value.integer, 0);
6752 : : else
6753 : 378 : mpz_set_si (result->value.integer, 1);
6754 : :
6755 : : return result;
6756 : : }
6757 : :
6758 : :
6759 : : gfc_expr *
6760 : 20 : gfc_simplify_or (gfc_expr *x, gfc_expr *y)
6761 : : {
6762 : 20 : gfc_expr *result;
6763 : 20 : int kind;
6764 : :
6765 : 20 : if (x->expr_type != EXPR_CONSTANT || y->expr_type != EXPR_CONSTANT)
6766 : : return NULL;
6767 : :
6768 : 6 : kind = x->ts.kind > y->ts.kind ? x->ts.kind : y->ts.kind;
6769 : :
6770 : 6 : switch (x->ts.type)
6771 : : {
6772 : 0 : case BT_INTEGER:
6773 : 0 : result = gfc_get_constant_expr (BT_INTEGER, kind, &x->where);
6774 : 0 : mpz_ior (result->value.integer, x->value.integer, y->value.integer);
6775 : 0 : return range_check (result, "OR");
6776 : :
6777 : 6 : case BT_LOGICAL:
6778 : 6 : return gfc_get_logical_expr (kind, &x->where,
6779 : 12 : x->value.logical || y->value.logical);
6780 : 0 : default:
6781 : 0 : gcc_unreachable();
6782 : : }
6783 : : }
6784 : :
6785 : :
6786 : : gfc_expr *
6787 : 981 : gfc_simplify_pack (gfc_expr *array, gfc_expr *mask, gfc_expr *vector)
6788 : : {
6789 : 981 : gfc_expr *result;
6790 : 981 : gfc_constructor *array_ctor, *mask_ctor, *vector_ctor;
6791 : :
6792 : 981 : if (!is_constant_array_expr (array)
6793 : 58 : || !is_constant_array_expr (vector)
6794 : 1039 : || (!gfc_is_constant_expr (mask)
6795 : 2 : && !is_constant_array_expr (mask)))
6796 : 924 : return NULL;
6797 : :
6798 : 57 : result = gfc_get_array_expr (array->ts.type, array->ts.kind, &array->where);
6799 : 57 : if (array->ts.type == BT_DERIVED)
6800 : 5 : result->ts.u.derived = array->ts.u.derived;
6801 : :
6802 : 57 : array_ctor = gfc_constructor_first (array->value.constructor);
6803 : 114 : vector_ctor = vector
6804 : 57 : ? gfc_constructor_first (vector->value.constructor)
6805 : : : NULL;
6806 : :
6807 : 57 : if (mask->expr_type == EXPR_CONSTANT
6808 : 0 : && mask->value.logical)
6809 : : {
6810 : : /* Copy all elements of ARRAY to RESULT. */
6811 : 0 : while (array_ctor)
6812 : : {
6813 : 0 : gfc_constructor_append_expr (&result->value.constructor,
6814 : : gfc_copy_expr (array_ctor->expr),
6815 : : NULL);
6816 : :
6817 : 0 : array_ctor = gfc_constructor_next (array_ctor);
6818 : 0 : vector_ctor = gfc_constructor_next (vector_ctor);
6819 : : }
6820 : : }
6821 : 57 : else if (mask->expr_type == EXPR_ARRAY)
6822 : : {
6823 : : /* Copy only those elements of ARRAY to RESULT whose
6824 : : MASK equals .TRUE.. */
6825 : 57 : mask_ctor = gfc_constructor_first (mask->value.constructor);
6826 : 303 : while (mask_ctor && array_ctor)
6827 : : {
6828 : 189 : if (mask_ctor->expr->value.logical)
6829 : : {
6830 : 130 : gfc_constructor_append_expr (&result->value.constructor,
6831 : : gfc_copy_expr (array_ctor->expr),
6832 : : NULL);
6833 : 130 : vector_ctor = gfc_constructor_next (vector_ctor);
6834 : : }
6835 : :
6836 : 189 : array_ctor = gfc_constructor_next (array_ctor);
6837 : 189 : mask_ctor = gfc_constructor_next (mask_ctor);
6838 : : }
6839 : : }
6840 : :
6841 : : /* Append any left-over elements from VECTOR to RESULT. */
6842 : 85 : while (vector_ctor)
6843 : : {
6844 : 28 : gfc_constructor_append_expr (&result->value.constructor,
6845 : : gfc_copy_expr (vector_ctor->expr),
6846 : : NULL);
6847 : 28 : vector_ctor = gfc_constructor_next (vector_ctor);
6848 : : }
6849 : :
6850 : 57 : result->shape = gfc_get_shape (1);
6851 : 57 : gfc_array_size (result, &result->shape[0]);
6852 : :
6853 : 57 : if (array->ts.type == BT_CHARACTER)
6854 : 51 : result->ts.u.cl = array->ts.u.cl;
6855 : :
6856 : : return result;
6857 : : }
6858 : :
6859 : :
6860 : : static gfc_expr *
6861 : 124 : do_xor (gfc_expr *result, gfc_expr *e)
6862 : : {
6863 : 124 : gcc_assert (e->ts.type == BT_LOGICAL && e->expr_type == EXPR_CONSTANT);
6864 : 124 : gcc_assert (result->ts.type == BT_LOGICAL
6865 : : && result->expr_type == EXPR_CONSTANT);
6866 : :
6867 : 124 : result->value.logical = result->value.logical != e->value.logical;
6868 : 124 : return result;
6869 : : }
6870 : :
6871 : :
6872 : : gfc_expr *
6873 : 992 : gfc_simplify_is_contiguous (gfc_expr *array)
6874 : : {
6875 : 992 : if (gfc_is_simply_contiguous (array, false, true))
6876 : 33 : return gfc_get_logical_expr (gfc_default_logical_kind, &array->where, 1);
6877 : :
6878 : 959 : if (gfc_is_not_contiguous (array))
6879 : 6 : return gfc_get_logical_expr (gfc_default_logical_kind, &array->where, 0);
6880 : :
6881 : : return NULL;
6882 : : }
6883 : :
6884 : :
6885 : : gfc_expr *
6886 : 147 : gfc_simplify_parity (gfc_expr *e, gfc_expr *dim)
6887 : : {
6888 : 147 : return simplify_transformation (e, dim, NULL, 0, do_xor);
6889 : : }
6890 : :
6891 : :
6892 : : gfc_expr *
6893 : 1064 : gfc_simplify_popcnt (gfc_expr *e)
6894 : : {
6895 : 1064 : int res, k;
6896 : 1064 : mpz_t x;
6897 : :
6898 : 1064 : if (e->expr_type != EXPR_CONSTANT)
6899 : : return NULL;
6900 : :
6901 : 642 : k = gfc_validate_kind (e->ts.type, e->ts.kind, false);
6902 : :
6903 : 642 : if (flag_unsigned && e->ts.type == BT_UNSIGNED)
6904 : 0 : res = mpz_popcount (e->value.integer);
6905 : : else
6906 : : {
6907 : : /* Convert argument to unsigned, then count the '1' bits. */
6908 : 642 : mpz_init_set (x, e->value.integer);
6909 : 642 : gfc_convert_mpz_to_unsigned (x, gfc_integer_kinds[k].bit_size);
6910 : 642 : res = mpz_popcount (x);
6911 : 642 : mpz_clear (x);
6912 : : }
6913 : :
6914 : 642 : return gfc_get_int_expr (gfc_default_integer_kind, &e->where, res);
6915 : : }
6916 : :
6917 : :
6918 : : gfc_expr *
6919 : 362 : gfc_simplify_poppar (gfc_expr *e)
6920 : : {
6921 : 362 : gfc_expr *popcnt;
6922 : 362 : int i;
6923 : :
6924 : 362 : if (e->expr_type != EXPR_CONSTANT)
6925 : : return NULL;
6926 : :
6927 : 300 : popcnt = gfc_simplify_popcnt (e);
6928 : 300 : gcc_assert (popcnt);
6929 : :
6930 : 300 : bool fail = gfc_extract_int (popcnt, &i);
6931 : 300 : gcc_assert (!fail);
6932 : :
6933 : 300 : return gfc_get_int_expr (gfc_default_integer_kind, &e->where, i % 2);
6934 : : }
6935 : :
6936 : :
6937 : : gfc_expr *
6938 : 461 : gfc_simplify_precision (gfc_expr *e)
6939 : : {
6940 : 461 : int i = gfc_validate_kind (e->ts.type, e->ts.kind, false);
6941 : 461 : return gfc_get_int_expr (gfc_default_integer_kind, &e->where,
6942 : 461 : gfc_real_kinds[i].precision);
6943 : : }
6944 : :
6945 : :
6946 : : gfc_expr *
6947 : 825 : gfc_simplify_product (gfc_expr *array, gfc_expr *dim, gfc_expr *mask)
6948 : : {
6949 : 825 : return simplify_transformation (array, dim, mask, 1, gfc_multiply);
6950 : : }
6951 : :
6952 : :
6953 : : gfc_expr *
6954 : 49 : gfc_simplify_radix (gfc_expr *e)
6955 : : {
6956 : 49 : int i;
6957 : 49 : i = gfc_validate_kind (e->ts.type, e->ts.kind, false);
6958 : :
6959 : 49 : switch (e->ts.type)
6960 : : {
6961 : 0 : case BT_INTEGER:
6962 : 0 : i = gfc_integer_kinds[i].radix;
6963 : 0 : break;
6964 : :
6965 : 49 : case BT_REAL:
6966 : 49 : i = gfc_real_kinds[i].radix;
6967 : 49 : break;
6968 : :
6969 : 0 : default:
6970 : 0 : gcc_unreachable ();
6971 : : }
6972 : :
6973 : 49 : return gfc_get_int_expr (gfc_default_integer_kind, &e->where, i);
6974 : : }
6975 : :
6976 : :
6977 : : gfc_expr *
6978 : 183 : gfc_simplify_range (gfc_expr *e)
6979 : : {
6980 : 183 : int i;
6981 : 183 : i = gfc_validate_kind (e->ts.type, e->ts.kind, false);
6982 : :
6983 : 183 : switch (e->ts.type)
6984 : : {
6985 : 88 : case BT_INTEGER:
6986 : 88 : i = gfc_integer_kinds[i].range;
6987 : 88 : break;
6988 : :
6989 : 24 : case BT_UNSIGNED:
6990 : 24 : i = gfc_unsigned_kinds[i].range;
6991 : 24 : break;
6992 : :
6993 : 71 : case BT_REAL:
6994 : 71 : case BT_COMPLEX:
6995 : 71 : i = gfc_real_kinds[i].range;
6996 : 71 : break;
6997 : :
6998 : 0 : default:
6999 : 0 : gcc_unreachable ();
7000 : : }
7001 : :
7002 : 183 : return gfc_get_int_expr (gfc_default_integer_kind, &e->where, i);
7003 : : }
7004 : :
7005 : :
7006 : : gfc_expr *
7007 : 2101 : gfc_simplify_rank (gfc_expr *e)
7008 : : {
7009 : : /* Assumed rank. */
7010 : 2101 : if (e->rank == -1)
7011 : : return NULL;
7012 : :
7013 : 590 : return gfc_get_int_expr (gfc_default_integer_kind, &e->where, e->rank);
7014 : : }
7015 : :
7016 : :
7017 : : gfc_expr *
7018 : 27499 : gfc_simplify_real (gfc_expr *e, gfc_expr *k)
7019 : : {
7020 : 27499 : gfc_expr *result = NULL;
7021 : 27499 : int kind, tmp1, tmp2;
7022 : :
7023 : : /* Convert BOZ to real, and return without range checking. */
7024 : 27499 : if (e->ts.type == BT_BOZ)
7025 : : {
7026 : : /* Determine kind for conversion of the BOZ. */
7027 : 85 : if (k)
7028 : 63 : gfc_extract_int (k, &kind);
7029 : : else
7030 : 22 : kind = gfc_default_real_kind;
7031 : :
7032 : 85 : if (!gfc_boz2real (e, kind))
7033 : : return NULL;
7034 : 85 : result = gfc_copy_expr (e);
7035 : 85 : return result;
7036 : : }
7037 : :
7038 : 27414 : if (e->ts.type == BT_COMPLEX)
7039 : 2036 : kind = get_kind (BT_REAL, k, "REAL", e->ts.kind);
7040 : : else
7041 : 25378 : kind = get_kind (BT_REAL, k, "REAL", gfc_default_real_kind);
7042 : :
7043 : 27414 : if (kind == -1)
7044 : : return &gfc_bad_expr;
7045 : :
7046 : 27414 : if (e->expr_type != EXPR_CONSTANT)
7047 : : return NULL;
7048 : :
7049 : : /* For explicit conversion, turn off -Wconversion and -Wconversion-extra
7050 : : warnings. */
7051 : 21831 : tmp1 = warn_conversion;
7052 : 21831 : tmp2 = warn_conversion_extra;
7053 : 21831 : warn_conversion = warn_conversion_extra = 0;
7054 : :
7055 : 21831 : result = gfc_convert_constant (e, BT_REAL, kind);
7056 : :
7057 : 21831 : warn_conversion = tmp1;
7058 : 21831 : warn_conversion_extra = tmp2;
7059 : :
7060 : 21831 : if (result == &gfc_bad_expr)
7061 : : return &gfc_bad_expr;
7062 : :
7063 : 21830 : return range_check (result, "REAL");
7064 : : }
7065 : :
7066 : :
7067 : : gfc_expr *
7068 : 7 : gfc_simplify_realpart (gfc_expr *e)
7069 : : {
7070 : 7 : gfc_expr *result;
7071 : :
7072 : 7 : if (e->expr_type != EXPR_CONSTANT)
7073 : : return NULL;
7074 : :
7075 : 1 : result = gfc_get_constant_expr (BT_REAL, e->ts.kind, &e->where);
7076 : 1 : mpc_real (result->value.real, e->value.complex, GFC_RND_MODE);
7077 : :
7078 : 1 : return range_check (result, "REALPART");
7079 : : }
7080 : :
7081 : : gfc_expr *
7082 : 2639 : gfc_simplify_repeat (gfc_expr *e, gfc_expr *n)
7083 : : {
7084 : 2639 : gfc_expr *result;
7085 : 2639 : gfc_charlen_t len;
7086 : 2639 : mpz_t ncopies;
7087 : 2639 : bool have_length = false;
7088 : :
7089 : : /* If NCOPIES isn't a constant, there's nothing we can do. */
7090 : 2639 : if (n->expr_type != EXPR_CONSTANT)
7091 : : return NULL;
7092 : :
7093 : : /* If NCOPIES is negative, it's an error. */
7094 : 2081 : if (mpz_sgn (n->value.integer) < 0)
7095 : : {
7096 : 6 : gfc_error ("Argument NCOPIES of REPEAT intrinsic is negative at %L",
7097 : : &n->where);
7098 : 6 : return &gfc_bad_expr;
7099 : : }
7100 : :
7101 : : /* If we don't know the character length, we can do no more. */
7102 : 2075 : if (e->ts.u.cl && e->ts.u.cl->length
7103 : 404 : && e->ts.u.cl->length->expr_type == EXPR_CONSTANT)
7104 : : {
7105 : 404 : len = gfc_mpz_get_hwi (e->ts.u.cl->length->value.integer);
7106 : 404 : have_length = true;
7107 : : }
7108 : 1671 : else if (e->expr_type == EXPR_CONSTANT
7109 : 1671 : && (e->ts.u.cl == NULL || e->ts.u.cl->length == NULL))
7110 : : {
7111 : 1671 : len = e->value.character.length;
7112 : : }
7113 : : else
7114 : : return NULL;
7115 : :
7116 : : /* If the source length is 0, any value of NCOPIES is valid
7117 : : and everything behaves as if NCOPIES == 0. */
7118 : 2075 : mpz_init (ncopies);
7119 : 2075 : if (len == 0)
7120 : 63 : mpz_set_ui (ncopies, 0);
7121 : : else
7122 : 2012 : mpz_set (ncopies, n->value.integer);
7123 : :
7124 : : /* Check that NCOPIES isn't too large. */
7125 : 2075 : if (len)
7126 : : {
7127 : 2012 : mpz_t max, mlen;
7128 : 2012 : int i;
7129 : :
7130 : : /* Compute the maximum value allowed for NCOPIES: huge(cl) / len. */
7131 : 2012 : mpz_init (max);
7132 : 2012 : i = gfc_validate_kind (BT_INTEGER, gfc_charlen_int_kind, false);
7133 : :
7134 : 2012 : if (have_length)
7135 : : {
7136 : 347 : mpz_tdiv_q (max, gfc_integer_kinds[i].huge,
7137 : 347 : e->ts.u.cl->length->value.integer);
7138 : : }
7139 : : else
7140 : : {
7141 : 1665 : mpz_init (mlen);
7142 : 1665 : gfc_mpz_set_hwi (mlen, len);
7143 : 1665 : mpz_tdiv_q (max, gfc_integer_kinds[i].huge, mlen);
7144 : 1665 : mpz_clear (mlen);
7145 : : }
7146 : :
7147 : : /* The check itself. */
7148 : 2012 : if (mpz_cmp (ncopies, max) > 0)
7149 : : {
7150 : 4 : mpz_clear (max);
7151 : 4 : mpz_clear (ncopies);
7152 : 4 : gfc_error ("Argument NCOPIES of REPEAT intrinsic is too large at %L",
7153 : : &n->where);
7154 : 4 : return &gfc_bad_expr;
7155 : : }
7156 : :
7157 : 2008 : mpz_clear (max);
7158 : : }
7159 : 2071 : mpz_clear (ncopies);
7160 : :
7161 : : /* For further simplification, we need the character string to be
7162 : : constant. */
7163 : 2071 : if (e->expr_type != EXPR_CONSTANT)
7164 : : return NULL;
7165 : :
7166 : 1726 : HOST_WIDE_INT ncop;
7167 : 1726 : if (len ||
7168 : 42 : (e->ts.u.cl->length &&
7169 : 18 : mpz_sgn (e->ts.u.cl->length->value.integer) != 0))
7170 : : {
7171 : 1702 : bool fail = gfc_extract_hwi (n, &ncop);
7172 : 1702 : gcc_assert (!fail);
7173 : : }
7174 : : else
7175 : 24 : ncop = 0;
7176 : :
7177 : 1726 : if (ncop == 0)
7178 : 54 : return gfc_get_character_expr (e->ts.kind, &e->where, NULL, 0);
7179 : :
7180 : 1672 : len = e->value.character.length;
7181 : 1672 : gfc_charlen_t nlen = ncop * len;
7182 : :
7183 : : /* Here's a semi-arbitrary limit. If the string is longer than 1 GB
7184 : : (2**28 elements * 4 bytes (wide chars) per element) defer to
7185 : : runtime instead of consuming (unbounded) memory and CPU at
7186 : : compile time. */
7187 : 1672 : if (nlen > 268435456)
7188 : : {
7189 : 1 : gfc_warning_now (0, "Evaluation of string longer than 2**28 at %L"
7190 : : " deferred to runtime, expect bugs", &e->where);
7191 : 1 : return NULL;
7192 : : }
7193 : :
7194 : 1671 : result = gfc_get_character_expr (e->ts.kind, &e->where, NULL, nlen);
7195 : 59098 : for (size_t i = 0; i < (size_t) ncop; i++)
7196 : 115184 : for (size_t j = 0; j < (size_t) len; j++)
7197 : 57757 : result->value.character.string[j+i*len]= e->value.character.string[j];
7198 : :
7199 : 1671 : result->value.character.string[nlen] = '\0'; /* For debugger */
7200 : 1671 : return result;
7201 : : }
7202 : :
7203 : :
7204 : : /* This one is a bear, but mainly has to do with shuffling elements. */
7205 : :
7206 : : gfc_expr *
7207 : 9220 : gfc_simplify_reshape (gfc_expr *source, gfc_expr *shape_exp,
7208 : : gfc_expr *pad, gfc_expr *order_exp)
7209 : : {
7210 : 9220 : int order[GFC_MAX_DIMENSIONS], shape[GFC_MAX_DIMENSIONS];
7211 : 9220 : int i, rank, npad, x[GFC_MAX_DIMENSIONS];
7212 : 9220 : mpz_t index, size;
7213 : 9220 : unsigned long j;
7214 : 9220 : size_t nsource;
7215 : 9220 : gfc_expr *e, *result;
7216 : 9220 : bool zerosize = false;
7217 : :
7218 : : /* Check that argument expression types are OK. */
7219 : 9220 : if (!is_constant_array_expr (source)
7220 : 6874 : || !is_constant_array_expr (shape_exp)
7221 : 5802 : || !is_constant_array_expr (pad)
7222 : 15022 : || !is_constant_array_expr (order_exp))
7223 : 3430 : return NULL;
7224 : :
7225 : 5790 : if (source->shape == NULL)
7226 : : return NULL;
7227 : :
7228 : : /* Proceed with simplification, unpacking the array. */
7229 : :
7230 : 5787 : mpz_init (index);
7231 : 5787 : rank = 0;
7232 : :
7233 : 98379 : for (i = 0; i < GFC_MAX_DIMENSIONS; i++)
7234 : 86805 : x[i] = 0;
7235 : :
7236 : 32553 : for (;;)
7237 : : {
7238 : 19170 : e = gfc_constructor_lookup_expr (shape_exp->value.constructor, rank);
7239 : 19170 : if (e == NULL)
7240 : : break;
7241 : :
7242 : 13383 : gfc_extract_int (e, &shape[rank]);
7243 : :
7244 : 13383 : gcc_assert (rank >= 0 && rank < GFC_MAX_DIMENSIONS);
7245 : 13383 : if (shape[rank] < 0)
7246 : : {
7247 : 0 : gfc_error ("The SHAPE array for the RESHAPE intrinsic at %L has a "
7248 : : "negative value %d for dimension %d",
7249 : : &shape_exp->where, shape[rank], rank+1);
7250 : 0 : mpz_clear (index);
7251 : 0 : return &gfc_bad_expr;
7252 : : }
7253 : :
7254 : 13383 : rank++;
7255 : : }
7256 : :
7257 : 5787 : gcc_assert (rank > 0);
7258 : :
7259 : : /* Now unpack the order array if present. */
7260 : 5787 : if (order_exp == NULL)
7261 : : {
7262 : 19104 : for (i = 0; i < rank; i++)
7263 : 13339 : order[i] = i;
7264 : : }
7265 : : else
7266 : : {
7267 : 22 : mpz_t size;
7268 : 22 : int order_size, shape_size;
7269 : :
7270 : 22 : if (order_exp->rank != shape_exp->rank)
7271 : : {
7272 : 1 : gfc_error ("Shapes of ORDER at %L and SHAPE at %L are different",
7273 : : &order_exp->where, &shape_exp->where);
7274 : 1 : mpz_clear (index);
7275 : 4 : return &gfc_bad_expr;
7276 : : }
7277 : :
7278 : 21 : gfc_array_size (shape_exp, &size);
7279 : 21 : shape_size = mpz_get_ui (size);
7280 : 21 : mpz_clear (size);
7281 : 21 : gfc_array_size (order_exp, &size);
7282 : 21 : order_size = mpz_get_ui (size);
7283 : 21 : mpz_clear (size);
7284 : 21 : if (order_size != shape_size)
7285 : : {
7286 : 1 : gfc_error ("Sizes of ORDER at %L and SHAPE at %L are different",
7287 : : &order_exp->where, &shape_exp->where);
7288 : 1 : mpz_clear (index);
7289 : 1 : return &gfc_bad_expr;
7290 : : }
7291 : :
7292 : 58 : for (i = 0; i < rank; i++)
7293 : : {
7294 : 40 : e = gfc_constructor_lookup_expr (order_exp->value.constructor, i);
7295 : 40 : gcc_assert (e);
7296 : :
7297 : 40 : gfc_extract_int (e, &order[i]);
7298 : :
7299 : 40 : if (order[i] < 1 || order[i] > rank)
7300 : : {
7301 : 1 : gfc_error ("Element with a value of %d in ORDER at %L must be "
7302 : : "in the range [1, ..., %d] for the RESHAPE intrinsic "
7303 : : "near %L", order[i], &order_exp->where, rank,
7304 : : &shape_exp->where);
7305 : 1 : mpz_clear (index);
7306 : 1 : return &gfc_bad_expr;
7307 : : }
7308 : :
7309 : 39 : order[i]--;
7310 : 39 : if (x[order[i]] != 0)
7311 : : {
7312 : 1 : gfc_error ("ORDER at %L is not a permutation of the size of "
7313 : : "SHAPE at %L", &order_exp->where, &shape_exp->where);
7314 : 1 : mpz_clear (index);
7315 : 1 : return &gfc_bad_expr;
7316 : : }
7317 : 38 : x[order[i]] = 1;
7318 : : }
7319 : : }
7320 : :
7321 : : /* Count the elements in the source and padding arrays. */
7322 : :
7323 : 5783 : npad = 0;
7324 : 5783 : if (pad != NULL)
7325 : : {
7326 : 56 : gfc_array_size (pad, &size);
7327 : 56 : npad = mpz_get_ui (size);
7328 : 56 : mpz_clear (size);
7329 : : }
7330 : :
7331 : 5783 : gfc_array_size (source, &size);
7332 : 5783 : nsource = mpz_get_ui (size);
7333 : 5783 : mpz_clear (size);
7334 : :
7335 : : /* If it weren't for that pesky permutation we could just loop
7336 : : through the source and round out any shortage with pad elements.
7337 : : But no, someone just had to have the compiler do something the
7338 : : user should be doing. */
7339 : :
7340 : 24941 : for (i = 0; i < rank; i++)
7341 : 13375 : x[i] = 0;
7342 : :
7343 : 5783 : result = gfc_get_array_expr (source->ts.type, source->ts.kind,
7344 : : &source->where);
7345 : 5783 : if (source->ts.type == BT_DERIVED)
7346 : 98 : result->ts.u.derived = source->ts.u.derived;
7347 : 5783 : if (source->ts.type == BT_CHARACTER && result->ts.u.cl == NULL)
7348 : 218 : result->ts = source->ts;
7349 : 5783 : result->rank = rank;
7350 : 5783 : result->shape = gfc_get_shape (rank);
7351 : 19158 : for (i = 0; i < rank; i++)
7352 : : {
7353 : 13375 : mpz_init_set_ui (result->shape[i], shape[i]);
7354 : 13375 : if (shape[i] == 0)
7355 : 723 : zerosize = true;
7356 : : }
7357 : :
7358 : 5783 : if (zerosize)
7359 : 699 : goto sizezero;
7360 : :
7361 : 93004 : while (nsource > 0 || npad > 0)
7362 : : {
7363 : : /* Figure out which element to extract. */
7364 : 93004 : mpz_set_ui (index, 0);
7365 : :
7366 : 320202 : for (i = rank - 1; i >= 0; i--)
7367 : : {
7368 : 227198 : mpz_add_ui (index, index, x[order[i]]);
7369 : 227198 : if (i != 0)
7370 : 134194 : mpz_mul_ui (index, index, shape[order[i - 1]]);
7371 : : }
7372 : :
7373 : 93004 : if (mpz_cmp_ui (index, INT_MAX) > 0)
7374 : 0 : gfc_internal_error ("Reshaped array too large at %C");
7375 : :
7376 : 93004 : j = mpz_get_ui (index);
7377 : :
7378 : 93004 : if (j < nsource)
7379 : 92816 : e = gfc_constructor_lookup_expr (source->value.constructor, j);
7380 : : else
7381 : : {
7382 : 188 : if (npad <= 0)
7383 : : {
7384 : 16 : mpz_clear (index);
7385 : 16 : if (pad == NULL)
7386 : 16 : gfc_error ("Without padding, there are not enough elements "
7387 : : "in the intrinsic RESHAPE source at %L to match "
7388 : : "the shape", &source->where);
7389 : 16 : gfc_free_expr (result);
7390 : 16 : return NULL;
7391 : : }
7392 : 172 : j = j - nsource;
7393 : 172 : j = j % npad;
7394 : 172 : e = gfc_constructor_lookup_expr (pad->value.constructor, j);
7395 : : }
7396 : 92988 : gcc_assert (e);
7397 : :
7398 : 92988 : gfc_constructor_append_expr (&result->value.constructor,
7399 : : gfc_copy_expr (e), &e->where);
7400 : :
7401 : : /* Calculate the next element. */
7402 : 92988 : i = 0;
7403 : :
7404 : 121810 : inc:
7405 : 121810 : if (++x[i] < shape[i])
7406 : 87920 : continue;
7407 : 33890 : x[i++] = 0;
7408 : 33890 : if (i < rank)
7409 : 28822 : goto inc;
7410 : :
7411 : : break;
7412 : : }
7413 : :
7414 : 0 : sizezero:
7415 : :
7416 : 5767 : mpz_clear (index);
7417 : :
7418 : 5767 : return result;
7419 : : }
7420 : :
7421 : :
7422 : : gfc_expr *
7423 : 192 : gfc_simplify_rrspacing (gfc_expr *x)
7424 : : {
7425 : 192 : gfc_expr *result;
7426 : 192 : int i;
7427 : 192 : long int e, p;
7428 : :
7429 : 192 : if (x->expr_type != EXPR_CONSTANT)
7430 : : return NULL;
7431 : :
7432 : 60 : i = gfc_validate_kind (x->ts.type, x->ts.kind, false);
7433 : :
7434 : 60 : result = gfc_get_constant_expr (BT_REAL, x->ts.kind, &x->where);
7435 : :
7436 : : /* RRSPACING(+/- 0.0) = 0.0 */
7437 : 60 : if (mpfr_zero_p (x->value.real))
7438 : : {
7439 : 12 : mpfr_set_ui (result->value.real, 0, GFC_RND_MODE);
7440 : 12 : return result;
7441 : : }
7442 : :
7443 : : /* RRSPACING(inf) = NaN */
7444 : 48 : if (mpfr_inf_p (x->value.real))
7445 : : {
7446 : 12 : mpfr_set_nan (result->value.real);
7447 : 12 : return result;
7448 : : }
7449 : :
7450 : : /* RRSPACING(NaN) = same NaN */
7451 : 36 : if (mpfr_nan_p (x->value.real))
7452 : : {
7453 : 6 : mpfr_set (result->value.real, x->value.real, GFC_RND_MODE);
7454 : 6 : return result;
7455 : : }
7456 : :
7457 : : /* | x * 2**(-e) | * 2**p. */
7458 : 30 : mpfr_abs (result->value.real, x->value.real, GFC_RND_MODE);
7459 : 30 : e = - (long int) mpfr_get_exp (x->value.real);
7460 : 30 : mpfr_mul_2si (result->value.real, result->value.real, e, GFC_RND_MODE);
7461 : :
7462 : 30 : p = (long int) gfc_real_kinds[i].digits;
7463 : 30 : mpfr_mul_2si (result->value.real, result->value.real, p, GFC_RND_MODE);
7464 : :
7465 : 30 : return range_check (result, "RRSPACING");
7466 : : }
7467 : :
7468 : :
7469 : : gfc_expr *
7470 : 168 : gfc_simplify_scale (gfc_expr *x, gfc_expr *i)
7471 : : {
7472 : 168 : int k, neg_flag, power, exp_range;
7473 : 168 : mpfr_t scale, radix;
7474 : 168 : gfc_expr *result;
7475 : :
7476 : 168 : if (x->expr_type != EXPR_CONSTANT || i->expr_type != EXPR_CONSTANT)
7477 : : return NULL;
7478 : :
7479 : 12 : result = gfc_get_constant_expr (BT_REAL, x->ts.kind, &x->where);
7480 : :
7481 : 12 : if (mpfr_zero_p (x->value.real))
7482 : : {
7483 : 0 : mpfr_set_ui (result->value.real, 0, GFC_RND_MODE);
7484 : 0 : return result;
7485 : : }
7486 : :
7487 : 12 : k = gfc_validate_kind (BT_REAL, x->ts.kind, false);
7488 : :
7489 : 12 : exp_range = gfc_real_kinds[k].max_exponent - gfc_real_kinds[k].min_exponent;
7490 : :
7491 : : /* This check filters out values of i that would overflow an int. */
7492 : 12 : if (mpz_cmp_si (i->value.integer, exp_range + 2) > 0
7493 : 12 : || mpz_cmp_si (i->value.integer, -exp_range - 2) < 0)
7494 : : {
7495 : 0 : gfc_error ("Result of SCALE overflows its kind at %L", &result->where);
7496 : 0 : gfc_free_expr (result);
7497 : 0 : return &gfc_bad_expr;
7498 : : }
7499 : :
7500 : : /* Compute scale = radix ** power. */
7501 : 12 : power = mpz_get_si (i->value.integer);
7502 : :
7503 : 12 : if (power >= 0)
7504 : : neg_flag = 0;
7505 : : else
7506 : : {
7507 : 0 : neg_flag = 1;
7508 : 0 : power = -power;
7509 : : }
7510 : :
7511 : 12 : gfc_set_model_kind (x->ts.kind);
7512 : 12 : mpfr_init (scale);
7513 : 12 : mpfr_init (radix);
7514 : 12 : mpfr_set_ui (radix, gfc_real_kinds[k].radix, GFC_RND_MODE);
7515 : 12 : mpfr_pow_ui (scale, radix, power, GFC_RND_MODE);
7516 : :
7517 : 12 : if (neg_flag)
7518 : 0 : mpfr_div (result->value.real, x->value.real, scale, GFC_RND_MODE);
7519 : : else
7520 : 12 : mpfr_mul (result->value.real, x->value.real, scale, GFC_RND_MODE);
7521 : :
7522 : 12 : mpfr_clears (scale, radix, NULL);
7523 : :
7524 : 12 : return range_check (result, "SCALE");
7525 : : }
7526 : :
7527 : :
7528 : : /* Variants of strspn and strcspn that operate on wide characters. */
7529 : :
7530 : : static size_t
7531 : 60 : wide_strspn (const gfc_char_t *s1, const gfc_char_t *s2)
7532 : : {
7533 : 60 : size_t i = 0;
7534 : 60 : const gfc_char_t *c;
7535 : :
7536 : 144 : while (s1[i])
7537 : : {
7538 : 354 : for (c = s2; *c; c++)
7539 : : {
7540 : 294 : if (s1[i] == *c)
7541 : : break;
7542 : : }
7543 : 144 : if (*c == '\0')
7544 : : break;
7545 : 84 : i++;
7546 : : }
7547 : :
7548 : 60 : return i;
7549 : : }
7550 : :
7551 : : static size_t
7552 : 60 : wide_strcspn (const gfc_char_t *s1, const gfc_char_t *s2)
7553 : : {
7554 : 60 : size_t i = 0;
7555 : 60 : const gfc_char_t *c;
7556 : :
7557 : 396 : while (s1[i])
7558 : : {
7559 : 1392 : for (c = s2; *c; c++)
7560 : : {
7561 : 1056 : if (s1[i] == *c)
7562 : : break;
7563 : : }
7564 : 384 : if (*c)
7565 : : break;
7566 : 336 : i++;
7567 : : }
7568 : :
7569 : 60 : return i;
7570 : : }
7571 : :
7572 : :
7573 : : gfc_expr *
7574 : 958 : gfc_simplify_scan (gfc_expr *e, gfc_expr *c, gfc_expr *b, gfc_expr *kind)
7575 : : {
7576 : 958 : gfc_expr *result;
7577 : 958 : int back;
7578 : 958 : size_t i;
7579 : 958 : size_t indx, len, lenc;
7580 : 958 : int k = get_kind (BT_INTEGER, kind, "SCAN", gfc_default_integer_kind);
7581 : :
7582 : 958 : if (k == -1)
7583 : : return &gfc_bad_expr;
7584 : :
7585 : 958 : if (e->expr_type != EXPR_CONSTANT || c->expr_type != EXPR_CONSTANT
7586 : 182 : || ( b != NULL && b->expr_type != EXPR_CONSTANT))
7587 : : return NULL;
7588 : :
7589 : 144 : if (b != NULL && b->value.logical != 0)
7590 : : back = 1;
7591 : : else
7592 : 72 : back = 0;
7593 : :
7594 : 144 : len = e->value.character.length;
7595 : 144 : lenc = c->value.character.length;
7596 : :
7597 : 144 : if (len == 0 || lenc == 0)
7598 : : {
7599 : : indx = 0;
7600 : : }
7601 : : else
7602 : : {
7603 : 120 : if (back == 0)
7604 : : {
7605 : 60 : indx = wide_strcspn (e->value.character.string,
7606 : 60 : c->value.character.string) + 1;
7607 : 60 : if (indx > len)
7608 : 48 : indx = 0;
7609 : : }
7610 : : else
7611 : 408 : for (indx = len; indx > 0; indx--)
7612 : : {
7613 : 1488 : for (i = 0; i < lenc; i++)
7614 : : {
7615 : 1140 : if (c->value.character.string[i]
7616 : 1140 : == e->value.character.string[indx - 1])
7617 : : break;
7618 : : }
7619 : 396 : if (i < lenc)
7620 : : break;
7621 : : }
7622 : : }
7623 : :
7624 : 144 : result = gfc_get_int_expr (k, &e->where, indx);
7625 : 144 : return range_check (result, "SCAN");
7626 : : }
7627 : :
7628 : :
7629 : : gfc_expr *
7630 : 252 : gfc_simplify_selected_char_kind (gfc_expr *e)
7631 : : {
7632 : 252 : int kind;
7633 : :
7634 : 252 : if (e->expr_type != EXPR_CONSTANT)
7635 : : return NULL;
7636 : :
7637 : 167 : if (gfc_compare_with_Cstring (e, "ascii", false) == 0
7638 : 167 : || gfc_compare_with_Cstring (e, "default", false) == 0)
7639 : : kind = 1;
7640 : 83 : else if (gfc_compare_with_Cstring (e, "iso_10646", false) == 0)
7641 : : kind = 4;
7642 : : else
7643 : 39 : kind = -1;
7644 : :
7645 : 167 : return gfc_get_int_expr (gfc_default_integer_kind, &e->where, kind);
7646 : : }
7647 : :
7648 : :
7649 : : gfc_expr *
7650 : 256 : gfc_simplify_selected_int_kind (gfc_expr *e)
7651 : : {
7652 : 256 : int i, kind, range;
7653 : :
7654 : 256 : if (e->expr_type != EXPR_CONSTANT || gfc_extract_int (e, &range))
7655 : 49 : return NULL;
7656 : :
7657 : : kind = INT_MAX;
7658 : :
7659 : 1242 : for (i = 0; gfc_integer_kinds[i].kind != 0; i++)
7660 : 1035 : if (gfc_integer_kinds[i].range >= range
7661 : 530 : && gfc_integer_kinds[i].kind < kind)
7662 : 1035 : kind = gfc_integer_kinds[i].kind;
7663 : :
7664 : 207 : if (kind == INT_MAX)
7665 : 0 : kind = -1;
7666 : :
7667 : 207 : return gfc_get_int_expr (gfc_default_integer_kind, &e->where, kind);
7668 : : }
7669 : :
7670 : : /* Same as above, but with unsigneds. */
7671 : :
7672 : : gfc_expr *
7673 : 25 : gfc_simplify_selected_unsigned_kind (gfc_expr *e)
7674 : : {
7675 : 25 : int i, kind, range;
7676 : :
7677 : 25 : if (e->expr_type != EXPR_CONSTANT || gfc_extract_int (e, &range))
7678 : 0 : return NULL;
7679 : :
7680 : : kind = INT_MAX;
7681 : :
7682 : 150 : for (i = 0; gfc_unsigned_kinds[i].kind != 0; i++)
7683 : 125 : if (gfc_unsigned_kinds[i].range >= range
7684 : 86 : && gfc_unsigned_kinds[i].kind < kind)
7685 : 125 : kind = gfc_unsigned_kinds[i].kind;
7686 : :
7687 : 25 : if (kind == INT_MAX)
7688 : 0 : kind = -1;
7689 : :
7690 : 25 : return gfc_get_int_expr (gfc_default_integer_kind, &e->where, kind);
7691 : : }
7692 : :
7693 : :
7694 : : gfc_expr *
7695 : 78 : gfc_simplify_selected_logical_kind (gfc_expr *e)
7696 : : {
7697 : 78 : int i, kind, bits;
7698 : :
7699 : 78 : if (e->expr_type != EXPR_CONSTANT || gfc_extract_int (e, &bits))
7700 : 12 : return NULL;
7701 : :
7702 : : kind = INT_MAX;
7703 : :
7704 : 396 : for (i = 0; gfc_logical_kinds[i].kind != 0; i++)
7705 : 330 : if (gfc_logical_kinds[i].bit_size >= bits
7706 : 180 : && gfc_logical_kinds[i].kind < kind)
7707 : 330 : kind = gfc_logical_kinds[i].kind;
7708 : :
7709 : 66 : if (kind == INT_MAX)
7710 : 6 : kind = -1;
7711 : :
7712 : 66 : return gfc_get_int_expr (gfc_default_integer_kind, &e->where, kind);
7713 : : }
7714 : :
7715 : :
7716 : : gfc_expr *
7717 : 994 : gfc_simplify_selected_real_kind (gfc_expr *p, gfc_expr *q, gfc_expr *rdx)
7718 : : {
7719 : 994 : int range, precision, radix, i, kind, found_precision, found_range,
7720 : : found_radix;
7721 : 994 : locus *loc = &gfc_current_locus;
7722 : :
7723 : 994 : if (p == NULL)
7724 : 60 : precision = 0;
7725 : : else
7726 : : {
7727 : 934 : if (p->expr_type != EXPR_CONSTANT
7728 : 934 : || gfc_extract_int (p, &precision))
7729 : 46 : return NULL;
7730 : 888 : loc = &p->where;
7731 : : }
7732 : :
7733 : 948 : if (q == NULL)
7734 : 683 : range = 0;
7735 : : else
7736 : : {
7737 : 265 : if (q->expr_type != EXPR_CONSTANT
7738 : 265 : || gfc_extract_int (q, &range))
7739 : 54 : return NULL;
7740 : :
7741 : : if (!loc)
7742 : : loc = &q->where;
7743 : : }
7744 : :
7745 : 894 : if (rdx == NULL)
7746 : 834 : radix = 0;
7747 : : else
7748 : : {
7749 : 60 : if (rdx->expr_type != EXPR_CONSTANT
7750 : 60 : || gfc_extract_int (rdx, &radix))
7751 : 24 : return NULL;
7752 : :
7753 : : if (!loc)
7754 : : loc = &rdx->where;
7755 : : }
7756 : :
7757 : 870 : kind = INT_MAX;
7758 : 870 : found_precision = 0;
7759 : 870 : found_range = 0;
7760 : 870 : found_radix = 0;
7761 : :
7762 : 4350 : for (i = 0; gfc_real_kinds[i].kind != 0; i++)
7763 : : {
7764 : 3480 : if (gfc_real_kinds[i].precision >= precision)
7765 : 2356 : found_precision = 1;
7766 : :
7767 : 3480 : if (gfc_real_kinds[i].range >= range)
7768 : 3358 : found_range = 1;
7769 : :
7770 : 3480 : if (radix == 0 || gfc_real_kinds[i].radix == radix)
7771 : 3456 : found_radix = 1;
7772 : :
7773 : 3480 : if (gfc_real_kinds[i].precision >= precision
7774 : 2356 : && gfc_real_kinds[i].range >= range
7775 : 2356 : && (radix == 0 || gfc_real_kinds[i].radix == radix)
7776 : 2332 : && gfc_real_kinds[i].kind < kind)
7777 : 3480 : kind = gfc_real_kinds[i].kind;
7778 : : }
7779 : :
7780 : 870 : if (kind == INT_MAX)
7781 : : {
7782 : 12 : if (found_radix && found_range && !found_precision)
7783 : : kind = -1;
7784 : 6 : else if (found_radix && found_precision && !found_range)
7785 : : kind = -2;
7786 : 6 : else if (found_radix && !found_precision && !found_range)
7787 : : kind = -3;
7788 : 6 : else if (found_radix)
7789 : : kind = -4;
7790 : : else
7791 : 6 : kind = -5;
7792 : : }
7793 : :
7794 : 870 : return gfc_get_int_expr (gfc_default_integer_kind, loc, kind);
7795 : : }
7796 : :
7797 : :
7798 : : gfc_expr *
7799 : 770 : gfc_simplify_set_exponent (gfc_expr *x, gfc_expr *i)
7800 : : {
7801 : 770 : gfc_expr *result;
7802 : 770 : mpfr_t exp, absv, log2, pow2, frac;
7803 : 770 : long exp2;
7804 : :
7805 : 770 : if (x->expr_type != EXPR_CONSTANT || i->expr_type != EXPR_CONSTANT)
7806 : : return NULL;
7807 : :
7808 : 150 : result = gfc_get_constant_expr (BT_REAL, x->ts.kind, &x->where);
7809 : :
7810 : : /* SET_EXPONENT (+/-0.0, I) = +/- 0.0
7811 : : SET_EXPONENT (NaN) = same NaN */
7812 : 150 : if (mpfr_zero_p (x->value.real) || mpfr_nan_p (x->value.real))
7813 : : {
7814 : 18 : mpfr_set (result->value.real, x->value.real, GFC_RND_MODE);
7815 : 18 : return result;
7816 : : }
7817 : :
7818 : : /* SET_EXPONENT (inf) = NaN */
7819 : 132 : if (mpfr_inf_p (x->value.real))
7820 : : {
7821 : 12 : mpfr_set_nan (result->value.real);
7822 : 12 : return result;
7823 : : }
7824 : :
7825 : 120 : gfc_set_model_kind (x->ts.kind);
7826 : 120 : mpfr_init (absv);
7827 : 120 : mpfr_init (log2);
7828 : 120 : mpfr_init (exp);
7829 : 120 : mpfr_init (pow2);
7830 : 120 : mpfr_init (frac);
7831 : :
7832 : 120 : mpfr_abs (absv, x->value.real, GFC_RND_MODE);
7833 : 120 : mpfr_log2 (log2, absv, GFC_RND_MODE);
7834 : :
7835 : 120 : mpfr_floor (log2, log2);
7836 : 120 : mpfr_add_ui (exp, log2, 1, GFC_RND_MODE);
7837 : :
7838 : : /* Old exponent value, and fraction. */
7839 : 120 : mpfr_ui_pow (pow2, 2, exp, GFC_RND_MODE);
7840 : :
7841 : 120 : mpfr_div (frac, x->value.real, pow2, GFC_RND_MODE);
7842 : :
7843 : : /* New exponent. */
7844 : 120 : exp2 = mpz_get_si (i->value.integer);
7845 : 120 : mpfr_mul_2si (result->value.real, frac, exp2, GFC_RND_MODE);
7846 : :
7847 : 120 : mpfr_clears (absv, log2, exp, pow2, frac, NULL);
7848 : :
7849 : 120 : return range_check (result, "SET_EXPONENT");
7850 : : }
7851 : :
7852 : :
7853 : : gfc_expr *
7854 : 11726 : gfc_simplify_shape (gfc_expr *source, gfc_expr *kind)
7855 : : {
7856 : 11726 : mpz_t shape[GFC_MAX_DIMENSIONS];
7857 : 11726 : gfc_expr *result, *e, *f;
7858 : 11726 : gfc_array_ref *ar;
7859 : 11726 : int n;
7860 : 11726 : bool t;
7861 : 11726 : int k = get_kind (BT_INTEGER, kind, "SHAPE", gfc_default_integer_kind);
7862 : :
7863 : 11726 : if (source->rank == -1)
7864 : : return NULL;
7865 : :
7866 : 10838 : result = gfc_get_array_expr (BT_INTEGER, k, &source->where);
7867 : 10838 : result->shape = gfc_get_shape (1);
7868 : 10838 : mpz_init (result->shape[0]);
7869 : :
7870 : 10838 : if (source->rank == 0)
7871 : : return result;
7872 : :
7873 : 10787 : if (source->expr_type == EXPR_VARIABLE)
7874 : : {
7875 : 10755 : ar = gfc_find_array_ref (source);
7876 : 10755 : t = gfc_array_ref_shape (ar, shape);
7877 : : }
7878 : 32 : else if (source->shape)
7879 : : {
7880 : 37 : t = true;
7881 : 37 : for (n = 0; n < source->rank; n++)
7882 : : {
7883 : 24 : mpz_init (shape[n]);
7884 : 24 : mpz_set (shape[n], source->shape[n]);
7885 : : }
7886 : : }
7887 : : else
7888 : : t = false;
7889 : :
7890 : 17345 : for (n = 0; n < source->rank; n++)
7891 : : {
7892 : 15014 : e = gfc_get_constant_expr (BT_INTEGER, k, &source->where);
7893 : :
7894 : 15014 : if (t)
7895 : 6544 : mpz_set (e->value.integer, shape[n]);
7896 : : else
7897 : : {
7898 : 8470 : mpz_set_ui (e->value.integer, n + 1);
7899 : :
7900 : 8470 : f = simplify_size (source, e, k);
7901 : 8470 : gfc_free_expr (e);
7902 : 8470 : if (f == NULL)
7903 : : {
7904 : 8455 : gfc_free_expr (result);
7905 : 8455 : return NULL;
7906 : : }
7907 : : else
7908 : : e = f;
7909 : : }
7910 : :
7911 : 6559 : if (e == &gfc_bad_expr || range_check (e, "SHAPE") == &gfc_bad_expr)
7912 : : {
7913 : 1 : gfc_free_expr (result);
7914 : 1 : if (t)
7915 : 1 : gfc_clear_shape (shape, source->rank);
7916 : 1 : return &gfc_bad_expr;
7917 : : }
7918 : :
7919 : 6558 : gfc_constructor_append_expr (&result->value.constructor, e, NULL);
7920 : : }
7921 : :
7922 : 2331 : if (t)
7923 : 2331 : gfc_clear_shape (shape, source->rank);
7924 : :
7925 : 2331 : mpz_set_si (result->shape[0], source->rank);
7926 : :
7927 : 2331 : return result;
7928 : : }
7929 : :
7930 : :
7931 : : static gfc_expr *
7932 : 41349 : simplify_size (gfc_expr *array, gfc_expr *dim, int k)
7933 : : {
7934 : 41349 : mpz_t size;
7935 : 41349 : gfc_expr *return_value;
7936 : 41349 : int d;
7937 : 41349 : gfc_ref *ref;
7938 : :
7939 : : /* For unary operations, the size of the result is given by the size
7940 : : of the operand. For binary ones, it's the size of the first operand
7941 : : unless it is scalar, then it is the size of the second. */
7942 : 41349 : if (array->expr_type == EXPR_OP && !array->value.op.uop)
7943 : : {
7944 : 44 : gfc_expr* replacement;
7945 : 44 : gfc_expr* simplified;
7946 : :
7947 : 44 : switch (array->value.op.op)
7948 : : {
7949 : : /* Unary operations. */
7950 : 7 : case INTRINSIC_NOT:
7951 : 7 : case INTRINSIC_UPLUS:
7952 : 7 : case INTRINSIC_UMINUS:
7953 : 7 : case INTRINSIC_PARENTHESES:
7954 : 7 : replacement = array->value.op.op1;
7955 : 7 : break;
7956 : :
7957 : : /* Binary operations. If any one of the operands is scalar, take
7958 : : the other one's size. If both of them are arrays, it does not
7959 : : matter -- try to find one with known shape, if possible. */
7960 : 37 : default:
7961 : 37 : if (array->value.op.op1->rank == 0)
7962 : 25 : replacement = array->value.op.op2;
7963 : 12 : else if (array->value.op.op2->rank == 0)
7964 : : replacement = array->value.op.op1;
7965 : : else
7966 : : {
7967 : 0 : simplified = simplify_size (array->value.op.op1, dim, k);
7968 : 0 : if (simplified)
7969 : : return simplified;
7970 : :
7971 : 0 : replacement = array->value.op.op2;
7972 : : }
7973 : : break;
7974 : : }
7975 : :
7976 : : /* Try to reduce it directly if possible. */
7977 : 44 : simplified = simplify_size (replacement, dim, k);
7978 : :
7979 : : /* Otherwise, we build a new SIZE call. This is hopefully at least
7980 : : simpler than the original one. */
7981 : 44 : if (!simplified)
7982 : : {
7983 : 20 : gfc_expr *kind = gfc_get_int_expr (gfc_default_integer_kind, NULL, k);
7984 : 20 : simplified = gfc_build_intrinsic_call (gfc_current_ns,
7985 : : GFC_ISYM_SIZE, "size",
7986 : : array->where, 3,
7987 : : gfc_copy_expr (replacement),
7988 : : gfc_copy_expr (dim),
7989 : : kind);
7990 : : }
7991 : 44 : return simplified;
7992 : : }
7993 : :
7994 : 83478 : for (ref = array->ref; ref; ref = ref->next)
7995 : 39478 : if (ref->type == REF_ARRAY && ref->u.ar.as
7996 : 81655 : && !gfc_resolve_array_spec (ref->u.ar.as, 0))
7997 : : return NULL;
7998 : :
7999 : 41301 : if (dim == NULL)
8000 : : {
8001 : 15477 : if (!gfc_array_size (array, &size))
8002 : : return NULL;
8003 : : }
8004 : : else
8005 : : {
8006 : 25824 : if (dim->expr_type != EXPR_CONSTANT)
8007 : : return NULL;
8008 : :
8009 : 25490 : if (array->rank == -1)
8010 : : return NULL;
8011 : :
8012 : 24848 : d = mpz_get_si (dim->value.integer) - 1;
8013 : 24848 : if (d < 0 || d > array->rank - 1)
8014 : : {
8015 : 6 : gfc_error ("DIM argument (%d) to intrinsic SIZE at %L out of range "
8016 : : "(1:%d)", d+1, &array->where, array->rank);
8017 : 6 : return &gfc_bad_expr;
8018 : : }
8019 : :
8020 : 24842 : if (!gfc_array_dimen_size (array, d, &size))
8021 : : return NULL;
8022 : : }
8023 : :
8024 : 4889 : return_value = gfc_get_constant_expr (BT_INTEGER, k, &array->where);
8025 : 4889 : mpz_set (return_value->value.integer, size);
8026 : 4889 : mpz_clear (size);
8027 : :
8028 : 4889 : return return_value;
8029 : : }
8030 : :
8031 : :
8032 : : gfc_expr *
8033 : 32053 : gfc_simplify_size (gfc_expr *array, gfc_expr *dim, gfc_expr *kind)
8034 : : {
8035 : 32053 : gfc_expr *result;
8036 : 32053 : int k = get_kind (BT_INTEGER, kind, "SIZE", gfc_default_integer_kind);
8037 : :
8038 : 32053 : if (k == -1)
8039 : : return &gfc_bad_expr;
8040 : :
8041 : 32053 : result = simplify_size (array, dim, k);
8042 : 32053 : if (result == NULL || result == &gfc_bad_expr)
8043 : : return result;
8044 : :
8045 : 4487 : return range_check (result, "SIZE");
8046 : : }
8047 : :
8048 : :
8049 : : /* SIZEOF and C_SIZEOF return the size in bytes of an array element
8050 : : multiplied by the array size. */
8051 : :
8052 : : gfc_expr *
8053 : 3346 : gfc_simplify_sizeof (gfc_expr *x)
8054 : : {
8055 : 3346 : gfc_expr *result = NULL;
8056 : 3346 : mpz_t array_size;
8057 : 3346 : size_t res_size;
8058 : :
8059 : 3346 : if (x->ts.type == BT_CLASS || x->ts.deferred)
8060 : : return NULL;
8061 : :
8062 : 2274 : if (x->ts.type == BT_CHARACTER
8063 : 249 : && (!x->ts.u.cl || !x->ts.u.cl->length
8064 : 75 : || x->ts.u.cl->length->expr_type != EXPR_CONSTANT))
8065 : : return NULL;
8066 : :
8067 : 2082 : if (x->rank && x->expr_type != EXPR_ARRAY)
8068 : : {
8069 : 1380 : if (!gfc_array_size (x, &array_size))
8070 : : return NULL;
8071 : :
8072 : 168 : mpz_clear (array_size);
8073 : : }
8074 : :
8075 : 870 : result = gfc_get_constant_expr (BT_INTEGER, gfc_index_integer_kind,
8076 : : &x->where);
8077 : 870 : gfc_target_expr_size (x, &res_size);
8078 : 870 : mpz_set_si (result->value.integer, res_size);
8079 : :
8080 : 870 : return result;
8081 : : }
8082 : :
8083 : :
8084 : : /* STORAGE_SIZE returns the size in bits of a single array element. */
8085 : :
8086 : : gfc_expr *
8087 : 1308 : gfc_simplify_storage_size (gfc_expr *x,
8088 : : gfc_expr *kind)
8089 : : {
8090 : 1308 : gfc_expr *result = NULL;
8091 : 1308 : int k;
8092 : 1308 : size_t siz;
8093 : :
8094 : 1308 : if (x->ts.type == BT_CLASS || x->ts.deferred)
8095 : : return NULL;
8096 : :
8097 : 761 : if (x->ts.type == BT_CHARACTER && x->expr_type != EXPR_CONSTANT
8098 : 297 : && (!x->ts.u.cl || !x->ts.u.cl->length
8099 : 96 : || x->ts.u.cl->length->expr_type != EXPR_CONSTANT))
8100 : : return NULL;
8101 : :
8102 : 560 : k = get_kind (BT_INTEGER, kind, "STORAGE_SIZE", gfc_default_integer_kind);
8103 : 560 : if (k == -1)
8104 : : return &gfc_bad_expr;
8105 : :
8106 : 560 : result = gfc_get_constant_expr (BT_INTEGER, k, &x->where);
8107 : :
8108 : 560 : gfc_element_size (x, &siz);
8109 : 560 : mpz_set_si (result->value.integer, siz);
8110 : 560 : mpz_mul_ui (result->value.integer, result->value.integer, BITS_PER_UNIT);
8111 : :
8112 : 560 : return range_check (result, "STORAGE_SIZE");
8113 : : }
8114 : :
8115 : :
8116 : : gfc_expr *
8117 : 1370 : gfc_simplify_sign (gfc_expr *x, gfc_expr *y)
8118 : : {
8119 : 1370 : gfc_expr *result;
8120 : :
8121 : 1370 : if (x->expr_type != EXPR_CONSTANT || y->expr_type != EXPR_CONSTANT)
8122 : : return NULL;
8123 : :
8124 : 95 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
8125 : :
8126 : 95 : switch (x->ts.type)
8127 : : {
8128 : 22 : case BT_INTEGER:
8129 : 22 : mpz_abs (result->value.integer, x->value.integer);
8130 : 22 : if (mpz_sgn (y->value.integer) < 0)
8131 : 0 : mpz_neg (result->value.integer, result->value.integer);
8132 : : break;
8133 : :
8134 : 73 : case BT_REAL:
8135 : 73 : if (flag_sign_zero)
8136 : 61 : mpfr_copysign (result->value.real, x->value.real, y->value.real,
8137 : : GFC_RND_MODE);
8138 : : else
8139 : 24 : mpfr_setsign (result->value.real, x->value.real,
8140 : : mpfr_sgn (y->value.real) < 0 ? 1 : 0, GFC_RND_MODE);
8141 : : break;
8142 : :
8143 : 0 : default:
8144 : 0 : gfc_internal_error ("Bad type in gfc_simplify_sign");
8145 : : }
8146 : :
8147 : : return result;
8148 : : }
8149 : :
8150 : :
8151 : : gfc_expr *
8152 : 976 : gfc_simplify_sin (gfc_expr *x)
8153 : : {
8154 : 976 : gfc_expr *result;
8155 : :
8156 : 976 : if (x->expr_type != EXPR_CONSTANT)
8157 : : return NULL;
8158 : :
8159 : 263 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
8160 : :
8161 : 263 : switch (x->ts.type)
8162 : : {
8163 : 206 : case BT_REAL:
8164 : 206 : mpfr_sin (result->value.real, x->value.real, GFC_RND_MODE);
8165 : 206 : break;
8166 : :
8167 : 57 : case BT_COMPLEX:
8168 : 57 : gfc_set_model (x->value.real);
8169 : 57 : mpc_sin (result->value.complex, x->value.complex, GFC_MPC_RND_MODE);
8170 : 57 : break;
8171 : :
8172 : 0 : default:
8173 : 0 : gfc_internal_error ("in gfc_simplify_sin(): Bad type");
8174 : : }
8175 : :
8176 : 263 : return range_check (result, "SIN");
8177 : : }
8178 : :
8179 : :
8180 : : gfc_expr *
8181 : 316 : gfc_simplify_sinh (gfc_expr *x)
8182 : : {
8183 : 316 : gfc_expr *result;
8184 : :
8185 : 316 : if (x->expr_type != EXPR_CONSTANT)
8186 : : return NULL;
8187 : :
8188 : 46 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
8189 : :
8190 : 46 : switch (x->ts.type)
8191 : : {
8192 : 42 : case BT_REAL:
8193 : 42 : mpfr_sinh (result->value.real, x->value.real, GFC_RND_MODE);
8194 : 42 : break;
8195 : :
8196 : 4 : case BT_COMPLEX:
8197 : 4 : mpc_sinh (result->value.complex, x->value.complex, GFC_MPC_RND_MODE);
8198 : 4 : break;
8199 : :
8200 : 0 : default:
8201 : 0 : gcc_unreachable ();
8202 : : }
8203 : :
8204 : 46 : return range_check (result, "SINH");
8205 : : }
8206 : :
8207 : :
8208 : : /* The argument is always a double precision real that is converted to
8209 : : single precision. TODO: Rounding! */
8210 : :
8211 : : gfc_expr *
8212 : 3 : gfc_simplify_sngl (gfc_expr *a)
8213 : : {
8214 : 3 : gfc_expr *result;
8215 : 3 : int tmp1, tmp2;
8216 : :
8217 : 3 : if (a->expr_type != EXPR_CONSTANT)
8218 : : return NULL;
8219 : :
8220 : : /* For explicit conversion, turn off -Wconversion and -Wconversion-extra
8221 : : warnings. */
8222 : 3 : tmp1 = warn_conversion;
8223 : 3 : tmp2 = warn_conversion_extra;
8224 : 3 : warn_conversion = warn_conversion_extra = 0;
8225 : :
8226 : 3 : result = gfc_real2real (a, gfc_default_real_kind);
8227 : :
8228 : 3 : warn_conversion = tmp1;
8229 : 3 : warn_conversion_extra = tmp2;
8230 : :
8231 : 3 : return range_check (result, "SNGL");
8232 : : }
8233 : :
8234 : :
8235 : : gfc_expr *
8236 : 309 : gfc_simplify_spacing (gfc_expr *x)
8237 : : {
8238 : 309 : gfc_expr *result;
8239 : 309 : int i;
8240 : 309 : long int en, ep;
8241 : :
8242 : 309 : if (x->expr_type != EXPR_CONSTANT)
8243 : : return NULL;
8244 : :
8245 : 96 : i = gfc_validate_kind (x->ts.type, x->ts.kind, false);
8246 : 96 : result = gfc_get_constant_expr (BT_REAL, x->ts.kind, &x->where);
8247 : :
8248 : : /* SPACING(+/- 0.0) = SPACING(TINY(0.0)) = TINY(0.0) */
8249 : 96 : if (mpfr_zero_p (x->value.real))
8250 : : {
8251 : 12 : mpfr_set (result->value.real, gfc_real_kinds[i].tiny, GFC_RND_MODE);
8252 : 12 : return result;
8253 : : }
8254 : :
8255 : : /* SPACING(inf) = NaN */
8256 : 84 : if (mpfr_inf_p (x->value.real))
8257 : : {
8258 : 12 : mpfr_set_nan (result->value.real);
8259 : 12 : return result;
8260 : : }
8261 : :
8262 : : /* SPACING(NaN) = same NaN */
8263 : 72 : if (mpfr_nan_p (x->value.real))
8264 : : {
8265 : 6 : mpfr_set (result->value.real, x->value.real, GFC_RND_MODE);
8266 : 6 : return result;
8267 : : }
8268 : :
8269 : : /* In the Fortran 95 standard, the result is b**(e - p) where b, e, and p
8270 : : are the radix, exponent of x, and precision. This excludes the
8271 : : possibility of subnormal numbers. Fortran 2003 states the result is
8272 : : b**max(e - p, emin - 1). */
8273 : :
8274 : 66 : ep = (long int) mpfr_get_exp (x->value.real) - gfc_real_kinds[i].digits;
8275 : 66 : en = (long int) gfc_real_kinds[i].min_exponent - 1;
8276 : 66 : en = en > ep ? en : ep;
8277 : :
8278 : 66 : mpfr_set_ui (result->value.real, 1, GFC_RND_MODE);
8279 : 66 : mpfr_mul_2si (result->value.real, result->value.real, en, GFC_RND_MODE);
8280 : :
8281 : 66 : return range_check (result, "SPACING");
8282 : : }
8283 : :
8284 : :
8285 : : gfc_expr *
8286 : 890 : gfc_simplify_spread (gfc_expr *source, gfc_expr *dim_expr, gfc_expr *ncopies_expr)
8287 : : {
8288 : 890 : gfc_expr *result = NULL;
8289 : 890 : int nelem, i, j, dim, ncopies;
8290 : 890 : mpz_t size;
8291 : :
8292 : 890 : if ((!gfc_is_constant_expr (source)
8293 : 752 : && !is_constant_array_expr (source))
8294 : 157 : || !gfc_is_constant_expr (dim_expr)
8295 : 1047 : || !gfc_is_constant_expr (ncopies_expr))
8296 : 733 : return NULL;
8297 : :
8298 : 157 : gcc_assert (dim_expr->ts.type == BT_INTEGER);
8299 : 157 : gfc_extract_int (dim_expr, &dim);
8300 : 157 : dim -= 1; /* zero-base DIM */
8301 : :
8302 : 157 : gcc_assert (ncopies_expr->ts.type == BT_INTEGER);
8303 : 157 : gfc_extract_int (ncopies_expr, &ncopies);
8304 : 157 : ncopies = MAX (ncopies, 0);
8305 : :
8306 : : /* Do not allow the array size to exceed the limit for an array
8307 : : constructor. */
8308 : 157 : if (source->expr_type == EXPR_ARRAY)
8309 : : {
8310 : 37 : if (!gfc_array_size (source, &size))
8311 : 0 : gfc_internal_error ("Failure getting length of a constant array.");
8312 : : }
8313 : : else
8314 : 120 : mpz_init_set_ui (size, 1);
8315 : :
8316 : 157 : nelem = mpz_get_si (size) * ncopies;
8317 : 157 : if (nelem > flag_max_array_constructor)
8318 : : {
8319 : 3 : if (gfc_init_expr_flag)
8320 : : {
8321 : 2 : gfc_error ("The number of elements (%d) in the array constructor "
8322 : : "at %L requires an increase of the allowed %d upper "
8323 : : "limit. See %<-fmax-array-constructor%> option.",
8324 : : nelem, &source->where, flag_max_array_constructor);
8325 : 2 : return &gfc_bad_expr;
8326 : : }
8327 : : else
8328 : : return NULL;
8329 : : }
8330 : :
8331 : 154 : if (source->expr_type == EXPR_CONSTANT
8332 : 40 : || source->expr_type == EXPR_STRUCTURE)
8333 : : {
8334 : 120 : gcc_assert (dim == 0);
8335 : :
8336 : 120 : result = gfc_get_array_expr (source->ts.type, source->ts.kind,
8337 : : &source->where);
8338 : 120 : if (source->ts.type == BT_DERIVED)
8339 : 6 : result->ts.u.derived = source->ts.u.derived;
8340 : 120 : result->rank = 1;
8341 : 120 : result->shape = gfc_get_shape (result->rank);
8342 : 120 : mpz_init_set_si (result->shape[0], ncopies);
8343 : :
8344 : 1134 : for (i = 0; i < ncopies; ++i)
8345 : 894 : gfc_constructor_append_expr (&result->value.constructor,
8346 : : gfc_copy_expr (source), NULL);
8347 : : }
8348 : 34 : else if (source->expr_type == EXPR_ARRAY)
8349 : : {
8350 : 34 : int offset, rstride[GFC_MAX_DIMENSIONS], extent[GFC_MAX_DIMENSIONS];
8351 : 34 : gfc_constructor *source_ctor;
8352 : :
8353 : 34 : gcc_assert (source->rank < GFC_MAX_DIMENSIONS);
8354 : 34 : gcc_assert (dim >= 0 && dim <= source->rank);
8355 : :
8356 : 34 : result = gfc_get_array_expr (source->ts.type, source->ts.kind,
8357 : : &source->where);
8358 : 34 : if (source->ts.type == BT_DERIVED)
8359 : 1 : result->ts.u.derived = source->ts.u.derived;
8360 : 34 : result->rank = source->rank + 1;
8361 : 34 : result->shape = gfc_get_shape (result->rank);
8362 : :
8363 : 120 : for (i = 0, j = 0; i < result->rank; ++i)
8364 : : {
8365 : 86 : if (i != dim)
8366 : 52 : mpz_init_set (result->shape[i], source->shape[j++]);
8367 : : else
8368 : 34 : mpz_init_set_si (result->shape[i], ncopies);
8369 : :
8370 : 86 : extent[i] = mpz_get_si (result->shape[i]);
8371 : 86 : rstride[i] = (i == 0) ? 1 : rstride[i-1] * extent[i-1];
8372 : : }
8373 : :
8374 : 34 : offset = 0;
8375 : 34 : for (source_ctor = gfc_constructor_first (source->value.constructor);
8376 : 242 : source_ctor; source_ctor = gfc_constructor_next (source_ctor))
8377 : : {
8378 : 732 : for (i = 0; i < ncopies; ++i)
8379 : 524 : gfc_constructor_insert_expr (&result->value.constructor,
8380 : : gfc_copy_expr (source_ctor->expr),
8381 : 524 : NULL, offset + i * rstride[dim]);
8382 : :
8383 : 390 : offset += (dim == 0 ? ncopies : 1);
8384 : : }
8385 : : }
8386 : : else
8387 : : {
8388 : 0 : gfc_error ("Simplification of SPREAD at %C not yet implemented");
8389 : 0 : return &gfc_bad_expr;
8390 : : }
8391 : :
8392 : 154 : if (source->ts.type == BT_CHARACTER)
8393 : 30 : result->ts.u.cl = source->ts.u.cl;
8394 : :
8395 : : return result;
8396 : : }
8397 : :
8398 : :
8399 : : gfc_expr *
8400 : 1353 : gfc_simplify_sqrt (gfc_expr *e)
8401 : : {
8402 : 1353 : gfc_expr *result = NULL;
8403 : :
8404 : 1353 : if (e->expr_type != EXPR_CONSTANT)
8405 : : return NULL;
8406 : :
8407 : 217 : switch (e->ts.type)
8408 : : {
8409 : 160 : case BT_REAL:
8410 : 160 : if (mpfr_cmp_si (e->value.real, 0) < 0)
8411 : : {
8412 : 0 : gfc_error ("Argument of SQRT at %L has a negative value",
8413 : : &e->where);
8414 : 0 : return &gfc_bad_expr;
8415 : : }
8416 : 160 : result = gfc_get_constant_expr (e->ts.type, e->ts.kind, &e->where);
8417 : 160 : mpfr_sqrt (result->value.real, e->value.real, GFC_RND_MODE);
8418 : 160 : break;
8419 : :
8420 : 57 : case BT_COMPLEX:
8421 : 57 : gfc_set_model (e->value.real);
8422 : :
8423 : 57 : result = gfc_get_constant_expr (e->ts.type, e->ts.kind, &e->where);
8424 : 57 : mpc_sqrt (result->value.complex, e->value.complex, GFC_MPC_RND_MODE);
8425 : 57 : break;
8426 : :
8427 : 0 : default:
8428 : 0 : gfc_internal_error ("invalid argument of SQRT at %L", &e->where);
8429 : : }
8430 : :
8431 : 217 : return range_check (result, "SQRT");
8432 : : }
8433 : :
8434 : :
8435 : : gfc_expr *
8436 : 4575 : gfc_simplify_sum (gfc_expr *array, gfc_expr *dim, gfc_expr *mask)
8437 : : {
8438 : 4575 : return simplify_transformation (array, dim, mask, 0, gfc_add);
8439 : : }
8440 : :
8441 : :
8442 : : /* Simplify COTAN(X) where X has the unit of radian. */
8443 : :
8444 : : gfc_expr *
8445 : 230 : gfc_simplify_cotan (gfc_expr *x)
8446 : : {
8447 : 230 : gfc_expr *result;
8448 : 230 : mpc_t swp, *val;
8449 : :
8450 : 230 : if (x->expr_type != EXPR_CONSTANT)
8451 : : return NULL;
8452 : :
8453 : 26 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
8454 : :
8455 : 26 : switch (x->ts.type)
8456 : : {
8457 : 25 : case BT_REAL:
8458 : 25 : mpfr_cot (result->value.real, x->value.real, GFC_RND_MODE);
8459 : 25 : break;
8460 : :
8461 : 1 : case BT_COMPLEX:
8462 : : /* There is no builtin mpc_cot, so compute cot = cos / sin. */
8463 : 1 : val = &result->value.complex;
8464 : 1 : mpc_init2 (swp, mpfr_get_default_prec ());
8465 : 1 : mpc_sin_cos (*val, swp, x->value.complex, GFC_MPC_RND_MODE,
8466 : : GFC_MPC_RND_MODE);
8467 : 1 : mpc_div (*val, swp, *val, GFC_MPC_RND_MODE);
8468 : 1 : mpc_clear (swp);
8469 : 1 : break;
8470 : :
8471 : 0 : default:
8472 : 0 : gcc_unreachable ();
8473 : : }
8474 : :
8475 : 26 : return range_check (result, "COTAN");
8476 : : }
8477 : :
8478 : :
8479 : : gfc_expr *
8480 : 676 : gfc_simplify_tan (gfc_expr *x)
8481 : : {
8482 : 676 : gfc_expr *result;
8483 : :
8484 : 676 : if (x->expr_type != EXPR_CONSTANT)
8485 : : return NULL;
8486 : :
8487 : 46 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
8488 : :
8489 : 46 : switch (x->ts.type)
8490 : : {
8491 : 42 : case BT_REAL:
8492 : 42 : mpfr_tan (result->value.real, x->value.real, GFC_RND_MODE);
8493 : 42 : break;
8494 : :
8495 : 4 : case BT_COMPLEX:
8496 : 4 : mpc_tan (result->value.complex, x->value.complex, GFC_MPC_RND_MODE);
8497 : 4 : break;
8498 : :
8499 : 0 : default:
8500 : 0 : gcc_unreachable ();
8501 : : }
8502 : :
8503 : 46 : return range_check (result, "TAN");
8504 : : }
8505 : :
8506 : :
8507 : : gfc_expr *
8508 : 316 : gfc_simplify_tanh (gfc_expr *x)
8509 : : {
8510 : 316 : gfc_expr *result;
8511 : :
8512 : 316 : if (x->expr_type != EXPR_CONSTANT)
8513 : : return NULL;
8514 : :
8515 : 46 : result = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
8516 : :
8517 : 46 : switch (x->ts.type)
8518 : : {
8519 : 42 : case BT_REAL:
8520 : 42 : mpfr_tanh (result->value.real, x->value.real, GFC_RND_MODE);
8521 : 42 : break;
8522 : :
8523 : 4 : case BT_COMPLEX:
8524 : 4 : mpc_tanh (result->value.complex, x->value.complex, GFC_MPC_RND_MODE);
8525 : 4 : break;
8526 : :
8527 : 0 : default:
8528 : 0 : gcc_unreachable ();
8529 : : }
8530 : :
8531 : 46 : return range_check (result, "TANH");
8532 : : }
8533 : :
8534 : :
8535 : : gfc_expr *
8536 : 814 : gfc_simplify_tiny (gfc_expr *e)
8537 : : {
8538 : 814 : gfc_expr *result;
8539 : 814 : int i;
8540 : :
8541 : 814 : i = gfc_validate_kind (BT_REAL, e->ts.kind, false);
8542 : :
8543 : 814 : result = gfc_get_constant_expr (BT_REAL, e->ts.kind, &e->where);
8544 : 814 : mpfr_set (result->value.real, gfc_real_kinds[i].tiny, GFC_RND_MODE);
8545 : :
8546 : 814 : return result;
8547 : : }
8548 : :
8549 : :
8550 : : gfc_expr *
8551 : 1104 : gfc_simplify_trailz (gfc_expr *e)
8552 : : {
8553 : 1104 : unsigned long tz, bs;
8554 : 1104 : int i;
8555 : :
8556 : 1104 : if (e->expr_type != EXPR_CONSTANT)
8557 : : return NULL;
8558 : :
8559 : 258 : i = gfc_validate_kind (e->ts.type, e->ts.kind, false);
8560 : 258 : bs = gfc_integer_kinds[i].bit_size;
8561 : 258 : tz = mpz_scan1 (e->value.integer, 0);
8562 : :
8563 : 258 : return gfc_get_int_expr (gfc_default_integer_kind,
8564 : 258 : &e->where, MIN (tz, bs));
8565 : : }
8566 : :
8567 : :
8568 : : gfc_expr *
8569 : 2991 : gfc_simplify_transfer (gfc_expr *source, gfc_expr *mold, gfc_expr *size)
8570 : : {
8571 : 2991 : gfc_expr *result;
8572 : 2991 : gfc_expr *mold_element;
8573 : 2991 : size_t source_size;
8574 : 2991 : size_t result_size;
8575 : 2991 : size_t buffer_size;
8576 : 2991 : mpz_t tmp;
8577 : 2991 : unsigned char *buffer;
8578 : 2991 : size_t result_length;
8579 : :
8580 : 2991 : if (!gfc_is_constant_expr (source) || !gfc_is_constant_expr (size))
8581 : 1883 : return NULL;
8582 : :
8583 : 1108 : if (!gfc_resolve_expr (mold))
8584 : : return NULL;
8585 : 1108 : if (gfc_init_expr_flag && !gfc_is_constant_expr (mold))
8586 : : return NULL;
8587 : :
8588 : 1052 : if (!gfc_calculate_transfer_sizes (source, mold, size, &source_size,
8589 : : &result_size, &result_length))
8590 : : return NULL;
8591 : :
8592 : : /* Calculate the size of the source. */
8593 : 1013 : if (source->expr_type == EXPR_ARRAY && !gfc_array_size (source, &tmp))
8594 : 0 : gfc_internal_error ("Failure getting length of a constant array.");
8595 : :
8596 : : /* Create an empty new expression with the appropriate characteristics. */
8597 : 1013 : result = gfc_get_constant_expr (mold->ts.type, mold->ts.kind,
8598 : : &source->where);
8599 : 1013 : result->ts = mold->ts;
8600 : :
8601 : 192 : mold_element = (mold->expr_type == EXPR_ARRAY && mold->value.constructor)
8602 : 1187 : ? gfc_constructor_first (mold->value.constructor)->expr
8603 : : : mold;
8604 : :
8605 : : /* Set result character length, if needed. Note that this needs to be
8606 : : set even for array expressions, in order to pass this information into
8607 : : gfc_target_interpret_expr. */
8608 : 1013 : if (result->ts.type == BT_CHARACTER && gfc_is_constant_expr (mold_element))
8609 : : {
8610 : 376 : result->value.character.length = mold_element->value.character.length;
8611 : :
8612 : : /* Let the typespec of the result inherit the string length.
8613 : : This is crucial if a resulting array has size zero. */
8614 : 376 : if (mold_element->ts.u.cl->length)
8615 : 260 : result->ts.u.cl->length = gfc_copy_expr (mold_element->ts.u.cl->length);
8616 : : else
8617 : 116 : result->ts.u.cl->length =
8618 : 116 : gfc_get_int_expr (gfc_charlen_int_kind, NULL,
8619 : : mold_element->value.character.length);
8620 : : }
8621 : :
8622 : : /* Set the number of elements in the result, and determine its size. */
8623 : :
8624 : 1013 : if (mold->expr_type == EXPR_ARRAY || mold->rank || size)
8625 : : {
8626 : 323 : result->expr_type = EXPR_ARRAY;
8627 : 323 : result->rank = 1;
8628 : 323 : result->shape = gfc_get_shape (1);
8629 : 323 : mpz_init_set_ui (result->shape[0], result_length);
8630 : : }
8631 : : else
8632 : 690 : result->rank = 0;
8633 : :
8634 : : /* Allocate the buffer to store the binary version of the source. */
8635 : 1013 : buffer_size = MAX (source_size, result_size);
8636 : 1013 : buffer = (unsigned char*)alloca (buffer_size);
8637 : 1013 : memset (buffer, 0, buffer_size);
8638 : :
8639 : : /* Now write source to the buffer. */
8640 : 1013 : gfc_target_encode_expr (source, buffer, buffer_size);
8641 : :
8642 : : /* And read the buffer back into the new expression. */
8643 : 1013 : gfc_target_interpret_expr (buffer, buffer_size, result, false);
8644 : :
8645 : 1013 : return result;
8646 : : }
8647 : :
8648 : :
8649 : : gfc_expr *
8650 : 1644 : gfc_simplify_transpose (gfc_expr *matrix)
8651 : : {
8652 : 1644 : int row, matrix_rows, col, matrix_cols;
8653 : 1644 : gfc_expr *result;
8654 : :
8655 : 1644 : if (!is_constant_array_expr (matrix))
8656 : : return NULL;
8657 : :
8658 : 45 : gcc_assert (matrix->rank == 2);
8659 : :
8660 : 45 : if (matrix->shape == NULL)
8661 : : return NULL;
8662 : :
8663 : 45 : result = gfc_get_array_expr (matrix->ts.type, matrix->ts.kind,
8664 : : &matrix->where);
8665 : 45 : result->rank = 2;
8666 : 45 : result->shape = gfc_get_shape (result->rank);
8667 : 45 : mpz_init_set (result->shape[0], matrix->shape[1]);
8668 : 45 : mpz_init_set (result->shape[1], matrix->shape[0]);
8669 : :
8670 : 45 : if (matrix->ts.type == BT_CHARACTER)
8671 : 18 : result->ts.u.cl = matrix->ts.u.cl;
8672 : 27 : else if (matrix->ts.type == BT_DERIVED)
8673 : 7 : result->ts.u.derived = matrix->ts.u.derived;
8674 : :
8675 : 45 : matrix_rows = mpz_get_si (matrix->shape[0]);
8676 : 45 : matrix_cols = mpz_get_si (matrix->shape[1]);
8677 : 201 : for (row = 0; row < matrix_rows; ++row)
8678 : 530 : for (col = 0; col < matrix_cols; ++col)
8679 : : {
8680 : 748 : gfc_expr *e = gfc_constructor_lookup_expr (matrix->value.constructor,
8681 : 374 : col * matrix_rows + row);
8682 : 374 : gfc_constructor_insert_expr (&result->value.constructor,
8683 : : gfc_copy_expr (e), &matrix->where,
8684 : 374 : row * matrix_cols + col);
8685 : : }
8686 : :
8687 : : return result;
8688 : : }
8689 : :
8690 : :
8691 : : gfc_expr *
8692 : 4488 : gfc_simplify_trim (gfc_expr *e)
8693 : : {
8694 : 4488 : gfc_expr *result;
8695 : 4488 : int count, i, len, lentrim;
8696 : :
8697 : 4488 : if (e->expr_type != EXPR_CONSTANT)
8698 : : return NULL;
8699 : :
8700 : 44 : len = e->value.character.length;
8701 : 196 : for (count = 0, i = 1; i <= len; ++i)
8702 : : {
8703 : 196 : if (e->value.character.string[len - i] == ' ')
8704 : 152 : count++;
8705 : : else
8706 : : break;
8707 : : }
8708 : :
8709 : 44 : lentrim = len - count;
8710 : :
8711 : 44 : result = gfc_get_character_expr (e->ts.kind, &e->where, NULL, lentrim);
8712 : 769 : for (i = 0; i < lentrim; i++)
8713 : 681 : result->value.character.string[i] = e->value.character.string[i];
8714 : :
8715 : : return result;
8716 : : }
8717 : :
8718 : :
8719 : : gfc_expr *
8720 : 230 : gfc_simplify_image_index (gfc_expr *coarray, gfc_expr *sub)
8721 : : {
8722 : 230 : gfc_expr *result;
8723 : 230 : gfc_ref *ref;
8724 : 230 : gfc_array_spec *as;
8725 : 230 : gfc_constructor *sub_cons;
8726 : 230 : bool first_image;
8727 : 230 : int d;
8728 : :
8729 : 230 : if (!is_constant_array_expr (sub))
8730 : : return NULL;
8731 : :
8732 : : /* Follow any component references. */
8733 : 226 : as = coarray->symtree->n.sym->as;
8734 : 454 : for (ref = coarray->ref; ref; ref = ref->next)
8735 : 228 : if (ref->type == REF_COMPONENT)
8736 : 2 : as = ref->u.ar.as;
8737 : :
8738 : 226 : if (!as || as->type == AS_DEFERRED)
8739 : : return NULL;
8740 : :
8741 : : /* "valid sequence of cosubscripts" are required; thus, return 0 unless
8742 : : the cosubscript addresses the first image. */
8743 : :
8744 : 131 : sub_cons = gfc_constructor_first (sub->value.constructor);
8745 : 131 : first_image = true;
8746 : :
8747 : 289 : for (d = 1; d <= as->corank; d++)
8748 : : {
8749 : 204 : gfc_expr *ca_bound;
8750 : 204 : int cmp;
8751 : :
8752 : 204 : gcc_assert (sub_cons != NULL);
8753 : :
8754 : 204 : ca_bound = simplify_bound_dim (coarray, NULL, d + as->rank, 0, as,
8755 : : NULL, true);
8756 : 204 : if (ca_bound == NULL)
8757 : : return NULL;
8758 : :
8759 : 160 : if (ca_bound == &gfc_bad_expr)
8760 : : return ca_bound;
8761 : :
8762 : 160 : cmp = mpz_cmp (ca_bound->value.integer, sub_cons->expr->value.integer);
8763 : :
8764 : 160 : if (cmp == 0)
8765 : : {
8766 : 109 : gfc_free_expr (ca_bound);
8767 : 109 : sub_cons = gfc_constructor_next (sub_cons);
8768 : 109 : continue;
8769 : : }
8770 : :
8771 : 51 : first_image = false;
8772 : :
8773 : 51 : if (cmp > 0)
8774 : : {
8775 : 1 : gfc_error ("Out of bounds in IMAGE_INDEX at %L for dimension %d, "
8776 : : "SUB has %ld and COARRAY lower bound is %ld)",
8777 : : &coarray->where, d,
8778 : : mpz_get_si (sub_cons->expr->value.integer),
8779 : : mpz_get_si (ca_bound->value.integer));
8780 : 1 : gfc_free_expr (ca_bound);
8781 : 1 : return &gfc_bad_expr;
8782 : : }
8783 : :
8784 : 50 : gfc_free_expr (ca_bound);
8785 : :
8786 : : /* Check whether upperbound is valid for the multi-images case. */
8787 : 50 : if (d < as->corank)
8788 : : {
8789 : 23 : ca_bound = simplify_bound_dim (coarray, NULL, d + as->rank, 1, as,
8790 : : NULL, true);
8791 : 23 : if (ca_bound == &gfc_bad_expr)
8792 : : return ca_bound;
8793 : :
8794 : 23 : if (ca_bound && ca_bound->expr_type == EXPR_CONSTANT
8795 : 23 : && mpz_cmp (ca_bound->value.integer,
8796 : 23 : sub_cons->expr->value.integer) < 0)
8797 : : {
8798 : 1 : gfc_error ("Out of bounds in IMAGE_INDEX at %L for dimension %d, "
8799 : : "SUB has %ld and COARRAY upper bound is %ld)",
8800 : : &coarray->where, d,
8801 : : mpz_get_si (sub_cons->expr->value.integer),
8802 : : mpz_get_si (ca_bound->value.integer));
8803 : 1 : gfc_free_expr (ca_bound);
8804 : 1 : return &gfc_bad_expr;
8805 : : }
8806 : :
8807 : : if (ca_bound)
8808 : 22 : gfc_free_expr (ca_bound);
8809 : : }
8810 : :
8811 : 49 : sub_cons = gfc_constructor_next (sub_cons);
8812 : : }
8813 : :
8814 : 85 : gcc_assert (sub_cons == NULL);
8815 : :
8816 : 85 : if (flag_coarray != GFC_FCOARRAY_SINGLE && !first_image)
8817 : : return NULL;
8818 : :
8819 : 74 : result = gfc_get_constant_expr (BT_INTEGER, gfc_default_integer_kind,
8820 : : &gfc_current_locus);
8821 : 74 : if (first_image)
8822 : 41 : mpz_set_si (result->value.integer, 1);
8823 : : else
8824 : 33 : mpz_set_si (result->value.integer, 0);
8825 : :
8826 : : return result;
8827 : : }
8828 : :
8829 : : gfc_expr *
8830 : 70 : gfc_simplify_image_status (gfc_expr *image, gfc_expr *team ATTRIBUTE_UNUSED)
8831 : : {
8832 : 70 : if (flag_coarray == GFC_FCOARRAY_NONE)
8833 : : {
8834 : 0 : gfc_current_locus = *gfc_current_intrinsic_where;
8835 : 0 : gfc_fatal_error ("Coarrays disabled at %C, use %<-fcoarray=%> to enable");
8836 : : return &gfc_bad_expr;
8837 : : }
8838 : :
8839 : : /* Simplification is possible for fcoarray = single only. For all other modes
8840 : : the result depends on runtime conditions. */
8841 : 70 : if (flag_coarray != GFC_FCOARRAY_SINGLE)
8842 : : return NULL;
8843 : :
8844 : 12 : if (gfc_is_constant_expr (image))
8845 : : {
8846 : 4 : gfc_expr *result;
8847 : 4 : result = gfc_get_constant_expr (BT_INTEGER, gfc_default_integer_kind,
8848 : : &image->where);
8849 : 4 : if (mpz_get_si (image->value.integer) == 1)
8850 : 2 : mpz_set_si (result->value.integer, 0);
8851 : : else
8852 : 2 : mpz_set_si (result->value.integer, GFC_STAT_STOPPED_IMAGE);
8853 : 4 : return result;
8854 : : }
8855 : : else
8856 : : return NULL;
8857 : : }
8858 : :
8859 : :
8860 : : gfc_expr *
8861 : 2214 : gfc_simplify_this_image (gfc_expr *coarray, gfc_expr *dim,
8862 : : gfc_expr *distance ATTRIBUTE_UNUSED)
8863 : : {
8864 : 2214 : if (flag_coarray != GFC_FCOARRAY_SINGLE)
8865 : : return NULL;
8866 : :
8867 : : /* If no coarray argument has been passed or when the first argument
8868 : : is actually a distance argument. */
8869 : 1031 : if (coarray == NULL || !gfc_is_coarray (coarray))
8870 : : {
8871 : 551 : gfc_expr *result;
8872 : : /* FIXME: gfc_current_locus is wrong. */
8873 : 551 : result = gfc_get_constant_expr (BT_INTEGER, gfc_default_integer_kind,
8874 : : &gfc_current_locus);
8875 : 551 : mpz_set_si (result->value.integer, 1);
8876 : 551 : return result;
8877 : : }
8878 : :
8879 : : /* For -fcoarray=single, this_image(A) is the same as lcobound(A). */
8880 : 480 : return simplify_cobound (coarray, dim, NULL, 0);
8881 : : }
8882 : :
8883 : :
8884 : : gfc_expr *
8885 : 14834 : gfc_simplify_ubound (gfc_expr *array, gfc_expr *dim, gfc_expr *kind)
8886 : : {
8887 : 14834 : return simplify_bound (array, dim, kind, 1);
8888 : : }
8889 : :
8890 : : gfc_expr *
8891 : 466 : gfc_simplify_ucobound (gfc_expr *array, gfc_expr *dim, gfc_expr *kind)
8892 : : {
8893 : 466 : return simplify_cobound (array, dim, kind, 1);
8894 : : }
8895 : :
8896 : :
8897 : : gfc_expr *
8898 : 480 : gfc_simplify_unpack (gfc_expr *vector, gfc_expr *mask, gfc_expr *field)
8899 : : {
8900 : 480 : gfc_expr *result, *e;
8901 : 480 : gfc_constructor *vector_ctor, *mask_ctor, *field_ctor;
8902 : :
8903 : 480 : if (!is_constant_array_expr (vector)
8904 : 242 : || !is_constant_array_expr (mask)
8905 : 503 : || (!gfc_is_constant_expr (field)
8906 : 12 : && !is_constant_array_expr (field)))
8907 : 457 : return NULL;
8908 : :
8909 : 23 : result = gfc_get_array_expr (vector->ts.type, vector->ts.kind,
8910 : : &vector->where);
8911 : 23 : if (vector->ts.type == BT_DERIVED)
8912 : 4 : result->ts.u.derived = vector->ts.u.derived;
8913 : 23 : result->rank = mask->rank;
8914 : 23 : result->shape = gfc_copy_shape (mask->shape, mask->rank);
8915 : :
8916 : 23 : if (vector->ts.type == BT_CHARACTER)
8917 : 0 : result->ts.u.cl = vector->ts.u.cl;
8918 : :
8919 : 23 : vector_ctor = gfc_constructor_first (vector->value.constructor);
8920 : 23 : mask_ctor = gfc_constructor_first (mask->value.constructor);
8921 : 23 : field_ctor
8922 : 23 : = field->expr_type == EXPR_ARRAY
8923 : 23 : ? gfc_constructor_first (field->value.constructor)
8924 : : : NULL;
8925 : :
8926 : 168 : while (mask_ctor)
8927 : : {
8928 : 151 : if (mask_ctor->expr->value.logical)
8929 : : {
8930 : 55 : if (vector_ctor)
8931 : : {
8932 : 52 : e = gfc_copy_expr (vector_ctor->expr);
8933 : 52 : vector_ctor = gfc_constructor_next (vector_ctor);
8934 : : }
8935 : : else
8936 : : {
8937 : 3 : gfc_free_expr (result);
8938 : 3 : return NULL;
8939 : : }
8940 : : }
8941 : 96 : else if (field->expr_type == EXPR_ARRAY)
8942 : : {
8943 : 52 : if (field_ctor)
8944 : 49 : e = gfc_copy_expr (field_ctor->expr);
8945 : : else
8946 : : {
8947 : : /* Not enough elements in array FIELD. */
8948 : 3 : gfc_free_expr (result);
8949 : 3 : return &gfc_bad_expr;
8950 : : }
8951 : : }
8952 : : else
8953 : 44 : e = gfc_copy_expr (field);
8954 : :
8955 : 145 : gfc_constructor_append_expr (&result->value.constructor, e, NULL);
8956 : :
8957 : 145 : mask_ctor = gfc_constructor_next (mask_ctor);
8958 : 145 : field_ctor = gfc_constructor_next (field_ctor);
8959 : : }
8960 : :
8961 : : return result;
8962 : : }
8963 : :
8964 : :
8965 : : gfc_expr *
8966 : 410 : gfc_simplify_verify (gfc_expr *s, gfc_expr *set, gfc_expr *b, gfc_expr *kind)
8967 : : {
8968 : 410 : gfc_expr *result;
8969 : 410 : int back;
8970 : 410 : size_t index, len, lenset;
8971 : 410 : size_t i;
8972 : 410 : int k = get_kind (BT_INTEGER, kind, "VERIFY", gfc_default_integer_kind);
8973 : :
8974 : 410 : if (k == -1)
8975 : : return &gfc_bad_expr;
8976 : :
8977 : 410 : if (s->expr_type != EXPR_CONSTANT || set->expr_type != EXPR_CONSTANT
8978 : 158 : || ( b != NULL && b->expr_type != EXPR_CONSTANT))
8979 : : return NULL;
8980 : :
8981 : 150 : if (b != NULL && b->value.logical != 0)
8982 : : back = 1;
8983 : : else
8984 : 78 : back = 0;
8985 : :
8986 : 156 : result = gfc_get_constant_expr (BT_INTEGER, k, &s->where);
8987 : :
8988 : 156 : len = s->value.character.length;
8989 : 156 : lenset = set->value.character.length;
8990 : :
8991 : 156 : if (len == 0)
8992 : : {
8993 : 0 : mpz_set_ui (result->value.integer, 0);
8994 : 0 : return result;
8995 : : }
8996 : :
8997 : 156 : if (back == 0)
8998 : : {
8999 : 78 : if (lenset == 0)
9000 : : {
9001 : 18 : mpz_set_ui (result->value.integer, 1);
9002 : 18 : return result;
9003 : : }
9004 : :
9005 : 60 : index = wide_strspn (s->value.character.string,
9006 : 60 : set->value.character.string) + 1;
9007 : 60 : if (index > len)
9008 : 0 : index = 0;
9009 : :
9010 : : }
9011 : : else
9012 : : {
9013 : 78 : if (lenset == 0)
9014 : : {
9015 : 18 : mpz_set_ui (result->value.integer, len);
9016 : 18 : return result;
9017 : : }
9018 : 96 : for (index = len; index > 0; index --)
9019 : : {
9020 : 300 : for (i = 0; i < lenset; i++)
9021 : : {
9022 : 240 : if (s->value.character.string[index - 1]
9023 : 240 : == set->value.character.string[i])
9024 : : break;
9025 : : }
9026 : 96 : if (i == lenset)
9027 : : break;
9028 : : }
9029 : : }
9030 : :
9031 : 120 : mpz_set_ui (result->value.integer, index);
9032 : 120 : return result;
9033 : : }
9034 : :
9035 : :
9036 : : gfc_expr *
9037 : 26 : gfc_simplify_xor (gfc_expr *x, gfc_expr *y)
9038 : : {
9039 : 26 : gfc_expr *result;
9040 : 26 : int kind;
9041 : :
9042 : 26 : if (x->expr_type != EXPR_CONSTANT || y->expr_type != EXPR_CONSTANT)
9043 : : return NULL;
9044 : :
9045 : 6 : kind = x->ts.kind > y->ts.kind ? x->ts.kind : y->ts.kind;
9046 : :
9047 : 6 : switch (x->ts.type)
9048 : : {
9049 : 0 : case BT_INTEGER:
9050 : 0 : result = gfc_get_constant_expr (BT_INTEGER, kind, &x->where);
9051 : 0 : mpz_xor (result->value.integer, x->value.integer, y->value.integer);
9052 : 0 : return range_check (result, "XOR");
9053 : :
9054 : 6 : case BT_LOGICAL:
9055 : 6 : return gfc_get_logical_expr (kind, &x->where,
9056 : 6 : (x->value.logical && !y->value.logical)
9057 : 18 : || (!x->value.logical && y->value.logical));
9058 : :
9059 : 0 : default:
9060 : 0 : gcc_unreachable ();
9061 : : }
9062 : : }
9063 : :
9064 : :
9065 : : /****************** Constant simplification *****************/
9066 : :
9067 : : /* Master function to convert one constant to another. While this is
9068 : : used as a simplification function, it requires the destination type
9069 : : and kind information which is supplied by a special case in
9070 : : do_simplify(). */
9071 : :
9072 : : gfc_expr *
9073 : 154108 : gfc_convert_constant (gfc_expr *e, bt type, int kind)
9074 : : {
9075 : 154108 : gfc_expr *result, *(*f) (gfc_expr *, int);
9076 : 154108 : gfc_constructor *c, *t;
9077 : :
9078 : 154108 : switch (e->ts.type)
9079 : : {
9080 : 134103 : case BT_INTEGER:
9081 : 134103 : switch (type)
9082 : : {
9083 : : case BT_INTEGER:
9084 : : f = gfc_int2int;
9085 : : break;
9086 : 150 : case BT_UNSIGNED:
9087 : 150 : f = gfc_int2uint;
9088 : 150 : break;
9089 : 59853 : case BT_REAL:
9090 : 59853 : f = gfc_int2real;
9091 : 59853 : break;
9092 : 1386 : case BT_COMPLEX:
9093 : 1386 : f = gfc_int2complex;
9094 : 1386 : break;
9095 : 0 : case BT_LOGICAL:
9096 : 0 : f = gfc_int2log;
9097 : 0 : break;
9098 : 0 : default:
9099 : 0 : goto oops;
9100 : : }
9101 : : break;
9102 : :
9103 : 595 : case BT_UNSIGNED:
9104 : 595 : switch (type)
9105 : : {
9106 : : case BT_INTEGER:
9107 : : f = gfc_uint2int;
9108 : : break;
9109 : 222 : case BT_UNSIGNED:
9110 : 222 : f = gfc_uint2uint;
9111 : 222 : break;
9112 : 48 : case BT_REAL:
9113 : 48 : f = gfc_uint2real;
9114 : 48 : break;
9115 : 0 : case BT_COMPLEX:
9116 : 0 : f = gfc_uint2complex;
9117 : 0 : break;
9118 : 0 : case BT_LOGICAL:
9119 : 0 : f = gfc_uint2log;
9120 : 0 : break;
9121 : 0 : default:
9122 : 0 : goto oops;
9123 : : }
9124 : : break;
9125 : :
9126 : 12495 : case BT_REAL:
9127 : 12495 : switch (type)
9128 : : {
9129 : : case BT_INTEGER:
9130 : : f = gfc_real2int;
9131 : : break;
9132 : 6 : case BT_UNSIGNED:
9133 : 6 : f = gfc_real2uint;
9134 : 6 : break;
9135 : 9711 : case BT_REAL:
9136 : 9711 : f = gfc_real2real;
9137 : 9711 : break;
9138 : 2023 : case BT_COMPLEX:
9139 : 2023 : f = gfc_real2complex;
9140 : 2023 : break;
9141 : 0 : default:
9142 : 0 : goto oops;
9143 : : }
9144 : : break;
9145 : :
9146 : 2902 : case BT_COMPLEX:
9147 : 2902 : switch (type)
9148 : : {
9149 : : case BT_INTEGER:
9150 : : f = gfc_complex2int;
9151 : : break;
9152 : 6 : case BT_UNSIGNED:
9153 : 6 : f = gfc_complex2uint;
9154 : 6 : break;
9155 : 184 : case BT_REAL:
9156 : 184 : f = gfc_complex2real;
9157 : 184 : break;
9158 : 2656 : case BT_COMPLEX:
9159 : 2656 : f = gfc_complex2complex;
9160 : 2656 : break;
9161 : :
9162 : 0 : default:
9163 : 0 : goto oops;
9164 : : }
9165 : : break;
9166 : :
9167 : 1913 : case BT_LOGICAL:
9168 : 1913 : switch (type)
9169 : : {
9170 : : case BT_INTEGER:
9171 : : f = gfc_log2int;
9172 : : break;
9173 : 0 : case BT_UNSIGNED:
9174 : 0 : f = gfc_log2uint;
9175 : 0 : break;
9176 : 1683 : case BT_LOGICAL:
9177 : 1683 : f = gfc_log2log;
9178 : 1683 : break;
9179 : 0 : default:
9180 : 0 : goto oops;
9181 : : }
9182 : : break;
9183 : :
9184 : 1340 : case BT_HOLLERITH:
9185 : 1340 : switch (type)
9186 : : {
9187 : : case BT_INTEGER:
9188 : : f = gfc_hollerith2int;
9189 : : break;
9190 : :
9191 : : /* Hollerith is for legacy code, we do not currently support
9192 : : converting this to UNSIGNED. */
9193 : 0 : case BT_UNSIGNED:
9194 : 0 : goto oops;
9195 : :
9196 : 327 : case BT_REAL:
9197 : 327 : f = gfc_hollerith2real;
9198 : 327 : break;
9199 : :
9200 : 288 : case BT_COMPLEX:
9201 : 288 : f = gfc_hollerith2complex;
9202 : 288 : break;
9203 : :
9204 : 156 : case BT_CHARACTER:
9205 : 156 : f = gfc_hollerith2character;
9206 : 156 : break;
9207 : :
9208 : 195 : case BT_LOGICAL:
9209 : 195 : f = gfc_hollerith2logical;
9210 : 195 : break;
9211 : :
9212 : 0 : default:
9213 : 0 : goto oops;
9214 : : }
9215 : : break;
9216 : :
9217 : 747 : case BT_CHARACTER:
9218 : 747 : switch (type)
9219 : : {
9220 : : case BT_INTEGER:
9221 : : f = gfc_character2int;
9222 : : break;
9223 : :
9224 : 0 : case BT_UNSIGNED:
9225 : 0 : goto oops;
9226 : :
9227 : 187 : case BT_REAL:
9228 : 187 : f = gfc_character2real;
9229 : 187 : break;
9230 : :
9231 : 187 : case BT_COMPLEX:
9232 : 187 : f = gfc_character2complex;
9233 : 187 : break;
9234 : :
9235 : 0 : case BT_CHARACTER:
9236 : 0 : f = gfc_character2character;
9237 : 0 : break;
9238 : :
9239 : 186 : case BT_LOGICAL:
9240 : 186 : f = gfc_character2logical;
9241 : 186 : break;
9242 : :
9243 : 0 : default:
9244 : 0 : goto oops;
9245 : : }
9246 : : break;
9247 : :
9248 : : default:
9249 : 154108 : oops:
9250 : : return &gfc_bad_expr;
9251 : : }
9252 : :
9253 : 154095 : result = NULL;
9254 : :
9255 : 154095 : switch (e->expr_type)
9256 : : {
9257 : 118367 : case EXPR_CONSTANT:
9258 : 118367 : result = f (e, kind);
9259 : 118367 : if (result == NULL)
9260 : : return &gfc_bad_expr;
9261 : : break;
9262 : :
9263 : 5641 : case EXPR_ARRAY:
9264 : 5641 : if (!gfc_is_constant_expr (e))
9265 : : break;
9266 : :
9267 : 5467 : result = gfc_get_array_expr (type, kind, &e->where);
9268 : 5467 : result->shape = gfc_copy_shape (e->shape, e->rank);
9269 : 5467 : result->rank = e->rank;
9270 : :
9271 : 5467 : for (c = gfc_constructor_first (e->value.constructor);
9272 : 80657 : c; c = gfc_constructor_next (c))
9273 : : {
9274 : 75227 : gfc_expr *tmp;
9275 : 75227 : if (c->iterator == NULL)
9276 : : {
9277 : 75204 : if (c->expr->expr_type == EXPR_ARRAY)
9278 : 69 : tmp = gfc_convert_constant (c->expr, type, kind);
9279 : 75135 : else if (c->expr->expr_type == EXPR_OP)
9280 : : {
9281 : 29 : if (!gfc_simplify_expr (c->expr, 1))
9282 : : return &gfc_bad_expr;
9283 : 29 : tmp = f (c->expr, kind);
9284 : : }
9285 : : else
9286 : 75106 : tmp = f (c->expr, kind);
9287 : : }
9288 : : else
9289 : 23 : tmp = gfc_convert_constant (c->expr, type, kind);
9290 : :
9291 : 75227 : if (tmp == NULL || tmp == &gfc_bad_expr)
9292 : : {
9293 : 37 : gfc_free_expr (result);
9294 : 37 : return NULL;
9295 : : }
9296 : :
9297 : 75190 : t = gfc_constructor_append_expr (&result->value.constructor,
9298 : : tmp, &c->where);
9299 : 75190 : if (c->iterator)
9300 : 4 : t->iterator = gfc_copy_iterator (c->iterator);
9301 : : }
9302 : :
9303 : : break;
9304 : :
9305 : : default:
9306 : : break;
9307 : : }
9308 : :
9309 : : return result;
9310 : : }
9311 : :
9312 : :
9313 : : /* Function for converting character constants. */
9314 : : gfc_expr *
9315 : 195 : gfc_convert_char_constant (gfc_expr *e, bt type ATTRIBUTE_UNUSED, int kind)
9316 : : {
9317 : 195 : gfc_expr *result;
9318 : 195 : int i;
9319 : :
9320 : 195 : if (!gfc_is_constant_expr (e))
9321 : : return NULL;
9322 : :
9323 : 195 : if (e->expr_type == EXPR_CONSTANT)
9324 : : {
9325 : : /* Simple case of a scalar. */
9326 : 182 : result = gfc_get_constant_expr (BT_CHARACTER, kind, &e->where);
9327 : 182 : if (result == NULL)
9328 : : return &gfc_bad_expr;
9329 : :
9330 : 182 : result->value.character.length = e->value.character.length;
9331 : 182 : result->value.character.string
9332 : 182 : = gfc_get_wide_string (e->value.character.length + 1);
9333 : 182 : memcpy (result->value.character.string, e->value.character.string,
9334 : 182 : (e->value.character.length + 1) * sizeof (gfc_char_t));
9335 : :
9336 : : /* Check we only have values representable in the destination kind. */
9337 : 1142 : for (i = 0; i < result->value.character.length; i++)
9338 : 964 : if (!gfc_check_character_range (result->value.character.string[i],
9339 : : kind))
9340 : : {
9341 : 4 : gfc_error ("Character %qs in string at %L cannot be converted "
9342 : : "into character kind %d",
9343 : 4 : gfc_print_wide_char (result->value.character.string[i]),
9344 : : &e->where, kind);
9345 : 4 : gfc_free_expr (result);
9346 : 4 : return &gfc_bad_expr;
9347 : : }
9348 : :
9349 : : return result;
9350 : : }
9351 : 13 : else if (e->expr_type == EXPR_ARRAY)
9352 : : {
9353 : : /* For an array constructor, we convert each constructor element. */
9354 : 13 : gfc_constructor *c;
9355 : :
9356 : 13 : result = gfc_get_array_expr (type, kind, &e->where);
9357 : 13 : result->shape = gfc_copy_shape (e->shape, e->rank);
9358 : 13 : result->rank = e->rank;
9359 : 13 : result->ts.u.cl = e->ts.u.cl;
9360 : :
9361 : 13 : for (c = gfc_constructor_first (e->value.constructor);
9362 : 40 : c; c = gfc_constructor_next (c))
9363 : : {
9364 : 27 : gfc_expr *tmp = gfc_convert_char_constant (c->expr, type, kind);
9365 : 27 : if (tmp == &gfc_bad_expr)
9366 : : {
9367 : 0 : gfc_free_expr (result);
9368 : 0 : return &gfc_bad_expr;
9369 : : }
9370 : :
9371 : 27 : if (tmp == NULL)
9372 : : {
9373 : 0 : gfc_free_expr (result);
9374 : 0 : return NULL;
9375 : : }
9376 : :
9377 : 27 : gfc_constructor_append_expr (&result->value.constructor,
9378 : : tmp, &c->where);
9379 : : }
9380 : :
9381 : : return result;
9382 : : }
9383 : : else
9384 : : return NULL;
9385 : : }
9386 : :
9387 : :
9388 : : gfc_expr *
9389 : 8 : gfc_simplify_compiler_options (void)
9390 : : {
9391 : 8 : char *str;
9392 : 8 : gfc_expr *result;
9393 : :
9394 : 8 : str = gfc_get_option_string ();
9395 : 16 : result = gfc_get_character_expr (gfc_default_character_kind,
9396 : 8 : &gfc_current_locus, str, strlen (str));
9397 : 8 : free (str);
9398 : 8 : return result;
9399 : : }
9400 : :
9401 : :
9402 : : gfc_expr *
9403 : 10 : gfc_simplify_compiler_version (void)
9404 : : {
9405 : 10 : char *buffer;
9406 : 10 : size_t len;
9407 : :
9408 : 10 : len = strlen ("GCC version ") + strlen (version_string);
9409 : 10 : buffer = XALLOCAVEC (char, len + 1);
9410 : 10 : snprintf (buffer, len + 1, "GCC version %s", version_string);
9411 : 10 : return gfc_get_character_expr (gfc_default_character_kind,
9412 : 10 : &gfc_current_locus, buffer, len);
9413 : : }
9414 : :
9415 : : /* Simplification routines for intrinsics of IEEE modules. */
9416 : :
9417 : : gfc_expr *
9418 : 243 : simplify_ieee_selected_real_kind (gfc_expr *expr)
9419 : : {
9420 : 243 : gfc_actual_arglist *arg;
9421 : 243 : gfc_expr *p = NULL, *q = NULL, *rdx = NULL;
9422 : :
9423 : 243 : arg = expr->value.function.actual;
9424 : 243 : p = arg->expr;
9425 : 243 : if (arg->next)
9426 : : {
9427 : 241 : q = arg->next->expr;
9428 : 241 : if (arg->next->next)
9429 : 241 : rdx = arg->next->next->expr;
9430 : : }
9431 : :
9432 : : /* Currently, if IEEE is supported and this module is built, it means
9433 : : all our floating-point types conform to IEEE. Hence, we simply handle
9434 : : IEEE_SELECTED_REAL_KIND like SELECTED_REAL_KIND. */
9435 : 243 : return gfc_simplify_selected_real_kind (p, q, rdx);
9436 : : }
9437 : :
9438 : : gfc_expr *
9439 : 102 : simplify_ieee_support (gfc_expr *expr)
9440 : : {
9441 : : /* We consider that if the IEEE modules are loaded, we have full support
9442 : : for flags, halting and rounding, which are the three functions
9443 : : (IEEE_SUPPORT_{FLAG,HALTING,ROUNDING}) allowed in constant
9444 : : expressions. One day, we will need libgfortran to detect support and
9445 : : communicate it back to us, allowing for partial support. */
9446 : :
9447 : 102 : return gfc_get_logical_expr (gfc_default_logical_kind, &expr->where,
9448 : 102 : true);
9449 : : }
9450 : :
9451 : : bool
9452 : 993 : matches_ieee_function_name (gfc_symbol *sym, const char *name)
9453 : : {
9454 : 993 : int n = strlen(name);
9455 : :
9456 : 993 : if (!strncmp(sym->name, name, n))
9457 : : return true;
9458 : :
9459 : : /* If a generic was used and renamed, we need more work to find out.
9460 : : Compare the specific name. */
9461 : 654 : if (sym->generic && !strncmp(sym->generic->sym->name, name, n))
9462 : 6 : return true;
9463 : :
9464 : : return false;
9465 : : }
9466 : :
9467 : : gfc_expr *
9468 : 453 : gfc_simplify_ieee_functions (gfc_expr *expr)
9469 : : {
9470 : 453 : gfc_symbol* sym = expr->symtree->n.sym;
9471 : :
9472 : 453 : if (matches_ieee_function_name(sym, "ieee_selected_real_kind"))
9473 : 243 : return simplify_ieee_selected_real_kind (expr);
9474 : 210 : else if (matches_ieee_function_name(sym, "ieee_support_flag")
9475 : 174 : || matches_ieee_function_name(sym, "ieee_support_halting")
9476 : 366 : || matches_ieee_function_name(sym, "ieee_support_rounding"))
9477 : 102 : return simplify_ieee_support (expr);
9478 : : else
9479 : : return NULL;
9480 : : }
|