]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/fortran/trans-intrinsic.c
PR 78534 Revert r244011
[thirdparty/gcc.git] / gcc / fortran / trans-intrinsic.c
1 /* Intrinsic translation
2 Copyright (C) 2002-2017 Free Software Foundation, Inc.
3 Contributed by Paul Brook <paul@nowt.org>
4 and Steven Bosscher <s.bosscher@student.tudelft.nl>
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
12
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
21
22 /* trans-intrinsic.c-- generate GENERIC trees for calls to intrinsics. */
23
24 #include "config.h"
25 #include "system.h"
26 #include "coretypes.h"
27 #include "memmodel.h"
28 #include "tm.h" /* For UNITS_PER_WORD. */
29 #include "tree.h"
30 #include "gfortran.h"
31 #include "trans.h"
32 #include "stringpool.h"
33 #include "fold-const.h"
34 #include "tree-nested.h"
35 #include "stor-layout.h"
36 #include "toplev.h" /* For rest_of_decl_compilation. */
37 #include "arith.h"
38 #include "trans-const.h"
39 #include "trans-types.h"
40 #include "trans-array.h"
41 #include "dependency.h" /* For CAF array alias analysis. */
42 /* Only for gfc_trans_assign and gfc_trans_pointer_assign. */
43
44 /* This maps Fortran intrinsic math functions to external library or GCC
45 builtin functions. */
46 typedef struct GTY(()) gfc_intrinsic_map_t {
47 /* The explicit enum is required to work around inadequacies in the
48 garbage collection/gengtype parsing mechanism. */
49 enum gfc_isym_id id;
50
51 /* Enum value from the "language-independent", aka C-centric, part
52 of gcc, or END_BUILTINS of no such value set. */
53 enum built_in_function float_built_in;
54 enum built_in_function double_built_in;
55 enum built_in_function long_double_built_in;
56 enum built_in_function complex_float_built_in;
57 enum built_in_function complex_double_built_in;
58 enum built_in_function complex_long_double_built_in;
59
60 /* True if the naming pattern is to prepend "c" for complex and
61 append "f" for kind=4. False if the naming pattern is to
62 prepend "_gfortran_" and append "[rc](4|8|10|16)". */
63 bool libm_name;
64
65 /* True if a complex version of the function exists. */
66 bool complex_available;
67
68 /* True if the function should be marked const. */
69 bool is_constant;
70
71 /* The base library name of this function. */
72 const char *name;
73
74 /* Cache decls created for the various operand types. */
75 tree real4_decl;
76 tree real8_decl;
77 tree real10_decl;
78 tree real16_decl;
79 tree complex4_decl;
80 tree complex8_decl;
81 tree complex10_decl;
82 tree complex16_decl;
83 }
84 gfc_intrinsic_map_t;
85
86 /* ??? The NARGS==1 hack here is based on the fact that (c99 at least)
87 defines complex variants of all of the entries in mathbuiltins.def
88 except for atan2. */
89 #define DEFINE_MATH_BUILTIN(ID, NAME, ARGTYPE) \
90 { GFC_ISYM_ ## ID, BUILT_IN_ ## ID ## F, BUILT_IN_ ## ID, \
91 BUILT_IN_ ## ID ## L, END_BUILTINS, END_BUILTINS, END_BUILTINS, \
92 true, false, true, NAME, NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE, \
93 NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE},
94
95 #define DEFINE_MATH_BUILTIN_C(ID, NAME, ARGTYPE) \
96 { GFC_ISYM_ ## ID, BUILT_IN_ ## ID ## F, BUILT_IN_ ## ID, \
97 BUILT_IN_ ## ID ## L, BUILT_IN_C ## ID ## F, BUILT_IN_C ## ID, \
98 BUILT_IN_C ## ID ## L, true, true, true, NAME, NULL_TREE, NULL_TREE, \
99 NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE},
100
101 #define LIB_FUNCTION(ID, NAME, HAVE_COMPLEX) \
102 { GFC_ISYM_ ## ID, END_BUILTINS, END_BUILTINS, END_BUILTINS, \
103 END_BUILTINS, END_BUILTINS, END_BUILTINS, \
104 false, HAVE_COMPLEX, true, NAME, NULL_TREE, NULL_TREE, NULL_TREE, \
105 NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE }
106
107 #define OTHER_BUILTIN(ID, NAME, TYPE, CONST) \
108 { GFC_ISYM_NONE, BUILT_IN_ ## ID ## F, BUILT_IN_ ## ID, \
109 BUILT_IN_ ## ID ## L, END_BUILTINS, END_BUILTINS, END_BUILTINS, \
110 true, false, CONST, NAME, NULL_TREE, NULL_TREE, \
111 NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE},
112
113 static GTY(()) gfc_intrinsic_map_t gfc_intrinsic_map[] =
114 {
115 /* Functions built into gcc itself (DEFINE_MATH_BUILTIN and
116 DEFINE_MATH_BUILTIN_C), then the built-ins that don't correspond
117 to any GFC_ISYM id directly, which use the OTHER_BUILTIN macro. */
118 #include "mathbuiltins.def"
119
120 /* Functions in libgfortran. */
121 LIB_FUNCTION (ERFC_SCALED, "erfc_scaled", false),
122
123 /* End the list. */
124 LIB_FUNCTION (NONE, NULL, false)
125
126 };
127 #undef OTHER_BUILTIN
128 #undef LIB_FUNCTION
129 #undef DEFINE_MATH_BUILTIN
130 #undef DEFINE_MATH_BUILTIN_C
131
132
133 enum rounding_mode { RND_ROUND, RND_TRUNC, RND_CEIL, RND_FLOOR };
134
135
136 /* Find the correct variant of a given builtin from its argument. */
137 static tree
138 builtin_decl_for_precision (enum built_in_function base_built_in,
139 int precision)
140 {
141 enum built_in_function i = END_BUILTINS;
142
143 gfc_intrinsic_map_t *m;
144 for (m = gfc_intrinsic_map; m->double_built_in != base_built_in ; m++)
145 ;
146
147 if (precision == TYPE_PRECISION (float_type_node))
148 i = m->float_built_in;
149 else if (precision == TYPE_PRECISION (double_type_node))
150 i = m->double_built_in;
151 else if (precision == TYPE_PRECISION (long_double_type_node))
152 i = m->long_double_built_in;
153 else if (precision == TYPE_PRECISION (gfc_float128_type_node))
154 {
155 /* Special treatment, because it is not exactly a built-in, but
156 a library function. */
157 return m->real16_decl;
158 }
159
160 return (i == END_BUILTINS ? NULL_TREE : builtin_decl_explicit (i));
161 }
162
163
164 tree
165 gfc_builtin_decl_for_float_kind (enum built_in_function double_built_in,
166 int kind)
167 {
168 int i = gfc_validate_kind (BT_REAL, kind, false);
169
170 if (gfc_real_kinds[i].c_float128)
171 {
172 /* For __float128, the story is a bit different, because we return
173 a decl to a library function rather than a built-in. */
174 gfc_intrinsic_map_t *m;
175 for (m = gfc_intrinsic_map; m->double_built_in != double_built_in ; m++)
176 ;
177
178 return m->real16_decl;
179 }
180
181 return builtin_decl_for_precision (double_built_in,
182 gfc_real_kinds[i].mode_precision);
183 }
184
185
186 /* Evaluate the arguments to an intrinsic function. The value
187 of NARGS may be less than the actual number of arguments in EXPR
188 to allow optional "KIND" arguments that are not included in the
189 generated code to be ignored. */
190
191 static void
192 gfc_conv_intrinsic_function_args (gfc_se *se, gfc_expr *expr,
193 tree *argarray, int nargs)
194 {
195 gfc_actual_arglist *actual;
196 gfc_expr *e;
197 gfc_intrinsic_arg *formal;
198 gfc_se argse;
199 int curr_arg;
200
201 formal = expr->value.function.isym->formal;
202 actual = expr->value.function.actual;
203
204 for (curr_arg = 0; curr_arg < nargs; curr_arg++,
205 actual = actual->next,
206 formal = formal ? formal->next : NULL)
207 {
208 gcc_assert (actual);
209 e = actual->expr;
210 /* Skip omitted optional arguments. */
211 if (!e)
212 {
213 --curr_arg;
214 continue;
215 }
216
217 /* Evaluate the parameter. This will substitute scalarized
218 references automatically. */
219 gfc_init_se (&argse, se);
220
221 if (e->ts.type == BT_CHARACTER)
222 {
223 gfc_conv_expr (&argse, e);
224 gfc_conv_string_parameter (&argse);
225 argarray[curr_arg++] = argse.string_length;
226 gcc_assert (curr_arg < nargs);
227 }
228 else
229 gfc_conv_expr_val (&argse, e);
230
231 /* If an optional argument is itself an optional dummy argument,
232 check its presence and substitute a null if absent. */
233 if (e->expr_type == EXPR_VARIABLE
234 && e->symtree->n.sym->attr.optional
235 && formal
236 && formal->optional)
237 gfc_conv_missing_dummy (&argse, e, formal->ts, 0);
238
239 gfc_add_block_to_block (&se->pre, &argse.pre);
240 gfc_add_block_to_block (&se->post, &argse.post);
241 argarray[curr_arg] = argse.expr;
242 }
243 }
244
245 /* Count the number of actual arguments to the intrinsic function EXPR
246 including any "hidden" string length arguments. */
247
248 static unsigned int
249 gfc_intrinsic_argument_list_length (gfc_expr *expr)
250 {
251 int n = 0;
252 gfc_actual_arglist *actual;
253
254 for (actual = expr->value.function.actual; actual; actual = actual->next)
255 {
256 if (!actual->expr)
257 continue;
258
259 if (actual->expr->ts.type == BT_CHARACTER)
260 n += 2;
261 else
262 n++;
263 }
264
265 return n;
266 }
267
268
269 /* Conversions between different types are output by the frontend as
270 intrinsic functions. We implement these directly with inline code. */
271
272 static void
273 gfc_conv_intrinsic_conversion (gfc_se * se, gfc_expr * expr)
274 {
275 tree type;
276 tree *args;
277 int nargs;
278
279 nargs = gfc_intrinsic_argument_list_length (expr);
280 args = XALLOCAVEC (tree, nargs);
281
282 /* Evaluate all the arguments passed. Whilst we're only interested in the
283 first one here, there are other parts of the front-end that assume this
284 and will trigger an ICE if it's not the case. */
285 type = gfc_typenode_for_spec (&expr->ts);
286 gcc_assert (expr->value.function.actual->expr);
287 gfc_conv_intrinsic_function_args (se, expr, args, nargs);
288
289 /* Conversion between character kinds involves a call to a library
290 function. */
291 if (expr->ts.type == BT_CHARACTER)
292 {
293 tree fndecl, var, addr, tmp;
294
295 if (expr->ts.kind == 1
296 && expr->value.function.actual->expr->ts.kind == 4)
297 fndecl = gfor_fndecl_convert_char4_to_char1;
298 else if (expr->ts.kind == 4
299 && expr->value.function.actual->expr->ts.kind == 1)
300 fndecl = gfor_fndecl_convert_char1_to_char4;
301 else
302 gcc_unreachable ();
303
304 /* Create the variable storing the converted value. */
305 type = gfc_get_pchar_type (expr->ts.kind);
306 var = gfc_create_var (type, "str");
307 addr = gfc_build_addr_expr (build_pointer_type (type), var);
308
309 /* Call the library function that will perform the conversion. */
310 gcc_assert (nargs >= 2);
311 tmp = build_call_expr_loc (input_location,
312 fndecl, 3, addr, args[0], args[1]);
313 gfc_add_expr_to_block (&se->pre, tmp);
314
315 /* Free the temporary afterwards. */
316 tmp = gfc_call_free (var);
317 gfc_add_expr_to_block (&se->post, tmp);
318
319 se->expr = var;
320 se->string_length = args[0];
321
322 return;
323 }
324
325 /* Conversion from complex to non-complex involves taking the real
326 component of the value. */
327 if (TREE_CODE (TREE_TYPE (args[0])) == COMPLEX_TYPE
328 && expr->ts.type != BT_COMPLEX)
329 {
330 tree artype;
331
332 artype = TREE_TYPE (TREE_TYPE (args[0]));
333 args[0] = fold_build1_loc (input_location, REALPART_EXPR, artype,
334 args[0]);
335 }
336
337 se->expr = convert (type, args[0]);
338 }
339
340 /* This is needed because the gcc backend only implements
341 FIX_TRUNC_EXPR, which is the same as INT() in Fortran.
342 FLOOR(x) = INT(x) <= x ? INT(x) : INT(x) - 1
343 Similarly for CEILING. */
344
345 static tree
346 build_fixbound_expr (stmtblock_t * pblock, tree arg, tree type, int up)
347 {
348 tree tmp;
349 tree cond;
350 tree argtype;
351 tree intval;
352
353 argtype = TREE_TYPE (arg);
354 arg = gfc_evaluate_now (arg, pblock);
355
356 intval = convert (type, arg);
357 intval = gfc_evaluate_now (intval, pblock);
358
359 tmp = convert (argtype, intval);
360 cond = fold_build2_loc (input_location, up ? GE_EXPR : LE_EXPR,
361 boolean_type_node, tmp, arg);
362
363 tmp = fold_build2_loc (input_location, up ? PLUS_EXPR : MINUS_EXPR, type,
364 intval, build_int_cst (type, 1));
365 tmp = fold_build3_loc (input_location, COND_EXPR, type, cond, intval, tmp);
366 return tmp;
367 }
368
369
370 /* Round to nearest integer, away from zero. */
371
372 static tree
373 build_round_expr (tree arg, tree restype)
374 {
375 tree argtype;
376 tree fn;
377 int argprec, resprec;
378
379 argtype = TREE_TYPE (arg);
380 argprec = TYPE_PRECISION (argtype);
381 resprec = TYPE_PRECISION (restype);
382
383 /* Depending on the type of the result, choose the int intrinsic
384 (iround, available only as a builtin, therefore cannot use it for
385 __float128), long int intrinsic (lround family) or long long
386 intrinsic (llround). We might also need to convert the result
387 afterwards. */
388 if (resprec <= INT_TYPE_SIZE && argprec <= LONG_DOUBLE_TYPE_SIZE)
389 fn = builtin_decl_for_precision (BUILT_IN_IROUND, argprec);
390 else if (resprec <= LONG_TYPE_SIZE)
391 fn = builtin_decl_for_precision (BUILT_IN_LROUND, argprec);
392 else if (resprec <= LONG_LONG_TYPE_SIZE)
393 fn = builtin_decl_for_precision (BUILT_IN_LLROUND, argprec);
394 else
395 gcc_unreachable ();
396
397 return fold_convert (restype, build_call_expr_loc (input_location,
398 fn, 1, arg));
399 }
400
401
402 /* Convert a real to an integer using a specific rounding mode.
403 Ideally we would just build the corresponding GENERIC node,
404 however the RTL expander only actually supports FIX_TRUNC_EXPR. */
405
406 static tree
407 build_fix_expr (stmtblock_t * pblock, tree arg, tree type,
408 enum rounding_mode op)
409 {
410 switch (op)
411 {
412 case RND_FLOOR:
413 return build_fixbound_expr (pblock, arg, type, 0);
414
415 case RND_CEIL:
416 return build_fixbound_expr (pblock, arg, type, 1);
417
418 case RND_ROUND:
419 return build_round_expr (arg, type);
420
421 case RND_TRUNC:
422 return fold_build1_loc (input_location, FIX_TRUNC_EXPR, type, arg);
423
424 default:
425 gcc_unreachable ();
426 }
427 }
428
429
430 /* Round a real value using the specified rounding mode.
431 We use a temporary integer of that same kind size as the result.
432 Values larger than those that can be represented by this kind are
433 unchanged, as they will not be accurate enough to represent the
434 rounding.
435 huge = HUGE (KIND (a))
436 aint (a) = ((a > huge) || (a < -huge)) ? a : (real)(int)a
437 */
438
439 static void
440 gfc_conv_intrinsic_aint (gfc_se * se, gfc_expr * expr, enum rounding_mode op)
441 {
442 tree type;
443 tree itype;
444 tree arg[2];
445 tree tmp;
446 tree cond;
447 tree decl;
448 mpfr_t huge;
449 int n, nargs;
450 int kind;
451
452 kind = expr->ts.kind;
453 nargs = gfc_intrinsic_argument_list_length (expr);
454
455 decl = NULL_TREE;
456 /* We have builtin functions for some cases. */
457 switch (op)
458 {
459 case RND_ROUND:
460 decl = gfc_builtin_decl_for_float_kind (BUILT_IN_ROUND, kind);
461 break;
462
463 case RND_TRUNC:
464 decl = gfc_builtin_decl_for_float_kind (BUILT_IN_TRUNC, kind);
465 break;
466
467 default:
468 gcc_unreachable ();
469 }
470
471 /* Evaluate the argument. */
472 gcc_assert (expr->value.function.actual->expr);
473 gfc_conv_intrinsic_function_args (se, expr, arg, nargs);
474
475 /* Use a builtin function if one exists. */
476 if (decl != NULL_TREE)
477 {
478 se->expr = build_call_expr_loc (input_location, decl, 1, arg[0]);
479 return;
480 }
481
482 /* This code is probably redundant, but we'll keep it lying around just
483 in case. */
484 type = gfc_typenode_for_spec (&expr->ts);
485 arg[0] = gfc_evaluate_now (arg[0], &se->pre);
486
487 /* Test if the value is too large to handle sensibly. */
488 gfc_set_model_kind (kind);
489 mpfr_init (huge);
490 n = gfc_validate_kind (BT_INTEGER, kind, false);
491 mpfr_set_z (huge, gfc_integer_kinds[n].huge, GFC_RND_MODE);
492 tmp = gfc_conv_mpfr_to_tree (huge, kind, 0);
493 cond = fold_build2_loc (input_location, LT_EXPR, boolean_type_node, arg[0],
494 tmp);
495
496 mpfr_neg (huge, huge, GFC_RND_MODE);
497 tmp = gfc_conv_mpfr_to_tree (huge, kind, 0);
498 tmp = fold_build2_loc (input_location, GT_EXPR, boolean_type_node, arg[0],
499 tmp);
500 cond = fold_build2_loc (input_location, TRUTH_AND_EXPR, boolean_type_node,
501 cond, tmp);
502 itype = gfc_get_int_type (kind);
503
504 tmp = build_fix_expr (&se->pre, arg[0], itype, op);
505 tmp = convert (type, tmp);
506 se->expr = fold_build3_loc (input_location, COND_EXPR, type, cond, tmp,
507 arg[0]);
508 mpfr_clear (huge);
509 }
510
511
512 /* Convert to an integer using the specified rounding mode. */
513
514 static void
515 gfc_conv_intrinsic_int (gfc_se * se, gfc_expr * expr, enum rounding_mode op)
516 {
517 tree type;
518 tree *args;
519 int nargs;
520
521 nargs = gfc_intrinsic_argument_list_length (expr);
522 args = XALLOCAVEC (tree, nargs);
523
524 /* Evaluate the argument, we process all arguments even though we only
525 use the first one for code generation purposes. */
526 type = gfc_typenode_for_spec (&expr->ts);
527 gcc_assert (expr->value.function.actual->expr);
528 gfc_conv_intrinsic_function_args (se, expr, args, nargs);
529
530 if (TREE_CODE (TREE_TYPE (args[0])) == INTEGER_TYPE)
531 {
532 /* Conversion to a different integer kind. */
533 se->expr = convert (type, args[0]);
534 }
535 else
536 {
537 /* Conversion from complex to non-complex involves taking the real
538 component of the value. */
539 if (TREE_CODE (TREE_TYPE (args[0])) == COMPLEX_TYPE
540 && expr->ts.type != BT_COMPLEX)
541 {
542 tree artype;
543
544 artype = TREE_TYPE (TREE_TYPE (args[0]));
545 args[0] = fold_build1_loc (input_location, REALPART_EXPR, artype,
546 args[0]);
547 }
548
549 se->expr = build_fix_expr (&se->pre, args[0], type, op);
550 }
551 }
552
553
554 /* Get the imaginary component of a value. */
555
556 static void
557 gfc_conv_intrinsic_imagpart (gfc_se * se, gfc_expr * expr)
558 {
559 tree arg;
560
561 gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
562 se->expr = fold_build1_loc (input_location, IMAGPART_EXPR,
563 TREE_TYPE (TREE_TYPE (arg)), arg);
564 }
565
566
567 /* Get the complex conjugate of a value. */
568
569 static void
570 gfc_conv_intrinsic_conjg (gfc_se * se, gfc_expr * expr)
571 {
572 tree arg;
573
574 gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
575 se->expr = fold_build1_loc (input_location, CONJ_EXPR, TREE_TYPE (arg), arg);
576 }
577
578
579
580 static tree
581 define_quad_builtin (const char *name, tree type, bool is_const)
582 {
583 tree fndecl;
584 fndecl = build_decl (input_location, FUNCTION_DECL, get_identifier (name),
585 type);
586
587 /* Mark the decl as external. */
588 DECL_EXTERNAL (fndecl) = 1;
589 TREE_PUBLIC (fndecl) = 1;
590
591 /* Mark it __attribute__((const)). */
592 TREE_READONLY (fndecl) = is_const;
593
594 rest_of_decl_compilation (fndecl, 1, 0);
595
596 return fndecl;
597 }
598
599
600
601 /* Initialize function decls for library functions. The external functions
602 are created as required. Builtin functions are added here. */
603
604 void
605 gfc_build_intrinsic_lib_fndecls (void)
606 {
607 gfc_intrinsic_map_t *m;
608 tree quad_decls[END_BUILTINS + 1];
609
610 if (gfc_real16_is_float128)
611 {
612 /* If we have soft-float types, we create the decls for their
613 C99-like library functions. For now, we only handle __float128
614 q-suffixed functions. */
615
616 tree type, complex_type, func_1, func_2, func_cabs, func_frexp;
617 tree func_iround, func_lround, func_llround, func_scalbn, func_cpow;
618
619 memset (quad_decls, 0, sizeof(tree) * (END_BUILTINS + 1));
620
621 type = gfc_float128_type_node;
622 complex_type = gfc_complex_float128_type_node;
623 /* type (*) (type) */
624 func_1 = build_function_type_list (type, type, NULL_TREE);
625 /* int (*) (type) */
626 func_iround = build_function_type_list (integer_type_node,
627 type, NULL_TREE);
628 /* long (*) (type) */
629 func_lround = build_function_type_list (long_integer_type_node,
630 type, NULL_TREE);
631 /* long long (*) (type) */
632 func_llround = build_function_type_list (long_long_integer_type_node,
633 type, NULL_TREE);
634 /* type (*) (type, type) */
635 func_2 = build_function_type_list (type, type, type, NULL_TREE);
636 /* type (*) (type, &int) */
637 func_frexp
638 = build_function_type_list (type,
639 type,
640 build_pointer_type (integer_type_node),
641 NULL_TREE);
642 /* type (*) (type, int) */
643 func_scalbn = build_function_type_list (type,
644 type, integer_type_node, NULL_TREE);
645 /* type (*) (complex type) */
646 func_cabs = build_function_type_list (type, complex_type, NULL_TREE);
647 /* complex type (*) (complex type, complex type) */
648 func_cpow
649 = build_function_type_list (complex_type,
650 complex_type, complex_type, NULL_TREE);
651
652 #define DEFINE_MATH_BUILTIN(ID, NAME, ARGTYPE)
653 #define DEFINE_MATH_BUILTIN_C(ID, NAME, ARGTYPE)
654 #define LIB_FUNCTION(ID, NAME, HAVE_COMPLEX)
655
656 /* Only these built-ins are actually needed here. These are used directly
657 from the code, when calling builtin_decl_for_precision() or
658 builtin_decl_for_float_type(). The others are all constructed by
659 gfc_get_intrinsic_lib_fndecl(). */
660 #define OTHER_BUILTIN(ID, NAME, TYPE, CONST) \
661 quad_decls[BUILT_IN_ ## ID] = define_quad_builtin (NAME "q", func_ ## TYPE, CONST);
662
663 #include "mathbuiltins.def"
664
665 #undef OTHER_BUILTIN
666 #undef LIB_FUNCTION
667 #undef DEFINE_MATH_BUILTIN
668 #undef DEFINE_MATH_BUILTIN_C
669
670 /* There is one built-in we defined manually, because it gets called
671 with builtin_decl_for_precision() or builtin_decl_for_float_type()
672 even though it is not an OTHER_BUILTIN: it is SQRT. */
673 quad_decls[BUILT_IN_SQRT] = define_quad_builtin ("sqrtq", func_1, true);
674
675 }
676
677 /* Add GCC builtin functions. */
678 for (m = gfc_intrinsic_map;
679 m->id != GFC_ISYM_NONE || m->double_built_in != END_BUILTINS; m++)
680 {
681 if (m->float_built_in != END_BUILTINS)
682 m->real4_decl = builtin_decl_explicit (m->float_built_in);
683 if (m->complex_float_built_in != END_BUILTINS)
684 m->complex4_decl = builtin_decl_explicit (m->complex_float_built_in);
685 if (m->double_built_in != END_BUILTINS)
686 m->real8_decl = builtin_decl_explicit (m->double_built_in);
687 if (m->complex_double_built_in != END_BUILTINS)
688 m->complex8_decl = builtin_decl_explicit (m->complex_double_built_in);
689
690 /* If real(kind=10) exists, it is always long double. */
691 if (m->long_double_built_in != END_BUILTINS)
692 m->real10_decl = builtin_decl_explicit (m->long_double_built_in);
693 if (m->complex_long_double_built_in != END_BUILTINS)
694 m->complex10_decl
695 = builtin_decl_explicit (m->complex_long_double_built_in);
696
697 if (!gfc_real16_is_float128)
698 {
699 if (m->long_double_built_in != END_BUILTINS)
700 m->real16_decl = builtin_decl_explicit (m->long_double_built_in);
701 if (m->complex_long_double_built_in != END_BUILTINS)
702 m->complex16_decl
703 = builtin_decl_explicit (m->complex_long_double_built_in);
704 }
705 else if (quad_decls[m->double_built_in] != NULL_TREE)
706 {
707 /* Quad-precision function calls are constructed when first
708 needed by builtin_decl_for_precision(), except for those
709 that will be used directly (define by OTHER_BUILTIN). */
710 m->real16_decl = quad_decls[m->double_built_in];
711 }
712 else if (quad_decls[m->complex_double_built_in] != NULL_TREE)
713 {
714 /* Same thing for the complex ones. */
715 m->complex16_decl = quad_decls[m->double_built_in];
716 }
717 }
718 }
719
720
721 /* Create a fndecl for a simple intrinsic library function. */
722
723 static tree
724 gfc_get_intrinsic_lib_fndecl (gfc_intrinsic_map_t * m, gfc_expr * expr)
725 {
726 tree type;
727 vec<tree, va_gc> *argtypes;
728 tree fndecl;
729 gfc_actual_arglist *actual;
730 tree *pdecl;
731 gfc_typespec *ts;
732 char name[GFC_MAX_SYMBOL_LEN + 3];
733
734 ts = &expr->ts;
735 if (ts->type == BT_REAL)
736 {
737 switch (ts->kind)
738 {
739 case 4:
740 pdecl = &m->real4_decl;
741 break;
742 case 8:
743 pdecl = &m->real8_decl;
744 break;
745 case 10:
746 pdecl = &m->real10_decl;
747 break;
748 case 16:
749 pdecl = &m->real16_decl;
750 break;
751 default:
752 gcc_unreachable ();
753 }
754 }
755 else if (ts->type == BT_COMPLEX)
756 {
757 gcc_assert (m->complex_available);
758
759 switch (ts->kind)
760 {
761 case 4:
762 pdecl = &m->complex4_decl;
763 break;
764 case 8:
765 pdecl = &m->complex8_decl;
766 break;
767 case 10:
768 pdecl = &m->complex10_decl;
769 break;
770 case 16:
771 pdecl = &m->complex16_decl;
772 break;
773 default:
774 gcc_unreachable ();
775 }
776 }
777 else
778 gcc_unreachable ();
779
780 if (*pdecl)
781 return *pdecl;
782
783 if (m->libm_name)
784 {
785 int n = gfc_validate_kind (BT_REAL, ts->kind, false);
786 if (gfc_real_kinds[n].c_float)
787 snprintf (name, sizeof (name), "%s%s%s",
788 ts->type == BT_COMPLEX ? "c" : "", m->name, "f");
789 else if (gfc_real_kinds[n].c_double)
790 snprintf (name, sizeof (name), "%s%s",
791 ts->type == BT_COMPLEX ? "c" : "", m->name);
792 else if (gfc_real_kinds[n].c_long_double)
793 snprintf (name, sizeof (name), "%s%s%s",
794 ts->type == BT_COMPLEX ? "c" : "", m->name, "l");
795 else if (gfc_real_kinds[n].c_float128)
796 snprintf (name, sizeof (name), "%s%s%s",
797 ts->type == BT_COMPLEX ? "c" : "", m->name, "q");
798 else
799 gcc_unreachable ();
800 }
801 else
802 {
803 snprintf (name, sizeof (name), PREFIX ("%s_%c%d"), m->name,
804 ts->type == BT_COMPLEX ? 'c' : 'r',
805 ts->kind);
806 }
807
808 argtypes = NULL;
809 for (actual = expr->value.function.actual; actual; actual = actual->next)
810 {
811 type = gfc_typenode_for_spec (&actual->expr->ts);
812 vec_safe_push (argtypes, type);
813 }
814 type = build_function_type_vec (gfc_typenode_for_spec (ts), argtypes);
815 fndecl = build_decl (input_location,
816 FUNCTION_DECL, get_identifier (name), type);
817
818 /* Mark the decl as external. */
819 DECL_EXTERNAL (fndecl) = 1;
820 TREE_PUBLIC (fndecl) = 1;
821
822 /* Mark it __attribute__((const)), if possible. */
823 TREE_READONLY (fndecl) = m->is_constant;
824
825 rest_of_decl_compilation (fndecl, 1, 0);
826
827 (*pdecl) = fndecl;
828 return fndecl;
829 }
830
831
832 /* Convert an intrinsic function into an external or builtin call. */
833
834 static void
835 gfc_conv_intrinsic_lib_function (gfc_se * se, gfc_expr * expr)
836 {
837 gfc_intrinsic_map_t *m;
838 tree fndecl;
839 tree rettype;
840 tree *args;
841 unsigned int num_args;
842 gfc_isym_id id;
843
844 id = expr->value.function.isym->id;
845 /* Find the entry for this function. */
846 for (m = gfc_intrinsic_map;
847 m->id != GFC_ISYM_NONE || m->double_built_in != END_BUILTINS; m++)
848 {
849 if (id == m->id)
850 break;
851 }
852
853 if (m->id == GFC_ISYM_NONE)
854 {
855 gfc_internal_error ("Intrinsic function %qs (%d) not recognized",
856 expr->value.function.name, id);
857 }
858
859 /* Get the decl and generate the call. */
860 num_args = gfc_intrinsic_argument_list_length (expr);
861 args = XALLOCAVEC (tree, num_args);
862
863 gfc_conv_intrinsic_function_args (se, expr, args, num_args);
864 fndecl = gfc_get_intrinsic_lib_fndecl (m, expr);
865 rettype = TREE_TYPE (TREE_TYPE (fndecl));
866
867 fndecl = build_addr (fndecl);
868 se->expr = build_call_array_loc (input_location, rettype, fndecl, num_args, args);
869 }
870
871
872 /* If bounds-checking is enabled, create code to verify at runtime that the
873 string lengths for both expressions are the same (needed for e.g. MERGE).
874 If bounds-checking is not enabled, does nothing. */
875
876 void
877 gfc_trans_same_strlen_check (const char* intr_name, locus* where,
878 tree a, tree b, stmtblock_t* target)
879 {
880 tree cond;
881 tree name;
882
883 /* If bounds-checking is disabled, do nothing. */
884 if (!(gfc_option.rtcheck & GFC_RTCHECK_BOUNDS))
885 return;
886
887 /* Compare the two string lengths. */
888 cond = fold_build2_loc (input_location, NE_EXPR, boolean_type_node, a, b);
889
890 /* Output the runtime-check. */
891 name = gfc_build_cstring_const (intr_name);
892 name = gfc_build_addr_expr (pchar_type_node, name);
893 gfc_trans_runtime_check (true, false, cond, target, where,
894 "Unequal character lengths (%ld/%ld) in %s",
895 fold_convert (long_integer_type_node, a),
896 fold_convert (long_integer_type_node, b), name);
897 }
898
899
900 /* The EXPONENT(X) intrinsic function is translated into
901 int ret;
902 return isfinite(X) ? (frexp (X, &ret) , ret) : huge
903 so that if X is a NaN or infinity, the result is HUGE(0).
904 */
905
906 static void
907 gfc_conv_intrinsic_exponent (gfc_se *se, gfc_expr *expr)
908 {
909 tree arg, type, res, tmp, frexp, cond, huge;
910 int i;
911
912 frexp = gfc_builtin_decl_for_float_kind (BUILT_IN_FREXP,
913 expr->value.function.actual->expr->ts.kind);
914
915 gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
916 arg = gfc_evaluate_now (arg, &se->pre);
917
918 i = gfc_validate_kind (BT_INTEGER, gfc_c_int_kind, false);
919 huge = gfc_conv_mpz_to_tree (gfc_integer_kinds[i].huge, gfc_c_int_kind);
920 cond = build_call_expr_loc (input_location,
921 builtin_decl_explicit (BUILT_IN_ISFINITE),
922 1, arg);
923
924 res = gfc_create_var (integer_type_node, NULL);
925 tmp = build_call_expr_loc (input_location, frexp, 2, arg,
926 gfc_build_addr_expr (NULL_TREE, res));
927 tmp = fold_build2_loc (input_location, COMPOUND_EXPR, integer_type_node,
928 tmp, res);
929 se->expr = fold_build3_loc (input_location, COND_EXPR, integer_type_node,
930 cond, tmp, huge);
931
932 type = gfc_typenode_for_spec (&expr->ts);
933 se->expr = fold_convert (type, se->expr);
934 }
935
936
937 /* Fill in the following structure
938 struct caf_vector_t {
939 size_t nvec; // size of the vector
940 union {
941 struct {
942 void *vector;
943 int kind;
944 } v;
945 struct {
946 ptrdiff_t lower_bound;
947 ptrdiff_t upper_bound;
948 ptrdiff_t stride;
949 } triplet;
950 } u;
951 } */
952
953 static void
954 conv_caf_vector_subscript_elem (stmtblock_t *block, int i, tree desc,
955 tree lower, tree upper, tree stride,
956 tree vector, int kind, tree nvec)
957 {
958 tree field, type, tmp;
959
960 desc = gfc_build_array_ref (desc, gfc_rank_cst[i], NULL_TREE);
961 type = TREE_TYPE (desc);
962
963 field = gfc_advance_chain (TYPE_FIELDS (type), 0);
964 tmp = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
965 desc, field, NULL_TREE);
966 gfc_add_modify (block, tmp, fold_convert (TREE_TYPE (field), nvec));
967
968 /* Access union. */
969 field = gfc_advance_chain (TYPE_FIELDS (type), 1);
970 desc = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
971 desc, field, NULL_TREE);
972 type = TREE_TYPE (desc);
973
974 /* Access the inner struct. */
975 field = gfc_advance_chain (TYPE_FIELDS (type), vector != NULL_TREE ? 0 : 1);
976 desc = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
977 desc, field, NULL_TREE);
978 type = TREE_TYPE (desc);
979
980 if (vector != NULL_TREE)
981 {
982 /* Set vector and kind. */
983 field = gfc_advance_chain (TYPE_FIELDS (type), 0);
984 tmp = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
985 desc, field, NULL_TREE);
986 gfc_add_modify (block, tmp, fold_convert (TREE_TYPE (field), vector));
987 field = gfc_advance_chain (TYPE_FIELDS (type), 1);
988 tmp = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
989 desc, field, NULL_TREE);
990 gfc_add_modify (block, tmp, build_int_cst (integer_type_node, kind));
991 }
992 else
993 {
994 /* Set dim.lower/upper/stride. */
995 field = gfc_advance_chain (TYPE_FIELDS (type), 0);
996 tmp = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
997 desc, field, NULL_TREE);
998 gfc_add_modify (block, tmp, fold_convert (TREE_TYPE (field), lower));
999
1000 field = gfc_advance_chain (TYPE_FIELDS (type), 1);
1001 tmp = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
1002 desc, field, NULL_TREE);
1003 gfc_add_modify (block, tmp, fold_convert (TREE_TYPE (field), upper));
1004
1005 field = gfc_advance_chain (TYPE_FIELDS (type), 2);
1006 tmp = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
1007 desc, field, NULL_TREE);
1008 gfc_add_modify (block, tmp, fold_convert (TREE_TYPE (field), stride));
1009 }
1010 }
1011
1012
1013 static tree
1014 conv_caf_vector_subscript (stmtblock_t *block, tree desc, gfc_array_ref *ar)
1015 {
1016 gfc_se argse;
1017 tree var, lower, upper = NULL_TREE, stride = NULL_TREE, vector, nvec;
1018 tree lbound, ubound, tmp;
1019 int i;
1020
1021 var = gfc_create_var (gfc_get_caf_vector_type (ar->dimen), "vector");
1022
1023 for (i = 0; i < ar->dimen; i++)
1024 switch (ar->dimen_type[i])
1025 {
1026 case DIMEN_RANGE:
1027 if (ar->end[i])
1028 {
1029 gfc_init_se (&argse, NULL);
1030 gfc_conv_expr (&argse, ar->end[i]);
1031 gfc_add_block_to_block (block, &argse.pre);
1032 upper = gfc_evaluate_now (argse.expr, block);
1033 }
1034 else
1035 upper = gfc_conv_descriptor_ubound_get (desc, gfc_rank_cst[i]);
1036 if (ar->stride[i])
1037 {
1038 gfc_init_se (&argse, NULL);
1039 gfc_conv_expr (&argse, ar->stride[i]);
1040 gfc_add_block_to_block (block, &argse.pre);
1041 stride = gfc_evaluate_now (argse.expr, block);
1042 }
1043 else
1044 stride = gfc_index_one_node;
1045
1046 /* Fall through. */
1047 case DIMEN_ELEMENT:
1048 if (ar->start[i])
1049 {
1050 gfc_init_se (&argse, NULL);
1051 gfc_conv_expr (&argse, ar->start[i]);
1052 gfc_add_block_to_block (block, &argse.pre);
1053 lower = gfc_evaluate_now (argse.expr, block);
1054 }
1055 else
1056 lower = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[i]);
1057 if (ar->dimen_type[i] == DIMEN_ELEMENT)
1058 {
1059 upper = lower;
1060 stride = gfc_index_one_node;
1061 }
1062 vector = NULL_TREE;
1063 nvec = size_zero_node;
1064 conv_caf_vector_subscript_elem (block, i, var, lower, upper, stride,
1065 vector, 0, nvec);
1066 break;
1067
1068 case DIMEN_VECTOR:
1069 gfc_init_se (&argse, NULL);
1070 argse.descriptor_only = 1;
1071 gfc_conv_expr_descriptor (&argse, ar->start[i]);
1072 gfc_add_block_to_block (block, &argse.pre);
1073 vector = argse.expr;
1074 lbound = gfc_conv_descriptor_lbound_get (vector, gfc_rank_cst[0]);
1075 ubound = gfc_conv_descriptor_ubound_get (vector, gfc_rank_cst[0]);
1076 nvec = gfc_conv_array_extent_dim (lbound, ubound, NULL);
1077 tmp = gfc_conv_descriptor_stride_get (vector, gfc_rank_cst[0]);
1078 nvec = fold_build2_loc (input_location, TRUNC_DIV_EXPR,
1079 TREE_TYPE (nvec), nvec, tmp);
1080 lower = gfc_index_zero_node;
1081 upper = gfc_index_zero_node;
1082 stride = gfc_index_zero_node;
1083 vector = gfc_conv_descriptor_data_get (vector);
1084 conv_caf_vector_subscript_elem (block, i, var, lower, upper, stride,
1085 vector, ar->start[i]->ts.kind, nvec);
1086 break;
1087 default:
1088 gcc_unreachable();
1089 }
1090 return gfc_build_addr_expr (NULL_TREE, var);
1091 }
1092
1093
1094 static tree
1095 compute_component_offset (tree field, tree type)
1096 {
1097 tree tmp;
1098 if (DECL_FIELD_BIT_OFFSET (field) != NULL_TREE
1099 && !integer_zerop (DECL_FIELD_BIT_OFFSET (field)))
1100 {
1101 tmp = fold_build2 (TRUNC_DIV_EXPR, type,
1102 DECL_FIELD_BIT_OFFSET (field),
1103 bitsize_unit_node);
1104 return fold_build2 (PLUS_EXPR, type, DECL_FIELD_OFFSET (field), tmp);
1105 }
1106 else
1107 return DECL_FIELD_OFFSET (field);
1108 }
1109
1110
1111 static tree
1112 conv_expr_ref_to_caf_ref (stmtblock_t *block, gfc_expr *expr)
1113 {
1114 gfc_ref *ref = expr->ref, *last_comp_ref;
1115 tree caf_ref = NULL_TREE, prev_caf_ref = NULL_TREE, reference_type, tmp, tmp2,
1116 field, last_type, inner_struct, mode, mode_rhs, dim_array, dim, dim_type,
1117 start, end, stride, vector, nvec;
1118 gfc_se se;
1119 bool ref_static_array = false;
1120 tree last_component_ref_tree = NULL_TREE;
1121 int i, last_type_n;
1122
1123 if (expr->symtree)
1124 {
1125 last_component_ref_tree = expr->symtree->n.sym->backend_decl;
1126 ref_static_array = !expr->symtree->n.sym->attr.allocatable;
1127 }
1128
1129 /* Prevent uninit-warning. */
1130 reference_type = NULL_TREE;
1131
1132 /* Skip refs upto the first coarray-ref. */
1133 last_comp_ref = NULL;
1134 while (ref && (ref->type != REF_ARRAY || ref->u.ar.codimen == 0))
1135 {
1136 /* Remember the type of components skipped. */
1137 if (ref->type == REF_COMPONENT)
1138 last_comp_ref = ref;
1139 ref = ref->next;
1140 }
1141 /* When a component was skipped, get the type information of the last
1142 component ref, else get the type from the symbol. */
1143 if (last_comp_ref)
1144 {
1145 last_type = gfc_typenode_for_spec (&last_comp_ref->u.c.component->ts);
1146 last_type_n = last_comp_ref->u.c.component->ts.type;
1147 }
1148 else
1149 {
1150 last_type = gfc_typenode_for_spec (&expr->symtree->n.sym->ts);
1151 last_type_n = expr->symtree->n.sym->ts.type;
1152 }
1153
1154 while (ref)
1155 {
1156 if (ref->type == REF_ARRAY && ref->u.ar.codimen > 0
1157 && ref->u.ar.dimen == 0)
1158 {
1159 /* Skip pure coindexes. */
1160 ref = ref->next;
1161 continue;
1162 }
1163 tmp = gfc_create_var (gfc_get_caf_reference_type (), "caf_ref");
1164 reference_type = TREE_TYPE (tmp);
1165
1166 if (caf_ref == NULL_TREE)
1167 caf_ref = tmp;
1168
1169 /* Construct the chain of refs. */
1170 if (prev_caf_ref != NULL_TREE)
1171 {
1172 field = gfc_advance_chain (TYPE_FIELDS (reference_type), 0);
1173 tmp2 = fold_build3_loc (input_location, COMPONENT_REF,
1174 TREE_TYPE (field), prev_caf_ref, field,
1175 NULL_TREE);
1176 gfc_add_modify (block, tmp2, gfc_build_addr_expr (TREE_TYPE (field),
1177 tmp));
1178 }
1179 prev_caf_ref = tmp;
1180
1181 switch (ref->type)
1182 {
1183 case REF_COMPONENT:
1184 last_type = gfc_typenode_for_spec (&ref->u.c.component->ts);
1185 last_type_n = ref->u.c.component->ts.type;
1186 /* Set the type of the ref. */
1187 field = gfc_advance_chain (TYPE_FIELDS (reference_type), 1);
1188 tmp = fold_build3_loc (input_location, COMPONENT_REF,
1189 TREE_TYPE (field), prev_caf_ref, field,
1190 NULL_TREE);
1191 gfc_add_modify (block, tmp, build_int_cst (integer_type_node,
1192 GFC_CAF_REF_COMPONENT));
1193
1194 /* Ref the c in union u. */
1195 field = gfc_advance_chain (TYPE_FIELDS (reference_type), 3);
1196 tmp = fold_build3_loc (input_location, COMPONENT_REF,
1197 TREE_TYPE (field), prev_caf_ref, field,
1198 NULL_TREE);
1199 field = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (field)), 0);
1200 inner_struct = fold_build3_loc (input_location, COMPONENT_REF,
1201 TREE_TYPE (field), tmp, field,
1202 NULL_TREE);
1203
1204 /* Set the offset. */
1205 field = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (inner_struct)), 0);
1206 tmp = fold_build3_loc (input_location, COMPONENT_REF,
1207 TREE_TYPE (field), inner_struct, field,
1208 NULL_TREE);
1209 /* Computing the offset is somewhat harder. The bit_offset has to be
1210 taken into account. When the bit_offset in the field_decl is non-
1211 null, divide it by the bitsize_unit and add it to the regular
1212 offset. */
1213 tmp2 = compute_component_offset (ref->u.c.component->backend_decl,
1214 TREE_TYPE (tmp));
1215 gfc_add_modify (block, tmp, fold_convert (TREE_TYPE (tmp), tmp2));
1216
1217 /* Set caf_token_offset. */
1218 field = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (inner_struct)), 1);
1219 tmp = fold_build3_loc (input_location, COMPONENT_REF,
1220 TREE_TYPE (field), inner_struct, field,
1221 NULL_TREE);
1222 if (ref->u.c.component->attr.allocatable
1223 && ref->u.c.component->attr.dimension)
1224 {
1225 tree arr_desc_token_offset;
1226 /* Get the token from the descriptor. */
1227 arr_desc_token_offset = gfc_advance_chain (
1228 TYPE_FIELDS (TREE_TYPE (ref->u.c.component->backend_decl)),
1229 4 /* CAF_TOKEN_FIELD */);
1230 arr_desc_token_offset
1231 = compute_component_offset (arr_desc_token_offset,
1232 TREE_TYPE (tmp));
1233 tmp2 = fold_build2_loc (input_location, PLUS_EXPR,
1234 TREE_TYPE (tmp2), tmp2,
1235 arr_desc_token_offset);
1236 }
1237 else if (ref->u.c.component->caf_token)
1238 tmp2 = compute_component_offset (ref->u.c.component->caf_token,
1239 TREE_TYPE (tmp));
1240 else
1241 tmp2 = integer_zero_node;
1242 gfc_add_modify (block, tmp, fold_convert (TREE_TYPE (tmp), tmp2));
1243
1244 /* Remember whether this ref was to a non-allocatable/non-pointer
1245 component so the next array ref can be tailored correctly. */
1246 ref_static_array = !ref->u.c.component->attr.allocatable;
1247 last_component_ref_tree = ref_static_array
1248 ? ref->u.c.component->backend_decl : NULL_TREE;
1249 break;
1250 case REF_ARRAY:
1251 if (ref_static_array && ref->u.ar.as->type == AS_DEFERRED)
1252 ref_static_array = false;
1253 /* Set the type of the ref. */
1254 field = gfc_advance_chain (TYPE_FIELDS (reference_type), 1);
1255 tmp = fold_build3_loc (input_location, COMPONENT_REF,
1256 TREE_TYPE (field), prev_caf_ref, field,
1257 NULL_TREE);
1258 gfc_add_modify (block, tmp, build_int_cst (integer_type_node,
1259 ref_static_array
1260 ? GFC_CAF_REF_STATIC_ARRAY
1261 : GFC_CAF_REF_ARRAY));
1262
1263 /* Ref the a in union u. */
1264 field = gfc_advance_chain (TYPE_FIELDS (reference_type), 3);
1265 tmp = fold_build3_loc (input_location, COMPONENT_REF,
1266 TREE_TYPE (field), prev_caf_ref, field,
1267 NULL_TREE);
1268 field = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (field)), 1);
1269 inner_struct = fold_build3_loc (input_location, COMPONENT_REF,
1270 TREE_TYPE (field), tmp, field,
1271 NULL_TREE);
1272
1273 /* Set the static_array_type in a for static arrays. */
1274 if (ref_static_array)
1275 {
1276 field = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (inner_struct)),
1277 1);
1278 tmp = fold_build3_loc (input_location, COMPONENT_REF,
1279 TREE_TYPE (field), inner_struct, field,
1280 NULL_TREE);
1281 gfc_add_modify (block, tmp, build_int_cst (TREE_TYPE (tmp),
1282 last_type_n));
1283 }
1284 /* Ref the mode in the inner_struct. */
1285 field = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (inner_struct)), 0);
1286 mode = fold_build3_loc (input_location, COMPONENT_REF,
1287 TREE_TYPE (field), inner_struct, field,
1288 NULL_TREE);
1289 /* Ref the dim in the inner_struct. */
1290 field = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (inner_struct)), 2);
1291 dim_array = fold_build3_loc (input_location, COMPONENT_REF,
1292 TREE_TYPE (field), inner_struct, field,
1293 NULL_TREE);
1294 for (i = 0; i < ref->u.ar.dimen; ++i)
1295 {
1296 /* Ref dim i. */
1297 dim = gfc_build_array_ref (dim_array, gfc_rank_cst[i], NULL_TREE);
1298 dim_type = TREE_TYPE (dim);
1299 mode_rhs = start = end = stride = NULL_TREE;
1300 switch (ref->u.ar.dimen_type[i])
1301 {
1302 case DIMEN_RANGE:
1303 if (ref->u.ar.end[i])
1304 {
1305 gfc_init_se (&se, NULL);
1306 gfc_conv_expr (&se, ref->u.ar.end[i]);
1307 gfc_add_block_to_block (block, &se.pre);
1308 if (ref_static_array)
1309 {
1310 /* Make the index zero-based, when reffing a static
1311 array. */
1312 end = se.expr;
1313 gfc_init_se (&se, NULL);
1314 gfc_conv_expr (&se, ref->u.ar.as->lower[i]);
1315 gfc_add_block_to_block (block, &se.pre);
1316 se.expr = fold_build2 (MINUS_EXPR,
1317 gfc_array_index_type,
1318 end, fold_convert (
1319 gfc_array_index_type,
1320 se.expr));
1321 }
1322 end = gfc_evaluate_now (fold_convert (
1323 gfc_array_index_type,
1324 se.expr),
1325 block);
1326 }
1327 else if (ref_static_array)
1328 end = fold_build2 (MINUS_EXPR,
1329 gfc_array_index_type,
1330 gfc_conv_array_ubound (
1331 last_component_ref_tree, i),
1332 gfc_conv_array_lbound (
1333 last_component_ref_tree, i));
1334 else
1335 {
1336 end = NULL_TREE;
1337 mode_rhs = build_int_cst (unsigned_char_type_node,
1338 GFC_CAF_ARR_REF_OPEN_END);
1339 }
1340 if (ref->u.ar.stride[i])
1341 {
1342 gfc_init_se (&se, NULL);
1343 gfc_conv_expr (&se, ref->u.ar.stride[i]);
1344 gfc_add_block_to_block (block, &se.pre);
1345 stride = gfc_evaluate_now (fold_convert (
1346 gfc_array_index_type,
1347 se.expr),
1348 block);
1349 if (ref_static_array)
1350 {
1351 /* Make the index zero-based, when reffing a static
1352 array. */
1353 stride = fold_build2 (MULT_EXPR,
1354 gfc_array_index_type,
1355 gfc_conv_array_stride (
1356 last_component_ref_tree,
1357 i),
1358 stride);
1359 gcc_assert (end != NULL_TREE);
1360 /* Multiply with the product of array's stride and
1361 the step of the ref to a virtual upper bound.
1362 We can not compute the actual upper bound here or
1363 the caflib would compute the extend
1364 incorrectly. */
1365 end = fold_build2 (MULT_EXPR, gfc_array_index_type,
1366 end, gfc_conv_array_stride (
1367 last_component_ref_tree,
1368 i));
1369 end = gfc_evaluate_now (end, block);
1370 stride = gfc_evaluate_now (stride, block);
1371 }
1372 }
1373 else if (ref_static_array)
1374 {
1375 stride = gfc_conv_array_stride (last_component_ref_tree,
1376 i);
1377 end = fold_build2 (MULT_EXPR, gfc_array_index_type,
1378 end, stride);
1379 end = gfc_evaluate_now (end, block);
1380 }
1381 else
1382 /* Always set a ref stride of one to make caflib's
1383 handling easier. */
1384 stride = gfc_index_one_node;
1385
1386 /* Fall through. */
1387 case DIMEN_ELEMENT:
1388 if (ref->u.ar.start[i])
1389 {
1390 gfc_init_se (&se, NULL);
1391 gfc_conv_expr (&se, ref->u.ar.start[i]);
1392 gfc_add_block_to_block (block, &se.pre);
1393 if (ref_static_array)
1394 {
1395 /* Make the index zero-based, when reffing a static
1396 array. */
1397 start = fold_convert (gfc_array_index_type, se.expr);
1398 gfc_init_se (&se, NULL);
1399 gfc_conv_expr (&se, ref->u.ar.as->lower[i]);
1400 gfc_add_block_to_block (block, &se.pre);
1401 se.expr = fold_build2 (MINUS_EXPR,
1402 gfc_array_index_type,
1403 start, fold_convert (
1404 gfc_array_index_type,
1405 se.expr));
1406 /* Multiply with the stride. */
1407 se.expr = fold_build2 (MULT_EXPR,
1408 gfc_array_index_type,
1409 se.expr,
1410 gfc_conv_array_stride (
1411 last_component_ref_tree,
1412 i));
1413 }
1414 start = gfc_evaluate_now (fold_convert (
1415 gfc_array_index_type,
1416 se.expr),
1417 block);
1418 if (mode_rhs == NULL_TREE)
1419 mode_rhs = build_int_cst (unsigned_char_type_node,
1420 ref->u.ar.dimen_type[i]
1421 == DIMEN_ELEMENT
1422 ? GFC_CAF_ARR_REF_SINGLE
1423 : GFC_CAF_ARR_REF_RANGE);
1424 }
1425 else if (ref_static_array)
1426 {
1427 start = integer_zero_node;
1428 mode_rhs = build_int_cst (unsigned_char_type_node,
1429 ref->u.ar.start[i] == NULL
1430 ? GFC_CAF_ARR_REF_FULL
1431 : GFC_CAF_ARR_REF_RANGE);
1432 }
1433 else if (end == NULL_TREE)
1434 mode_rhs = build_int_cst (unsigned_char_type_node,
1435 GFC_CAF_ARR_REF_FULL);
1436 else
1437 mode_rhs = build_int_cst (unsigned_char_type_node,
1438 GFC_CAF_ARR_REF_OPEN_START);
1439
1440 /* Ref the s in dim. */
1441 field = gfc_advance_chain (TYPE_FIELDS (dim_type), 0);
1442 tmp = fold_build3_loc (input_location, COMPONENT_REF,
1443 TREE_TYPE (field), dim, field,
1444 NULL_TREE);
1445
1446 /* Set start in s. */
1447 if (start != NULL_TREE)
1448 {
1449 field = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (tmp)),
1450 0);
1451 tmp2 = fold_build3_loc (input_location, COMPONENT_REF,
1452 TREE_TYPE (field), tmp, field,
1453 NULL_TREE);
1454 gfc_add_modify (block, tmp2,
1455 fold_convert (TREE_TYPE (tmp2), start));
1456 }
1457
1458 /* Set end in s. */
1459 if (end != NULL_TREE)
1460 {
1461 field = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (tmp)),
1462 1);
1463 tmp2 = fold_build3_loc (input_location, COMPONENT_REF,
1464 TREE_TYPE (field), tmp, field,
1465 NULL_TREE);
1466 gfc_add_modify (block, tmp2,
1467 fold_convert (TREE_TYPE (tmp2), end));
1468 }
1469
1470 /* Set end in s. */
1471 if (stride != NULL_TREE)
1472 {
1473 field = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (tmp)),
1474 2);
1475 tmp2 = fold_build3_loc (input_location, COMPONENT_REF,
1476 TREE_TYPE (field), tmp, field,
1477 NULL_TREE);
1478 gfc_add_modify (block, tmp2,
1479 fold_convert (TREE_TYPE (tmp2), stride));
1480 }
1481 break;
1482 case DIMEN_VECTOR:
1483 /* TODO: In case of static array. */
1484 gcc_assert (!ref_static_array);
1485 mode_rhs = build_int_cst (unsigned_char_type_node,
1486 GFC_CAF_ARR_REF_VECTOR);
1487 gfc_init_se (&se, NULL);
1488 se.descriptor_only = 1;
1489 gfc_conv_expr_descriptor (&se, ref->u.ar.start[i]);
1490 gfc_add_block_to_block (block, &se.pre);
1491 vector = se.expr;
1492 tmp = gfc_conv_descriptor_lbound_get (vector,
1493 gfc_rank_cst[0]);
1494 tmp2 = gfc_conv_descriptor_ubound_get (vector,
1495 gfc_rank_cst[0]);
1496 nvec = gfc_conv_array_extent_dim (tmp, tmp2, NULL);
1497 tmp = gfc_conv_descriptor_stride_get (vector,
1498 gfc_rank_cst[0]);
1499 nvec = fold_build2_loc (input_location, TRUNC_DIV_EXPR,
1500 TREE_TYPE (nvec), nvec, tmp);
1501 vector = gfc_conv_descriptor_data_get (vector);
1502
1503 /* Ref the v in dim. */
1504 field = gfc_advance_chain (TYPE_FIELDS (dim_type), 1);
1505 tmp = fold_build3_loc (input_location, COMPONENT_REF,
1506 TREE_TYPE (field), dim, field,
1507 NULL_TREE);
1508
1509 /* Set vector in v. */
1510 field = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (tmp)), 0);
1511 tmp2 = fold_build3_loc (input_location, COMPONENT_REF,
1512 TREE_TYPE (field), tmp, field,
1513 NULL_TREE);
1514 gfc_add_modify (block, tmp2, fold_convert (TREE_TYPE (tmp2),
1515 vector));
1516
1517 /* Set nvec in v. */
1518 field = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (tmp)), 1);
1519 tmp2 = fold_build3_loc (input_location, COMPONENT_REF,
1520 TREE_TYPE (field), tmp, field,
1521 NULL_TREE);
1522 gfc_add_modify (block, tmp2, fold_convert (TREE_TYPE (tmp2),
1523 nvec));
1524
1525 /* Set kind in v. */
1526 field = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (tmp)), 2);
1527 tmp2 = fold_build3_loc (input_location, COMPONENT_REF,
1528 TREE_TYPE (field), tmp, field,
1529 NULL_TREE);
1530 gfc_add_modify (block, tmp2, build_int_cst (integer_type_node,
1531 ref->u.ar.start[i]->ts.kind));
1532 break;
1533 default:
1534 gcc_unreachable ();
1535 }
1536 /* Set the mode for dim i. */
1537 tmp = gfc_build_array_ref (mode, gfc_rank_cst[i], NULL_TREE);
1538 gfc_add_modify (block, tmp, fold_convert (TREE_TYPE (tmp),
1539 mode_rhs));
1540 }
1541
1542 /* Set the mode for dim i+1 to GFC_ARR_REF_NONE. */
1543 if (i < GFC_MAX_DIMENSIONS)
1544 {
1545 tmp = gfc_build_array_ref (mode, gfc_rank_cst[i], NULL_TREE);
1546 gfc_add_modify (block, tmp,
1547 build_int_cst (unsigned_char_type_node,
1548 GFC_CAF_ARR_REF_NONE));
1549 }
1550 break;
1551 default:
1552 gcc_unreachable ();
1553 }
1554
1555 /* Set the size of the current type. */
1556 field = gfc_advance_chain (TYPE_FIELDS (reference_type), 2);
1557 tmp = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
1558 prev_caf_ref, field, NULL_TREE);
1559 gfc_add_modify (block, tmp, fold_convert (TREE_TYPE (field),
1560 TYPE_SIZE_UNIT (last_type)));
1561
1562 ref = ref->next;
1563 }
1564
1565 if (prev_caf_ref != NULL_TREE)
1566 {
1567 field = gfc_advance_chain (TYPE_FIELDS (reference_type), 0);
1568 tmp = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
1569 prev_caf_ref, field, NULL_TREE);
1570 gfc_add_modify (block, tmp, fold_convert (TREE_TYPE (field),
1571 null_pointer_node));
1572 }
1573 return caf_ref != NULL_TREE ? gfc_build_addr_expr (NULL_TREE, caf_ref)
1574 : NULL_TREE;
1575 }
1576
1577 /* Get data from a remote coarray. */
1578
1579 static void
1580 gfc_conv_intrinsic_caf_get (gfc_se *se, gfc_expr *expr, tree lhs, tree lhs_kind,
1581 tree may_require_tmp, bool may_realloc,
1582 symbol_attribute *caf_attr)
1583 {
1584 gfc_expr *array_expr, *tmp_stat;
1585 gfc_se argse;
1586 tree caf_decl, token, offset, image_index, tmp;
1587 tree res_var, dst_var, type, kind, vec, stat;
1588 tree caf_reference;
1589 symbol_attribute caf_attr_store;
1590
1591 gcc_assert (flag_coarray == GFC_FCOARRAY_LIB);
1592
1593 if (se->ss && se->ss->info->useflags)
1594 {
1595 /* Access the previously obtained result. */
1596 gfc_conv_tmp_array_ref (se);
1597 return;
1598 }
1599
1600 /* If lhs is set, the CAF_GET intrinsic has already been stripped. */
1601 array_expr = (lhs == NULL_TREE) ? expr->value.function.actual->expr : expr;
1602 type = gfc_typenode_for_spec (&array_expr->ts);
1603
1604 if (caf_attr == NULL)
1605 {
1606 caf_attr_store = gfc_caf_attr (array_expr);
1607 caf_attr = &caf_attr_store;
1608 }
1609
1610 res_var = lhs;
1611 dst_var = lhs;
1612
1613 vec = null_pointer_node;
1614 tmp_stat = gfc_find_stat_co (expr);
1615
1616 if (tmp_stat)
1617 {
1618 gfc_se stat_se;
1619 gfc_init_se (&stat_se, NULL);
1620 gfc_conv_expr_reference (&stat_se, tmp_stat);
1621 stat = stat_se.expr;
1622 gfc_add_block_to_block (&se->pre, &stat_se.pre);
1623 gfc_add_block_to_block (&se->post, &stat_se.post);
1624 }
1625 else
1626 stat = null_pointer_node;
1627
1628 /* Only use the new get_by_ref () where it is necessary. I.e., when the lhs
1629 is reallocatable or the right-hand side has allocatable components. */
1630 if (caf_attr->alloc_comp || may_realloc)
1631 {
1632 /* Get using caf_get_by_ref. */
1633 caf_reference = conv_expr_ref_to_caf_ref (&se->pre, array_expr);
1634
1635 if (caf_reference != NULL_TREE)
1636 {
1637 if (lhs == NULL_TREE)
1638 {
1639 if (array_expr->ts.type == BT_CHARACTER)
1640 gfc_init_se (&argse, NULL);
1641 if (array_expr->rank == 0)
1642 {
1643 symbol_attribute attr;
1644 gfc_clear_attr (&attr);
1645 if (array_expr->ts.type == BT_CHARACTER)
1646 {
1647 res_var = gfc_conv_string_tmp (se,
1648 build_pointer_type (type),
1649 array_expr->ts.u.cl->backend_decl);
1650 argse.string_length = array_expr->ts.u.cl->backend_decl;
1651 }
1652 else
1653 res_var = gfc_create_var (type, "caf_res");
1654 dst_var = gfc_conv_scalar_to_descriptor (se, res_var, attr);
1655 dst_var = gfc_build_addr_expr (NULL_TREE, dst_var);
1656 }
1657 else
1658 {
1659 /* Create temporary. */
1660 if (array_expr->ts.type == BT_CHARACTER)
1661 gfc_conv_expr_descriptor (&argse, array_expr);
1662 may_realloc = gfc_trans_create_temp_array (&se->pre,
1663 &se->post,
1664 se->ss, type,
1665 NULL_TREE, false,
1666 false, false,
1667 &array_expr->where)
1668 == NULL_TREE;
1669 res_var = se->ss->info->data.array.descriptor;
1670 dst_var = gfc_build_addr_expr (NULL_TREE, res_var);
1671 if (may_realloc)
1672 {
1673 tmp = gfc_conv_descriptor_data_get (res_var);
1674 tmp = gfc_deallocate_with_status (tmp, NULL_TREE,
1675 NULL_TREE, NULL_TREE,
1676 NULL_TREE, true,
1677 NULL,
1678 GFC_CAF_COARRAY_NOCOARRAY);
1679 gfc_add_expr_to_block (&se->post, tmp);
1680 }
1681 }
1682 }
1683
1684 kind = build_int_cst (integer_type_node, expr->ts.kind);
1685 if (lhs_kind == NULL_TREE)
1686 lhs_kind = kind;
1687
1688 caf_decl = gfc_get_tree_for_caf_expr (array_expr);
1689 if (TREE_CODE (TREE_TYPE (caf_decl)) == REFERENCE_TYPE)
1690 caf_decl = build_fold_indirect_ref_loc (input_location, caf_decl);
1691 image_index = gfc_caf_get_image_index (&se->pre, array_expr,
1692 caf_decl);
1693 gfc_get_caf_token_offset (se, &token, NULL, caf_decl, NULL,
1694 array_expr);
1695
1696 /* No overlap possible as we have generated a temporary. */
1697 if (lhs == NULL_TREE)
1698 may_require_tmp = boolean_false_node;
1699
1700 /* It guarantees memory consistency within the same segment. */
1701 tmp = gfc_build_string_const (strlen ("memory") + 1, "memory");
1702 tmp = build5_loc (input_location, ASM_EXPR, void_type_node,
1703 gfc_build_string_const (1, ""), NULL_TREE,
1704 NULL_TREE, tree_cons (NULL_TREE, tmp, NULL_TREE),
1705 NULL_TREE);
1706 ASM_VOLATILE_P (tmp) = 1;
1707 gfc_add_expr_to_block (&se->pre, tmp);
1708
1709 tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_get_by_ref,
1710 9, token, image_index, dst_var,
1711 caf_reference, lhs_kind, kind,
1712 may_require_tmp,
1713 may_realloc ? boolean_true_node :
1714 boolean_false_node,
1715 stat);
1716
1717 gfc_add_expr_to_block (&se->pre, tmp);
1718
1719 if (se->ss)
1720 gfc_advance_se_ss_chain (se);
1721
1722 se->expr = res_var;
1723 if (array_expr->ts.type == BT_CHARACTER)
1724 se->string_length = argse.string_length;
1725
1726 return;
1727 }
1728 }
1729
1730 gfc_init_se (&argse, NULL);
1731 if (array_expr->rank == 0)
1732 {
1733 symbol_attribute attr;
1734
1735 gfc_clear_attr (&attr);
1736 gfc_conv_expr (&argse, array_expr);
1737
1738 if (lhs == NULL_TREE)
1739 {
1740 gfc_clear_attr (&attr);
1741 if (array_expr->ts.type == BT_CHARACTER)
1742 res_var = gfc_conv_string_tmp (se, build_pointer_type (type),
1743 argse.string_length);
1744 else
1745 res_var = gfc_create_var (type, "caf_res");
1746 dst_var = gfc_conv_scalar_to_descriptor (&argse, res_var, attr);
1747 dst_var = gfc_build_addr_expr (NULL_TREE, dst_var);
1748 }
1749 argse.expr = gfc_conv_scalar_to_descriptor (&argse, argse.expr, attr);
1750 argse.expr = gfc_build_addr_expr (NULL_TREE, argse.expr);
1751 }
1752 else
1753 {
1754 /* If has_vector, pass descriptor for whole array and the
1755 vector bounds separately. */
1756 gfc_array_ref *ar, ar2;
1757 bool has_vector = false;
1758
1759 if (gfc_is_coindexed (expr) && gfc_has_vector_subscript (expr))
1760 {
1761 has_vector = true;
1762 ar = gfc_find_array_ref (expr);
1763 ar2 = *ar;
1764 memset (ar, '\0', sizeof (*ar));
1765 ar->as = ar2.as;
1766 ar->type = AR_FULL;
1767 }
1768 // TODO: Check whether argse.want_coarray = 1 can help with the below.
1769 gfc_conv_expr_descriptor (&argse, array_expr);
1770 /* Using gfc_conv_expr_descriptor, we only get the descriptor, but that
1771 has the wrong type if component references are done. */
1772 gfc_add_modify (&argse.pre, gfc_conv_descriptor_dtype (argse.expr),
1773 gfc_get_dtype_rank_type (has_vector ? ar2.dimen
1774 : array_expr->rank,
1775 type));
1776 if (has_vector)
1777 {
1778 vec = conv_caf_vector_subscript (&argse.pre, argse.expr, &ar2);
1779 *ar = ar2;
1780 }
1781
1782 if (lhs == NULL_TREE)
1783 {
1784 /* Create temporary. */
1785 for (int n = 0; n < se->ss->loop->dimen; n++)
1786 if (se->loop->to[n] == NULL_TREE)
1787 {
1788 se->loop->from[n] = gfc_conv_descriptor_lbound_get (argse.expr,
1789 gfc_rank_cst[n]);
1790 se->loop->to[n] = gfc_conv_descriptor_ubound_get (argse.expr,
1791 gfc_rank_cst[n]);
1792 }
1793 gfc_trans_create_temp_array (&argse.pre, &argse.post, se->ss, type,
1794 NULL_TREE, false, true, false,
1795 &array_expr->where);
1796 res_var = se->ss->info->data.array.descriptor;
1797 dst_var = gfc_build_addr_expr (NULL_TREE, res_var);
1798 }
1799 argse.expr = gfc_build_addr_expr (NULL_TREE, argse.expr);
1800 }
1801
1802 kind = build_int_cst (integer_type_node, expr->ts.kind);
1803 if (lhs_kind == NULL_TREE)
1804 lhs_kind = kind;
1805
1806 gfc_add_block_to_block (&se->pre, &argse.pre);
1807 gfc_add_block_to_block (&se->post, &argse.post);
1808
1809 caf_decl = gfc_get_tree_for_caf_expr (array_expr);
1810 if (TREE_CODE (TREE_TYPE (caf_decl)) == REFERENCE_TYPE)
1811 caf_decl = build_fold_indirect_ref_loc (input_location, caf_decl);
1812 image_index = gfc_caf_get_image_index (&se->pre, array_expr, caf_decl);
1813 gfc_get_caf_token_offset (se, &token, &offset, caf_decl, argse.expr,
1814 array_expr);
1815
1816 /* No overlap possible as we have generated a temporary. */
1817 if (lhs == NULL_TREE)
1818 may_require_tmp = boolean_false_node;
1819
1820 /* It guarantees memory consistency within the same segment. */
1821 tmp = gfc_build_string_const (strlen ("memory") + 1, "memory");
1822 tmp = build5_loc (input_location, ASM_EXPR, void_type_node,
1823 gfc_build_string_const (1, ""), NULL_TREE, NULL_TREE,
1824 tree_cons (NULL_TREE, tmp, NULL_TREE), NULL_TREE);
1825 ASM_VOLATILE_P (tmp) = 1;
1826 gfc_add_expr_to_block (&se->pre, tmp);
1827
1828 tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_get, 10,
1829 token, offset, image_index, argse.expr, vec,
1830 dst_var, kind, lhs_kind, may_require_tmp, stat);
1831
1832 gfc_add_expr_to_block (&se->pre, tmp);
1833
1834 if (se->ss)
1835 gfc_advance_se_ss_chain (se);
1836
1837 se->expr = res_var;
1838 if (array_expr->ts.type == BT_CHARACTER)
1839 se->string_length = argse.string_length;
1840 }
1841
1842
1843 /* Send data to a remote coarray. */
1844
1845 static tree
1846 conv_caf_send (gfc_code *code) {
1847 gfc_expr *lhs_expr, *rhs_expr, *tmp_stat;
1848 gfc_se lhs_se, rhs_se;
1849 stmtblock_t block;
1850 tree caf_decl, token, offset, image_index, tmp, lhs_kind, rhs_kind;
1851 tree may_require_tmp, src_stat, dst_stat;
1852 tree lhs_type = NULL_TREE;
1853 tree vec = null_pointer_node, rhs_vec = null_pointer_node;
1854 symbol_attribute lhs_caf_attr, rhs_caf_attr;
1855
1856 gcc_assert (flag_coarray == GFC_FCOARRAY_LIB);
1857
1858 lhs_expr = code->ext.actual->expr;
1859 rhs_expr = code->ext.actual->next->expr;
1860 may_require_tmp = gfc_check_dependency (lhs_expr, rhs_expr, false) == 0
1861 ? boolean_false_node : boolean_true_node;
1862 gfc_init_block (&block);
1863
1864 lhs_caf_attr = gfc_caf_attr (lhs_expr);
1865 rhs_caf_attr = gfc_caf_attr (rhs_expr);
1866 src_stat = dst_stat = null_pointer_node;
1867
1868 /* LHS. */
1869 gfc_init_se (&lhs_se, NULL);
1870 if (lhs_expr->rank == 0)
1871 {
1872 symbol_attribute attr;
1873 gfc_clear_attr (&attr);
1874 gfc_conv_expr (&lhs_se, lhs_expr);
1875 lhs_type = TREE_TYPE (lhs_se.expr);
1876 lhs_se.expr = gfc_conv_scalar_to_descriptor (&lhs_se, lhs_se.expr, attr);
1877 lhs_se.expr = gfc_build_addr_expr (NULL_TREE, lhs_se.expr);
1878 }
1879 else if (lhs_caf_attr.alloc_comp && lhs_caf_attr.codimension)
1880 {
1881 lhs_se.want_pointer = 1;
1882 gfc_conv_expr_descriptor (&lhs_se, lhs_expr);
1883 /* Using gfc_conv_expr_descriptor, we only get the descriptor, but that
1884 has the wrong type if component references are done. */
1885 lhs_type = gfc_typenode_for_spec (&lhs_expr->ts);
1886 tmp = build_fold_indirect_ref_loc (input_location, lhs_se.expr);
1887 gfc_add_modify (&lhs_se.pre, gfc_conv_descriptor_dtype (tmp),
1888 gfc_get_dtype_rank_type (
1889 gfc_has_vector_subscript (lhs_expr)
1890 ? gfc_find_array_ref (lhs_expr)->dimen
1891 : lhs_expr->rank,
1892 lhs_type));
1893 }
1894 else
1895 {
1896 /* If has_vector, pass descriptor for whole array and the
1897 vector bounds separately. */
1898 gfc_array_ref *ar, ar2;
1899 bool has_vector = false;
1900
1901 if (gfc_is_coindexed (lhs_expr) && gfc_has_vector_subscript (lhs_expr))
1902 {
1903 has_vector = true;
1904 ar = gfc_find_array_ref (lhs_expr);
1905 ar2 = *ar;
1906 memset (ar, '\0', sizeof (*ar));
1907 ar->as = ar2.as;
1908 ar->type = AR_FULL;
1909 }
1910 lhs_se.want_pointer = 1;
1911 gfc_conv_expr_descriptor (&lhs_se, lhs_expr);
1912 /* Using gfc_conv_expr_descriptor, we only get the descriptor, but that
1913 has the wrong type if component references are done. */
1914 lhs_type = gfc_typenode_for_spec (&lhs_expr->ts);
1915 tmp = build_fold_indirect_ref_loc (input_location, lhs_se.expr);
1916 gfc_add_modify (&lhs_se.pre, gfc_conv_descriptor_dtype (tmp),
1917 gfc_get_dtype_rank_type (has_vector ? ar2.dimen
1918 : lhs_expr->rank,
1919 lhs_type));
1920 if (has_vector)
1921 {
1922 vec = conv_caf_vector_subscript (&block, lhs_se.expr, &ar2);
1923 *ar = ar2;
1924 }
1925 }
1926
1927 lhs_kind = build_int_cst (integer_type_node, lhs_expr->ts.kind);
1928
1929 /* Special case: RHS is a coarray but LHS is not; this code path avoids a
1930 temporary and a loop. */
1931 if (!gfc_is_coindexed (lhs_expr)
1932 && (!lhs_caf_attr.codimension
1933 || !(lhs_expr->rank > 0 && lhs_caf_attr.allocatable)))
1934 {
1935 bool lhs_may_realloc = lhs_expr->rank > 0 && lhs_caf_attr.allocatable;
1936 gcc_assert (gfc_is_coindexed (rhs_expr));
1937 gfc_init_se (&rhs_se, NULL);
1938 if (lhs_expr->rank == 0 && gfc_expr_attr (lhs_expr).allocatable)
1939 {
1940 gfc_se scal_se;
1941 gfc_init_se (&scal_se, NULL);
1942 scal_se.want_pointer = 1;
1943 gfc_conv_expr (&scal_se, lhs_expr);
1944 /* Ensure scalar on lhs is allocated. */
1945 gfc_add_block_to_block (&block, &scal_se.pre);
1946
1947 gfc_allocate_using_malloc (&scal_se.pre, scal_se.expr,
1948 TYPE_SIZE_UNIT (
1949 gfc_typenode_for_spec (&lhs_expr->ts)),
1950 NULL_TREE);
1951 tmp = fold_build2 (EQ_EXPR, boolean_type_node, scal_se.expr,
1952 null_pointer_node);
1953 tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node,
1954 tmp, gfc_finish_block (&scal_se.pre),
1955 build_empty_stmt (input_location));
1956 gfc_add_expr_to_block (&block, tmp);
1957 }
1958 else
1959 lhs_may_realloc = lhs_may_realloc
1960 && gfc_full_array_ref_p (lhs_expr->ref, NULL);
1961 gfc_add_block_to_block (&block, &lhs_se.pre);
1962 gfc_conv_intrinsic_caf_get (&rhs_se, rhs_expr, lhs_se.expr, lhs_kind,
1963 may_require_tmp, lhs_may_realloc,
1964 &rhs_caf_attr);
1965 gfc_add_block_to_block (&block, &rhs_se.pre);
1966 gfc_add_block_to_block (&block, &rhs_se.post);
1967 gfc_add_block_to_block (&block, &lhs_se.post);
1968 return gfc_finish_block (&block);
1969 }
1970
1971 gfc_add_block_to_block (&block, &lhs_se.pre);
1972
1973 /* Obtain token, offset and image index for the LHS. */
1974 caf_decl = gfc_get_tree_for_caf_expr (lhs_expr);
1975 if (TREE_CODE (TREE_TYPE (caf_decl)) == REFERENCE_TYPE)
1976 caf_decl = build_fold_indirect_ref_loc (input_location, caf_decl);
1977 image_index = gfc_caf_get_image_index (&block, lhs_expr, caf_decl);
1978 tmp = lhs_se.expr;
1979 if (lhs_caf_attr.alloc_comp)
1980 gfc_get_caf_token_offset (&lhs_se, &token, NULL, caf_decl, NULL_TREE,
1981 NULL);
1982 else
1983 gfc_get_caf_token_offset (&lhs_se, &token, &offset, caf_decl, tmp,
1984 lhs_expr);
1985 lhs_se.expr = tmp;
1986
1987 /* RHS. */
1988 gfc_init_se (&rhs_se, NULL);
1989 if (rhs_expr->expr_type == EXPR_FUNCTION && rhs_expr->value.function.isym
1990 && rhs_expr->value.function.isym->id == GFC_ISYM_CONVERSION)
1991 rhs_expr = rhs_expr->value.function.actual->expr;
1992 if (rhs_expr->rank == 0)
1993 {
1994 symbol_attribute attr;
1995 gfc_clear_attr (&attr);
1996 gfc_conv_expr (&rhs_se, rhs_expr);
1997 rhs_se.expr = gfc_conv_scalar_to_descriptor (&rhs_se, rhs_se.expr, attr);
1998 rhs_se.expr = gfc_build_addr_expr (NULL_TREE, rhs_se.expr);
1999 }
2000 else if (rhs_caf_attr.alloc_comp && rhs_caf_attr.codimension)
2001 {
2002 tree tmp2;
2003 rhs_se.want_pointer = 1;
2004 gfc_conv_expr_descriptor (&rhs_se, rhs_expr);
2005 /* Using gfc_conv_expr_descriptor, we only get the descriptor, but that
2006 has the wrong type if component references are done. */
2007 tmp2 = gfc_typenode_for_spec (&rhs_expr->ts);
2008 tmp = build_fold_indirect_ref_loc (input_location, rhs_se.expr);
2009 gfc_add_modify (&rhs_se.pre, gfc_conv_descriptor_dtype (tmp),
2010 gfc_get_dtype_rank_type (
2011 gfc_has_vector_subscript (rhs_expr)
2012 ? gfc_find_array_ref (rhs_expr)->dimen
2013 : rhs_expr->rank,
2014 tmp2));
2015 }
2016 else
2017 {
2018 /* If has_vector, pass descriptor for whole array and the
2019 vector bounds separately. */
2020 gfc_array_ref *ar, ar2;
2021 bool has_vector = false;
2022 tree tmp2;
2023
2024 if (gfc_is_coindexed (rhs_expr) && gfc_has_vector_subscript (rhs_expr))
2025 {
2026 has_vector = true;
2027 ar = gfc_find_array_ref (rhs_expr);
2028 ar2 = *ar;
2029 memset (ar, '\0', sizeof (*ar));
2030 ar->as = ar2.as;
2031 ar->type = AR_FULL;
2032 }
2033 rhs_se.want_pointer = 1;
2034 gfc_conv_expr_descriptor (&rhs_se, rhs_expr);
2035 /* Using gfc_conv_expr_descriptor, we only get the descriptor, but that
2036 has the wrong type if component references are done. */
2037 tmp = build_fold_indirect_ref_loc (input_location, rhs_se.expr);
2038 tmp2 = gfc_typenode_for_spec (&rhs_expr->ts);
2039 gfc_add_modify (&rhs_se.pre, gfc_conv_descriptor_dtype (tmp),
2040 gfc_get_dtype_rank_type (has_vector ? ar2.dimen
2041 : rhs_expr->rank,
2042 tmp2));
2043 if (has_vector)
2044 {
2045 rhs_vec = conv_caf_vector_subscript (&block, rhs_se.expr, &ar2);
2046 *ar = ar2;
2047 }
2048 }
2049
2050 gfc_add_block_to_block (&block, &rhs_se.pre);
2051
2052 rhs_kind = build_int_cst (integer_type_node, rhs_expr->ts.kind);
2053
2054 tmp_stat = gfc_find_stat_co (lhs_expr);
2055
2056 if (tmp_stat)
2057 {
2058 gfc_se stat_se;
2059 gfc_init_se (&stat_se, NULL);
2060 gfc_conv_expr_reference (&stat_se, tmp_stat);
2061 dst_stat = stat_se.expr;
2062 gfc_add_block_to_block (&block, &stat_se.pre);
2063 gfc_add_block_to_block (&block, &stat_se.post);
2064 }
2065
2066 if (!gfc_is_coindexed (rhs_expr))
2067 {
2068 if (lhs_caf_attr.alloc_comp)
2069 {
2070 tree reference, dst_realloc;
2071 reference = conv_expr_ref_to_caf_ref (&block, lhs_expr);
2072 dst_realloc = lhs_caf_attr.allocatable ? boolean_true_node
2073 : boolean_false_node;
2074 tmp = build_call_expr_loc (input_location,
2075 gfor_fndecl_caf_send_by_ref,
2076 9, token, image_index, rhs_se.expr,
2077 reference, lhs_kind, rhs_kind,
2078 may_require_tmp, dst_realloc, src_stat);
2079 }
2080 else
2081 tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_send, 10,
2082 token, offset, image_index, lhs_se.expr, vec,
2083 rhs_se.expr, lhs_kind, rhs_kind,
2084 may_require_tmp, src_stat);
2085 }
2086 else
2087 {
2088 tree rhs_token, rhs_offset, rhs_image_index;
2089
2090 /* It guarantees memory consistency within the same segment. */
2091 tmp = gfc_build_string_const (strlen ("memory") + 1, "memory");
2092 tmp = build5_loc (input_location, ASM_EXPR, void_type_node,
2093 gfc_build_string_const (1, ""), NULL_TREE, NULL_TREE,
2094 tree_cons (NULL_TREE, tmp, NULL_TREE), NULL_TREE);
2095 ASM_VOLATILE_P (tmp) = 1;
2096 gfc_add_expr_to_block (&block, tmp);
2097
2098 caf_decl = gfc_get_tree_for_caf_expr (rhs_expr);
2099 if (TREE_CODE (TREE_TYPE (caf_decl)) == REFERENCE_TYPE)
2100 caf_decl = build_fold_indirect_ref_loc (input_location, caf_decl);
2101 rhs_image_index = gfc_caf_get_image_index (&block, rhs_expr, caf_decl);
2102 tmp = rhs_se.expr;
2103 if (rhs_caf_attr.alloc_comp)
2104 {
2105 tmp_stat = gfc_find_stat_co (lhs_expr);
2106
2107 if (tmp_stat)
2108 {
2109 gfc_se stat_se;
2110 gfc_init_se (&stat_se, NULL);
2111 gfc_conv_expr_reference (&stat_se, tmp_stat);
2112 src_stat = stat_se.expr;
2113 gfc_add_block_to_block (&block, &stat_se.pre);
2114 gfc_add_block_to_block (&block, &stat_se.post);
2115 }
2116
2117 gfc_get_caf_token_offset (&rhs_se, &rhs_token, NULL, caf_decl,
2118 NULL_TREE, NULL);
2119 tree lhs_reference, rhs_reference;
2120 lhs_reference = conv_expr_ref_to_caf_ref (&block, lhs_expr);
2121 rhs_reference = conv_expr_ref_to_caf_ref (&block, rhs_expr);
2122 tmp = build_call_expr_loc (input_location,
2123 gfor_fndecl_caf_sendget_by_ref, 11,
2124 token, image_index, lhs_reference,
2125 rhs_token, rhs_image_index, rhs_reference,
2126 lhs_kind, rhs_kind, may_require_tmp,
2127 dst_stat, src_stat);
2128 }
2129 else
2130 {
2131 gfc_get_caf_token_offset (&rhs_se, &rhs_token, &rhs_offset, caf_decl,
2132 tmp, rhs_expr);
2133 tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_sendget,
2134 14, token, offset, image_index,
2135 lhs_se.expr, vec, rhs_token, rhs_offset,
2136 rhs_image_index, tmp, rhs_vec, lhs_kind,
2137 rhs_kind, may_require_tmp, src_stat);
2138 }
2139 }
2140 gfc_add_expr_to_block (&block, tmp);
2141 gfc_add_block_to_block (&block, &lhs_se.post);
2142 gfc_add_block_to_block (&block, &rhs_se.post);
2143
2144 /* It guarantees memory consistency within the same segment. */
2145 tmp = gfc_build_string_const (strlen ("memory") + 1, "memory");
2146 tmp = build5_loc (input_location, ASM_EXPR, void_type_node,
2147 gfc_build_string_const (1, ""), NULL_TREE, NULL_TREE,
2148 tree_cons (NULL_TREE, tmp, NULL_TREE), NULL_TREE);
2149 ASM_VOLATILE_P (tmp) = 1;
2150 gfc_add_expr_to_block (&block, tmp);
2151
2152 return gfc_finish_block (&block);
2153 }
2154
2155
2156 static void
2157 trans_this_image (gfc_se * se, gfc_expr *expr)
2158 {
2159 stmtblock_t loop;
2160 tree type, desc, dim_arg, cond, tmp, m, loop_var, exit_label, min_var,
2161 lbound, ubound, extent, ml;
2162 gfc_se argse;
2163 int rank, corank;
2164 gfc_expr *distance = expr->value.function.actual->next->next->expr;
2165
2166 if (expr->value.function.actual->expr
2167 && !gfc_is_coarray (expr->value.function.actual->expr))
2168 distance = expr->value.function.actual->expr;
2169
2170 /* The case -fcoarray=single is handled elsewhere. */
2171 gcc_assert (flag_coarray != GFC_FCOARRAY_SINGLE);
2172
2173 /* Argument-free version: THIS_IMAGE(). */
2174 if (distance || expr->value.function.actual->expr == NULL)
2175 {
2176 if (distance)
2177 {
2178 gfc_init_se (&argse, NULL);
2179 gfc_conv_expr_val (&argse, distance);
2180 gfc_add_block_to_block (&se->pre, &argse.pre);
2181 gfc_add_block_to_block (&se->post, &argse.post);
2182 tmp = fold_convert (integer_type_node, argse.expr);
2183 }
2184 else
2185 tmp = integer_zero_node;
2186 tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_this_image, 1,
2187 tmp);
2188 se->expr = fold_convert (gfc_get_int_type (gfc_default_integer_kind),
2189 tmp);
2190 return;
2191 }
2192
2193 /* Coarray-argument version: THIS_IMAGE(coarray [, dim]). */
2194
2195 type = gfc_get_int_type (gfc_default_integer_kind);
2196 corank = gfc_get_corank (expr->value.function.actual->expr);
2197 rank = expr->value.function.actual->expr->rank;
2198
2199 /* Obtain the descriptor of the COARRAY. */
2200 gfc_init_se (&argse, NULL);
2201 argse.want_coarray = 1;
2202 gfc_conv_expr_descriptor (&argse, expr->value.function.actual->expr);
2203 gfc_add_block_to_block (&se->pre, &argse.pre);
2204 gfc_add_block_to_block (&se->post, &argse.post);
2205 desc = argse.expr;
2206
2207 if (se->ss)
2208 {
2209 /* Create an implicit second parameter from the loop variable. */
2210 gcc_assert (!expr->value.function.actual->next->expr);
2211 gcc_assert (corank > 0);
2212 gcc_assert (se->loop->dimen == 1);
2213 gcc_assert (se->ss->info->expr == expr);
2214
2215 dim_arg = se->loop->loopvar[0];
2216 dim_arg = fold_build2_loc (input_location, PLUS_EXPR,
2217 gfc_array_index_type, dim_arg,
2218 build_int_cst (TREE_TYPE (dim_arg), 1));
2219 gfc_advance_se_ss_chain (se);
2220 }
2221 else
2222 {
2223 /* Use the passed DIM= argument. */
2224 gcc_assert (expr->value.function.actual->next->expr);
2225 gfc_init_se (&argse, NULL);
2226 gfc_conv_expr_type (&argse, expr->value.function.actual->next->expr,
2227 gfc_array_index_type);
2228 gfc_add_block_to_block (&se->pre, &argse.pre);
2229 dim_arg = argse.expr;
2230
2231 if (INTEGER_CST_P (dim_arg))
2232 {
2233 if (wi::ltu_p (dim_arg, 1)
2234 || wi::gtu_p (dim_arg, GFC_TYPE_ARRAY_CORANK (TREE_TYPE (desc))))
2235 gfc_error ("%<dim%> argument of %s intrinsic at %L is not a valid "
2236 "dimension index", expr->value.function.isym->name,
2237 &expr->where);
2238 }
2239 else if (gfc_option.rtcheck & GFC_RTCHECK_BOUNDS)
2240 {
2241 dim_arg = gfc_evaluate_now (dim_arg, &se->pre);
2242 cond = fold_build2_loc (input_location, LT_EXPR, boolean_type_node,
2243 dim_arg,
2244 build_int_cst (TREE_TYPE (dim_arg), 1));
2245 tmp = gfc_rank_cst[GFC_TYPE_ARRAY_CORANK (TREE_TYPE (desc))];
2246 tmp = fold_build2_loc (input_location, GT_EXPR, boolean_type_node,
2247 dim_arg, tmp);
2248 cond = fold_build2_loc (input_location, TRUTH_ORIF_EXPR,
2249 boolean_type_node, cond, tmp);
2250 gfc_trans_runtime_check (true, false, cond, &se->pre, &expr->where,
2251 gfc_msg_fault);
2252 }
2253 }
2254
2255 /* Used algorithm; cf. Fortran 2008, C.10. Note, due to the scalarizer,
2256 one always has a dim_arg argument.
2257
2258 m = this_image() - 1
2259 if (corank == 1)
2260 {
2261 sub(1) = m + lcobound(corank)
2262 return;
2263 }
2264 i = rank
2265 min_var = min (rank + corank - 2, rank + dim_arg - 1)
2266 for (;;)
2267 {
2268 extent = gfc_extent(i)
2269 ml = m
2270 m = m/extent
2271 if (i >= min_var)
2272 goto exit_label
2273 i++
2274 }
2275 exit_label:
2276 sub(dim_arg) = (dim_arg < corank) ? ml - m*extent + lcobound(dim_arg)
2277 : m + lcobound(corank)
2278 */
2279
2280 /* this_image () - 1. */
2281 tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_this_image, 1,
2282 integer_zero_node);
2283 tmp = fold_build2_loc (input_location, MINUS_EXPR, type,
2284 fold_convert (type, tmp), build_int_cst (type, 1));
2285 if (corank == 1)
2286 {
2287 /* sub(1) = m + lcobound(corank). */
2288 lbound = gfc_conv_descriptor_lbound_get (desc,
2289 build_int_cst (TREE_TYPE (gfc_array_index_type),
2290 corank+rank-1));
2291 lbound = fold_convert (type, lbound);
2292 tmp = fold_build2_loc (input_location, PLUS_EXPR, type, tmp, lbound);
2293
2294 se->expr = tmp;
2295 return;
2296 }
2297
2298 m = gfc_create_var (type, NULL);
2299 ml = gfc_create_var (type, NULL);
2300 loop_var = gfc_create_var (integer_type_node, NULL);
2301 min_var = gfc_create_var (integer_type_node, NULL);
2302
2303 /* m = this_image () - 1. */
2304 gfc_add_modify (&se->pre, m, tmp);
2305
2306 /* min_var = min (rank + corank-2, rank + dim_arg - 1). */
2307 tmp = fold_build2_loc (input_location, PLUS_EXPR, integer_type_node,
2308 fold_convert (integer_type_node, dim_arg),
2309 build_int_cst (integer_type_node, rank - 1));
2310 tmp = fold_build2_loc (input_location, MIN_EXPR, integer_type_node,
2311 build_int_cst (integer_type_node, rank + corank - 2),
2312 tmp);
2313 gfc_add_modify (&se->pre, min_var, tmp);
2314
2315 /* i = rank. */
2316 tmp = build_int_cst (integer_type_node, rank);
2317 gfc_add_modify (&se->pre, loop_var, tmp);
2318
2319 exit_label = gfc_build_label_decl (NULL_TREE);
2320 TREE_USED (exit_label) = 1;
2321
2322 /* Loop body. */
2323 gfc_init_block (&loop);
2324
2325 /* ml = m. */
2326 gfc_add_modify (&loop, ml, m);
2327
2328 /* extent = ... */
2329 lbound = gfc_conv_descriptor_lbound_get (desc, loop_var);
2330 ubound = gfc_conv_descriptor_ubound_get (desc, loop_var);
2331 extent = gfc_conv_array_extent_dim (lbound, ubound, NULL);
2332 extent = fold_convert (type, extent);
2333
2334 /* m = m/extent. */
2335 gfc_add_modify (&loop, m,
2336 fold_build2_loc (input_location, TRUNC_DIV_EXPR, type,
2337 m, extent));
2338
2339 /* Exit condition: if (i >= min_var) goto exit_label. */
2340 cond = fold_build2_loc (input_location, GE_EXPR, boolean_type_node, loop_var,
2341 min_var);
2342 tmp = build1_v (GOTO_EXPR, exit_label);
2343 tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node, cond, tmp,
2344 build_empty_stmt (input_location));
2345 gfc_add_expr_to_block (&loop, tmp);
2346
2347 /* Increment loop variable: i++. */
2348 gfc_add_modify (&loop, loop_var,
2349 fold_build2_loc (input_location, PLUS_EXPR, integer_type_node,
2350 loop_var,
2351 build_int_cst (integer_type_node, 1)));
2352
2353 /* Making the loop... actually loop! */
2354 tmp = gfc_finish_block (&loop);
2355 tmp = build1_v (LOOP_EXPR, tmp);
2356 gfc_add_expr_to_block (&se->pre, tmp);
2357
2358 /* The exit label. */
2359 tmp = build1_v (LABEL_EXPR, exit_label);
2360 gfc_add_expr_to_block (&se->pre, tmp);
2361
2362 /* sub(co_dim) = (co_dim < corank) ? ml - m*extent + lcobound(dim_arg)
2363 : m + lcobound(corank) */
2364
2365 cond = fold_build2_loc (input_location, LT_EXPR, boolean_type_node, dim_arg,
2366 build_int_cst (TREE_TYPE (dim_arg), corank));
2367
2368 lbound = gfc_conv_descriptor_lbound_get (desc,
2369 fold_build2_loc (input_location, PLUS_EXPR,
2370 gfc_array_index_type, dim_arg,
2371 build_int_cst (TREE_TYPE (dim_arg), rank-1)));
2372 lbound = fold_convert (type, lbound);
2373
2374 tmp = fold_build2_loc (input_location, MINUS_EXPR, type, ml,
2375 fold_build2_loc (input_location, MULT_EXPR, type,
2376 m, extent));
2377 tmp = fold_build2_loc (input_location, PLUS_EXPR, type, tmp, lbound);
2378
2379 se->expr = fold_build3_loc (input_location, COND_EXPR, type, cond, tmp,
2380 fold_build2_loc (input_location, PLUS_EXPR, type,
2381 m, lbound));
2382 }
2383
2384
2385 static void
2386 trans_image_index (gfc_se * se, gfc_expr *expr)
2387 {
2388 tree num_images, cond, coindex, type, lbound, ubound, desc, subdesc,
2389 tmp, invalid_bound;
2390 gfc_se argse, subse;
2391 int rank, corank, codim;
2392
2393 type = gfc_get_int_type (gfc_default_integer_kind);
2394 corank = gfc_get_corank (expr->value.function.actual->expr);
2395 rank = expr->value.function.actual->expr->rank;
2396
2397 /* Obtain the descriptor of the COARRAY. */
2398 gfc_init_se (&argse, NULL);
2399 argse.want_coarray = 1;
2400 gfc_conv_expr_descriptor (&argse, expr->value.function.actual->expr);
2401 gfc_add_block_to_block (&se->pre, &argse.pre);
2402 gfc_add_block_to_block (&se->post, &argse.post);
2403 desc = argse.expr;
2404
2405 /* Obtain a handle to the SUB argument. */
2406 gfc_init_se (&subse, NULL);
2407 gfc_conv_expr_descriptor (&subse, expr->value.function.actual->next->expr);
2408 gfc_add_block_to_block (&se->pre, &subse.pre);
2409 gfc_add_block_to_block (&se->post, &subse.post);
2410 subdesc = build_fold_indirect_ref_loc (input_location,
2411 gfc_conv_descriptor_data_get (subse.expr));
2412
2413 /* Fortran 2008 does not require that the values remain in the cobounds,
2414 thus we need explicitly check this - and return 0 if they are exceeded. */
2415
2416 lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[rank+corank-1]);
2417 tmp = gfc_build_array_ref (subdesc, gfc_rank_cst[corank-1], NULL);
2418 invalid_bound = fold_build2_loc (input_location, LT_EXPR, boolean_type_node,
2419 fold_convert (gfc_array_index_type, tmp),
2420 lbound);
2421
2422 for (codim = corank + rank - 2; codim >= rank; codim--)
2423 {
2424 lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[codim]);
2425 ubound = gfc_conv_descriptor_ubound_get (desc, gfc_rank_cst[codim]);
2426 tmp = gfc_build_array_ref (subdesc, gfc_rank_cst[codim-rank], NULL);
2427 cond = fold_build2_loc (input_location, LT_EXPR, boolean_type_node,
2428 fold_convert (gfc_array_index_type, tmp),
2429 lbound);
2430 invalid_bound = fold_build2_loc (input_location, TRUTH_OR_EXPR,
2431 boolean_type_node, invalid_bound, cond);
2432 cond = fold_build2_loc (input_location, GT_EXPR, boolean_type_node,
2433 fold_convert (gfc_array_index_type, tmp),
2434 ubound);
2435 invalid_bound = fold_build2_loc (input_location, TRUTH_OR_EXPR,
2436 boolean_type_node, invalid_bound, cond);
2437 }
2438
2439 invalid_bound = gfc_unlikely (invalid_bound, PRED_FORTRAN_INVALID_BOUND);
2440
2441 /* See Fortran 2008, C.10 for the following algorithm. */
2442
2443 /* coindex = sub(corank) - lcobound(n). */
2444 coindex = fold_convert (gfc_array_index_type,
2445 gfc_build_array_ref (subdesc, gfc_rank_cst[corank-1],
2446 NULL));
2447 lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[rank+corank-1]);
2448 coindex = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
2449 fold_convert (gfc_array_index_type, coindex),
2450 lbound);
2451
2452 for (codim = corank + rank - 2; codim >= rank; codim--)
2453 {
2454 tree extent, ubound;
2455
2456 /* coindex = coindex*extent(codim) + sub(codim) - lcobound(codim). */
2457 lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[codim]);
2458 ubound = gfc_conv_descriptor_ubound_get (desc, gfc_rank_cst[codim]);
2459 extent = gfc_conv_array_extent_dim (lbound, ubound, NULL);
2460
2461 /* coindex *= extent. */
2462 coindex = fold_build2_loc (input_location, MULT_EXPR,
2463 gfc_array_index_type, coindex, extent);
2464
2465 /* coindex += sub(codim). */
2466 tmp = gfc_build_array_ref (subdesc, gfc_rank_cst[codim-rank], NULL);
2467 coindex = fold_build2_loc (input_location, PLUS_EXPR,
2468 gfc_array_index_type, coindex,
2469 fold_convert (gfc_array_index_type, tmp));
2470
2471 /* coindex -= lbound(codim). */
2472 lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[codim]);
2473 coindex = fold_build2_loc (input_location, MINUS_EXPR,
2474 gfc_array_index_type, coindex, lbound);
2475 }
2476
2477 coindex = fold_build2_loc (input_location, PLUS_EXPR, type,
2478 fold_convert(type, coindex),
2479 build_int_cst (type, 1));
2480
2481 /* Return 0 if "coindex" exceeds num_images(). */
2482
2483 if (flag_coarray == GFC_FCOARRAY_SINGLE)
2484 num_images = build_int_cst (type, 1);
2485 else
2486 {
2487 tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_num_images, 2,
2488 integer_zero_node,
2489 build_int_cst (integer_type_node, -1));
2490 num_images = fold_convert (type, tmp);
2491 }
2492
2493 tmp = gfc_create_var (type, NULL);
2494 gfc_add_modify (&se->pre, tmp, coindex);
2495
2496 cond = fold_build2_loc (input_location, GT_EXPR, boolean_type_node, tmp,
2497 num_images);
2498 cond = fold_build2_loc (input_location, TRUTH_OR_EXPR, boolean_type_node,
2499 cond,
2500 fold_convert (boolean_type_node, invalid_bound));
2501 se->expr = fold_build3_loc (input_location, COND_EXPR, type, cond,
2502 build_int_cst (type, 0), tmp);
2503 }
2504
2505
2506 static void
2507 trans_num_images (gfc_se * se, gfc_expr *expr)
2508 {
2509 tree tmp, distance, failed;
2510 gfc_se argse;
2511
2512 if (expr->value.function.actual->expr)
2513 {
2514 gfc_init_se (&argse, NULL);
2515 gfc_conv_expr_val (&argse, expr->value.function.actual->expr);
2516 gfc_add_block_to_block (&se->pre, &argse.pre);
2517 gfc_add_block_to_block (&se->post, &argse.post);
2518 distance = fold_convert (integer_type_node, argse.expr);
2519 }
2520 else
2521 distance = integer_zero_node;
2522
2523 if (expr->value.function.actual->next->expr)
2524 {
2525 gfc_init_se (&argse, NULL);
2526 gfc_conv_expr_val (&argse, expr->value.function.actual->next->expr);
2527 gfc_add_block_to_block (&se->pre, &argse.pre);
2528 gfc_add_block_to_block (&se->post, &argse.post);
2529 failed = fold_convert (integer_type_node, argse.expr);
2530 }
2531 else
2532 failed = build_int_cst (integer_type_node, -1);
2533
2534 tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_num_images, 2,
2535 distance, failed);
2536 se->expr = fold_convert (gfc_get_int_type (gfc_default_integer_kind), tmp);
2537 }
2538
2539
2540 static void
2541 gfc_conv_intrinsic_rank (gfc_se *se, gfc_expr *expr)
2542 {
2543 gfc_se argse;
2544
2545 gfc_init_se (&argse, NULL);
2546 argse.data_not_needed = 1;
2547 argse.descriptor_only = 1;
2548
2549 gfc_conv_expr_descriptor (&argse, expr->value.function.actual->expr);
2550 gfc_add_block_to_block (&se->pre, &argse.pre);
2551 gfc_add_block_to_block (&se->post, &argse.post);
2552
2553 se->expr = gfc_conv_descriptor_rank (argse.expr);
2554 }
2555
2556
2557 /* Evaluate a single upper or lower bound. */
2558 /* TODO: bound intrinsic generates way too much unnecessary code. */
2559
2560 static void
2561 gfc_conv_intrinsic_bound (gfc_se * se, gfc_expr * expr, int upper)
2562 {
2563 gfc_actual_arglist *arg;
2564 gfc_actual_arglist *arg2;
2565 tree desc;
2566 tree type;
2567 tree bound;
2568 tree tmp;
2569 tree cond, cond1, cond3, cond4, size;
2570 tree ubound;
2571 tree lbound;
2572 gfc_se argse;
2573 gfc_array_spec * as;
2574 bool assumed_rank_lb_one;
2575
2576 arg = expr->value.function.actual;
2577 arg2 = arg->next;
2578
2579 if (se->ss)
2580 {
2581 /* Create an implicit second parameter from the loop variable. */
2582 gcc_assert (!arg2->expr);
2583 gcc_assert (se->loop->dimen == 1);
2584 gcc_assert (se->ss->info->expr == expr);
2585 gfc_advance_se_ss_chain (se);
2586 bound = se->loop->loopvar[0];
2587 bound = fold_build2_loc (input_location, MINUS_EXPR,
2588 gfc_array_index_type, bound,
2589 se->loop->from[0]);
2590 }
2591 else
2592 {
2593 /* use the passed argument. */
2594 gcc_assert (arg2->expr);
2595 gfc_init_se (&argse, NULL);
2596 gfc_conv_expr_type (&argse, arg2->expr, gfc_array_index_type);
2597 gfc_add_block_to_block (&se->pre, &argse.pre);
2598 bound = argse.expr;
2599 /* Convert from one based to zero based. */
2600 bound = fold_build2_loc (input_location, MINUS_EXPR,
2601 gfc_array_index_type, bound,
2602 gfc_index_one_node);
2603 }
2604
2605 /* TODO: don't re-evaluate the descriptor on each iteration. */
2606 /* Get a descriptor for the first parameter. */
2607 gfc_init_se (&argse, NULL);
2608 gfc_conv_expr_descriptor (&argse, arg->expr);
2609 gfc_add_block_to_block (&se->pre, &argse.pre);
2610 gfc_add_block_to_block (&se->post, &argse.post);
2611
2612 desc = argse.expr;
2613
2614 as = gfc_get_full_arrayspec_from_expr (arg->expr);
2615
2616 if (INTEGER_CST_P (bound))
2617 {
2618 if (((!as || as->type != AS_ASSUMED_RANK)
2619 && wi::geu_p (bound, GFC_TYPE_ARRAY_RANK (TREE_TYPE (desc))))
2620 || wi::gtu_p (bound, GFC_MAX_DIMENSIONS))
2621 gfc_error ("%<dim%> argument of %s intrinsic at %L is not a valid "
2622 "dimension index", upper ? "UBOUND" : "LBOUND",
2623 &expr->where);
2624 }
2625
2626 if (!INTEGER_CST_P (bound) || (as && as->type == AS_ASSUMED_RANK))
2627 {
2628 if (gfc_option.rtcheck & GFC_RTCHECK_BOUNDS)
2629 {
2630 bound = gfc_evaluate_now (bound, &se->pre);
2631 cond = fold_build2_loc (input_location, LT_EXPR, boolean_type_node,
2632 bound, build_int_cst (TREE_TYPE (bound), 0));
2633 if (as && as->type == AS_ASSUMED_RANK)
2634 tmp = gfc_conv_descriptor_rank (desc);
2635 else
2636 tmp = gfc_rank_cst[GFC_TYPE_ARRAY_RANK (TREE_TYPE (desc))];
2637 tmp = fold_build2_loc (input_location, GE_EXPR, boolean_type_node,
2638 bound, fold_convert(TREE_TYPE (bound), tmp));
2639 cond = fold_build2_loc (input_location, TRUTH_ORIF_EXPR,
2640 boolean_type_node, cond, tmp);
2641 gfc_trans_runtime_check (true, false, cond, &se->pre, &expr->where,
2642 gfc_msg_fault);
2643 }
2644 }
2645
2646 /* Take care of the lbound shift for assumed-rank arrays, which are
2647 nonallocatable and nonpointers. Those has a lbound of 1. */
2648 assumed_rank_lb_one = as && as->type == AS_ASSUMED_RANK
2649 && ((arg->expr->ts.type != BT_CLASS
2650 && !arg->expr->symtree->n.sym->attr.allocatable
2651 && !arg->expr->symtree->n.sym->attr.pointer)
2652 || (arg->expr->ts.type == BT_CLASS
2653 && !CLASS_DATA (arg->expr)->attr.allocatable
2654 && !CLASS_DATA (arg->expr)->attr.class_pointer));
2655
2656 ubound = gfc_conv_descriptor_ubound_get (desc, bound);
2657 lbound = gfc_conv_descriptor_lbound_get (desc, bound);
2658
2659 /* 13.14.53: Result value for LBOUND
2660
2661 Case (i): For an array section or for an array expression other than a
2662 whole array or array structure component, LBOUND(ARRAY, DIM)
2663 has the value 1. For a whole array or array structure
2664 component, LBOUND(ARRAY, DIM) has the value:
2665 (a) equal to the lower bound for subscript DIM of ARRAY if
2666 dimension DIM of ARRAY does not have extent zero
2667 or if ARRAY is an assumed-size array of rank DIM,
2668 or (b) 1 otherwise.
2669
2670 13.14.113: Result value for UBOUND
2671
2672 Case (i): For an array section or for an array expression other than a
2673 whole array or array structure component, UBOUND(ARRAY, DIM)
2674 has the value equal to the number of elements in the given
2675 dimension; otherwise, it has a value equal to the upper bound
2676 for subscript DIM of ARRAY if dimension DIM of ARRAY does
2677 not have size zero and has value zero if dimension DIM has
2678 size zero. */
2679
2680 if (!upper && assumed_rank_lb_one)
2681 se->expr = gfc_index_one_node;
2682 else if (as)
2683 {
2684 tree stride = gfc_conv_descriptor_stride_get (desc, bound);
2685
2686 cond1 = fold_build2_loc (input_location, GE_EXPR, boolean_type_node,
2687 ubound, lbound);
2688 cond3 = fold_build2_loc (input_location, GE_EXPR, boolean_type_node,
2689 stride, gfc_index_zero_node);
2690 cond3 = fold_build2_loc (input_location, TRUTH_AND_EXPR,
2691 boolean_type_node, cond3, cond1);
2692 cond4 = fold_build2_loc (input_location, LT_EXPR, boolean_type_node,
2693 stride, gfc_index_zero_node);
2694
2695 if (upper)
2696 {
2697 tree cond5;
2698 cond = fold_build2_loc (input_location, TRUTH_OR_EXPR,
2699 boolean_type_node, cond3, cond4);
2700 cond5 = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node,
2701 gfc_index_one_node, lbound);
2702 cond5 = fold_build2_loc (input_location, TRUTH_AND_EXPR,
2703 boolean_type_node, cond4, cond5);
2704
2705 cond = fold_build2_loc (input_location, TRUTH_OR_EXPR,
2706 boolean_type_node, cond, cond5);
2707
2708 if (assumed_rank_lb_one)
2709 {
2710 tmp = fold_build2_loc (input_location, MINUS_EXPR,
2711 gfc_array_index_type, ubound, lbound);
2712 tmp = fold_build2_loc (input_location, PLUS_EXPR,
2713 gfc_array_index_type, tmp, gfc_index_one_node);
2714 }
2715 else
2716 tmp = ubound;
2717
2718 se->expr = fold_build3_loc (input_location, COND_EXPR,
2719 gfc_array_index_type, cond,
2720 tmp, gfc_index_zero_node);
2721 }
2722 else
2723 {
2724 if (as->type == AS_ASSUMED_SIZE)
2725 cond = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node,
2726 bound, build_int_cst (TREE_TYPE (bound),
2727 arg->expr->rank - 1));
2728 else
2729 cond = boolean_false_node;
2730
2731 cond1 = fold_build2_loc (input_location, TRUTH_OR_EXPR,
2732 boolean_type_node, cond3, cond4);
2733 cond = fold_build2_loc (input_location, TRUTH_OR_EXPR,
2734 boolean_type_node, cond, cond1);
2735
2736 se->expr = fold_build3_loc (input_location, COND_EXPR,
2737 gfc_array_index_type, cond,
2738 lbound, gfc_index_one_node);
2739 }
2740 }
2741 else
2742 {
2743 if (upper)
2744 {
2745 size = fold_build2_loc (input_location, MINUS_EXPR,
2746 gfc_array_index_type, ubound, lbound);
2747 se->expr = fold_build2_loc (input_location, PLUS_EXPR,
2748 gfc_array_index_type, size,
2749 gfc_index_one_node);
2750 se->expr = fold_build2_loc (input_location, MAX_EXPR,
2751 gfc_array_index_type, se->expr,
2752 gfc_index_zero_node);
2753 }
2754 else
2755 se->expr = gfc_index_one_node;
2756 }
2757
2758 type = gfc_typenode_for_spec (&expr->ts);
2759 se->expr = convert (type, se->expr);
2760 }
2761
2762
2763 static void
2764 conv_intrinsic_cobound (gfc_se * se, gfc_expr * expr)
2765 {
2766 gfc_actual_arglist *arg;
2767 gfc_actual_arglist *arg2;
2768 gfc_se argse;
2769 tree bound, resbound, resbound2, desc, cond, tmp;
2770 tree type;
2771 int corank;
2772
2773 gcc_assert (expr->value.function.isym->id == GFC_ISYM_LCOBOUND
2774 || expr->value.function.isym->id == GFC_ISYM_UCOBOUND
2775 || expr->value.function.isym->id == GFC_ISYM_THIS_IMAGE);
2776
2777 arg = expr->value.function.actual;
2778 arg2 = arg->next;
2779
2780 gcc_assert (arg->expr->expr_type == EXPR_VARIABLE);
2781 corank = gfc_get_corank (arg->expr);
2782
2783 gfc_init_se (&argse, NULL);
2784 argse.want_coarray = 1;
2785
2786 gfc_conv_expr_descriptor (&argse, arg->expr);
2787 gfc_add_block_to_block (&se->pre, &argse.pre);
2788 gfc_add_block_to_block (&se->post, &argse.post);
2789 desc = argse.expr;
2790
2791 if (se->ss)
2792 {
2793 /* Create an implicit second parameter from the loop variable. */
2794 gcc_assert (!arg2->expr);
2795 gcc_assert (corank > 0);
2796 gcc_assert (se->loop->dimen == 1);
2797 gcc_assert (se->ss->info->expr == expr);
2798
2799 bound = se->loop->loopvar[0];
2800 bound = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
2801 bound, gfc_rank_cst[arg->expr->rank]);
2802 gfc_advance_se_ss_chain (se);
2803 }
2804 else
2805 {
2806 /* use the passed argument. */
2807 gcc_assert (arg2->expr);
2808 gfc_init_se (&argse, NULL);
2809 gfc_conv_expr_type (&argse, arg2->expr, gfc_array_index_type);
2810 gfc_add_block_to_block (&se->pre, &argse.pre);
2811 bound = argse.expr;
2812
2813 if (INTEGER_CST_P (bound))
2814 {
2815 if (wi::ltu_p (bound, 1)
2816 || wi::gtu_p (bound, GFC_TYPE_ARRAY_CORANK (TREE_TYPE (desc))))
2817 gfc_error ("%<dim%> argument of %s intrinsic at %L is not a valid "
2818 "dimension index", expr->value.function.isym->name,
2819 &expr->where);
2820 }
2821 else if (gfc_option.rtcheck & GFC_RTCHECK_BOUNDS)
2822 {
2823 bound = gfc_evaluate_now (bound, &se->pre);
2824 cond = fold_build2_loc (input_location, LT_EXPR, boolean_type_node,
2825 bound, build_int_cst (TREE_TYPE (bound), 1));
2826 tmp = gfc_rank_cst[GFC_TYPE_ARRAY_CORANK (TREE_TYPE (desc))];
2827 tmp = fold_build2_loc (input_location, GT_EXPR, boolean_type_node,
2828 bound, tmp);
2829 cond = fold_build2_loc (input_location, TRUTH_ORIF_EXPR,
2830 boolean_type_node, cond, tmp);
2831 gfc_trans_runtime_check (true, false, cond, &se->pre, &expr->where,
2832 gfc_msg_fault);
2833 }
2834
2835
2836 /* Subtract 1 to get to zero based and add dimensions. */
2837 switch (arg->expr->rank)
2838 {
2839 case 0:
2840 bound = fold_build2_loc (input_location, MINUS_EXPR,
2841 gfc_array_index_type, bound,
2842 gfc_index_one_node);
2843 case 1:
2844 break;
2845 default:
2846 bound = fold_build2_loc (input_location, PLUS_EXPR,
2847 gfc_array_index_type, bound,
2848 gfc_rank_cst[arg->expr->rank - 1]);
2849 }
2850 }
2851
2852 resbound = gfc_conv_descriptor_lbound_get (desc, bound);
2853
2854 /* Handle UCOBOUND with special handling of the last codimension. */
2855 if (expr->value.function.isym->id == GFC_ISYM_UCOBOUND)
2856 {
2857 /* Last codimension: For -fcoarray=single just return
2858 the lcobound - otherwise add
2859 ceiling (real (num_images ()) / real (size)) - 1
2860 = (num_images () + size - 1) / size - 1
2861 = (num_images - 1) / size(),
2862 where size is the product of the extent of all but the last
2863 codimension. */
2864
2865 if (flag_coarray != GFC_FCOARRAY_SINGLE && corank > 1)
2866 {
2867 tree cosize;
2868
2869 cosize = gfc_conv_descriptor_cosize (desc, arg->expr->rank, corank);
2870 tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_num_images,
2871 2, integer_zero_node,
2872 build_int_cst (integer_type_node, -1));
2873 tmp = fold_build2_loc (input_location, MINUS_EXPR,
2874 gfc_array_index_type,
2875 fold_convert (gfc_array_index_type, tmp),
2876 build_int_cst (gfc_array_index_type, 1));
2877 tmp = fold_build2_loc (input_location, TRUNC_DIV_EXPR,
2878 gfc_array_index_type, tmp,
2879 fold_convert (gfc_array_index_type, cosize));
2880 resbound = fold_build2_loc (input_location, PLUS_EXPR,
2881 gfc_array_index_type, resbound, tmp);
2882 }
2883 else if (flag_coarray != GFC_FCOARRAY_SINGLE)
2884 {
2885 /* ubound = lbound + num_images() - 1. */
2886 tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_num_images,
2887 2, integer_zero_node,
2888 build_int_cst (integer_type_node, -1));
2889 tmp = fold_build2_loc (input_location, MINUS_EXPR,
2890 gfc_array_index_type,
2891 fold_convert (gfc_array_index_type, tmp),
2892 build_int_cst (gfc_array_index_type, 1));
2893 resbound = fold_build2_loc (input_location, PLUS_EXPR,
2894 gfc_array_index_type, resbound, tmp);
2895 }
2896
2897 if (corank > 1)
2898 {
2899 cond = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node,
2900 bound,
2901 build_int_cst (TREE_TYPE (bound),
2902 arg->expr->rank + corank - 1));
2903
2904 resbound2 = gfc_conv_descriptor_ubound_get (desc, bound);
2905 se->expr = fold_build3_loc (input_location, COND_EXPR,
2906 gfc_array_index_type, cond,
2907 resbound, resbound2);
2908 }
2909 else
2910 se->expr = resbound;
2911 }
2912 else
2913 se->expr = resbound;
2914
2915 type = gfc_typenode_for_spec (&expr->ts);
2916 se->expr = convert (type, se->expr);
2917 }
2918
2919
2920 static void
2921 conv_intrinsic_stride (gfc_se * se, gfc_expr * expr)
2922 {
2923 gfc_actual_arglist *array_arg;
2924 gfc_actual_arglist *dim_arg;
2925 gfc_se argse;
2926 tree desc, tmp;
2927
2928 array_arg = expr->value.function.actual;
2929 dim_arg = array_arg->next;
2930
2931 gcc_assert (array_arg->expr->expr_type == EXPR_VARIABLE);
2932
2933 gfc_init_se (&argse, NULL);
2934 gfc_conv_expr_descriptor (&argse, array_arg->expr);
2935 gfc_add_block_to_block (&se->pre, &argse.pre);
2936 gfc_add_block_to_block (&se->post, &argse.post);
2937 desc = argse.expr;
2938
2939 gcc_assert (dim_arg->expr);
2940 gfc_init_se (&argse, NULL);
2941 gfc_conv_expr_type (&argse, dim_arg->expr, gfc_array_index_type);
2942 gfc_add_block_to_block (&se->pre, &argse.pre);
2943 tmp = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
2944 argse.expr, gfc_index_one_node);
2945 se->expr = gfc_conv_descriptor_stride_get (desc, tmp);
2946 }
2947
2948
2949 static void
2950 gfc_conv_intrinsic_abs (gfc_se * se, gfc_expr * expr)
2951 {
2952 tree arg, cabs;
2953
2954 gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
2955
2956 switch (expr->value.function.actual->expr->ts.type)
2957 {
2958 case BT_INTEGER:
2959 case BT_REAL:
2960 se->expr = fold_build1_loc (input_location, ABS_EXPR, TREE_TYPE (arg),
2961 arg);
2962 break;
2963
2964 case BT_COMPLEX:
2965 cabs = gfc_builtin_decl_for_float_kind (BUILT_IN_CABS, expr->ts.kind);
2966 se->expr = build_call_expr_loc (input_location, cabs, 1, arg);
2967 break;
2968
2969 default:
2970 gcc_unreachable ();
2971 }
2972 }
2973
2974
2975 /* Create a complex value from one or two real components. */
2976
2977 static void
2978 gfc_conv_intrinsic_cmplx (gfc_se * se, gfc_expr * expr, int both)
2979 {
2980 tree real;
2981 tree imag;
2982 tree type;
2983 tree *args;
2984 unsigned int num_args;
2985
2986 num_args = gfc_intrinsic_argument_list_length (expr);
2987 args = XALLOCAVEC (tree, num_args);
2988
2989 type = gfc_typenode_for_spec (&expr->ts);
2990 gfc_conv_intrinsic_function_args (se, expr, args, num_args);
2991 real = convert (TREE_TYPE (type), args[0]);
2992 if (both)
2993 imag = convert (TREE_TYPE (type), args[1]);
2994 else if (TREE_CODE (TREE_TYPE (args[0])) == COMPLEX_TYPE)
2995 {
2996 imag = fold_build1_loc (input_location, IMAGPART_EXPR,
2997 TREE_TYPE (TREE_TYPE (args[0])), args[0]);
2998 imag = convert (TREE_TYPE (type), imag);
2999 }
3000 else
3001 imag = build_real_from_int_cst (TREE_TYPE (type), integer_zero_node);
3002
3003 se->expr = fold_build2_loc (input_location, COMPLEX_EXPR, type, real, imag);
3004 }
3005
3006
3007 /* Remainder function MOD(A, P) = A - INT(A / P) * P
3008 MODULO(A, P) = A - FLOOR (A / P) * P
3009
3010 The obvious algorithms above are numerically instable for large
3011 arguments, hence these intrinsics are instead implemented via calls
3012 to the fmod family of functions. It is the responsibility of the
3013 user to ensure that the second argument is non-zero. */
3014
3015 static void
3016 gfc_conv_intrinsic_mod (gfc_se * se, gfc_expr * expr, int modulo)
3017 {
3018 tree type;
3019 tree tmp;
3020 tree test;
3021 tree test2;
3022 tree fmod;
3023 tree zero;
3024 tree args[2];
3025
3026 gfc_conv_intrinsic_function_args (se, expr, args, 2);
3027
3028 switch (expr->ts.type)
3029 {
3030 case BT_INTEGER:
3031 /* Integer case is easy, we've got a builtin op. */
3032 type = TREE_TYPE (args[0]);
3033
3034 if (modulo)
3035 se->expr = fold_build2_loc (input_location, FLOOR_MOD_EXPR, type,
3036 args[0], args[1]);
3037 else
3038 se->expr = fold_build2_loc (input_location, TRUNC_MOD_EXPR, type,
3039 args[0], args[1]);
3040 break;
3041
3042 case BT_REAL:
3043 fmod = NULL_TREE;
3044 /* Check if we have a builtin fmod. */
3045 fmod = gfc_builtin_decl_for_float_kind (BUILT_IN_FMOD, expr->ts.kind);
3046
3047 /* The builtin should always be available. */
3048 gcc_assert (fmod != NULL_TREE);
3049
3050 tmp = build_addr (fmod);
3051 se->expr = build_call_array_loc (input_location,
3052 TREE_TYPE (TREE_TYPE (fmod)),
3053 tmp, 2, args);
3054 if (modulo == 0)
3055 return;
3056
3057 type = TREE_TYPE (args[0]);
3058
3059 args[0] = gfc_evaluate_now (args[0], &se->pre);
3060 args[1] = gfc_evaluate_now (args[1], &se->pre);
3061
3062 /* Definition:
3063 modulo = arg - floor (arg/arg2) * arg2
3064
3065 In order to calculate the result accurately, we use the fmod
3066 function as follows.
3067
3068 res = fmod (arg, arg2);
3069 if (res)
3070 {
3071 if ((arg < 0) xor (arg2 < 0))
3072 res += arg2;
3073 }
3074 else
3075 res = copysign (0., arg2);
3076
3077 => As two nested ternary exprs:
3078
3079 res = res ? (((arg < 0) xor (arg2 < 0)) ? res + arg2 : res)
3080 : copysign (0., arg2);
3081
3082 */
3083
3084 zero = gfc_build_const (type, integer_zero_node);
3085 tmp = gfc_evaluate_now (se->expr, &se->pre);
3086 if (!flag_signed_zeros)
3087 {
3088 test = fold_build2_loc (input_location, LT_EXPR, boolean_type_node,
3089 args[0], zero);
3090 test2 = fold_build2_loc (input_location, LT_EXPR, boolean_type_node,
3091 args[1], zero);
3092 test2 = fold_build2_loc (input_location, TRUTH_XOR_EXPR,
3093 boolean_type_node, test, test2);
3094 test = fold_build2_loc (input_location, NE_EXPR, boolean_type_node,
3095 tmp, zero);
3096 test = fold_build2_loc (input_location, TRUTH_AND_EXPR,
3097 boolean_type_node, test, test2);
3098 test = gfc_evaluate_now (test, &se->pre);
3099 se->expr = fold_build3_loc (input_location, COND_EXPR, type, test,
3100 fold_build2_loc (input_location,
3101 PLUS_EXPR,
3102 type, tmp, args[1]),
3103 tmp);
3104 }
3105 else
3106 {
3107 tree expr1, copysign, cscall;
3108 copysign = gfc_builtin_decl_for_float_kind (BUILT_IN_COPYSIGN,
3109 expr->ts.kind);
3110 test = fold_build2_loc (input_location, LT_EXPR, boolean_type_node,
3111 args[0], zero);
3112 test2 = fold_build2_loc (input_location, LT_EXPR, boolean_type_node,
3113 args[1], zero);
3114 test2 = fold_build2_loc (input_location, TRUTH_XOR_EXPR,
3115 boolean_type_node, test, test2);
3116 expr1 = fold_build3_loc (input_location, COND_EXPR, type, test2,
3117 fold_build2_loc (input_location,
3118 PLUS_EXPR,
3119 type, tmp, args[1]),
3120 tmp);
3121 test = fold_build2_loc (input_location, NE_EXPR, boolean_type_node,
3122 tmp, zero);
3123 cscall = build_call_expr_loc (input_location, copysign, 2, zero,
3124 args[1]);
3125 se->expr = fold_build3_loc (input_location, COND_EXPR, type, test,
3126 expr1, cscall);
3127 }
3128 return;
3129
3130 default:
3131 gcc_unreachable ();
3132 }
3133 }
3134
3135 /* DSHIFTL(I,J,S) = (I << S) | (J >> (BITSIZE(J) - S))
3136 DSHIFTR(I,J,S) = (I << (BITSIZE(I) - S)) | (J >> S)
3137 where the right shifts are logical (i.e. 0's are shifted in).
3138 Because SHIFT_EXPR's want shifts strictly smaller than the integral
3139 type width, we have to special-case both S == 0 and S == BITSIZE(J):
3140 DSHIFTL(I,J,0) = I
3141 DSHIFTL(I,J,BITSIZE) = J
3142 DSHIFTR(I,J,0) = J
3143 DSHIFTR(I,J,BITSIZE) = I. */
3144
3145 static void
3146 gfc_conv_intrinsic_dshift (gfc_se * se, gfc_expr * expr, bool dshiftl)
3147 {
3148 tree type, utype, stype, arg1, arg2, shift, res, left, right;
3149 tree args[3], cond, tmp;
3150 int bitsize;
3151
3152 gfc_conv_intrinsic_function_args (se, expr, args, 3);
3153
3154 gcc_assert (TREE_TYPE (args[0]) == TREE_TYPE (args[1]));
3155 type = TREE_TYPE (args[0]);
3156 bitsize = TYPE_PRECISION (type);
3157 utype = unsigned_type_for (type);
3158 stype = TREE_TYPE (args[2]);
3159
3160 arg1 = gfc_evaluate_now (args[0], &se->pre);
3161 arg2 = gfc_evaluate_now (args[1], &se->pre);
3162 shift = gfc_evaluate_now (args[2], &se->pre);
3163
3164 /* The generic case. */
3165 tmp = fold_build2_loc (input_location, MINUS_EXPR, stype,
3166 build_int_cst (stype, bitsize), shift);
3167 left = fold_build2_loc (input_location, LSHIFT_EXPR, type,
3168 arg1, dshiftl ? shift : tmp);
3169
3170 right = fold_build2_loc (input_location, RSHIFT_EXPR, utype,
3171 fold_convert (utype, arg2), dshiftl ? tmp : shift);
3172 right = fold_convert (type, right);
3173
3174 res = fold_build2_loc (input_location, BIT_IOR_EXPR, type, left, right);
3175
3176 /* Special cases. */
3177 cond = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node, shift,
3178 build_int_cst (stype, 0));
3179 res = fold_build3_loc (input_location, COND_EXPR, type, cond,
3180 dshiftl ? arg1 : arg2, res);
3181
3182 cond = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node, shift,
3183 build_int_cst (stype, bitsize));
3184 res = fold_build3_loc (input_location, COND_EXPR, type, cond,
3185 dshiftl ? arg2 : arg1, res);
3186
3187 se->expr = res;
3188 }
3189
3190
3191 /* Positive difference DIM (x, y) = ((x - y) < 0) ? 0 : x - y. */
3192
3193 static void
3194 gfc_conv_intrinsic_dim (gfc_se * se, gfc_expr * expr)
3195 {
3196 tree val;
3197 tree tmp;
3198 tree type;
3199 tree zero;
3200 tree args[2];
3201
3202 gfc_conv_intrinsic_function_args (se, expr, args, 2);
3203 type = TREE_TYPE (args[0]);
3204
3205 val = fold_build2_loc (input_location, MINUS_EXPR, type, args[0], args[1]);
3206 val = gfc_evaluate_now (val, &se->pre);
3207
3208 zero = gfc_build_const (type, integer_zero_node);
3209 tmp = fold_build2_loc (input_location, LE_EXPR, boolean_type_node, val, zero);
3210 se->expr = fold_build3_loc (input_location, COND_EXPR, type, tmp, zero, val);
3211 }
3212
3213
3214 /* SIGN(A, B) is absolute value of A times sign of B.
3215 The real value versions use library functions to ensure the correct
3216 handling of negative zero. Integer case implemented as:
3217 SIGN(A, B) = { tmp = (A ^ B) >> C; (A + tmp) ^ tmp }
3218 */
3219
3220 static void
3221 gfc_conv_intrinsic_sign (gfc_se * se, gfc_expr * expr)
3222 {
3223 tree tmp;
3224 tree type;
3225 tree args[2];
3226
3227 gfc_conv_intrinsic_function_args (se, expr, args, 2);
3228 if (expr->ts.type == BT_REAL)
3229 {
3230 tree abs;
3231
3232 tmp = gfc_builtin_decl_for_float_kind (BUILT_IN_COPYSIGN, expr->ts.kind);
3233 abs = gfc_builtin_decl_for_float_kind (BUILT_IN_FABS, expr->ts.kind);
3234
3235 /* We explicitly have to ignore the minus sign. We do so by using
3236 result = (arg1 == 0) ? abs(arg0) : copysign(arg0, arg1). */
3237 if (!flag_sign_zero
3238 && MODE_HAS_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (args[1]))))
3239 {
3240 tree cond, zero;
3241 zero = build_real_from_int_cst (TREE_TYPE (args[1]), integer_zero_node);
3242 cond = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node,
3243 args[1], zero);
3244 se->expr = fold_build3_loc (input_location, COND_EXPR,
3245 TREE_TYPE (args[0]), cond,
3246 build_call_expr_loc (input_location, abs, 1,
3247 args[0]),
3248 build_call_expr_loc (input_location, tmp, 2,
3249 args[0], args[1]));
3250 }
3251 else
3252 se->expr = build_call_expr_loc (input_location, tmp, 2,
3253 args[0], args[1]);
3254 return;
3255 }
3256
3257 /* Having excluded floating point types, we know we are now dealing
3258 with signed integer types. */
3259 type = TREE_TYPE (args[0]);
3260
3261 /* Args[0] is used multiple times below. */
3262 args[0] = gfc_evaluate_now (args[0], &se->pre);
3263
3264 /* Construct (A ^ B) >> 31, which generates a bit mask of all zeros if
3265 the signs of A and B are the same, and of all ones if they differ. */
3266 tmp = fold_build2_loc (input_location, BIT_XOR_EXPR, type, args[0], args[1]);
3267 tmp = fold_build2_loc (input_location, RSHIFT_EXPR, type, tmp,
3268 build_int_cst (type, TYPE_PRECISION (type) - 1));
3269 tmp = gfc_evaluate_now (tmp, &se->pre);
3270
3271 /* Construct (A + tmp) ^ tmp, which is A if tmp is zero, and -A if tmp]
3272 is all ones (i.e. -1). */
3273 se->expr = fold_build2_loc (input_location, BIT_XOR_EXPR, type,
3274 fold_build2_loc (input_location, PLUS_EXPR,
3275 type, args[0], tmp), tmp);
3276 }
3277
3278
3279 /* Test for the presence of an optional argument. */
3280
3281 static void
3282 gfc_conv_intrinsic_present (gfc_se * se, gfc_expr * expr)
3283 {
3284 gfc_expr *arg;
3285
3286 arg = expr->value.function.actual->expr;
3287 gcc_assert (arg->expr_type == EXPR_VARIABLE);
3288 se->expr = gfc_conv_expr_present (arg->symtree->n.sym);
3289 se->expr = convert (gfc_typenode_for_spec (&expr->ts), se->expr);
3290 }
3291
3292
3293 /* Calculate the double precision product of two single precision values. */
3294
3295 static void
3296 gfc_conv_intrinsic_dprod (gfc_se * se, gfc_expr * expr)
3297 {
3298 tree type;
3299 tree args[2];
3300
3301 gfc_conv_intrinsic_function_args (se, expr, args, 2);
3302
3303 /* Convert the args to double precision before multiplying. */
3304 type = gfc_typenode_for_spec (&expr->ts);
3305 args[0] = convert (type, args[0]);
3306 args[1] = convert (type, args[1]);
3307 se->expr = fold_build2_loc (input_location, MULT_EXPR, type, args[0],
3308 args[1]);
3309 }
3310
3311
3312 /* Return a length one character string containing an ascii character. */
3313
3314 static void
3315 gfc_conv_intrinsic_char (gfc_se * se, gfc_expr * expr)
3316 {
3317 tree arg[2];
3318 tree var;
3319 tree type;
3320 unsigned int num_args;
3321
3322 num_args = gfc_intrinsic_argument_list_length (expr);
3323 gfc_conv_intrinsic_function_args (se, expr, arg, num_args);
3324
3325 type = gfc_get_char_type (expr->ts.kind);
3326 var = gfc_create_var (type, "char");
3327
3328 arg[0] = fold_build1_loc (input_location, NOP_EXPR, type, arg[0]);
3329 gfc_add_modify (&se->pre, var, arg[0]);
3330 se->expr = gfc_build_addr_expr (build_pointer_type (type), var);
3331 se->string_length = build_int_cst (gfc_charlen_type_node, 1);
3332 }
3333
3334
3335 static void
3336 gfc_conv_intrinsic_ctime (gfc_se * se, gfc_expr * expr)
3337 {
3338 tree var;
3339 tree len;
3340 tree tmp;
3341 tree cond;
3342 tree fndecl;
3343 tree *args;
3344 unsigned int num_args;
3345
3346 num_args = gfc_intrinsic_argument_list_length (expr) + 2;
3347 args = XALLOCAVEC (tree, num_args);
3348
3349 var = gfc_create_var (pchar_type_node, "pstr");
3350 len = gfc_create_var (gfc_charlen_type_node, "len");
3351
3352 gfc_conv_intrinsic_function_args (se, expr, &args[2], num_args - 2);
3353 args[0] = gfc_build_addr_expr (NULL_TREE, var);
3354 args[1] = gfc_build_addr_expr (NULL_TREE, len);
3355
3356 fndecl = build_addr (gfor_fndecl_ctime);
3357 tmp = build_call_array_loc (input_location,
3358 TREE_TYPE (TREE_TYPE (gfor_fndecl_ctime)),
3359 fndecl, num_args, args);
3360 gfc_add_expr_to_block (&se->pre, tmp);
3361
3362 /* Free the temporary afterwards, if necessary. */
3363 cond = fold_build2_loc (input_location, GT_EXPR, boolean_type_node,
3364 len, build_int_cst (TREE_TYPE (len), 0));
3365 tmp = gfc_call_free (var);
3366 tmp = build3_v (COND_EXPR, cond, tmp, build_empty_stmt (input_location));
3367 gfc_add_expr_to_block (&se->post, tmp);
3368
3369 se->expr = var;
3370 se->string_length = len;
3371 }
3372
3373
3374 static void
3375 gfc_conv_intrinsic_fdate (gfc_se * se, gfc_expr * expr)
3376 {
3377 tree var;
3378 tree len;
3379 tree tmp;
3380 tree cond;
3381 tree fndecl;
3382 tree *args;
3383 unsigned int num_args;
3384
3385 num_args = gfc_intrinsic_argument_list_length (expr) + 2;
3386 args = XALLOCAVEC (tree, num_args);
3387
3388 var = gfc_create_var (pchar_type_node, "pstr");
3389 len = gfc_create_var (gfc_charlen_type_node, "len");
3390
3391 gfc_conv_intrinsic_function_args (se, expr, &args[2], num_args - 2);
3392 args[0] = gfc_build_addr_expr (NULL_TREE, var);
3393 args[1] = gfc_build_addr_expr (NULL_TREE, len);
3394
3395 fndecl = build_addr (gfor_fndecl_fdate);
3396 tmp = build_call_array_loc (input_location,
3397 TREE_TYPE (TREE_TYPE (gfor_fndecl_fdate)),
3398 fndecl, num_args, args);
3399 gfc_add_expr_to_block (&se->pre, tmp);
3400
3401 /* Free the temporary afterwards, if necessary. */
3402 cond = fold_build2_loc (input_location, GT_EXPR, boolean_type_node,
3403 len, build_int_cst (TREE_TYPE (len), 0));
3404 tmp = gfc_call_free (var);
3405 tmp = build3_v (COND_EXPR, cond, tmp, build_empty_stmt (input_location));
3406 gfc_add_expr_to_block (&se->post, tmp);
3407
3408 se->expr = var;
3409 se->string_length = len;
3410 }
3411
3412
3413 /* Generate a direct call to free() for the FREE subroutine. */
3414
3415 static tree
3416 conv_intrinsic_free (gfc_code *code)
3417 {
3418 stmtblock_t block;
3419 gfc_se argse;
3420 tree arg, call;
3421
3422 gfc_init_se (&argse, NULL);
3423 gfc_conv_expr (&argse, code->ext.actual->expr);
3424 arg = fold_convert (ptr_type_node, argse.expr);
3425
3426 gfc_init_block (&block);
3427 call = build_call_expr_loc (input_location,
3428 builtin_decl_explicit (BUILT_IN_FREE), 1, arg);
3429 gfc_add_expr_to_block (&block, call);
3430 return gfc_finish_block (&block);
3431 }
3432
3433
3434 /* Call the SYSTEM_CLOCK library functions, handling the type and kind
3435 conversions. */
3436
3437 static tree
3438 conv_intrinsic_system_clock (gfc_code *code)
3439 {
3440 stmtblock_t block;
3441 gfc_se count_se, count_rate_se, count_max_se;
3442 tree arg1 = NULL_TREE, arg2 = NULL_TREE, arg3 = NULL_TREE;
3443 tree tmp;
3444 int least;
3445
3446 gfc_expr *count = code->ext.actual->expr;
3447 gfc_expr *count_rate = code->ext.actual->next->expr;
3448 gfc_expr *count_max = code->ext.actual->next->next->expr;
3449
3450 /* Evaluate our arguments. */
3451 if (count)
3452 {
3453 gfc_init_se (&count_se, NULL);
3454 gfc_conv_expr (&count_se, count);
3455 }
3456
3457 if (count_rate)
3458 {
3459 gfc_init_se (&count_rate_se, NULL);
3460 gfc_conv_expr (&count_rate_se, count_rate);
3461 }
3462
3463 if (count_max)
3464 {
3465 gfc_init_se (&count_max_se, NULL);
3466 gfc_conv_expr (&count_max_se, count_max);
3467 }
3468
3469 /* Find the smallest kind found of the arguments. */
3470 least = 16;
3471 least = (count && count->ts.kind < least) ? count->ts.kind : least;
3472 least = (count_rate && count_rate->ts.kind < least) ? count_rate->ts.kind
3473 : least;
3474 least = (count_max && count_max->ts.kind < least) ? count_max->ts.kind
3475 : least;
3476
3477 /* Prepare temporary variables. */
3478
3479 if (count)
3480 {
3481 if (least >= 8)
3482 arg1 = gfc_create_var (gfc_get_int_type (8), "count");
3483 else if (least == 4)
3484 arg1 = gfc_create_var (gfc_get_int_type (4), "count");
3485 else if (count->ts.kind == 1)
3486 arg1 = gfc_conv_mpz_to_tree (gfc_integer_kinds[0].pedantic_min_int,
3487 count->ts.kind);
3488 else
3489 arg1 = gfc_conv_mpz_to_tree (gfc_integer_kinds[1].pedantic_min_int,
3490 count->ts.kind);
3491 }
3492
3493 if (count_rate)
3494 {
3495 if (least >= 8)
3496 arg2 = gfc_create_var (gfc_get_int_type (8), "count_rate");
3497 else if (least == 4)
3498 arg2 = gfc_create_var (gfc_get_int_type (4), "count_rate");
3499 else
3500 arg2 = integer_zero_node;
3501 }
3502
3503 if (count_max)
3504 {
3505 if (least >= 8)
3506 arg3 = gfc_create_var (gfc_get_int_type (8), "count_max");
3507 else if (least == 4)
3508 arg3 = gfc_create_var (gfc_get_int_type (4), "count_max");
3509 else
3510 arg3 = integer_zero_node;
3511 }
3512
3513 /* Make the function call. */
3514 gfc_init_block (&block);
3515
3516 if (least <= 2)
3517 {
3518 if (least == 1)
3519 {
3520 arg1 ? gfc_build_addr_expr (NULL_TREE, arg1)
3521 : null_pointer_node;
3522 arg2 ? gfc_build_addr_expr (NULL_TREE, arg2)
3523 : null_pointer_node;
3524 arg3 ? gfc_build_addr_expr (NULL_TREE, arg3)
3525 : null_pointer_node;
3526 }
3527
3528 if (least == 2)
3529 {
3530 arg1 ? gfc_build_addr_expr (NULL_TREE, arg1)
3531 : null_pointer_node;
3532 arg2 ? gfc_build_addr_expr (NULL_TREE, arg2)
3533 : null_pointer_node;
3534 arg3 ? gfc_build_addr_expr (NULL_TREE, arg3)
3535 : null_pointer_node;
3536 }
3537 }
3538 else
3539 {
3540 if (least == 4)
3541 {
3542 tmp = build_call_expr_loc (input_location,
3543 gfor_fndecl_system_clock4, 3,
3544 arg1 ? gfc_build_addr_expr (NULL_TREE, arg1)
3545 : null_pointer_node,
3546 arg2 ? gfc_build_addr_expr (NULL_TREE, arg2)
3547 : null_pointer_node,
3548 arg3 ? gfc_build_addr_expr (NULL_TREE, arg3)
3549 : null_pointer_node);
3550 gfc_add_expr_to_block (&block, tmp);
3551 }
3552 /* Handle kind>=8, 10, or 16 arguments */
3553 if (least >= 8)
3554 {
3555 tmp = build_call_expr_loc (input_location,
3556 gfor_fndecl_system_clock8, 3,
3557 arg1 ? gfc_build_addr_expr (NULL_TREE, arg1)
3558 : null_pointer_node,
3559 arg2 ? gfc_build_addr_expr (NULL_TREE, arg2)
3560 : null_pointer_node,
3561 arg3 ? gfc_build_addr_expr (NULL_TREE, arg3)
3562 : null_pointer_node);
3563 gfc_add_expr_to_block (&block, tmp);
3564 }
3565 }
3566
3567 /* And store values back if needed. */
3568 if (arg1 && arg1 != count_se.expr)
3569 gfc_add_modify (&block, count_se.expr,
3570 fold_convert (TREE_TYPE (count_se.expr), arg1));
3571 if (arg2 && arg2 != count_rate_se.expr)
3572 gfc_add_modify (&block, count_rate_se.expr,
3573 fold_convert (TREE_TYPE (count_rate_se.expr), arg2));
3574 if (arg3 && arg3 != count_max_se.expr)
3575 gfc_add_modify (&block, count_max_se.expr,
3576 fold_convert (TREE_TYPE (count_max_se.expr), arg3));
3577
3578 return gfc_finish_block (&block);
3579 }
3580
3581
3582 /* Return a character string containing the tty name. */
3583
3584 static void
3585 gfc_conv_intrinsic_ttynam (gfc_se * se, gfc_expr * expr)
3586 {
3587 tree var;
3588 tree len;
3589 tree tmp;
3590 tree cond;
3591 tree fndecl;
3592 tree *args;
3593 unsigned int num_args;
3594
3595 num_args = gfc_intrinsic_argument_list_length (expr) + 2;
3596 args = XALLOCAVEC (tree, num_args);
3597
3598 var = gfc_create_var (pchar_type_node, "pstr");
3599 len = gfc_create_var (gfc_charlen_type_node, "len");
3600
3601 gfc_conv_intrinsic_function_args (se, expr, &args[2], num_args - 2);
3602 args[0] = gfc_build_addr_expr (NULL_TREE, var);
3603 args[1] = gfc_build_addr_expr (NULL_TREE, len);
3604
3605 fndecl = build_addr (gfor_fndecl_ttynam);
3606 tmp = build_call_array_loc (input_location,
3607 TREE_TYPE (TREE_TYPE (gfor_fndecl_ttynam)),
3608 fndecl, num_args, args);
3609 gfc_add_expr_to_block (&se->pre, tmp);
3610
3611 /* Free the temporary afterwards, if necessary. */
3612 cond = fold_build2_loc (input_location, GT_EXPR, boolean_type_node,
3613 len, build_int_cst (TREE_TYPE (len), 0));
3614 tmp = gfc_call_free (var);
3615 tmp = build3_v (COND_EXPR, cond, tmp, build_empty_stmt (input_location));
3616 gfc_add_expr_to_block (&se->post, tmp);
3617
3618 se->expr = var;
3619 se->string_length = len;
3620 }
3621
3622
3623 /* Get the minimum/maximum value of all the parameters.
3624 minmax (a1, a2, a3, ...)
3625 {
3626 mvar = a1;
3627 if (a2 .op. mvar || isnan (mvar))
3628 mvar = a2;
3629 if (a3 .op. mvar || isnan (mvar))
3630 mvar = a3;
3631 ...
3632 return mvar
3633 }
3634 */
3635
3636 /* TODO: Mismatching types can occur when specific names are used.
3637 These should be handled during resolution. */
3638 static void
3639 gfc_conv_intrinsic_minmax (gfc_se * se, gfc_expr * expr, enum tree_code op)
3640 {
3641 tree tmp;
3642 tree mvar;
3643 tree val;
3644 tree thencase;
3645 tree *args;
3646 tree type;
3647 gfc_actual_arglist *argexpr;
3648 unsigned int i, nargs;
3649
3650 nargs = gfc_intrinsic_argument_list_length (expr);
3651 args = XALLOCAVEC (tree, nargs);
3652
3653 gfc_conv_intrinsic_function_args (se, expr, args, nargs);
3654 type = gfc_typenode_for_spec (&expr->ts);
3655
3656 argexpr = expr->value.function.actual;
3657 if (TREE_TYPE (args[0]) != type)
3658 args[0] = convert (type, args[0]);
3659 /* Only evaluate the argument once. */
3660 if (!VAR_P (args[0]) && !TREE_CONSTANT (args[0]))
3661 args[0] = gfc_evaluate_now (args[0], &se->pre);
3662
3663 mvar = gfc_create_var (type, "M");
3664 gfc_add_modify (&se->pre, mvar, args[0]);
3665 for (i = 1, argexpr = argexpr->next; i < nargs; i++)
3666 {
3667 tree cond, isnan;
3668
3669 val = args[i];
3670
3671 /* Handle absent optional arguments by ignoring the comparison. */
3672 if (argexpr->expr->expr_type == EXPR_VARIABLE
3673 && argexpr->expr->symtree->n.sym->attr.optional
3674 && TREE_CODE (val) == INDIRECT_REF)
3675 cond = fold_build2_loc (input_location,
3676 NE_EXPR, boolean_type_node,
3677 TREE_OPERAND (val, 0),
3678 build_int_cst (TREE_TYPE (TREE_OPERAND (val, 0)), 0));
3679 else
3680 {
3681 cond = NULL_TREE;
3682
3683 /* Only evaluate the argument once. */
3684 if (!VAR_P (val) && !TREE_CONSTANT (val))
3685 val = gfc_evaluate_now (val, &se->pre);
3686 }
3687
3688 thencase = build2_v (MODIFY_EXPR, mvar, convert (type, val));
3689
3690 tmp = fold_build2_loc (input_location, op, boolean_type_node,
3691 convert (type, val), mvar);
3692
3693 /* FIXME: When the IEEE_ARITHMETIC module is implemented, the call to
3694 __builtin_isnan might be made dependent on that module being loaded,
3695 to help performance of programs that don't rely on IEEE semantics. */
3696 if (FLOAT_TYPE_P (TREE_TYPE (mvar)))
3697 {
3698 isnan = build_call_expr_loc (input_location,
3699 builtin_decl_explicit (BUILT_IN_ISNAN),
3700 1, mvar);
3701 tmp = fold_build2_loc (input_location, TRUTH_OR_EXPR,
3702 boolean_type_node, tmp,
3703 fold_convert (boolean_type_node, isnan));
3704 }
3705 tmp = build3_v (COND_EXPR, tmp, thencase,
3706 build_empty_stmt (input_location));
3707
3708 if (cond != NULL_TREE)
3709 tmp = build3_v (COND_EXPR, cond, tmp,
3710 build_empty_stmt (input_location));
3711
3712 gfc_add_expr_to_block (&se->pre, tmp);
3713 argexpr = argexpr->next;
3714 }
3715 se->expr = mvar;
3716 }
3717
3718
3719 /* Generate library calls for MIN and MAX intrinsics for character
3720 variables. */
3721 static void
3722 gfc_conv_intrinsic_minmax_char (gfc_se * se, gfc_expr * expr, int op)
3723 {
3724 tree *args;
3725 tree var, len, fndecl, tmp, cond, function;
3726 unsigned int nargs;
3727
3728 nargs = gfc_intrinsic_argument_list_length (expr);
3729 args = XALLOCAVEC (tree, nargs + 4);
3730 gfc_conv_intrinsic_function_args (se, expr, &args[4], nargs);
3731
3732 /* Create the result variables. */
3733 len = gfc_create_var (gfc_charlen_type_node, "len");
3734 args[0] = gfc_build_addr_expr (NULL_TREE, len);
3735 var = gfc_create_var (gfc_get_pchar_type (expr->ts.kind), "pstr");
3736 args[1] = gfc_build_addr_expr (ppvoid_type_node, var);
3737 args[2] = build_int_cst (integer_type_node, op);
3738 args[3] = build_int_cst (integer_type_node, nargs / 2);
3739
3740 if (expr->ts.kind == 1)
3741 function = gfor_fndecl_string_minmax;
3742 else if (expr->ts.kind == 4)
3743 function = gfor_fndecl_string_minmax_char4;
3744 else
3745 gcc_unreachable ();
3746
3747 /* Make the function call. */
3748 fndecl = build_addr (function);
3749 tmp = build_call_array_loc (input_location,
3750 TREE_TYPE (TREE_TYPE (function)), fndecl,
3751 nargs + 4, args);
3752 gfc_add_expr_to_block (&se->pre, tmp);
3753
3754 /* Free the temporary afterwards, if necessary. */
3755 cond = fold_build2_loc (input_location, GT_EXPR, boolean_type_node,
3756 len, build_int_cst (TREE_TYPE (len), 0));
3757 tmp = gfc_call_free (var);
3758 tmp = build3_v (COND_EXPR, cond, tmp, build_empty_stmt (input_location));
3759 gfc_add_expr_to_block (&se->post, tmp);
3760
3761 se->expr = var;
3762 se->string_length = len;
3763 }
3764
3765
3766 /* Create a symbol node for this intrinsic. The symbol from the frontend
3767 has the generic name. */
3768
3769 static gfc_symbol *
3770 gfc_get_symbol_for_expr (gfc_expr * expr, bool ignore_optional)
3771 {
3772 gfc_symbol *sym;
3773
3774 /* TODO: Add symbols for intrinsic function to the global namespace. */
3775 gcc_assert (strlen (expr->value.function.name) <= GFC_MAX_SYMBOL_LEN - 5);
3776 sym = gfc_new_symbol (expr->value.function.name, NULL);
3777
3778 sym->ts = expr->ts;
3779 sym->attr.external = 1;
3780 sym->attr.function = 1;
3781 sym->attr.always_explicit = 1;
3782 sym->attr.proc = PROC_INTRINSIC;
3783 sym->attr.flavor = FL_PROCEDURE;
3784 sym->result = sym;
3785 if (expr->rank > 0)
3786 {
3787 sym->attr.dimension = 1;
3788 sym->as = gfc_get_array_spec ();
3789 sym->as->type = AS_ASSUMED_SHAPE;
3790 sym->as->rank = expr->rank;
3791 }
3792
3793 gfc_copy_formal_args_intr (sym, expr->value.function.isym,
3794 ignore_optional ? expr->value.function.actual
3795 : NULL);
3796
3797 return sym;
3798 }
3799
3800 /* Generate a call to an external intrinsic function. */
3801 static void
3802 gfc_conv_intrinsic_funcall (gfc_se * se, gfc_expr * expr)
3803 {
3804 gfc_symbol *sym;
3805 vec<tree, va_gc> *append_args;
3806
3807 gcc_assert (!se->ss || se->ss->info->expr == expr);
3808
3809 if (se->ss)
3810 gcc_assert (expr->rank > 0);
3811 else
3812 gcc_assert (expr->rank == 0);
3813
3814 sym = gfc_get_symbol_for_expr (expr, se->ignore_optional);
3815
3816 /* Calls to libgfortran_matmul need to be appended special arguments,
3817 to be able to call the BLAS ?gemm functions if required and possible. */
3818 append_args = NULL;
3819 if (expr->value.function.isym->id == GFC_ISYM_MATMUL
3820 && sym->ts.type != BT_LOGICAL)
3821 {
3822 tree cint = gfc_get_int_type (gfc_c_int_kind);
3823
3824 if (flag_external_blas
3825 && (sym->ts.type == BT_REAL || sym->ts.type == BT_COMPLEX)
3826 && (sym->ts.kind == 4 || sym->ts.kind == 8))
3827 {
3828 tree gemm_fndecl;
3829
3830 if (sym->ts.type == BT_REAL)
3831 {
3832 if (sym->ts.kind == 4)
3833 gemm_fndecl = gfor_fndecl_sgemm;
3834 else
3835 gemm_fndecl = gfor_fndecl_dgemm;
3836 }
3837 else
3838 {
3839 if (sym->ts.kind == 4)
3840 gemm_fndecl = gfor_fndecl_cgemm;
3841 else
3842 gemm_fndecl = gfor_fndecl_zgemm;
3843 }
3844
3845 vec_alloc (append_args, 3);
3846 append_args->quick_push (build_int_cst (cint, 1));
3847 append_args->quick_push (build_int_cst (cint,
3848 flag_blas_matmul_limit));
3849 append_args->quick_push (gfc_build_addr_expr (NULL_TREE,
3850 gemm_fndecl));
3851 }
3852 else
3853 {
3854 vec_alloc (append_args, 3);
3855 append_args->quick_push (build_int_cst (cint, 0));
3856 append_args->quick_push (build_int_cst (cint, 0));
3857 append_args->quick_push (null_pointer_node);
3858 }
3859 }
3860
3861 gfc_conv_procedure_call (se, sym, expr->value.function.actual, expr,
3862 append_args);
3863 gfc_free_symbol (sym);
3864 }
3865
3866 /* ANY and ALL intrinsics. ANY->op == NE_EXPR, ALL->op == EQ_EXPR.
3867 Implemented as
3868 any(a)
3869 {
3870 forall (i=...)
3871 if (a[i] != 0)
3872 return 1
3873 end forall
3874 return 0
3875 }
3876 all(a)
3877 {
3878 forall (i=...)
3879 if (a[i] == 0)
3880 return 0
3881 end forall
3882 return 1
3883 }
3884 */
3885 static void
3886 gfc_conv_intrinsic_anyall (gfc_se * se, gfc_expr * expr, enum tree_code op)
3887 {
3888 tree resvar;
3889 stmtblock_t block;
3890 stmtblock_t body;
3891 tree type;
3892 tree tmp;
3893 tree found;
3894 gfc_loopinfo loop;
3895 gfc_actual_arglist *actual;
3896 gfc_ss *arrayss;
3897 gfc_se arrayse;
3898 tree exit_label;
3899
3900 if (se->ss)
3901 {
3902 gfc_conv_intrinsic_funcall (se, expr);
3903 return;
3904 }
3905
3906 actual = expr->value.function.actual;
3907 type = gfc_typenode_for_spec (&expr->ts);
3908 /* Initialize the result. */
3909 resvar = gfc_create_var (type, "test");
3910 if (op == EQ_EXPR)
3911 tmp = convert (type, boolean_true_node);
3912 else
3913 tmp = convert (type, boolean_false_node);
3914 gfc_add_modify (&se->pre, resvar, tmp);
3915
3916 /* Walk the arguments. */
3917 arrayss = gfc_walk_expr (actual->expr);
3918 gcc_assert (arrayss != gfc_ss_terminator);
3919
3920 /* Initialize the scalarizer. */
3921 gfc_init_loopinfo (&loop);
3922 exit_label = gfc_build_label_decl (NULL_TREE);
3923 TREE_USED (exit_label) = 1;
3924 gfc_add_ss_to_loop (&loop, arrayss);
3925
3926 /* Initialize the loop. */
3927 gfc_conv_ss_startstride (&loop);
3928 gfc_conv_loop_setup (&loop, &expr->where);
3929
3930 gfc_mark_ss_chain_used (arrayss, 1);
3931 /* Generate the loop body. */
3932 gfc_start_scalarized_body (&loop, &body);
3933
3934 /* If the condition matches then set the return value. */
3935 gfc_start_block (&block);
3936 if (op == EQ_EXPR)
3937 tmp = convert (type, boolean_false_node);
3938 else
3939 tmp = convert (type, boolean_true_node);
3940 gfc_add_modify (&block, resvar, tmp);
3941
3942 /* And break out of the loop. */
3943 tmp = build1_v (GOTO_EXPR, exit_label);
3944 gfc_add_expr_to_block (&block, tmp);
3945
3946 found = gfc_finish_block (&block);
3947
3948 /* Check this element. */
3949 gfc_init_se (&arrayse, NULL);
3950 gfc_copy_loopinfo_to_se (&arrayse, &loop);
3951 arrayse.ss = arrayss;
3952 gfc_conv_expr_val (&arrayse, actual->expr);
3953
3954 gfc_add_block_to_block (&body, &arrayse.pre);
3955 tmp = fold_build2_loc (input_location, op, boolean_type_node, arrayse.expr,
3956 build_int_cst (TREE_TYPE (arrayse.expr), 0));
3957 tmp = build3_v (COND_EXPR, tmp, found, build_empty_stmt (input_location));
3958 gfc_add_expr_to_block (&body, tmp);
3959 gfc_add_block_to_block (&body, &arrayse.post);
3960
3961 gfc_trans_scalarizing_loops (&loop, &body);
3962
3963 /* Add the exit label. */
3964 tmp = build1_v (LABEL_EXPR, exit_label);
3965 gfc_add_expr_to_block (&loop.pre, tmp);
3966
3967 gfc_add_block_to_block (&se->pre, &loop.pre);
3968 gfc_add_block_to_block (&se->pre, &loop.post);
3969 gfc_cleanup_loop (&loop);
3970
3971 se->expr = resvar;
3972 }
3973
3974 /* COUNT(A) = Number of true elements in A. */
3975 static void
3976 gfc_conv_intrinsic_count (gfc_se * se, gfc_expr * expr)
3977 {
3978 tree resvar;
3979 tree type;
3980 stmtblock_t body;
3981 tree tmp;
3982 gfc_loopinfo loop;
3983 gfc_actual_arglist *actual;
3984 gfc_ss *arrayss;
3985 gfc_se arrayse;
3986
3987 if (se->ss)
3988 {
3989 gfc_conv_intrinsic_funcall (se, expr);
3990 return;
3991 }
3992
3993 actual = expr->value.function.actual;
3994
3995 type = gfc_typenode_for_spec (&expr->ts);
3996 /* Initialize the result. */
3997 resvar = gfc_create_var (type, "count");
3998 gfc_add_modify (&se->pre, resvar, build_int_cst (type, 0));
3999
4000 /* Walk the arguments. */
4001 arrayss = gfc_walk_expr (actual->expr);
4002 gcc_assert (arrayss != gfc_ss_terminator);
4003
4004 /* Initialize the scalarizer. */
4005 gfc_init_loopinfo (&loop);
4006 gfc_add_ss_to_loop (&loop, arrayss);
4007
4008 /* Initialize the loop. */
4009 gfc_conv_ss_startstride (&loop);
4010 gfc_conv_loop_setup (&loop, &expr->where);
4011
4012 gfc_mark_ss_chain_used (arrayss, 1);
4013 /* Generate the loop body. */
4014 gfc_start_scalarized_body (&loop, &body);
4015
4016 tmp = fold_build2_loc (input_location, PLUS_EXPR, TREE_TYPE (resvar),
4017 resvar, build_int_cst (TREE_TYPE (resvar), 1));
4018 tmp = build2_v (MODIFY_EXPR, resvar, tmp);
4019
4020 gfc_init_se (&arrayse, NULL);
4021 gfc_copy_loopinfo_to_se (&arrayse, &loop);
4022 arrayse.ss = arrayss;
4023 gfc_conv_expr_val (&arrayse, actual->expr);
4024 tmp = build3_v (COND_EXPR, arrayse.expr, tmp,
4025 build_empty_stmt (input_location));
4026
4027 gfc_add_block_to_block (&body, &arrayse.pre);
4028 gfc_add_expr_to_block (&body, tmp);
4029 gfc_add_block_to_block (&body, &arrayse.post);
4030
4031 gfc_trans_scalarizing_loops (&loop, &body);
4032
4033 gfc_add_block_to_block (&se->pre, &loop.pre);
4034 gfc_add_block_to_block (&se->pre, &loop.post);
4035 gfc_cleanup_loop (&loop);
4036
4037 se->expr = resvar;
4038 }
4039
4040
4041 /* Update given gfc_se to have ss component pointing to the nested gfc_ss
4042 struct and return the corresponding loopinfo. */
4043
4044 static gfc_loopinfo *
4045 enter_nested_loop (gfc_se *se)
4046 {
4047 se->ss = se->ss->nested_ss;
4048 gcc_assert (se->ss == se->ss->loop->ss);
4049
4050 return se->ss->loop;
4051 }
4052
4053
4054 /* Inline implementation of the sum and product intrinsics. */
4055 static void
4056 gfc_conv_intrinsic_arith (gfc_se * se, gfc_expr * expr, enum tree_code op,
4057 bool norm2)
4058 {
4059 tree resvar;
4060 tree scale = NULL_TREE;
4061 tree type;
4062 stmtblock_t body;
4063 stmtblock_t block;
4064 tree tmp;
4065 gfc_loopinfo loop, *ploop;
4066 gfc_actual_arglist *arg_array, *arg_mask;
4067 gfc_ss *arrayss = NULL;
4068 gfc_ss *maskss = NULL;
4069 gfc_se arrayse;
4070 gfc_se maskse;
4071 gfc_se *parent_se;
4072 gfc_expr *arrayexpr;
4073 gfc_expr *maskexpr;
4074
4075 if (expr->rank > 0)
4076 {
4077 gcc_assert (gfc_inline_intrinsic_function_p (expr));
4078 parent_se = se;
4079 }
4080 else
4081 parent_se = NULL;
4082
4083 type = gfc_typenode_for_spec (&expr->ts);
4084 /* Initialize the result. */
4085 resvar = gfc_create_var (type, "val");
4086 if (norm2)
4087 {
4088 /* result = 0.0;
4089 scale = 1.0. */
4090 scale = gfc_create_var (type, "scale");
4091 gfc_add_modify (&se->pre, scale,
4092 gfc_build_const (type, integer_one_node));
4093 tmp = gfc_build_const (type, integer_zero_node);
4094 }
4095 else if (op == PLUS_EXPR || op == BIT_IOR_EXPR || op == BIT_XOR_EXPR)
4096 tmp = gfc_build_const (type, integer_zero_node);
4097 else if (op == NE_EXPR)
4098 /* PARITY. */
4099 tmp = convert (type, boolean_false_node);
4100 else if (op == BIT_AND_EXPR)
4101 tmp = gfc_build_const (type, fold_build1_loc (input_location, NEGATE_EXPR,
4102 type, integer_one_node));
4103 else
4104 tmp = gfc_build_const (type, integer_one_node);
4105
4106 gfc_add_modify (&se->pre, resvar, tmp);
4107
4108 arg_array = expr->value.function.actual;
4109
4110 arrayexpr = arg_array->expr;
4111
4112 if (op == NE_EXPR || norm2)
4113 /* PARITY and NORM2. */
4114 maskexpr = NULL;
4115 else
4116 {
4117 arg_mask = arg_array->next->next;
4118 gcc_assert (arg_mask != NULL);
4119 maskexpr = arg_mask->expr;
4120 }
4121
4122 if (expr->rank == 0)
4123 {
4124 /* Walk the arguments. */
4125 arrayss = gfc_walk_expr (arrayexpr);
4126 gcc_assert (arrayss != gfc_ss_terminator);
4127
4128 if (maskexpr && maskexpr->rank > 0)
4129 {
4130 maskss = gfc_walk_expr (maskexpr);
4131 gcc_assert (maskss != gfc_ss_terminator);
4132 }
4133 else
4134 maskss = NULL;
4135
4136 /* Initialize the scalarizer. */
4137 gfc_init_loopinfo (&loop);
4138 gfc_add_ss_to_loop (&loop, arrayss);
4139 if (maskexpr && maskexpr->rank > 0)
4140 gfc_add_ss_to_loop (&loop, maskss);
4141
4142 /* Initialize the loop. */
4143 gfc_conv_ss_startstride (&loop);
4144 gfc_conv_loop_setup (&loop, &expr->where);
4145
4146 gfc_mark_ss_chain_used (arrayss, 1);
4147 if (maskexpr && maskexpr->rank > 0)
4148 gfc_mark_ss_chain_used (maskss, 1);
4149
4150 ploop = &loop;
4151 }
4152 else
4153 /* All the work has been done in the parent loops. */
4154 ploop = enter_nested_loop (se);
4155
4156 gcc_assert (ploop);
4157
4158 /* Generate the loop body. */
4159 gfc_start_scalarized_body (ploop, &body);
4160
4161 /* If we have a mask, only add this element if the mask is set. */
4162 if (maskexpr && maskexpr->rank > 0)
4163 {
4164 gfc_init_se (&maskse, parent_se);
4165 gfc_copy_loopinfo_to_se (&maskse, ploop);
4166 if (expr->rank == 0)
4167 maskse.ss = maskss;
4168 gfc_conv_expr_val (&maskse, maskexpr);
4169 gfc_add_block_to_block (&body, &maskse.pre);
4170
4171 gfc_start_block (&block);
4172 }
4173 else
4174 gfc_init_block (&block);
4175
4176 /* Do the actual summation/product. */
4177 gfc_init_se (&arrayse, parent_se);
4178 gfc_copy_loopinfo_to_se (&arrayse, ploop);
4179 if (expr->rank == 0)
4180 arrayse.ss = arrayss;
4181 gfc_conv_expr_val (&arrayse, arrayexpr);
4182 gfc_add_block_to_block (&block, &arrayse.pre);
4183
4184 if (norm2)
4185 {
4186 /* if (x (i) != 0.0)
4187 {
4188 absX = abs(x(i))
4189 if (absX > scale)
4190 {
4191 val = scale/absX;
4192 result = 1.0 + result * val * val;
4193 scale = absX;
4194 }
4195 else
4196 {
4197 val = absX/scale;
4198 result += val * val;
4199 }
4200 } */
4201 tree res1, res2, cond, absX, val;
4202 stmtblock_t ifblock1, ifblock2, ifblock3;
4203
4204 gfc_init_block (&ifblock1);
4205
4206 absX = gfc_create_var (type, "absX");
4207 gfc_add_modify (&ifblock1, absX,
4208 fold_build1_loc (input_location, ABS_EXPR, type,
4209 arrayse.expr));
4210 val = gfc_create_var (type, "val");
4211 gfc_add_expr_to_block (&ifblock1, val);
4212
4213 gfc_init_block (&ifblock2);
4214 gfc_add_modify (&ifblock2, val,
4215 fold_build2_loc (input_location, RDIV_EXPR, type, scale,
4216 absX));
4217 res1 = fold_build2_loc (input_location, MULT_EXPR, type, val, val);
4218 res1 = fold_build2_loc (input_location, MULT_EXPR, type, resvar, res1);
4219 res1 = fold_build2_loc (input_location, PLUS_EXPR, type, res1,
4220 gfc_build_const (type, integer_one_node));
4221 gfc_add_modify (&ifblock2, resvar, res1);
4222 gfc_add_modify (&ifblock2, scale, absX);
4223 res1 = gfc_finish_block (&ifblock2);
4224
4225 gfc_init_block (&ifblock3);
4226 gfc_add_modify (&ifblock3, val,
4227 fold_build2_loc (input_location, RDIV_EXPR, type, absX,
4228 scale));
4229 res2 = fold_build2_loc (input_location, MULT_EXPR, type, val, val);
4230 res2 = fold_build2_loc (input_location, PLUS_EXPR, type, resvar, res2);
4231 gfc_add_modify (&ifblock3, resvar, res2);
4232 res2 = gfc_finish_block (&ifblock3);
4233
4234 cond = fold_build2_loc (input_location, GT_EXPR, boolean_type_node,
4235 absX, scale);
4236 tmp = build3_v (COND_EXPR, cond, res1, res2);
4237 gfc_add_expr_to_block (&ifblock1, tmp);
4238 tmp = gfc_finish_block (&ifblock1);
4239
4240 cond = fold_build2_loc (input_location, NE_EXPR, boolean_type_node,
4241 arrayse.expr,
4242 gfc_build_const (type, integer_zero_node));
4243
4244 tmp = build3_v (COND_EXPR, cond, tmp, build_empty_stmt (input_location));
4245 gfc_add_expr_to_block (&block, tmp);
4246 }
4247 else
4248 {
4249 tmp = fold_build2_loc (input_location, op, type, resvar, arrayse.expr);
4250 gfc_add_modify (&block, resvar, tmp);
4251 }
4252
4253 gfc_add_block_to_block (&block, &arrayse.post);
4254
4255 if (maskexpr && maskexpr->rank > 0)
4256 {
4257 /* We enclose the above in if (mask) {...} . */
4258
4259 tmp = gfc_finish_block (&block);
4260 tmp = build3_v (COND_EXPR, maskse.expr, tmp,
4261 build_empty_stmt (input_location));
4262 }
4263 else
4264 tmp = gfc_finish_block (&block);
4265 gfc_add_expr_to_block (&body, tmp);
4266
4267 gfc_trans_scalarizing_loops (ploop, &body);
4268
4269 /* For a scalar mask, enclose the loop in an if statement. */
4270 if (maskexpr && maskexpr->rank == 0)
4271 {
4272 gfc_init_block (&block);
4273 gfc_add_block_to_block (&block, &ploop->pre);
4274 gfc_add_block_to_block (&block, &ploop->post);
4275 tmp = gfc_finish_block (&block);
4276
4277 if (expr->rank > 0)
4278 {
4279 tmp = build3_v (COND_EXPR, se->ss->info->data.scalar.value, tmp,
4280 build_empty_stmt (input_location));
4281 gfc_advance_se_ss_chain (se);
4282 }
4283 else
4284 {
4285 gcc_assert (expr->rank == 0);
4286 gfc_init_se (&maskse, NULL);
4287 gfc_conv_expr_val (&maskse, maskexpr);
4288 tmp = build3_v (COND_EXPR, maskse.expr, tmp,
4289 build_empty_stmt (input_location));
4290 }
4291
4292 gfc_add_expr_to_block (&block, tmp);
4293 gfc_add_block_to_block (&se->pre, &block);
4294 gcc_assert (se->post.head == NULL);
4295 }
4296 else
4297 {
4298 gfc_add_block_to_block (&se->pre, &ploop->pre);
4299 gfc_add_block_to_block (&se->pre, &ploop->post);
4300 }
4301
4302 if (expr->rank == 0)
4303 gfc_cleanup_loop (ploop);
4304
4305 if (norm2)
4306 {
4307 /* result = scale * sqrt(result). */
4308 tree sqrt;
4309 sqrt = gfc_builtin_decl_for_float_kind (BUILT_IN_SQRT, expr->ts.kind);
4310 resvar = build_call_expr_loc (input_location,
4311 sqrt, 1, resvar);
4312 resvar = fold_build2_loc (input_location, MULT_EXPR, type, scale, resvar);
4313 }
4314
4315 se->expr = resvar;
4316 }
4317
4318
4319 /* Inline implementation of the dot_product intrinsic. This function
4320 is based on gfc_conv_intrinsic_arith (the previous function). */
4321 static void
4322 gfc_conv_intrinsic_dot_product (gfc_se * se, gfc_expr * expr)
4323 {
4324 tree resvar;
4325 tree type;
4326 stmtblock_t body;
4327 stmtblock_t block;
4328 tree tmp;
4329 gfc_loopinfo loop;
4330 gfc_actual_arglist *actual;
4331 gfc_ss *arrayss1, *arrayss2;
4332 gfc_se arrayse1, arrayse2;
4333 gfc_expr *arrayexpr1, *arrayexpr2;
4334
4335 type = gfc_typenode_for_spec (&expr->ts);
4336
4337 /* Initialize the result. */
4338 resvar = gfc_create_var (type, "val");
4339 if (expr->ts.type == BT_LOGICAL)
4340 tmp = build_int_cst (type, 0);
4341 else
4342 tmp = gfc_build_const (type, integer_zero_node);
4343
4344 gfc_add_modify (&se->pre, resvar, tmp);
4345
4346 /* Walk argument #1. */
4347 actual = expr->value.function.actual;
4348 arrayexpr1 = actual->expr;
4349 arrayss1 = gfc_walk_expr (arrayexpr1);
4350 gcc_assert (arrayss1 != gfc_ss_terminator);
4351
4352 /* Walk argument #2. */
4353 actual = actual->next;
4354 arrayexpr2 = actual->expr;
4355 arrayss2 = gfc_walk_expr (arrayexpr2);
4356 gcc_assert (arrayss2 != gfc_ss_terminator);
4357
4358 /* Initialize the scalarizer. */
4359 gfc_init_loopinfo (&loop);
4360 gfc_add_ss_to_loop (&loop, arrayss1);
4361 gfc_add_ss_to_loop (&loop, arrayss2);
4362
4363 /* Initialize the loop. */
4364 gfc_conv_ss_startstride (&loop);
4365 gfc_conv_loop_setup (&loop, &expr->where);
4366
4367 gfc_mark_ss_chain_used (arrayss1, 1);
4368 gfc_mark_ss_chain_used (arrayss2, 1);
4369
4370 /* Generate the loop body. */
4371 gfc_start_scalarized_body (&loop, &body);
4372 gfc_init_block (&block);
4373
4374 /* Make the tree expression for [conjg(]array1[)]. */
4375 gfc_init_se (&arrayse1, NULL);
4376 gfc_copy_loopinfo_to_se (&arrayse1, &loop);
4377 arrayse1.ss = arrayss1;
4378 gfc_conv_expr_val (&arrayse1, arrayexpr1);
4379 if (expr->ts.type == BT_COMPLEX)
4380 arrayse1.expr = fold_build1_loc (input_location, CONJ_EXPR, type,
4381 arrayse1.expr);
4382 gfc_add_block_to_block (&block, &arrayse1.pre);
4383
4384 /* Make the tree expression for array2. */
4385 gfc_init_se (&arrayse2, NULL);
4386 gfc_copy_loopinfo_to_se (&arrayse2, &loop);
4387 arrayse2.ss = arrayss2;
4388 gfc_conv_expr_val (&arrayse2, arrayexpr2);
4389 gfc_add_block_to_block (&block, &arrayse2.pre);
4390
4391 /* Do the actual product and sum. */
4392 if (expr->ts.type == BT_LOGICAL)
4393 {
4394 tmp = fold_build2_loc (input_location, TRUTH_AND_EXPR, type,
4395 arrayse1.expr, arrayse2.expr);
4396 tmp = fold_build2_loc (input_location, TRUTH_OR_EXPR, type, resvar, tmp);
4397 }
4398 else
4399 {
4400 tmp = fold_build2_loc (input_location, MULT_EXPR, type, arrayse1.expr,
4401 arrayse2.expr);
4402 tmp = fold_build2_loc (input_location, PLUS_EXPR, type, resvar, tmp);
4403 }
4404 gfc_add_modify (&block, resvar, tmp);
4405
4406 /* Finish up the loop block and the loop. */
4407 tmp = gfc_finish_block (&block);
4408 gfc_add_expr_to_block (&body, tmp);
4409
4410 gfc_trans_scalarizing_loops (&loop, &body);
4411 gfc_add_block_to_block (&se->pre, &loop.pre);
4412 gfc_add_block_to_block (&se->pre, &loop.post);
4413 gfc_cleanup_loop (&loop);
4414
4415 se->expr = resvar;
4416 }
4417
4418
4419 /* Emit code for minloc or maxloc intrinsic. There are many different cases
4420 we need to handle. For performance reasons we sometimes create two
4421 loops instead of one, where the second one is much simpler.
4422 Examples for minloc intrinsic:
4423 1) Result is an array, a call is generated
4424 2) Array mask is used and NaNs need to be supported:
4425 limit = Infinity;
4426 pos = 0;
4427 S = from;
4428 while (S <= to) {
4429 if (mask[S]) {
4430 if (pos == 0) pos = S + (1 - from);
4431 if (a[S] <= limit) { limit = a[S]; pos = S + (1 - from); goto lab1; }
4432 }
4433 S++;
4434 }
4435 goto lab2;
4436 lab1:;
4437 while (S <= to) {
4438 if (mask[S]) if (a[S] < limit) { limit = a[S]; pos = S + (1 - from); }
4439 S++;
4440 }
4441 lab2:;
4442 3) NaNs need to be supported, but it is known at compile time or cheaply
4443 at runtime whether array is nonempty or not:
4444 limit = Infinity;
4445 pos = 0;
4446 S = from;
4447 while (S <= to) {
4448 if (a[S] <= limit) { limit = a[S]; pos = S + (1 - from); goto lab1; }
4449 S++;
4450 }
4451 if (from <= to) pos = 1;
4452 goto lab2;
4453 lab1:;
4454 while (S <= to) {
4455 if (a[S] < limit) { limit = a[S]; pos = S + (1 - from); }
4456 S++;
4457 }
4458 lab2:;
4459 4) NaNs aren't supported, array mask is used:
4460 limit = infinities_supported ? Infinity : huge (limit);
4461 pos = 0;
4462 S = from;
4463 while (S <= to) {
4464 if (mask[S]) { limit = a[S]; pos = S + (1 - from); goto lab1; }
4465 S++;
4466 }
4467 goto lab2;
4468 lab1:;
4469 while (S <= to) {
4470 if (mask[S]) if (a[S] < limit) { limit = a[S]; pos = S + (1 - from); }
4471 S++;
4472 }
4473 lab2:;
4474 5) Same without array mask:
4475 limit = infinities_supported ? Infinity : huge (limit);
4476 pos = (from <= to) ? 1 : 0;
4477 S = from;
4478 while (S <= to) {
4479 if (a[S] < limit) { limit = a[S]; pos = S + (1 - from); }
4480 S++;
4481 }
4482 For 3) and 5), if mask is scalar, this all goes into a conditional,
4483 setting pos = 0; in the else branch. */
4484
4485 static void
4486 gfc_conv_intrinsic_minmaxloc (gfc_se * se, gfc_expr * expr, enum tree_code op)
4487 {
4488 stmtblock_t body;
4489 stmtblock_t block;
4490 stmtblock_t ifblock;
4491 stmtblock_t elseblock;
4492 tree limit;
4493 tree type;
4494 tree tmp;
4495 tree cond;
4496 tree elsetmp;
4497 tree ifbody;
4498 tree offset;
4499 tree nonempty;
4500 tree lab1, lab2;
4501 gfc_loopinfo loop;
4502 gfc_actual_arglist *actual;
4503 gfc_ss *arrayss;
4504 gfc_ss *maskss;
4505 gfc_se arrayse;
4506 gfc_se maskse;
4507 gfc_expr *arrayexpr;
4508 gfc_expr *maskexpr;
4509 tree pos;
4510 int n;
4511
4512 if (se->ss)
4513 {
4514 gfc_conv_intrinsic_funcall (se, expr);
4515 return;
4516 }
4517
4518 /* Initialize the result. */
4519 pos = gfc_create_var (gfc_array_index_type, "pos");
4520 offset = gfc_create_var (gfc_array_index_type, "offset");
4521 type = gfc_typenode_for_spec (&expr->ts);
4522
4523 /* Walk the arguments. */
4524 actual = expr->value.function.actual;
4525 arrayexpr = actual->expr;
4526 arrayss = gfc_walk_expr (arrayexpr);
4527 gcc_assert (arrayss != gfc_ss_terminator);
4528
4529 actual = actual->next->next;
4530 gcc_assert (actual);
4531 maskexpr = actual->expr;
4532 nonempty = NULL;
4533 if (maskexpr && maskexpr->rank != 0)
4534 {
4535 maskss = gfc_walk_expr (maskexpr);
4536 gcc_assert (maskss != gfc_ss_terminator);
4537 }
4538 else
4539 {
4540 mpz_t asize;
4541 if (gfc_array_size (arrayexpr, &asize))
4542 {
4543 nonempty = gfc_conv_mpz_to_tree (asize, gfc_index_integer_kind);
4544 mpz_clear (asize);
4545 nonempty = fold_build2_loc (input_location, GT_EXPR,
4546 boolean_type_node, nonempty,
4547 gfc_index_zero_node);
4548 }
4549 maskss = NULL;
4550 }
4551
4552 limit = gfc_create_var (gfc_typenode_for_spec (&arrayexpr->ts), "limit");
4553 switch (arrayexpr->ts.type)
4554 {
4555 case BT_REAL:
4556 tmp = gfc_build_inf_or_huge (TREE_TYPE (limit), arrayexpr->ts.kind);
4557 break;
4558
4559 case BT_INTEGER:
4560 n = gfc_validate_kind (arrayexpr->ts.type, arrayexpr->ts.kind, false);
4561 tmp = gfc_conv_mpz_to_tree (gfc_integer_kinds[n].huge,
4562 arrayexpr->ts.kind);
4563 break;
4564
4565 default:
4566 gcc_unreachable ();
4567 }
4568
4569 /* We start with the most negative possible value for MAXLOC, and the most
4570 positive possible value for MINLOC. The most negative possible value is
4571 -HUGE for BT_REAL and (-HUGE - 1) for BT_INTEGER; the most positive
4572 possible value is HUGE in both cases. */
4573 if (op == GT_EXPR)
4574 tmp = fold_build1_loc (input_location, NEGATE_EXPR, TREE_TYPE (tmp), tmp);
4575 if (op == GT_EXPR && arrayexpr->ts.type == BT_INTEGER)
4576 tmp = fold_build2_loc (input_location, MINUS_EXPR, TREE_TYPE (tmp), tmp,
4577 build_int_cst (TREE_TYPE (tmp), 1));
4578
4579 gfc_add_modify (&se->pre, limit, tmp);
4580
4581 /* Initialize the scalarizer. */
4582 gfc_init_loopinfo (&loop);
4583 gfc_add_ss_to_loop (&loop, arrayss);
4584 if (maskss)
4585 gfc_add_ss_to_loop (&loop, maskss);
4586
4587 /* Initialize the loop. */
4588 gfc_conv_ss_startstride (&loop);
4589
4590 /* The code generated can have more than one loop in sequence (see the
4591 comment at the function header). This doesn't work well with the
4592 scalarizer, which changes arrays' offset when the scalarization loops
4593 are generated (see gfc_trans_preloop_setup). Fortunately, {min,max}loc
4594 are currently inlined in the scalar case only (for which loop is of rank
4595 one). As there is no dependency to care about in that case, there is no
4596 temporary, so that we can use the scalarizer temporary code to handle
4597 multiple loops. Thus, we set temp_dim here, we call gfc_mark_ss_chain_used
4598 with flag=3 later, and we use gfc_trans_scalarized_loop_boundary even later
4599 to restore offset.
4600 TODO: this prevents inlining of rank > 0 minmaxloc calls, so this
4601 should eventually go away. We could either create two loops properly,
4602 or find another way to save/restore the array offsets between the two
4603 loops (without conflicting with temporary management), or use a single
4604 loop minmaxloc implementation. See PR 31067. */
4605 loop.temp_dim = loop.dimen;
4606 gfc_conv_loop_setup (&loop, &expr->where);
4607
4608 gcc_assert (loop.dimen == 1);
4609 if (nonempty == NULL && maskss == NULL && loop.from[0] && loop.to[0])
4610 nonempty = fold_build2_loc (input_location, LE_EXPR, boolean_type_node,
4611 loop.from[0], loop.to[0]);
4612
4613 lab1 = NULL;
4614 lab2 = NULL;
4615 /* Initialize the position to zero, following Fortran 2003. We are free
4616 to do this because Fortran 95 allows the result of an entirely false
4617 mask to be processor dependent. If we know at compile time the array
4618 is non-empty and no MASK is used, we can initialize to 1 to simplify
4619 the inner loop. */
4620 if (nonempty != NULL && !HONOR_NANS (DECL_MODE (limit)))
4621 gfc_add_modify (&loop.pre, pos,
4622 fold_build3_loc (input_location, COND_EXPR,
4623 gfc_array_index_type,
4624 nonempty, gfc_index_one_node,
4625 gfc_index_zero_node));
4626 else
4627 {
4628 gfc_add_modify (&loop.pre, pos, gfc_index_zero_node);
4629 lab1 = gfc_build_label_decl (NULL_TREE);
4630 TREE_USED (lab1) = 1;
4631 lab2 = gfc_build_label_decl (NULL_TREE);
4632 TREE_USED (lab2) = 1;
4633 }
4634
4635 /* An offset must be added to the loop
4636 counter to obtain the required position. */
4637 gcc_assert (loop.from[0]);
4638
4639 tmp = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
4640 gfc_index_one_node, loop.from[0]);
4641 gfc_add_modify (&loop.pre, offset, tmp);
4642
4643 gfc_mark_ss_chain_used (arrayss, lab1 ? 3 : 1);
4644 if (maskss)
4645 gfc_mark_ss_chain_used (maskss, lab1 ? 3 : 1);
4646 /* Generate the loop body. */
4647 gfc_start_scalarized_body (&loop, &body);
4648
4649 /* If we have a mask, only check this element if the mask is set. */
4650 if (maskss)
4651 {
4652 gfc_init_se (&maskse, NULL);
4653 gfc_copy_loopinfo_to_se (&maskse, &loop);
4654 maskse.ss = maskss;
4655 gfc_conv_expr_val (&maskse, maskexpr);
4656 gfc_add_block_to_block (&body, &maskse.pre);
4657
4658 gfc_start_block (&block);
4659 }
4660 else
4661 gfc_init_block (&block);
4662
4663 /* Compare with the current limit. */
4664 gfc_init_se (&arrayse, NULL);
4665 gfc_copy_loopinfo_to_se (&arrayse, &loop);
4666 arrayse.ss = arrayss;
4667 gfc_conv_expr_val (&arrayse, arrayexpr);
4668 gfc_add_block_to_block (&block, &arrayse.pre);
4669
4670 /* We do the following if this is a more extreme value. */
4671 gfc_start_block (&ifblock);
4672
4673 /* Assign the value to the limit... */
4674 gfc_add_modify (&ifblock, limit, arrayse.expr);
4675
4676 if (nonempty == NULL && HONOR_NANS (DECL_MODE (limit)))
4677 {
4678 stmtblock_t ifblock2;
4679 tree ifbody2;
4680
4681 gfc_start_block (&ifblock2);
4682 tmp = fold_build2_loc (input_location, PLUS_EXPR, TREE_TYPE (pos),
4683 loop.loopvar[0], offset);
4684 gfc_add_modify (&ifblock2, pos, tmp);
4685 ifbody2 = gfc_finish_block (&ifblock2);
4686 cond = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node, pos,
4687 gfc_index_zero_node);
4688 tmp = build3_v (COND_EXPR, cond, ifbody2,
4689 build_empty_stmt (input_location));
4690 gfc_add_expr_to_block (&block, tmp);
4691 }
4692
4693 tmp = fold_build2_loc (input_location, PLUS_EXPR, TREE_TYPE (pos),
4694 loop.loopvar[0], offset);
4695 gfc_add_modify (&ifblock, pos, tmp);
4696
4697 if (lab1)
4698 gfc_add_expr_to_block (&ifblock, build1_v (GOTO_EXPR, lab1));
4699
4700 ifbody = gfc_finish_block (&ifblock);
4701
4702 if (!lab1 || HONOR_NANS (DECL_MODE (limit)))
4703 {
4704 if (lab1)
4705 cond = fold_build2_loc (input_location,
4706 op == GT_EXPR ? GE_EXPR : LE_EXPR,
4707 boolean_type_node, arrayse.expr, limit);
4708 else
4709 cond = fold_build2_loc (input_location, op, boolean_type_node,
4710 arrayse.expr, limit);
4711
4712 ifbody = build3_v (COND_EXPR, cond, ifbody,
4713 build_empty_stmt (input_location));
4714 }
4715 gfc_add_expr_to_block (&block, ifbody);
4716
4717 if (maskss)
4718 {
4719 /* We enclose the above in if (mask) {...}. */
4720 tmp = gfc_finish_block (&block);
4721
4722 tmp = build3_v (COND_EXPR, maskse.expr, tmp,
4723 build_empty_stmt (input_location));
4724 }
4725 else
4726 tmp = gfc_finish_block (&block);
4727 gfc_add_expr_to_block (&body, tmp);
4728
4729 if (lab1)
4730 {
4731 gfc_trans_scalarized_loop_boundary (&loop, &body);
4732
4733 if (HONOR_NANS (DECL_MODE (limit)))
4734 {
4735 if (nonempty != NULL)
4736 {
4737 ifbody = build2_v (MODIFY_EXPR, pos, gfc_index_one_node);
4738 tmp = build3_v (COND_EXPR, nonempty, ifbody,
4739 build_empty_stmt (input_location));
4740 gfc_add_expr_to_block (&loop.code[0], tmp);
4741 }
4742 }
4743
4744 gfc_add_expr_to_block (&loop.code[0], build1_v (GOTO_EXPR, lab2));
4745 gfc_add_expr_to_block (&loop.code[0], build1_v (LABEL_EXPR, lab1));
4746
4747 /* If we have a mask, only check this element if the mask is set. */
4748 if (maskss)
4749 {
4750 gfc_init_se (&maskse, NULL);
4751 gfc_copy_loopinfo_to_se (&maskse, &loop);
4752 maskse.ss = maskss;
4753 gfc_conv_expr_val (&maskse, maskexpr);
4754 gfc_add_block_to_block (&body, &maskse.pre);
4755
4756 gfc_start_block (&block);
4757 }
4758 else
4759 gfc_init_block (&block);
4760
4761 /* Compare with the current limit. */
4762 gfc_init_se (&arrayse, NULL);
4763 gfc_copy_loopinfo_to_se (&arrayse, &loop);
4764 arrayse.ss = arrayss;
4765 gfc_conv_expr_val (&arrayse, arrayexpr);
4766 gfc_add_block_to_block (&block, &arrayse.pre);
4767
4768 /* We do the following if this is a more extreme value. */
4769 gfc_start_block (&ifblock);
4770
4771 /* Assign the value to the limit... */
4772 gfc_add_modify (&ifblock, limit, arrayse.expr);
4773
4774 tmp = fold_build2_loc (input_location, PLUS_EXPR, TREE_TYPE (pos),
4775 loop.loopvar[0], offset);
4776 gfc_add_modify (&ifblock, pos, tmp);
4777
4778 ifbody = gfc_finish_block (&ifblock);
4779
4780 cond = fold_build2_loc (input_location, op, boolean_type_node,
4781 arrayse.expr, limit);
4782
4783 tmp = build3_v (COND_EXPR, cond, ifbody,
4784 build_empty_stmt (input_location));
4785 gfc_add_expr_to_block (&block, tmp);
4786
4787 if (maskss)
4788 {
4789 /* We enclose the above in if (mask) {...}. */
4790 tmp = gfc_finish_block (&block);
4791
4792 tmp = build3_v (COND_EXPR, maskse.expr, tmp,
4793 build_empty_stmt (input_location));
4794 }
4795 else
4796 tmp = gfc_finish_block (&block);
4797 gfc_add_expr_to_block (&body, tmp);
4798 /* Avoid initializing loopvar[0] again, it should be left where
4799 it finished by the first loop. */
4800 loop.from[0] = loop.loopvar[0];
4801 }
4802
4803 gfc_trans_scalarizing_loops (&loop, &body);
4804
4805 if (lab2)
4806 gfc_add_expr_to_block (&loop.pre, build1_v (LABEL_EXPR, lab2));
4807
4808 /* For a scalar mask, enclose the loop in an if statement. */
4809 if (maskexpr && maskss == NULL)
4810 {
4811 gfc_init_se (&maskse, NULL);
4812 gfc_conv_expr_val (&maskse, maskexpr);
4813 gfc_init_block (&block);
4814 gfc_add_block_to_block (&block, &loop.pre);
4815 gfc_add_block_to_block (&block, &loop.post);
4816 tmp = gfc_finish_block (&block);
4817
4818 /* For the else part of the scalar mask, just initialize
4819 the pos variable the same way as above. */
4820
4821 gfc_init_block (&elseblock);
4822 gfc_add_modify (&elseblock, pos, gfc_index_zero_node);
4823 elsetmp = gfc_finish_block (&elseblock);
4824
4825 tmp = build3_v (COND_EXPR, maskse.expr, tmp, elsetmp);
4826 gfc_add_expr_to_block (&block, tmp);
4827 gfc_add_block_to_block (&se->pre, &block);
4828 }
4829 else
4830 {
4831 gfc_add_block_to_block (&se->pre, &loop.pre);
4832 gfc_add_block_to_block (&se->pre, &loop.post);
4833 }
4834 gfc_cleanup_loop (&loop);
4835
4836 se->expr = convert (type, pos);
4837 }
4838
4839 /* Emit code for minval or maxval intrinsic. There are many different cases
4840 we need to handle. For performance reasons we sometimes create two
4841 loops instead of one, where the second one is much simpler.
4842 Examples for minval intrinsic:
4843 1) Result is an array, a call is generated
4844 2) Array mask is used and NaNs need to be supported, rank 1:
4845 limit = Infinity;
4846 nonempty = false;
4847 S = from;
4848 while (S <= to) {
4849 if (mask[S]) { nonempty = true; if (a[S] <= limit) goto lab; }
4850 S++;
4851 }
4852 limit = nonempty ? NaN : huge (limit);
4853 lab:
4854 while (S <= to) { if(mask[S]) limit = min (a[S], limit); S++; }
4855 3) NaNs need to be supported, but it is known at compile time or cheaply
4856 at runtime whether array is nonempty or not, rank 1:
4857 limit = Infinity;
4858 S = from;
4859 while (S <= to) { if (a[S] <= limit) goto lab; S++; }
4860 limit = (from <= to) ? NaN : huge (limit);
4861 lab:
4862 while (S <= to) { limit = min (a[S], limit); S++; }
4863 4) Array mask is used and NaNs need to be supported, rank > 1:
4864 limit = Infinity;
4865 nonempty = false;
4866 fast = false;
4867 S1 = from1;
4868 while (S1 <= to1) {
4869 S2 = from2;
4870 while (S2 <= to2) {
4871 if (mask[S1][S2]) {
4872 if (fast) limit = min (a[S1][S2], limit);
4873 else {
4874 nonempty = true;
4875 if (a[S1][S2] <= limit) {
4876 limit = a[S1][S2];
4877 fast = true;
4878 }
4879 }
4880 }
4881 S2++;
4882 }
4883 S1++;
4884 }
4885 if (!fast)
4886 limit = nonempty ? NaN : huge (limit);
4887 5) NaNs need to be supported, but it is known at compile time or cheaply
4888 at runtime whether array is nonempty or not, rank > 1:
4889 limit = Infinity;
4890 fast = false;
4891 S1 = from1;
4892 while (S1 <= to1) {
4893 S2 = from2;
4894 while (S2 <= to2) {
4895 if (fast) limit = min (a[S1][S2], limit);
4896 else {
4897 if (a[S1][S2] <= limit) {
4898 limit = a[S1][S2];
4899 fast = true;
4900 }
4901 }
4902 S2++;
4903 }
4904 S1++;
4905 }
4906 if (!fast)
4907 limit = (nonempty_array) ? NaN : huge (limit);
4908 6) NaNs aren't supported, but infinities are. Array mask is used:
4909 limit = Infinity;
4910 nonempty = false;
4911 S = from;
4912 while (S <= to) {
4913 if (mask[S]) { nonempty = true; limit = min (a[S], limit); }
4914 S++;
4915 }
4916 limit = nonempty ? limit : huge (limit);
4917 7) Same without array mask:
4918 limit = Infinity;
4919 S = from;
4920 while (S <= to) { limit = min (a[S], limit); S++; }
4921 limit = (from <= to) ? limit : huge (limit);
4922 8) Neither NaNs nor infinities are supported (-ffast-math or BT_INTEGER):
4923 limit = huge (limit);
4924 S = from;
4925 while (S <= to) { limit = min (a[S], limit); S++); }
4926 (or
4927 while (S <= to) { if (mask[S]) limit = min (a[S], limit); S++; }
4928 with array mask instead).
4929 For 3), 5), 7) and 8), if mask is scalar, this all goes into a conditional,
4930 setting limit = huge (limit); in the else branch. */
4931
4932 static void
4933 gfc_conv_intrinsic_minmaxval (gfc_se * se, gfc_expr * expr, enum tree_code op)
4934 {
4935 tree limit;
4936 tree type;
4937 tree tmp;
4938 tree ifbody;
4939 tree nonempty;
4940 tree nonempty_var;
4941 tree lab;
4942 tree fast;
4943 tree huge_cst = NULL, nan_cst = NULL;
4944 stmtblock_t body;
4945 stmtblock_t block, block2;
4946 gfc_loopinfo loop;
4947 gfc_actual_arglist *actual;
4948 gfc_ss *arrayss;
4949 gfc_ss *maskss;
4950 gfc_se arrayse;
4951 gfc_se maskse;
4952 gfc_expr *arrayexpr;
4953 gfc_expr *maskexpr;
4954 int n;
4955
4956 if (se->ss)
4957 {
4958 gfc_conv_intrinsic_funcall (se, expr);
4959 return;
4960 }
4961
4962 type = gfc_typenode_for_spec (&expr->ts);
4963 /* Initialize the result. */
4964 limit = gfc_create_var (type, "limit");
4965 n = gfc_validate_kind (expr->ts.type, expr->ts.kind, false);
4966 switch (expr->ts.type)
4967 {
4968 case BT_REAL:
4969 huge_cst = gfc_conv_mpfr_to_tree (gfc_real_kinds[n].huge,
4970 expr->ts.kind, 0);
4971 if (HONOR_INFINITIES (DECL_MODE (limit)))
4972 {
4973 REAL_VALUE_TYPE real;
4974 real_inf (&real);
4975 tmp = build_real (type, real);
4976 }
4977 else
4978 tmp = huge_cst;
4979 if (HONOR_NANS (DECL_MODE (limit)))
4980 nan_cst = gfc_build_nan (type, "");
4981 break;
4982
4983 case BT_INTEGER:
4984 tmp = gfc_conv_mpz_to_tree (gfc_integer_kinds[n].huge, expr->ts.kind);
4985 break;
4986
4987 default:
4988 gcc_unreachable ();
4989 }
4990
4991 /* We start with the most negative possible value for MAXVAL, and the most
4992 positive possible value for MINVAL. The most negative possible value is
4993 -HUGE for BT_REAL and (-HUGE - 1) for BT_INTEGER; the most positive
4994 possible value is HUGE in both cases. */
4995 if (op == GT_EXPR)
4996 {
4997 tmp = fold_build1_loc (input_location, NEGATE_EXPR, TREE_TYPE (tmp), tmp);
4998 if (huge_cst)
4999 huge_cst = fold_build1_loc (input_location, NEGATE_EXPR,
5000 TREE_TYPE (huge_cst), huge_cst);
5001 }
5002
5003 if (op == GT_EXPR && expr->ts.type == BT_INTEGER)
5004 tmp = fold_build2_loc (input_location, MINUS_EXPR, TREE_TYPE (tmp),
5005 tmp, build_int_cst (type, 1));
5006
5007 gfc_add_modify (&se->pre, limit, tmp);
5008
5009 /* Walk the arguments. */
5010 actual = expr->value.function.actual;
5011 arrayexpr = actual->expr;
5012 arrayss = gfc_walk_expr (arrayexpr);
5013 gcc_assert (arrayss != gfc_ss_terminator);
5014
5015 actual = actual->next->next;
5016 gcc_assert (actual);
5017 maskexpr = actual->expr;
5018 nonempty = NULL;
5019 if (maskexpr && maskexpr->rank != 0)
5020 {
5021 maskss = gfc_walk_expr (maskexpr);
5022 gcc_assert (maskss != gfc_ss_terminator);
5023 }
5024 else
5025 {
5026 mpz_t asize;
5027 if (gfc_array_size (arrayexpr, &asize))
5028 {
5029 nonempty = gfc_conv_mpz_to_tree (asize, gfc_index_integer_kind);
5030 mpz_clear (asize);
5031 nonempty = fold_build2_loc (input_location, GT_EXPR,
5032 boolean_type_node, nonempty,
5033 gfc_index_zero_node);
5034 }
5035 maskss = NULL;
5036 }
5037
5038 /* Initialize the scalarizer. */
5039 gfc_init_loopinfo (&loop);
5040 gfc_add_ss_to_loop (&loop, arrayss);
5041 if (maskss)
5042 gfc_add_ss_to_loop (&loop, maskss);
5043
5044 /* Initialize the loop. */
5045 gfc_conv_ss_startstride (&loop);
5046
5047 /* The code generated can have more than one loop in sequence (see the
5048 comment at the function header). This doesn't work well with the
5049 scalarizer, which changes arrays' offset when the scalarization loops
5050 are generated (see gfc_trans_preloop_setup). Fortunately, {min,max}val
5051 are currently inlined in the scalar case only. As there is no dependency
5052 to care about in that case, there is no temporary, so that we can use the
5053 scalarizer temporary code to handle multiple loops. Thus, we set temp_dim
5054 here, we call gfc_mark_ss_chain_used with flag=3 later, and we use
5055 gfc_trans_scalarized_loop_boundary even later to restore offset.
5056 TODO: this prevents inlining of rank > 0 minmaxval calls, so this
5057 should eventually go away. We could either create two loops properly,
5058 or find another way to save/restore the array offsets between the two
5059 loops (without conflicting with temporary management), or use a single
5060 loop minmaxval implementation. See PR 31067. */
5061 loop.temp_dim = loop.dimen;
5062 gfc_conv_loop_setup (&loop, &expr->where);
5063
5064 if (nonempty == NULL && maskss == NULL
5065 && loop.dimen == 1 && loop.from[0] && loop.to[0])
5066 nonempty = fold_build2_loc (input_location, LE_EXPR, boolean_type_node,
5067 loop.from[0], loop.to[0]);
5068 nonempty_var = NULL;
5069 if (nonempty == NULL
5070 && (HONOR_INFINITIES (DECL_MODE (limit))
5071 || HONOR_NANS (DECL_MODE (limit))))
5072 {
5073 nonempty_var = gfc_create_var (boolean_type_node, "nonempty");
5074 gfc_add_modify (&se->pre, nonempty_var, boolean_false_node);
5075 nonempty = nonempty_var;
5076 }
5077 lab = NULL;
5078 fast = NULL;
5079 if (HONOR_NANS (DECL_MODE (limit)))
5080 {
5081 if (loop.dimen == 1)
5082 {
5083 lab = gfc_build_label_decl (NULL_TREE);
5084 TREE_USED (lab) = 1;
5085 }
5086 else
5087 {
5088 fast = gfc_create_var (boolean_type_node, "fast");
5089 gfc_add_modify (&se->pre, fast, boolean_false_node);
5090 }
5091 }
5092
5093 gfc_mark_ss_chain_used (arrayss, lab ? 3 : 1);
5094 if (maskss)
5095 gfc_mark_ss_chain_used (maskss, lab ? 3 : 1);
5096 /* Generate the loop body. */
5097 gfc_start_scalarized_body (&loop, &body);
5098
5099 /* If we have a mask, only add this element if the mask is set. */
5100 if (maskss)
5101 {
5102 gfc_init_se (&maskse, NULL);
5103 gfc_copy_loopinfo_to_se (&maskse, &loop);
5104 maskse.ss = maskss;
5105 gfc_conv_expr_val (&maskse, maskexpr);
5106 gfc_add_block_to_block (&body, &maskse.pre);
5107
5108 gfc_start_block (&block);
5109 }
5110 else
5111 gfc_init_block (&block);
5112
5113 /* Compare with the current limit. */
5114 gfc_init_se (&arrayse, NULL);
5115 gfc_copy_loopinfo_to_se (&arrayse, &loop);
5116 arrayse.ss = arrayss;
5117 gfc_conv_expr_val (&arrayse, arrayexpr);
5118 gfc_add_block_to_block (&block, &arrayse.pre);
5119
5120 gfc_init_block (&block2);
5121
5122 if (nonempty_var)
5123 gfc_add_modify (&block2, nonempty_var, boolean_true_node);
5124
5125 if (HONOR_NANS (DECL_MODE (limit)))
5126 {
5127 tmp = fold_build2_loc (input_location, op == GT_EXPR ? GE_EXPR : LE_EXPR,
5128 boolean_type_node, arrayse.expr, limit);
5129 if (lab)
5130 ifbody = build1_v (GOTO_EXPR, lab);
5131 else
5132 {
5133 stmtblock_t ifblock;
5134
5135 gfc_init_block (&ifblock);
5136 gfc_add_modify (&ifblock, limit, arrayse.expr);
5137 gfc_add_modify (&ifblock, fast, boolean_true_node);
5138 ifbody = gfc_finish_block (&ifblock);
5139 }
5140 tmp = build3_v (COND_EXPR, tmp, ifbody,
5141 build_empty_stmt (input_location));
5142 gfc_add_expr_to_block (&block2, tmp);
5143 }
5144 else
5145 {
5146 /* MIN_EXPR/MAX_EXPR has unspecified behavior with NaNs or
5147 signed zeros. */
5148 if (HONOR_SIGNED_ZEROS (DECL_MODE (limit)))
5149 {
5150 tmp = fold_build2_loc (input_location, op, boolean_type_node,
5151 arrayse.expr, limit);
5152 ifbody = build2_v (MODIFY_EXPR, limit, arrayse.expr);
5153 tmp = build3_v (COND_EXPR, tmp, ifbody,
5154 build_empty_stmt (input_location));
5155 gfc_add_expr_to_block (&block2, tmp);
5156 }
5157 else
5158 {
5159 tmp = fold_build2_loc (input_location,
5160 op == GT_EXPR ? MAX_EXPR : MIN_EXPR,
5161 type, arrayse.expr, limit);
5162 gfc_add_modify (&block2, limit, tmp);
5163 }
5164 }
5165
5166 if (fast)
5167 {
5168 tree elsebody = gfc_finish_block (&block2);
5169
5170 /* MIN_EXPR/MAX_EXPR has unspecified behavior with NaNs or
5171 signed zeros. */
5172 if (HONOR_NANS (DECL_MODE (limit))
5173 || HONOR_SIGNED_ZEROS (DECL_MODE (limit)))
5174 {
5175 tmp = fold_build2_loc (input_location, op, boolean_type_node,
5176 arrayse.expr, limit);
5177 ifbody = build2_v (MODIFY_EXPR, limit, arrayse.expr);
5178 ifbody = build3_v (COND_EXPR, tmp, ifbody,
5179 build_empty_stmt (input_location));
5180 }
5181 else
5182 {
5183 tmp = fold_build2_loc (input_location,
5184 op == GT_EXPR ? MAX_EXPR : MIN_EXPR,
5185 type, arrayse.expr, limit);
5186 ifbody = build2_v (MODIFY_EXPR, limit, tmp);
5187 }
5188 tmp = build3_v (COND_EXPR, fast, ifbody, elsebody);
5189 gfc_add_expr_to_block (&block, tmp);
5190 }
5191 else
5192 gfc_add_block_to_block (&block, &block2);
5193
5194 gfc_add_block_to_block (&block, &arrayse.post);
5195
5196 tmp = gfc_finish_block (&block);
5197 if (maskss)
5198 /* We enclose the above in if (mask) {...}. */
5199 tmp = build3_v (COND_EXPR, maskse.expr, tmp,
5200 build_empty_stmt (input_location));
5201 gfc_add_expr_to_block (&body, tmp);
5202
5203 if (lab)
5204 {
5205 gfc_trans_scalarized_loop_boundary (&loop, &body);
5206
5207 tmp = fold_build3_loc (input_location, COND_EXPR, type, nonempty,
5208 nan_cst, huge_cst);
5209 gfc_add_modify (&loop.code[0], limit, tmp);
5210 gfc_add_expr_to_block (&loop.code[0], build1_v (LABEL_EXPR, lab));
5211
5212 /* If we have a mask, only add this element if the mask is set. */
5213 if (maskss)
5214 {
5215 gfc_init_se (&maskse, NULL);
5216 gfc_copy_loopinfo_to_se (&maskse, &loop);
5217 maskse.ss = maskss;
5218 gfc_conv_expr_val (&maskse, maskexpr);
5219 gfc_add_block_to_block (&body, &maskse.pre);
5220
5221 gfc_start_block (&block);
5222 }
5223 else
5224 gfc_init_block (&block);
5225
5226 /* Compare with the current limit. */
5227 gfc_init_se (&arrayse, NULL);
5228 gfc_copy_loopinfo_to_se (&arrayse, &loop);
5229 arrayse.ss = arrayss;
5230 gfc_conv_expr_val (&arrayse, arrayexpr);
5231 gfc_add_block_to_block (&block, &arrayse.pre);
5232
5233 /* MIN_EXPR/MAX_EXPR has unspecified behavior with NaNs or
5234 signed zeros. */
5235 if (HONOR_NANS (DECL_MODE (limit))
5236 || HONOR_SIGNED_ZEROS (DECL_MODE (limit)))
5237 {
5238 tmp = fold_build2_loc (input_location, op, boolean_type_node,
5239 arrayse.expr, limit);
5240 ifbody = build2_v (MODIFY_EXPR, limit, arrayse.expr);
5241 tmp = build3_v (COND_EXPR, tmp, ifbody,
5242 build_empty_stmt (input_location));
5243 gfc_add_expr_to_block (&block, tmp);
5244 }
5245 else
5246 {
5247 tmp = fold_build2_loc (input_location,
5248 op == GT_EXPR ? MAX_EXPR : MIN_EXPR,
5249 type, arrayse.expr, limit);
5250 gfc_add_modify (&block, limit, tmp);
5251 }
5252
5253 gfc_add_block_to_block (&block, &arrayse.post);
5254
5255 tmp = gfc_finish_block (&block);
5256 if (maskss)
5257 /* We enclose the above in if (mask) {...}. */
5258 tmp = build3_v (COND_EXPR, maskse.expr, tmp,
5259 build_empty_stmt (input_location));
5260 gfc_add_expr_to_block (&body, tmp);
5261 /* Avoid initializing loopvar[0] again, it should be left where
5262 it finished by the first loop. */
5263 loop.from[0] = loop.loopvar[0];
5264 }
5265 gfc_trans_scalarizing_loops (&loop, &body);
5266
5267 if (fast)
5268 {
5269 tmp = fold_build3_loc (input_location, COND_EXPR, type, nonempty,
5270 nan_cst, huge_cst);
5271 ifbody = build2_v (MODIFY_EXPR, limit, tmp);
5272 tmp = build3_v (COND_EXPR, fast, build_empty_stmt (input_location),
5273 ifbody);
5274 gfc_add_expr_to_block (&loop.pre, tmp);
5275 }
5276 else if (HONOR_INFINITIES (DECL_MODE (limit)) && !lab)
5277 {
5278 tmp = fold_build3_loc (input_location, COND_EXPR, type, nonempty, limit,
5279 huge_cst);
5280 gfc_add_modify (&loop.pre, limit, tmp);
5281 }
5282
5283 /* For a scalar mask, enclose the loop in an if statement. */
5284 if (maskexpr && maskss == NULL)
5285 {
5286 tree else_stmt;
5287
5288 gfc_init_se (&maskse, NULL);
5289 gfc_conv_expr_val (&maskse, maskexpr);
5290 gfc_init_block (&block);
5291 gfc_add_block_to_block (&block, &loop.pre);
5292 gfc_add_block_to_block (&block, &loop.post);
5293 tmp = gfc_finish_block (&block);
5294
5295 if (HONOR_INFINITIES (DECL_MODE (limit)))
5296 else_stmt = build2_v (MODIFY_EXPR, limit, huge_cst);
5297 else
5298 else_stmt = build_empty_stmt (input_location);
5299 tmp = build3_v (COND_EXPR, maskse.expr, tmp, else_stmt);
5300 gfc_add_expr_to_block (&block, tmp);
5301 gfc_add_block_to_block (&se->pre, &block);
5302 }
5303 else
5304 {
5305 gfc_add_block_to_block (&se->pre, &loop.pre);
5306 gfc_add_block_to_block (&se->pre, &loop.post);
5307 }
5308
5309 gfc_cleanup_loop (&loop);
5310
5311 se->expr = limit;
5312 }
5313
5314 /* BTEST (i, pos) = (i & (1 << pos)) != 0. */
5315 static void
5316 gfc_conv_intrinsic_btest (gfc_se * se, gfc_expr * expr)
5317 {
5318 tree args[2];
5319 tree type;
5320 tree tmp;
5321
5322 gfc_conv_intrinsic_function_args (se, expr, args, 2);
5323 type = TREE_TYPE (args[0]);
5324
5325 tmp = fold_build2_loc (input_location, LSHIFT_EXPR, type,
5326 build_int_cst (type, 1), args[1]);
5327 tmp = fold_build2_loc (input_location, BIT_AND_EXPR, type, args[0], tmp);
5328 tmp = fold_build2_loc (input_location, NE_EXPR, boolean_type_node, tmp,
5329 build_int_cst (type, 0));
5330 type = gfc_typenode_for_spec (&expr->ts);
5331 se->expr = convert (type, tmp);
5332 }
5333
5334
5335 /* Generate code for BGE, BGT, BLE and BLT intrinsics. */
5336 static void
5337 gfc_conv_intrinsic_bitcomp (gfc_se * se, gfc_expr * expr, enum tree_code op)
5338 {
5339 tree args[2];
5340
5341 gfc_conv_intrinsic_function_args (se, expr, args, 2);
5342
5343 /* Convert both arguments to the unsigned type of the same size. */
5344 args[0] = fold_convert (unsigned_type_for (TREE_TYPE (args[0])), args[0]);
5345 args[1] = fold_convert (unsigned_type_for (TREE_TYPE (args[1])), args[1]);
5346
5347 /* If they have unequal type size, convert to the larger one. */
5348 if (TYPE_PRECISION (TREE_TYPE (args[0]))
5349 > TYPE_PRECISION (TREE_TYPE (args[1])))
5350 args[1] = fold_convert (TREE_TYPE (args[0]), args[1]);
5351 else if (TYPE_PRECISION (TREE_TYPE (args[1]))
5352 > TYPE_PRECISION (TREE_TYPE (args[0])))
5353 args[0] = fold_convert (TREE_TYPE (args[1]), args[0]);
5354
5355 /* Now, we compare them. */
5356 se->expr = fold_build2_loc (input_location, op, boolean_type_node,
5357 args[0], args[1]);
5358 }
5359
5360
5361 /* Generate code to perform the specified operation. */
5362 static void
5363 gfc_conv_intrinsic_bitop (gfc_se * se, gfc_expr * expr, enum tree_code op)
5364 {
5365 tree args[2];
5366
5367 gfc_conv_intrinsic_function_args (se, expr, args, 2);
5368 se->expr = fold_build2_loc (input_location, op, TREE_TYPE (args[0]),
5369 args[0], args[1]);
5370 }
5371
5372 /* Bitwise not. */
5373 static void
5374 gfc_conv_intrinsic_not (gfc_se * se, gfc_expr * expr)
5375 {
5376 tree arg;
5377
5378 gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
5379 se->expr = fold_build1_loc (input_location, BIT_NOT_EXPR,
5380 TREE_TYPE (arg), arg);
5381 }
5382
5383 /* Set or clear a single bit. */
5384 static void
5385 gfc_conv_intrinsic_singlebitop (gfc_se * se, gfc_expr * expr, int set)
5386 {
5387 tree args[2];
5388 tree type;
5389 tree tmp;
5390 enum tree_code op;
5391
5392 gfc_conv_intrinsic_function_args (se, expr, args, 2);
5393 type = TREE_TYPE (args[0]);
5394
5395 tmp = fold_build2_loc (input_location, LSHIFT_EXPR, type,
5396 build_int_cst (type, 1), args[1]);
5397 if (set)
5398 op = BIT_IOR_EXPR;
5399 else
5400 {
5401 op = BIT_AND_EXPR;
5402 tmp = fold_build1_loc (input_location, BIT_NOT_EXPR, type, tmp);
5403 }
5404 se->expr = fold_build2_loc (input_location, op, type, args[0], tmp);
5405 }
5406
5407 /* Extract a sequence of bits.
5408 IBITS(I, POS, LEN) = (I >> POS) & ~((~0) << LEN). */
5409 static void
5410 gfc_conv_intrinsic_ibits (gfc_se * se, gfc_expr * expr)
5411 {
5412 tree args[3];
5413 tree type;
5414 tree tmp;
5415 tree mask;
5416
5417 gfc_conv_intrinsic_function_args (se, expr, args, 3);
5418 type = TREE_TYPE (args[0]);
5419
5420 mask = build_int_cst (type, -1);
5421 mask = fold_build2_loc (input_location, LSHIFT_EXPR, type, mask, args[2]);
5422 mask = fold_build1_loc (input_location, BIT_NOT_EXPR, type, mask);
5423
5424 tmp = fold_build2_loc (input_location, RSHIFT_EXPR, type, args[0], args[1]);
5425
5426 se->expr = fold_build2_loc (input_location, BIT_AND_EXPR, type, tmp, mask);
5427 }
5428
5429 static void
5430 gfc_conv_intrinsic_shift (gfc_se * se, gfc_expr * expr, bool right_shift,
5431 bool arithmetic)
5432 {
5433 tree args[2], type, num_bits, cond;
5434
5435 gfc_conv_intrinsic_function_args (se, expr, args, 2);
5436
5437 args[0] = gfc_evaluate_now (args[0], &se->pre);
5438 args[1] = gfc_evaluate_now (args[1], &se->pre);
5439 type = TREE_TYPE (args[0]);
5440
5441 if (!arithmetic)
5442 args[0] = fold_convert (unsigned_type_for (type), args[0]);
5443 else
5444 gcc_assert (right_shift);
5445
5446 se->expr = fold_build2_loc (input_location,
5447 right_shift ? RSHIFT_EXPR : LSHIFT_EXPR,
5448 TREE_TYPE (args[0]), args[0], args[1]);
5449
5450 if (!arithmetic)
5451 se->expr = fold_convert (type, se->expr);
5452
5453 /* The Fortran standard allows shift widths <= BIT_SIZE(I), whereas
5454 gcc requires a shift width < BIT_SIZE(I), so we have to catch this
5455 special case. */
5456 num_bits = build_int_cst (TREE_TYPE (args[1]), TYPE_PRECISION (type));
5457 cond = fold_build2_loc (input_location, GE_EXPR, boolean_type_node,
5458 args[1], num_bits);
5459
5460 se->expr = fold_build3_loc (input_location, COND_EXPR, type, cond,
5461 build_int_cst (type, 0), se->expr);
5462 }
5463
5464 /* ISHFT (I, SHIFT) = (abs (shift) >= BIT_SIZE (i))
5465 ? 0
5466 : ((shift >= 0) ? i << shift : i >> -shift)
5467 where all shifts are logical shifts. */
5468 static void
5469 gfc_conv_intrinsic_ishft (gfc_se * se, gfc_expr * expr)
5470 {
5471 tree args[2];
5472 tree type;
5473 tree utype;
5474 tree tmp;
5475 tree width;
5476 tree num_bits;
5477 tree cond;
5478 tree lshift;
5479 tree rshift;
5480
5481 gfc_conv_intrinsic_function_args (se, expr, args, 2);
5482
5483 args[0] = gfc_evaluate_now (args[0], &se->pre);
5484 args[1] = gfc_evaluate_now (args[1], &se->pre);
5485
5486 type = TREE_TYPE (args[0]);
5487 utype = unsigned_type_for (type);
5488
5489 width = fold_build1_loc (input_location, ABS_EXPR, TREE_TYPE (args[1]),
5490 args[1]);
5491
5492 /* Left shift if positive. */
5493 lshift = fold_build2_loc (input_location, LSHIFT_EXPR, type, args[0], width);
5494
5495 /* Right shift if negative.
5496 We convert to an unsigned type because we want a logical shift.
5497 The standard doesn't define the case of shifting negative
5498 numbers, and we try to be compatible with other compilers, most
5499 notably g77, here. */
5500 rshift = fold_convert (type, fold_build2_loc (input_location, RSHIFT_EXPR,
5501 utype, convert (utype, args[0]), width));
5502
5503 tmp = fold_build2_loc (input_location, GE_EXPR, boolean_type_node, args[1],
5504 build_int_cst (TREE_TYPE (args[1]), 0));
5505 tmp = fold_build3_loc (input_location, COND_EXPR, type, tmp, lshift, rshift);
5506
5507 /* The Fortran standard allows shift widths <= BIT_SIZE(I), whereas
5508 gcc requires a shift width < BIT_SIZE(I), so we have to catch this
5509 special case. */
5510 num_bits = build_int_cst (TREE_TYPE (args[1]), TYPE_PRECISION (type));
5511 cond = fold_build2_loc (input_location, GE_EXPR, boolean_type_node, width,
5512 num_bits);
5513 se->expr = fold_build3_loc (input_location, COND_EXPR, type, cond,
5514 build_int_cst (type, 0), tmp);
5515 }
5516
5517
5518 /* Circular shift. AKA rotate or barrel shift. */
5519
5520 static void
5521 gfc_conv_intrinsic_ishftc (gfc_se * se, gfc_expr * expr)
5522 {
5523 tree *args;
5524 tree type;
5525 tree tmp;
5526 tree lrot;
5527 tree rrot;
5528 tree zero;
5529 unsigned int num_args;
5530
5531 num_args = gfc_intrinsic_argument_list_length (expr);
5532 args = XALLOCAVEC (tree, num_args);
5533
5534 gfc_conv_intrinsic_function_args (se, expr, args, num_args);
5535
5536 if (num_args == 3)
5537 {
5538 /* Use a library function for the 3 parameter version. */
5539 tree int4type = gfc_get_int_type (4);
5540
5541 type = TREE_TYPE (args[0]);
5542 /* We convert the first argument to at least 4 bytes, and
5543 convert back afterwards. This removes the need for library
5544 functions for all argument sizes, and function will be
5545 aligned to at least 32 bits, so there's no loss. */
5546 if (expr->ts.kind < 4)
5547 args[0] = convert (int4type, args[0]);
5548
5549 /* Convert the SHIFT and SIZE args to INTEGER*4 otherwise we would
5550 need loads of library functions. They cannot have values >
5551 BIT_SIZE (I) so the conversion is safe. */
5552 args[1] = convert (int4type, args[1]);
5553 args[2] = convert (int4type, args[2]);
5554
5555 switch (expr->ts.kind)
5556 {
5557 case 1:
5558 case 2:
5559 case 4:
5560 tmp = gfor_fndecl_math_ishftc4;
5561 break;
5562 case 8:
5563 tmp = gfor_fndecl_math_ishftc8;
5564 break;
5565 case 16:
5566 tmp = gfor_fndecl_math_ishftc16;
5567 break;
5568 default:
5569 gcc_unreachable ();
5570 }
5571 se->expr = build_call_expr_loc (input_location,
5572 tmp, 3, args[0], args[1], args[2]);
5573 /* Convert the result back to the original type, if we extended
5574 the first argument's width above. */
5575 if (expr->ts.kind < 4)
5576 se->expr = convert (type, se->expr);
5577
5578 return;
5579 }
5580 type = TREE_TYPE (args[0]);
5581
5582 /* Evaluate arguments only once. */
5583 args[0] = gfc_evaluate_now (args[0], &se->pre);
5584 args[1] = gfc_evaluate_now (args[1], &se->pre);
5585
5586 /* Rotate left if positive. */
5587 lrot = fold_build2_loc (input_location, LROTATE_EXPR, type, args[0], args[1]);
5588
5589 /* Rotate right if negative. */
5590 tmp = fold_build1_loc (input_location, NEGATE_EXPR, TREE_TYPE (args[1]),
5591 args[1]);
5592 rrot = fold_build2_loc (input_location,RROTATE_EXPR, type, args[0], tmp);
5593
5594 zero = build_int_cst (TREE_TYPE (args[1]), 0);
5595 tmp = fold_build2_loc (input_location, GT_EXPR, boolean_type_node, args[1],
5596 zero);
5597 rrot = fold_build3_loc (input_location, COND_EXPR, type, tmp, lrot, rrot);
5598
5599 /* Do nothing if shift == 0. */
5600 tmp = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node, args[1],
5601 zero);
5602 se->expr = fold_build3_loc (input_location, COND_EXPR, type, tmp, args[0],
5603 rrot);
5604 }
5605
5606
5607 /* LEADZ (i) = (i == 0) ? BIT_SIZE (i)
5608 : __builtin_clz(i) - (BIT_SIZE('int') - BIT_SIZE(i))
5609
5610 The conditional expression is necessary because the result of LEADZ(0)
5611 is defined, but the result of __builtin_clz(0) is undefined for most
5612 targets.
5613
5614 For INTEGER kinds smaller than the C 'int' type, we have to subtract the
5615 difference in bit size between the argument of LEADZ and the C int. */
5616
5617 static void
5618 gfc_conv_intrinsic_leadz (gfc_se * se, gfc_expr * expr)
5619 {
5620 tree arg;
5621 tree arg_type;
5622 tree cond;
5623 tree result_type;
5624 tree leadz;
5625 tree bit_size;
5626 tree tmp;
5627 tree func;
5628 int s, argsize;
5629
5630 gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
5631 argsize = TYPE_PRECISION (TREE_TYPE (arg));
5632
5633 /* Which variant of __builtin_clz* should we call? */
5634 if (argsize <= INT_TYPE_SIZE)
5635 {
5636 arg_type = unsigned_type_node;
5637 func = builtin_decl_explicit (BUILT_IN_CLZ);
5638 }
5639 else if (argsize <= LONG_TYPE_SIZE)
5640 {
5641 arg_type = long_unsigned_type_node;
5642 func = builtin_decl_explicit (BUILT_IN_CLZL);
5643 }
5644 else if (argsize <= LONG_LONG_TYPE_SIZE)
5645 {
5646 arg_type = long_long_unsigned_type_node;
5647 func = builtin_decl_explicit (BUILT_IN_CLZLL);
5648 }
5649 else
5650 {
5651 gcc_assert (argsize == 2 * LONG_LONG_TYPE_SIZE);
5652 arg_type = gfc_build_uint_type (argsize);
5653 func = NULL_TREE;
5654 }
5655
5656 /* Convert the actual argument twice: first, to the unsigned type of the
5657 same size; then, to the proper argument type for the built-in
5658 function. But the return type is of the default INTEGER kind. */
5659 arg = fold_convert (gfc_build_uint_type (argsize), arg);
5660 arg = fold_convert (arg_type, arg);
5661 arg = gfc_evaluate_now (arg, &se->pre);
5662 result_type = gfc_get_int_type (gfc_default_integer_kind);
5663
5664 /* Compute LEADZ for the case i .ne. 0. */
5665 if (func)
5666 {
5667 s = TYPE_PRECISION (arg_type) - argsize;
5668 tmp = fold_convert (result_type,
5669 build_call_expr_loc (input_location, func,
5670 1, arg));
5671 leadz = fold_build2_loc (input_location, MINUS_EXPR, result_type,
5672 tmp, build_int_cst (result_type, s));
5673 }
5674 else
5675 {
5676 /* We end up here if the argument type is larger than 'long long'.
5677 We generate this code:
5678
5679 if (x & (ULL_MAX << ULL_SIZE) != 0)
5680 return clzll ((unsigned long long) (x >> ULLSIZE));
5681 else
5682 return ULL_SIZE + clzll ((unsigned long long) x);
5683 where ULL_MAX is the largest value that a ULL_MAX can hold
5684 (0xFFFFFFFFFFFFFFFF for a 64-bit long long type), and ULLSIZE
5685 is the bit-size of the long long type (64 in this example). */
5686 tree ullsize, ullmax, tmp1, tmp2, btmp;
5687
5688 ullsize = build_int_cst (result_type, LONG_LONG_TYPE_SIZE);
5689 ullmax = fold_build1_loc (input_location, BIT_NOT_EXPR,
5690 long_long_unsigned_type_node,
5691 build_int_cst (long_long_unsigned_type_node,
5692 0));
5693
5694 cond = fold_build2_loc (input_location, LSHIFT_EXPR, arg_type,
5695 fold_convert (arg_type, ullmax), ullsize);
5696 cond = fold_build2_loc (input_location, BIT_AND_EXPR, arg_type,
5697 arg, cond);
5698 cond = fold_build2_loc (input_location, NE_EXPR, boolean_type_node,
5699 cond, build_int_cst (arg_type, 0));
5700
5701 tmp1 = fold_build2_loc (input_location, RSHIFT_EXPR, arg_type,
5702 arg, ullsize);
5703 tmp1 = fold_convert (long_long_unsigned_type_node, tmp1);
5704 btmp = builtin_decl_explicit (BUILT_IN_CLZLL);
5705 tmp1 = fold_convert (result_type,
5706 build_call_expr_loc (input_location, btmp, 1, tmp1));
5707
5708 tmp2 = fold_convert (long_long_unsigned_type_node, arg);
5709 btmp = builtin_decl_explicit (BUILT_IN_CLZLL);
5710 tmp2 = fold_convert (result_type,
5711 build_call_expr_loc (input_location, btmp, 1, tmp2));
5712 tmp2 = fold_build2_loc (input_location, PLUS_EXPR, result_type,
5713 tmp2, ullsize);
5714
5715 leadz = fold_build3_loc (input_location, COND_EXPR, result_type,
5716 cond, tmp1, tmp2);
5717 }
5718
5719 /* Build BIT_SIZE. */
5720 bit_size = build_int_cst (result_type, argsize);
5721
5722 cond = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node,
5723 arg, build_int_cst (arg_type, 0));
5724 se->expr = fold_build3_loc (input_location, COND_EXPR, result_type, cond,
5725 bit_size, leadz);
5726 }
5727
5728
5729 /* TRAILZ(i) = (i == 0) ? BIT_SIZE (i) : __builtin_ctz(i)
5730
5731 The conditional expression is necessary because the result of TRAILZ(0)
5732 is defined, but the result of __builtin_ctz(0) is undefined for most
5733 targets. */
5734
5735 static void
5736 gfc_conv_intrinsic_trailz (gfc_se * se, gfc_expr *expr)
5737 {
5738 tree arg;
5739 tree arg_type;
5740 tree cond;
5741 tree result_type;
5742 tree trailz;
5743 tree bit_size;
5744 tree func;
5745 int argsize;
5746
5747 gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
5748 argsize = TYPE_PRECISION (TREE_TYPE (arg));
5749
5750 /* Which variant of __builtin_ctz* should we call? */
5751 if (argsize <= INT_TYPE_SIZE)
5752 {
5753 arg_type = unsigned_type_node;
5754 func = builtin_decl_explicit (BUILT_IN_CTZ);
5755 }
5756 else if (argsize <= LONG_TYPE_SIZE)
5757 {
5758 arg_type = long_unsigned_type_node;
5759 func = builtin_decl_explicit (BUILT_IN_CTZL);
5760 }
5761 else if (argsize <= LONG_LONG_TYPE_SIZE)
5762 {
5763 arg_type = long_long_unsigned_type_node;
5764 func = builtin_decl_explicit (BUILT_IN_CTZLL);
5765 }
5766 else
5767 {
5768 gcc_assert (argsize == 2 * LONG_LONG_TYPE_SIZE);
5769 arg_type = gfc_build_uint_type (argsize);
5770 func = NULL_TREE;
5771 }
5772
5773 /* Convert the actual argument twice: first, to the unsigned type of the
5774 same size; then, to the proper argument type for the built-in
5775 function. But the return type is of the default INTEGER kind. */
5776 arg = fold_convert (gfc_build_uint_type (argsize), arg);
5777 arg = fold_convert (arg_type, arg);
5778 arg = gfc_evaluate_now (arg, &se->pre);
5779 result_type = gfc_get_int_type (gfc_default_integer_kind);
5780
5781 /* Compute TRAILZ for the case i .ne. 0. */
5782 if (func)
5783 trailz = fold_convert (result_type, build_call_expr_loc (input_location,
5784 func, 1, arg));
5785 else
5786 {
5787 /* We end up here if the argument type is larger than 'long long'.
5788 We generate this code:
5789
5790 if ((x & ULL_MAX) == 0)
5791 return ULL_SIZE + ctzll ((unsigned long long) (x >> ULLSIZE));
5792 else
5793 return ctzll ((unsigned long long) x);
5794
5795 where ULL_MAX is the largest value that a ULL_MAX can hold
5796 (0xFFFFFFFFFFFFFFFF for a 64-bit long long type), and ULLSIZE
5797 is the bit-size of the long long type (64 in this example). */
5798 tree ullsize, ullmax, tmp1, tmp2, btmp;
5799
5800 ullsize = build_int_cst (result_type, LONG_LONG_TYPE_SIZE);
5801 ullmax = fold_build1_loc (input_location, BIT_NOT_EXPR,
5802 long_long_unsigned_type_node,
5803 build_int_cst (long_long_unsigned_type_node, 0));
5804
5805 cond = fold_build2_loc (input_location, BIT_AND_EXPR, arg_type, arg,
5806 fold_convert (arg_type, ullmax));
5807 cond = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node, cond,
5808 build_int_cst (arg_type, 0));
5809
5810 tmp1 = fold_build2_loc (input_location, RSHIFT_EXPR, arg_type,
5811 arg, ullsize);
5812 tmp1 = fold_convert (long_long_unsigned_type_node, tmp1);
5813 btmp = builtin_decl_explicit (BUILT_IN_CTZLL);
5814 tmp1 = fold_convert (result_type,
5815 build_call_expr_loc (input_location, btmp, 1, tmp1));
5816 tmp1 = fold_build2_loc (input_location, PLUS_EXPR, result_type,
5817 tmp1, ullsize);
5818
5819 tmp2 = fold_convert (long_long_unsigned_type_node, arg);
5820 btmp = builtin_decl_explicit (BUILT_IN_CTZLL);
5821 tmp2 = fold_convert (result_type,
5822 build_call_expr_loc (input_location, btmp, 1, tmp2));
5823
5824 trailz = fold_build3_loc (input_location, COND_EXPR, result_type,
5825 cond, tmp1, tmp2);
5826 }
5827
5828 /* Build BIT_SIZE. */
5829 bit_size = build_int_cst (result_type, argsize);
5830
5831 cond = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node,
5832 arg, build_int_cst (arg_type, 0));
5833 se->expr = fold_build3_loc (input_location, COND_EXPR, result_type, cond,
5834 bit_size, trailz);
5835 }
5836
5837 /* Using __builtin_popcount for POPCNT and __builtin_parity for POPPAR;
5838 for types larger than "long long", we call the long long built-in for
5839 the lower and higher bits and combine the result. */
5840
5841 static void
5842 gfc_conv_intrinsic_popcnt_poppar (gfc_se * se, gfc_expr *expr, int parity)
5843 {
5844 tree arg;
5845 tree arg_type;
5846 tree result_type;
5847 tree func;
5848 int argsize;
5849
5850 gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
5851 argsize = TYPE_PRECISION (TREE_TYPE (arg));
5852 result_type = gfc_get_int_type (gfc_default_integer_kind);
5853
5854 /* Which variant of the builtin should we call? */
5855 if (argsize <= INT_TYPE_SIZE)
5856 {
5857 arg_type = unsigned_type_node;
5858 func = builtin_decl_explicit (parity
5859 ? BUILT_IN_PARITY
5860 : BUILT_IN_POPCOUNT);
5861 }
5862 else if (argsize <= LONG_TYPE_SIZE)
5863 {
5864 arg_type = long_unsigned_type_node;
5865 func = builtin_decl_explicit (parity
5866 ? BUILT_IN_PARITYL
5867 : BUILT_IN_POPCOUNTL);
5868 }
5869 else if (argsize <= LONG_LONG_TYPE_SIZE)
5870 {
5871 arg_type = long_long_unsigned_type_node;
5872 func = builtin_decl_explicit (parity
5873 ? BUILT_IN_PARITYLL
5874 : BUILT_IN_POPCOUNTLL);
5875 }
5876 else
5877 {
5878 /* Our argument type is larger than 'long long', which mean none
5879 of the POPCOUNT builtins covers it. We thus call the 'long long'
5880 variant multiple times, and add the results. */
5881 tree utype, arg2, call1, call2;
5882
5883 /* For now, we only cover the case where argsize is twice as large
5884 as 'long long'. */
5885 gcc_assert (argsize == 2 * LONG_LONG_TYPE_SIZE);
5886
5887 func = builtin_decl_explicit (parity
5888 ? BUILT_IN_PARITYLL
5889 : BUILT_IN_POPCOUNTLL);
5890
5891 /* Convert it to an integer, and store into a variable. */
5892 utype = gfc_build_uint_type (argsize);
5893 arg = fold_convert (utype, arg);
5894 arg = gfc_evaluate_now (arg, &se->pre);
5895
5896 /* Call the builtin twice. */
5897 call1 = build_call_expr_loc (input_location, func, 1,
5898 fold_convert (long_long_unsigned_type_node,
5899 arg));
5900
5901 arg2 = fold_build2_loc (input_location, RSHIFT_EXPR, utype, arg,
5902 build_int_cst (utype, LONG_LONG_TYPE_SIZE));
5903 call2 = build_call_expr_loc (input_location, func, 1,
5904 fold_convert (long_long_unsigned_type_node,
5905 arg2));
5906
5907 /* Combine the results. */
5908 if (parity)
5909 se->expr = fold_build2_loc (input_location, BIT_XOR_EXPR, result_type,
5910 call1, call2);
5911 else
5912 se->expr = fold_build2_loc (input_location, PLUS_EXPR, result_type,
5913 call1, call2);
5914
5915 return;
5916 }
5917
5918 /* Convert the actual argument twice: first, to the unsigned type of the
5919 same size; then, to the proper argument type for the built-in
5920 function. */
5921 arg = fold_convert (gfc_build_uint_type (argsize), arg);
5922 arg = fold_convert (arg_type, arg);
5923
5924 se->expr = fold_convert (result_type,
5925 build_call_expr_loc (input_location, func, 1, arg));
5926 }
5927
5928
5929 /* Process an intrinsic with unspecified argument-types that has an optional
5930 argument (which could be of type character), e.g. EOSHIFT. For those, we
5931 need to append the string length of the optional argument if it is not
5932 present and the type is really character.
5933 primary specifies the position (starting at 1) of the non-optional argument
5934 specifying the type and optional gives the position of the optional
5935 argument in the arglist. */
5936
5937 static void
5938 conv_generic_with_optional_char_arg (gfc_se* se, gfc_expr* expr,
5939 unsigned primary, unsigned optional)
5940 {
5941 gfc_actual_arglist* prim_arg;
5942 gfc_actual_arglist* opt_arg;
5943 unsigned cur_pos;
5944 gfc_actual_arglist* arg;
5945 gfc_symbol* sym;
5946 vec<tree, va_gc> *append_args;
5947
5948 /* Find the two arguments given as position. */
5949 cur_pos = 0;
5950 prim_arg = NULL;
5951 opt_arg = NULL;
5952 for (arg = expr->value.function.actual; arg; arg = arg->next)
5953 {
5954 ++cur_pos;
5955
5956 if (cur_pos == primary)
5957 prim_arg = arg;
5958 if (cur_pos == optional)
5959 opt_arg = arg;
5960
5961 if (cur_pos >= primary && cur_pos >= optional)
5962 break;
5963 }
5964 gcc_assert (prim_arg);
5965 gcc_assert (prim_arg->expr);
5966 gcc_assert (opt_arg);
5967
5968 /* If we do have type CHARACTER and the optional argument is really absent,
5969 append a dummy 0 as string length. */
5970 append_args = NULL;
5971 if (prim_arg->expr->ts.type == BT_CHARACTER && !opt_arg->expr)
5972 {
5973 tree dummy;
5974
5975 dummy = build_int_cst (gfc_charlen_type_node, 0);
5976 vec_alloc (append_args, 1);
5977 append_args->quick_push (dummy);
5978 }
5979
5980 /* Build the call itself. */
5981 gcc_assert (!se->ignore_optional);
5982 sym = gfc_get_symbol_for_expr (expr, false);
5983 gfc_conv_procedure_call (se, sym, expr->value.function.actual, expr,
5984 append_args);
5985 gfc_free_symbol (sym);
5986 }
5987
5988
5989 /* The length of a character string. */
5990 static void
5991 gfc_conv_intrinsic_len (gfc_se * se, gfc_expr * expr)
5992 {
5993 tree len;
5994 tree type;
5995 tree decl;
5996 gfc_symbol *sym;
5997 gfc_se argse;
5998 gfc_expr *arg;
5999
6000 gcc_assert (!se->ss);
6001
6002 arg = expr->value.function.actual->expr;
6003
6004 type = gfc_typenode_for_spec (&expr->ts);
6005 switch (arg->expr_type)
6006 {
6007 case EXPR_CONSTANT:
6008 len = build_int_cst (gfc_charlen_type_node, arg->value.character.length);
6009 break;
6010
6011 case EXPR_ARRAY:
6012 /* Obtain the string length from the function used by
6013 trans-array.c(gfc_trans_array_constructor). */
6014 len = NULL_TREE;
6015 get_array_ctor_strlen (&se->pre, arg->value.constructor, &len);
6016 break;
6017
6018 case EXPR_VARIABLE:
6019 if (arg->ref == NULL
6020 || (arg->ref->next == NULL && arg->ref->type == REF_ARRAY))
6021 {
6022 /* This doesn't catch all cases.
6023 See http://gcc.gnu.org/ml/fortran/2004-06/msg00165.html
6024 and the surrounding thread. */
6025 sym = arg->symtree->n.sym;
6026 decl = gfc_get_symbol_decl (sym);
6027 if (decl == current_function_decl && sym->attr.function
6028 && (sym->result == sym))
6029 decl = gfc_get_fake_result_decl (sym, 0);
6030
6031 len = sym->ts.u.cl->backend_decl;
6032 gcc_assert (len);
6033 break;
6034 }
6035
6036 /* Fall through. */
6037
6038 default:
6039 /* Anybody stupid enough to do this deserves inefficient code. */
6040 gfc_init_se (&argse, se);
6041 if (arg->rank == 0)
6042 gfc_conv_expr (&argse, arg);
6043 else
6044 gfc_conv_expr_descriptor (&argse, arg);
6045 gfc_add_block_to_block (&se->pre, &argse.pre);
6046 gfc_add_block_to_block (&se->post, &argse.post);
6047 len = argse.string_length;
6048 break;
6049 }
6050 se->expr = convert (type, len);
6051 }
6052
6053 /* The length of a character string not including trailing blanks. */
6054 static void
6055 gfc_conv_intrinsic_len_trim (gfc_se * se, gfc_expr * expr)
6056 {
6057 int kind = expr->value.function.actual->expr->ts.kind;
6058 tree args[2], type, fndecl;
6059
6060 gfc_conv_intrinsic_function_args (se, expr, args, 2);
6061 type = gfc_typenode_for_spec (&expr->ts);
6062
6063 if (kind == 1)
6064 fndecl = gfor_fndecl_string_len_trim;
6065 else if (kind == 4)
6066 fndecl = gfor_fndecl_string_len_trim_char4;
6067 else
6068 gcc_unreachable ();
6069
6070 se->expr = build_call_expr_loc (input_location,
6071 fndecl, 2, args[0], args[1]);
6072 se->expr = convert (type, se->expr);
6073 }
6074
6075
6076 /* Returns the starting position of a substring within a string. */
6077
6078 static void
6079 gfc_conv_intrinsic_index_scan_verify (gfc_se * se, gfc_expr * expr,
6080 tree function)
6081 {
6082 tree logical4_type_node = gfc_get_logical_type (4);
6083 tree type;
6084 tree fndecl;
6085 tree *args;
6086 unsigned int num_args;
6087
6088 args = XALLOCAVEC (tree, 5);
6089
6090 /* Get number of arguments; characters count double due to the
6091 string length argument. Kind= is not passed to the library
6092 and thus ignored. */
6093 if (expr->value.function.actual->next->next->expr == NULL)
6094 num_args = 4;
6095 else
6096 num_args = 5;
6097
6098 gfc_conv_intrinsic_function_args (se, expr, args, num_args);
6099 type = gfc_typenode_for_spec (&expr->ts);
6100
6101 if (num_args == 4)
6102 args[4] = build_int_cst (logical4_type_node, 0);
6103 else
6104 args[4] = convert (logical4_type_node, args[4]);
6105
6106 fndecl = build_addr (function);
6107 se->expr = build_call_array_loc (input_location,
6108 TREE_TYPE (TREE_TYPE (function)), fndecl,
6109 5, args);
6110 se->expr = convert (type, se->expr);
6111
6112 }
6113
6114 /* The ascii value for a single character. */
6115 static void
6116 gfc_conv_intrinsic_ichar (gfc_se * se, gfc_expr * expr)
6117 {
6118 tree args[3], type, pchartype;
6119 int nargs;
6120
6121 nargs = gfc_intrinsic_argument_list_length (expr);
6122 gfc_conv_intrinsic_function_args (se, expr, args, nargs);
6123 gcc_assert (POINTER_TYPE_P (TREE_TYPE (args[1])));
6124 pchartype = gfc_get_pchar_type (expr->value.function.actual->expr->ts.kind);
6125 args[1] = fold_build1_loc (input_location, NOP_EXPR, pchartype, args[1]);
6126 type = gfc_typenode_for_spec (&expr->ts);
6127
6128 se->expr = build_fold_indirect_ref_loc (input_location,
6129 args[1]);
6130 se->expr = convert (type, se->expr);
6131 }
6132
6133
6134 /* Intrinsic ISNAN calls __builtin_isnan. */
6135
6136 static void
6137 gfc_conv_intrinsic_isnan (gfc_se * se, gfc_expr * expr)
6138 {
6139 tree arg;
6140
6141 gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
6142 se->expr = build_call_expr_loc (input_location,
6143 builtin_decl_explicit (BUILT_IN_ISNAN),
6144 1, arg);
6145 STRIP_TYPE_NOPS (se->expr);
6146 se->expr = fold_convert (gfc_typenode_for_spec (&expr->ts), se->expr);
6147 }
6148
6149
6150 /* Intrinsics IS_IOSTAT_END and IS_IOSTAT_EOR just need to compare
6151 their argument against a constant integer value. */
6152
6153 static void
6154 gfc_conv_has_intvalue (gfc_se * se, gfc_expr * expr, const int value)
6155 {
6156 tree arg;
6157
6158 gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
6159 se->expr = fold_build2_loc (input_location, EQ_EXPR,
6160 gfc_typenode_for_spec (&expr->ts),
6161 arg, build_int_cst (TREE_TYPE (arg), value));
6162 }
6163
6164
6165
6166 /* MERGE (tsource, fsource, mask) = mask ? tsource : fsource. */
6167
6168 static void
6169 gfc_conv_intrinsic_merge (gfc_se * se, gfc_expr * expr)
6170 {
6171 tree tsource;
6172 tree fsource;
6173 tree mask;
6174 tree type;
6175 tree len, len2;
6176 tree *args;
6177 unsigned int num_args;
6178
6179 num_args = gfc_intrinsic_argument_list_length (expr);
6180 args = XALLOCAVEC (tree, num_args);
6181
6182 gfc_conv_intrinsic_function_args (se, expr, args, num_args);
6183 if (expr->ts.type != BT_CHARACTER)
6184 {
6185 tsource = args[0];
6186 fsource = args[1];
6187 mask = args[2];
6188 }
6189 else
6190 {
6191 /* We do the same as in the non-character case, but the argument
6192 list is different because of the string length arguments. We
6193 also have to set the string length for the result. */
6194 len = args[0];
6195 tsource = args[1];
6196 len2 = args[2];
6197 fsource = args[3];
6198 mask = args[4];
6199
6200 gfc_trans_same_strlen_check ("MERGE intrinsic", &expr->where, len, len2,
6201 &se->pre);
6202 se->string_length = len;
6203 }
6204 type = TREE_TYPE (tsource);
6205 se->expr = fold_build3_loc (input_location, COND_EXPR, type, mask, tsource,
6206 fold_convert (type, fsource));
6207 }
6208
6209
6210 /* MERGE_BITS (I, J, MASK) = (I & MASK) | (I & (~MASK)). */
6211
6212 static void
6213 gfc_conv_intrinsic_merge_bits (gfc_se * se, gfc_expr * expr)
6214 {
6215 tree args[3], mask, type;
6216
6217 gfc_conv_intrinsic_function_args (se, expr, args, 3);
6218 mask = gfc_evaluate_now (args[2], &se->pre);
6219
6220 type = TREE_TYPE (args[0]);
6221 gcc_assert (TREE_TYPE (args[1]) == type);
6222 gcc_assert (TREE_TYPE (mask) == type);
6223
6224 args[0] = fold_build2_loc (input_location, BIT_AND_EXPR, type, args[0], mask);
6225 args[1] = fold_build2_loc (input_location, BIT_AND_EXPR, type, args[1],
6226 fold_build1_loc (input_location, BIT_NOT_EXPR,
6227 type, mask));
6228 se->expr = fold_build2_loc (input_location, BIT_IOR_EXPR, type,
6229 args[0], args[1]);
6230 }
6231
6232
6233 /* MASKL(n) = n == 0 ? 0 : (~0) << (BIT_SIZE - n)
6234 MASKR(n) = n == BIT_SIZE ? ~0 : ~((~0) << n) */
6235
6236 static void
6237 gfc_conv_intrinsic_mask (gfc_se * se, gfc_expr * expr, int left)
6238 {
6239 tree arg, allones, type, utype, res, cond, bitsize;
6240 int i;
6241
6242 gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
6243 arg = gfc_evaluate_now (arg, &se->pre);
6244
6245 type = gfc_get_int_type (expr->ts.kind);
6246 utype = unsigned_type_for (type);
6247
6248 i = gfc_validate_kind (BT_INTEGER, expr->ts.kind, false);
6249 bitsize = build_int_cst (TREE_TYPE (arg), gfc_integer_kinds[i].bit_size);
6250
6251 allones = fold_build1_loc (input_location, BIT_NOT_EXPR, utype,
6252 build_int_cst (utype, 0));
6253
6254 if (left)
6255 {
6256 /* Left-justified mask. */
6257 res = fold_build2_loc (input_location, MINUS_EXPR, TREE_TYPE (arg),
6258 bitsize, arg);
6259 res = fold_build2_loc (input_location, LSHIFT_EXPR, utype, allones,
6260 fold_convert (utype, res));
6261
6262 /* Special case arg == 0, because SHIFT_EXPR wants a shift strictly
6263 smaller than type width. */
6264 cond = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node, arg,
6265 build_int_cst (TREE_TYPE (arg), 0));
6266 res = fold_build3_loc (input_location, COND_EXPR, utype, cond,
6267 build_int_cst (utype, 0), res);
6268 }
6269 else
6270 {
6271 /* Right-justified mask. */
6272 res = fold_build2_loc (input_location, LSHIFT_EXPR, utype, allones,
6273 fold_convert (utype, arg));
6274 res = fold_build1_loc (input_location, BIT_NOT_EXPR, utype, res);
6275
6276 /* Special case agr == bit_size, because SHIFT_EXPR wants a shift
6277 strictly smaller than type width. */
6278 cond = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node,
6279 arg, bitsize);
6280 res = fold_build3_loc (input_location, COND_EXPR, utype,
6281 cond, allones, res);
6282 }
6283
6284 se->expr = fold_convert (type, res);
6285 }
6286
6287
6288 /* FRACTION (s) is translated into:
6289 isfinite (s) ? frexp (s, &dummy_int) : NaN */
6290 static void
6291 gfc_conv_intrinsic_fraction (gfc_se * se, gfc_expr * expr)
6292 {
6293 tree arg, type, tmp, res, frexp, cond;
6294
6295 frexp = gfc_builtin_decl_for_float_kind (BUILT_IN_FREXP, expr->ts.kind);
6296
6297 type = gfc_typenode_for_spec (&expr->ts);
6298 gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
6299 arg = gfc_evaluate_now (arg, &se->pre);
6300
6301 cond = build_call_expr_loc (input_location,
6302 builtin_decl_explicit (BUILT_IN_ISFINITE),
6303 1, arg);
6304
6305 tmp = gfc_create_var (integer_type_node, NULL);
6306 res = build_call_expr_loc (input_location, frexp, 2,
6307 fold_convert (type, arg),
6308 gfc_build_addr_expr (NULL_TREE, tmp));
6309 res = fold_convert (type, res);
6310
6311 se->expr = fold_build3_loc (input_location, COND_EXPR, type,
6312 cond, res, gfc_build_nan (type, ""));
6313 }
6314
6315
6316 /* NEAREST (s, dir) is translated into
6317 tmp = copysign (HUGE_VAL, dir);
6318 return nextafter (s, tmp);
6319 */
6320 static void
6321 gfc_conv_intrinsic_nearest (gfc_se * se, gfc_expr * expr)
6322 {
6323 tree args[2], type, tmp, nextafter, copysign, huge_val;
6324
6325 nextafter = gfc_builtin_decl_for_float_kind (BUILT_IN_NEXTAFTER, expr->ts.kind);
6326 copysign = gfc_builtin_decl_for_float_kind (BUILT_IN_COPYSIGN, expr->ts.kind);
6327
6328 type = gfc_typenode_for_spec (&expr->ts);
6329 gfc_conv_intrinsic_function_args (se, expr, args, 2);
6330
6331 huge_val = gfc_build_inf_or_huge (type, expr->ts.kind);
6332 tmp = build_call_expr_loc (input_location, copysign, 2, huge_val,
6333 fold_convert (type, args[1]));
6334 se->expr = build_call_expr_loc (input_location, nextafter, 2,
6335 fold_convert (type, args[0]), tmp);
6336 se->expr = fold_convert (type, se->expr);
6337 }
6338
6339
6340 /* SPACING (s) is translated into
6341 int e;
6342 if (!isfinite (s))
6343 res = NaN;
6344 else if (s == 0)
6345 res = tiny;
6346 else
6347 {
6348 frexp (s, &e);
6349 e = e - prec;
6350 e = MAX_EXPR (e, emin);
6351 res = scalbn (1., e);
6352 }
6353 return res;
6354
6355 where prec is the precision of s, gfc_real_kinds[k].digits,
6356 emin is min_exponent - 1, gfc_real_kinds[k].min_exponent - 1,
6357 and tiny is tiny(s), gfc_real_kinds[k].tiny. */
6358
6359 static void
6360 gfc_conv_intrinsic_spacing (gfc_se * se, gfc_expr * expr)
6361 {
6362 tree arg, type, prec, emin, tiny, res, e;
6363 tree cond, nan, tmp, frexp, scalbn;
6364 int k;
6365 stmtblock_t block;
6366
6367 k = gfc_validate_kind (BT_REAL, expr->ts.kind, false);
6368 prec = build_int_cst (integer_type_node, gfc_real_kinds[k].digits);
6369 emin = build_int_cst (integer_type_node, gfc_real_kinds[k].min_exponent - 1);
6370 tiny = gfc_conv_mpfr_to_tree (gfc_real_kinds[k].tiny, expr->ts.kind, 0);
6371
6372 frexp = gfc_builtin_decl_for_float_kind (BUILT_IN_FREXP, expr->ts.kind);
6373 scalbn = gfc_builtin_decl_for_float_kind (BUILT_IN_SCALBN, expr->ts.kind);
6374
6375 gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
6376 arg = gfc_evaluate_now (arg, &se->pre);
6377
6378 type = gfc_typenode_for_spec (&expr->ts);
6379 e = gfc_create_var (integer_type_node, NULL);
6380 res = gfc_create_var (type, NULL);
6381
6382
6383 /* Build the block for s /= 0. */
6384 gfc_start_block (&block);
6385 tmp = build_call_expr_loc (input_location, frexp, 2, arg,
6386 gfc_build_addr_expr (NULL_TREE, e));
6387 gfc_add_expr_to_block (&block, tmp);
6388
6389 tmp = fold_build2_loc (input_location, MINUS_EXPR, integer_type_node, e,
6390 prec);
6391 gfc_add_modify (&block, e, fold_build2_loc (input_location, MAX_EXPR,
6392 integer_type_node, tmp, emin));
6393
6394 tmp = build_call_expr_loc (input_location, scalbn, 2,
6395 build_real_from_int_cst (type, integer_one_node), e);
6396 gfc_add_modify (&block, res, tmp);
6397
6398 /* Finish by building the IF statement for value zero. */
6399 cond = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node, arg,
6400 build_real_from_int_cst (type, integer_zero_node));
6401 tmp = build3_v (COND_EXPR, cond, build2_v (MODIFY_EXPR, res, tiny),
6402 gfc_finish_block (&block));
6403
6404 /* And deal with infinities and NaNs. */
6405 cond = build_call_expr_loc (input_location,
6406 builtin_decl_explicit (BUILT_IN_ISFINITE),
6407 1, arg);
6408 nan = gfc_build_nan (type, "");
6409 tmp = build3_v (COND_EXPR, cond, tmp, build2_v (MODIFY_EXPR, res, nan));
6410
6411 gfc_add_expr_to_block (&se->pre, tmp);
6412 se->expr = res;
6413 }
6414
6415
6416 /* RRSPACING (s) is translated into
6417 int e;
6418 real x;
6419 x = fabs (s);
6420 if (isfinite (x))
6421 {
6422 if (x != 0)
6423 {
6424 frexp (s, &e);
6425 x = scalbn (x, precision - e);
6426 }
6427 }
6428 else
6429 x = NaN;
6430 return x;
6431
6432 where precision is gfc_real_kinds[k].digits. */
6433
6434 static void
6435 gfc_conv_intrinsic_rrspacing (gfc_se * se, gfc_expr * expr)
6436 {
6437 tree arg, type, e, x, cond, nan, stmt, tmp, frexp, scalbn, fabs;
6438 int prec, k;
6439 stmtblock_t block;
6440
6441 k = gfc_validate_kind (BT_REAL, expr->ts.kind, false);
6442 prec = gfc_real_kinds[k].digits;
6443
6444 frexp = gfc_builtin_decl_for_float_kind (BUILT_IN_FREXP, expr->ts.kind);
6445 scalbn = gfc_builtin_decl_for_float_kind (BUILT_IN_SCALBN, expr->ts.kind);
6446 fabs = gfc_builtin_decl_for_float_kind (BUILT_IN_FABS, expr->ts.kind);
6447
6448 type = gfc_typenode_for_spec (&expr->ts);
6449 gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
6450 arg = gfc_evaluate_now (arg, &se->pre);
6451
6452 e = gfc_create_var (integer_type_node, NULL);
6453 x = gfc_create_var (type, NULL);
6454 gfc_add_modify (&se->pre, x,
6455 build_call_expr_loc (input_location, fabs, 1, arg));
6456
6457
6458 gfc_start_block (&block);
6459 tmp = build_call_expr_loc (input_location, frexp, 2, arg,
6460 gfc_build_addr_expr (NULL_TREE, e));
6461 gfc_add_expr_to_block (&block, tmp);
6462
6463 tmp = fold_build2_loc (input_location, MINUS_EXPR, integer_type_node,
6464 build_int_cst (integer_type_node, prec), e);
6465 tmp = build_call_expr_loc (input_location, scalbn, 2, x, tmp);
6466 gfc_add_modify (&block, x, tmp);
6467 stmt = gfc_finish_block (&block);
6468
6469 /* if (x != 0) */
6470 cond = fold_build2_loc (input_location, NE_EXPR, boolean_type_node, x,
6471 build_real_from_int_cst (type, integer_zero_node));
6472 tmp = build3_v (COND_EXPR, cond, stmt, build_empty_stmt (input_location));
6473
6474 /* And deal with infinities and NaNs. */
6475 cond = build_call_expr_loc (input_location,
6476 builtin_decl_explicit (BUILT_IN_ISFINITE),
6477 1, x);
6478 nan = gfc_build_nan (type, "");
6479 tmp = build3_v (COND_EXPR, cond, tmp, build2_v (MODIFY_EXPR, x, nan));
6480
6481 gfc_add_expr_to_block (&se->pre, tmp);
6482 se->expr = fold_convert (type, x);
6483 }
6484
6485
6486 /* SCALE (s, i) is translated into scalbn (s, i). */
6487 static void
6488 gfc_conv_intrinsic_scale (gfc_se * se, gfc_expr * expr)
6489 {
6490 tree args[2], type, scalbn;
6491
6492 scalbn = gfc_builtin_decl_for_float_kind (BUILT_IN_SCALBN, expr->ts.kind);
6493
6494 type = gfc_typenode_for_spec (&expr->ts);
6495 gfc_conv_intrinsic_function_args (se, expr, args, 2);
6496 se->expr = build_call_expr_loc (input_location, scalbn, 2,
6497 fold_convert (type, args[0]),
6498 fold_convert (integer_type_node, args[1]));
6499 se->expr = fold_convert (type, se->expr);
6500 }
6501
6502
6503 /* SET_EXPONENT (s, i) is translated into
6504 isfinite(s) ? scalbn (frexp (s, &dummy_int), i) : NaN */
6505 static void
6506 gfc_conv_intrinsic_set_exponent (gfc_se * se, gfc_expr * expr)
6507 {
6508 tree args[2], type, tmp, frexp, scalbn, cond, nan, res;
6509
6510 frexp = gfc_builtin_decl_for_float_kind (BUILT_IN_FREXP, expr->ts.kind);
6511 scalbn = gfc_builtin_decl_for_float_kind (BUILT_IN_SCALBN, expr->ts.kind);
6512
6513 type = gfc_typenode_for_spec (&expr->ts);
6514 gfc_conv_intrinsic_function_args (se, expr, args, 2);
6515 args[0] = gfc_evaluate_now (args[0], &se->pre);
6516
6517 tmp = gfc_create_var (integer_type_node, NULL);
6518 tmp = build_call_expr_loc (input_location, frexp, 2,
6519 fold_convert (type, args[0]),
6520 gfc_build_addr_expr (NULL_TREE, tmp));
6521 res = build_call_expr_loc (input_location, scalbn, 2, tmp,
6522 fold_convert (integer_type_node, args[1]));
6523 res = fold_convert (type, res);
6524
6525 /* Call to isfinite */
6526 cond = build_call_expr_loc (input_location,
6527 builtin_decl_explicit (BUILT_IN_ISFINITE),
6528 1, args[0]);
6529 nan = gfc_build_nan (type, "");
6530
6531 se->expr = fold_build3_loc (input_location, COND_EXPR, type, cond,
6532 res, nan);
6533 }
6534
6535
6536 static void
6537 gfc_conv_intrinsic_size (gfc_se * se, gfc_expr * expr)
6538 {
6539 gfc_actual_arglist *actual;
6540 tree arg1;
6541 tree type;
6542 tree fncall0;
6543 tree fncall1;
6544 gfc_se argse;
6545
6546 gfc_init_se (&argse, NULL);
6547 actual = expr->value.function.actual;
6548
6549 if (actual->expr->ts.type == BT_CLASS)
6550 gfc_add_class_array_ref (actual->expr);
6551
6552 argse.data_not_needed = 1;
6553 if (gfc_is_alloc_class_array_function (actual->expr))
6554 {
6555 /* For functions that return a class array conv_expr_descriptor is not
6556 able to get the descriptor right. Therefore this special case. */
6557 gfc_conv_expr_reference (&argse, actual->expr);
6558 argse.expr = gfc_build_addr_expr (NULL_TREE,
6559 gfc_class_data_get (argse.expr));
6560 }
6561 else
6562 {
6563 argse.want_pointer = 1;
6564 gfc_conv_expr_descriptor (&argse, actual->expr);
6565 }
6566 gfc_add_block_to_block (&se->pre, &argse.pre);
6567 gfc_add_block_to_block (&se->post, &argse.post);
6568 arg1 = gfc_evaluate_now (argse.expr, &se->pre);
6569
6570 /* Build the call to size0. */
6571 fncall0 = build_call_expr_loc (input_location,
6572 gfor_fndecl_size0, 1, arg1);
6573
6574 actual = actual->next;
6575
6576 if (actual->expr)
6577 {
6578 gfc_init_se (&argse, NULL);
6579 gfc_conv_expr_type (&argse, actual->expr,
6580 gfc_array_index_type);
6581 gfc_add_block_to_block (&se->pre, &argse.pre);
6582
6583 /* Unusually, for an intrinsic, size does not exclude
6584 an optional arg2, so we must test for it. */
6585 if (actual->expr->expr_type == EXPR_VARIABLE
6586 && actual->expr->symtree->n.sym->attr.dummy
6587 && actual->expr->symtree->n.sym->attr.optional)
6588 {
6589 tree tmp;
6590 /* Build the call to size1. */
6591 fncall1 = build_call_expr_loc (input_location,
6592 gfor_fndecl_size1, 2,
6593 arg1, argse.expr);
6594
6595 gfc_init_se (&argse, NULL);
6596 argse.want_pointer = 1;
6597 argse.data_not_needed = 1;
6598 gfc_conv_expr (&argse, actual->expr);
6599 gfc_add_block_to_block (&se->pre, &argse.pre);
6600 tmp = fold_build2_loc (input_location, NE_EXPR, boolean_type_node,
6601 argse.expr, null_pointer_node);
6602 tmp = gfc_evaluate_now (tmp, &se->pre);
6603 se->expr = fold_build3_loc (input_location, COND_EXPR,
6604 pvoid_type_node, tmp, fncall1, fncall0);
6605 }
6606 else
6607 {
6608 se->expr = NULL_TREE;
6609 argse.expr = fold_build2_loc (input_location, MINUS_EXPR,
6610 gfc_array_index_type,
6611 argse.expr, gfc_index_one_node);
6612 }
6613 }
6614 else if (expr->value.function.actual->expr->rank == 1)
6615 {
6616 argse.expr = gfc_index_zero_node;
6617 se->expr = NULL_TREE;
6618 }
6619 else
6620 se->expr = fncall0;
6621
6622 if (se->expr == NULL_TREE)
6623 {
6624 tree ubound, lbound;
6625
6626 arg1 = build_fold_indirect_ref_loc (input_location,
6627 arg1);
6628 ubound = gfc_conv_descriptor_ubound_get (arg1, argse.expr);
6629 lbound = gfc_conv_descriptor_lbound_get (arg1, argse.expr);
6630 se->expr = fold_build2_loc (input_location, MINUS_EXPR,
6631 gfc_array_index_type, ubound, lbound);
6632 se->expr = fold_build2_loc (input_location, PLUS_EXPR,
6633 gfc_array_index_type,
6634 se->expr, gfc_index_one_node);
6635 se->expr = fold_build2_loc (input_location, MAX_EXPR,
6636 gfc_array_index_type, se->expr,
6637 gfc_index_zero_node);
6638 }
6639
6640 type = gfc_typenode_for_spec (&expr->ts);
6641 se->expr = convert (type, se->expr);
6642 }
6643
6644
6645 /* Helper function to compute the size of a character variable,
6646 excluding the terminating null characters. The result has
6647 gfc_array_index_type type. */
6648
6649 tree
6650 size_of_string_in_bytes (int kind, tree string_length)
6651 {
6652 tree bytesize;
6653 int i = gfc_validate_kind (BT_CHARACTER, kind, false);
6654
6655 bytesize = build_int_cst (gfc_array_index_type,
6656 gfc_character_kinds[i].bit_size / 8);
6657
6658 return fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
6659 bytesize,
6660 fold_convert (gfc_array_index_type, string_length));
6661 }
6662
6663
6664 static void
6665 gfc_conv_intrinsic_sizeof (gfc_se *se, gfc_expr *expr)
6666 {
6667 gfc_expr *arg;
6668 gfc_se argse;
6669 tree source_bytes;
6670 tree tmp;
6671 tree lower;
6672 tree upper;
6673 tree byte_size;
6674 int n;
6675
6676 gfc_init_se (&argse, NULL);
6677 arg = expr->value.function.actual->expr;
6678
6679 if (arg->rank || arg->ts.type == BT_ASSUMED)
6680 gfc_conv_expr_descriptor (&argse, arg);
6681 else
6682 gfc_conv_expr_reference (&argse, arg);
6683
6684 if (arg->ts.type == BT_ASSUMED)
6685 {
6686 /* This only works if an array descriptor has been passed; thus, extract
6687 the size from the descriptor. */
6688 gcc_assert (TYPE_PRECISION (gfc_array_index_type)
6689 == TYPE_PRECISION (size_type_node));
6690 tmp = arg->symtree->n.sym->backend_decl;
6691 tmp = DECL_LANG_SPECIFIC (tmp)
6692 && GFC_DECL_SAVED_DESCRIPTOR (tmp) != NULL_TREE
6693 ? GFC_DECL_SAVED_DESCRIPTOR (tmp) : tmp;
6694 if (POINTER_TYPE_P (TREE_TYPE (tmp)))
6695 tmp = build_fold_indirect_ref_loc (input_location, tmp);
6696 tmp = fold_convert (size_type_node, gfc_conv_descriptor_dtype (tmp));
6697 tmp = fold_build2_loc (input_location, RSHIFT_EXPR, TREE_TYPE (tmp), tmp,
6698 build_int_cst (TREE_TYPE (tmp),
6699 GFC_DTYPE_SIZE_SHIFT));
6700 byte_size = fold_convert (gfc_array_index_type, tmp);
6701 }
6702 else if (arg->ts.type == BT_CLASS)
6703 {
6704 /* Conv_expr_descriptor returns a component_ref to _data component of the
6705 class object. The class object may be a non-pointer object, e.g.
6706 located on the stack, or a memory location pointed to, e.g. a
6707 parameter, i.e., an indirect_ref. */
6708 if (arg->rank < 0
6709 || (arg->rank > 0 && !VAR_P (argse.expr)
6710 && ((INDIRECT_REF_P (TREE_OPERAND (argse.expr, 0))
6711 && GFC_DECL_CLASS (TREE_OPERAND (
6712 TREE_OPERAND (argse.expr, 0), 0)))
6713 || GFC_DECL_CLASS (TREE_OPERAND (argse.expr, 0)))))
6714 byte_size = gfc_class_vtab_size_get (TREE_OPERAND (argse.expr, 0));
6715 else if (arg->rank > 0
6716 || (arg->rank == 0
6717 && arg->ref && arg->ref->type == REF_COMPONENT))
6718 /* The scalarizer added an additional temp. To get the class' vptr
6719 one has to look at the original backend_decl. */
6720 byte_size = gfc_class_vtab_size_get (
6721 GFC_DECL_SAVED_DESCRIPTOR (arg->symtree->n.sym->backend_decl));
6722 else
6723 byte_size = gfc_class_vtab_size_get (argse.expr);
6724 }
6725 else
6726 {
6727 if (arg->ts.type == BT_CHARACTER)
6728 byte_size = size_of_string_in_bytes (arg->ts.kind, argse.string_length);
6729 else
6730 {
6731 if (arg->rank == 0)
6732 byte_size = TREE_TYPE (build_fold_indirect_ref_loc (input_location,
6733 argse.expr));
6734 else
6735 byte_size = gfc_get_element_type (TREE_TYPE (argse.expr));
6736 byte_size = fold_convert (gfc_array_index_type,
6737 size_in_bytes (byte_size));
6738 }
6739 }
6740
6741 if (arg->rank == 0)
6742 se->expr = byte_size;
6743 else
6744 {
6745 source_bytes = gfc_create_var (gfc_array_index_type, "bytes");
6746 gfc_add_modify (&argse.pre, source_bytes, byte_size);
6747
6748 if (arg->rank == -1)
6749 {
6750 tree cond, loop_var, exit_label;
6751 stmtblock_t body;
6752
6753 tmp = fold_convert (gfc_array_index_type,
6754 gfc_conv_descriptor_rank (argse.expr));
6755 loop_var = gfc_create_var (gfc_array_index_type, "i");
6756 gfc_add_modify (&argse.pre, loop_var, gfc_index_zero_node);
6757 exit_label = gfc_build_label_decl (NULL_TREE);
6758
6759 /* Create loop:
6760 for (;;)
6761 {
6762 if (i >= rank)
6763 goto exit;
6764 source_bytes = source_bytes * array.dim[i].extent;
6765 i = i + 1;
6766 }
6767 exit: */
6768 gfc_start_block (&body);
6769 cond = fold_build2_loc (input_location, GE_EXPR, boolean_type_node,
6770 loop_var, tmp);
6771 tmp = build1_v (GOTO_EXPR, exit_label);
6772 tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node,
6773 cond, tmp, build_empty_stmt (input_location));
6774 gfc_add_expr_to_block (&body, tmp);
6775
6776 lower = gfc_conv_descriptor_lbound_get (argse.expr, loop_var);
6777 upper = gfc_conv_descriptor_ubound_get (argse.expr, loop_var);
6778 tmp = gfc_conv_array_extent_dim (lower, upper, NULL);
6779 tmp = fold_build2_loc (input_location, MULT_EXPR,
6780 gfc_array_index_type, tmp, source_bytes);
6781 gfc_add_modify (&body, source_bytes, tmp);
6782
6783 tmp = fold_build2_loc (input_location, PLUS_EXPR,
6784 gfc_array_index_type, loop_var,
6785 gfc_index_one_node);
6786 gfc_add_modify_loc (input_location, &body, loop_var, tmp);
6787
6788 tmp = gfc_finish_block (&body);
6789
6790 tmp = fold_build1_loc (input_location, LOOP_EXPR, void_type_node,
6791 tmp);
6792 gfc_add_expr_to_block (&argse.pre, tmp);
6793
6794 tmp = build1_v (LABEL_EXPR, exit_label);
6795 gfc_add_expr_to_block (&argse.pre, tmp);
6796 }
6797 else
6798 {
6799 /* Obtain the size of the array in bytes. */
6800 for (n = 0; n < arg->rank; n++)
6801 {
6802 tree idx;
6803 idx = gfc_rank_cst[n];
6804 lower = gfc_conv_descriptor_lbound_get (argse.expr, idx);
6805 upper = gfc_conv_descriptor_ubound_get (argse.expr, idx);
6806 tmp = gfc_conv_array_extent_dim (lower, upper, NULL);
6807 tmp = fold_build2_loc (input_location, MULT_EXPR,
6808 gfc_array_index_type, tmp, source_bytes);
6809 gfc_add_modify (&argse.pre, source_bytes, tmp);
6810 }
6811 }
6812 se->expr = source_bytes;
6813 }
6814
6815 gfc_add_block_to_block (&se->pre, &argse.pre);
6816 }
6817
6818
6819 static void
6820 gfc_conv_intrinsic_storage_size (gfc_se *se, gfc_expr *expr)
6821 {
6822 gfc_expr *arg;
6823 gfc_se argse;
6824 tree type, result_type, tmp;
6825
6826 arg = expr->value.function.actual->expr;
6827
6828 gfc_init_se (&argse, NULL);
6829 result_type = gfc_get_int_type (expr->ts.kind);
6830
6831 if (arg->rank == 0)
6832 {
6833 if (arg->ts.type == BT_CLASS)
6834 {
6835 gfc_add_vptr_component (arg);
6836 gfc_add_size_component (arg);
6837 gfc_conv_expr (&argse, arg);
6838 tmp = fold_convert (result_type, argse.expr);
6839 goto done;
6840 }
6841
6842 gfc_conv_expr_reference (&argse, arg);
6843 type = TREE_TYPE (build_fold_indirect_ref_loc (input_location,
6844 argse.expr));
6845 }
6846 else
6847 {
6848 argse.want_pointer = 0;
6849 gfc_conv_expr_descriptor (&argse, arg);
6850 if (arg->ts.type == BT_CLASS)
6851 {
6852 if (arg->rank > 0)
6853 tmp = gfc_class_vtab_size_get (
6854 GFC_DECL_SAVED_DESCRIPTOR (arg->symtree->n.sym->backend_decl));
6855 else
6856 tmp = gfc_class_vtab_size_get (TREE_OPERAND (argse.expr, 0));
6857 tmp = fold_convert (result_type, tmp);
6858 goto done;
6859 }
6860 type = gfc_get_element_type (TREE_TYPE (argse.expr));
6861 }
6862
6863 /* Obtain the argument's word length. */
6864 if (arg->ts.type == BT_CHARACTER)
6865 tmp = size_of_string_in_bytes (arg->ts.kind, argse.string_length);
6866 else
6867 tmp = size_in_bytes (type);
6868 tmp = fold_convert (result_type, tmp);
6869
6870 done:
6871 se->expr = fold_build2_loc (input_location, MULT_EXPR, result_type, tmp,
6872 build_int_cst (result_type, BITS_PER_UNIT));
6873 gfc_add_block_to_block (&se->pre, &argse.pre);
6874 }
6875
6876
6877 /* Intrinsic string comparison functions. */
6878
6879 static void
6880 gfc_conv_intrinsic_strcmp (gfc_se * se, gfc_expr * expr, enum tree_code op)
6881 {
6882 tree args[4];
6883
6884 gfc_conv_intrinsic_function_args (se, expr, args, 4);
6885
6886 se->expr
6887 = gfc_build_compare_string (args[0], args[1], args[2], args[3],
6888 expr->value.function.actual->expr->ts.kind,
6889 op);
6890 se->expr = fold_build2_loc (input_location, op,
6891 gfc_typenode_for_spec (&expr->ts), se->expr,
6892 build_int_cst (TREE_TYPE (se->expr), 0));
6893 }
6894
6895 /* Generate a call to the adjustl/adjustr library function. */
6896 static void
6897 gfc_conv_intrinsic_adjust (gfc_se * se, gfc_expr * expr, tree fndecl)
6898 {
6899 tree args[3];
6900 tree len;
6901 tree type;
6902 tree var;
6903 tree tmp;
6904
6905 gfc_conv_intrinsic_function_args (se, expr, &args[1], 2);
6906 len = args[1];
6907
6908 type = TREE_TYPE (args[2]);
6909 var = gfc_conv_string_tmp (se, type, len);
6910 args[0] = var;
6911
6912 tmp = build_call_expr_loc (input_location,
6913 fndecl, 3, args[0], args[1], args[2]);
6914 gfc_add_expr_to_block (&se->pre, tmp);
6915 se->expr = var;
6916 se->string_length = len;
6917 }
6918
6919
6920 /* Generate code for the TRANSFER intrinsic:
6921 For scalar results:
6922 DEST = TRANSFER (SOURCE, MOLD)
6923 where:
6924 typeof<DEST> = typeof<MOLD>
6925 and:
6926 MOLD is scalar.
6927
6928 For array results:
6929 DEST(1:N) = TRANSFER (SOURCE, MOLD[, SIZE])
6930 where:
6931 typeof<DEST> = typeof<MOLD>
6932 and:
6933 N = min (sizeof (SOURCE(:)), sizeof (DEST(:)),
6934 sizeof (DEST(0) * SIZE). */
6935 static void
6936 gfc_conv_intrinsic_transfer (gfc_se * se, gfc_expr * expr)
6937 {
6938 tree tmp;
6939 tree tmpdecl;
6940 tree ptr;
6941 tree extent;
6942 tree source;
6943 tree source_type;
6944 tree source_bytes;
6945 tree mold_type;
6946 tree dest_word_len;
6947 tree size_words;
6948 tree size_bytes;
6949 tree upper;
6950 tree lower;
6951 tree stmt;
6952 gfc_actual_arglist *arg;
6953 gfc_se argse;
6954 gfc_array_info *info;
6955 stmtblock_t block;
6956 int n;
6957 bool scalar_mold;
6958 gfc_expr *source_expr, *mold_expr;
6959
6960 info = NULL;
6961 if (se->loop)
6962 info = &se->ss->info->data.array;
6963
6964 /* Convert SOURCE. The output from this stage is:-
6965 source_bytes = length of the source in bytes
6966 source = pointer to the source data. */
6967 arg = expr->value.function.actual;
6968 source_expr = arg->expr;
6969
6970 /* Ensure double transfer through LOGICAL preserves all
6971 the needed bits. */
6972 if (arg->expr->expr_type == EXPR_FUNCTION
6973 && arg->expr->value.function.esym == NULL
6974 && arg->expr->value.function.isym != NULL
6975 && arg->expr->value.function.isym->id == GFC_ISYM_TRANSFER
6976 && arg->expr->ts.type == BT_LOGICAL
6977 && expr->ts.type != arg->expr->ts.type)
6978 arg->expr->value.function.name = "__transfer_in_transfer";
6979
6980 gfc_init_se (&argse, NULL);
6981
6982 source_bytes = gfc_create_var (gfc_array_index_type, NULL);
6983
6984 /* Obtain the pointer to source and the length of source in bytes. */
6985 if (arg->expr->rank == 0)
6986 {
6987 gfc_conv_expr_reference (&argse, arg->expr);
6988 if (arg->expr->ts.type == BT_CLASS)
6989 source = gfc_class_data_get (argse.expr);
6990 else
6991 source = argse.expr;
6992
6993 /* Obtain the source word length. */
6994 switch (arg->expr->ts.type)
6995 {
6996 case BT_CHARACTER:
6997 tmp = size_of_string_in_bytes (arg->expr->ts.kind,
6998 argse.string_length);
6999 break;
7000 case BT_CLASS:
7001 tmp = gfc_class_vtab_size_get (argse.expr);
7002 break;
7003 default:
7004 source_type = TREE_TYPE (build_fold_indirect_ref_loc (input_location,
7005 source));
7006 tmp = fold_convert (gfc_array_index_type,
7007 size_in_bytes (source_type));
7008 break;
7009 }
7010 }
7011 else
7012 {
7013 argse.want_pointer = 0;
7014 gfc_conv_expr_descriptor (&argse, arg->expr);
7015 source = gfc_conv_descriptor_data_get (argse.expr);
7016 source_type = gfc_get_element_type (TREE_TYPE (argse.expr));
7017
7018 /* Repack the source if not simply contiguous. */
7019 if (!gfc_is_simply_contiguous (arg->expr, false, true))
7020 {
7021 tmp = gfc_build_addr_expr (NULL_TREE, argse.expr);
7022
7023 if (warn_array_temporaries)
7024 gfc_warning (OPT_Warray_temporaries,
7025 "Creating array temporary at %L", &expr->where);
7026
7027 source = build_call_expr_loc (input_location,
7028 gfor_fndecl_in_pack, 1, tmp);
7029 source = gfc_evaluate_now (source, &argse.pre);
7030
7031 /* Free the temporary. */
7032 gfc_start_block (&block);
7033 tmp = gfc_call_free (source);
7034 gfc_add_expr_to_block (&block, tmp);
7035 stmt = gfc_finish_block (&block);
7036
7037 /* Clean up if it was repacked. */
7038 gfc_init_block (&block);
7039 tmp = gfc_conv_array_data (argse.expr);
7040 tmp = fold_build2_loc (input_location, NE_EXPR, boolean_type_node,
7041 source, tmp);
7042 tmp = build3_v (COND_EXPR, tmp, stmt,
7043 build_empty_stmt (input_location));
7044 gfc_add_expr_to_block (&block, tmp);
7045 gfc_add_block_to_block (&block, &se->post);
7046 gfc_init_block (&se->post);
7047 gfc_add_block_to_block (&se->post, &block);
7048 }
7049
7050 /* Obtain the source word length. */
7051 if (arg->expr->ts.type == BT_CHARACTER)
7052 tmp = size_of_string_in_bytes (arg->expr->ts.kind,
7053 argse.string_length);
7054 else
7055 tmp = fold_convert (gfc_array_index_type,
7056 size_in_bytes (source_type));
7057
7058 /* Obtain the size of the array in bytes. */
7059 extent = gfc_create_var (gfc_array_index_type, NULL);
7060 for (n = 0; n < arg->expr->rank; n++)
7061 {
7062 tree idx;
7063 idx = gfc_rank_cst[n];
7064 gfc_add_modify (&argse.pre, source_bytes, tmp);
7065 lower = gfc_conv_descriptor_lbound_get (argse.expr, idx);
7066 upper = gfc_conv_descriptor_ubound_get (argse.expr, idx);
7067 tmp = fold_build2_loc (input_location, MINUS_EXPR,
7068 gfc_array_index_type, upper, lower);
7069 gfc_add_modify (&argse.pre, extent, tmp);
7070 tmp = fold_build2_loc (input_location, PLUS_EXPR,
7071 gfc_array_index_type, extent,
7072 gfc_index_one_node);
7073 tmp = fold_build2_loc (input_location, MULT_EXPR,
7074 gfc_array_index_type, tmp, source_bytes);
7075 }
7076 }
7077
7078 gfc_add_modify (&argse.pre, source_bytes, tmp);
7079 gfc_add_block_to_block (&se->pre, &argse.pre);
7080 gfc_add_block_to_block (&se->post, &argse.post);
7081
7082 /* Now convert MOLD. The outputs are:
7083 mold_type = the TREE type of MOLD
7084 dest_word_len = destination word length in bytes. */
7085 arg = arg->next;
7086 mold_expr = arg->expr;
7087
7088 gfc_init_se (&argse, NULL);
7089
7090 scalar_mold = arg->expr->rank == 0;
7091
7092 if (arg->expr->rank == 0)
7093 {
7094 gfc_conv_expr_reference (&argse, arg->expr);
7095 mold_type = TREE_TYPE (build_fold_indirect_ref_loc (input_location,
7096 argse.expr));
7097 }
7098 else
7099 {
7100 gfc_init_se (&argse, NULL);
7101 argse.want_pointer = 0;
7102 gfc_conv_expr_descriptor (&argse, arg->expr);
7103 mold_type = gfc_get_element_type (TREE_TYPE (argse.expr));
7104 }
7105
7106 gfc_add_block_to_block (&se->pre, &argse.pre);
7107 gfc_add_block_to_block (&se->post, &argse.post);
7108
7109 if (strcmp (expr->value.function.name, "__transfer_in_transfer") == 0)
7110 {
7111 /* If this TRANSFER is nested in another TRANSFER, use a type
7112 that preserves all bits. */
7113 if (arg->expr->ts.type == BT_LOGICAL)
7114 mold_type = gfc_get_int_type (arg->expr->ts.kind);
7115 }
7116
7117 /* Obtain the destination word length. */
7118 switch (arg->expr->ts.type)
7119 {
7120 case BT_CHARACTER:
7121 tmp = size_of_string_in_bytes (arg->expr->ts.kind, argse.string_length);
7122 mold_type = gfc_get_character_type_len (arg->expr->ts.kind, tmp);
7123 break;
7124 case BT_CLASS:
7125 tmp = gfc_class_vtab_size_get (argse.expr);
7126 break;
7127 default:
7128 tmp = fold_convert (gfc_array_index_type, size_in_bytes (mold_type));
7129 break;
7130 }
7131 dest_word_len = gfc_create_var (gfc_array_index_type, NULL);
7132 gfc_add_modify (&se->pre, dest_word_len, tmp);
7133
7134 /* Finally convert SIZE, if it is present. */
7135 arg = arg->next;
7136 size_words = gfc_create_var (gfc_array_index_type, NULL);
7137
7138 if (arg->expr)
7139 {
7140 gfc_init_se (&argse, NULL);
7141 gfc_conv_expr_reference (&argse, arg->expr);
7142 tmp = convert (gfc_array_index_type,
7143 build_fold_indirect_ref_loc (input_location,
7144 argse.expr));
7145 gfc_add_block_to_block (&se->pre, &argse.pre);
7146 gfc_add_block_to_block (&se->post, &argse.post);
7147 }
7148 else
7149 tmp = NULL_TREE;
7150
7151 /* Separate array and scalar results. */
7152 if (scalar_mold && tmp == NULL_TREE)
7153 goto scalar_transfer;
7154
7155 size_bytes = gfc_create_var (gfc_array_index_type, NULL);
7156 if (tmp != NULL_TREE)
7157 tmp = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
7158 tmp, dest_word_len);
7159 else
7160 tmp = source_bytes;
7161
7162 gfc_add_modify (&se->pre, size_bytes, tmp);
7163 gfc_add_modify (&se->pre, size_words,
7164 fold_build2_loc (input_location, CEIL_DIV_EXPR,
7165 gfc_array_index_type,
7166 size_bytes, dest_word_len));
7167
7168 /* Evaluate the bounds of the result. If the loop range exists, we have
7169 to check if it is too large. If so, we modify loop->to be consistent
7170 with min(size, size(source)). Otherwise, size is made consistent with
7171 the loop range, so that the right number of bytes is transferred.*/
7172 n = se->loop->order[0];
7173 if (se->loop->to[n] != NULL_TREE)
7174 {
7175 tmp = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
7176 se->loop->to[n], se->loop->from[n]);
7177 tmp = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
7178 tmp, gfc_index_one_node);
7179 tmp = fold_build2_loc (input_location, MIN_EXPR, gfc_array_index_type,
7180 tmp, size_words);
7181 gfc_add_modify (&se->pre, size_words, tmp);
7182 gfc_add_modify (&se->pre, size_bytes,
7183 fold_build2_loc (input_location, MULT_EXPR,
7184 gfc_array_index_type,
7185 size_words, dest_word_len));
7186 upper = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
7187 size_words, se->loop->from[n]);
7188 upper = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
7189 upper, gfc_index_one_node);
7190 }
7191 else
7192 {
7193 upper = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
7194 size_words, gfc_index_one_node);
7195 se->loop->from[n] = gfc_index_zero_node;
7196 }
7197
7198 se->loop->to[n] = upper;
7199
7200 /* Build a destination descriptor, using the pointer, source, as the
7201 data field. */
7202 gfc_trans_create_temp_array (&se->pre, &se->post, se->ss, mold_type,
7203 NULL_TREE, false, true, false, &expr->where);
7204
7205 /* Cast the pointer to the result. */
7206 tmp = gfc_conv_descriptor_data_get (info->descriptor);
7207 tmp = fold_convert (pvoid_type_node, tmp);
7208
7209 /* Use memcpy to do the transfer. */
7210 tmp
7211 = build_call_expr_loc (input_location,
7212 builtin_decl_explicit (BUILT_IN_MEMCPY), 3, tmp,
7213 fold_convert (pvoid_type_node, source),
7214 fold_convert (size_type_node,
7215 fold_build2_loc (input_location,
7216 MIN_EXPR,
7217 gfc_array_index_type,
7218 size_bytes,
7219 source_bytes)));
7220 gfc_add_expr_to_block (&se->pre, tmp);
7221
7222 se->expr = info->descriptor;
7223 if (expr->ts.type == BT_CHARACTER)
7224 se->string_length = fold_convert (gfc_charlen_type_node, dest_word_len);
7225
7226 return;
7227
7228 /* Deal with scalar results. */
7229 scalar_transfer:
7230 extent = fold_build2_loc (input_location, MIN_EXPR, gfc_array_index_type,
7231 dest_word_len, source_bytes);
7232 extent = fold_build2_loc (input_location, MAX_EXPR, gfc_array_index_type,
7233 extent, gfc_index_zero_node);
7234
7235 if (expr->ts.type == BT_CHARACTER)
7236 {
7237 tree direct, indirect, free;
7238
7239 ptr = convert (gfc_get_pchar_type (expr->ts.kind), source);
7240 tmpdecl = gfc_create_var (gfc_get_pchar_type (expr->ts.kind),
7241 "transfer");
7242
7243 /* If source is longer than the destination, use a pointer to
7244 the source directly. */
7245 gfc_init_block (&block);
7246 gfc_add_modify (&block, tmpdecl, ptr);
7247 direct = gfc_finish_block (&block);
7248
7249 /* Otherwise, allocate a string with the length of the destination
7250 and copy the source into it. */
7251 gfc_init_block (&block);
7252 tmp = gfc_get_pchar_type (expr->ts.kind);
7253 tmp = gfc_call_malloc (&block, tmp, dest_word_len);
7254 gfc_add_modify (&block, tmpdecl,
7255 fold_convert (TREE_TYPE (ptr), tmp));
7256 tmp = build_call_expr_loc (input_location,
7257 builtin_decl_explicit (BUILT_IN_MEMCPY), 3,
7258 fold_convert (pvoid_type_node, tmpdecl),
7259 fold_convert (pvoid_type_node, ptr),
7260 fold_convert (size_type_node, extent));
7261 gfc_add_expr_to_block (&block, tmp);
7262 indirect = gfc_finish_block (&block);
7263
7264 /* Wrap it up with the condition. */
7265 tmp = fold_build2_loc (input_location, LE_EXPR, boolean_type_node,
7266 dest_word_len, source_bytes);
7267 tmp = build3_v (COND_EXPR, tmp, direct, indirect);
7268 gfc_add_expr_to_block (&se->pre, tmp);
7269
7270 /* Free the temporary string, if necessary. */
7271 free = gfc_call_free (tmpdecl);
7272 tmp = fold_build2_loc (input_location, GT_EXPR, boolean_type_node,
7273 dest_word_len, source_bytes);
7274 tmp = build3_v (COND_EXPR, tmp, free, build_empty_stmt (input_location));
7275 gfc_add_expr_to_block (&se->post, tmp);
7276
7277 se->expr = tmpdecl;
7278 se->string_length = fold_convert (gfc_charlen_type_node, dest_word_len);
7279 }
7280 else
7281 {
7282 tmpdecl = gfc_create_var (mold_type, "transfer");
7283
7284 ptr = convert (build_pointer_type (mold_type), source);
7285
7286 /* For CLASS results, allocate the needed memory first. */
7287 if (mold_expr->ts.type == BT_CLASS)
7288 {
7289 tree cdata;
7290 cdata = gfc_class_data_get (tmpdecl);
7291 tmp = gfc_call_malloc (&se->pre, TREE_TYPE (cdata), dest_word_len);
7292 gfc_add_modify (&se->pre, cdata, tmp);
7293 }
7294
7295 /* Use memcpy to do the transfer. */
7296 if (mold_expr->ts.type == BT_CLASS)
7297 tmp = gfc_class_data_get (tmpdecl);
7298 else
7299 tmp = gfc_build_addr_expr (NULL_TREE, tmpdecl);
7300
7301 tmp = build_call_expr_loc (input_location,
7302 builtin_decl_explicit (BUILT_IN_MEMCPY), 3,
7303 fold_convert (pvoid_type_node, tmp),
7304 fold_convert (pvoid_type_node, ptr),
7305 fold_convert (size_type_node, extent));
7306 gfc_add_expr_to_block (&se->pre, tmp);
7307
7308 /* For CLASS results, set the _vptr. */
7309 if (mold_expr->ts.type == BT_CLASS)
7310 {
7311 tree vptr;
7312 gfc_symbol *vtab;
7313 vptr = gfc_class_vptr_get (tmpdecl);
7314 vtab = gfc_find_derived_vtab (source_expr->ts.u.derived);
7315 gcc_assert (vtab);
7316 tmp = gfc_build_addr_expr (NULL_TREE, gfc_get_symbol_decl (vtab));
7317 gfc_add_modify (&se->pre, vptr, fold_convert (TREE_TYPE (vptr), tmp));
7318 }
7319
7320 se->expr = tmpdecl;
7321 }
7322 }
7323
7324
7325 /* Generate a call to caf_is_present. */
7326
7327 static tree
7328 trans_caf_is_present (gfc_se *se, gfc_expr *expr)
7329 {
7330 tree caf_reference, caf_decl, token, image_index;
7331
7332 /* Compile the reference chain. */
7333 caf_reference = conv_expr_ref_to_caf_ref (&se->pre, expr);
7334 gcc_assert (caf_reference != NULL_TREE);
7335
7336 caf_decl = gfc_get_tree_for_caf_expr (expr);
7337 if (TREE_CODE (TREE_TYPE (caf_decl)) == REFERENCE_TYPE)
7338 caf_decl = build_fold_indirect_ref_loc (input_location, caf_decl);
7339 image_index = gfc_caf_get_image_index (&se->pre, expr, caf_decl);
7340 gfc_get_caf_token_offset (se, &token, NULL, caf_decl, NULL,
7341 expr);
7342
7343 return build_call_expr_loc (input_location, gfor_fndecl_caf_is_present,
7344 3, token, image_index, caf_reference);
7345 }
7346
7347
7348 /* Test whether this ref-chain refs this image only. */
7349
7350 static bool
7351 caf_this_image_ref (gfc_ref *ref)
7352 {
7353 for ( ; ref; ref = ref->next)
7354 if (ref->type == REF_ARRAY && ref->u.ar.codimen)
7355 return ref->u.ar.dimen_type[ref->u.ar.dimen] == DIMEN_THIS_IMAGE;
7356
7357 return false;
7358 }
7359
7360
7361 /* Generate code for the ALLOCATED intrinsic.
7362 Generate inline code that directly check the address of the argument. */
7363
7364 static void
7365 gfc_conv_allocated (gfc_se *se, gfc_expr *expr)
7366 {
7367 gfc_actual_arglist *arg1;
7368 gfc_se arg1se;
7369 tree tmp;
7370 symbol_attribute caf_attr;
7371
7372 gfc_init_se (&arg1se, NULL);
7373 arg1 = expr->value.function.actual;
7374
7375 if (arg1->expr->ts.type == BT_CLASS)
7376 {
7377 /* Make sure that class array expressions have both a _data
7378 component reference and an array reference.... */
7379 if (CLASS_DATA (arg1->expr)->attr.dimension)
7380 gfc_add_class_array_ref (arg1->expr);
7381 /* .... whilst scalars only need the _data component. */
7382 else
7383 gfc_add_data_component (arg1->expr);
7384 }
7385
7386 /* When arg1 references an allocatable component in a coarray, then call
7387 the caf-library function caf_is_present (). */
7388 if (flag_coarray == GFC_FCOARRAY_LIB && arg1->expr->expr_type == EXPR_FUNCTION
7389 && arg1->expr->value.function.isym
7390 && arg1->expr->value.function.isym->id == GFC_ISYM_CAF_GET)
7391 caf_attr = gfc_caf_attr (arg1->expr->value.function.actual->expr);
7392 else
7393 gfc_clear_attr (&caf_attr);
7394 if (flag_coarray == GFC_FCOARRAY_LIB && caf_attr.codimension
7395 && !caf_this_image_ref (arg1->expr->value.function.actual->expr->ref))
7396 tmp = trans_caf_is_present (se, arg1->expr->value.function.actual->expr);
7397 else
7398 {
7399 if (arg1->expr->rank == 0)
7400 {
7401 /* Allocatable scalar. */
7402 arg1se.want_pointer = 1;
7403 gfc_conv_expr (&arg1se, arg1->expr);
7404 tmp = arg1se.expr;
7405 }
7406 else
7407 {
7408 /* Allocatable array. */
7409 arg1se.descriptor_only = 1;
7410 gfc_conv_expr_descriptor (&arg1se, arg1->expr);
7411 tmp = gfc_conv_descriptor_data_get (arg1se.expr);
7412 }
7413
7414 tmp = fold_build2_loc (input_location, NE_EXPR, boolean_type_node, tmp,
7415 fold_convert (TREE_TYPE (tmp), null_pointer_node));
7416 }
7417 se->expr = convert (gfc_typenode_for_spec (&expr->ts), tmp);
7418 }
7419
7420
7421 /* Generate code for the ASSOCIATED intrinsic.
7422 If both POINTER and TARGET are arrays, generate a call to library function
7423 _gfor_associated, and pass descriptors of POINTER and TARGET to it.
7424 In other cases, generate inline code that directly compare the address of
7425 POINTER with the address of TARGET. */
7426
7427 static void
7428 gfc_conv_associated (gfc_se *se, gfc_expr *expr)
7429 {
7430 gfc_actual_arglist *arg1;
7431 gfc_actual_arglist *arg2;
7432 gfc_se arg1se;
7433 gfc_se arg2se;
7434 tree tmp2;
7435 tree tmp;
7436 tree nonzero_charlen;
7437 tree nonzero_arraylen;
7438 gfc_ss *ss;
7439 bool scalar;
7440
7441 gfc_init_se (&arg1se, NULL);
7442 gfc_init_se (&arg2se, NULL);
7443 arg1 = expr->value.function.actual;
7444 arg2 = arg1->next;
7445
7446 /* Check whether the expression is a scalar or not; we cannot use
7447 arg1->expr->rank as it can be nonzero for proc pointers. */
7448 ss = gfc_walk_expr (arg1->expr);
7449 scalar = ss == gfc_ss_terminator;
7450 if (!scalar)
7451 gfc_free_ss_chain (ss);
7452
7453 if (!arg2->expr)
7454 {
7455 /* No optional target. */
7456 if (scalar)
7457 {
7458 /* A pointer to a scalar. */
7459 arg1se.want_pointer = 1;
7460 gfc_conv_expr (&arg1se, arg1->expr);
7461 if (arg1->expr->symtree->n.sym->attr.proc_pointer
7462 && arg1->expr->symtree->n.sym->attr.dummy)
7463 arg1se.expr = build_fold_indirect_ref_loc (input_location,
7464 arg1se.expr);
7465 if (arg1->expr->ts.type == BT_CLASS)
7466 {
7467 tmp2 = gfc_class_data_get (arg1se.expr);
7468 if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (tmp2)))
7469 tmp2 = gfc_conv_descriptor_data_get (tmp2);
7470 }
7471 else
7472 tmp2 = arg1se.expr;
7473 }
7474 else
7475 {
7476 /* A pointer to an array. */
7477 gfc_conv_expr_descriptor (&arg1se, arg1->expr);
7478 tmp2 = gfc_conv_descriptor_data_get (arg1se.expr);
7479 }
7480 gfc_add_block_to_block (&se->pre, &arg1se.pre);
7481 gfc_add_block_to_block (&se->post, &arg1se.post);
7482 tmp = fold_build2_loc (input_location, NE_EXPR, boolean_type_node, tmp2,
7483 fold_convert (TREE_TYPE (tmp2), null_pointer_node));
7484 se->expr = tmp;
7485 }
7486 else
7487 {
7488 /* An optional target. */
7489 if (arg2->expr->ts.type == BT_CLASS)
7490 gfc_add_data_component (arg2->expr);
7491
7492 nonzero_charlen = NULL_TREE;
7493 if (arg1->expr->ts.type == BT_CHARACTER)
7494 nonzero_charlen = fold_build2_loc (input_location, NE_EXPR,
7495 boolean_type_node,
7496 arg1->expr->ts.u.cl->backend_decl,
7497 integer_zero_node);
7498 if (scalar)
7499 {
7500 /* A pointer to a scalar. */
7501 arg1se.want_pointer = 1;
7502 gfc_conv_expr (&arg1se, arg1->expr);
7503 if (arg1->expr->symtree->n.sym->attr.proc_pointer
7504 && arg1->expr->symtree->n.sym->attr.dummy)
7505 arg1se.expr = build_fold_indirect_ref_loc (input_location,
7506 arg1se.expr);
7507 if (arg1->expr->ts.type == BT_CLASS)
7508 arg1se.expr = gfc_class_data_get (arg1se.expr);
7509
7510 arg2se.want_pointer = 1;
7511 gfc_conv_expr (&arg2se, arg2->expr);
7512 if (arg2->expr->symtree->n.sym->attr.proc_pointer
7513 && arg2->expr->symtree->n.sym->attr.dummy)
7514 arg2se.expr = build_fold_indirect_ref_loc (input_location,
7515 arg2se.expr);
7516 gfc_add_block_to_block (&se->pre, &arg1se.pre);
7517 gfc_add_block_to_block (&se->post, &arg1se.post);
7518 gfc_add_block_to_block (&se->pre, &arg2se.pre);
7519 gfc_add_block_to_block (&se->post, &arg2se.post);
7520 tmp = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node,
7521 arg1se.expr, arg2se.expr);
7522 tmp2 = fold_build2_loc (input_location, NE_EXPR, boolean_type_node,
7523 arg1se.expr, null_pointer_node);
7524 se->expr = fold_build2_loc (input_location, TRUTH_AND_EXPR,
7525 boolean_type_node, tmp, tmp2);
7526 }
7527 else
7528 {
7529 /* An array pointer of zero length is not associated if target is
7530 present. */
7531 arg1se.descriptor_only = 1;
7532 gfc_conv_expr_lhs (&arg1se, arg1->expr);
7533 if (arg1->expr->rank == -1)
7534 {
7535 tmp = gfc_conv_descriptor_rank (arg1se.expr);
7536 tmp = fold_build2_loc (input_location, MINUS_EXPR,
7537 TREE_TYPE (tmp), tmp, gfc_index_one_node);
7538 }
7539 else
7540 tmp = gfc_rank_cst[arg1->expr->rank - 1];
7541 tmp = gfc_conv_descriptor_stride_get (arg1se.expr, tmp);
7542 nonzero_arraylen = fold_build2_loc (input_location, NE_EXPR,
7543 boolean_type_node, tmp,
7544 build_int_cst (TREE_TYPE (tmp), 0));
7545
7546 /* A pointer to an array, call library function _gfor_associated. */
7547 arg1se.want_pointer = 1;
7548 gfc_conv_expr_descriptor (&arg1se, arg1->expr);
7549
7550 arg2se.want_pointer = 1;
7551 gfc_conv_expr_descriptor (&arg2se, arg2->expr);
7552 gfc_add_block_to_block (&se->pre, &arg2se.pre);
7553 gfc_add_block_to_block (&se->post, &arg2se.post);
7554 se->expr = build_call_expr_loc (input_location,
7555 gfor_fndecl_associated, 2,
7556 arg1se.expr, arg2se.expr);
7557 se->expr = convert (boolean_type_node, se->expr);
7558 se->expr = fold_build2_loc (input_location, TRUTH_AND_EXPR,
7559 boolean_type_node, se->expr,
7560 nonzero_arraylen);
7561 }
7562
7563 /* If target is present zero character length pointers cannot
7564 be associated. */
7565 if (nonzero_charlen != NULL_TREE)
7566 se->expr = fold_build2_loc (input_location, TRUTH_AND_EXPR,
7567 boolean_type_node,
7568 se->expr, nonzero_charlen);
7569 }
7570
7571 se->expr = convert (gfc_typenode_for_spec (&expr->ts), se->expr);
7572 }
7573
7574
7575 /* Generate code for the SAME_TYPE_AS intrinsic.
7576 Generate inline code that directly checks the vindices. */
7577
7578 static void
7579 gfc_conv_same_type_as (gfc_se *se, gfc_expr *expr)
7580 {
7581 gfc_expr *a, *b;
7582 gfc_se se1, se2;
7583 tree tmp;
7584 tree conda = NULL_TREE, condb = NULL_TREE;
7585
7586 gfc_init_se (&se1, NULL);
7587 gfc_init_se (&se2, NULL);
7588
7589 a = expr->value.function.actual->expr;
7590 b = expr->value.function.actual->next->expr;
7591
7592 if (UNLIMITED_POLY (a))
7593 {
7594 tmp = gfc_class_vptr_get (a->symtree->n.sym->backend_decl);
7595 conda = fold_build2_loc (input_location, NE_EXPR, boolean_type_node,
7596 tmp, build_int_cst (TREE_TYPE (tmp), 0));
7597 }
7598
7599 if (UNLIMITED_POLY (b))
7600 {
7601 tmp = gfc_class_vptr_get (b->symtree->n.sym->backend_decl);
7602 condb = fold_build2_loc (input_location, NE_EXPR, boolean_type_node,
7603 tmp, build_int_cst (TREE_TYPE (tmp), 0));
7604 }
7605
7606 if (a->ts.type == BT_CLASS)
7607 {
7608 gfc_add_vptr_component (a);
7609 gfc_add_hash_component (a);
7610 }
7611 else if (a->ts.type == BT_DERIVED)
7612 a = gfc_get_int_expr (gfc_default_integer_kind, NULL,
7613 a->ts.u.derived->hash_value);
7614
7615 if (b->ts.type == BT_CLASS)
7616 {
7617 gfc_add_vptr_component (b);
7618 gfc_add_hash_component (b);
7619 }
7620 else if (b->ts.type == BT_DERIVED)
7621 b = gfc_get_int_expr (gfc_default_integer_kind, NULL,
7622 b->ts.u.derived->hash_value);
7623
7624 gfc_conv_expr (&se1, a);
7625 gfc_conv_expr (&se2, b);
7626
7627 tmp = fold_build2_loc (input_location, EQ_EXPR,
7628 boolean_type_node, se1.expr,
7629 fold_convert (TREE_TYPE (se1.expr), se2.expr));
7630
7631 if (conda)
7632 tmp = fold_build2_loc (input_location, TRUTH_ANDIF_EXPR,
7633 boolean_type_node, conda, tmp);
7634
7635 if (condb)
7636 tmp = fold_build2_loc (input_location, TRUTH_ANDIF_EXPR,
7637 boolean_type_node, condb, tmp);
7638
7639 se->expr = convert (gfc_typenode_for_spec (&expr->ts), tmp);
7640 }
7641
7642
7643 /* Generate code for SELECTED_CHAR_KIND (NAME) intrinsic function. */
7644
7645 static void
7646 gfc_conv_intrinsic_sc_kind (gfc_se *se, gfc_expr *expr)
7647 {
7648 tree args[2];
7649
7650 gfc_conv_intrinsic_function_args (se, expr, args, 2);
7651 se->expr = build_call_expr_loc (input_location,
7652 gfor_fndecl_sc_kind, 2, args[0], args[1]);
7653 se->expr = fold_convert (gfc_typenode_for_spec (&expr->ts), se->expr);
7654 }
7655
7656
7657 /* Generate code for SELECTED_INT_KIND (R) intrinsic function. */
7658
7659 static void
7660 gfc_conv_intrinsic_si_kind (gfc_se *se, gfc_expr *expr)
7661 {
7662 tree arg, type;
7663
7664 gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
7665
7666 /* The argument to SELECTED_INT_KIND is INTEGER(4). */
7667 type = gfc_get_int_type (4);
7668 arg = gfc_build_addr_expr (NULL_TREE, fold_convert (type, arg));
7669
7670 /* Convert it to the required type. */
7671 type = gfc_typenode_for_spec (&expr->ts);
7672 se->expr = build_call_expr_loc (input_location,
7673 gfor_fndecl_si_kind, 1, arg);
7674 se->expr = fold_convert (type, se->expr);
7675 }
7676
7677
7678 /* Generate code for SELECTED_REAL_KIND (P, R, RADIX) intrinsic function. */
7679
7680 static void
7681 gfc_conv_intrinsic_sr_kind (gfc_se *se, gfc_expr *expr)
7682 {
7683 gfc_actual_arglist *actual;
7684 tree type;
7685 gfc_se argse;
7686 vec<tree, va_gc> *args = NULL;
7687
7688 for (actual = expr->value.function.actual; actual; actual = actual->next)
7689 {
7690 gfc_init_se (&argse, se);
7691
7692 /* Pass a NULL pointer for an absent arg. */
7693 if (actual->expr == NULL)
7694 argse.expr = null_pointer_node;
7695 else
7696 {
7697 gfc_typespec ts;
7698 gfc_clear_ts (&ts);
7699
7700 if (actual->expr->ts.kind != gfc_c_int_kind)
7701 {
7702 /* The arguments to SELECTED_REAL_KIND are INTEGER(4). */
7703 ts.type = BT_INTEGER;
7704 ts.kind = gfc_c_int_kind;
7705 gfc_convert_type (actual->expr, &ts, 2);
7706 }
7707 gfc_conv_expr_reference (&argse, actual->expr);
7708 }
7709
7710 gfc_add_block_to_block (&se->pre, &argse.pre);
7711 gfc_add_block_to_block (&se->post, &argse.post);
7712 vec_safe_push (args, argse.expr);
7713 }
7714
7715 /* Convert it to the required type. */
7716 type = gfc_typenode_for_spec (&expr->ts);
7717 se->expr = build_call_expr_loc_vec (input_location,
7718 gfor_fndecl_sr_kind, args);
7719 se->expr = fold_convert (type, se->expr);
7720 }
7721
7722
7723 /* Generate code for TRIM (A) intrinsic function. */
7724
7725 static void
7726 gfc_conv_intrinsic_trim (gfc_se * se, gfc_expr * expr)
7727 {
7728 tree var;
7729 tree len;
7730 tree addr;
7731 tree tmp;
7732 tree cond;
7733 tree fndecl;
7734 tree function;
7735 tree *args;
7736 unsigned int num_args;
7737
7738 num_args = gfc_intrinsic_argument_list_length (expr) + 2;
7739 args = XALLOCAVEC (tree, num_args);
7740
7741 var = gfc_create_var (gfc_get_pchar_type (expr->ts.kind), "pstr");
7742 addr = gfc_build_addr_expr (ppvoid_type_node, var);
7743 len = gfc_create_var (gfc_charlen_type_node, "len");
7744
7745 gfc_conv_intrinsic_function_args (se, expr, &args[2], num_args - 2);
7746 args[0] = gfc_build_addr_expr (NULL_TREE, len);
7747 args[1] = addr;
7748
7749 if (expr->ts.kind == 1)
7750 function = gfor_fndecl_string_trim;
7751 else if (expr->ts.kind == 4)
7752 function = gfor_fndecl_string_trim_char4;
7753 else
7754 gcc_unreachable ();
7755
7756 fndecl = build_addr (function);
7757 tmp = build_call_array_loc (input_location,
7758 TREE_TYPE (TREE_TYPE (function)), fndecl,
7759 num_args, args);
7760 gfc_add_expr_to_block (&se->pre, tmp);
7761
7762 /* Free the temporary afterwards, if necessary. */
7763 cond = fold_build2_loc (input_location, GT_EXPR, boolean_type_node,
7764 len, build_int_cst (TREE_TYPE (len), 0));
7765 tmp = gfc_call_free (var);
7766 tmp = build3_v (COND_EXPR, cond, tmp, build_empty_stmt (input_location));
7767 gfc_add_expr_to_block (&se->post, tmp);
7768
7769 se->expr = var;
7770 se->string_length = len;
7771 }
7772
7773
7774 /* Generate code for REPEAT (STRING, NCOPIES) intrinsic function. */
7775
7776 static void
7777 gfc_conv_intrinsic_repeat (gfc_se * se, gfc_expr * expr)
7778 {
7779 tree args[3], ncopies, dest, dlen, src, slen, ncopies_type;
7780 tree type, cond, tmp, count, exit_label, n, max, largest;
7781 tree size;
7782 stmtblock_t block, body;
7783 int i;
7784
7785 /* We store in charsize the size of a character. */
7786 i = gfc_validate_kind (BT_CHARACTER, expr->ts.kind, false);
7787 size = build_int_cst (size_type_node, gfc_character_kinds[i].bit_size / 8);
7788
7789 /* Get the arguments. */
7790 gfc_conv_intrinsic_function_args (se, expr, args, 3);
7791 slen = fold_convert (size_type_node, gfc_evaluate_now (args[0], &se->pre));
7792 src = args[1];
7793 ncopies = gfc_evaluate_now (args[2], &se->pre);
7794 ncopies_type = TREE_TYPE (ncopies);
7795
7796 /* Check that NCOPIES is not negative. */
7797 cond = fold_build2_loc (input_location, LT_EXPR, boolean_type_node, ncopies,
7798 build_int_cst (ncopies_type, 0));
7799 gfc_trans_runtime_check (true, false, cond, &se->pre, &expr->where,
7800 "Argument NCOPIES of REPEAT intrinsic is negative "
7801 "(its value is %ld)",
7802 fold_convert (long_integer_type_node, ncopies));
7803
7804 /* If the source length is zero, any non negative value of NCOPIES
7805 is valid, and nothing happens. */
7806 n = gfc_create_var (ncopies_type, "ncopies");
7807 cond = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node, slen,
7808 build_int_cst (size_type_node, 0));
7809 tmp = fold_build3_loc (input_location, COND_EXPR, ncopies_type, cond,
7810 build_int_cst (ncopies_type, 0), ncopies);
7811 gfc_add_modify (&se->pre, n, tmp);
7812 ncopies = n;
7813
7814 /* Check that ncopies is not too large: ncopies should be less than
7815 (or equal to) MAX / slen, where MAX is the maximal integer of
7816 the gfc_charlen_type_node type. If slen == 0, we need a special
7817 case to avoid the division by zero. */
7818 i = gfc_validate_kind (BT_INTEGER, gfc_charlen_int_kind, false);
7819 max = gfc_conv_mpz_to_tree (gfc_integer_kinds[i].huge, gfc_charlen_int_kind);
7820 max = fold_build2_loc (input_location, TRUNC_DIV_EXPR, size_type_node,
7821 fold_convert (size_type_node, max), slen);
7822 largest = TYPE_PRECISION (size_type_node) > TYPE_PRECISION (ncopies_type)
7823 ? size_type_node : ncopies_type;
7824 cond = fold_build2_loc (input_location, GT_EXPR, boolean_type_node,
7825 fold_convert (largest, ncopies),
7826 fold_convert (largest, max));
7827 tmp = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node, slen,
7828 build_int_cst (size_type_node, 0));
7829 cond = fold_build3_loc (input_location, COND_EXPR, boolean_type_node, tmp,
7830 boolean_false_node, cond);
7831 gfc_trans_runtime_check (true, false, cond, &se->pre, &expr->where,
7832 "Argument NCOPIES of REPEAT intrinsic is too large");
7833
7834 /* Compute the destination length. */
7835 dlen = fold_build2_loc (input_location, MULT_EXPR, gfc_charlen_type_node,
7836 fold_convert (gfc_charlen_type_node, slen),
7837 fold_convert (gfc_charlen_type_node, ncopies));
7838 type = gfc_get_character_type (expr->ts.kind, expr->ts.u.cl);
7839 dest = gfc_conv_string_tmp (se, build_pointer_type (type), dlen);
7840
7841 /* Generate the code to do the repeat operation:
7842 for (i = 0; i < ncopies; i++)
7843 memmove (dest + (i * slen * size), src, slen*size); */
7844 gfc_start_block (&block);
7845 count = gfc_create_var (ncopies_type, "count");
7846 gfc_add_modify (&block, count, build_int_cst (ncopies_type, 0));
7847 exit_label = gfc_build_label_decl (NULL_TREE);
7848
7849 /* Start the loop body. */
7850 gfc_start_block (&body);
7851
7852 /* Exit the loop if count >= ncopies. */
7853 cond = fold_build2_loc (input_location, GE_EXPR, boolean_type_node, count,
7854 ncopies);
7855 tmp = build1_v (GOTO_EXPR, exit_label);
7856 TREE_USED (exit_label) = 1;
7857 tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node, cond, tmp,
7858 build_empty_stmt (input_location));
7859 gfc_add_expr_to_block (&body, tmp);
7860
7861 /* Call memmove (dest + (i*slen*size), src, slen*size). */
7862 tmp = fold_build2_loc (input_location, MULT_EXPR, gfc_charlen_type_node,
7863 fold_convert (gfc_charlen_type_node, slen),
7864 fold_convert (gfc_charlen_type_node, count));
7865 tmp = fold_build2_loc (input_location, MULT_EXPR, gfc_charlen_type_node,
7866 tmp, fold_convert (gfc_charlen_type_node, size));
7867 tmp = fold_build_pointer_plus_loc (input_location,
7868 fold_convert (pvoid_type_node, dest), tmp);
7869 tmp = build_call_expr_loc (input_location,
7870 builtin_decl_explicit (BUILT_IN_MEMMOVE),
7871 3, tmp, src,
7872 fold_build2_loc (input_location, MULT_EXPR,
7873 size_type_node, slen,
7874 fold_convert (size_type_node,
7875 size)));
7876 gfc_add_expr_to_block (&body, tmp);
7877
7878 /* Increment count. */
7879 tmp = fold_build2_loc (input_location, PLUS_EXPR, ncopies_type,
7880 count, build_int_cst (TREE_TYPE (count), 1));
7881 gfc_add_modify (&body, count, tmp);
7882
7883 /* Build the loop. */
7884 tmp = build1_v (LOOP_EXPR, gfc_finish_block (&body));
7885 gfc_add_expr_to_block (&block, tmp);
7886
7887 /* Add the exit label. */
7888 tmp = build1_v (LABEL_EXPR, exit_label);
7889 gfc_add_expr_to_block (&block, tmp);
7890
7891 /* Finish the block. */
7892 tmp = gfc_finish_block (&block);
7893 gfc_add_expr_to_block (&se->pre, tmp);
7894
7895 /* Set the result value. */
7896 se->expr = dest;
7897 se->string_length = dlen;
7898 }
7899
7900
7901 /* Generate code for the IARGC intrinsic. */
7902
7903 static void
7904 gfc_conv_intrinsic_iargc (gfc_se * se, gfc_expr * expr)
7905 {
7906 tree tmp;
7907 tree fndecl;
7908 tree type;
7909
7910 /* Call the library function. This always returns an INTEGER(4). */
7911 fndecl = gfor_fndecl_iargc;
7912 tmp = build_call_expr_loc (input_location,
7913 fndecl, 0);
7914
7915 /* Convert it to the required type. */
7916 type = gfc_typenode_for_spec (&expr->ts);
7917 tmp = fold_convert (type, tmp);
7918
7919 se->expr = tmp;
7920 }
7921
7922
7923 /* The loc intrinsic returns the address of its argument as
7924 gfc_index_integer_kind integer. */
7925
7926 static void
7927 gfc_conv_intrinsic_loc (gfc_se * se, gfc_expr * expr)
7928 {
7929 tree temp_var;
7930 gfc_expr *arg_expr;
7931
7932 gcc_assert (!se->ss);
7933
7934 arg_expr = expr->value.function.actual->expr;
7935 if (arg_expr->rank == 0)
7936 {
7937 if (arg_expr->ts.type == BT_CLASS)
7938 gfc_add_data_component (arg_expr);
7939 gfc_conv_expr_reference (se, arg_expr);
7940 }
7941 else
7942 gfc_conv_array_parameter (se, arg_expr, true, NULL, NULL, NULL);
7943 se->expr = convert (gfc_get_int_type (gfc_index_integer_kind), se->expr);
7944
7945 /* Create a temporary variable for loc return value. Without this,
7946 we get an error an ICE in gcc/expr.c(expand_expr_addr_expr_1). */
7947 temp_var = gfc_create_var (gfc_get_int_type (gfc_index_integer_kind), NULL);
7948 gfc_add_modify (&se->pre, temp_var, se->expr);
7949 se->expr = temp_var;
7950 }
7951
7952
7953 /* The following routine generates code for the intrinsic
7954 functions from the ISO_C_BINDING module:
7955 * C_LOC
7956 * C_FUNLOC
7957 * C_ASSOCIATED */
7958
7959 static void
7960 conv_isocbinding_function (gfc_se *se, gfc_expr *expr)
7961 {
7962 gfc_actual_arglist *arg = expr->value.function.actual;
7963
7964 if (expr->value.function.isym->id == GFC_ISYM_C_LOC)
7965 {
7966 if (arg->expr->rank == 0)
7967 gfc_conv_expr_reference (se, arg->expr);
7968 else if (gfc_is_simply_contiguous (arg->expr, false, false))
7969 gfc_conv_array_parameter (se, arg->expr, true, NULL, NULL, NULL);
7970 else
7971 {
7972 gfc_conv_expr_descriptor (se, arg->expr);
7973 se->expr = gfc_conv_descriptor_data_get (se->expr);
7974 }
7975
7976 /* TODO -- the following two lines shouldn't be necessary, but if
7977 they're removed, a bug is exposed later in the code path.
7978 This workaround was thus introduced, but will have to be
7979 removed; please see PR 35150 for details about the issue. */
7980 se->expr = convert (pvoid_type_node, se->expr);
7981 se->expr = gfc_evaluate_now (se->expr, &se->pre);
7982 }
7983 else if (expr->value.function.isym->id == GFC_ISYM_C_FUNLOC)
7984 gfc_conv_expr_reference (se, arg->expr);
7985 else if (expr->value.function.isym->id == GFC_ISYM_C_ASSOCIATED)
7986 {
7987 gfc_se arg1se;
7988 gfc_se arg2se;
7989
7990 /* Build the addr_expr for the first argument. The argument is
7991 already an *address* so we don't need to set want_pointer in
7992 the gfc_se. */
7993 gfc_init_se (&arg1se, NULL);
7994 gfc_conv_expr (&arg1se, arg->expr);
7995 gfc_add_block_to_block (&se->pre, &arg1se.pre);
7996 gfc_add_block_to_block (&se->post, &arg1se.post);
7997
7998 /* See if we were given two arguments. */
7999 if (arg->next->expr == NULL)
8000 /* Only given one arg so generate a null and do a
8001 not-equal comparison against the first arg. */
8002 se->expr = fold_build2_loc (input_location, NE_EXPR, boolean_type_node,
8003 arg1se.expr,
8004 fold_convert (TREE_TYPE (arg1se.expr),
8005 null_pointer_node));
8006 else
8007 {
8008 tree eq_expr;
8009 tree not_null_expr;
8010
8011 /* Given two arguments so build the arg2se from second arg. */
8012 gfc_init_se (&arg2se, NULL);
8013 gfc_conv_expr (&arg2se, arg->next->expr);
8014 gfc_add_block_to_block (&se->pre, &arg2se.pre);
8015 gfc_add_block_to_block (&se->post, &arg2se.post);
8016
8017 /* Generate test to compare that the two args are equal. */
8018 eq_expr = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node,
8019 arg1se.expr, arg2se.expr);
8020 /* Generate test to ensure that the first arg is not null. */
8021 not_null_expr = fold_build2_loc (input_location, NE_EXPR,
8022 boolean_type_node,
8023 arg1se.expr, null_pointer_node);
8024
8025 /* Finally, the generated test must check that both arg1 is not
8026 NULL and that it is equal to the second arg. */
8027 se->expr = fold_build2_loc (input_location, TRUTH_AND_EXPR,
8028 boolean_type_node,
8029 not_null_expr, eq_expr);
8030 }
8031 }
8032 else
8033 gcc_unreachable ();
8034 }
8035
8036
8037 /* The following routine generates code for the intrinsic
8038 subroutines from the ISO_C_BINDING module:
8039 * C_F_POINTER
8040 * C_F_PROCPOINTER. */
8041
8042 static tree
8043 conv_isocbinding_subroutine (gfc_code *code)
8044 {
8045 gfc_se se;
8046 gfc_se cptrse;
8047 gfc_se fptrse;
8048 gfc_se shapese;
8049 gfc_ss *shape_ss;
8050 tree desc, dim, tmp, stride, offset;
8051 stmtblock_t body, block;
8052 gfc_loopinfo loop;
8053 gfc_actual_arglist *arg = code->ext.actual;
8054
8055 gfc_init_se (&se, NULL);
8056 gfc_init_se (&cptrse, NULL);
8057 gfc_conv_expr (&cptrse, arg->expr);
8058 gfc_add_block_to_block (&se.pre, &cptrse.pre);
8059 gfc_add_block_to_block (&se.post, &cptrse.post);
8060
8061 gfc_init_se (&fptrse, NULL);
8062 if (arg->next->expr->rank == 0)
8063 {
8064 fptrse.want_pointer = 1;
8065 gfc_conv_expr (&fptrse, arg->next->expr);
8066 gfc_add_block_to_block (&se.pre, &fptrse.pre);
8067 gfc_add_block_to_block (&se.post, &fptrse.post);
8068 if (arg->next->expr->symtree->n.sym->attr.proc_pointer
8069 && arg->next->expr->symtree->n.sym->attr.dummy)
8070 fptrse.expr = build_fold_indirect_ref_loc (input_location,
8071 fptrse.expr);
8072 se.expr = fold_build2_loc (input_location, MODIFY_EXPR,
8073 TREE_TYPE (fptrse.expr),
8074 fptrse.expr,
8075 fold_convert (TREE_TYPE (fptrse.expr),
8076 cptrse.expr));
8077 gfc_add_expr_to_block (&se.pre, se.expr);
8078 gfc_add_block_to_block (&se.pre, &se.post);
8079 return gfc_finish_block (&se.pre);
8080 }
8081
8082 gfc_start_block (&block);
8083
8084 /* Get the descriptor of the Fortran pointer. */
8085 fptrse.descriptor_only = 1;
8086 gfc_conv_expr_descriptor (&fptrse, arg->next->expr);
8087 gfc_add_block_to_block (&block, &fptrse.pre);
8088 desc = fptrse.expr;
8089
8090 /* Set data value, dtype, and offset. */
8091 tmp = GFC_TYPE_ARRAY_DATAPTR_TYPE (TREE_TYPE (desc));
8092 gfc_conv_descriptor_data_set (&block, desc, fold_convert (tmp, cptrse.expr));
8093 gfc_add_modify (&block, gfc_conv_descriptor_dtype (desc),
8094 gfc_get_dtype (TREE_TYPE (desc)));
8095
8096 /* Start scalarization of the bounds, using the shape argument. */
8097
8098 shape_ss = gfc_walk_expr (arg->next->next->expr);
8099 gcc_assert (shape_ss != gfc_ss_terminator);
8100 gfc_init_se (&shapese, NULL);
8101
8102 gfc_init_loopinfo (&loop);
8103 gfc_add_ss_to_loop (&loop, shape_ss);
8104 gfc_conv_ss_startstride (&loop);
8105 gfc_conv_loop_setup (&loop, &arg->next->expr->where);
8106 gfc_mark_ss_chain_used (shape_ss, 1);
8107
8108 gfc_copy_loopinfo_to_se (&shapese, &loop);
8109 shapese.ss = shape_ss;
8110
8111 stride = gfc_create_var (gfc_array_index_type, "stride");
8112 offset = gfc_create_var (gfc_array_index_type, "offset");
8113 gfc_add_modify (&block, stride, gfc_index_one_node);
8114 gfc_add_modify (&block, offset, gfc_index_zero_node);
8115
8116 /* Loop body. */
8117 gfc_start_scalarized_body (&loop, &body);
8118
8119 dim = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
8120 loop.loopvar[0], loop.from[0]);
8121
8122 /* Set bounds and stride. */
8123 gfc_conv_descriptor_lbound_set (&body, desc, dim, gfc_index_one_node);
8124 gfc_conv_descriptor_stride_set (&body, desc, dim, stride);
8125
8126 gfc_conv_expr (&shapese, arg->next->next->expr);
8127 gfc_add_block_to_block (&body, &shapese.pre);
8128 gfc_conv_descriptor_ubound_set (&body, desc, dim, shapese.expr);
8129 gfc_add_block_to_block (&body, &shapese.post);
8130
8131 /* Calculate offset. */
8132 gfc_add_modify (&body, offset,
8133 fold_build2_loc (input_location, PLUS_EXPR,
8134 gfc_array_index_type, offset, stride));
8135 /* Update stride. */
8136 gfc_add_modify (&body, stride,
8137 fold_build2_loc (input_location, MULT_EXPR,
8138 gfc_array_index_type, stride,
8139 fold_convert (gfc_array_index_type,
8140 shapese.expr)));
8141 /* Finish scalarization loop. */
8142 gfc_trans_scalarizing_loops (&loop, &body);
8143 gfc_add_block_to_block (&block, &loop.pre);
8144 gfc_add_block_to_block (&block, &loop.post);
8145 gfc_add_block_to_block (&block, &fptrse.post);
8146 gfc_cleanup_loop (&loop);
8147
8148 gfc_add_modify (&block, offset,
8149 fold_build1_loc (input_location, NEGATE_EXPR,
8150 gfc_array_index_type, offset));
8151 gfc_conv_descriptor_offset_set (&block, desc, offset);
8152
8153 gfc_add_expr_to_block (&se.pre, gfc_finish_block (&block));
8154 gfc_add_block_to_block (&se.pre, &se.post);
8155 return gfc_finish_block (&se.pre);
8156 }
8157
8158
8159 /* Save and restore floating-point state. */
8160
8161 tree
8162 gfc_save_fp_state (stmtblock_t *block)
8163 {
8164 tree type, fpstate, tmp;
8165
8166 type = build_array_type (char_type_node,
8167 build_range_type (size_type_node, size_zero_node,
8168 size_int (GFC_FPE_STATE_BUFFER_SIZE)));
8169 fpstate = gfc_create_var (type, "fpstate");
8170 fpstate = gfc_build_addr_expr (pvoid_type_node, fpstate);
8171
8172 tmp = build_call_expr_loc (input_location, gfor_fndecl_ieee_procedure_entry,
8173 1, fpstate);
8174 gfc_add_expr_to_block (block, tmp);
8175
8176 return fpstate;
8177 }
8178
8179
8180 void
8181 gfc_restore_fp_state (stmtblock_t *block, tree fpstate)
8182 {
8183 tree tmp;
8184
8185 tmp = build_call_expr_loc (input_location, gfor_fndecl_ieee_procedure_exit,
8186 1, fpstate);
8187 gfc_add_expr_to_block (block, tmp);
8188 }
8189
8190
8191 /* Generate code for arguments of IEEE functions. */
8192
8193 static void
8194 conv_ieee_function_args (gfc_se *se, gfc_expr *expr, tree *argarray,
8195 int nargs)
8196 {
8197 gfc_actual_arglist *actual;
8198 gfc_expr *e;
8199 gfc_se argse;
8200 int arg;
8201
8202 actual = expr->value.function.actual;
8203 for (arg = 0; arg < nargs; arg++, actual = actual->next)
8204 {
8205 gcc_assert (actual);
8206 e = actual->expr;
8207
8208 gfc_init_se (&argse, se);
8209 gfc_conv_expr_val (&argse, e);
8210
8211 gfc_add_block_to_block (&se->pre, &argse.pre);
8212 gfc_add_block_to_block (&se->post, &argse.post);
8213 argarray[arg] = argse.expr;
8214 }
8215 }
8216
8217
8218 /* Generate code for intrinsics IEEE_IS_NAN, IEEE_IS_FINITE,
8219 and IEEE_UNORDERED, which translate directly to GCC type-generic
8220 built-ins. */
8221
8222 static void
8223 conv_intrinsic_ieee_builtin (gfc_se * se, gfc_expr * expr,
8224 enum built_in_function code, int nargs)
8225 {
8226 tree args[2];
8227 gcc_assert ((unsigned) nargs <= sizeof(args)/sizeof(args[0]));
8228
8229 conv_ieee_function_args (se, expr, args, nargs);
8230 se->expr = build_call_expr_loc_array (input_location,
8231 builtin_decl_explicit (code),
8232 nargs, args);
8233 STRIP_TYPE_NOPS (se->expr);
8234 se->expr = fold_convert (gfc_typenode_for_spec (&expr->ts), se->expr);
8235 }
8236
8237
8238 /* Generate code for IEEE_IS_NORMAL intrinsic:
8239 IEEE_IS_NORMAL(x) --> (__builtin_isnormal(x) || x == 0) */
8240
8241 static void
8242 conv_intrinsic_ieee_is_normal (gfc_se * se, gfc_expr * expr)
8243 {
8244 tree arg, isnormal, iszero;
8245
8246 /* Convert arg, evaluate it only once. */
8247 conv_ieee_function_args (se, expr, &arg, 1);
8248 arg = gfc_evaluate_now (arg, &se->pre);
8249
8250 isnormal = build_call_expr_loc (input_location,
8251 builtin_decl_explicit (BUILT_IN_ISNORMAL),
8252 1, arg);
8253 iszero = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node, arg,
8254 build_real_from_int_cst (TREE_TYPE (arg),
8255 integer_zero_node));
8256 se->expr = fold_build2_loc (input_location, TRUTH_OR_EXPR,
8257 boolean_type_node, isnormal, iszero);
8258 se->expr = fold_convert (gfc_typenode_for_spec (&expr->ts), se->expr);
8259 }
8260
8261
8262 /* Generate code for IEEE_IS_NEGATIVE intrinsic:
8263 IEEE_IS_NEGATIVE(x) --> (__builtin_signbit(x) && !__builtin_isnan(x)) */
8264
8265 static void
8266 conv_intrinsic_ieee_is_negative (gfc_se * se, gfc_expr * expr)
8267 {
8268 tree arg, signbit, isnan;
8269
8270 /* Convert arg, evaluate it only once. */
8271 conv_ieee_function_args (se, expr, &arg, 1);
8272 arg = gfc_evaluate_now (arg, &se->pre);
8273
8274 isnan = build_call_expr_loc (input_location,
8275 builtin_decl_explicit (BUILT_IN_ISNAN),
8276 1, arg);
8277 STRIP_TYPE_NOPS (isnan);
8278
8279 signbit = build_call_expr_loc (input_location,
8280 builtin_decl_explicit (BUILT_IN_SIGNBIT),
8281 1, arg);
8282 signbit = fold_build2_loc (input_location, NE_EXPR, boolean_type_node,
8283 signbit, integer_zero_node);
8284
8285 se->expr = fold_build2_loc (input_location, TRUTH_AND_EXPR,
8286 boolean_type_node, signbit,
8287 fold_build1_loc (input_location, TRUTH_NOT_EXPR,
8288 TREE_TYPE(isnan), isnan));
8289
8290 se->expr = fold_convert (gfc_typenode_for_spec (&expr->ts), se->expr);
8291 }
8292
8293
8294 /* Generate code for IEEE_LOGB and IEEE_RINT. */
8295
8296 static void
8297 conv_intrinsic_ieee_logb_rint (gfc_se * se, gfc_expr * expr,
8298 enum built_in_function code)
8299 {
8300 tree arg, decl, call, fpstate;
8301 int argprec;
8302
8303 conv_ieee_function_args (se, expr, &arg, 1);
8304 argprec = TYPE_PRECISION (TREE_TYPE (arg));
8305 decl = builtin_decl_for_precision (code, argprec);
8306
8307 /* Save floating-point state. */
8308 fpstate = gfc_save_fp_state (&se->pre);
8309
8310 /* Make the function call. */
8311 call = build_call_expr_loc (input_location, decl, 1, arg);
8312 se->expr = fold_convert (gfc_typenode_for_spec (&expr->ts), call);
8313
8314 /* Restore floating-point state. */
8315 gfc_restore_fp_state (&se->post, fpstate);
8316 }
8317
8318
8319 /* Generate code for IEEE_REM. */
8320
8321 static void
8322 conv_intrinsic_ieee_rem (gfc_se * se, gfc_expr * expr)
8323 {
8324 tree args[2], decl, call, fpstate;
8325 int argprec;
8326
8327 conv_ieee_function_args (se, expr, args, 2);
8328
8329 /* If arguments have unequal size, convert them to the larger. */
8330 if (TYPE_PRECISION (TREE_TYPE (args[0]))
8331 > TYPE_PRECISION (TREE_TYPE (args[1])))
8332 args[1] = fold_convert (TREE_TYPE (args[0]), args[1]);
8333 else if (TYPE_PRECISION (TREE_TYPE (args[1]))
8334 > TYPE_PRECISION (TREE_TYPE (args[0])))
8335 args[0] = fold_convert (TREE_TYPE (args[1]), args[0]);
8336
8337 argprec = TYPE_PRECISION (TREE_TYPE (args[0]));
8338 decl = builtin_decl_for_precision (BUILT_IN_REMAINDER, argprec);
8339
8340 /* Save floating-point state. */
8341 fpstate = gfc_save_fp_state (&se->pre);
8342
8343 /* Make the function call. */
8344 call = build_call_expr_loc_array (input_location, decl, 2, args);
8345 se->expr = fold_convert (TREE_TYPE (args[0]), call);
8346
8347 /* Restore floating-point state. */
8348 gfc_restore_fp_state (&se->post, fpstate);
8349 }
8350
8351
8352 /* Generate code for IEEE_NEXT_AFTER. */
8353
8354 static void
8355 conv_intrinsic_ieee_next_after (gfc_se * se, gfc_expr * expr)
8356 {
8357 tree args[2], decl, call, fpstate;
8358 int argprec;
8359
8360 conv_ieee_function_args (se, expr, args, 2);
8361
8362 /* Result has the characteristics of first argument. */
8363 args[1] = fold_convert (TREE_TYPE (args[0]), args[1]);
8364 argprec = TYPE_PRECISION (TREE_TYPE (args[0]));
8365 decl = builtin_decl_for_precision (BUILT_IN_NEXTAFTER, argprec);
8366
8367 /* Save floating-point state. */
8368 fpstate = gfc_save_fp_state (&se->pre);
8369
8370 /* Make the function call. */
8371 call = build_call_expr_loc_array (input_location, decl, 2, args);
8372 se->expr = fold_convert (TREE_TYPE (args[0]), call);
8373
8374 /* Restore floating-point state. */
8375 gfc_restore_fp_state (&se->post, fpstate);
8376 }
8377
8378
8379 /* Generate code for IEEE_SCALB. */
8380
8381 static void
8382 conv_intrinsic_ieee_scalb (gfc_se * se, gfc_expr * expr)
8383 {
8384 tree args[2], decl, call, huge, type;
8385 int argprec, n;
8386
8387 conv_ieee_function_args (se, expr, args, 2);
8388
8389 /* Result has the characteristics of first argument. */
8390 argprec = TYPE_PRECISION (TREE_TYPE (args[0]));
8391 decl = builtin_decl_for_precision (BUILT_IN_SCALBN, argprec);
8392
8393 if (TYPE_PRECISION (TREE_TYPE (args[1])) > TYPE_PRECISION (integer_type_node))
8394 {
8395 /* We need to fold the integer into the range of a C int. */
8396 args[1] = gfc_evaluate_now (args[1], &se->pre);
8397 type = TREE_TYPE (args[1]);
8398
8399 n = gfc_validate_kind (BT_INTEGER, gfc_c_int_kind, false);
8400 huge = gfc_conv_mpz_to_tree (gfc_integer_kinds[n].huge,
8401 gfc_c_int_kind);
8402 huge = fold_convert (type, huge);
8403 args[1] = fold_build2_loc (input_location, MIN_EXPR, type, args[1],
8404 huge);
8405 args[1] = fold_build2_loc (input_location, MAX_EXPR, type, args[1],
8406 fold_build1_loc (input_location, NEGATE_EXPR,
8407 type, huge));
8408 }
8409
8410 args[1] = fold_convert (integer_type_node, args[1]);
8411
8412 /* Make the function call. */
8413 call = build_call_expr_loc_array (input_location, decl, 2, args);
8414 se->expr = fold_convert (TREE_TYPE (args[0]), call);
8415 }
8416
8417
8418 /* Generate code for IEEE_COPY_SIGN. */
8419
8420 static void
8421 conv_intrinsic_ieee_copy_sign (gfc_se * se, gfc_expr * expr)
8422 {
8423 tree args[2], decl, sign;
8424 int argprec;
8425
8426 conv_ieee_function_args (se, expr, args, 2);
8427
8428 /* Get the sign of the second argument. */
8429 sign = build_call_expr_loc (input_location,
8430 builtin_decl_explicit (BUILT_IN_SIGNBIT),
8431 1, args[1]);
8432 sign = fold_build2_loc (input_location, NE_EXPR, boolean_type_node,
8433 sign, integer_zero_node);
8434
8435 /* Create a value of one, with the right sign. */
8436 sign = fold_build3_loc (input_location, COND_EXPR, integer_type_node,
8437 sign,
8438 fold_build1_loc (input_location, NEGATE_EXPR,
8439 integer_type_node,
8440 integer_one_node),
8441 integer_one_node);
8442 args[1] = fold_convert (TREE_TYPE (args[0]), sign);
8443
8444 argprec = TYPE_PRECISION (TREE_TYPE (args[0]));
8445 decl = builtin_decl_for_precision (BUILT_IN_COPYSIGN, argprec);
8446
8447 se->expr = build_call_expr_loc_array (input_location, decl, 2, args);
8448 }
8449
8450
8451 /* Generate code for an intrinsic function from the IEEE_ARITHMETIC
8452 module. */
8453
8454 bool
8455 gfc_conv_ieee_arithmetic_function (gfc_se * se, gfc_expr * expr)
8456 {
8457 const char *name = expr->value.function.name;
8458
8459 #define STARTS_WITH(A,B) (strncmp((A), (B), strlen(B)) == 0)
8460
8461 if (STARTS_WITH (name, "_gfortran_ieee_is_nan"))
8462 conv_intrinsic_ieee_builtin (se, expr, BUILT_IN_ISNAN, 1);
8463 else if (STARTS_WITH (name, "_gfortran_ieee_is_finite"))
8464 conv_intrinsic_ieee_builtin (se, expr, BUILT_IN_ISFINITE, 1);
8465 else if (STARTS_WITH (name, "_gfortran_ieee_unordered"))
8466 conv_intrinsic_ieee_builtin (se, expr, BUILT_IN_ISUNORDERED, 2);
8467 else if (STARTS_WITH (name, "_gfortran_ieee_is_normal"))
8468 conv_intrinsic_ieee_is_normal (se, expr);
8469 else if (STARTS_WITH (name, "_gfortran_ieee_is_negative"))
8470 conv_intrinsic_ieee_is_negative (se, expr);
8471 else if (STARTS_WITH (name, "_gfortran_ieee_copy_sign"))
8472 conv_intrinsic_ieee_copy_sign (se, expr);
8473 else if (STARTS_WITH (name, "_gfortran_ieee_scalb"))
8474 conv_intrinsic_ieee_scalb (se, expr);
8475 else if (STARTS_WITH (name, "_gfortran_ieee_next_after"))
8476 conv_intrinsic_ieee_next_after (se, expr);
8477 else if (STARTS_WITH (name, "_gfortran_ieee_rem"))
8478 conv_intrinsic_ieee_rem (se, expr);
8479 else if (STARTS_WITH (name, "_gfortran_ieee_logb"))
8480 conv_intrinsic_ieee_logb_rint (se, expr, BUILT_IN_LOGB);
8481 else if (STARTS_WITH (name, "_gfortran_ieee_rint"))
8482 conv_intrinsic_ieee_logb_rint (se, expr, BUILT_IN_RINT);
8483 else
8484 /* It is not among the functions we translate directly. We return
8485 false, so a library function call is emitted. */
8486 return false;
8487
8488 #undef STARTS_WITH
8489
8490 return true;
8491 }
8492
8493
8494 /* Generate a direct call to malloc() for the MALLOC intrinsic. */
8495
8496 static void
8497 gfc_conv_intrinsic_malloc (gfc_se * se, gfc_expr * expr)
8498 {
8499 tree arg, res, restype;
8500
8501 gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
8502 arg = fold_convert (size_type_node, arg);
8503 res = build_call_expr_loc (input_location,
8504 builtin_decl_explicit (BUILT_IN_MALLOC), 1, arg);
8505 restype = gfc_typenode_for_spec (&expr->ts);
8506 se->expr = fold_convert (restype, res);
8507 }
8508
8509
8510 /* Generate code for an intrinsic function. Some map directly to library
8511 calls, others get special handling. In some cases the name of the function
8512 used depends on the type specifiers. */
8513
8514 void
8515 gfc_conv_intrinsic_function (gfc_se * se, gfc_expr * expr)
8516 {
8517 const char *name;
8518 int lib, kind;
8519 tree fndecl;
8520
8521 name = &expr->value.function.name[2];
8522
8523 if (expr->rank > 0)
8524 {
8525 lib = gfc_is_intrinsic_libcall (expr);
8526 if (lib != 0)
8527 {
8528 if (lib == 1)
8529 se->ignore_optional = 1;
8530
8531 switch (expr->value.function.isym->id)
8532 {
8533 case GFC_ISYM_EOSHIFT:
8534 case GFC_ISYM_PACK:
8535 case GFC_ISYM_RESHAPE:
8536 /* For all of those the first argument specifies the type and the
8537 third is optional. */
8538 conv_generic_with_optional_char_arg (se, expr, 1, 3);
8539 break;
8540
8541 default:
8542 gfc_conv_intrinsic_funcall (se, expr);
8543 break;
8544 }
8545
8546 return;
8547 }
8548 }
8549
8550 switch (expr->value.function.isym->id)
8551 {
8552 case GFC_ISYM_NONE:
8553 gcc_unreachable ();
8554
8555 case GFC_ISYM_REPEAT:
8556 gfc_conv_intrinsic_repeat (se, expr);
8557 break;
8558
8559 case GFC_ISYM_TRIM:
8560 gfc_conv_intrinsic_trim (se, expr);
8561 break;
8562
8563 case GFC_ISYM_SC_KIND:
8564 gfc_conv_intrinsic_sc_kind (se, expr);
8565 break;
8566
8567 case GFC_ISYM_SI_KIND:
8568 gfc_conv_intrinsic_si_kind (se, expr);
8569 break;
8570
8571 case GFC_ISYM_SR_KIND:
8572 gfc_conv_intrinsic_sr_kind (se, expr);
8573 break;
8574
8575 case GFC_ISYM_EXPONENT:
8576 gfc_conv_intrinsic_exponent (se, expr);
8577 break;
8578
8579 case GFC_ISYM_SCAN:
8580 kind = expr->value.function.actual->expr->ts.kind;
8581 if (kind == 1)
8582 fndecl = gfor_fndecl_string_scan;
8583 else if (kind == 4)
8584 fndecl = gfor_fndecl_string_scan_char4;
8585 else
8586 gcc_unreachable ();
8587
8588 gfc_conv_intrinsic_index_scan_verify (se, expr, fndecl);
8589 break;
8590
8591 case GFC_ISYM_VERIFY:
8592 kind = expr->value.function.actual->expr->ts.kind;
8593 if (kind == 1)
8594 fndecl = gfor_fndecl_string_verify;
8595 else if (kind == 4)
8596 fndecl = gfor_fndecl_string_verify_char4;
8597 else
8598 gcc_unreachable ();
8599
8600 gfc_conv_intrinsic_index_scan_verify (se, expr, fndecl);
8601 break;
8602
8603 case GFC_ISYM_ALLOCATED:
8604 gfc_conv_allocated (se, expr);
8605 break;
8606
8607 case GFC_ISYM_ASSOCIATED:
8608 gfc_conv_associated(se, expr);
8609 break;
8610
8611 case GFC_ISYM_SAME_TYPE_AS:
8612 gfc_conv_same_type_as (se, expr);
8613 break;
8614
8615 case GFC_ISYM_ABS:
8616 gfc_conv_intrinsic_abs (se, expr);
8617 break;
8618
8619 case GFC_ISYM_ADJUSTL:
8620 if (expr->ts.kind == 1)
8621 fndecl = gfor_fndecl_adjustl;
8622 else if (expr->ts.kind == 4)
8623 fndecl = gfor_fndecl_adjustl_char4;
8624 else
8625 gcc_unreachable ();
8626
8627 gfc_conv_intrinsic_adjust (se, expr, fndecl);
8628 break;
8629
8630 case GFC_ISYM_ADJUSTR:
8631 if (expr->ts.kind == 1)
8632 fndecl = gfor_fndecl_adjustr;
8633 else if (expr->ts.kind == 4)
8634 fndecl = gfor_fndecl_adjustr_char4;
8635 else
8636 gcc_unreachable ();
8637
8638 gfc_conv_intrinsic_adjust (se, expr, fndecl);
8639 break;
8640
8641 case GFC_ISYM_AIMAG:
8642 gfc_conv_intrinsic_imagpart (se, expr);
8643 break;
8644
8645 case GFC_ISYM_AINT:
8646 gfc_conv_intrinsic_aint (se, expr, RND_TRUNC);
8647 break;
8648
8649 case GFC_ISYM_ALL:
8650 gfc_conv_intrinsic_anyall (se, expr, EQ_EXPR);
8651 break;
8652
8653 case GFC_ISYM_ANINT:
8654 gfc_conv_intrinsic_aint (se, expr, RND_ROUND);
8655 break;
8656
8657 case GFC_ISYM_AND:
8658 gfc_conv_intrinsic_bitop (se, expr, BIT_AND_EXPR);
8659 break;
8660
8661 case GFC_ISYM_ANY:
8662 gfc_conv_intrinsic_anyall (se, expr, NE_EXPR);
8663 break;
8664
8665 case GFC_ISYM_BTEST:
8666 gfc_conv_intrinsic_btest (se, expr);
8667 break;
8668
8669 case GFC_ISYM_BGE:
8670 gfc_conv_intrinsic_bitcomp (se, expr, GE_EXPR);
8671 break;
8672
8673 case GFC_ISYM_BGT:
8674 gfc_conv_intrinsic_bitcomp (se, expr, GT_EXPR);
8675 break;
8676
8677 case GFC_ISYM_BLE:
8678 gfc_conv_intrinsic_bitcomp (se, expr, LE_EXPR);
8679 break;
8680
8681 case GFC_ISYM_BLT:
8682 gfc_conv_intrinsic_bitcomp (se, expr, LT_EXPR);
8683 break;
8684
8685 case GFC_ISYM_C_ASSOCIATED:
8686 case GFC_ISYM_C_FUNLOC:
8687 case GFC_ISYM_C_LOC:
8688 conv_isocbinding_function (se, expr);
8689 break;
8690
8691 case GFC_ISYM_ACHAR:
8692 case GFC_ISYM_CHAR:
8693 gfc_conv_intrinsic_char (se, expr);
8694 break;
8695
8696 case GFC_ISYM_CONVERSION:
8697 case GFC_ISYM_REAL:
8698 case GFC_ISYM_LOGICAL:
8699 case GFC_ISYM_DBLE:
8700 gfc_conv_intrinsic_conversion (se, expr);
8701 break;
8702
8703 /* Integer conversions are handled separately to make sure we get the
8704 correct rounding mode. */
8705 case GFC_ISYM_INT:
8706 case GFC_ISYM_INT2:
8707 case GFC_ISYM_INT8:
8708 case GFC_ISYM_LONG:
8709 gfc_conv_intrinsic_int (se, expr, RND_TRUNC);
8710 break;
8711
8712 case GFC_ISYM_NINT:
8713 gfc_conv_intrinsic_int (se, expr, RND_ROUND);
8714 break;
8715
8716 case GFC_ISYM_CEILING:
8717 gfc_conv_intrinsic_int (se, expr, RND_CEIL);
8718 break;
8719
8720 case GFC_ISYM_FLOOR:
8721 gfc_conv_intrinsic_int (se, expr, RND_FLOOR);
8722 break;
8723
8724 case GFC_ISYM_MOD:
8725 gfc_conv_intrinsic_mod (se, expr, 0);
8726 break;
8727
8728 case GFC_ISYM_MODULO:
8729 gfc_conv_intrinsic_mod (se, expr, 1);
8730 break;
8731
8732 case GFC_ISYM_CAF_GET:
8733 gfc_conv_intrinsic_caf_get (se, expr, NULL_TREE, NULL_TREE, NULL_TREE,
8734 false, NULL);
8735 break;
8736
8737 case GFC_ISYM_CMPLX:
8738 gfc_conv_intrinsic_cmplx (se, expr, name[5] == '1');
8739 break;
8740
8741 case GFC_ISYM_COMMAND_ARGUMENT_COUNT:
8742 gfc_conv_intrinsic_iargc (se, expr);
8743 break;
8744
8745 case GFC_ISYM_COMPLEX:
8746 gfc_conv_intrinsic_cmplx (se, expr, 1);
8747 break;
8748
8749 case GFC_ISYM_CONJG:
8750 gfc_conv_intrinsic_conjg (se, expr);
8751 break;
8752
8753 case GFC_ISYM_COUNT:
8754 gfc_conv_intrinsic_count (se, expr);
8755 break;
8756
8757 case GFC_ISYM_CTIME:
8758 gfc_conv_intrinsic_ctime (se, expr);
8759 break;
8760
8761 case GFC_ISYM_DIM:
8762 gfc_conv_intrinsic_dim (se, expr);
8763 break;
8764
8765 case GFC_ISYM_DOT_PRODUCT:
8766 gfc_conv_intrinsic_dot_product (se, expr);
8767 break;
8768
8769 case GFC_ISYM_DPROD:
8770 gfc_conv_intrinsic_dprod (se, expr);
8771 break;
8772
8773 case GFC_ISYM_DSHIFTL:
8774 gfc_conv_intrinsic_dshift (se, expr, true);
8775 break;
8776
8777 case GFC_ISYM_DSHIFTR:
8778 gfc_conv_intrinsic_dshift (se, expr, false);
8779 break;
8780
8781 case GFC_ISYM_FDATE:
8782 gfc_conv_intrinsic_fdate (se, expr);
8783 break;
8784
8785 case GFC_ISYM_FRACTION:
8786 gfc_conv_intrinsic_fraction (se, expr);
8787 break;
8788
8789 case GFC_ISYM_IALL:
8790 gfc_conv_intrinsic_arith (se, expr, BIT_AND_EXPR, false);
8791 break;
8792
8793 case GFC_ISYM_IAND:
8794 gfc_conv_intrinsic_bitop (se, expr, BIT_AND_EXPR);
8795 break;
8796
8797 case GFC_ISYM_IANY:
8798 gfc_conv_intrinsic_arith (se, expr, BIT_IOR_EXPR, false);
8799 break;
8800
8801 case GFC_ISYM_IBCLR:
8802 gfc_conv_intrinsic_singlebitop (se, expr, 0);
8803 break;
8804
8805 case GFC_ISYM_IBITS:
8806 gfc_conv_intrinsic_ibits (se, expr);
8807 break;
8808
8809 case GFC_ISYM_IBSET:
8810 gfc_conv_intrinsic_singlebitop (se, expr, 1);
8811 break;
8812
8813 case GFC_ISYM_IACHAR:
8814 case GFC_ISYM_ICHAR:
8815 /* We assume ASCII character sequence. */
8816 gfc_conv_intrinsic_ichar (se, expr);
8817 break;
8818
8819 case GFC_ISYM_IARGC:
8820 gfc_conv_intrinsic_iargc (se, expr);
8821 break;
8822
8823 case GFC_ISYM_IEOR:
8824 gfc_conv_intrinsic_bitop (se, expr, BIT_XOR_EXPR);
8825 break;
8826
8827 case GFC_ISYM_INDEX:
8828 kind = expr->value.function.actual->expr->ts.kind;
8829 if (kind == 1)
8830 fndecl = gfor_fndecl_string_index;
8831 else if (kind == 4)
8832 fndecl = gfor_fndecl_string_index_char4;
8833 else
8834 gcc_unreachable ();
8835
8836 gfc_conv_intrinsic_index_scan_verify (se, expr, fndecl);
8837 break;
8838
8839 case GFC_ISYM_IOR:
8840 gfc_conv_intrinsic_bitop (se, expr, BIT_IOR_EXPR);
8841 break;
8842
8843 case GFC_ISYM_IPARITY:
8844 gfc_conv_intrinsic_arith (se, expr, BIT_XOR_EXPR, false);
8845 break;
8846
8847 case GFC_ISYM_IS_IOSTAT_END:
8848 gfc_conv_has_intvalue (se, expr, LIBERROR_END);
8849 break;
8850
8851 case GFC_ISYM_IS_IOSTAT_EOR:
8852 gfc_conv_has_intvalue (se, expr, LIBERROR_EOR);
8853 break;
8854
8855 case GFC_ISYM_ISNAN:
8856 gfc_conv_intrinsic_isnan (se, expr);
8857 break;
8858
8859 case GFC_ISYM_LSHIFT:
8860 gfc_conv_intrinsic_shift (se, expr, false, false);
8861 break;
8862
8863 case GFC_ISYM_RSHIFT:
8864 gfc_conv_intrinsic_shift (se, expr, true, true);
8865 break;
8866
8867 case GFC_ISYM_SHIFTA:
8868 gfc_conv_intrinsic_shift (se, expr, true, true);
8869 break;
8870
8871 case GFC_ISYM_SHIFTL:
8872 gfc_conv_intrinsic_shift (se, expr, false, false);
8873 break;
8874
8875 case GFC_ISYM_SHIFTR:
8876 gfc_conv_intrinsic_shift (se, expr, true, false);
8877 break;
8878
8879 case GFC_ISYM_ISHFT:
8880 gfc_conv_intrinsic_ishft (se, expr);
8881 break;
8882
8883 case GFC_ISYM_ISHFTC:
8884 gfc_conv_intrinsic_ishftc (se, expr);
8885 break;
8886
8887 case GFC_ISYM_LEADZ:
8888 gfc_conv_intrinsic_leadz (se, expr);
8889 break;
8890
8891 case GFC_ISYM_TRAILZ:
8892 gfc_conv_intrinsic_trailz (se, expr);
8893 break;
8894
8895 case GFC_ISYM_POPCNT:
8896 gfc_conv_intrinsic_popcnt_poppar (se, expr, 0);
8897 break;
8898
8899 case GFC_ISYM_POPPAR:
8900 gfc_conv_intrinsic_popcnt_poppar (se, expr, 1);
8901 break;
8902
8903 case GFC_ISYM_LBOUND:
8904 gfc_conv_intrinsic_bound (se, expr, 0);
8905 break;
8906
8907 case GFC_ISYM_LCOBOUND:
8908 conv_intrinsic_cobound (se, expr);
8909 break;
8910
8911 case GFC_ISYM_TRANSPOSE:
8912 /* The scalarizer has already been set up for reversed dimension access
8913 order ; now we just get the argument value normally. */
8914 gfc_conv_expr (se, expr->value.function.actual->expr);
8915 break;
8916
8917 case GFC_ISYM_LEN:
8918 gfc_conv_intrinsic_len (se, expr);
8919 break;
8920
8921 case GFC_ISYM_LEN_TRIM:
8922 gfc_conv_intrinsic_len_trim (se, expr);
8923 break;
8924
8925 case GFC_ISYM_LGE:
8926 gfc_conv_intrinsic_strcmp (se, expr, GE_EXPR);
8927 break;
8928
8929 case GFC_ISYM_LGT:
8930 gfc_conv_intrinsic_strcmp (se, expr, GT_EXPR);
8931 break;
8932
8933 case GFC_ISYM_LLE:
8934 gfc_conv_intrinsic_strcmp (se, expr, LE_EXPR);
8935 break;
8936
8937 case GFC_ISYM_LLT:
8938 gfc_conv_intrinsic_strcmp (se, expr, LT_EXPR);
8939 break;
8940
8941 case GFC_ISYM_MALLOC:
8942 gfc_conv_intrinsic_malloc (se, expr);
8943 break;
8944
8945 case GFC_ISYM_MASKL:
8946 gfc_conv_intrinsic_mask (se, expr, 1);
8947 break;
8948
8949 case GFC_ISYM_MASKR:
8950 gfc_conv_intrinsic_mask (se, expr, 0);
8951 break;
8952
8953 case GFC_ISYM_MAX:
8954 if (expr->ts.type == BT_CHARACTER)
8955 gfc_conv_intrinsic_minmax_char (se, expr, 1);
8956 else
8957 gfc_conv_intrinsic_minmax (se, expr, GT_EXPR);
8958 break;
8959
8960 case GFC_ISYM_MAXLOC:
8961 gfc_conv_intrinsic_minmaxloc (se, expr, GT_EXPR);
8962 break;
8963
8964 case GFC_ISYM_MAXVAL:
8965 gfc_conv_intrinsic_minmaxval (se, expr, GT_EXPR);
8966 break;
8967
8968 case GFC_ISYM_MERGE:
8969 gfc_conv_intrinsic_merge (se, expr);
8970 break;
8971
8972 case GFC_ISYM_MERGE_BITS:
8973 gfc_conv_intrinsic_merge_bits (se, expr);
8974 break;
8975
8976 case GFC_ISYM_MIN:
8977 if (expr->ts.type == BT_CHARACTER)
8978 gfc_conv_intrinsic_minmax_char (se, expr, -1);
8979 else
8980 gfc_conv_intrinsic_minmax (se, expr, LT_EXPR);
8981 break;
8982
8983 case GFC_ISYM_MINLOC:
8984 gfc_conv_intrinsic_minmaxloc (se, expr, LT_EXPR);
8985 break;
8986
8987 case GFC_ISYM_MINVAL:
8988 gfc_conv_intrinsic_minmaxval (se, expr, LT_EXPR);
8989 break;
8990
8991 case GFC_ISYM_NEAREST:
8992 gfc_conv_intrinsic_nearest (se, expr);
8993 break;
8994
8995 case GFC_ISYM_NORM2:
8996 gfc_conv_intrinsic_arith (se, expr, PLUS_EXPR, true);
8997 break;
8998
8999 case GFC_ISYM_NOT:
9000 gfc_conv_intrinsic_not (se, expr);
9001 break;
9002
9003 case GFC_ISYM_OR:
9004 gfc_conv_intrinsic_bitop (se, expr, BIT_IOR_EXPR);
9005 break;
9006
9007 case GFC_ISYM_PARITY:
9008 gfc_conv_intrinsic_arith (se, expr, NE_EXPR, false);
9009 break;
9010
9011 case GFC_ISYM_PRESENT:
9012 gfc_conv_intrinsic_present (se, expr);
9013 break;
9014
9015 case GFC_ISYM_PRODUCT:
9016 gfc_conv_intrinsic_arith (se, expr, MULT_EXPR, false);
9017 break;
9018
9019 case GFC_ISYM_RANK:
9020 gfc_conv_intrinsic_rank (se, expr);
9021 break;
9022
9023 case GFC_ISYM_RRSPACING:
9024 gfc_conv_intrinsic_rrspacing (se, expr);
9025 break;
9026
9027 case GFC_ISYM_SET_EXPONENT:
9028 gfc_conv_intrinsic_set_exponent (se, expr);
9029 break;
9030
9031 case GFC_ISYM_SCALE:
9032 gfc_conv_intrinsic_scale (se, expr);
9033 break;
9034
9035 case GFC_ISYM_SIGN:
9036 gfc_conv_intrinsic_sign (se, expr);
9037 break;
9038
9039 case GFC_ISYM_SIZE:
9040 gfc_conv_intrinsic_size (se, expr);
9041 break;
9042
9043 case GFC_ISYM_SIZEOF:
9044 case GFC_ISYM_C_SIZEOF:
9045 gfc_conv_intrinsic_sizeof (se, expr);
9046 break;
9047
9048 case GFC_ISYM_STORAGE_SIZE:
9049 gfc_conv_intrinsic_storage_size (se, expr);
9050 break;
9051
9052 case GFC_ISYM_SPACING:
9053 gfc_conv_intrinsic_spacing (se, expr);
9054 break;
9055
9056 case GFC_ISYM_STRIDE:
9057 conv_intrinsic_stride (se, expr);
9058 break;
9059
9060 case GFC_ISYM_SUM:
9061 gfc_conv_intrinsic_arith (se, expr, PLUS_EXPR, false);
9062 break;
9063
9064 case GFC_ISYM_TRANSFER:
9065 if (se->ss && se->ss->info->useflags)
9066 /* Access the previously obtained result. */
9067 gfc_conv_tmp_array_ref (se);
9068 else
9069 gfc_conv_intrinsic_transfer (se, expr);
9070 break;
9071
9072 case GFC_ISYM_TTYNAM:
9073 gfc_conv_intrinsic_ttynam (se, expr);
9074 break;
9075
9076 case GFC_ISYM_UBOUND:
9077 gfc_conv_intrinsic_bound (se, expr, 1);
9078 break;
9079
9080 case GFC_ISYM_UCOBOUND:
9081 conv_intrinsic_cobound (se, expr);
9082 break;
9083
9084 case GFC_ISYM_XOR:
9085 gfc_conv_intrinsic_bitop (se, expr, BIT_XOR_EXPR);
9086 break;
9087
9088 case GFC_ISYM_LOC:
9089 gfc_conv_intrinsic_loc (se, expr);
9090 break;
9091
9092 case GFC_ISYM_THIS_IMAGE:
9093 /* For num_images() == 1, handle as LCOBOUND. */
9094 if (expr->value.function.actual->expr
9095 && flag_coarray == GFC_FCOARRAY_SINGLE)
9096 conv_intrinsic_cobound (se, expr);
9097 else
9098 trans_this_image (se, expr);
9099 break;
9100
9101 case GFC_ISYM_IMAGE_INDEX:
9102 trans_image_index (se, expr);
9103 break;
9104
9105 case GFC_ISYM_NUM_IMAGES:
9106 trans_num_images (se, expr);
9107 break;
9108
9109 case GFC_ISYM_ACCESS:
9110 case GFC_ISYM_CHDIR:
9111 case GFC_ISYM_CHMOD:
9112 case GFC_ISYM_DTIME:
9113 case GFC_ISYM_ETIME:
9114 case GFC_ISYM_EXTENDS_TYPE_OF:
9115 case GFC_ISYM_FGET:
9116 case GFC_ISYM_FGETC:
9117 case GFC_ISYM_FNUM:
9118 case GFC_ISYM_FPUT:
9119 case GFC_ISYM_FPUTC:
9120 case GFC_ISYM_FSTAT:
9121 case GFC_ISYM_FTELL:
9122 case GFC_ISYM_GETCWD:
9123 case GFC_ISYM_GETGID:
9124 case GFC_ISYM_GETPID:
9125 case GFC_ISYM_GETUID:
9126 case GFC_ISYM_HOSTNM:
9127 case GFC_ISYM_KILL:
9128 case GFC_ISYM_IERRNO:
9129 case GFC_ISYM_IRAND:
9130 case GFC_ISYM_ISATTY:
9131 case GFC_ISYM_JN2:
9132 case GFC_ISYM_LINK:
9133 case GFC_ISYM_LSTAT:
9134 case GFC_ISYM_MATMUL:
9135 case GFC_ISYM_MCLOCK:
9136 case GFC_ISYM_MCLOCK8:
9137 case GFC_ISYM_RAND:
9138 case GFC_ISYM_RENAME:
9139 case GFC_ISYM_SECOND:
9140 case GFC_ISYM_SECNDS:
9141 case GFC_ISYM_SIGNAL:
9142 case GFC_ISYM_STAT:
9143 case GFC_ISYM_SYMLNK:
9144 case GFC_ISYM_SYSTEM:
9145 case GFC_ISYM_TIME:
9146 case GFC_ISYM_TIME8:
9147 case GFC_ISYM_UMASK:
9148 case GFC_ISYM_UNLINK:
9149 case GFC_ISYM_YN2:
9150 gfc_conv_intrinsic_funcall (se, expr);
9151 break;
9152
9153 case GFC_ISYM_EOSHIFT:
9154 case GFC_ISYM_PACK:
9155 case GFC_ISYM_RESHAPE:
9156 /* For those, expr->rank should always be >0 and thus the if above the
9157 switch should have matched. */
9158 gcc_unreachable ();
9159 break;
9160
9161 default:
9162 gfc_conv_intrinsic_lib_function (se, expr);
9163 break;
9164 }
9165 }
9166
9167
9168 static gfc_ss *
9169 walk_inline_intrinsic_transpose (gfc_ss *ss, gfc_expr *expr)
9170 {
9171 gfc_ss *arg_ss, *tmp_ss;
9172 gfc_actual_arglist *arg;
9173
9174 arg = expr->value.function.actual;
9175
9176 gcc_assert (arg->expr);
9177
9178 arg_ss = gfc_walk_subexpr (gfc_ss_terminator, arg->expr);
9179 gcc_assert (arg_ss != gfc_ss_terminator);
9180
9181 for (tmp_ss = arg_ss; ; tmp_ss = tmp_ss->next)
9182 {
9183 if (tmp_ss->info->type != GFC_SS_SCALAR
9184 && tmp_ss->info->type != GFC_SS_REFERENCE)
9185 {
9186 gcc_assert (tmp_ss->dimen == 2);
9187
9188 /* We just invert dimensions. */
9189 std::swap (tmp_ss->dim[0], tmp_ss->dim[1]);
9190 }
9191
9192 /* Stop when tmp_ss points to the last valid element of the chain... */
9193 if (tmp_ss->next == gfc_ss_terminator)
9194 break;
9195 }
9196
9197 /* ... so that we can attach the rest of the chain to it. */
9198 tmp_ss->next = ss;
9199
9200 return arg_ss;
9201 }
9202
9203
9204 /* Move the given dimension of the given gfc_ss list to a nested gfc_ss list.
9205 This has the side effect of reversing the nested list, so there is no
9206 need to call gfc_reverse_ss on it (the given list is assumed not to be
9207 reversed yet). */
9208
9209 static gfc_ss *
9210 nest_loop_dimension (gfc_ss *ss, int dim)
9211 {
9212 int ss_dim, i;
9213 gfc_ss *new_ss, *prev_ss = gfc_ss_terminator;
9214 gfc_loopinfo *new_loop;
9215
9216 gcc_assert (ss != gfc_ss_terminator);
9217
9218 for (; ss != gfc_ss_terminator; ss = ss->next)
9219 {
9220 new_ss = gfc_get_ss ();
9221 new_ss->next = prev_ss;
9222 new_ss->parent = ss;
9223 new_ss->info = ss->info;
9224 new_ss->info->refcount++;
9225 if (ss->dimen != 0)
9226 {
9227 gcc_assert (ss->info->type != GFC_SS_SCALAR
9228 && ss->info->type != GFC_SS_REFERENCE);
9229
9230 new_ss->dimen = 1;
9231 new_ss->dim[0] = ss->dim[dim];
9232
9233 gcc_assert (dim < ss->dimen);
9234
9235 ss_dim = --ss->dimen;
9236 for (i = dim; i < ss_dim; i++)
9237 ss->dim[i] = ss->dim[i + 1];
9238
9239 ss->dim[ss_dim] = 0;
9240 }
9241 prev_ss = new_ss;
9242
9243 if (ss->nested_ss)
9244 {
9245 ss->nested_ss->parent = new_ss;
9246 new_ss->nested_ss = ss->nested_ss;
9247 }
9248 ss->nested_ss = new_ss;
9249 }
9250
9251 new_loop = gfc_get_loopinfo ();
9252 gfc_init_loopinfo (new_loop);
9253
9254 gcc_assert (prev_ss != NULL);
9255 gcc_assert (prev_ss != gfc_ss_terminator);
9256 gfc_add_ss_to_loop (new_loop, prev_ss);
9257 return new_ss->parent;
9258 }
9259
9260
9261 /* Create the gfc_ss list for the SUM/PRODUCT arguments when the function
9262 is to be inlined. */
9263
9264 static gfc_ss *
9265 walk_inline_intrinsic_arith (gfc_ss *ss, gfc_expr *expr)
9266 {
9267 gfc_ss *tmp_ss, *tail, *array_ss;
9268 gfc_actual_arglist *arg1, *arg2, *arg3;
9269 int sum_dim;
9270 bool scalar_mask = false;
9271
9272 /* The rank of the result will be determined later. */
9273 arg1 = expr->value.function.actual;
9274 arg2 = arg1->next;
9275 arg3 = arg2->next;
9276 gcc_assert (arg3 != NULL);
9277
9278 if (expr->rank == 0)
9279 return ss;
9280
9281 tmp_ss = gfc_ss_terminator;
9282
9283 if (arg3->expr)
9284 {
9285 gfc_ss *mask_ss;
9286
9287 mask_ss = gfc_walk_subexpr (tmp_ss, arg3->expr);
9288 if (mask_ss == tmp_ss)
9289 scalar_mask = 1;
9290
9291 tmp_ss = mask_ss;
9292 }
9293
9294 array_ss = gfc_walk_subexpr (tmp_ss, arg1->expr);
9295 gcc_assert (array_ss != tmp_ss);
9296
9297 /* Odd thing: If the mask is scalar, it is used by the frontend after
9298 the array (to make an if around the nested loop). Thus it shall
9299 be after array_ss once the gfc_ss list is reversed. */
9300 if (scalar_mask)
9301 tmp_ss = gfc_get_scalar_ss (array_ss, arg3->expr);
9302 else
9303 tmp_ss = array_ss;
9304
9305 /* "Hide" the dimension on which we will sum in the first arg's scalarization
9306 chain. */
9307 sum_dim = mpz_get_si (arg2->expr->value.integer) - 1;
9308 tail = nest_loop_dimension (tmp_ss, sum_dim);
9309 tail->next = ss;
9310
9311 return tmp_ss;
9312 }
9313
9314
9315 static gfc_ss *
9316 walk_inline_intrinsic_function (gfc_ss * ss, gfc_expr * expr)
9317 {
9318
9319 switch (expr->value.function.isym->id)
9320 {
9321 case GFC_ISYM_PRODUCT:
9322 case GFC_ISYM_SUM:
9323 return walk_inline_intrinsic_arith (ss, expr);
9324
9325 case GFC_ISYM_TRANSPOSE:
9326 return walk_inline_intrinsic_transpose (ss, expr);
9327
9328 default:
9329 gcc_unreachable ();
9330 }
9331 gcc_unreachable ();
9332 }
9333
9334
9335 /* This generates code to execute before entering the scalarization loop.
9336 Currently does nothing. */
9337
9338 void
9339 gfc_add_intrinsic_ss_code (gfc_loopinfo * loop ATTRIBUTE_UNUSED, gfc_ss * ss)
9340 {
9341 switch (ss->info->expr->value.function.isym->id)
9342 {
9343 case GFC_ISYM_UBOUND:
9344 case GFC_ISYM_LBOUND:
9345 case GFC_ISYM_UCOBOUND:
9346 case GFC_ISYM_LCOBOUND:
9347 case GFC_ISYM_THIS_IMAGE:
9348 break;
9349
9350 default:
9351 gcc_unreachable ();
9352 }
9353 }
9354
9355
9356 /* The LBOUND, LCOBOUND, UBOUND and UCOBOUND intrinsics with one parameter
9357 are expanded into code inside the scalarization loop. */
9358
9359 static gfc_ss *
9360 gfc_walk_intrinsic_bound (gfc_ss * ss, gfc_expr * expr)
9361 {
9362 if (expr->value.function.actual->expr->ts.type == BT_CLASS)
9363 gfc_add_class_array_ref (expr->value.function.actual->expr);
9364
9365 /* The two argument version returns a scalar. */
9366 if (expr->value.function.actual->next->expr)
9367 return ss;
9368
9369 return gfc_get_array_ss (ss, expr, 1, GFC_SS_INTRINSIC);
9370 }
9371
9372
9373 /* Walk an intrinsic array libcall. */
9374
9375 static gfc_ss *
9376 gfc_walk_intrinsic_libfunc (gfc_ss * ss, gfc_expr * expr)
9377 {
9378 gcc_assert (expr->rank > 0);
9379 return gfc_get_array_ss (ss, expr, expr->rank, GFC_SS_FUNCTION);
9380 }
9381
9382
9383 /* Return whether the function call expression EXPR will be expanded
9384 inline by gfc_conv_intrinsic_function. */
9385
9386 bool
9387 gfc_inline_intrinsic_function_p (gfc_expr *expr)
9388 {
9389 gfc_actual_arglist *args;
9390
9391 if (!expr->value.function.isym)
9392 return false;
9393
9394 switch (expr->value.function.isym->id)
9395 {
9396 case GFC_ISYM_PRODUCT:
9397 case GFC_ISYM_SUM:
9398 /* Disable inline expansion if code size matters. */
9399 if (optimize_size)
9400 return false;
9401
9402 args = expr->value.function.actual;
9403 /* We need to be able to subset the SUM argument at compile-time. */
9404 if (args->next->expr && args->next->expr->expr_type != EXPR_CONSTANT)
9405 return false;
9406
9407 return true;
9408
9409 case GFC_ISYM_TRANSPOSE:
9410 return true;
9411
9412 default:
9413 return false;
9414 }
9415 }
9416
9417
9418 /* Returns nonzero if the specified intrinsic function call maps directly to
9419 an external library call. Should only be used for functions that return
9420 arrays. */
9421
9422 int
9423 gfc_is_intrinsic_libcall (gfc_expr * expr)
9424 {
9425 gcc_assert (expr->expr_type == EXPR_FUNCTION && expr->value.function.isym);
9426 gcc_assert (expr->rank > 0);
9427
9428 if (gfc_inline_intrinsic_function_p (expr))
9429 return 0;
9430
9431 switch (expr->value.function.isym->id)
9432 {
9433 case GFC_ISYM_ALL:
9434 case GFC_ISYM_ANY:
9435 case GFC_ISYM_COUNT:
9436 case GFC_ISYM_JN2:
9437 case GFC_ISYM_IANY:
9438 case GFC_ISYM_IALL:
9439 case GFC_ISYM_IPARITY:
9440 case GFC_ISYM_MATMUL:
9441 case GFC_ISYM_MAXLOC:
9442 case GFC_ISYM_MAXVAL:
9443 case GFC_ISYM_MINLOC:
9444 case GFC_ISYM_MINVAL:
9445 case GFC_ISYM_NORM2:
9446 case GFC_ISYM_PARITY:
9447 case GFC_ISYM_PRODUCT:
9448 case GFC_ISYM_SUM:
9449 case GFC_ISYM_SHAPE:
9450 case GFC_ISYM_SPREAD:
9451 case GFC_ISYM_YN2:
9452 /* Ignore absent optional parameters. */
9453 return 1;
9454
9455 case GFC_ISYM_RESHAPE:
9456 case GFC_ISYM_CSHIFT:
9457 case GFC_ISYM_EOSHIFT:
9458 case GFC_ISYM_PACK:
9459 case GFC_ISYM_UNPACK:
9460 /* Pass absent optional parameters. */
9461 return 2;
9462
9463 default:
9464 return 0;
9465 }
9466 }
9467
9468 /* Walk an intrinsic function. */
9469 gfc_ss *
9470 gfc_walk_intrinsic_function (gfc_ss * ss, gfc_expr * expr,
9471 gfc_intrinsic_sym * isym)
9472 {
9473 gcc_assert (isym);
9474
9475 if (isym->elemental)
9476 return gfc_walk_elemental_function_args (ss, expr->value.function.actual,
9477 NULL, GFC_SS_SCALAR);
9478
9479 if (expr->rank == 0)
9480 return ss;
9481
9482 if (gfc_inline_intrinsic_function_p (expr))
9483 return walk_inline_intrinsic_function (ss, expr);
9484
9485 if (gfc_is_intrinsic_libcall (expr))
9486 return gfc_walk_intrinsic_libfunc (ss, expr);
9487
9488 /* Special cases. */
9489 switch (isym->id)
9490 {
9491 case GFC_ISYM_LBOUND:
9492 case GFC_ISYM_LCOBOUND:
9493 case GFC_ISYM_UBOUND:
9494 case GFC_ISYM_UCOBOUND:
9495 case GFC_ISYM_THIS_IMAGE:
9496 return gfc_walk_intrinsic_bound (ss, expr);
9497
9498 case GFC_ISYM_TRANSFER:
9499 case GFC_ISYM_CAF_GET:
9500 return gfc_walk_intrinsic_libfunc (ss, expr);
9501
9502 default:
9503 /* This probably meant someone forgot to add an intrinsic to the above
9504 list(s) when they implemented it, or something's gone horribly
9505 wrong. */
9506 gcc_unreachable ();
9507 }
9508 }
9509
9510
9511 static tree
9512 conv_co_collective (gfc_code *code)
9513 {
9514 gfc_se argse;
9515 stmtblock_t block, post_block;
9516 tree fndecl, array, strlen, image_index, stat, errmsg, errmsg_len;
9517 gfc_expr *image_idx_expr, *stat_expr, *errmsg_expr, *opr_expr;
9518
9519 gfc_start_block (&block);
9520 gfc_init_block (&post_block);
9521
9522 if (code->resolved_isym->id == GFC_ISYM_CO_REDUCE)
9523 {
9524 opr_expr = code->ext.actual->next->expr;
9525 image_idx_expr = code->ext.actual->next->next->expr;
9526 stat_expr = code->ext.actual->next->next->next->expr;
9527 errmsg_expr = code->ext.actual->next->next->next->next->expr;
9528 }
9529 else
9530 {
9531 opr_expr = NULL;
9532 image_idx_expr = code->ext.actual->next->expr;
9533 stat_expr = code->ext.actual->next->next->expr;
9534 errmsg_expr = code->ext.actual->next->next->next->expr;
9535 }
9536
9537 /* stat. */
9538 if (stat_expr)
9539 {
9540 gfc_init_se (&argse, NULL);
9541 gfc_conv_expr (&argse, stat_expr);
9542 gfc_add_block_to_block (&block, &argse.pre);
9543 gfc_add_block_to_block (&post_block, &argse.post);
9544 stat = argse.expr;
9545 if (flag_coarray != GFC_FCOARRAY_SINGLE)
9546 stat = gfc_build_addr_expr (NULL_TREE, stat);
9547 }
9548 else if (flag_coarray == GFC_FCOARRAY_SINGLE)
9549 stat = NULL_TREE;
9550 else
9551 stat = null_pointer_node;
9552
9553 /* Early exit for GFC_FCOARRAY_SINGLE. */
9554 if (flag_coarray == GFC_FCOARRAY_SINGLE)
9555 {
9556 if (stat != NULL_TREE)
9557 gfc_add_modify (&block, stat,
9558 fold_convert (TREE_TYPE (stat), integer_zero_node));
9559 return gfc_finish_block (&block);
9560 }
9561
9562 /* Handle the array. */
9563 gfc_init_se (&argse, NULL);
9564 if (code->ext.actual->expr->rank == 0)
9565 {
9566 symbol_attribute attr;
9567 gfc_clear_attr (&attr);
9568 gfc_init_se (&argse, NULL);
9569 gfc_conv_expr (&argse, code->ext.actual->expr);
9570 gfc_add_block_to_block (&block, &argse.pre);
9571 gfc_add_block_to_block (&post_block, &argse.post);
9572 array = gfc_conv_scalar_to_descriptor (&argse, argse.expr, attr);
9573 array = gfc_build_addr_expr (NULL_TREE, array);
9574 }
9575 else
9576 {
9577 argse.want_pointer = 1;
9578 gfc_conv_expr_descriptor (&argse, code->ext.actual->expr);
9579 array = argse.expr;
9580 }
9581 gfc_add_block_to_block (&block, &argse.pre);
9582 gfc_add_block_to_block (&post_block, &argse.post);
9583
9584 if (code->ext.actual->expr->ts.type == BT_CHARACTER)
9585 strlen = argse.string_length;
9586 else
9587 strlen = integer_zero_node;
9588
9589 /* image_index. */
9590 if (image_idx_expr)
9591 {
9592 gfc_init_se (&argse, NULL);
9593 gfc_conv_expr (&argse, image_idx_expr);
9594 gfc_add_block_to_block (&block, &argse.pre);
9595 gfc_add_block_to_block (&post_block, &argse.post);
9596 image_index = fold_convert (integer_type_node, argse.expr);
9597 }
9598 else
9599 image_index = integer_zero_node;
9600
9601 /* errmsg. */
9602 if (errmsg_expr)
9603 {
9604 gfc_init_se (&argse, NULL);
9605 gfc_conv_expr (&argse, errmsg_expr);
9606 gfc_add_block_to_block (&block, &argse.pre);
9607 gfc_add_block_to_block (&post_block, &argse.post);
9608 errmsg = argse.expr;
9609 errmsg_len = fold_convert (integer_type_node, argse.string_length);
9610 }
9611 else
9612 {
9613 errmsg = null_pointer_node;
9614 errmsg_len = integer_zero_node;
9615 }
9616
9617 /* Generate the function call. */
9618 switch (code->resolved_isym->id)
9619 {
9620 case GFC_ISYM_CO_BROADCAST:
9621 fndecl = gfor_fndecl_co_broadcast;
9622 break;
9623 case GFC_ISYM_CO_MAX:
9624 fndecl = gfor_fndecl_co_max;
9625 break;
9626 case GFC_ISYM_CO_MIN:
9627 fndecl = gfor_fndecl_co_min;
9628 break;
9629 case GFC_ISYM_CO_REDUCE:
9630 fndecl = gfor_fndecl_co_reduce;
9631 break;
9632 case GFC_ISYM_CO_SUM:
9633 fndecl = gfor_fndecl_co_sum;
9634 break;
9635 default:
9636 gcc_unreachable ();
9637 }
9638
9639 if (code->resolved_isym->id == GFC_ISYM_CO_SUM
9640 || code->resolved_isym->id == GFC_ISYM_CO_BROADCAST)
9641 fndecl = build_call_expr_loc (input_location, fndecl, 5, array,
9642 image_index, stat, errmsg, errmsg_len);
9643 else if (code->resolved_isym->id != GFC_ISYM_CO_REDUCE)
9644 fndecl = build_call_expr_loc (input_location, fndecl, 6, array, image_index,
9645 stat, errmsg, strlen, errmsg_len);
9646 else
9647 {
9648 tree opr, opr_flags;
9649
9650 // FIXME: Handle TS29113's bind(C) strings with descriptor.
9651 int opr_flag_int;
9652 if (gfc_is_proc_ptr_comp (opr_expr))
9653 {
9654 gfc_symbol *sym = gfc_get_proc_ptr_comp (opr_expr)->ts.interface;
9655 opr_flag_int = sym->attr.dimension
9656 || (sym->ts.type == BT_CHARACTER
9657 && !sym->attr.is_bind_c)
9658 ? GFC_CAF_BYREF : 0;
9659 opr_flag_int |= opr_expr->ts.type == BT_CHARACTER
9660 && !sym->attr.is_bind_c
9661 ? GFC_CAF_HIDDENLEN : 0;
9662 opr_flag_int |= sym->formal->sym->attr.value ? GFC_CAF_ARG_VALUE : 0;
9663 }
9664 else
9665 {
9666 opr_flag_int = gfc_return_by_reference (opr_expr->symtree->n.sym)
9667 ? GFC_CAF_BYREF : 0;
9668 opr_flag_int |= opr_expr->ts.type == BT_CHARACTER
9669 && !opr_expr->symtree->n.sym->attr.is_bind_c
9670 ? GFC_CAF_HIDDENLEN : 0;
9671 opr_flag_int |= opr_expr->symtree->n.sym->formal->sym->attr.value
9672 ? GFC_CAF_ARG_VALUE : 0;
9673 }
9674 opr_flags = build_int_cst (integer_type_node, opr_flag_int);
9675 gfc_conv_expr (&argse, opr_expr);
9676 opr = argse.expr;
9677 fndecl = build_call_expr_loc (input_location, fndecl, 8, array, opr, opr_flags,
9678 image_index, stat, errmsg, strlen, errmsg_len);
9679 }
9680
9681 gfc_add_expr_to_block (&block, fndecl);
9682 gfc_add_block_to_block (&block, &post_block);
9683
9684 return gfc_finish_block (&block);
9685 }
9686
9687
9688 static tree
9689 conv_intrinsic_atomic_op (gfc_code *code)
9690 {
9691 gfc_se argse;
9692 tree tmp, atom, value, old = NULL_TREE, stat = NULL_TREE;
9693 stmtblock_t block, post_block;
9694 gfc_expr *atom_expr = code->ext.actual->expr;
9695 gfc_expr *stat_expr;
9696 built_in_function fn;
9697
9698 if (atom_expr->expr_type == EXPR_FUNCTION
9699 && atom_expr->value.function.isym
9700 && atom_expr->value.function.isym->id == GFC_ISYM_CAF_GET)
9701 atom_expr = atom_expr->value.function.actual->expr;
9702
9703 gfc_start_block (&block);
9704 gfc_init_block (&post_block);
9705
9706 gfc_init_se (&argse, NULL);
9707 argse.want_pointer = 1;
9708 gfc_conv_expr (&argse, atom_expr);
9709 gfc_add_block_to_block (&block, &argse.pre);
9710 gfc_add_block_to_block (&post_block, &argse.post);
9711 atom = argse.expr;
9712
9713 gfc_init_se (&argse, NULL);
9714 if (flag_coarray == GFC_FCOARRAY_LIB
9715 && code->ext.actual->next->expr->ts.kind == atom_expr->ts.kind)
9716 argse.want_pointer = 1;
9717 gfc_conv_expr (&argse, code->ext.actual->next->expr);
9718 gfc_add_block_to_block (&block, &argse.pre);
9719 gfc_add_block_to_block (&post_block, &argse.post);
9720 value = argse.expr;
9721
9722 switch (code->resolved_isym->id)
9723 {
9724 case GFC_ISYM_ATOMIC_ADD:
9725 case GFC_ISYM_ATOMIC_AND:
9726 case GFC_ISYM_ATOMIC_DEF:
9727 case GFC_ISYM_ATOMIC_OR:
9728 case GFC_ISYM_ATOMIC_XOR:
9729 stat_expr = code->ext.actual->next->next->expr;
9730 if (flag_coarray == GFC_FCOARRAY_LIB)
9731 old = null_pointer_node;
9732 break;
9733 default:
9734 gfc_init_se (&argse, NULL);
9735 if (flag_coarray == GFC_FCOARRAY_LIB)
9736 argse.want_pointer = 1;
9737 gfc_conv_expr (&argse, code->ext.actual->next->next->expr);
9738 gfc_add_block_to_block (&block, &argse.pre);
9739 gfc_add_block_to_block (&post_block, &argse.post);
9740 old = argse.expr;
9741 stat_expr = code->ext.actual->next->next->next->expr;
9742 }
9743
9744 /* STAT= */
9745 if (stat_expr != NULL)
9746 {
9747 gcc_assert (stat_expr->expr_type == EXPR_VARIABLE);
9748 gfc_init_se (&argse, NULL);
9749 if (flag_coarray == GFC_FCOARRAY_LIB)
9750 argse.want_pointer = 1;
9751 gfc_conv_expr_val (&argse, stat_expr);
9752 gfc_add_block_to_block (&block, &argse.pre);
9753 gfc_add_block_to_block (&post_block, &argse.post);
9754 stat = argse.expr;
9755 }
9756 else if (flag_coarray == GFC_FCOARRAY_LIB)
9757 stat = null_pointer_node;
9758
9759 if (flag_coarray == GFC_FCOARRAY_LIB)
9760 {
9761 tree image_index, caf_decl, offset, token;
9762 int op;
9763
9764 switch (code->resolved_isym->id)
9765 {
9766 case GFC_ISYM_ATOMIC_ADD:
9767 case GFC_ISYM_ATOMIC_FETCH_ADD:
9768 op = (int) GFC_CAF_ATOMIC_ADD;
9769 break;
9770 case GFC_ISYM_ATOMIC_AND:
9771 case GFC_ISYM_ATOMIC_FETCH_AND:
9772 op = (int) GFC_CAF_ATOMIC_AND;
9773 break;
9774 case GFC_ISYM_ATOMIC_OR:
9775 case GFC_ISYM_ATOMIC_FETCH_OR:
9776 op = (int) GFC_CAF_ATOMIC_OR;
9777 break;
9778 case GFC_ISYM_ATOMIC_XOR:
9779 case GFC_ISYM_ATOMIC_FETCH_XOR:
9780 op = (int) GFC_CAF_ATOMIC_XOR;
9781 break;
9782 case GFC_ISYM_ATOMIC_DEF:
9783 op = 0; /* Unused. */
9784 break;
9785 default:
9786 gcc_unreachable ();
9787 }
9788
9789 caf_decl = gfc_get_tree_for_caf_expr (atom_expr);
9790 if (TREE_CODE (TREE_TYPE (caf_decl)) == REFERENCE_TYPE)
9791 caf_decl = build_fold_indirect_ref_loc (input_location, caf_decl);
9792
9793 if (gfc_is_coindexed (atom_expr))
9794 image_index = gfc_caf_get_image_index (&block, atom_expr, caf_decl);
9795 else
9796 image_index = integer_zero_node;
9797
9798 if (!POINTER_TYPE_P (TREE_TYPE (value)))
9799 {
9800 tmp = gfc_create_var (TREE_TYPE (TREE_TYPE (atom)), "value");
9801 gfc_add_modify (&block, tmp, fold_convert (TREE_TYPE (tmp), value));
9802 value = gfc_build_addr_expr (NULL_TREE, tmp);
9803 }
9804
9805 gfc_init_se (&argse, NULL);
9806 gfc_get_caf_token_offset (&argse, &token, &offset, caf_decl, atom,
9807 atom_expr);
9808
9809 gfc_add_block_to_block (&block, &argse.pre);
9810 if (code->resolved_isym->id == GFC_ISYM_ATOMIC_DEF)
9811 tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_atomic_def, 7,
9812 token, offset, image_index, value, stat,
9813 build_int_cst (integer_type_node,
9814 (int) atom_expr->ts.type),
9815 build_int_cst (integer_type_node,
9816 (int) atom_expr->ts.kind));
9817 else
9818 tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_atomic_op, 9,
9819 build_int_cst (integer_type_node, op),
9820 token, offset, image_index, value, old, stat,
9821 build_int_cst (integer_type_node,
9822 (int) atom_expr->ts.type),
9823 build_int_cst (integer_type_node,
9824 (int) atom_expr->ts.kind));
9825
9826 gfc_add_expr_to_block (&block, tmp);
9827 gfc_add_block_to_block (&block, &argse.post);
9828 gfc_add_block_to_block (&block, &post_block);
9829 return gfc_finish_block (&block);
9830 }
9831
9832
9833 switch (code->resolved_isym->id)
9834 {
9835 case GFC_ISYM_ATOMIC_ADD:
9836 case GFC_ISYM_ATOMIC_FETCH_ADD:
9837 fn = BUILT_IN_ATOMIC_FETCH_ADD_N;
9838 break;
9839 case GFC_ISYM_ATOMIC_AND:
9840 case GFC_ISYM_ATOMIC_FETCH_AND:
9841 fn = BUILT_IN_ATOMIC_FETCH_AND_N;
9842 break;
9843 case GFC_ISYM_ATOMIC_DEF:
9844 fn = BUILT_IN_ATOMIC_STORE_N;
9845 break;
9846 case GFC_ISYM_ATOMIC_OR:
9847 case GFC_ISYM_ATOMIC_FETCH_OR:
9848 fn = BUILT_IN_ATOMIC_FETCH_OR_N;
9849 break;
9850 case GFC_ISYM_ATOMIC_XOR:
9851 case GFC_ISYM_ATOMIC_FETCH_XOR:
9852 fn = BUILT_IN_ATOMIC_FETCH_XOR_N;
9853 break;
9854 default:
9855 gcc_unreachable ();
9856 }
9857
9858 tmp = TREE_TYPE (TREE_TYPE (atom));
9859 fn = (built_in_function) ((int) fn
9860 + exact_log2 (tree_to_uhwi (TYPE_SIZE_UNIT (tmp)))
9861 + 1);
9862 tmp = builtin_decl_explicit (fn);
9863 tree itype = TREE_TYPE (TREE_TYPE (atom));
9864 tmp = builtin_decl_explicit (fn);
9865
9866 switch (code->resolved_isym->id)
9867 {
9868 case GFC_ISYM_ATOMIC_ADD:
9869 case GFC_ISYM_ATOMIC_AND:
9870 case GFC_ISYM_ATOMIC_DEF:
9871 case GFC_ISYM_ATOMIC_OR:
9872 case GFC_ISYM_ATOMIC_XOR:
9873 tmp = build_call_expr_loc (input_location, tmp, 3, atom,
9874 fold_convert (itype, value),
9875 build_int_cst (NULL, MEMMODEL_RELAXED));
9876 gfc_add_expr_to_block (&block, tmp);
9877 break;
9878 default:
9879 tmp = build_call_expr_loc (input_location, tmp, 3, atom,
9880 fold_convert (itype, value),
9881 build_int_cst (NULL, MEMMODEL_RELAXED));
9882 gfc_add_modify (&block, old, fold_convert (TREE_TYPE (old), tmp));
9883 break;
9884 }
9885
9886 if (stat != NULL_TREE)
9887 gfc_add_modify (&block, stat, build_int_cst (TREE_TYPE (stat), 0));
9888 gfc_add_block_to_block (&block, &post_block);
9889 return gfc_finish_block (&block);
9890 }
9891
9892
9893 static tree
9894 conv_intrinsic_atomic_ref (gfc_code *code)
9895 {
9896 gfc_se argse;
9897 tree tmp, atom, value, stat = NULL_TREE;
9898 stmtblock_t block, post_block;
9899 built_in_function fn;
9900 gfc_expr *atom_expr = code->ext.actual->next->expr;
9901
9902 if (atom_expr->expr_type == EXPR_FUNCTION
9903 && atom_expr->value.function.isym
9904 && atom_expr->value.function.isym->id == GFC_ISYM_CAF_GET)
9905 atom_expr = atom_expr->value.function.actual->expr;
9906
9907 gfc_start_block (&block);
9908 gfc_init_block (&post_block);
9909 gfc_init_se (&argse, NULL);
9910 argse.want_pointer = 1;
9911 gfc_conv_expr (&argse, atom_expr);
9912 gfc_add_block_to_block (&block, &argse.pre);
9913 gfc_add_block_to_block (&post_block, &argse.post);
9914 atom = argse.expr;
9915
9916 gfc_init_se (&argse, NULL);
9917 if (flag_coarray == GFC_FCOARRAY_LIB
9918 && code->ext.actual->expr->ts.kind == atom_expr->ts.kind)
9919 argse.want_pointer = 1;
9920 gfc_conv_expr (&argse, code->ext.actual->expr);
9921 gfc_add_block_to_block (&block, &argse.pre);
9922 gfc_add_block_to_block (&post_block, &argse.post);
9923 value = argse.expr;
9924
9925 /* STAT= */
9926 if (code->ext.actual->next->next->expr != NULL)
9927 {
9928 gcc_assert (code->ext.actual->next->next->expr->expr_type
9929 == EXPR_VARIABLE);
9930 gfc_init_se (&argse, NULL);
9931 if (flag_coarray == GFC_FCOARRAY_LIB)
9932 argse.want_pointer = 1;
9933 gfc_conv_expr_val (&argse, code->ext.actual->next->next->expr);
9934 gfc_add_block_to_block (&block, &argse.pre);
9935 gfc_add_block_to_block (&post_block, &argse.post);
9936 stat = argse.expr;
9937 }
9938 else if (flag_coarray == GFC_FCOARRAY_LIB)
9939 stat = null_pointer_node;
9940
9941 if (flag_coarray == GFC_FCOARRAY_LIB)
9942 {
9943 tree image_index, caf_decl, offset, token;
9944 tree orig_value = NULL_TREE, vardecl = NULL_TREE;
9945
9946 caf_decl = gfc_get_tree_for_caf_expr (atom_expr);
9947 if (TREE_CODE (TREE_TYPE (caf_decl)) == REFERENCE_TYPE)
9948 caf_decl = build_fold_indirect_ref_loc (input_location, caf_decl);
9949
9950 if (gfc_is_coindexed (atom_expr))
9951 image_index = gfc_caf_get_image_index (&block, atom_expr, caf_decl);
9952 else
9953 image_index = integer_zero_node;
9954
9955 gfc_init_se (&argse, NULL);
9956 gfc_get_caf_token_offset (&argse, &token, &offset, caf_decl, atom,
9957 atom_expr);
9958 gfc_add_block_to_block (&block, &argse.pre);
9959
9960 /* Different type, need type conversion. */
9961 if (!POINTER_TYPE_P (TREE_TYPE (value)))
9962 {
9963 vardecl = gfc_create_var (TREE_TYPE (TREE_TYPE (atom)), "value");
9964 orig_value = value;
9965 value = gfc_build_addr_expr (NULL_TREE, vardecl);
9966 }
9967
9968 tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_atomic_ref, 7,
9969 token, offset, image_index, value, stat,
9970 build_int_cst (integer_type_node,
9971 (int) atom_expr->ts.type),
9972 build_int_cst (integer_type_node,
9973 (int) atom_expr->ts.kind));
9974 gfc_add_expr_to_block (&block, tmp);
9975 if (vardecl != NULL_TREE)
9976 gfc_add_modify (&block, orig_value,
9977 fold_convert (TREE_TYPE (orig_value), vardecl));
9978 gfc_add_block_to_block (&block, &argse.post);
9979 gfc_add_block_to_block (&block, &post_block);
9980 return gfc_finish_block (&block);
9981 }
9982
9983 tmp = TREE_TYPE (TREE_TYPE (atom));
9984 fn = (built_in_function) ((int) BUILT_IN_ATOMIC_LOAD_N
9985 + exact_log2 (tree_to_uhwi (TYPE_SIZE_UNIT (tmp)))
9986 + 1);
9987 tmp = builtin_decl_explicit (fn);
9988 tmp = build_call_expr_loc (input_location, tmp, 2, atom,
9989 build_int_cst (integer_type_node,
9990 MEMMODEL_RELAXED));
9991 gfc_add_modify (&block, value, fold_convert (TREE_TYPE (value), tmp));
9992
9993 if (stat != NULL_TREE)
9994 gfc_add_modify (&block, stat, build_int_cst (TREE_TYPE (stat), 0));
9995 gfc_add_block_to_block (&block, &post_block);
9996 return gfc_finish_block (&block);
9997 }
9998
9999
10000 static tree
10001 conv_intrinsic_atomic_cas (gfc_code *code)
10002 {
10003 gfc_se argse;
10004 tree tmp, atom, old, new_val, comp, stat = NULL_TREE;
10005 stmtblock_t block, post_block;
10006 built_in_function fn;
10007 gfc_expr *atom_expr = code->ext.actual->expr;
10008
10009 if (atom_expr->expr_type == EXPR_FUNCTION
10010 && atom_expr->value.function.isym
10011 && atom_expr->value.function.isym->id == GFC_ISYM_CAF_GET)
10012 atom_expr = atom_expr->value.function.actual->expr;
10013
10014 gfc_init_block (&block);
10015 gfc_init_block (&post_block);
10016 gfc_init_se (&argse, NULL);
10017 argse.want_pointer = 1;
10018 gfc_conv_expr (&argse, atom_expr);
10019 atom = argse.expr;
10020
10021 gfc_init_se (&argse, NULL);
10022 if (flag_coarray == GFC_FCOARRAY_LIB)
10023 argse.want_pointer = 1;
10024 gfc_conv_expr (&argse, code->ext.actual->next->expr);
10025 gfc_add_block_to_block (&block, &argse.pre);
10026 gfc_add_block_to_block (&post_block, &argse.post);
10027 old = argse.expr;
10028
10029 gfc_init_se (&argse, NULL);
10030 if (flag_coarray == GFC_FCOARRAY_LIB)
10031 argse.want_pointer = 1;
10032 gfc_conv_expr (&argse, code->ext.actual->next->next->expr);
10033 gfc_add_block_to_block (&block, &argse.pre);
10034 gfc_add_block_to_block (&post_block, &argse.post);
10035 comp = argse.expr;
10036
10037 gfc_init_se (&argse, NULL);
10038 if (flag_coarray == GFC_FCOARRAY_LIB
10039 && code->ext.actual->next->next->next->expr->ts.kind
10040 == atom_expr->ts.kind)
10041 argse.want_pointer = 1;
10042 gfc_conv_expr (&argse, code->ext.actual->next->next->next->expr);
10043 gfc_add_block_to_block (&block, &argse.pre);
10044 gfc_add_block_to_block (&post_block, &argse.post);
10045 new_val = argse.expr;
10046
10047 /* STAT= */
10048 if (code->ext.actual->next->next->next->next->expr != NULL)
10049 {
10050 gcc_assert (code->ext.actual->next->next->next->next->expr->expr_type
10051 == EXPR_VARIABLE);
10052 gfc_init_se (&argse, NULL);
10053 if (flag_coarray == GFC_FCOARRAY_LIB)
10054 argse.want_pointer = 1;
10055 gfc_conv_expr_val (&argse,
10056 code->ext.actual->next->next->next->next->expr);
10057 gfc_add_block_to_block (&block, &argse.pre);
10058 gfc_add_block_to_block (&post_block, &argse.post);
10059 stat = argse.expr;
10060 }
10061 else if (flag_coarray == GFC_FCOARRAY_LIB)
10062 stat = null_pointer_node;
10063
10064 if (flag_coarray == GFC_FCOARRAY_LIB)
10065 {
10066 tree image_index, caf_decl, offset, token;
10067
10068 caf_decl = gfc_get_tree_for_caf_expr (atom_expr);
10069 if (TREE_CODE (TREE_TYPE (caf_decl)) == REFERENCE_TYPE)
10070 caf_decl = build_fold_indirect_ref_loc (input_location, caf_decl);
10071
10072 if (gfc_is_coindexed (atom_expr))
10073 image_index = gfc_caf_get_image_index (&block, atom_expr, caf_decl);
10074 else
10075 image_index = integer_zero_node;
10076
10077 if (TREE_TYPE (TREE_TYPE (new_val)) != TREE_TYPE (TREE_TYPE (old)))
10078 {
10079 tmp = gfc_create_var (TREE_TYPE (TREE_TYPE (old)), "new");
10080 gfc_add_modify (&block, tmp, fold_convert (TREE_TYPE (tmp), new_val));
10081 new_val = gfc_build_addr_expr (NULL_TREE, tmp);
10082 }
10083
10084 /* Convert a constant to a pointer. */
10085 if (!POINTER_TYPE_P (TREE_TYPE (comp)))
10086 {
10087 tmp = gfc_create_var (TREE_TYPE (TREE_TYPE (old)), "comp");
10088 gfc_add_modify (&block, tmp, fold_convert (TREE_TYPE (tmp), comp));
10089 comp = gfc_build_addr_expr (NULL_TREE, tmp);
10090 }
10091
10092 gfc_init_se (&argse, NULL);
10093 gfc_get_caf_token_offset (&argse, &token, &offset, caf_decl, atom,
10094 atom_expr);
10095 gfc_add_block_to_block (&block, &argse.pre);
10096
10097 tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_atomic_cas, 9,
10098 token, offset, image_index, old, comp, new_val,
10099 stat, build_int_cst (integer_type_node,
10100 (int) atom_expr->ts.type),
10101 build_int_cst (integer_type_node,
10102 (int) atom_expr->ts.kind));
10103 gfc_add_expr_to_block (&block, tmp);
10104 gfc_add_block_to_block (&block, &argse.post);
10105 gfc_add_block_to_block (&block, &post_block);
10106 return gfc_finish_block (&block);
10107 }
10108
10109 tmp = TREE_TYPE (TREE_TYPE (atom));
10110 fn = (built_in_function) ((int) BUILT_IN_ATOMIC_COMPARE_EXCHANGE_N
10111 + exact_log2 (tree_to_uhwi (TYPE_SIZE_UNIT (tmp)))
10112 + 1);
10113 tmp = builtin_decl_explicit (fn);
10114
10115 gfc_add_modify (&block, old, comp);
10116 tmp = build_call_expr_loc (input_location, tmp, 6, atom,
10117 gfc_build_addr_expr (NULL, old),
10118 fold_convert (TREE_TYPE (old), new_val),
10119 boolean_false_node,
10120 build_int_cst (NULL, MEMMODEL_RELAXED),
10121 build_int_cst (NULL, MEMMODEL_RELAXED));
10122 gfc_add_expr_to_block (&block, tmp);
10123
10124 if (stat != NULL_TREE)
10125 gfc_add_modify (&block, stat, build_int_cst (TREE_TYPE (stat), 0));
10126 gfc_add_block_to_block (&block, &post_block);
10127 return gfc_finish_block (&block);
10128 }
10129
10130 static tree
10131 conv_intrinsic_event_query (gfc_code *code)
10132 {
10133 gfc_se se, argse;
10134 tree stat = NULL_TREE, stat2 = NULL_TREE;
10135 tree count = NULL_TREE, count2 = NULL_TREE;
10136
10137 gfc_expr *event_expr = code->ext.actual->expr;
10138
10139 if (code->ext.actual->next->next->expr)
10140 {
10141 gcc_assert (code->ext.actual->next->next->expr->expr_type
10142 == EXPR_VARIABLE);
10143 gfc_init_se (&argse, NULL);
10144 gfc_conv_expr_val (&argse, code->ext.actual->next->next->expr);
10145 stat = argse.expr;
10146 }
10147 else if (flag_coarray == GFC_FCOARRAY_LIB)
10148 stat = null_pointer_node;
10149
10150 if (code->ext.actual->next->expr)
10151 {
10152 gcc_assert (code->ext.actual->next->expr->expr_type == EXPR_VARIABLE);
10153 gfc_init_se (&argse, NULL);
10154 gfc_conv_expr_val (&argse, code->ext.actual->next->expr);
10155 count = argse.expr;
10156 }
10157
10158 gfc_start_block (&se.pre);
10159 if (flag_coarray == GFC_FCOARRAY_LIB)
10160 {
10161 tree tmp, token, image_index;
10162 tree index = size_zero_node;
10163
10164 if (event_expr->expr_type == EXPR_FUNCTION
10165 && event_expr->value.function.isym
10166 && event_expr->value.function.isym->id == GFC_ISYM_CAF_GET)
10167 event_expr = event_expr->value.function.actual->expr;
10168
10169 tree caf_decl = gfc_get_tree_for_caf_expr (event_expr);
10170
10171 if (event_expr->symtree->n.sym->ts.type != BT_DERIVED
10172 || event_expr->symtree->n.sym->ts.u.derived->from_intmod
10173 != INTMOD_ISO_FORTRAN_ENV
10174 || event_expr->symtree->n.sym->ts.u.derived->intmod_sym_id
10175 != ISOFORTRAN_EVENT_TYPE)
10176 {
10177 gfc_error ("Sorry, the event component of derived type at %L is not "
10178 "yet supported", &event_expr->where);
10179 return NULL_TREE;
10180 }
10181
10182 if (gfc_is_coindexed (event_expr))
10183 {
10184 gfc_error ("The event variable at %L shall not be coindexed ",
10185 &event_expr->where);
10186 return NULL_TREE;
10187 }
10188
10189 image_index = integer_zero_node;
10190
10191 gfc_get_caf_token_offset (&se, &token, NULL, caf_decl, NULL_TREE,
10192 event_expr);
10193
10194 /* For arrays, obtain the array index. */
10195 if (gfc_expr_attr (event_expr).dimension)
10196 {
10197 tree desc, tmp, extent, lbound, ubound;
10198 gfc_array_ref *ar, ar2;
10199 int i;
10200
10201 /* TODO: Extend this, once DT components are supported. */
10202 ar = &event_expr->ref->u.ar;
10203 ar2 = *ar;
10204 memset (ar, '\0', sizeof (*ar));
10205 ar->as = ar2.as;
10206 ar->type = AR_FULL;
10207
10208 gfc_init_se (&argse, NULL);
10209 argse.descriptor_only = 1;
10210 gfc_conv_expr_descriptor (&argse, event_expr);
10211 gfc_add_block_to_block (&se.pre, &argse.pre);
10212 desc = argse.expr;
10213 *ar = ar2;
10214
10215 extent = integer_one_node;
10216 for (i = 0; i < ar->dimen; i++)
10217 {
10218 gfc_init_se (&argse, NULL);
10219 gfc_conv_expr_type (&argse, ar->start[i], integer_type_node);
10220 gfc_add_block_to_block (&argse.pre, &argse.pre);
10221 lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[i]);
10222 tmp = fold_build2_loc (input_location, MINUS_EXPR,
10223 integer_type_node, argse.expr,
10224 fold_convert(integer_type_node, lbound));
10225 tmp = fold_build2_loc (input_location, MULT_EXPR,
10226 integer_type_node, extent, tmp);
10227 index = fold_build2_loc (input_location, PLUS_EXPR,
10228 integer_type_node, index, tmp);
10229 if (i < ar->dimen - 1)
10230 {
10231 ubound = gfc_conv_descriptor_ubound_get (desc, gfc_rank_cst[i]);
10232 tmp = gfc_conv_array_extent_dim (lbound, ubound, NULL);
10233 tmp = fold_convert (integer_type_node, tmp);
10234 extent = fold_build2_loc (input_location, MULT_EXPR,
10235 integer_type_node, extent, tmp);
10236 }
10237 }
10238 }
10239
10240 if (count != null_pointer_node && TREE_TYPE (count) != integer_type_node)
10241 {
10242 count2 = count;
10243 count = gfc_create_var (integer_type_node, "count");
10244 }
10245
10246 if (stat != null_pointer_node && TREE_TYPE (stat) != integer_type_node)
10247 {
10248 stat2 = stat;
10249 stat = gfc_create_var (integer_type_node, "stat");
10250 }
10251
10252 tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_event_query, 5,
10253 token, index, image_index, count
10254 ? gfc_build_addr_expr (NULL, count) : count,
10255 stat != null_pointer_node
10256 ? gfc_build_addr_expr (NULL, stat) : stat);
10257 gfc_add_expr_to_block (&se.pre, tmp);
10258
10259 if (count2 != NULL_TREE)
10260 gfc_add_modify (&se.pre, count2,
10261 fold_convert (TREE_TYPE (count2), count));
10262
10263 if (stat2 != NULL_TREE)
10264 gfc_add_modify (&se.pre, stat2,
10265 fold_convert (TREE_TYPE (stat2), stat));
10266
10267 return gfc_finish_block (&se.pre);
10268 }
10269
10270 gfc_init_se (&argse, NULL);
10271 gfc_conv_expr_val (&argse, code->ext.actual->expr);
10272 gfc_add_modify (&se.pre, count, fold_convert (TREE_TYPE (count), argse.expr));
10273
10274 if (stat != NULL_TREE)
10275 gfc_add_modify (&se.pre, stat, build_int_cst (TREE_TYPE (stat), 0));
10276
10277 return gfc_finish_block (&se.pre);
10278 }
10279
10280 static tree
10281 conv_intrinsic_move_alloc (gfc_code *code)
10282 {
10283 stmtblock_t block;
10284 gfc_expr *from_expr, *to_expr;
10285 gfc_expr *to_expr2, *from_expr2 = NULL;
10286 gfc_se from_se, to_se;
10287 tree tmp;
10288 bool coarray;
10289
10290 gfc_start_block (&block);
10291
10292 from_expr = code->ext.actual->expr;
10293 to_expr = code->ext.actual->next->expr;
10294
10295 gfc_init_se (&from_se, NULL);
10296 gfc_init_se (&to_se, NULL);
10297
10298 gcc_assert (from_expr->ts.type != BT_CLASS
10299 || to_expr->ts.type == BT_CLASS);
10300 coarray = gfc_get_corank (from_expr) != 0;
10301
10302 if (from_expr->rank == 0 && !coarray)
10303 {
10304 if (from_expr->ts.type != BT_CLASS)
10305 from_expr2 = from_expr;
10306 else
10307 {
10308 from_expr2 = gfc_copy_expr (from_expr);
10309 gfc_add_data_component (from_expr2);
10310 }
10311
10312 if (to_expr->ts.type != BT_CLASS)
10313 to_expr2 = to_expr;
10314 else
10315 {
10316 to_expr2 = gfc_copy_expr (to_expr);
10317 gfc_add_data_component (to_expr2);
10318 }
10319
10320 from_se.want_pointer = 1;
10321 to_se.want_pointer = 1;
10322 gfc_conv_expr (&from_se, from_expr2);
10323 gfc_conv_expr (&to_se, to_expr2);
10324 gfc_add_block_to_block (&block, &from_se.pre);
10325 gfc_add_block_to_block (&block, &to_se.pre);
10326
10327 /* Deallocate "to". */
10328 tmp = gfc_deallocate_scalar_with_status (to_se.expr, NULL_TREE, NULL_TREE,
10329 true, to_expr, to_expr->ts);
10330 gfc_add_expr_to_block (&block, tmp);
10331
10332 /* Assign (_data) pointers. */
10333 gfc_add_modify_loc (input_location, &block, to_se.expr,
10334 fold_convert (TREE_TYPE (to_se.expr), from_se.expr));
10335
10336 /* Set "from" to NULL. */
10337 gfc_add_modify_loc (input_location, &block, from_se.expr,
10338 fold_convert (TREE_TYPE (from_se.expr), null_pointer_node));
10339
10340 gfc_add_block_to_block (&block, &from_se.post);
10341 gfc_add_block_to_block (&block, &to_se.post);
10342
10343 /* Set _vptr. */
10344 if (to_expr->ts.type == BT_CLASS)
10345 {
10346 gfc_symbol *vtab;
10347
10348 gfc_free_expr (to_expr2);
10349 gfc_init_se (&to_se, NULL);
10350 to_se.want_pointer = 1;
10351 gfc_add_vptr_component (to_expr);
10352 gfc_conv_expr (&to_se, to_expr);
10353
10354 if (from_expr->ts.type == BT_CLASS)
10355 {
10356 if (UNLIMITED_POLY (from_expr))
10357 vtab = NULL;
10358 else
10359 {
10360 vtab = gfc_find_derived_vtab (from_expr->ts.u.derived);
10361 gcc_assert (vtab);
10362 }
10363
10364 gfc_free_expr (from_expr2);
10365 gfc_init_se (&from_se, NULL);
10366 from_se.want_pointer = 1;
10367 gfc_add_vptr_component (from_expr);
10368 gfc_conv_expr (&from_se, from_expr);
10369 gfc_add_modify_loc (input_location, &block, to_se.expr,
10370 fold_convert (TREE_TYPE (to_se.expr),
10371 from_se.expr));
10372
10373 /* Reset _vptr component to declared type. */
10374 if (vtab == NULL)
10375 /* Unlimited polymorphic. */
10376 gfc_add_modify_loc (input_location, &block, from_se.expr,
10377 fold_convert (TREE_TYPE (from_se.expr),
10378 null_pointer_node));
10379 else
10380 {
10381 tmp = gfc_build_addr_expr (NULL_TREE, gfc_get_symbol_decl (vtab));
10382 gfc_add_modify_loc (input_location, &block, from_se.expr,
10383 fold_convert (TREE_TYPE (from_se.expr), tmp));
10384 }
10385 }
10386 else
10387 {
10388 vtab = gfc_find_vtab (&from_expr->ts);
10389 gcc_assert (vtab);
10390 tmp = gfc_build_addr_expr (NULL_TREE, gfc_get_symbol_decl (vtab));
10391 gfc_add_modify_loc (input_location, &block, to_se.expr,
10392 fold_convert (TREE_TYPE (to_se.expr), tmp));
10393 }
10394 }
10395
10396 if (to_expr->ts.type == BT_CHARACTER && to_expr->ts.deferred)
10397 {
10398 gfc_add_modify_loc (input_location, &block, to_se.string_length,
10399 fold_convert (TREE_TYPE (to_se.string_length),
10400 from_se.string_length));
10401 if (from_expr->ts.deferred)
10402 gfc_add_modify_loc (input_location, &block, from_se.string_length,
10403 build_int_cst (TREE_TYPE (from_se.string_length), 0));
10404 }
10405
10406 return gfc_finish_block (&block);
10407 }
10408
10409 /* Update _vptr component. */
10410 if (to_expr->ts.type == BT_CLASS)
10411 {
10412 gfc_symbol *vtab;
10413
10414 to_se.want_pointer = 1;
10415 to_expr2 = gfc_copy_expr (to_expr);
10416 gfc_add_vptr_component (to_expr2);
10417 gfc_conv_expr (&to_se, to_expr2);
10418
10419 if (from_expr->ts.type == BT_CLASS)
10420 {
10421 if (UNLIMITED_POLY (from_expr))
10422 vtab = NULL;
10423 else
10424 {
10425 vtab = gfc_find_derived_vtab (from_expr->ts.u.derived);
10426 gcc_assert (vtab);
10427 }
10428
10429 from_se.want_pointer = 1;
10430 from_expr2 = gfc_copy_expr (from_expr);
10431 gfc_add_vptr_component (from_expr2);
10432 gfc_conv_expr (&from_se, from_expr2);
10433 gfc_add_modify_loc (input_location, &block, to_se.expr,
10434 fold_convert (TREE_TYPE (to_se.expr),
10435 from_se.expr));
10436
10437 /* Reset _vptr component to declared type. */
10438 if (vtab == NULL)
10439 /* Unlimited polymorphic. */
10440 gfc_add_modify_loc (input_location, &block, from_se.expr,
10441 fold_convert (TREE_TYPE (from_se.expr),
10442 null_pointer_node));
10443 else
10444 {
10445 tmp = gfc_build_addr_expr (NULL_TREE, gfc_get_symbol_decl (vtab));
10446 gfc_add_modify_loc (input_location, &block, from_se.expr,
10447 fold_convert (TREE_TYPE (from_se.expr), tmp));
10448 }
10449 }
10450 else
10451 {
10452 vtab = gfc_find_vtab (&from_expr->ts);
10453 gcc_assert (vtab);
10454 tmp = gfc_build_addr_expr (NULL_TREE, gfc_get_symbol_decl (vtab));
10455 gfc_add_modify_loc (input_location, &block, to_se.expr,
10456 fold_convert (TREE_TYPE (to_se.expr), tmp));
10457 }
10458
10459 gfc_free_expr (to_expr2);
10460 gfc_init_se (&to_se, NULL);
10461
10462 if (from_expr->ts.type == BT_CLASS)
10463 {
10464 gfc_free_expr (from_expr2);
10465 gfc_init_se (&from_se, NULL);
10466 }
10467 }
10468
10469
10470 /* Deallocate "to". */
10471 if (from_expr->rank == 0)
10472 {
10473 to_se.want_coarray = 1;
10474 from_se.want_coarray = 1;
10475 }
10476 gfc_conv_expr_descriptor (&to_se, to_expr);
10477 gfc_conv_expr_descriptor (&from_se, from_expr);
10478
10479 /* For coarrays, call SYNC ALL if TO is already deallocated as MOVE_ALLOC
10480 is an image control "statement", cf. IR F08/0040 in 12-006A. */
10481 if (coarray && flag_coarray == GFC_FCOARRAY_LIB)
10482 {
10483 tree cond;
10484
10485 tmp = gfc_deallocate_with_status (to_se.expr, NULL_TREE, NULL_TREE,
10486 NULL_TREE, NULL_TREE, true, to_expr,
10487 GFC_CAF_COARRAY_DEALLOCATE_ONLY);
10488 gfc_add_expr_to_block (&block, tmp);
10489
10490 tmp = gfc_conv_descriptor_data_get (to_se.expr);
10491 cond = fold_build2_loc (input_location, EQ_EXPR,
10492 boolean_type_node, tmp,
10493 fold_convert (TREE_TYPE (tmp),
10494 null_pointer_node));
10495 tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_sync_all,
10496 3, null_pointer_node, null_pointer_node,
10497 build_int_cst (integer_type_node, 0));
10498
10499 tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node, cond,
10500 tmp, build_empty_stmt (input_location));
10501 gfc_add_expr_to_block (&block, tmp);
10502 }
10503 else
10504 {
10505 if (to_expr->ts.type == BT_DERIVED
10506 && to_expr->ts.u.derived->attr.alloc_comp)
10507 {
10508 tmp = gfc_deallocate_alloc_comp (to_expr->ts.u.derived,
10509 to_se.expr, to_expr->rank);
10510 gfc_add_expr_to_block (&block, tmp);
10511 }
10512
10513 tmp = gfc_conv_descriptor_data_get (to_se.expr);
10514 tmp = gfc_deallocate_with_status (tmp, NULL_TREE, NULL_TREE, NULL_TREE,
10515 NULL_TREE, true, to_expr,
10516 GFC_CAF_COARRAY_NOCOARRAY);
10517 gfc_add_expr_to_block (&block, tmp);
10518 }
10519
10520 /* Move the pointer and update the array descriptor data. */
10521 gfc_add_modify_loc (input_location, &block, to_se.expr, from_se.expr);
10522
10523 /* Set "from" to NULL. */
10524 tmp = gfc_conv_descriptor_data_get (from_se.expr);
10525 gfc_add_modify_loc (input_location, &block, tmp,
10526 fold_convert (TREE_TYPE (tmp), null_pointer_node));
10527
10528
10529 if (to_expr->ts.type == BT_CHARACTER && to_expr->ts.deferred)
10530 {
10531 gfc_add_modify_loc (input_location, &block, to_se.string_length,
10532 fold_convert (TREE_TYPE (to_se.string_length),
10533 from_se.string_length));
10534 if (from_expr->ts.deferred)
10535 gfc_add_modify_loc (input_location, &block, from_se.string_length,
10536 build_int_cst (TREE_TYPE (from_se.string_length), 0));
10537 }
10538
10539 return gfc_finish_block (&block);
10540 }
10541
10542
10543 tree
10544 gfc_conv_intrinsic_subroutine (gfc_code *code)
10545 {
10546 tree res;
10547
10548 gcc_assert (code->resolved_isym);
10549
10550 switch (code->resolved_isym->id)
10551 {
10552 case GFC_ISYM_MOVE_ALLOC:
10553 res = conv_intrinsic_move_alloc (code);
10554 break;
10555
10556 case GFC_ISYM_ATOMIC_CAS:
10557 res = conv_intrinsic_atomic_cas (code);
10558 break;
10559
10560 case GFC_ISYM_ATOMIC_ADD:
10561 case GFC_ISYM_ATOMIC_AND:
10562 case GFC_ISYM_ATOMIC_DEF:
10563 case GFC_ISYM_ATOMIC_OR:
10564 case GFC_ISYM_ATOMIC_XOR:
10565 case GFC_ISYM_ATOMIC_FETCH_ADD:
10566 case GFC_ISYM_ATOMIC_FETCH_AND:
10567 case GFC_ISYM_ATOMIC_FETCH_OR:
10568 case GFC_ISYM_ATOMIC_FETCH_XOR:
10569 res = conv_intrinsic_atomic_op (code);
10570 break;
10571
10572 case GFC_ISYM_ATOMIC_REF:
10573 res = conv_intrinsic_atomic_ref (code);
10574 break;
10575
10576 case GFC_ISYM_EVENT_QUERY:
10577 res = conv_intrinsic_event_query (code);
10578 break;
10579
10580 case GFC_ISYM_C_F_POINTER:
10581 case GFC_ISYM_C_F_PROCPOINTER:
10582 res = conv_isocbinding_subroutine (code);
10583 break;
10584
10585 case GFC_ISYM_CAF_SEND:
10586 res = conv_caf_send (code);
10587 break;
10588
10589 case GFC_ISYM_CO_BROADCAST:
10590 case GFC_ISYM_CO_MIN:
10591 case GFC_ISYM_CO_MAX:
10592 case GFC_ISYM_CO_REDUCE:
10593 case GFC_ISYM_CO_SUM:
10594 res = conv_co_collective (code);
10595 break;
10596
10597 case GFC_ISYM_FREE:
10598 res = conv_intrinsic_free (code);
10599 break;
10600
10601 case GFC_ISYM_SYSTEM_CLOCK:
10602 res = conv_intrinsic_system_clock (code);
10603 break;
10604
10605 default:
10606 res = NULL_TREE;
10607 break;
10608 }
10609
10610 return res;
10611 }
10612
10613 #include "gt-fortran-trans-intrinsic.h"